diff --git a/arrow2/array/struct.BinaryArray.html b/arrow2/array/struct.BinaryArray.html index 562f51ebceec..8c00b8b5d969 100644 --- a/arrow2/array/struct.BinaryArray.html +++ b/arrow2/array/struct.BinaryArray.html @@ -137,7 +137,7 @@
Safety
&self, offset: usize, length: usize -) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl<O: Clone + Offset> Clone for BinaryArray<O>

source§

fn clone(&self) -> BinaryArray<O>

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<O: Offset> Debug for BinaryArray<O>

source§

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

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

impl<'a, O: Offset> From<GrowableBinary<'a, O>> for BinaryArray<O>

source§

fn from(val: GrowableBinary<'a, O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableBinaryArray<O>> for BinaryArray<O>

source§

fn from(other: MutableBinaryArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableBinaryValuesArray<O>> for BinaryArray<O>

source§

fn from(other: MutableBinaryValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<[u8]>> FromIterator<Option<P>> for BinaryArray<O>

source§

fn from_iter<I: IntoIterator<Item = Option<P>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<O: Offset> GenericBinaryArray<O> for BinaryArray<O>

source§

fn values(&self) -> &[u8]

The values of the array
source§

fn offsets(&self) -> &[O]

The offsets of the array
source§

impl<'a, O: Offset> IntoIterator for &'a BinaryArray<O>

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a [u8], ArrayValuesIter<'a, BinaryArray<O>>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for BinaryArray<O>

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl<O: Clone + Offset> Clone for BinaryArray<O>

source§

fn clone(&self) -> BinaryArray<O>

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<O: Offset> Debug for BinaryArray<O>

source§

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

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

impl<'a, O: Offset> From<GrowableBinary<'a, O>> for BinaryArray<O>

source§

fn from(val: GrowableBinary<'a, O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableBinaryArray<O>> for BinaryArray<O>

source§

fn from(other: MutableBinaryArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableBinaryValuesArray<O>> for BinaryArray<O>

source§

fn from(other: MutableBinaryValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<[u8]>> FromIterator<Option<P>> for BinaryArray<O>

source§

fn from_iter<I: IntoIterator<Item = Option<P>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<O: Offset> GenericBinaryArray<O> for BinaryArray<O>

source§

fn values(&self) -> &[u8]

The values of the array
source§

fn offsets(&self) -> &[O]

The offsets of the array
source§

impl<'a, O: Offset> IntoIterator for &'a BinaryArray<O>

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a [u8], ArrayValuesIter<'a, BinaryArray<O>>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for BinaryArray<O>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<BinaryArray<O>> for &dyn Array

source§

fn eq(&self, other: &BinaryArray<O>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always diff --git a/arrow2/array/struct.BooleanArray.html b/arrow2/array/struct.BooleanArray.html index fea93c867eee..ff1e123e65ba 100644 --- a/arrow2/array/struct.BooleanArray.html +++ b/arrow2/array/struct.BooleanArray.html @@ -149,10 +149,10 @@
Safety
&self, offset: usize, length: usize -) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl Clone for BooleanArray

source§

fn clone(&self) -> BooleanArray

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 BooleanArray

source§

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

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

impl<'a> From<GrowableBoolean<'a>> for BooleanArray

source§

fn from(val: GrowableBoolean<'a>) -> Self

Converts to this type from the input type.
source§

impl From<MutableBooleanArray> for BooleanArray

source§

fn from(other: MutableBooleanArray) -> Self

Converts to this type from the input type.
source§

impl<P: AsRef<[Option<bool>]>> From<P> for BooleanArray

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl<Ptr: Borrow<Option<bool>>> FromIterator<Ptr> for BooleanArray

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> IntoIterator for &'a BooleanArray

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<bool, BitmapIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for BooleanArray

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<bool, IntoIter, IntoIter>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for BooleanArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<BooleanArray> for BooleanArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl Clone for BooleanArray

source§

fn clone(&self) -> BooleanArray

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 BooleanArray

source§

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

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

impl<'a> From<GrowableBoolean<'a>> for BooleanArray

source§

fn from(val: GrowableBoolean<'a>) -> Self

Converts to this type from the input type.
source§

impl From<MutableBooleanArray> for BooleanArray

source§

fn from(other: MutableBooleanArray) -> Self

Converts to this type from the input type.
source§

impl<P: AsRef<[Option<bool>]>> From<P> for BooleanArray

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl<Ptr: Borrow<Option<bool>>> FromIterator<Ptr> for BooleanArray

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> IntoIterator for &'a BooleanArray

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<bool, BitmapIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for BooleanArray

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<bool, IntoIter, IntoIter>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for BooleanArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<BooleanArray> for BooleanArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl RefUnwindSafe for BooleanArray

§

impl Send for BooleanArray

§

impl Sync for BooleanArray

§

impl Unpin for BooleanArray

§

impl UnwindSafe for BooleanArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.DictionaryArray.html b/arrow2/array/struct.DictionaryArray.html index 249d4d3a8b9f..6c9fd9853b11 100644 --- a/arrow2/array/struct.DictionaryArray.html +++ b/arrow2/array/struct.DictionaryArray.html @@ -117,10 +117,10 @@
Panic
&self, offset: usize, length: usize -) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl<K: Clone + DictionaryKey> Clone for DictionaryArray<K>

source§

fn clone(&self) -> DictionaryArray<K>

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<K: DictionaryKey> Debug for DictionaryArray<K>

source§

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

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

impl<'a, T: DictionaryKey> From<GrowableDictionary<'a, T>> for DictionaryArray<T>

source§

fn from(val: GrowableDictionary<'a, T>) -> Self

Converts to this type from the input type.
source§

impl<K: DictionaryKey, M: MutableArray> From<MutableDictionaryArray<K, M>> for DictionaryArray<K>

source§

fn from(other: MutableDictionaryArray<K, M>) -> Self

Converts to this type from the input type.
source§

impl<'a, K: DictionaryKey> IntoIterator for &'a DictionaryArray<K>

§

type Item = Option<Box<dyn Scalar, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Scalar, Global>, DictionaryValuesIter<'a, K>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<K: DictionaryKey> PartialEq<&(dyn Array + 'static)> for DictionaryArray<K>

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<K: DictionaryKey> PartialEq<DictionaryArray<K>> for DictionaryArray<K>

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl<K: Clone + DictionaryKey> Clone for DictionaryArray<K>

source§

fn clone(&self) -> DictionaryArray<K>

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<K: DictionaryKey> Debug for DictionaryArray<K>

source§

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

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

impl<'a, T: DictionaryKey> From<GrowableDictionary<'a, T>> for DictionaryArray<T>

source§

fn from(val: GrowableDictionary<'a, T>) -> Self

Converts to this type from the input type.
source§

impl<K: DictionaryKey, M: MutableArray> From<MutableDictionaryArray<K, M>> for DictionaryArray<K>

source§

fn from(other: MutableDictionaryArray<K, M>) -> Self

Converts to this type from the input type.
source§

impl<'a, K: DictionaryKey> IntoIterator for &'a DictionaryArray<K>

§

type Item = Option<Box<dyn Scalar, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Scalar, Global>, DictionaryValuesIter<'a, K>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<K: DictionaryKey> PartialEq<&(dyn Array + 'static)> for DictionaryArray<K>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<K: DictionaryKey> PartialEq<DictionaryArray<K>> for DictionaryArray<K>

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl<K> !RefUnwindSafe for DictionaryArray<K>

§

impl<K> Send for DictionaryArray<K>

§

impl<K> Sync for DictionaryArray<K>

§

impl<K> Unpin for DictionaryArray<K>

§

impl<K> !UnwindSafe for DictionaryArray<K>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.FixedSizeBinaryArray.html b/arrow2/array/struct.FixedSizeBinaryArray.html index 2de87cabbcf8..98df5e61279b 100644 --- a/arrow2/array/struct.FixedSizeBinaryArray.html +++ b/arrow2/array/struct.FixedSizeBinaryArray.html @@ -93,10 +93,10 @@
Panics
&self, offset: usize, length: usize -) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl Clone for FixedSizeBinaryArray

source§

fn clone(&self) -> FixedSizeBinaryArray

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 FixedSizeBinaryArray

source§

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

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

impl<'a> From<GrowableFixedSizeBinary<'a>> for FixedSizeBinaryArray

source§

fn from(val: GrowableFixedSizeBinary<'a>) -> Self

Converts to this type from the input type.
source§

impl From<MutableFixedSizeBinaryArray> for FixedSizeBinaryArray

source§

fn from(other: MutableFixedSizeBinaryArray) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a FixedSizeBinaryArray

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a [u8], ChunksExact<'a, u8>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<FixedSizeBinaryArray> for FixedSizeBinaryArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl Clone for FixedSizeBinaryArray

source§

fn clone(&self) -> FixedSizeBinaryArray

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 FixedSizeBinaryArray

source§

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

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

impl<'a> From<GrowableFixedSizeBinary<'a>> for FixedSizeBinaryArray

source§

fn from(val: GrowableFixedSizeBinary<'a>) -> Self

Converts to this type from the input type.
source§

impl From<MutableFixedSizeBinaryArray> for FixedSizeBinaryArray

source§

fn from(other: MutableFixedSizeBinaryArray) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a FixedSizeBinaryArray

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a [u8], ChunksExact<'a, u8>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<FixedSizeBinaryArray> for FixedSizeBinaryArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl RefUnwindSafe for FixedSizeBinaryArray

§

impl Send for FixedSizeBinaryArray

§

impl Sync for FixedSizeBinaryArray

§

impl Unpin for FixedSizeBinaryArray

§

impl UnwindSafe for FixedSizeBinaryArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.FixedSizeListArray.html b/arrow2/array/struct.FixedSizeListArray.html index 6140225c1e9c..52aa3e918d97 100644 --- a/arrow2/array/struct.FixedSizeListArray.html +++ b/arrow2/array/struct.FixedSizeListArray.html @@ -74,10 +74,10 @@
Panics
&self, offset: usize, length: usize -) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl Clone for FixedSizeListArray

source§

fn clone(&self) -> FixedSizeListArray

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 FixedSizeListArray

source§

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

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

impl<'a> From<GrowableFixedSizeList<'a>> for FixedSizeListArray

source§

fn from(val: GrowableFixedSizeList<'a>) -> Self

Converts to this type from the input type.
source§

impl<M: MutableArray> From<MutableFixedSizeListArray<M>> for FixedSizeListArray

source§

fn from(other: MutableFixedSizeListArray<M>) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a FixedSizeListArray

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, ArrayValuesIter<'a, FixedSizeListArray>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<FixedSizeListArray> for FixedSizeListArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl Clone for FixedSizeListArray

source§

fn clone(&self) -> FixedSizeListArray

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 FixedSizeListArray

source§

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

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

impl<'a> From<GrowableFixedSizeList<'a>> for FixedSizeListArray

source§

fn from(val: GrowableFixedSizeList<'a>) -> Self

Converts to this type from the input type.
source§

impl<M: MutableArray> From<MutableFixedSizeListArray<M>> for FixedSizeListArray

source§

fn from(other: MutableFixedSizeListArray<M>) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a FixedSizeListArray

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, ArrayValuesIter<'a, FixedSizeListArray>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<FixedSizeListArray> for FixedSizeListArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl !RefUnwindSafe for FixedSizeListArray

§

impl Send for FixedSizeListArray

§

impl Sync for FixedSizeListArray

§

impl Unpin for FixedSizeListArray

§

impl !UnwindSafe for FixedSizeListArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.ListArray.html b/arrow2/array/struct.ListArray.html index 2e2543acaf3e..c65608302c0c 100644 --- a/arrow2/array/struct.ListArray.html +++ b/arrow2/array/struct.ListArray.html @@ -89,10 +89,10 @@
Panics
&self, offset: usize, length: usize -) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl<O: Clone + Offset> Clone for ListArray<O>

source§

fn clone(&self) -> ListArray<O>

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<O: Offset> Debug for ListArray<O>

source§

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

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

impl<'a, O: Offset> From<GrowableList<'a, O>> for ListArray<O>

source§

fn from(val: GrowableList<'a, O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, M: MutableArray> From<MutableListArray<O, M>> for ListArray<O>

source§

fn from(other: MutableListArray<O, M>) -> Self

Converts to this type from the input type.
source§

impl<'a, O: Offset> IntoIterator for &'a ListArray<O>

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, ArrayValuesIter<'a, ListArray<O>>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for ListArray<O>

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<ListArray<O>> for ListArray<O>

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl<O: Clone + Offset> Clone for ListArray<O>

source§

fn clone(&self) -> ListArray<O>

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<O: Offset> Debug for ListArray<O>

source§

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

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

impl<'a, O: Offset> From<GrowableList<'a, O>> for ListArray<O>

source§

fn from(val: GrowableList<'a, O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, M: MutableArray> From<MutableListArray<O, M>> for ListArray<O>

source§

fn from(other: MutableListArray<O, M>) -> Self

Converts to this type from the input type.
source§

impl<'a, O: Offset> IntoIterator for &'a ListArray<O>

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, ArrayValuesIter<'a, ListArray<O>>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for ListArray<O>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<ListArray<O>> for ListArray<O>

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl<O> !RefUnwindSafe for ListArray<O>

§

impl<O> Send for ListArray<O>

§

impl<O> Sync for ListArray<O>

§

impl<O> Unpin for ListArray<O>

§

impl<O> !UnwindSafe for ListArray<O>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.MapArray.html b/arrow2/array/struct.MapArray.html index 2c8c5ea6d9b8..eb52e0b5faa0 100644 --- a/arrow2/array/struct.MapArray.html +++ b/arrow2/array/struct.MapArray.html @@ -70,10 +70,10 @@
Safety
&self, offset: usize, length: usize -) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl Clone for MapArray

source§

fn clone(&self) -> MapArray

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 MapArray

source§

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

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

impl<'a> From<GrowableMap<'a>> for MapArray

source§

fn from(val: GrowableMap<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a MapArray

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, MapValuesIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for MapArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<MapArray> for MapArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl Clone for MapArray

source§

fn clone(&self) -> MapArray

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 MapArray

source§

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

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

impl<'a> From<GrowableMap<'a>> for MapArray

source§

fn from(val: GrowableMap<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a MapArray

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, MapValuesIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for MapArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<MapArray> for MapArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl !RefUnwindSafe for MapArray

§

impl Send for MapArray

§

impl Sync for MapArray

§

impl Unpin for MapArray

§

impl !UnwindSafe for MapArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.MutableBinaryArray.html b/arrow2/array/struct.MutableBinaryArray.html index b4a334584321..16f4e8504662 100644 --- a/arrow2/array/struct.MutableBinaryArray.html +++ b/arrow2/array/struct.MutableBinaryArray.html @@ -107,7 +107,7 @@
Safety

source

pub fn from_iter_values<T: AsRef<[u8]>, I: Iterator<Item = T>>( iterator: I ) -> Self

Creates a new MutableBinaryArray from a Iterator of &[u8].

-

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for MutableBinaryArray<O>

source§

fn clone(&self) -> MutableBinaryArray<O>

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<O: Debug + Offset> Debug for MutableBinaryArray<O>

source§

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

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

impl<O: Offset> Default for MutableBinaryArray<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset, T: AsRef<[u8]>> Extend<Option<T>> for MutableBinaryArray<O>

source§

fn extend<I: IntoIterator<Item = Option<T>>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<O: Offset> From<MutableBinaryArray<O>> for BinaryArray<O>

source§

fn from(other: MutableBinaryArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>

source§

fn from(other: MutableBinaryValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<[u8]>> FromIterator<Option<P>> for MutableBinaryArray<O>

source§

fn from_iter<I: IntoIterator<Item = Option<P>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<O: Offset> MutableArray for MutableBinaryArray<O>

source§

fn len(&self) -> usize

The length of the array.
source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
source§

fn data_type(&self) -> &DataType

The DataType of the array.
source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
source§

fn push_null(&mut self)

Adds a new null element to the array.
source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
source§

fn is_empty(&self) -> bool

Whether the array is empty.
source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
source§

impl<O: Offset> PartialEq<MutableBinaryArray<O>> for MutableBinaryArray<O>

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for MutableBinaryArray<O>

source§

fn clone(&self) -> MutableBinaryArray<O>

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<O: Debug + Offset> Debug for MutableBinaryArray<O>

source§

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

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

impl<O: Offset> Default for MutableBinaryArray<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset, T: AsRef<[u8]>> Extend<Option<T>> for MutableBinaryArray<O>

source§

fn extend<I: IntoIterator<Item = Option<T>>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<O: Offset> From<MutableBinaryArray<O>> for BinaryArray<O>

source§

fn from(other: MutableBinaryArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>

source§

fn from(other: MutableBinaryValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<[u8]>> FromIterator<Option<P>> for MutableBinaryArray<O>

source§

fn from_iter<I: IntoIterator<Item = Option<P>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<O: Offset> MutableArray for MutableBinaryArray<O>

source§

fn len(&self) -> usize

The length of the array.
source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
source§

fn data_type(&self) -> &DataType

The DataType of the array.
source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
source§

fn push_null(&mut self)

Adds a new null element to the array.
source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
source§

fn is_empty(&self) -> bool

Whether the array is empty.
source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
source§

impl<O: Offset> PartialEq<MutableBinaryArray<O>> for MutableBinaryArray<O>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset, T: AsRef<[u8]>> TryExtend<Option<T>> for MutableBinaryArray<O>

source§

fn try_extend<I: IntoIterator<Item = Option<T>>>( &mut self, diff --git a/arrow2/array/struct.MutableBinaryValuesArray.html b/arrow2/array/struct.MutableBinaryValuesArray.html index 3f16553365ca..760d76ae1b24 100644 --- a/arrow2/array/struct.MutableBinaryValuesArray.html +++ b/arrow2/array/struct.MutableBinaryValuesArray.html @@ -60,7 +60,7 @@

Safety
Error

This operation errors iff the total length in bytes on the iterator exceeds O’s maximum value. (i32::MAX or i64::MAX respectively).

-

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for MutableBinaryValuesArray<O>

source§

fn clone(&self) -> MutableBinaryValuesArray<O>

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<O: Debug + Offset> Debug for MutableBinaryValuesArray<O>

source§

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

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

impl<O: Offset> Default for MutableBinaryValuesArray<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset, T: AsRef<[u8]>> Extend<T> for MutableBinaryValuesArray<O>

source§

fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<O: Offset> From<MutableBinaryValuesArray<O>> for BinaryArray<O>

source§

fn from(other: MutableBinaryValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>

source§

fn from(other: MutableBinaryValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<[u8]>> FromIterator<P> for MutableBinaryValuesArray<O>

source§

fn from_iter<I: IntoIterator<Item = P>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a, O: Offset> IntoIterator for &'a MutableBinaryValuesArray<O>

§

type Item = &'a [u8]

The type of the elements being iterated over.
§

type IntoIter = ArrayValuesIter<'a, MutableBinaryValuesArray<O>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> MutableArray for MutableBinaryValuesArray<O>

source§

fn len(&self) -> usize

The length of the array.
source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
source§

fn data_type(&self) -> &DataType

The DataType of the array.
source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
source§

fn push_null(&mut self)

Adds a new null element to the array.
source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
source§

fn is_empty(&self) -> bool

Whether the array is empty.
source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
source§

impl<O: Offset, T: AsRef<[u8]>> TryExtend<T> for MutableBinaryValuesArray<O>

source§

fn try_extend<I: IntoIterator<Item = T>>(&mut self, iter: I) -> Result<()>

Fallible version of Extend::extend.
source§

impl<O: Offset> TryExtendFromSelf for MutableBinaryValuesArray<O>

source§

fn try_extend_from_self(&mut self, other: &Self) -> Result<()>

Tries to extend itself with elements from other, failing only on overflow.
source§

impl<O: Offset, T: AsRef<[u8]>> TryPush<T> for MutableBinaryValuesArray<O>

source§

fn try_push(&mut self, value: T) -> Result<()>

Tries to push a new element.

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for MutableBinaryValuesArray<O>

§

impl<O> Send for MutableBinaryValuesArray<O>

§

impl<O> Sync for MutableBinaryValuesArray<O>

§

impl<O> Unpin for MutableBinaryValuesArray<O>where +

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for MutableBinaryValuesArray<O>

source§

fn clone(&self) -> MutableBinaryValuesArray<O>

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<O: Debug + Offset> Debug for MutableBinaryValuesArray<O>

source§

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

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

impl<O: Offset> Default for MutableBinaryValuesArray<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset, T: AsRef<[u8]>> Extend<T> for MutableBinaryValuesArray<O>

source§

fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<O: Offset> From<MutableBinaryValuesArray<O>> for BinaryArray<O>

source§

fn from(other: MutableBinaryValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>

source§

fn from(other: MutableBinaryValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<[u8]>> FromIterator<P> for MutableBinaryValuesArray<O>

source§

fn from_iter<I: IntoIterator<Item = P>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a, O: Offset> IntoIterator for &'a MutableBinaryValuesArray<O>

§

type Item = &'a [u8]

The type of the elements being iterated over.
§

type IntoIter = ArrayValuesIter<'a, MutableBinaryValuesArray<O>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> MutableArray for MutableBinaryValuesArray<O>

source§

fn len(&self) -> usize

The length of the array.
source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
source§

fn data_type(&self) -> &DataType

The DataType of the array.
source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
source§

fn push_null(&mut self)

Adds a new null element to the array.
source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
source§

fn is_empty(&self) -> bool

Whether the array is empty.
source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
source§

impl<O: Offset, T: AsRef<[u8]>> TryExtend<T> for MutableBinaryValuesArray<O>

source§

fn try_extend<I: IntoIterator<Item = T>>(&mut self, iter: I) -> Result<()>

Fallible version of Extend::extend.
source§

impl<O: Offset> TryExtendFromSelf for MutableBinaryValuesArray<O>

source§

fn try_extend_from_self(&mut self, other: &Self) -> Result<()>

Tries to extend itself with elements from other, failing only on overflow.
source§

impl<O: Offset, T: AsRef<[u8]>> TryPush<T> for MutableBinaryValuesArray<O>

source§

fn try_push(&mut self, value: T) -> Result<()>

Tries to push a new element.

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for MutableBinaryValuesArray<O>

§

impl<O> Send for MutableBinaryValuesArray<O>

§

impl<O> Sync for MutableBinaryValuesArray<O>

§

impl<O> Unpin for MutableBinaryValuesArray<O>where O: Unpin,

§

impl<O> UnwindSafe for MutableBinaryValuesArray<O>where O: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/arrow2/array/struct.MutablePrimitiveArray.html b/arrow2/array/struct.MutablePrimitiveArray.html index 274be44d2145..107d1a9e2614 100644 --- a/arrow2/array/struct.MutablePrimitiveArray.html +++ b/arrow2/array/struct.MutablePrimitiveArray.html @@ -106,7 +106,7 @@
Safety
Safety

The iterator must be TrustedLen. I.e. that size_hint().1 correctly reports its length.

-

Trait Implementations§

source§

impl<T: Clone + NativeType> Clone for MutablePrimitiveArray<T>

source§

fn clone(&self) -> MutablePrimitiveArray<T>

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<T: Debug + NativeType> Debug for MutablePrimitiveArray<T>

source§

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

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

impl<T: NativeType> Default for MutablePrimitiveArray<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T: NativeType> Extend<Option<T>> for MutablePrimitiveArray<T>

source§

fn extend<I: IntoIterator<Item = Option<T>>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<T: NativeType> From<DataType> for MutablePrimitiveArray<T>

source§

fn from(data_type: DataType) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>

source§

fn from(other: MutablePrimitiveArray<T>) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType, P: AsRef<[Option<T>]>> From<P> for MutablePrimitiveArray<T>

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType, Ptr: Borrow<Option<T>>> FromIterator<Ptr> for MutablePrimitiveArray<T>

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<T: NativeType> MutableArray for MutablePrimitiveArray<T>

source§

fn len(&self) -> usize

The length of the array.
source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
source§

fn data_type(&self) -> &DataType

The DataType of the array.
source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
source§

fn push_null(&mut self)

Adds a new null element to the array.
source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
source§

fn is_empty(&self) -> bool

Whether the array is empty.
source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
source§

impl<T: NativeType> PartialEq<MutablePrimitiveArray<T>> for MutablePrimitiveArray<T>

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<T: Clone + NativeType> Clone for MutablePrimitiveArray<T>

source§

fn clone(&self) -> MutablePrimitiveArray<T>

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<T: Debug + NativeType> Debug for MutablePrimitiveArray<T>

source§

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

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

impl<T: NativeType> Default for MutablePrimitiveArray<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T: NativeType> Extend<Option<T>> for MutablePrimitiveArray<T>

source§

fn extend<I: IntoIterator<Item = Option<T>>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<T: NativeType> From<DataType> for MutablePrimitiveArray<T>

source§

fn from(data_type: DataType) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>

source§

fn from(other: MutablePrimitiveArray<T>) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType, P: AsRef<[Option<T>]>> From<P> for MutablePrimitiveArray<T>

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType, Ptr: Borrow<Option<T>>> FromIterator<Ptr> for MutablePrimitiveArray<T>

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<T: NativeType> MutableArray for MutablePrimitiveArray<T>

source§

fn len(&self) -> usize

The length of the array.
source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
source§

fn data_type(&self) -> &DataType

The DataType of the array.
source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
source§

fn push_null(&mut self)

Adds a new null element to the array.
source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
source§

fn is_empty(&self) -> bool

Whether the array is empty.
source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
source§

impl<T: NativeType> PartialEq<MutablePrimitiveArray<T>> for MutablePrimitiveArray<T>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: NativeType> TryExtend<Option<T>> for MutablePrimitiveArray<T>

source§

fn try_extend<I: IntoIterator<Item = Option<T>>>( &mut self, diff --git a/arrow2/array/struct.MutableUtf8ValuesArray.html b/arrow2/array/struct.MutableUtf8ValuesArray.html index c9e6d2158da7..d73de86086cc 100644 --- a/arrow2/array/struct.MutableUtf8ValuesArray.html +++ b/arrow2/array/struct.MutableUtf8ValuesArray.html @@ -80,7 +80,7 @@

Safety
Error

This operation errors iff the total length in bytes on the iterator exceeds O’s maximum value. (i32::MAX or i64::MAX respectively).

-

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for MutableUtf8ValuesArray<O>

source§

fn clone(&self) -> MutableUtf8ValuesArray<O>

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<O: Debug + Offset> Debug for MutableUtf8ValuesArray<O>

source§

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

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

impl<O: Offset> Default for MutableUtf8ValuesArray<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset, T: AsRef<str>> Extend<T> for MutableUtf8ValuesArray<O>

source§

fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<O: Offset> From<MutableUtf8ValuesArray<O>> for MutableUtf8Array<O>

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<str>> FromIterator<P> for MutableUtf8ValuesArray<O>

source§

fn from_iter<I: IntoIterator<Item = P>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a, O: Offset> IntoIterator for &'a MutableUtf8ValuesArray<O>

§

type Item = &'a str

The type of the elements being iterated over.
§

type IntoIter = ArrayValuesIter<'a, MutableUtf8ValuesArray<O>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> MutableArray for MutableUtf8ValuesArray<O>

source§

fn len(&self) -> usize

The length of the array.
source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
source§

fn data_type(&self) -> &DataType

The DataType of the array.
source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
source§

fn push_null(&mut self)

Adds a new null element to the array.
source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
source§

fn is_empty(&self) -> bool

Whether the array is empty.
source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
source§

impl<O: Offset, T: AsRef<str>> TryExtend<T> for MutableUtf8ValuesArray<O>

source§

fn try_extend<I: IntoIterator<Item = T>>(&mut self, iter: I) -> Result<()>

Fallible version of Extend::extend.
source§

impl<O: Offset> TryExtendFromSelf for MutableUtf8ValuesArray<O>

source§

fn try_extend_from_self(&mut self, other: &Self) -> Result<()>

Tries to extend itself with elements from other, failing only on overflow.
source§

impl<O: Offset, T: AsRef<str>> TryPush<T> for MutableUtf8ValuesArray<O>

source§

fn try_push(&mut self, value: T) -> Result<()>

Tries to push a new element.

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for MutableUtf8ValuesArray<O>

§

impl<O> Send for MutableUtf8ValuesArray<O>

§

impl<O> Sync for MutableUtf8ValuesArray<O>

§

impl<O> Unpin for MutableUtf8ValuesArray<O>where +

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for MutableUtf8ValuesArray<O>

source§

fn clone(&self) -> MutableUtf8ValuesArray<O>

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<O: Debug + Offset> Debug for MutableUtf8ValuesArray<O>

source§

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

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

impl<O: Offset> Default for MutableUtf8ValuesArray<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset, T: AsRef<str>> Extend<T> for MutableUtf8ValuesArray<O>

source§

fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<O: Offset> From<MutableUtf8ValuesArray<O>> for MutableUtf8Array<O>

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<str>> FromIterator<P> for MutableUtf8ValuesArray<O>

source§

fn from_iter<I: IntoIterator<Item = P>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a, O: Offset> IntoIterator for &'a MutableUtf8ValuesArray<O>

§

type Item = &'a str

The type of the elements being iterated over.
§

type IntoIter = ArrayValuesIter<'a, MutableUtf8ValuesArray<O>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> MutableArray for MutableUtf8ValuesArray<O>

source§

fn len(&self) -> usize

The length of the array.
source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
source§

fn as_box(&mut self) -> Box<dyn Array>

Convert itself to an (immutable) Array.
source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
source§

fn data_type(&self) -> &DataType

The DataType of the array.
source§

fn as_any(&self) -> &dyn Any

Convert to Any, to enable dynamic casting.
source§

fn as_mut_any(&mut self) -> &mut dyn Any

Convert to mutable Any, to enable dynamic casting.
source§

fn push_null(&mut self)

Adds a new null element to the array.
source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
source§

fn is_empty(&self) -> bool

Whether the array is empty.
source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
source§

impl<O: Offset, T: AsRef<str>> TryExtend<T> for MutableUtf8ValuesArray<O>

source§

fn try_extend<I: IntoIterator<Item = T>>(&mut self, iter: I) -> Result<()>

Fallible version of Extend::extend.
source§

impl<O: Offset> TryExtendFromSelf for MutableUtf8ValuesArray<O>

source§

fn try_extend_from_self(&mut self, other: &Self) -> Result<()>

Tries to extend itself with elements from other, failing only on overflow.
source§

impl<O: Offset, T: AsRef<str>> TryPush<T> for MutableUtf8ValuesArray<O>

source§

fn try_push(&mut self, value: T) -> Result<()>

Tries to push a new element.

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for MutableUtf8ValuesArray<O>

§

impl<O> Send for MutableUtf8ValuesArray<O>

§

impl<O> Sync for MutableUtf8ValuesArray<O>

§

impl<O> Unpin for MutableUtf8ValuesArray<O>where O: Unpin,

§

impl<O> UnwindSafe for MutableUtf8ValuesArray<O>where O: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/arrow2/array/struct.NullArray.html b/arrow2/array/struct.NullArray.html index 73b7129245dd..9600d0ec1915 100644 --- a/arrow2/array/struct.NullArray.html +++ b/arrow2/array/struct.NullArray.html @@ -39,10 +39,10 @@
Safety
&self, offset: usize, length: usize -) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl Clone for NullArray

source§

fn clone(&self) -> NullArray

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 NullArray

source§

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

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

impl From<GrowableNull> for NullArray

source§

fn from(val: GrowableNull) -> Self

Converts to this type from the input type.
source§

impl From<MutableNullArray> for NullArray

source§

fn from(value: MutableNullArray) -> Self

Converts to this type from the input type.
source§

impl PartialEq<&(dyn Array + 'static)> for NullArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<NullArray> for NullArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl Clone for NullArray

source§

fn clone(&self) -> NullArray

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 NullArray

source§

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

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

impl From<GrowableNull> for NullArray

source§

fn from(val: GrowableNull) -> Self

Converts to this type from the input type.
source§

impl From<MutableNullArray> for NullArray

source§

fn from(value: MutableNullArray) -> Self

Converts to this type from the input type.
source§

impl PartialEq<&(dyn Array + 'static)> for NullArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<NullArray> for NullArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl RefUnwindSafe for NullArray

§

impl Send for NullArray

§

impl Sync for NullArray

§

impl Unpin for NullArray

§

impl UnwindSafe for NullArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.PrimitiveArray.html b/arrow2/array/struct.PrimitiveArray.html index afd34cb464bb..9f4e09feb058 100644 --- a/arrow2/array/struct.PrimitiveArray.html +++ b/arrow2/array/struct.PrimitiveArray.html @@ -174,46 +174,46 @@
Panics
offset: usize, length: usize ) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl<T> ArrayAdd<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + Add<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn add(&self, rhs: &PrimitiveArray<T>) -> Self

Adds itself to rhs
source§

impl ArrayAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn add(&self, rhs: &PrimitiveArray<i128>) -> Self

Adds itself to rhs
source§

impl<T> ArrayAdd<T> for PrimitiveArray<T>where - T: NativeArithmetics + Add<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn add(&self, rhs: &T) -> Self

Adds itself to rhs
source§

impl<T> ArrayCheckedAdd<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_add(&self, rhs: &PrimitiveArray<T>) -> Self

Checked add
source§

impl ArrayCheckedAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn checked_add(&self, rhs: &PrimitiveArray<i128>) -> Self

Checked add
source§

impl<T> ArrayCheckedAdd<T> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_add(&self, rhs: &T) -> Self

Checked add
source§

impl<T> ArrayCheckedDiv<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedDiv<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_div(&self, rhs: &PrimitiveArray<T>) -> Self

checked division
source§

impl ArrayCheckedDiv<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn checked_div(&self, rhs: &PrimitiveArray<i128>) -> Self

checked division
source§

impl<T> ArrayCheckedDiv<T> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedDiv<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_div(&self, rhs: &T) -> Self

checked division
source§

impl<T> ArrayCheckedMul<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_mul(&self, rhs: &PrimitiveArray<T>) -> Self

checked multiplication
source§

impl ArrayCheckedMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn checked_mul(&self, rhs: &PrimitiveArray<i128>) -> Self

checked multiplication
source§

impl<T> ArrayCheckedMul<T> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_mul(&self, rhs: &T) -> Self

checked multiplication
source§

impl<T> ArrayCheckedRem<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + Add<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn add(&self, rhs: &PrimitiveArray<T>) -> Self

Adds itself to rhs
source§

impl ArrayAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn add(&self, rhs: &PrimitiveArray<i128>) -> Self

Adds itself to rhs
source§

impl<T> ArrayAdd<T> for PrimitiveArray<T>where + T: NativeArithmetics + Add<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn add(&self, rhs: &T) -> Self

Adds itself to rhs
source§

impl<T> ArrayCheckedAdd<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_add(&self, rhs: &PrimitiveArray<T>) -> Self

Checked add
source§

impl ArrayCheckedAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn checked_add(&self, rhs: &PrimitiveArray<i128>) -> Self

Checked add
source§

impl<T> ArrayCheckedAdd<T> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_add(&self, rhs: &T) -> Self

Checked add
source§

impl<T> ArrayCheckedDiv<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedDiv<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_div(&self, rhs: &PrimitiveArray<T>) -> Self

checked division
source§

impl ArrayCheckedDiv<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn checked_div(&self, rhs: &PrimitiveArray<i128>) -> Self

checked division
source§

impl<T> ArrayCheckedDiv<T> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedDiv<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_div(&self, rhs: &T) -> Self

checked division
source§

impl<T> ArrayCheckedMul<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_mul(&self, rhs: &PrimitiveArray<T>) -> Self

checked multiplication
source§

impl ArrayCheckedMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn checked_mul(&self, rhs: &PrimitiveArray<i128>) -> Self

checked multiplication
source§

impl<T> ArrayCheckedMul<T> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_mul(&self, rhs: &T) -> Self

checked multiplication
source§

impl<T> ArrayCheckedRem<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + CheckedRem<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_rem(&self, rhs: &PrimitiveArray<T>) -> Self

checked remainder
source§

impl<T> ArrayCheckedRem<T> for PrimitiveArray<T>where T: NativeArithmetics + CheckedRem<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_rem(&self, rhs: &T) -> Self

checked remainder
source§

impl<T> ArrayCheckedSub<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + CheckedSub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_sub(&self, rhs: &PrimitiveArray<T>) -> Self

checked subtraction
source§

impl ArrayCheckedSub<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn checked_sub(&self, rhs: &PrimitiveArray<i128>) -> Self

checked subtraction
source§

impl<T> ArrayCheckedSub<T> for PrimitiveArray<T>where T: NativeArithmetics + CheckedSub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn checked_sub(&self, rhs: &T) -> Self

checked subtraction
source§

impl<T> ArrayDiv<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + Div<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn div(&self, rhs: &PrimitiveArray<T>) -> Self

division
source§

impl ArrayDiv<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn div(&self, rhs: &PrimitiveArray<i128>) -> Self

division
source§

impl<T> ArrayDiv<T> for PrimitiveArray<T>where T: NativeArithmetics + Div<Output = T> + NumCast,

Available on crate feature compute_arithmetics only.
source§

fn div(&self, rhs: &T) -> Self

division
source§

impl<T> ArrayMul<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + Mul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn mul(&self, rhs: &PrimitiveArray<T>) -> Self

multiplication
source§

impl ArrayMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn mul(&self, rhs: &PrimitiveArray<i128>) -> Self

multiplication
source§

impl<T> ArrayMul<T> for PrimitiveArray<T>where - T: NativeArithmetics + Mul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn mul(&self, rhs: &T) -> Self

multiplication
source§

impl<T> ArrayOverflowingAdd<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + OverflowingAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_add(&self, rhs: &PrimitiveArray<T>) -> (Self, Bitmap)

Overflowing add
source§

impl<T> ArrayOverflowingAdd<T> for PrimitiveArray<T>where - T: NativeArithmetics + OverflowingAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_add(&self, rhs: &T) -> (Self, Bitmap)

Overflowing add
source§

impl<T> ArrayOverflowingMul<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + OverflowingMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_mul(&self, rhs: &PrimitiveArray<T>) -> (Self, Bitmap)

overflowing multiplication
source§

impl<T> ArrayOverflowingMul<T> for PrimitiveArray<T>where - T: NativeArithmetics + OverflowingMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_mul(&self, rhs: &T) -> (Self, Bitmap)

overflowing multiplication
source§

impl<T> ArrayOverflowingSub<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + Mul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn mul(&self, rhs: &PrimitiveArray<T>) -> Self

multiplication
source§

impl ArrayMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn mul(&self, rhs: &PrimitiveArray<i128>) -> Self

multiplication
source§

impl<T> ArrayMul<T> for PrimitiveArray<T>where + T: NativeArithmetics + Mul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn mul(&self, rhs: &T) -> Self

multiplication
source§

impl<T> ArrayOverflowingAdd<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + OverflowingAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_add(&self, rhs: &PrimitiveArray<T>) -> (Self, Bitmap)

Overflowing add
source§

impl<T> ArrayOverflowingAdd<T> for PrimitiveArray<T>where + T: NativeArithmetics + OverflowingAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_add(&self, rhs: &T) -> (Self, Bitmap)

Overflowing add
source§

impl<T> ArrayOverflowingMul<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + OverflowingMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_mul(&self, rhs: &PrimitiveArray<T>) -> (Self, Bitmap)

overflowing multiplication
source§

impl<T> ArrayOverflowingMul<T> for PrimitiveArray<T>where + T: NativeArithmetics + OverflowingMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_mul(&self, rhs: &T) -> (Self, Bitmap)

overflowing multiplication
source§

impl<T> ArrayOverflowingSub<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + OverflowingSub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_sub(&self, rhs: &PrimitiveArray<T>) -> (Self, Bitmap)

overflowing subtraction
source§

impl<T> ArrayOverflowingSub<T> for PrimitiveArray<T>where T: NativeArithmetics + OverflowingSub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn overflowing_sub(&self, rhs: &T) -> (Self, Bitmap)

overflowing subtraction
source§

impl<T> ArrayRem<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + Rem<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn rem(&self, rhs: &PrimitiveArray<T>) -> Self

remainder
source§

impl<T> ArrayRem<T> for PrimitiveArray<T>where T: NativeArithmetics + Rem<Output = T> + NumCast,

Available on crate feature compute_arithmetics only.
source§

fn rem(&self, rhs: &T) -> Self

remainder
source§

impl<T> ArraySaturatingAdd<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + SaturatingAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn saturating_add(&self, rhs: &PrimitiveArray<T>) -> Self

Saturating add
source§

impl ArraySaturatingAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn saturating_add(&self, rhs: &PrimitiveArray<i128>) -> Self

Saturating add
source§

impl<T> ArraySaturatingAdd<T> for PrimitiveArray<T>where - T: NativeArithmetics + SaturatingAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn saturating_add(&self, rhs: &T) -> Self

Saturating add
source§

impl<T> ArraySaturatingMul<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + SaturatingMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn saturating_mul(&self, rhs: &PrimitiveArray<T>) -> Self

saturating multiplication
source§

impl ArraySaturatingMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn saturating_mul(&self, rhs: &PrimitiveArray<i128>) -> Self

saturating multiplication
source§

impl<T> ArraySaturatingMul<T> for PrimitiveArray<T>where + T: NativeArithmetics + SaturatingAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn saturating_add(&self, rhs: &PrimitiveArray<T>) -> Self

Saturating add
source§

impl ArraySaturatingAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn saturating_add(&self, rhs: &PrimitiveArray<i128>) -> Self

Saturating add
source§

impl<T> ArraySaturatingAdd<T> for PrimitiveArray<T>where + T: NativeArithmetics + SaturatingAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn saturating_add(&self, rhs: &T) -> Self

Saturating add
source§

impl<T> ArraySaturatingMul<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + SaturatingMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn saturating_mul(&self, rhs: &PrimitiveArray<T>) -> Self

saturating multiplication
source§

impl ArraySaturatingMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn saturating_mul(&self, rhs: &PrimitiveArray<i128>) -> Self

saturating multiplication
source§

impl<T> ArraySaturatingMul<T> for PrimitiveArray<T>where T: NativeArithmetics + SaturatingMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn saturating_mul(&self, rhs: &T) -> Self

saturating multiplication
source§

impl<T> ArraySaturatingSub<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + SaturatingSub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn saturating_sub(&self, rhs: &PrimitiveArray<T>) -> Self

saturarting subtraction
source§

impl ArraySaturatingSub<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn saturating_sub(&self, rhs: &PrimitiveArray<i128>) -> Self

saturarting subtraction
source§

impl<T> ArraySaturatingSub<T> for PrimitiveArray<T>where T: NativeArithmetics + SaturatingSub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn saturating_sub(&self, rhs: &T) -> Self

saturarting subtraction
source§

impl<T> ArraySub<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + Sub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn sub(&self, rhs: &PrimitiveArray<T>) -> Self

subtraction
source§

impl ArraySub<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn sub(&self, rhs: &PrimitiveArray<i128>) -> Self

subtraction
source§

impl<T> ArraySub<T> for PrimitiveArray<T>where - T: NativeArithmetics + Sub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn sub(&self, rhs: &T) -> Self

subtraction
source§

impl<T> ArrayWrappingAdd<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + Sub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn sub(&self, rhs: &PrimitiveArray<T>) -> Self

subtraction
source§

impl ArraySub<PrimitiveArray<i128>> for PrimitiveArray<i128>

Available on crate feature compute_arithmetics only.
source§

fn sub(&self, rhs: &PrimitiveArray<i128>) -> Self

subtraction
source§

impl<T> ArraySub<T> for PrimitiveArray<T>where + T: NativeArithmetics + Sub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn sub(&self, rhs: &T) -> Self

subtraction
source§

impl<T> ArrayWrappingAdd<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + WrappingAdd<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn wrapping_add(&self, rhs: &PrimitiveArray<T>) -> Self

Adds itself to rhs using wrapping addition
source§

impl<T> ArrayWrappingMul<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + WrappingMul<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn wrapping_mul(&self, rhs: &PrimitiveArray<T>) -> Self

wrapping multiplication
source§

impl<T> ArrayWrappingSub<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + WrappingSub<Output = T>,

Available on crate feature compute_arithmetics only.
source§

fn wrapping_sub(&self, rhs: &PrimitiveArray<T>) -> Self

wrapping subtraction
source§

impl<T: Clone + NativeType> Clone for PrimitiveArray<T>

source§

fn clone(&self) -> PrimitiveArray<T>

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<T: NativeType> Debug for PrimitiveArray<T>

source§

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

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

impl<T: NativeType> Default for PrimitiveArray<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'a, T: NativeType> From<GrowablePrimitive<'a, T>> for PrimitiveArray<T>

source§

fn from(val: GrowablePrimitive<'a, T>) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>

source§

fn from(other: MutablePrimitiveArray<T>) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType, P: AsRef<[Option<T>]>> From<P> for PrimitiveArray<T>

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType, Ptr: Borrow<Option<T>>> FromIterator<Ptr> for PrimitiveArray<T>

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a, T: NativeType> IntoIterator for &'a PrimitiveArray<T>

§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a T, Iter<'a, T>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T: NativeType> IntoIterator for PrimitiveArray<T>

§

type Item = Option<T>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<T, IntoIter<T>, IntoIter>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T: NativeType> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>

source§

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

This method tests for self and other values to be equal, and is used + T: NativeArithmetics + WrappingSub<Output = T>,
Available on crate feature compute_arithmetics only.
source§

fn wrapping_sub(&self, rhs: &PrimitiveArray<T>) -> Self

wrapping subtraction
source§

impl<T: Clone + NativeType> Clone for PrimitiveArray<T>

source§

fn clone(&self) -> PrimitiveArray<T>

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<T: NativeType> Debug for PrimitiveArray<T>

source§

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

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

impl<T: NativeType> Default for PrimitiveArray<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'a, T: NativeType> From<GrowablePrimitive<'a, T>> for PrimitiveArray<T>

source§

fn from(val: GrowablePrimitive<'a, T>) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>

source§

fn from(other: MutablePrimitiveArray<T>) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType, P: AsRef<[Option<T>]>> From<P> for PrimitiveArray<T>

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl<T: NativeType, Ptr: Borrow<Option<T>>> FromIterator<Ptr> for PrimitiveArray<T>

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a, T: NativeType> IntoIterator for &'a PrimitiveArray<T>

§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a T, Iter<'a, T>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T: NativeType> IntoIterator for PrimitiveArray<T>

§

type Item = Option<T>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<T, IntoIter<T>, IntoIter>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T: NativeType> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<T: NativeType> PartialEq<PrimitiveArray<T>> for &dyn Array

source§

fn eq(&self, other: &PrimitiveArray<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<T: NativeType> PartialEq<PrimitiveArray<T>> for &dyn Array

source§

fn eq(&self, other: &PrimitiveArray<T>) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<T: NativeType> PartialEq<PrimitiveArray<T>> for PrimitiveArray<T>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<T: NativeType> PartialEq<PrimitiveArray<T>> for PrimitiveArray<T>

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for PrimitiveArray<T>

§

impl<T> Send for PrimitiveArray<T>

§

impl<T> Sync for PrimitiveArray<T>

§

impl<T> Unpin for PrimitiveArray<T>

§

impl<T> UnwindSafe for PrimitiveArray<T>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.StructArray.html b/arrow2/array/struct.StructArray.html index 42f6fc0ad99e..45f1192b8092 100644 --- a/arrow2/array/struct.StructArray.html +++ b/arrow2/array/struct.StructArray.html @@ -91,10 +91,10 @@
Panics
&self, offset: usize, length: usize -) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl Clone for StructArray

source§

fn clone(&self) -> StructArray

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 StructArray

source§

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

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

impl<'a> From<GrowableStruct<'a>> for StructArray

source§

fn from(val: GrowableStruct<'a>) -> Self

Converts to this type from the input type.
source§

impl From<MutableStructArray> for StructArray

source§

fn from(other: MutableStructArray) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a StructArray

§

type Item = Option<Vec<Box<dyn Scalar, Global>, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Vec<Box<dyn Scalar, Global>, Global>, StructValueIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for StructArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StructArray> for StructArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl Clone for StructArray

source§

fn clone(&self) -> StructArray

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 StructArray

source§

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

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

impl<'a> From<GrowableStruct<'a>> for StructArray

source§

fn from(val: GrowableStruct<'a>) -> Self

Converts to this type from the input type.
source§

impl From<MutableStructArray> for StructArray

source§

fn from(other: MutableStructArray) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a StructArray

§

type Item = Option<Vec<Box<dyn Scalar, Global>, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Vec<Box<dyn Scalar, Global>, Global>, StructValueIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for StructArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StructArray> for StructArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl !RefUnwindSafe for StructArray

§

impl Send for StructArray

§

impl Sync for StructArray

§

impl Unpin for StructArray

§

impl !UnwindSafe for StructArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.UnionArray.html b/arrow2/array/struct.UnionArray.html index 57b901e7eb58..7ad45357e34e 100644 --- a/arrow2/array/struct.UnionArray.html +++ b/arrow2/array/struct.UnionArray.html @@ -80,10 +80,10 @@
Panic
&self, offset: usize, length: usize -) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl Clone for UnionArray

source§

fn clone(&self) -> UnionArray

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 UnionArray

source§

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

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

impl<'a> From<GrowableUnion<'a>> for UnionArray

source§

fn from(val: GrowableUnion<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a UnionArray

§

type Item = Box<dyn Scalar, Global>

The type of the elements being iterated over.
§

type IntoIter = UnionIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for UnionArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<UnionArray> for UnionArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl Clone for UnionArray

source§

fn clone(&self) -> UnionArray

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 UnionArray

source§

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

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

impl<'a> From<GrowableUnion<'a>> for UnionArray

source§

fn from(val: GrowableUnion<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a UnionArray

§

type Item = Box<dyn Scalar, Global>

The type of the elements being iterated over.
§

type IntoIter = UnionIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for UnionArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<UnionArray> for UnionArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl !RefUnwindSafe for UnionArray

§

impl Send for UnionArray

§

impl Sync for UnionArray

§

impl Unpin for UnionArray

§

impl !UnwindSafe for UnionArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/arrow2/array/struct.Utf8Array.html b/arrow2/array/struct.Utf8Array.html index ca1ff2a25bf2..1eb323b359d1 100644 --- a/arrow2/array/struct.Utf8Array.html +++ b/arrow2/array/struct.Utf8Array.html @@ -195,10 +195,10 @@
Panics
&self, offset: usize, length: usize -) -> Box<dyn Array>

Returns a slice of this Array. Read more
source§

impl<O: Clone + Offset> Clone for Utf8Array<O>

source§

fn clone(&self) -> Utf8Array<O>

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<O: Offset> Debug for Utf8Array<O>

source§

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

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

impl<O: Offset> Default for Utf8Array<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'a, O: Offset> From<GrowableUtf8<'a, O>> for Utf8Array<O>

source§

fn from(val: GrowableUtf8<'a, O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableUtf8Array<O>> for Utf8Array<O>

source§

fn from(other: MutableUtf8Array<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<str>> FromIterator<Option<P>> for Utf8Array<O>

source§

fn from_iter<I: IntoIterator<Item = Option<P>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<O: Offset> GenericBinaryArray<O> for Utf8Array<O>

source§

fn values(&self) -> &[u8]

The values of the array
source§

fn offsets(&self) -> &[O]

The offsets of the array
source§

impl<'a, O: Offset> IntoIterator for &'a Utf8Array<O>

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a str, ArrayValuesIter<'a, Utf8Array<O>>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for Utf8Array<O>

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<Utf8Array<O>> for &dyn Array

source§

fn eq(&self, other: &Utf8Array<O>) -> bool

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array>
Returns a slice of this Array. Read more
source§

impl<O: Clone + Offset> Clone for Utf8Array<O>

source§

fn clone(&self) -> Utf8Array<O>

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<O: Offset> Debug for Utf8Array<O>

source§

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

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

impl<O: Offset> Default for Utf8Array<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'a, O: Offset> From<GrowableUtf8<'a, O>> for Utf8Array<O>

source§

fn from(val: GrowableUtf8<'a, O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableUtf8Array<O>> for Utf8Array<O>

source§

fn from(other: MutableUtf8Array<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset, P: AsRef<str>> FromIterator<Option<P>> for Utf8Array<O>

source§

fn from_iter<I: IntoIterator<Item = Option<P>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<O: Offset> GenericBinaryArray<O> for Utf8Array<O>

source§

fn values(&self) -> &[u8]

The values of the array
source§

fn offsets(&self) -> &[O]

The offsets of the array
source§

impl<'a, O: Offset> IntoIterator for &'a Utf8Array<O>

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a str, ArrayValuesIter<'a, Utf8Array<O>>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for Utf8Array<O>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<Utf8Array<O>> for &dyn Array

source§

fn eq(&self, other: &Utf8Array<O>) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<Utf8Array<O>> for Utf8Array<O>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for Utf8Array<O>

§

impl<O> Send for Utf8Array<O>

§

impl<O> Sync for Utf8Array<O>

§

impl<O> Unpin for Utf8Array<O>

§

impl<O> UnwindSafe for Utf8Array<O>

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/arrow2/array/trait.Array.html b/arrow2/array/trait.Array.html index c105c0032eff..b27ea69443b0 100644 --- a/arrow2/array/trait.Array.html +++ b/arrow2/array/trait.Array.html @@ -71,40 +71,40 @@
Implementation
and moving the struct to the heap.

Safety

The caller must ensure that offset + length <= self.len()

-

Trait Implementations§

source§

impl<'a> AsRef<dyn Array + 'a> for dyn Array

source§

fn as_ref(&self) -> &(dyn Array + 'a)

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'clone> Clone for Box<dyn Array + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Array + Send + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Array + Send + Sync + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Array + Sync + 'clone>

source§

fn clone(&self) -> Self

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 dyn Array + '_

source§

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

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

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for BinaryArray<O>

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for BooleanArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<K: DictionaryKey> PartialEq<&(dyn Array + 'static)> for DictionaryArray<K>

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<'a> AsRef<dyn Array + 'a> for dyn Array

source§

fn as_ref(&self) -> &(dyn Array + 'a)

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'clone> Clone for Box<dyn Array + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Array + Send + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Array + Send + Sync + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Array + Sync + 'clone>

source§

fn clone(&self) -> Self

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 dyn Array + '_

source§

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

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

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for BinaryArray<O>

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for BooleanArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<K: DictionaryKey> PartialEq<&(dyn Array + 'static)> for DictionaryArray<K>

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for ListArray<O>

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for MapArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for NullArray

source§

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

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for ListArray<O>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<T: NativeType> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>

source§

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

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for MapArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for StructArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for UnionArray

source§

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

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for Utf8Array<O>

source§

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

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for NullArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<T: NativeType> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<BinaryArray<O>> for &dyn Array

source§

fn eq(&self, other: &BinaryArray<O>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<T: NativeType> PartialEq<PrimitiveArray<T>> for &dyn Array

source§

fn eq(&self, other: &PrimitiveArray<T>) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for StructArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<Utf8Array<O>> for &dyn Array

source§

fn eq(&self, other: &Utf8Array<O>) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for UnionArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<&(dyn Array + 'static)> for Utf8Array<O>

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<BinaryArray<O>> for &dyn Array

source§

fn eq(&self, other: &BinaryArray<O>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &dyn Array) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array> for Box<dyn Array + '_>

source§

fn eq(&self, that: &dyn Array) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array + '_> for dyn Array + '_

source§

fn eq(&self, that: &dyn Array) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<T: NativeType> PartialEq<PrimitiveArray<T>> for &dyn Array

source§

fn eq(&self, other: &PrimitiveArray<T>) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<O: Offset> PartialEq<Utf8Array<O>> for &dyn Array

source§

fn eq(&self, other: &Utf8Array<O>) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &dyn Array) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array> for Box<dyn Array + '_>

source§

fn eq(&self, that: &dyn Array) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array + '_> for dyn Array + '_

source§

fn eq(&self, that: &dyn Array) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Implementors§

\ No newline at end of file diff --git a/arrow2/array/trait.DictionaryKey.html b/arrow2/array/trait.DictionaryKey.html index 086cabfe7afa..b7d54f338834 100644 --- a/arrow2/array/trait.DictionaryKey.html +++ b/arrow2/array/trait.DictionaryKey.html @@ -13,4 +13,4 @@

Safety

Safety

The caller must have checked that the value can be casted to usize.

source

fn always_fits_usize() -> bool

If the key type always can be converted to usize.

-

Implementations on Foreign Types§

source§

impl DictionaryKey for u8

source§

const KEY_TYPE: IntegerType = IntegerType::UInt8

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for i16

source§

const KEY_TYPE: IntegerType = IntegerType::Int16

source§

impl DictionaryKey for u16

source§

const KEY_TYPE: IntegerType = IntegerType::UInt16

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for i8

source§

const KEY_TYPE: IntegerType = IntegerType::Int8

source§

impl DictionaryKey for u64

source§

const KEY_TYPE: IntegerType = IntegerType::UInt64

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for u32

source§

const KEY_TYPE: IntegerType = IntegerType::UInt32

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for i32

source§

const KEY_TYPE: IntegerType = IntegerType::Int32

source§

impl DictionaryKey for i64

source§

const KEY_TYPE: IntegerType = IntegerType::Int64

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl DictionaryKey for i16

source§

const KEY_TYPE: IntegerType = IntegerType::Int16

source§

impl DictionaryKey for u16

source§

const KEY_TYPE: IntegerType = IntegerType::UInt16

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for u8

source§

const KEY_TYPE: IntegerType = IntegerType::UInt8

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for i64

source§

const KEY_TYPE: IntegerType = IntegerType::Int64

source§

impl DictionaryKey for i8

source§

const KEY_TYPE: IntegerType = IntegerType::Int8

source§

impl DictionaryKey for i32

source§

const KEY_TYPE: IntegerType = IntegerType::Int32

source§

impl DictionaryKey for u32

source§

const KEY_TYPE: IntegerType = IntegerType::UInt32

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for u64

source§

const KEY_TYPE: IntegerType = IntegerType::UInt64

source§

fn always_fits_usize() -> bool

Implementors§

\ No newline at end of file diff --git a/arrow2/bitmap/struct.Bitmap.html b/arrow2/bitmap/struct.Bitmap.html index dbd5d0d04d52..d1d4a5deb564 100644 --- a/arrow2/bitmap/struct.Bitmap.html +++ b/arrow2/bitmap/struct.Bitmap.html @@ -123,8 +123,8 @@
Safety
) -> Result<Self, E>

Creates a new Bitmap from a fallible iterator of booleans.

Safety

The iterator must report an accurate length.

-

Trait Implementations§

source§

impl<'a> BitAnd<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'a Bitmap) -> Self

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b Bitmap) -> Bitmap

Performs the & operation. Read more
source§

impl<'a> BitAndAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitand_assign(&mut self, rhs: &'a Bitmap)

Performs the &= operation. Read more
source§

impl<'a> BitOr<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'a Bitmap) -> Self

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b Bitmap) -> Bitmap

Performs the | operation. Read more
source§

impl<'a> BitOrAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitor_assign(&mut self, rhs: &'a Bitmap)

Performs the |= operation. Read more
source§

impl<'a> BitXor<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'a Bitmap) -> Self

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b Bitmap) -> Bitmap

Performs the ^ operation. Read more
source§

impl<'a> BitXorAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitxor_assign(&mut self, rhs: &'a Bitmap)

Performs the ^= operation. Read more
source§

impl Clone for Bitmap

source§

fn clone(&self) -> Bitmap

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 Bitmap

source§

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

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

impl Default for Bitmap

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<MutableBitmap> for Bitmap

source§

fn from(buffer: MutableBitmap) -> Self

Converts to this type from the input type.
source§

impl<P: AsRef<[bool]>> From<P> for Bitmap

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl FromIterator<bool> for Bitmap

source§

fn from_iter<I>(iter: I) -> Selfwhere - I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl<'a> IntoIterator for &'a Bitmap

§

type Item = bool

The type of the elements being iterated over.
§

type IntoIter = BitmapIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for Bitmap

§

type Item = bool

The type of the elements being iterated over.
§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl Not for &Bitmap

§

type Output = Bitmap

The resulting type after applying the ! operator.
source§

fn not(self) -> Bitmap

Performs the unary ! operation. Read more
source§

impl PartialEq<Bitmap> for Bitmap

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<'a> BitAnd<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'a Bitmap) -> Self

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b Bitmap) -> Bitmap

Performs the & operation. Read more
source§

impl<'a> BitAndAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitand_assign(&mut self, rhs: &'a Bitmap)

Performs the &= operation. Read more
source§

impl<'a> BitOr<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'a Bitmap) -> Self

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b Bitmap) -> Bitmap

Performs the | operation. Read more
source§

impl<'a> BitOrAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitor_assign(&mut self, rhs: &'a Bitmap)

Performs the |= operation. Read more
source§

impl<'a> BitXor<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'a Bitmap) -> Self

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b Bitmap) -> Bitmap

Performs the ^ operation. Read more
source§

impl<'a> BitXorAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitxor_assign(&mut self, rhs: &'a Bitmap)

Performs the ^= operation. Read more
source§

impl Clone for Bitmap

source§

fn clone(&self) -> Bitmap

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 Bitmap

source§

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

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

impl Default for Bitmap

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<MutableBitmap> for Bitmap

source§

fn from(buffer: MutableBitmap) -> Self

Converts to this type from the input type.
source§

impl<P: AsRef<[bool]>> From<P> for Bitmap

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl FromIterator<bool> for Bitmap

source§

fn from_iter<I>(iter: I) -> Selfwhere + I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl<'a> IntoIterator for &'a Bitmap

§

type Item = bool

The type of the elements being iterated over.
§

type IntoIter = BitmapIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for Bitmap

§

type Item = bool

The type of the elements being iterated over.
§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl Not for &Bitmap

§

type Output = Bitmap

The resulting type after applying the ! operator.
source§

fn not(self) -> Bitmap

Performs the unary ! operation. Read more
source§

impl PartialEq<Bitmap> for Bitmap

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl RefUnwindSafe for Bitmap

§

impl Send for Bitmap

§

impl Sync for Bitmap

§

impl Unpin for Bitmap

§

impl UnwindSafe for Bitmap

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/arrow2/bitmap/struct.MutableBitmap.html b/arrow2/bitmap/struct.MutableBitmap.html index 762d969e9665..52497981ed4d 100644 --- a/arrow2/bitmap/struct.MutableBitmap.html +++ b/arrow2/bitmap/struct.MutableBitmap.html @@ -114,8 +114,8 @@
Implementation

source

pub fn extend_from_bitmap(&mut self, bitmap: &Bitmap)

Extends the MutableBitmap from a Bitmap.

source

pub fn as_slice(&self) -> &[u8]

Returns the slice of bytes of this MutableBitmap. Note that the last byte may not be fully used.

-

Trait Implementations§

source§

impl<'a> BitAnd<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'a Bitmap) -> Self

Performs the & operation. Read more
source§

impl<'a> BitAndAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitand_assign(&mut self, rhs: &'a Bitmap)

Performs the &= operation. Read more
source§

impl<'a> BitOr<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'a Bitmap) -> Self

Performs the | operation. Read more
source§

impl<'a> BitOrAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitor_assign(&mut self, rhs: &'a Bitmap)

Performs the |= operation. Read more
source§

impl<'a> BitXor<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'a Bitmap) -> Self

Performs the ^ operation. Read more
source§

impl<'a> BitXorAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitxor_assign(&mut self, rhs: &'a Bitmap)

Performs the ^= operation. Read more
source§

impl Clone for MutableBitmap

source§

fn clone(&self) -> MutableBitmap

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 MutableBitmap

source§

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

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

impl Default for MutableBitmap

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<MutableBitmap> for Bitmap

source§

fn from(buffer: MutableBitmap) -> Self

Converts to this type from the input type.
source§

impl From<MutableBitmap> for Option<Bitmap>

source§

fn from(buffer: MutableBitmap) -> Self

Converts to this type from the input type.
source§

impl<P: AsRef<[bool]>> From<P> for MutableBitmap

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl FromIterator<bool> for MutableBitmap

source§

fn from_iter<I>(iter: I) -> Selfwhere - I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl<'a> IntoIterator for &'a MutableBitmap

§

type Item = bool

The type of the elements being iterated over.
§

type IntoIter = BitmapIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl Not for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl PartialEq<MutableBitmap> for MutableBitmap

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<'a> BitAnd<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'a Bitmap) -> Self

Performs the & operation. Read more
source§

impl<'a> BitAndAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitand_assign(&mut self, rhs: &'a Bitmap)

Performs the &= operation. Read more
source§

impl<'a> BitOr<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'a Bitmap) -> Self

Performs the | operation. Read more
source§

impl<'a> BitOrAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitor_assign(&mut self, rhs: &'a Bitmap)

Performs the |= operation. Read more
source§

impl<'a> BitXor<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'a Bitmap) -> Self

Performs the ^ operation. Read more
source§

impl<'a> BitXorAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitxor_assign(&mut self, rhs: &'a Bitmap)

Performs the ^= operation. Read more
source§

impl Clone for MutableBitmap

source§

fn clone(&self) -> MutableBitmap

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 MutableBitmap

source§

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

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

impl Default for MutableBitmap

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<MutableBitmap> for Bitmap

source§

fn from(buffer: MutableBitmap) -> Self

Converts to this type from the input type.
source§

impl From<MutableBitmap> for Option<Bitmap>

source§

fn from(buffer: MutableBitmap) -> Self

Converts to this type from the input type.
source§

impl<P: AsRef<[bool]>> From<P> for MutableBitmap

source§

fn from(slice: P) -> Self

Converts to this type from the input type.
source§

impl FromIterator<bool> for MutableBitmap

source§

fn from_iter<I>(iter: I) -> Selfwhere + I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl<'a> IntoIterator for &'a MutableBitmap

§

type Item = bool

The type of the elements being iterated over.
§

type IntoIter = BitmapIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl Not for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl PartialEq<MutableBitmap> for MutableBitmap

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl RefUnwindSafe for MutableBitmap

§

impl Send for MutableBitmap

§

impl Sync for MutableBitmap

§

impl Unpin for MutableBitmap

§

impl UnwindSafe for MutableBitmap

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/arrow2/bitmap/utils/trait.BitChunk.html b/arrow2/bitmap/utils/trait.BitChunk.html index 6fef7f99b9fa..e61d66b85fd2 100644 --- a/arrow2/bitmap/utils/trait.BitChunk.html +++ b/arrow2/bitmap/utils/trait.BitChunk.html @@ -7,4 +7,4 @@

This (sealed) trait is implemented for u8, u16, u32 and u64.

Required Methods§

source

fn to_ne_bytes(self) -> Self::Bytes

convert itself into bytes.

source

fn from_ne_bytes(v: Self::Bytes) -> Self

convert itself from bytes.

-

Implementations on Foreign Types§

source§

impl BitChunk for u64

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u16

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u8

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u32

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl BitChunk for u32

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u8

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u64

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u16

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

Implementors§

\ No newline at end of file diff --git a/arrow2/chunk/struct.Chunk.html b/arrow2/chunk/struct.Chunk.html index f13042d69265..6c60ade0c92b 100644 --- a/arrow2/chunk/struct.Chunk.html +++ b/arrow2/chunk/struct.Chunk.html @@ -1070,7 +1070,7 @@
Examples
Examples
assert_eq!(["hello", "world"].connect(" "), "hello world");
 assert_eq!([[1, 2], [3, 4]].connect(&0), [1, 2, 0, 3, 4]);
-

Trait Implementations§

source§

impl<A: Clone + AsRef<dyn Array>> Clone for Chunk<A>

source§

fn clone(&self) -> Chunk<A>

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<A: Debug + AsRef<dyn Array>> Debug for Chunk<A>

source§

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

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

impl<A: AsRef<dyn Array>> Deref for Chunk<A>

§

type Target = [A]

The resulting type after dereferencing.
source§

fn deref(&self) -> &[A]

Dereferences the value.
source§

impl<A: AsRef<dyn Array>> From<Chunk<A>> for Vec<A>

source§

fn from(c: Chunk<A>) -> Self

Converts to this type from the input type.
source§

impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>

Available on crate feature io_ipc only.
source§

fn from(columns: Chunk<Box<dyn Array>>) -> Self

Converts to this type from the input type.
source§

impl<A: PartialEq + AsRef<dyn Array>> PartialEq<Chunk<A>> for Chunk<A>

source§

fn eq(&self, other: &Chunk<A>) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<A: Clone + AsRef<dyn Array>> Clone for Chunk<A>

source§

fn clone(&self) -> Chunk<A>

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<A: Debug + AsRef<dyn Array>> Debug for Chunk<A>

source§

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

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

impl<A: AsRef<dyn Array>> Deref for Chunk<A>

§

type Target = [A]

The resulting type after dereferencing.
source§

fn deref(&self) -> &[A]

Dereferences the value.
source§

impl<A: AsRef<dyn Array>> From<Chunk<A>> for Vec<A>

source§

fn from(c: Chunk<A>) -> Self

Converts to this type from the input type.
source§

impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>

Available on crate feature io_ipc only.
source§

fn from(columns: Chunk<Box<dyn Array>>) -> Self

Converts to this type from the input type.
source§

impl<A: PartialEq + AsRef<dyn Array>> PartialEq<Chunk<A>> for Chunk<A>

source§

fn eq(&self, other: &Chunk<A>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, W> Sink<Chunk<Box<dyn Array, Global>>> for FileSink<'a, W>where W: AsyncWrite + Send + Unpin + 'a,

Available on crate feature io_parquet only.
§

type Error = Error

The type of value produced by the sink when an error occurs.
source§

fn start_send( diff --git a/arrow2/compute/arithmetics/basic/trait.NativeArithmetics.html b/arrow2/compute/arithmetics/basic/trait.NativeArithmetics.html index bbf21278c39f..c6299de55c81 100644 --- a/arrow2/compute/arithmetics/basic/trait.NativeArithmetics.html +++ b/arrow2/compute/arithmetics/basic/trait.NativeArithmetics.html @@ -2,4 +2,4 @@ the semantics in Rust. A counter example is i128, that in arrow represents a decimal while in rust represents a signed integer.

-

Implementations on Foreign Types§

source§

impl NativeArithmetics for i32

source§

impl NativeArithmetics for f32

source§

impl NativeArithmetics for u64

source§

impl NativeArithmetics for u8

source§

impl NativeArithmetics for f64

source§

impl NativeArithmetics for i64

source§

impl NativeArithmetics for i16

source§

impl NativeArithmetics for u16

source§

impl NativeArithmetics for u32

source§

impl NativeArithmetics for i8

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl NativeArithmetics for i16

source§

impl NativeArithmetics for f64

source§

impl NativeArithmetics for i64

source§

impl NativeArithmetics for f32

source§

impl NativeArithmetics for u16

source§

impl NativeArithmetics for u8

source§

impl NativeArithmetics for u32

source§

impl NativeArithmetics for u64

source§

impl NativeArithmetics for i8

source§

impl NativeArithmetics for i32

Implementors§

\ No newline at end of file diff --git a/arrow2/compute/comparison/trait.Simd8.html b/arrow2/compute/comparison/trait.Simd8.html index c56e33c7d0ef..56519262993d 100644 --- a/arrow2/compute/comparison/trait.Simd8.html +++ b/arrow2/compute/comparison/trait.Simd8.html @@ -2,4 +2,4 @@ type Simd: Simd8Lanes<Self>; }
Available on crate feature compute_comparison only.
Expand description

NativeType that supports a representation of 8 lanes

Required Associated Types§

source

type Simd: Simd8Lanes<Self>

The 8 lane representation of Self

-

Implementations on Foreign Types§

source§

impl Simd8 for i128

§

type Simd = [i128; 8]

source§

impl Simd8 for u16

§

type Simd = [u16; 8]

source§

impl Simd8 for i64

§

type Simd = [i64; 8]

source§

impl Simd8 for u64

§

type Simd = [u64; 8]

source§

impl Simd8 for i8

§

type Simd = [i8; 8]

source§

impl Simd8 for u32

§

type Simd = [u32; 8]

source§

impl Simd8 for f32

§

type Simd = [f32; 8]

source§

impl Simd8 for u8

§

type Simd = [u8; 8]

source§

impl Simd8 for i32

§

type Simd = [i32; 8]

source§

impl Simd8 for f64

§

type Simd = [f64; 8]

source§

impl Simd8 for i16

§

type Simd = [i16; 8]

Implementors§

source§

impl Simd8 for days_ms

§

type Simd = [days_ms; 8]

source§

impl Simd8 for f16

§

type Simd = [f16; 8]

source§

impl Simd8 for i256

§

type Simd = [i256; 8]

source§

impl Simd8 for months_days_ns

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Simd8 for f32

§

type Simd = [f32; 8]

source§

impl Simd8 for i16

§

type Simd = [i16; 8]

source§

impl Simd8 for u64

§

type Simd = [u64; 8]

source§

impl Simd8 for u8

§

type Simd = [u8; 8]

source§

impl Simd8 for u32

§

type Simd = [u32; 8]

source§

impl Simd8 for i32

§

type Simd = [i32; 8]

source§

impl Simd8 for u16

§

type Simd = [u16; 8]

source§

impl Simd8 for i64

§

type Simd = [i64; 8]

source§

impl Simd8 for f64

§

type Simd = [f64; 8]

source§

impl Simd8 for i8

§

type Simd = [i8; 8]

source§

impl Simd8 for i128

§

type Simd = [i128; 8]

Implementors§

source§

impl Simd8 for days_ms

§

type Simd = [days_ms; 8]

source§

impl Simd8 for f16

§

type Simd = [f16; 8]

source§

impl Simd8 for i256

§

type Simd = [i256; 8]

source§

impl Simd8 for months_days_ns

\ No newline at end of file diff --git a/arrow2/compute/comparison/trait.Simd8Lanes.html b/arrow2/compute/comparison/trait.Simd8Lanes.html index ade269b482b4..eafed1a9c056 100644 --- a/arrow2/compute/comparison/trait.Simd8Lanes.html +++ b/arrow2/compute/comparison/trait.Simd8Lanes.html @@ -5,7 +5,7 @@ }
Available on crate feature compute_comparison only.
Expand description

Trait declaring an 8-lane multi-data.

Required Methods§

source

fn from_chunk(v: &[T]) -> Self

loads a complete chunk

source

fn from_incomplete_chunk(v: &[T], remaining: T) -> Self

loads an incomplete chunk, filling the remaining items with remaining.

-

Implementations on Foreign Types§

source§

impl Simd8Lanes<days_ms> for [days_ms; 8]

source§

fn from_chunk(v: &[days_ms]) -> Self

source§

fn from_incomplete_chunk(v: &[days_ms], remaining: days_ms) -> Self

source§

impl Simd8Lanes<f32> for [f32; 8]

source§

fn from_chunk(v: &[f32]) -> Self

source§

fn from_incomplete_chunk(v: &[f32], remaining: f32) -> Self

source§

impl Simd8Lanes<months_days_ns> for [months_days_ns; 8]

source§

fn from_chunk(v: &[months_days_ns]) -> Self

source§

fn from_incomplete_chunk( +

Implementations on Foreign Types§

source§

impl Simd8Lanes<u16> for [u16; 8]

source§

fn from_chunk(v: &[u16]) -> Self

source§

fn from_incomplete_chunk(v: &[u16], remaining: u16) -> Self

source§

impl Simd8Lanes<u8> for [u8; 8]

source§

fn from_chunk(v: &[u8]) -> Self

source§

fn from_incomplete_chunk(v: &[u8], remaining: u8) -> Self

source§

impl Simd8Lanes<i32> for [i32; 8]

source§

fn from_chunk(v: &[i32]) -> Self

source§

fn from_incomplete_chunk(v: &[i32], remaining: i32) -> Self

source§

impl Simd8Lanes<f16> for [f16; 8]

source§

fn from_chunk(v: &[f16]) -> Self

source§

fn from_incomplete_chunk(v: &[f16], remaining: f16) -> Self

source§

impl Simd8Lanes<f64> for [f64; 8]

source§

fn from_chunk(v: &[f64]) -> Self

source§

fn from_incomplete_chunk(v: &[f64], remaining: f64) -> Self

source§

impl Simd8Lanes<f32> for [f32; 8]

source§

fn from_chunk(v: &[f32]) -> Self

source§

fn from_incomplete_chunk(v: &[f32], remaining: f32) -> Self

source§

impl Simd8Lanes<i64> for [i64; 8]

source§

fn from_chunk(v: &[i64]) -> Self

source§

fn from_incomplete_chunk(v: &[i64], remaining: i64) -> Self

source§

impl Simd8Lanes<i128> for [i128; 8]

source§

fn from_chunk(v: &[i128]) -> Self

source§

fn from_incomplete_chunk(v: &[i128], remaining: i128) -> Self

source§

impl Simd8Lanes<i16> for [i16; 8]

source§

fn from_chunk(v: &[i16]) -> Self

source§

fn from_incomplete_chunk(v: &[i16], remaining: i16) -> Self

source§

impl Simd8Lanes<i256> for [i256; 8]

source§

fn from_chunk(v: &[i256]) -> Self

source§

fn from_incomplete_chunk(v: &[i256], remaining: i256) -> Self

source§

impl Simd8Lanes<days_ms> for [days_ms; 8]

source§

fn from_chunk(v: &[days_ms]) -> Self

source§

fn from_incomplete_chunk(v: &[days_ms], remaining: days_ms) -> Self

source§

impl Simd8Lanes<u64> for [u64; 8]

source§

fn from_chunk(v: &[u64]) -> Self

source§

fn from_incomplete_chunk(v: &[u64], remaining: u64) -> Self

source§

impl Simd8Lanes<u32> for [u32; 8]

source§

fn from_chunk(v: &[u32]) -> Self

source§

fn from_incomplete_chunk(v: &[u32], remaining: u32) -> Self

source§

impl Simd8Lanes<months_days_ns> for [months_days_ns; 8]

source§

fn from_chunk(v: &[months_days_ns]) -> Self

source§

fn from_incomplete_chunk( v: &[months_days_ns], remaining: months_days_ns -) -> Self

source§

impl Simd8Lanes<i8> for [i8; 8]

source§

fn from_chunk(v: &[i8]) -> Self

source§

fn from_incomplete_chunk(v: &[i8], remaining: i8) -> Self

source§

impl Simd8Lanes<i32> for [i32; 8]

source§

fn from_chunk(v: &[i32]) -> Self

source§

fn from_incomplete_chunk(v: &[i32], remaining: i32) -> Self

source§

impl Simd8Lanes<i256> for [i256; 8]

source§

fn from_chunk(v: &[i256]) -> Self

source§

fn from_incomplete_chunk(v: &[i256], remaining: i256) -> Self

source§

impl Simd8Lanes<f64> for [f64; 8]

source§

fn from_chunk(v: &[f64]) -> Self

source§

fn from_incomplete_chunk(v: &[f64], remaining: f64) -> Self

source§

impl Simd8Lanes<i64> for [i64; 8]

source§

fn from_chunk(v: &[i64]) -> Self

source§

fn from_incomplete_chunk(v: &[i64], remaining: i64) -> Self

source§

impl Simd8Lanes<i16> for [i16; 8]

source§

fn from_chunk(v: &[i16]) -> Self

source§

fn from_incomplete_chunk(v: &[i16], remaining: i16) -> Self

source§

impl Simd8Lanes<f16> for [f16; 8]

source§

fn from_chunk(v: &[f16]) -> Self

source§

fn from_incomplete_chunk(v: &[f16], remaining: f16) -> Self

source§

impl Simd8Lanes<u32> for [u32; 8]

source§

fn from_chunk(v: &[u32]) -> Self

source§

fn from_incomplete_chunk(v: &[u32], remaining: u32) -> Self

source§

impl Simd8Lanes<i128> for [i128; 8]

source§

fn from_chunk(v: &[i128]) -> Self

source§

fn from_incomplete_chunk(v: &[i128], remaining: i128) -> Self

source§

impl Simd8Lanes<u16> for [u16; 8]

source§

fn from_chunk(v: &[u16]) -> Self

source§

fn from_incomplete_chunk(v: &[u16], remaining: u16) -> Self

source§

impl Simd8Lanes<u8> for [u8; 8]

source§

fn from_chunk(v: &[u8]) -> Self

source§

fn from_incomplete_chunk(v: &[u8], remaining: u8) -> Self

source§

impl Simd8Lanes<u64> for [u64; 8]

source§

fn from_chunk(v: &[u64]) -> Self

source§

fn from_incomplete_chunk(v: &[u64], remaining: u64) -> Self

Implementors§

\ No newline at end of file +) -> Self
source§

impl Simd8Lanes<i8> for [i8; 8]

source§

fn from_chunk(v: &[i8]) -> Self

source§

fn from_incomplete_chunk(v: &[i8], remaining: i8) -> Self

Implementors§

\ No newline at end of file diff --git a/arrow2/compute/comparison/trait.Simd8PartialEq.html b/arrow2/compute/comparison/trait.Simd8PartialEq.html index fd7bf597abe9..308b5d568293 100644 --- a/arrow2/compute/comparison/trait.Simd8PartialEq.html +++ b/arrow2/compute/comparison/trait.Simd8PartialEq.html @@ -5,4 +5,4 @@ }
Available on crate feature compute_comparison only.
Expand description

Trait implemented by implementors of Simd8Lanes whose Simd8 implements PartialEq.

Required Methods§

source

fn eq(self, other: Self) -> u8

Equal

source

fn neq(self, other: Self) -> u8

Not equal

-

Implementations on Foreign Types§

source§

impl Simd8PartialEq for [i256; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [months_days_ns; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i32; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [u32; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i64; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [f32; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [f16; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i16; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [u8; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [u64; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i8; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [days_ms; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [u16; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i128; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [f64; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Simd8PartialEq for [u16; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i8; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [months_days_ns; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i32; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i64; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [f16; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i16; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [days_ms; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [f64; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [f32; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i256; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [u64; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [i128; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [u32; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

source§

impl Simd8PartialEq for [u8; 8]

source§

fn eq(self, other: Self) -> u8

source§

fn neq(self, other: Self) -> u8

Implementors§

\ No newline at end of file diff --git a/arrow2/compute/comparison/trait.Simd8PartialOrd.html b/arrow2/compute/comparison/trait.Simd8PartialOrd.html index cd5fc050a251..d6cc2151b156 100644 --- a/arrow2/compute/comparison/trait.Simd8PartialOrd.html +++ b/arrow2/compute/comparison/trait.Simd8PartialOrd.html @@ -9,4 +9,4 @@
source

fn lt(self, other: Self) -> u8

Less than

source

fn gt(self, other: Self) -> u8

Greater than

source

fn gt_eq(self, other: Self) -> u8

Greater than or equal to

-

Implementations on Foreign Types§

source§

impl Simd8PartialOrd for [i32; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i128; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i8; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i16; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [u16; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [u64; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [f32; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i64; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [f64; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i256; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [u8; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [u32; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Simd8PartialOrd for [f64; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [f32; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [u16; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i8; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i128; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i32; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i64; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i256; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [u64; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [i16; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [u8; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

source§

impl Simd8PartialOrd for [u32; 8]

source§

fn lt_eq(self, other: Self) -> u8

source§

fn lt(self, other: Self) -> u8

source§

fn gt_eq(self, other: Self) -> u8

source§

fn gt(self, other: Self) -> u8

Implementors§

\ No newline at end of file diff --git a/arrow2/datatypes/enum.DataType.html b/arrow2/datatypes/enum.DataType.html index bda79acfae92..77b907e1822e 100644 --- a/arrow2/datatypes/enum.DataType.html +++ b/arrow2/datatypes/enum.DataType.html @@ -127,7 +127,7 @@
source

pub fn to_logical_type(&self) -> &DataType

Returns &self for all but DataType::Extension. For DataType::Extension, (recursively) returns the inner DataType. Never returns the variant DataType::Extension.

-

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl<T: NativeType> From<DataType> for MutablePrimitiveArray<T>

source§

fn from(data_type: DataType) -> Self

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> Self

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> Self

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl<T: NativeType> From<DataType> for MutablePrimitiveArray<T>

source§

fn from(data_type: DataType) -> Self

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> Self

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> Self

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always diff --git a/arrow2/error/enum.Error.html b/arrow2/error/enum.Error.html index 99e1a9cea94c..a960903ff611 100644 --- a/arrow2/error/enum.Error.html +++ b/arrow2/error/enum.Error.html @@ -16,7 +16,7 @@ The solution is usually to use a higher-capacity container-backing type.

§

OutOfSpec(String)

Whenever incoming data from the C data interface, IPC or Flight does not fulfil the Arrow specification.

Implementations§

source§

impl Error

source

pub fn from_external_error(error: impl Error + Send + Sync + 'static) -> Self

Wraps an external error in an Error.

-

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

Available on crate feature io_parquet only.
source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

Available on crate feature io_parquet only.
source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

Available on crate feature io_ipc only.
source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Self

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

Available on crate feature io_ipc only.
source§

fn from(kind: OutOfSpecKind) -> Self

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Self

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

Available on crate feature io_parquet only.
source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

Available on crate feature io_parquet only.
source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

Available on crate feature io_ipc only.
source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Self

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

Available on crate feature io_ipc only.
source§

fn from(kind: OutOfSpecKind) -> Self

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Self

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/arrow2/io/ipc/write/struct.Record.html b/arrow2/io/ipc/write/struct.Record.html index 044a6668370b..4e78301c1bcb 100644 --- a/arrow2/io/ipc/write/struct.Record.html +++ b/arrow2/io/ipc/write/struct.Record.html @@ -3,7 +3,7 @@
source

pub fn columns(&self) -> &Chunk<Box<dyn Array>>

Get the Arrow columns in this record.

Trait Implementations§

source§

impl<'a> Clone for Record<'a>

source§

fn clone(&self) -> Record<'a>

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<'a> Debug for Record<'a>

source§

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

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

impl<'a, F> From<(&'a Chunk<Box<dyn Array, Global>>, Option<F>)> for Record<'a>where F: Into<Cow<'a, [IpcField]>>,

source§

fn from((columns, fields): (&'a Chunk<Box<dyn Array>>, Option<F>)) -> Self

Converts to this type from the input type.
source§

impl<'a, F> From<(Chunk<Box<dyn Array, Global>>, Option<F>)> for Record<'a>where - F: Into<Cow<'a, [IpcField]>>,

source§

fn from((columns, fields): (Chunk<Box<dyn Array>>, Option<F>)) -> Self

Converts to this type from the input type.
source§

impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>

source§

fn from(columns: Chunk<Box<dyn Array>>) -> Self

Converts to this type from the input type.
source§

impl<'a> PartialEq<Record<'a>> for Record<'a>

source§

fn eq(&self, other: &Record<'a>) -> bool

This method tests for self and other values to be equal, and is used + F: Into<Cow<'a, [IpcField]>>,
source§

fn from((columns, fields): (Chunk<Box<dyn Array>>, Option<F>)) -> Self

Converts to this type from the input type.
source§

impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>

source§

fn from(columns: Chunk<Box<dyn Array>>) -> Self

Converts to this type from the input type.
source§

impl<'a> PartialEq<Record<'a>> for Record<'a>

source§

fn eq(&self, other: &Record<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, W> Sink<Record<'_>> for FileSink<'a, W>where W: AsyncWrite + Unpin + Send + 'a,

Available on crate feature io_ipc_write_async only.
§

type Error = Error

The type of value produced by the sink when an error occurs.
source§

fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>

Attempts to prepare the Sink to receive a value. Read more
source§

fn start_send(self: Pin<&mut Self>, item: Record<'_>) -> Result<()>

Begin the process of sending a value to the sink. diff --git a/arrow2/io/parquet/read/enum.ParquetError.html b/arrow2/io/parquet/read/enum.ParquetError.html index c6161e7cf8e4..1da30153bbb7 100644 --- a/arrow2/io/parquet/read/enum.ParquetError.html +++ b/arrow2/io/parquet/read/enum.ParquetError.html @@ -10,7 +10,7 @@
§

FeatureNotSupported(String)

Error presented when trying to use a feature from parquet that is not yet supported

§

InvalidParameter(String)

When encoding, the user passed an invalid parameter

§

WouldOverAllocate

When decoding or decompressing, the page would allocate more memory than allowed

-

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<TryFromIntError> for Error

source§

fn from(e: TryFromIntError) -> Error

Converts to this type from the input type.
source§

impl From<TryFromSliceError> for Error

source§

fn from(e: TryFromSliceError) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(e: TryReserveError) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<TryFromIntError> for Error

source§

fn from(e: TryFromIntError) -> Error

Converts to this type from the input type.
source§

impl From<TryFromSliceError> for Error

source§

fn from(e: TryFromSliceError) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(e: TryReserveError) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/arrow2/offset/struct.Offsets.html b/arrow2/offset/struct.Offsets.html index 7214664af683..c3c7f7fc680e 100644 --- a/arrow2/offset/struct.Offsets.html +++ b/arrow2/offset/struct.Offsets.html @@ -65,7 +65,7 @@
Errors
Errors

This function errors iff this operation overflows for the maximum value of O.

source

pub fn into_inner(self) -> Vec<O>

Returns the inner Vec.

-

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for Offsets<O>

source§

fn clone(&self) -> Offsets<O>

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<O: Debug + Offset> Debug for Offsets<O>

source§

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

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

impl<O: Offset> Default for Offsets<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset> From<Offsets<O>> for OffsetsBuffer<O>

source§

fn from(offsets: Offsets<O>) -> Self

Converts to this type from the input type.
source§

impl From<Offsets<i32>> for Offsets<i64>

source§

fn from(offsets: Offsets<i32>) -> Self

Converts to this type from the input type.
source§

impl<O: PartialEq + Offset> PartialEq<Offsets<O>> for Offsets<O>

source§

fn eq(&self, other: &Offsets<O>) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for Offsets<O>

source§

fn clone(&self) -> Offsets<O>

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<O: Debug + Offset> Debug for Offsets<O>

source§

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

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

impl<O: Offset> Default for Offsets<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset> From<Offsets<O>> for OffsetsBuffer<O>

source§

fn from(offsets: Offsets<O>) -> Self

Converts to this type from the input type.
source§

impl From<Offsets<i32>> for Offsets<i64>

source§

fn from(offsets: Offsets<i32>) -> Self

Converts to this type from the input type.
source§

impl<O: PartialEq + Offset> PartialEq<Offsets<O>> for Offsets<O>

source§

fn eq(&self, other: &Offsets<O>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Offsets<i64>> for Offsets<i32>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(offsets: Offsets<i64>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<O: Offset> TryFrom<Vec<O, Global>> for Offsets<O>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(offsets: Vec<O>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<O: Eq + Offset> Eq for Offsets<O>

source§

impl<O: Offset> StructuralEq for Offsets<O>

source§

impl<O: Offset> StructuralPartialEq for Offsets<O>

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for Offsets<O>

§

impl<O> Send for Offsets<O>

§

impl<O> Sync for Offsets<O>

§

impl<O> Unpin for Offsets<O>where O: Unpin,

§

impl<O> UnwindSafe for Offsets<O>where diff --git a/arrow2/offset/struct.OffsetsBuffer.html b/arrow2/offset/struct.OffsetsBuffer.html index 0f00948172f9..3be1d7fb92ce 100644 --- a/arrow2/offset/struct.OffsetsBuffer.html +++ b/arrow2/offset/struct.OffsetsBuffer.html @@ -1088,9 +1088,9 @@
Examples
Examples
assert_eq!(["hello", "world"].connect(" "), "hello world");
 assert_eq!([[1, 2], [3, 4]].connect(&0), [1, 2, 0, 3, 4]);
-

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for OffsetsBuffer<O>

source§

fn clone(&self) -> OffsetsBuffer<O>

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<O: Debug + Offset> Debug for OffsetsBuffer<O>

source§

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

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

impl<O: Offset> Default for OffsetsBuffer<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset> Deref for OffsetsBuffer<O>

§

type Target = [O]

The resulting type after dereferencing.
source§

fn deref(&self) -> &[O]

Dereferences the value.
source§

impl From<&OffsetsBuffer<i32>> for OffsetsBuffer<i64>

source§

fn from(offsets: &OffsetsBuffer<i32>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<Offsets<O>> for OffsetsBuffer<O>

source§

fn from(offsets: Offsets<O>) -> Self

Converts to this type from the input type.
source§

impl<O: PartialEq + Offset> PartialEq<OffsetsBuffer<O>> for OffsetsBuffer<O>

source§

fn eq(&self, other: &OffsetsBuffer<O>) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<O: Clone + Offset> Clone for OffsetsBuffer<O>

source§

fn clone(&self) -> OffsetsBuffer<O>

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<O: Debug + Offset> Debug for OffsetsBuffer<O>

source§

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

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

impl<O: Offset> Default for OffsetsBuffer<O>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<O: Offset> Deref for OffsetsBuffer<O>

§

type Target = [O]

The resulting type after dereferencing.
source§

fn deref(&self) -> &[O]

Dereferences the value.
source§

impl From<&OffsetsBuffer<i32>> for OffsetsBuffer<i64>

source§

fn from(offsets: &OffsetsBuffer<i32>) -> Self

Converts to this type from the input type.
source§

impl<O: Offset> From<Offsets<O>> for OffsetsBuffer<O>

source§

fn from(offsets: Offsets<O>) -> Self

Converts to this type from the input type.
source§

impl<O: PartialEq + Offset> PartialEq<OffsetsBuffer<O>> for OffsetsBuffer<O>

source§

fn eq(&self, other: &OffsetsBuffer<O>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<&OffsetsBuffer<i64>> for OffsetsBuffer<i32>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(offsets: &OffsetsBuffer<i64>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<O: Offset> TryFrom<Buffer<O>> for OffsetsBuffer<O>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(offsets: Buffer<O>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<O: Offset> TryFrom<Vec<O, Global>> for OffsetsBuffer<O>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(offsets: Vec<O>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<O: Offset> StructuralPartialEq for OffsetsBuffer<O>

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for OffsetsBuffer<O>

§

impl<O> Send for OffsetsBuffer<O>

§

impl<O> Sync for OffsetsBuffer<O>

§

impl<O> Unpin for OffsetsBuffer<O>

§

impl<O> UnwindSafe for OffsetsBuffer<O>

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl TryFrom<&OffsetsBuffer<i64>> for OffsetsBuffer<i32>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(offsets: &OffsetsBuffer<i64>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<O: Offset> TryFrom<Buffer<O>> for OffsetsBuffer<O>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(offsets: Buffer<O>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<O: Offset> TryFrom<Vec<O, Global>> for OffsetsBuffer<O>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(offsets: Vec<O>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<O: Offset> StructuralPartialEq for OffsetsBuffer<O>

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for OffsetsBuffer<O>

§

impl<O> Send for OffsetsBuffer<O>

§

impl<O> Sync for OffsetsBuffer<O>

§

impl<O> Unpin for OffsetsBuffer<O>

§

impl<O> UnwindSafe for OffsetsBuffer<O>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/arrow2/scalar/trait.Scalar.html b/arrow2/scalar/trait.Scalar.html index 2fd65c427409..8d7786635cab 100644 --- a/arrow2/scalar/trait.Scalar.html +++ b/arrow2/scalar/trait.Scalar.html @@ -8,7 +8,7 @@

Required Methods§

source

fn as_any(&self) -> &dyn Any

convert itself to

source

fn is_valid(&self) -> bool

whether it is valid

source

fn data_type(&self) -> &DataType

the logical type.

-

Trait Implementations§

source§

impl<'clone> Clone for Box<dyn Scalar + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Scalar + Send + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Scalar + Send + Sync + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Scalar + Sync + 'clone>

source§

fn clone(&self) -> Self

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 PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>

source§

fn eq(&self, that: &dyn Scalar) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl<'clone> Clone for Box<dyn Scalar + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Scalar + Send + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Scalar + Send + Sync + 'clone>

source§

fn clone(&self) -> Self

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<'clone> Clone for Box<dyn Scalar + Sync + 'clone>

source§

fn clone(&self) -> Self

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 PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>

source§

fn eq(&self, that: &dyn Scalar) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Scalar> for Box<dyn Scalar + '_>

source§

fn eq(&self, that: &dyn Scalar) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always diff --git a/arrow2/trusted_len/trait.TrustedLen.html b/arrow2/trusted_len/trait.TrustedLen.html index ceb3da3b396a..fd2d4a572e41 100644 --- a/arrow2/trusted_len/trait.TrustedLen.html +++ b/arrow2/trusted_len/trait.TrustedLen.html @@ -5,16 +5,16 @@

Safety

This trait must only be implemented when the contract is upheld. Consumers of this trait must inspect Iterator::size_hint()’s upper bound.

-

Implementations on Foreign Types§

source§

impl<I> TrustedLen for Enumerate<I>where - I: TrustedLen,

source§

impl<A, F: FnMut() -> A> TrustedLen for RepeatWith<F>

source§

impl<T> TrustedLen for Windows<'_, T>

source§

impl<A, B> TrustedLen for Zip<A, B>where - A: TrustedLen, - B: TrustedLen,

source§

impl<B, I: TrustedLen, T: FnMut(I::Item) -> B> TrustedLen for Map<I, T>

source§

impl<T> TrustedLen for Iter<'_, T>

source§

impl<'a, I, T> TrustedLen for Copied<I>where +

Implementations on Foreign Types§

source§

impl<'a, I, T> TrustedLen for Cloned<I>where I: TrustedLen<Item = &'a T>, - T: Copy + 'a,

source§

impl<T> TrustedLen for IntoIter<T>

source§

impl<'a, I, T> TrustedLen for Cloned<I>where + T: Clone + 'a,

source§

impl<'a, I, T> TrustedLen for Copied<I>where I: TrustedLen<Item = &'a T>, - T: Clone + 'a,

source§

impl<T> TrustedLen for ChunksExact<'_, T>

source§

impl<A, B> TrustedLen for Chain<A, B>where + T: Copy + 'a,

source§

impl<A, B> TrustedLen for Chain<A, B>where + A: TrustedLen, + B: TrustedLen<Item = A::Item>,

source§

impl<B, I: TrustedLen, T: FnMut(I::Item) -> B> TrustedLen for Map<I, T>

source§

impl<T> TrustedLen for ChunksExact<'_, T>

source§

impl<A, B> TrustedLen for Zip<A, B>where A: TrustedLen, - B: TrustedLen<Item = A::Item>,

source§

impl<A: TrustedLen> TrustedLen for Take<A>

source§

impl<T> TrustedLen for Once<T>

source§

impl<A: Clone> TrustedLen for Repeat<A>

Implementors§

source§

impl TrustedLen for arrow2::bitmap::IntoIter

source§

impl TrustedLen for BitmapIter<'_>

source§

impl<'a, A: ArrayAccessor<'a>> TrustedLen for ArrayValuesIter<'a, A>

source§

impl<I: Index> TrustedLen for IndexRange<I>

Safety: a range is always of known length

+ B: TrustedLen,
source§

impl<T> TrustedLen for IntoIter<T>

source§

impl<T> TrustedLen for Iter<'_, T>

source§

impl<T> TrustedLen for Windows<'_, T>

source§

impl<A: TrustedLen> TrustedLen for Take<A>

source§

impl<I> TrustedLen for Enumerate<I>where + I: TrustedLen,

source§

impl<T> TrustedLen for Once<T>

source§

impl<A: Clone> TrustedLen for Repeat<A>

source§

impl<A, F: FnMut() -> A> TrustedLen for RepeatWith<F>

Implementors§

source§

impl TrustedLen for arrow2::bitmap::IntoIter

source§

impl TrustedLen for BitmapIter<'_>

source§

impl<'a, A: ArrayAccessor<'a>> TrustedLen for ArrayValuesIter<'a, A>

source§

impl<I: Index> TrustedLen for IndexRange<I>

Safety: a range is always of known length

source§

impl<T, I, V> TrustedLen for ZipValidity<T, I, V>where I: TrustedLen<Item = T>, V: TrustedLen<Item = bool>,

source§

impl<T, I, V> TrustedLen for ZipValidityIter<T, I, V>where diff --git a/arrow2/types/simd/struct.f64x8.html b/arrow2/types/simd/struct.f64x8.html index 305310c16d27..435336fdb006 100644 --- a/arrow2/types/simd/struct.f64x8.html +++ b/arrow2/types/simd/struct.f64x8.html @@ -1,5 +1,5 @@ f64x8 in arrow2::types::simd - Rust

Struct arrow2::types::simd::f64x8

source ·
pub struct f64x8(pub [f64; 8]);
Expand description

Multi-Data correspondence of the native type

-

Tuple Fields§

§0: [f64; 8]

Trait Implementations§

source§

impl Add<f64x8> for f64x8

Available on crate feature compute_aggregate only.
§

type Output = f64x8

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<f64x8> for f64x8

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for f64x8

source§

fn clone(&self) -> f64x8

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 Default for f64x8

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for f64x8

§

type Output = f64

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for f64x8

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for f64x8

source§

const LANES: usize = 8usize

Number of lanes
§

type Native = f64

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u8

The type holding bits for masks.
§

type Mask = u8

Type used for masking.
source§

fn select(self, mask: u8, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[f64]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[f64], remaining: f64) -> Self

creates a new Self from v by populating items from v up to its length. +

Tuple Fields§

§0: [f64; 8]

Trait Implementations§

source§

impl Add<f64x8> for f64x8

Available on crate feature compute_aggregate only.
§

type Output = f64x8

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<f64x8> for f64x8

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for f64x8

source§

fn clone(&self) -> f64x8

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 Default for f64x8

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for f64x8

§

type Output = f64

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for f64x8

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for f64x8

source§

const LANES: usize = 8usize

Number of lanes
§

type Native = f64

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u8

The type holding bits for masks.
§

type Mask = u8

Type used for masking.
source§

fn select(self, mask: u8, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[f64]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[f64], remaining: f64) -> Self

creates a new Self from v by populating items from v up to its length. Items from v at positions larger than the number of lanes are ignored; remaining items are populated with remaining.
source§

fn align(values: &[Self::Native]) -> (&[Self::Native], &[Self], &[Self::Native])

Returns a tuple of 3 items whose middle item is itself, and the remaining are the head and tail of the un-aligned parts.
source§

impl SimdOrd<f64> for f64x8

Available on crate feature compute_aggregate only.
source§

const MIN: f64 = NaNf64

The minimum value
source§

const MAX: f64 = NaNf64

The maximum value
source§

fn max_element(self) -> f64

reduce itself to the minimum
source§

fn min_element(self) -> f64

reduce itself to the maximum
source§

fn max_lane(self, x: Self) -> Self

lane-wise maximum between two instances
source§

fn min_lane(self, x: Self) -> Self

lane-wise minimum between two instances
source§

fn new_min() -> Self

returns a new instance with all lanes equal to MIN
source§

fn new_max() -> Self

returns a new instance with all lanes equal to MAX
source§

impl Sum<f64> for f64x8

Available on crate feature compute_aggregate only.
source§

fn simd_sum(self) -> f64

Reduces this element to a single value.
source§

impl Copy for f64x8

Auto Trait Implementations§

§

impl RefUnwindSafe for f64x8

§

impl Send for f64x8

§

impl Sync for f64x8

§

impl Unpin for f64x8

§

impl UnwindSafe for f64x8

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/arrow2/types/simd/struct.i128x8.html b/arrow2/types/simd/struct.i128x8.html index ae5f9d3f3b6c..ddd493a2804c 100644 --- a/arrow2/types/simd/struct.i128x8.html +++ b/arrow2/types/simd/struct.i128x8.html @@ -1,5 +1,5 @@ i128x8 in arrow2::types::simd - Rust

Struct arrow2::types::simd::i128x8

source ·
pub struct i128x8(pub [i128; 8]);
Expand description

Multi-Data correspondence of the native type

-

Tuple Fields§

§0: [i128; 8]

Trait Implementations§

source§

impl Add<i128x8> for i128x8

Available on crate feature compute_aggregate only.
§

type Output = i128x8

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<i128x8> for i128x8

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for i128x8

source§

fn clone(&self) -> i128x8

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 Default for i128x8

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for i128x8

§

type Output = i128

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for i128x8

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for i128x8

source§

const LANES: usize = 8usize

Number of lanes
§

type Native = i128

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u8

The type holding bits for masks.
§

type Mask = u8

Type used for masking.
source§

fn select(self, mask: u8, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[i128]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[i128], remaining: i128) -> Self

creates a new Self from v by populating items from v up to its length. +

Tuple Fields§

§0: [i128; 8]

Trait Implementations§

source§

impl Add<i128x8> for i128x8

Available on crate feature compute_aggregate only.
§

type Output = i128x8

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<i128x8> for i128x8

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for i128x8

source§

fn clone(&self) -> i128x8

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 Default for i128x8

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for i128x8

§

type Output = i128

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for i128x8

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for i128x8

source§

const LANES: usize = 8usize

Number of lanes
§

type Native = i128

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u8

The type holding bits for masks.
§

type Mask = u8

Type used for masking.
source§

fn select(self, mask: u8, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[i128]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[i128], remaining: i128) -> Self

creates a new Self from v by populating items from v up to its length. Items from v at positions larger than the number of lanes are ignored; remaining items are populated with remaining.
source§

fn align(values: &[Self::Native]) -> (&[Self::Native], &[Self], &[Self::Native])

Returns a tuple of 3 items whose middle item is itself, and the remaining are the head and tail of the un-aligned parts.
source§

impl SimdOrd<i128> for i128x8

Available on crate feature compute_aggregate only.
source§

const MIN: i128 = -170_141_183_460_469_231_731_687_303_715_884_105_728i128

The minimum value
source§

const MAX: i128 = 170_141_183_460_469_231_731_687_303_715_884_105_727i128

The maximum value
source§

fn max_element(self) -> i128

reduce itself to the minimum
source§

fn min_element(self) -> i128

reduce itself to the maximum
source§

fn max_lane(self, x: Self) -> Self

lane-wise maximum between two instances
source§

fn min_lane(self, x: Self) -> Self

lane-wise minimum between two instances
source§

fn new_min() -> Self

returns a new instance with all lanes equal to MIN
source§

fn new_max() -> Self

returns a new instance with all lanes equal to MAX
source§

impl Sum<i128> for i128x8

Available on crate feature compute_aggregate only.
source§

fn simd_sum(self) -> i128

Reduces this element to a single value.
source§

impl Copy for i128x8

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/arrow2/types/simd/struct.i16x32.html b/arrow2/types/simd/struct.i16x32.html index 3b880ea00fbb..5d5183428051 100644 --- a/arrow2/types/simd/struct.i16x32.html +++ b/arrow2/types/simd/struct.i16x32.html @@ -1,5 +1,5 @@ i16x32 in arrow2::types::simd - Rust

Struct arrow2::types::simd::i16x32

source ·
pub struct i16x32(pub [i16; 32]);
Expand description

Multi-Data correspondence of the native type

-

Tuple Fields§

§0: [i16; 32]

Trait Implementations§

source§

impl Add<i16x32> for i16x32

Available on crate feature compute_aggregate only.
§

type Output = i16x32

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<i16x32> for i16x32

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for i16x32

source§

fn clone(&self) -> i16x32

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 Default for i16x32

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for i16x32

§

type Output = i16

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for i16x32

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for i16x32

source§

const LANES: usize = 32usize

Number of lanes
§

type Native = i16

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u32

The type holding bits for masks.
§

type Mask = u32

Type used for masking.
source§

fn select(self, mask: u32, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[i16]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[i16], remaining: i16) -> Self

creates a new Self from v by populating items from v up to its length. +

Tuple Fields§

§0: [i16; 32]

Trait Implementations§

source§

impl Add<i16x32> for i16x32

Available on crate feature compute_aggregate only.
§

type Output = i16x32

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<i16x32> for i16x32

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for i16x32

source§

fn clone(&self) -> i16x32

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 Default for i16x32

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for i16x32

§

type Output = i16

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for i16x32

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for i16x32

source§

const LANES: usize = 32usize

Number of lanes
§

type Native = i16

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u32

The type holding bits for masks.
§

type Mask = u32

Type used for masking.
source§

fn select(self, mask: u32, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[i16]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[i16], remaining: i16) -> Self

creates a new Self from v by populating items from v up to its length. Items from v at positions larger than the number of lanes are ignored; remaining items are populated with remaining.
source§

fn align(values: &[Self::Native]) -> (&[Self::Native], &[Self], &[Self::Native])

Returns a tuple of 3 items whose middle item is itself, and the remaining are the head and tail of the un-aligned parts.
source§

impl SimdOrd<i16> for i16x32

Available on crate feature compute_aggregate only.
source§

const MIN: i16 = -32_768i16

The minimum value
source§

const MAX: i16 = 32_767i16

The maximum value
source§

fn max_element(self) -> i16

reduce itself to the minimum
source§

fn min_element(self) -> i16

reduce itself to the maximum
source§

fn max_lane(self, x: Self) -> Self

lane-wise maximum between two instances
source§

fn min_lane(self, x: Self) -> Self

lane-wise minimum between two instances
source§

fn new_min() -> Self

returns a new instance with all lanes equal to MIN
source§

fn new_max() -> Self

returns a new instance with all lanes equal to MAX
source§

impl Sum<i16> for i16x32

Available on crate feature compute_aggregate only.
source§

fn simd_sum(self) -> i16

Reduces this element to a single value.
source§

impl Copy for i16x32

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/arrow2/types/simd/struct.i64x8.html b/arrow2/types/simd/struct.i64x8.html index ec7c8a222a44..06a0465b30a7 100644 --- a/arrow2/types/simd/struct.i64x8.html +++ b/arrow2/types/simd/struct.i64x8.html @@ -1,5 +1,5 @@ i64x8 in arrow2::types::simd - Rust

Struct arrow2::types::simd::i64x8

source ·
pub struct i64x8(pub [i64; 8]);
Expand description

Multi-Data correspondence of the native type

-

Tuple Fields§

§0: [i64; 8]

Trait Implementations§

source§

impl Add<i64x8> for i64x8

Available on crate feature compute_aggregate only.
§

type Output = i64x8

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<i64x8> for i64x8

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for i64x8

source§

fn clone(&self) -> i64x8

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 Default for i64x8

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for i64x8

§

type Output = i64

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for i64x8

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for i64x8

source§

const LANES: usize = 8usize

Number of lanes
§

type Native = i64

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u8

The type holding bits for masks.
§

type Mask = u8

Type used for masking.
source§

fn select(self, mask: u8, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[i64]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[i64], remaining: i64) -> Self

creates a new Self from v by populating items from v up to its length. +

Tuple Fields§

§0: [i64; 8]

Trait Implementations§

source§

impl Add<i64x8> for i64x8

Available on crate feature compute_aggregate only.
§

type Output = i64x8

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<i64x8> for i64x8

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for i64x8

source§

fn clone(&self) -> i64x8

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 Default for i64x8

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for i64x8

§

type Output = i64

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for i64x8

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for i64x8

source§

const LANES: usize = 8usize

Number of lanes
§

type Native = i64

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u8

The type holding bits for masks.
§

type Mask = u8

Type used for masking.
source§

fn select(self, mask: u8, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[i64]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[i64], remaining: i64) -> Self

creates a new Self from v by populating items from v up to its length. Items from v at positions larger than the number of lanes are ignored; remaining items are populated with remaining.
source§

fn align(values: &[Self::Native]) -> (&[Self::Native], &[Self], &[Self::Native])

Returns a tuple of 3 items whose middle item is itself, and the remaining are the head and tail of the un-aligned parts.
source§

impl SimdOrd<i64> for i64x8

Available on crate feature compute_aggregate only.
source§

const MIN: i64 = -9_223_372_036_854_775_808i64

The minimum value
source§

const MAX: i64 = 9_223_372_036_854_775_807i64

The maximum value
source§

fn max_element(self) -> i64

reduce itself to the minimum
source§

fn min_element(self) -> i64

reduce itself to the maximum
source§

fn max_lane(self, x: Self) -> Self

lane-wise maximum between two instances
source§

fn min_lane(self, x: Self) -> Self

lane-wise minimum between two instances
source§

fn new_min() -> Self

returns a new instance with all lanes equal to MIN
source§

fn new_max() -> Self

returns a new instance with all lanes equal to MAX
source§

impl Sum<i64> for i64x8

Available on crate feature compute_aggregate only.
source§

fn simd_sum(self) -> i64

Reduces this element to a single value.
source§

impl Copy for i64x8

Auto Trait Implementations§

§

impl RefUnwindSafe for i64x8

§

impl Send for i64x8

§

impl Sync for i64x8

§

impl Unpin for i64x8

§

impl UnwindSafe for i64x8

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/arrow2/types/simd/struct.u32x16.html b/arrow2/types/simd/struct.u32x16.html index 1fc017baae06..591b31f28eba 100644 --- a/arrow2/types/simd/struct.u32x16.html +++ b/arrow2/types/simd/struct.u32x16.html @@ -1,5 +1,5 @@ u32x16 in arrow2::types::simd - Rust

Struct arrow2::types::simd::u32x16

source ·
pub struct u32x16(pub [u32; 16]);
Expand description

Multi-Data correspondence of the native type

-

Tuple Fields§

§0: [u32; 16]

Trait Implementations§

source§

impl Add<u32x16> for u32x16

Available on crate feature compute_aggregate only.
§

type Output = u32x16

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<u32x16> for u32x16

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for u32x16

source§

fn clone(&self) -> u32x16

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 Default for u32x16

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for u32x16

§

type Output = u32

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for u32x16

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for u32x16

source§

const LANES: usize = 16usize

Number of lanes
§

type Native = u32

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u16

The type holding bits for masks.
§

type Mask = u16

Type used for masking.
source§

fn select(self, mask: u16, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[u32]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[u32], remaining: u32) -> Self

creates a new Self from v by populating items from v up to its length. +

Tuple Fields§

§0: [u32; 16]

Trait Implementations§

source§

impl Add<u32x16> for u32x16

Available on crate feature compute_aggregate only.
§

type Output = u32x16

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<u32x16> for u32x16

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for u32x16

source§

fn clone(&self) -> u32x16

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 Default for u32x16

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for u32x16

§

type Output = u32

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for u32x16

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for u32x16

source§

const LANES: usize = 16usize

Number of lanes
§

type Native = u32

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u16

The type holding bits for masks.
§

type Mask = u16

Type used for masking.
source§

fn select(self, mask: u16, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[u32]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[u32], remaining: u32) -> Self

creates a new Self from v by populating items from v up to its length. Items from v at positions larger than the number of lanes are ignored; remaining items are populated with remaining.
source§

fn align(values: &[Self::Native]) -> (&[Self::Native], &[Self], &[Self::Native])

Returns a tuple of 3 items whose middle item is itself, and the remaining are the head and tail of the un-aligned parts.
source§

impl SimdOrd<u32> for u32x16

Available on crate feature compute_aggregate only.
source§

const MIN: u32 = 0u32

The minimum value
source§

const MAX: u32 = 4_294_967_295u32

The maximum value
source§

fn max_element(self) -> u32

reduce itself to the minimum
source§

fn min_element(self) -> u32

reduce itself to the maximum
source§

fn max_lane(self, x: Self) -> Self

lane-wise maximum between two instances
source§

fn min_lane(self, x: Self) -> Self

lane-wise minimum between two instances
source§

fn new_min() -> Self

returns a new instance with all lanes equal to MIN
source§

fn new_max() -> Self

returns a new instance with all lanes equal to MAX
source§

impl Sum<u32> for u32x16

Available on crate feature compute_aggregate only.
source§

fn simd_sum(self) -> u32

Reduces this element to a single value.
source§

impl Copy for u32x16

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/arrow2/types/simd/struct.u64x8.html b/arrow2/types/simd/struct.u64x8.html index 38e1447bf5da..671ec899cc99 100644 --- a/arrow2/types/simd/struct.u64x8.html +++ b/arrow2/types/simd/struct.u64x8.html @@ -1,5 +1,5 @@ u64x8 in arrow2::types::simd - Rust

Struct arrow2::types::simd::u64x8

source ·
pub struct u64x8(pub [u64; 8]);
Expand description

Multi-Data correspondence of the native type

-

Tuple Fields§

§0: [u64; 8]

Trait Implementations§

source§

impl Add<u64x8> for u64x8

Available on crate feature compute_aggregate only.
§

type Output = u64x8

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<u64x8> for u64x8

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for u64x8

source§

fn clone(&self) -> u64x8

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 Default for u64x8

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for u64x8

§

type Output = u64

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for u64x8

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for u64x8

source§

const LANES: usize = 8usize

Number of lanes
§

type Native = u64

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u8

The type holding bits for masks.
§

type Mask = u8

Type used for masking.
source§

fn select(self, mask: u8, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[u64]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[u64], remaining: u64) -> Self

creates a new Self from v by populating items from v up to its length. +

Tuple Fields§

§0: [u64; 8]

Trait Implementations§

source§

impl Add<u64x8> for u64x8

Available on crate feature compute_aggregate only.
§

type Output = u64x8

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<u64x8> for u64x8

Available on crate feature compute_aggregate only.
source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for u64x8

source§

fn clone(&self) -> u64x8

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 Default for u64x8

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Index<usize> for u64x8

§

type Output = u64

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for u64x8

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl NativeSimd for u64x8

source§

const LANES: usize = 8usize

Number of lanes
§

type Native = u64

The NativeType of this struct. E.g. f32 for a NativeSimd = f32x16.
§

type Chunk = u8

The type holding bits for masks.
§

type Mask = u8

Type used for masking.
source§

fn select(self, mask: u8, default: Self) -> Self

Sets values to default based on mask.
source§

fn from_chunk(v: &[u64]) -> Self

Convert itself from a slice. Read more
source§

fn from_incomplete_chunk(v: &[u64], remaining: u64) -> Self

creates a new Self from v by populating items from v up to its length. Items from v at positions larger than the number of lanes are ignored; remaining items are populated with remaining.
source§

fn align(values: &[Self::Native]) -> (&[Self::Native], &[Self], &[Self::Native])

Returns a tuple of 3 items whose middle item is itself, and the remaining are the head and tail of the un-aligned parts.
source§

impl SimdOrd<u64> for u64x8

Available on crate feature compute_aggregate only.
source§

const MIN: u64 = 0u64

The minimum value
source§

const MAX: u64 = 18_446_744_073_709_551_615u64

The maximum value
source§

fn max_element(self) -> u64

reduce itself to the minimum
source§

fn min_element(self) -> u64

reduce itself to the maximum
source§

fn max_lane(self, x: Self) -> Self

lane-wise maximum between two instances
source§

fn min_lane(self, x: Self) -> Self

lane-wise minimum between two instances
source§

fn new_min() -> Self

returns a new instance with all lanes equal to MIN
source§

fn new_max() -> Self

returns a new instance with all lanes equal to MAX
source§

impl Sum<u64> for u64x8

Available on crate feature compute_aggregate only.
source§

fn simd_sum(self) -> u64

Reduces this element to a single value.
source§

impl Copy for u64x8

Auto Trait Implementations§

§

impl RefUnwindSafe for u64x8

§

impl Send for u64x8

§

impl Sync for u64x8

§

impl Unpin for u64x8

§

impl UnwindSafe for u64x8

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/arrow2/types/simd/trait.Simd.html b/arrow2/types/simd/trait.Simd.html index 826b92d94d13..64964d664a3d 100644 --- a/arrow2/types/simd/trait.Simd.html +++ b/arrow2/types/simd/trait.Simd.html @@ -3,4 +3,4 @@ }
Expand description

Trait implemented by some NativeType that have a SIMD representation.

Required Associated Types§

source

type Simd: NativeSimd<Native = Self>

The SIMD type associated with this trait. This type supports SIMD operations

-

Implementations on Foreign Types§

source§

impl Simd for u16

§

type Simd = u16x32

source§

impl Simd for u32

§

type Simd = u32x16

source§

impl Simd for i8

§

type Simd = i8x64

source§

impl Simd for i16

§

type Simd = i16x32

source§

impl Simd for i32

§

type Simd = i32x16

source§

impl Simd for i64

§

type Simd = i64x8

source§

impl Simd for f64

§

type Simd = f64x8

source§

impl Simd for f32

§

type Simd = f32x16

source§

impl Simd for u64

§

type Simd = u64x8

source§

impl Simd for i128

§

type Simd = i128x8

source§

impl Simd for u8

§

type Simd = u8x64

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Simd for f32

§

type Simd = f32x16

source§

impl Simd for u32

§

type Simd = u32x16

source§

impl Simd for i8

§

type Simd = i8x64

source§

impl Simd for i16

§

type Simd = i16x32

source§

impl Simd for u16

§

type Simd = u16x32

source§

impl Simd for i128

§

type Simd = i128x8

source§

impl Simd for u64

§

type Simd = u64x8

source§

impl Simd for i32

§

type Simd = i32x16

source§

impl Simd for f64

§

type Simd = f64x8

source§

impl Simd for u8

§

type Simd = u8x64

source§

impl Simd for i64

§

type Simd = i64x8

Implementors§

\ No newline at end of file diff --git a/arrow2/types/struct.days_ms.html b/arrow2/types/struct.days_ms.html index 1d99eb70d752..bb40e52f5233 100644 --- a/arrow2/types/struct.days_ms.html +++ b/arrow2/types/struct.days_ms.html @@ -2,7 +2,7 @@

Tuple Fields§

§0: i32§1: i32

Implementations§

source§

impl days_ms

source

pub fn new(days: i32, milliseconds: i32) -> Self

A new days_ms.

source

pub fn days(&self) -> i32

The number of days

source

pub fn milliseconds(&self) -> i32

The number of milliseconds

-

Trait Implementations§

source§

impl Clone for days_ms

source§

fn clone(&self) -> days_ms

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 days_ms

source§

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

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

impl Default for days_ms

source§

fn default() -> days_ms

Returns the “default value” for a type. Read more
source§

impl Display for days_ms

source§

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

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

impl Hash for days_ms

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

Trait Implementations§

source§

impl Clone for days_ms

source§

fn clone(&self) -> days_ms

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 days_ms

source§

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

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

impl Default for days_ms

source§

fn default() -> days_ms

Returns the “default value” for a type. Read more
source§

impl Display for days_ms

source§

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

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

impl Hash for days_ms

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl NativeType for days_ms

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::DaysMs

The corresponding variant of PrimitiveType.
§

type Bytes = [u8; 8]

Type denoting its representation as bytes. This is [u8; N] where N = size_of::<T>.
source§

fn to_le_bytes(&self) -> Self::Bytes

To bytes in little endian
source§

fn to_be_bytes(&self) -> Self::Bytes

To bytes in big endian
source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

From bytes in little endian
source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

From bytes in big endian
source§

impl Neg for days_ms

§

type Output = days_ms

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl PartialEq<days_ms> for days_ms

source§

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

This method tests for self and other values to be equal, and is used diff --git a/arrow2/types/struct.i256.html b/arrow2/types/struct.i256.html index 9cc37251a108..a32081aa2a7a 100644 --- a/arrow2/types/struct.i256.html +++ b/arrow2/types/struct.i256.html @@ -1,6 +1,6 @@ i256 in arrow2::types - Rust

Struct arrow2::types::i256

source ·
#[repr(C)]
pub struct i256(pub I256);
Expand description

Physical representation of a decimal

Tuple Fields§

§0: I256

Implementations§

source§

impl i256

source

pub fn from_words(hi: i128, lo: i128) -> Self

Returns a new i256 from two i128.

-

Trait Implementations§

source§

impl Clone for i256

source§

fn clone(&self) -> i256

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 i256

source§

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

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

impl Default for i256

source§

fn default() -> i256

Returns the “default value” for a type. Read more
source§

impl Display for i256

source§

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

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

impl Hash for i256

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

Trait Implementations§

source§

impl Clone for i256

source§

fn clone(&self) -> i256

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 i256

source§

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

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

impl Default for i256

source§

fn default() -> i256

Returns the “default value” for a type. Read more
source§

impl Display for i256

source§

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

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

impl Hash for i256

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl NativeType for i256

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int256

The corresponding variant of PrimitiveType.
§

type Bytes = [u8; 32]

Type denoting its representation as bytes. This is [u8; N] where N = size_of::<T>.
source§

fn to_le_bytes(&self) -> Self::Bytes

To bytes in little endian
source§

fn to_be_bytes(&self) -> Self::Bytes

To bytes in big endian
source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

From bytes in big endian
source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

From bytes in little endian
source§

impl Neg for i256

§

type Output = i256

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl Ord for i256

source§

fn cmp(&self, other: &i256) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere @@ -10,8 +10,8 @@ by ==.

1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<i256> for i256

source§

fn partial_cmp(&self, other: &i256) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
source§

impl Simd for i256

§

type Simd = i256x8

The SIMD type associated with this trait. -This type supports SIMD operations
source§

impl Simd8 for i256

Available on crate feature compute_comparison only.
§

type Simd = [i256; 8]

The 8 lane representation of Self
source§

impl Simd8Lanes<i256> for [i256; 8]

Available on crate feature compute_comparison only.
source§

fn from_chunk(v: &[i256]) -> Self

loads a complete chunk
source§

fn from_incomplete_chunk(v: &[i256], remaining: i256) -> Self

loads an incomplete chunk, filling the remaining items with remaining.
source§

impl Zeroable for i256

source§

fn zeroed() -> Self

source§

impl Copy for i256

source§

impl Eq for i256

source§

impl Pod for i256

source§

impl StructuralEq for i256

source§

impl StructuralPartialEq for i256

Auto Trait Implementations§

§

impl RefUnwindSafe for i256

§

impl Send for i256

§

impl Sync for i256

§

impl Unpin for i256

§

impl UnwindSafe for i256

Blanket Implementations§

source§

impl<T> Any for Twhere +operator. Read more

source§

impl Simd for i256

§

type Simd = i256x8

The SIMD type associated with this trait. +This type supports SIMD operations
source§

impl Simd8 for i256

Available on crate feature compute_comparison only.
§

type Simd = [i256; 8]

The 8 lane representation of Self
source§

impl Simd8Lanes<i256> for [i256; 8]

Available on crate feature compute_comparison only.
source§

fn from_chunk(v: &[i256]) -> Self

loads a complete chunk
source§

fn from_incomplete_chunk(v: &[i256], remaining: i256) -> Self

loads an incomplete chunk, filling the remaining items with remaining.
source§

impl Zeroable for i256

source§

fn zeroed() -> Self

source§

impl Copy for i256

source§

impl Eq for i256

source§

impl Pod for i256

source§

impl StructuralEq for i256

source§

impl StructuralPartialEq for i256

Auto Trait Implementations§

§

impl RefUnwindSafe for i256

§

impl Send for i256

§

impl Sync for i256

§

impl Unpin for i256

§

impl UnwindSafe for i256

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedBitPattern for Twhere diff --git a/arrow2/types/struct.months_days_ns.html b/arrow2/types/struct.months_days_ns.html index 028e559ff620..36de06057b2c 100644 --- a/arrow2/types/struct.months_days_ns.html +++ b/arrow2/types/struct.months_days_ns.html @@ -3,13 +3,13 @@

source

pub fn months(&self) -> i32

The number of months

source

pub fn days(&self) -> i32

The number of days

source

pub fn ns(&self) -> i64

The number of nanoseconds

-

Trait Implementations§

source§

impl Clone for months_days_ns

source§

fn clone(&self) -> months_days_ns

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 months_days_ns

source§

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

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

impl Default for months_days_ns

source§

fn default() -> months_days_ns

Returns the “default value” for a type. Read more
source§

impl Display for months_days_ns

source§

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

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

impl Hash for months_days_ns

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

Trait Implementations§

source§

impl Clone for months_days_ns

source§

fn clone(&self) -> months_days_ns

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 months_days_ns

source§

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

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

impl Default for months_days_ns

source§

fn default() -> months_days_ns

Returns the “default value” for a type. Read more
source§

impl Display for months_days_ns

source§

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

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

impl Hash for months_days_ns

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl NativeType for months_days_ns

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::MonthDayNano

The corresponding variant of PrimitiveType.
§

type Bytes = [u8; 16]

Type denoting its representation as bytes. This is [u8; N] where N = size_of::<T>.
source§

fn to_le_bytes(&self) -> Self::Bytes

To bytes in little endian
source§

fn to_be_bytes(&self) -> Self::Bytes

To bytes in big endian
source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

From bytes in little endian
source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

From bytes in big endian
source§

impl Neg for months_days_ns

§

type Output = months_days_ns

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl PartialEq<months_days_ns> for months_days_ns

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Simd for months_days_ns

§

type Simd = months_days_nsx8

The SIMD type associated with this trait. -This type supports SIMD operations
source§

impl Simd8 for months_days_ns

Available on crate feature compute_comparison only.
§

type Simd = [months_days_ns; 8]

The 8 lane representation of Self
source§

impl Simd8Lanes<months_days_ns> for [months_days_ns; 8]

Available on crate feature compute_comparison only.
source§

fn from_chunk(v: &[months_days_ns]) -> Self

loads a complete chunk
source§

fn from_incomplete_chunk( +sufficient, and should not be overridden without very good reason.

source§

impl Simd for months_days_ns

§

type Simd = months_days_nsx8

The SIMD type associated with this trait. +This type supports SIMD operations
source§

impl Simd8 for months_days_ns

Available on crate feature compute_comparison only.
§

type Simd = [months_days_ns; 8]

The 8 lane representation of Self
source§

impl Simd8Lanes<months_days_ns> for [months_days_ns; 8]

Available on crate feature compute_comparison only.
source§

fn from_chunk(v: &[months_days_ns]) -> Self

loads a complete chunk
source§

fn from_incomplete_chunk( v: &[months_days_ns], remaining: months_days_ns ) -> Self

loads an incomplete chunk, filling the remaining items with remaining.
source§

impl Zeroable for months_days_ns

source§

fn zeroed() -> Self

source§

impl Copy for months_days_ns

source§

impl Eq for months_days_ns

source§

impl Pod for months_days_ns

source§

impl StructuralEq for months_days_ns

source§

impl StructuralPartialEq for months_days_ns

Auto Trait Implementations§

§

impl RefUnwindSafe for months_days_ns

§

impl Send for months_days_ns

§

impl Sync for months_days_ns

§

impl Unpin for months_days_ns

§

impl UnwindSafe for months_days_ns

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/arrow2/types/trait.BitChunk.html b/arrow2/types/trait.BitChunk.html index e1fa34bce5cd..860c6880f048 100644 --- a/arrow2/types/trait.BitChunk.html +++ b/arrow2/types/trait.BitChunk.html @@ -7,4 +7,4 @@

This (sealed) trait is implemented for u8, u16, u32 and u64.

Required Methods§

source

fn to_ne_bytes(self) -> Self::Bytes

convert itself into bytes.

source

fn from_ne_bytes(v: Self::Bytes) -> Self

convert itself from bytes.

-

Implementations on Foreign Types§

source§

impl BitChunk for u64

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u16

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u8

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u32

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl BitChunk for u32

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u8

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u64

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

source§

impl BitChunk for u16

source§

fn to_ne_bytes(self) -> Self::Bytes

source§

fn from_ne_bytes(v: Self::Bytes) -> Self

Implementors§

\ No newline at end of file diff --git a/arrow2/types/trait.Index.html b/arrow2/types/trait.Index.html index 574197866389..0b1224096530 100644 --- a/arrow2/types/trait.Index.html +++ b/arrow2/types/trait.Index.html @@ -12,4 +12,4 @@
source

fn from_usize(index: usize) -> Option<Self>

Convert itself from usize.

source

fn from_as_usize(index: usize) -> Self

Convert itself from usize.

Provided Methods§

source

fn range(start: usize, end: usize) -> Option<IndexRange<Self>>

An iterator from (inclusive) start to (exclusive) end.

-

Implementations on Foreign Types§

source§

impl Index for i16

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for i32

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for u64

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for u32

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for i8

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for i64

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for u8

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for u16

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Index for u16

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for u32

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for u8

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for i16

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for i64

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for i8

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for u64

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

source§

impl Index for i32

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<Self>

source§

fn from_as_usize(value: usize) -> Self

Implementors§

\ No newline at end of file diff --git a/arrow2/types/trait.NativeType.html b/arrow2/types/trait.NativeType.html index c6cd8e6ca161..c459ba7d22c6 100644 --- a/arrow2/types/trait.NativeType.html +++ b/arrow2/types/trait.NativeType.html @@ -18,4 +18,4 @@
source

fn to_be_bytes(&self) -> Self::Bytes

To bytes in big endian

source

fn from_le_bytes(bytes: Self::Bytes) -> Self

From bytes in little endian

source

fn from_be_bytes(bytes: Self::Bytes) -> Self

From bytes in big endian

-

Implementations on Foreign Types§

source§

impl NativeType for u32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int16

§

type Bytes = [u8; 2]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for f64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i128

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int128

§

type Bytes = [u8; 16]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i8

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int8

§

type Bytes = [u8; 1]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for u16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt16

§

type Bytes = [u8; 2]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for u8

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt8

§

type Bytes = [u8; 1]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for f32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for u64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

Implementors§

source§

impl NativeType for days_ms

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::DaysMs

§

type Bytes = [u8; 8]

source§

impl NativeType for f16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float16

§

type Bytes = [u8; 2]

source§

impl NativeType for i256

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int256

§

type Bytes = [u8; 32]

source§

impl NativeType for months_days_ns

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::MonthDayNano

§

type Bytes = [u8; 16]

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl NativeType for u16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt16

§

type Bytes = [u8; 2]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for u8

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt8

§

type Bytes = [u8; 1]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i8

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int8

§

type Bytes = [u8; 1]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for f64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for u32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for u64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int16

§

type Bytes = [u8; 2]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for f32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

source§

impl NativeType for i128

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int128

§

type Bytes = [u8; 16]

source§

fn to_le_bytes(&self) -> Self::Bytes

source§

fn to_be_bytes(&self) -> Self::Bytes

source§

fn from_le_bytes(bytes: Self::Bytes) -> Self

source§

fn from_be_bytes(bytes: Self::Bytes) -> Self

Implementors§

source§

impl NativeType for days_ms

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::DaysMs

§

type Bytes = [u8; 8]

source§

impl NativeType for f16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float16

§

type Bytes = [u8; 2]

source§

impl NativeType for i256

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int256

§

type Bytes = [u8; 32]

source§

impl NativeType for months_days_ns

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::MonthDayNano

§

type Bytes = [u8; 16]

\ No newline at end of file diff --git a/arrow2/types/trait.Offset.html b/arrow2/types/trait.Offset.html index 74db78e8824b..0ff29fa4687f 100644 --- a/arrow2/types/trait.Offset.html +++ b/arrow2/types/trait.Offset.html @@ -3,4 +3,4 @@ }
Expand description

Sealed trait describing the subset (i32 and i64) of Index that can be used as offsets of variable-length Arrow arrays.

Required Associated Constants§

source

const IS_LARGE: bool

Whether it is i32 (false) or i64 (true).

-

Implementations on Foreign Types§

source§

impl Offset for i32

source§

const IS_LARGE: bool = false

source§

impl Offset for i64

source§

const IS_LARGE: bool = true

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Offset for i64

source§

const IS_LARGE: bool = true

source§

impl Offset for i32

source§

const IS_LARGE: bool = false

Implementors§

\ No newline at end of file diff --git a/ciborium/de/enum.Error.html b/ciborium/de/enum.Error.html index fa826139dc12..052d67b28bab 100644 --- a/ciborium/de/enum.Error.html +++ b/ciborium/de/enum.Error.html @@ -18,7 +18,7 @@ offset: impl Into<Option<usize>>, msg: impl Into<String> ) -> Self

A helper method for composing a semantic error

-

Trait Implementations§

source§

impl<T: Debug> Debug for Error<T>

source§

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

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

impl<T: Debug> Display for Error<T>

source§

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

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

impl<T: Debug> Error for Error<T>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<T: Debug> Error for Error<T>

source§

fn custom<U: Display>(msg: U) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was +

Trait Implementations§

source§

impl<T: Debug> Debug for Error<T>

source§

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

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

impl<T: Debug> Display for Error<T>

source§

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

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

impl<T: Debug> Error for Error<T>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<T: Debug> Error for Error<T>

source§

fn custom<U: Display>(msg: U) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, exp: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
source§

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize enum type received a variant with an @@ -26,7 +26,7 @@ unrecognized name.
source§

fn missing_field(field: &'static str) -> Self

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input.
source§

fn duplicate_field(field: &'static str) -> Self

Raised when a Deserialize struct type received more than one of the -same field.
source§

impl<T> From<Error<T>> for Error<T>

source§

fn from(value: Error<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<T> for Error<T>

source§

fn from(value: T) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Error<T>where +same field.

source§

impl<T> From<Error<T>> for Error<T>

source§

fn from(value: Error<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<T> for Error<T>

source§

fn from(value: T) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Error<T>where T: RefUnwindSafe,

§

impl<T> Send for Error<T>where T: Send,

§

impl<T> Sync for Error<T>where T: Sync,

§

impl<T> Unpin for Error<T>where diff --git a/ciborium/enum.Value.html b/ciborium/enum.Value.html index 1b4ad83c24cd..3027f1d55974 100644 --- a/ciborium/enum.Value.html +++ b/ciborium/enum.Value.html @@ -264,7 +264,7 @@ let value = Value::Bool(true); assert_eq!(value.into_map(), Err(Value::Bool(true)));

-

Trait Implementations§

source§

impl Clone for Value

source§

fn clone(&self) -> Value

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 Value

source§

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

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

impl<'de> Deserialize<'de> for Value

source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

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

impl From<&[(Value, Value)]> for Value

source§

fn from(value: &[(Value, Value)]) -> Self

Converts to this type from the input type.
source§

impl From<&[Value]> for Value

source§

fn from(value: &[Value]) -> Self

Converts to this type from the input type.
source§

impl From<&[u8]> for Value

source§

fn from(value: &[u8]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a Value> for Unexpected<'a>

source§

fn from(value: &'a Value) -> Self

Converts to this type from the input type.
source§

impl From<&str> for Value

source§

fn from(value: &str) -> Self

Converts to this type from the input type.
source§

impl From<CanonicalValue> for Value

source§

fn from(v: CanonicalValue) -> Self

Converts to this type from the input type.
source§

impl From<Integer> for Value

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(value: String) -> Self

Converts to this type from the input type.
source§

impl From<Value> for CanonicalValue

source§

fn from(v: Value) -> Self

Converts to this type from the input type.
source§

impl From<Vec<(Value, Value), Global>> for Value

source§

fn from(value: Vec<(Value, Value)>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<Value, Global>> for Value

source§

fn from(value: Vec<Value>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<u8, Global>> for Value

source§

fn from(value: Vec<u8>) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Value

source§

fn from(value: bool) -> Self

Converts to this type from the input type.
source§

impl From<char> for Value

source§

fn from(value: char) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Value

source§

fn from(value: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Value

source§

fn from(value: f64) -> Self

Converts to this type from the input type.
source§

impl From<i128> for Value

source§

fn from(value: i128) -> Self

Converts to this type from the input type.
source§

impl From<i16> for Value

source§

fn from(value: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(value: i8) -> Self

Converts to this type from the input type.
source§

impl From<u128> for Value

source§

fn from(value: u128) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(value: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(value: u8) -> Self

Converts to this type from the input type.
source§

impl PartialEq<Value> for Value

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Value

source§

fn clone(&self) -> Value

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 Value

source§

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

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

impl<'de> Deserialize<'de> for Value

source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

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

impl From<&[(Value, Value)]> for Value

source§

fn from(value: &[(Value, Value)]) -> Self

Converts to this type from the input type.
source§

impl From<&[Value]> for Value

source§

fn from(value: &[Value]) -> Self

Converts to this type from the input type.
source§

impl From<&[u8]> for Value

source§

fn from(value: &[u8]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a Value> for Unexpected<'a>

source§

fn from(value: &'a Value) -> Self

Converts to this type from the input type.
source§

impl From<&str> for Value

source§

fn from(value: &str) -> Self

Converts to this type from the input type.
source§

impl From<CanonicalValue> for Value

source§

fn from(v: CanonicalValue) -> Self

Converts to this type from the input type.
source§

impl From<Integer> for Value

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(value: String) -> Self

Converts to this type from the input type.
source§

impl From<Value> for CanonicalValue

source§

fn from(v: Value) -> Self

Converts to this type from the input type.
source§

impl From<Vec<(Value, Value), Global>> for Value

source§

fn from(value: Vec<(Value, Value)>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<Value, Global>> for Value

source§

fn from(value: Vec<Value>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<u8, Global>> for Value

source§

fn from(value: Vec<u8>) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Value

source§

fn from(value: bool) -> Self

Converts to this type from the input type.
source§

impl From<char> for Value

source§

fn from(value: char) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Value

source§

fn from(value: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Value

source§

fn from(value: f64) -> Self

Converts to this type from the input type.
source§

impl From<i128> for Value

source§

fn from(value: i128) -> Self

Converts to this type from the input type.
source§

impl From<i16> for Value

source§

fn from(value: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(value: i8) -> Self

Converts to this type from the input type.
source§

impl From<u128> for Value

source§

fn from(value: u128) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(value: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(value: u8) -> Self

Converts to this type from the input type.
source§

impl PartialEq<Value> for Value

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Value> for Value

source§

fn partial_cmp(&self, other: &Value) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= diff --git a/ciborium/ser/enum.Error.html b/ciborium/ser/enum.Error.html index 78c5a2cb83d2..6fc8505ce43e 100644 --- a/ciborium/ser/enum.Error.html +++ b/ciborium/ser/enum.Error.html @@ -6,7 +6,7 @@

Contains the underlying error reaturned while writing.

§

Value(String)

An error indicating a value that cannot be serialized

Contains a description of the problem.

-

Trait Implementations§

source§

impl<T: Debug> Debug for Error<T>

source§

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

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

impl<T: Debug> Display for Error<T>

source§

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

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

impl<T: Debug> Error for Error<T>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<T: Debug> Error for Error<T>

source§

fn custom<U: Display>(msg: U) -> Self

Used when a Serialize implementation encounters any error +

Trait Implementations§

source§

impl<T: Debug> Debug for Error<T>

source§

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

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

impl<T: Debug> Display for Error<T>

source§

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

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

impl<T: Debug> Error for Error<T>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<T: Debug> Error for Error<T>

source§

fn custom<U: Display>(msg: U) -> Self

Used when a Serialize implementation encounters any error while serializing a type. Read more
source§

impl<T> From<T> for Error<T>

source§

fn from(value: T) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Error<T>where T: RefUnwindSafe,

§

impl<T> Send for Error<T>where T: Send,

§

impl<T> Sync for Error<T>where diff --git a/ciborium/value/enum.Error.html b/ciborium/value/enum.Error.html index cabaafffd516..01e1f3399956 100644 --- a/ciborium/value/enum.Error.html +++ b/ciborium/value/enum.Error.html @@ -2,8 +2,7 @@ Custom(String), }
Expand description

The error when serializing to/from a Value

Variants§

§

Custom(String)

A custom error string produced by serde

-

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Used when a Serialize implementation encounters any error -while serializing a type. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was +

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, exp: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
source§

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize enum type received a variant with an @@ -11,7 +10,8 @@ unrecognized name.
source§

fn missing_field(field: &'static str) -> Self

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input.
source§

fn duplicate_field(field: &'static str) -> Self

Raised when a Deserialize struct type received more than one of the -same field.

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +same field.

source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Used when a Serialize implementation encounters any error +while serializing a type. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/ciborium/value/enum.Value.html b/ciborium/value/enum.Value.html index 9a963d126919..2889e7ecdda5 100644 --- a/ciborium/value/enum.Value.html +++ b/ciborium/value/enum.Value.html @@ -264,7 +264,7 @@ let value = Value::Bool(true); assert_eq!(value.into_map(), Err(Value::Bool(true)));
-

Trait Implementations§

source§

impl Clone for Value

source§

fn clone(&self) -> Value

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 Value

source§

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

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

impl<'de> Deserialize<'de> for Value

source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

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

impl From<&[(Value, Value)]> for Value

source§

fn from(value: &[(Value, Value)]) -> Self

Converts to this type from the input type.
source§

impl From<&[Value]> for Value

source§

fn from(value: &[Value]) -> Self

Converts to this type from the input type.
source§

impl From<&[u8]> for Value

source§

fn from(value: &[u8]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a Value> for Unexpected<'a>

source§

fn from(value: &'a Value) -> Self

Converts to this type from the input type.
source§

impl From<&str> for Value

source§

fn from(value: &str) -> Self

Converts to this type from the input type.
source§

impl From<CanonicalValue> for Value

source§

fn from(v: CanonicalValue) -> Self

Converts to this type from the input type.
source§

impl From<Integer> for Value

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(value: String) -> Self

Converts to this type from the input type.
source§

impl From<Value> for CanonicalValue

source§

fn from(v: Value) -> Self

Converts to this type from the input type.
source§

impl From<Vec<(Value, Value), Global>> for Value

source§

fn from(value: Vec<(Value, Value)>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<Value, Global>> for Value

source§

fn from(value: Vec<Value>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<u8, Global>> for Value

source§

fn from(value: Vec<u8>) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Value

source§

fn from(value: bool) -> Self

Converts to this type from the input type.
source§

impl From<char> for Value

source§

fn from(value: char) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Value

source§

fn from(value: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Value

source§

fn from(value: f64) -> Self

Converts to this type from the input type.
source§

impl From<i128> for Value

source§

fn from(value: i128) -> Self

Converts to this type from the input type.
source§

impl From<i16> for Value

source§

fn from(value: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(value: i8) -> Self

Converts to this type from the input type.
source§

impl From<u128> for Value

source§

fn from(value: u128) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(value: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(value: u8) -> Self

Converts to this type from the input type.
source§

impl PartialEq<Value> for Value

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Value

source§

fn clone(&self) -> Value

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 Value

source§

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

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

impl<'de> Deserialize<'de> for Value

source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

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

impl From<&[(Value, Value)]> for Value

source§

fn from(value: &[(Value, Value)]) -> Self

Converts to this type from the input type.
source§

impl From<&[Value]> for Value

source§

fn from(value: &[Value]) -> Self

Converts to this type from the input type.
source§

impl From<&[u8]> for Value

source§

fn from(value: &[u8]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a Value> for Unexpected<'a>

source§

fn from(value: &'a Value) -> Self

Converts to this type from the input type.
source§

impl From<&str> for Value

source§

fn from(value: &str) -> Self

Converts to this type from the input type.
source§

impl From<CanonicalValue> for Value

source§

fn from(v: CanonicalValue) -> Self

Converts to this type from the input type.
source§

impl From<Integer> for Value

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(value: String) -> Self

Converts to this type from the input type.
source§

impl From<Value> for CanonicalValue

source§

fn from(v: Value) -> Self

Converts to this type from the input type.
source§

impl From<Vec<(Value, Value), Global>> for Value

source§

fn from(value: Vec<(Value, Value)>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<Value, Global>> for Value

source§

fn from(value: Vec<Value>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<u8, Global>> for Value

source§

fn from(value: Vec<u8>) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Value

source§

fn from(value: bool) -> Self

Converts to this type from the input type.
source§

impl From<char> for Value

source§

fn from(value: char) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Value

source§

fn from(value: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Value

source§

fn from(value: f64) -> Self

Converts to this type from the input type.
source§

impl From<i128> for Value

source§

fn from(value: i128) -> Self

Converts to this type from the input type.
source§

impl From<i16> for Value

source§

fn from(value: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(value: i8) -> Self

Converts to this type from the input type.
source§

impl From<u128> for Value

source§

fn from(value: u128) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(value: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(value: u8) -> Self

Converts to this type from the input type.
source§

impl PartialEq<Value> for Value

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Value> for Value

source§

fn partial_cmp(&self, other: &Value) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= diff --git a/ciborium/value/struct.Integer.html b/ciborium/value/struct.Integer.html index bf0768b4e3de..ed48f062c152 100644 --- a/ciborium/value/struct.Integer.html +++ b/ciborium/value/struct.Integer.html @@ -5,7 +5,7 @@ implementations for 128-bit integer conversions on Value for more details.

Implementations§

source§

impl Integer

source

pub fn canonical_cmp(&self, other: &Self) -> Ordering

Compare two integers as if we were to serialize them, but more efficiently.

-

Trait Implementations§

source§

impl Clone for Integer

source§

fn clone(&self) -> Integer

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 Integer

source§

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

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

impl<'a> From<Integer> for Unexpected<'a>

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<Integer> for Value

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<Integer> for i128

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<i16> for Integer

source§

fn from(value: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Integer

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Integer

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Integer

source§

fn from(value: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Integer

source§

fn from(value: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Integer

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Integer

source§

fn from(value: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Integer

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Integer

source§

fn from(value: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Integer

source§

fn from(value: usize) -> Self

Converts to this type from the input type.
source§

impl Hash for Integer

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

Trait Implementations§

source§

impl Clone for Integer

source§

fn clone(&self) -> Integer

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 Integer

source§

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

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

impl<'a> From<Integer> for Unexpected<'a>

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<Integer> for Value

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<Integer> for i128

source§

fn from(value: Integer) -> Self

Converts to this type from the input type.
source§

impl From<i16> for Integer

source§

fn from(value: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Integer

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Integer

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Integer

source§

fn from(value: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Integer

source§

fn from(value: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Integer

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Integer

source§

fn from(value: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Integer

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Integer

source§

fn from(value: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Integer

source§

fn from(value: usize) -> Self

Converts to this type from the input type.
source§

impl Hash for Integer

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Integer

source§

fn cmp(&self, other: &Integer) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere @@ -14,7 +14,7 @@ by ==.

1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Integer> for Integer

source§

fn partial_cmp(&self, other: &Integer) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= -operator. Read more
source§

impl TryFrom<Integer> for i16

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for i32

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for i64

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for i8

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for isize

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u128

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u16

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u32

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u64

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u8

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for usize

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<i128> for Integer

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: i128) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u128> for Integer

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: u128) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for Integer

source§

impl Eq for Integer

source§

impl StructuralEq for Integer

source§

impl StructuralPartialEq for Integer

Auto Trait Implementations§

§

impl RefUnwindSafe for Integer

§

impl Send for Integer

§

impl Sync for Integer

§

impl Unpin for Integer

§

impl UnwindSafe for Integer

Blanket Implementations§

source§

impl<T> Any for Twhere +operator. Read more

source§

impl TryFrom<Integer> for i16

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for i32

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for i64

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for i8

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for isize

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u128

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u16

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u32

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u64

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for u8

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Integer> for usize

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: Integer) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<i128> for Integer

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: i128) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<u128> for Integer

§

type Error = TryFromIntError

The type returned in the event of a conversion error.
source§

fn try_from(value: u128) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for Integer

source§

impl Eq for Integer

source§

impl StructuralEq for Integer

source§

impl StructuralPartialEq for Integer

Auto Trait Implementations§

§

impl RefUnwindSafe for Integer

§

impl Send for Integer

§

impl Sync for Integer

§

impl Unpin for Integer

§

impl UnwindSafe for Integer

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/implementors/bytemuck/pod/trait.Pod.js b/implementors/bytemuck/pod/trait.Pod.js index 358df56ee47b..95c826ddffd6 100644 --- a/implementors/bytemuck/pod/trait.Pod.js +++ b/implementors/bytemuck/pod/trait.Pod.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow2":[["impl Pod for days_ms"],["impl Pod for f16"],["impl Pod for i256"],["impl Pod for months_days_ns"]], +"arrow2":[["impl Pod for i256"],["impl Pod for f16"],["impl Pod for days_ms"],["impl Pod for months_days_ns"]], "bytemuck":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/bytemuck/zeroable/trait.Zeroable.js b/implementors/bytemuck/zeroable/trait.Zeroable.js index b37c3268f798..0be13c1a4682 100644 --- a/implementors/bytemuck/zeroable/trait.Zeroable.js +++ b/implementors/bytemuck/zeroable/trait.Zeroable.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow2":[["impl Zeroable for days_ms"],["impl Zeroable for months_days_ns"],["impl Zeroable for i256"],["impl Zeroable for f16"]], +"arrow2":[["impl Zeroable for months_days_ns"],["impl Zeroable for f16"],["impl Zeroable for days_ms"],["impl Zeroable for i256"]], "bytemuck":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/clone/trait.Clone.js b/implementors/core/clone/trait.Clone.js index aee730c58a1c..ab7e65adfa45 100644 --- a/implementors/core/clone/trait.Clone.js +++ b/implementors/core/clone/trait.Clone.js @@ -5,10 +5,10 @@ "aho_corasick":[["impl Clone for NFA"],["impl Clone for PatternIDError"],["impl Clone for Candidate"],["impl Clone for Config"],["impl Clone for Span"],["impl<'h> Clone for Input<'h>"],["impl Clone for StateIDError"],["impl Clone for Builder"],["impl Clone for MatchError"],["impl Clone for MatchErrorKind"],["impl Clone for OverlappingState"],["impl Clone for Anchored"],["impl Clone for Searcher"],["impl Clone for AhoCorasickKind"],["impl Clone for Builder"],["impl Clone for AhoCorasick"],["impl Clone for Match"],["impl Clone for Prefilter"],["impl Clone for Builder"],["impl Clone for StartKind"],["impl Clone for PatternID"],["impl Clone for AhoCorasickBuilder"],["impl Clone for Builder"],["impl Clone for NFA"],["impl Clone for StateID"],["impl Clone for MatchKind"],["impl Clone for MatchKind"],["impl Clone for DFA"],["impl Clone for BuildError"]], "alloc_stdlib":[["impl Clone for StandardAlloc"]], "allocator_api2":[["impl<T: Clone, A: Allocator + Clone> Clone for Box<T, A>"],["impl<T: Clone, A: Allocator + Clone> Clone for Box<[T], A>"],["impl<T: Clone, A: Allocator + Clone> Clone for Vec<T, A>"],["impl Clone for Box<CStr>"],["impl Clone for AllocError"],["impl Clone for Global"],["impl<T: Clone, A: Allocator + Clone> Clone for IntoIter<T, A>"],["impl Clone for Box<str>"]], -"arrow2":[["impl<O: Clone + Offset> Clone for BinaryArray<O>"],["impl Clone for f16"],["impl Clone for u64x8"],["impl Clone for UnionMode"],["impl Clone for MapScalar"],["impl Clone for InitNested"],["impl<'clone> Clone for Box<dyn Array + Send + Sync + 'clone>"],["impl<'clone> Clone for Box<dyn Array + Send + 'clone>"],["impl Clone for i256x8"],["impl<O: Clone + Offset> Clone for MutableUtf8ValuesArray<O>"],["impl<A: Clone + AsRef<dyn Array>> Clone for Chunk<A>"],["impl<O: Clone + Offset> Clone for BinaryScalar<O>"],["impl Clone for i64x8"],["impl<'a> Clone for BitmapIter<'a>"],["impl Clone for Schema"],["impl<A, I> Clone for Serializer<A, I>where\n A: AsRef<dyn Array> + Clone,\n I: Iterator<Item = Result<A, Error>> + Clone,"],["impl Clone for i8x64"],["impl<O: Clone + Offset> Clone for Utf8Array<O>"],["impl Clone for IpcField"],["impl Clone for NullScalar"],["impl<O: Clone + Offset> Clone for Utf8Scalar<O>"],["impl<'clone> Clone for Box<dyn Scalar + Send + 'clone>"],["impl Clone for FixedSizeBinaryArray"],["impl Clone for BooleanScalar"],["impl<O: Clone + Offset> Clone for MutableBinaryArray<O>"],["impl<K: Clone + DictionaryKey> Clone for DictionaryScalar<K>"],["impl Clone for MutableBooleanArray"],["impl<O: Clone + Offset, M: Clone + MutableArray> Clone for MutableListArray<O, M>"],["impl Clone for months_days_nsx8"],["impl<'clone> Clone for Box<dyn Scalar + Sync + 'clone>"],["impl<O: Clone + Offset> Clone for MutableUtf8Array<O>"],["impl Clone for UnionScalar"],["impl Clone for IpcSchema"],["impl<T: Clone, I, V> Clone for ZipValidity<T, I, V>where\n I: Iterator<Item = T> + Clone,\n V: Iterator<Item = bool> + Clone,"],["impl Clone for i16x32"],["impl Clone for IntervalUnit"],["impl<O: Clone + Offset> Clone for Offsets<O>"],["impl<'clone> Clone for Box<dyn Scalar + Send + Sync + 'clone>"],["impl Clone for MapArray"],["impl Clone for FixedSizeListArray"],["impl Clone for months_days_ns"],["impl Clone for StreamMetadata"],["impl Clone for StructArray"],["impl<O: Clone + Offset> Clone for ListScalar<O>"],["impl Clone for u8x64"],["impl Clone for FileMetadata"],["impl Clone for FixedSizeBinaryScalar"],["impl<'clone> Clone for Box<dyn Array + 'clone>"],["impl Clone for WriteOptions"],["impl Clone for TimeUnit"],["impl Clone for UnionArray"],["impl<T: Clone, I, V> Clone for ZipValidityIter<T, I, V>where\n I: Iterator<Item = T> + Clone,\n V: Iterator<Item = bool> + Clone,"],["impl Clone for i128x8"],["impl<'a, A: Clone + ArrayAccessor<'a>> Clone for ArrayValuesIter<'a, A>"],["impl Clone for MutableBitmap"],["impl<'clone> Clone for Box<dyn Scalar + 'clone>"],["impl Clone for IntoIter"],["impl<O: Clone + Offset> Clone for OffsetsBuffer<O>"],["impl Clone for i32x16"],["impl<M: Clone + MutableArray> Clone for MutableFixedSizeListArray<M>"],["impl<T: Clone> Clone for Buffer<T>"],["impl Clone for days_ms"],["impl<T: Clone + NativeType> Clone for PrimitiveArray<T>"],["impl<A, I> Clone for Serializer<A, I>where\n A: AsRef<dyn Array> + Clone,\n I: Iterator<Item = Result<A, Error>> + Clone,"],["impl Clone for Bitmap"],["impl Clone for DataType"],["impl<K: Clone + DictionaryKey> Clone for DictionaryArray<K>"],["impl Clone for FixedSizeListScalar"],["impl Clone for StructScalar"],["impl<O: Clone + Offset> Clone for ListArray<O>"],["impl Clone for u32x16"],["impl<'a> Clone for SlicesIterator<'a>"],["impl Clone for f32x16"],["impl Clone for IntegerType"],["impl<T: Clone + NativeType> Clone for PrimitiveScalar<T>"],["impl Clone for PhysicalType"],["impl Clone for BooleanArray"],["impl<'a> Clone for Record<'a>"],["impl Clone for f64x8"],["impl Clone for WriteOptions"],["impl Clone for CastOptions"],["impl Clone for Compression"],["impl Clone for Nested"],["impl Clone for NullArray"],["impl Clone for i256"],["impl Clone for PrimitiveType"],["impl<T: Clone + NativeType> Clone for MutablePrimitiveArray<T>"],["impl<O: Clone + Offset> Clone for MutableBinaryValuesArray<O>"],["impl Clone for days_msx8"],["impl<'clone> Clone for Box<dyn Array + Sync + 'clone>"],["impl Clone for MutableFixedSizeBinaryArray"],["impl Clone for Field"],["impl Clone for u16x32"],["impl Clone for f16x32"]], -"arrow_format":[["impl<'a> Clone for FieldNodeRef<'a>"],["impl Clone for Date"],["impl<'a> Clone for TensorDimRef<'a>"],["impl Clone for Timestamp"],["impl<'a> Clone for SparseMatrixIndexCsxRef<'a>"],["impl Clone for SparseTensorIndex"],["impl Clone for MetadataVersion"],["impl Clone for LargeBinary"],["impl<'a> Clone for IntRef<'a>"],["impl<'a> Clone for SparseTensorIndexCooRef<'a>"],["impl Clone for Endianness"],["impl<'a> Clone for RecordBatchRef<'a>"],["impl Clone for KeyValue"],["impl<'a> Clone for ListRef<'a>"],["impl Clone for Time"],["impl<'a> Clone for MapRef<'a>"],["impl Clone for LargeUtf8"],["impl Clone for UnionMode"],["impl Clone for Utf8"],["impl<'a> Clone for IntervalRef<'a>"],["impl<'a> Clone for FixedSizeBinaryRef<'a>"],["impl Clone for List"],["impl<'a> Clone for MessageHeaderRef<'a>"],["impl Clone for DateUnit"],["impl Clone for Struct"],["impl<'a> Clone for FloatingPointRef<'a>"],["impl Clone for SparseTensorIndexCoo"],["impl<'a> Clone for SparseTensorIndexRef<'a>"],["impl Clone for DictionaryEncoding"],["impl Clone for FieldNode"],["impl Clone for Union"],["impl<'a> Clone for SparseTensorIndexCsfRef<'a>"],["impl<'a> Clone for DecimalRef<'a>"],["impl Clone for Interval"],["impl Clone for Field"],["impl Clone for Footer"],["impl Clone for RecordBatch"],["impl Clone for Message"],["impl<'a> Clone for SchemaRef<'a>"],["impl Clone for SparseMatrixCompressedAxis"],["impl Clone for TimeUnit"],["impl<'a> Clone for TensorRef<'a>"],["impl<'a> Clone for BufferRef<'a>"],["impl Clone for Feature"],["impl<'a> Clone for TimeRef<'a>"],["impl<'a> Clone for UnionRef<'a>"],["impl<'a> Clone for LargeBinaryRef<'a>"],["impl<'a> Clone for DurationRef<'a>"],["impl<'a> Clone for BlockRef<'a>"],["impl Clone for Int"],["impl Clone for Decimal"],["impl Clone for Duration"],["impl<'a> Clone for LargeListRef<'a>"],["impl Clone for FloatingPoint"],["impl<'a> Clone for BodyCompressionRef<'a>"],["impl<'a> Clone for TypeRef<'a>"],["impl Clone for TensorDim"],["impl<'a> Clone for Utf8Ref<'a>"],["impl Clone for DictionaryBatch"],["impl Clone for Schema"],["impl Clone for Map"],["impl<'a> Clone for StructRef<'a>"],["impl<'a> Clone for BinaryRef<'a>"],["impl Clone for Bool"],["impl Clone for SparseTensorIndexCsf"],["impl<'a> Clone for FixedSizeListRef<'a>"],["impl<'a> Clone for BoolRef<'a>"],["impl Clone for Tensor"],["impl Clone for SparseTensor"],["impl Clone for Block"],["impl<'a> Clone for MessageRef<'a>"],["impl Clone for LargeList"],["impl Clone for Precision"],["impl<'a> Clone for LargeUtf8Ref<'a>"],["impl Clone for Type"],["impl Clone for SparseMatrixIndexCsx"],["impl Clone for IntervalUnit"],["impl Clone for CompressionType"],["impl<'a> Clone for NullRef<'a>"],["impl Clone for FixedSizeBinary"],["impl Clone for Buffer"],["impl<'a> Clone for DateRef<'a>"],["impl<'a> Clone for SparseTensorRef<'a>"],["impl Clone for BodyCompressionMethod"],["impl Clone for BodyCompression"],["impl<'a> Clone for DictionaryEncodingRef<'a>"],["impl<'a> Clone for DictionaryBatchRef<'a>"],["impl Clone for Null"],["impl<'a> Clone for FieldRef<'a>"],["impl<'a> Clone for TimestampRef<'a>"],["impl Clone for MessageHeader"],["impl<'a> Clone for KeyValueRef<'a>"],["impl Clone for Binary"],["impl Clone for DictionaryKind"],["impl Clone for FixedSizeList"],["impl<'a> Clone for FooterRef<'a>"]], +"arrow2":[["impl<'clone> Clone for Box<dyn Array + Send + 'clone>"],["impl<'clone> Clone for Box<dyn Scalar + Sync + 'clone>"],["impl<T: Clone + NativeType> Clone for MutablePrimitiveArray<T>"],["impl Clone for MapArray"],["impl Clone for Field"],["impl Clone for FixedSizeBinaryArray"],["impl Clone for f16x32"],["impl Clone for i32x16"],["impl Clone for i16x32"],["impl<T: Clone, I, V> Clone for ZipValidity<T, I, V>where\n I: Iterator<Item = T> + Clone,\n V: Iterator<Item = bool> + Clone,"],["impl Clone for u32x16"],["impl Clone for FixedSizeListArray"],["impl Clone for months_days_nsx8"],["impl Clone for u64x8"],["impl Clone for i256"],["impl Clone for UnionMode"],["impl<T: Clone + NativeType> Clone for PrimitiveScalar<T>"],["impl<O: Clone + Offset> Clone for ListScalar<O>"],["impl Clone for WriteOptions"],["impl Clone for i128x8"],["impl Clone for f64x8"],["impl Clone for IntegerType"],["impl Clone for Bitmap"],["impl Clone for StructScalar"],["impl Clone for IpcSchema"],["impl<'a> Clone for SlicesIterator<'a>"],["impl Clone for PhysicalType"],["impl Clone for IntervalUnit"],["impl<A: Clone + AsRef<dyn Array>> Clone for Chunk<A>"],["impl<A, I> Clone for Serializer<A, I>where\n A: AsRef<dyn Array> + Clone,\n I: Iterator<Item = Result<A, Error>> + Clone,"],["impl<O: Clone + Offset> Clone for Utf8Scalar<O>"],["impl<O: Clone + Offset> Clone for MutableUtf8ValuesArray<O>"],["impl Clone for BooleanArray"],["impl Clone for DataType"],["impl Clone for f32x16"],["impl Clone for BooleanScalar"],["impl<O: Clone + Offset> Clone for Utf8Array<O>"],["impl Clone for MutableBooleanArray"],["impl Clone for IpcField"],["impl<O: Clone + Offset> Clone for OffsetsBuffer<O>"],["impl Clone for f16"],["impl Clone for i64x8"],["impl Clone for Nested"],["impl Clone for NullArray"],["impl Clone for NullScalar"],["impl Clone for FileMetadata"],["impl<'a> Clone for BitmapIter<'a>"],["impl<O: Clone + Offset> Clone for MutableBinaryValuesArray<O>"],["impl<O: Clone + Offset> Clone for MutableBinaryArray<O>"],["impl Clone for Compression"],["impl<O: Clone + Offset> Clone for BinaryArray<O>"],["impl<'clone> Clone for Box<dyn Scalar + Send + 'clone>"],["impl Clone for FixedSizeBinaryScalar"],["impl<O: Clone + Offset> Clone for MutableUtf8Array<O>"],["impl<O: Clone + Offset> Clone for BinaryScalar<O>"],["impl Clone for WriteOptions"],["impl Clone for InitNested"],["impl Clone for IntoIter"],["impl<K: Clone + DictionaryKey> Clone for DictionaryScalar<K>"],["impl<'clone> Clone for Box<dyn Array + Sync + 'clone>"],["impl Clone for u16x32"],["impl Clone for StructArray"],["impl Clone for u8x64"],["impl Clone for UnionArray"],["impl<T: Clone + NativeType> Clone for PrimitiveArray<T>"],["impl<'clone> Clone for Box<dyn Scalar + Send + Sync + 'clone>"],["impl<'a, A: Clone + ArrayAccessor<'a>> Clone for ArrayValuesIter<'a, A>"],["impl<T: Clone> Clone for Buffer<T>"],["impl Clone for days_msx8"],["impl Clone for PrimitiveType"],["impl Clone for i8x64"],["impl Clone for CastOptions"],["impl Clone for months_days_ns"],["impl<O: Clone + Offset, M: Clone + MutableArray> Clone for MutableListArray<O, M>"],["impl Clone for MutableBitmap"],["impl<T: Clone, I, V> Clone for ZipValidityIter<T, I, V>where\n I: Iterator<Item = T> + Clone,\n V: Iterator<Item = bool> + Clone,"],["impl<O: Clone + Offset> Clone for ListArray<O>"],["impl Clone for days_ms"],["impl Clone for TimeUnit"],["impl Clone for MutableFixedSizeBinaryArray"],["impl Clone for FixedSizeListScalar"],["impl<'clone> Clone for Box<dyn Scalar + 'clone>"],["impl<'a> Clone for Record<'a>"],["impl Clone for MapScalar"],["impl<A, I> Clone for Serializer<A, I>where\n A: AsRef<dyn Array> + Clone,\n I: Iterator<Item = Result<A, Error>> + Clone,"],["impl<'clone> Clone for Box<dyn Array + 'clone>"],["impl Clone for StreamMetadata"],["impl Clone for UnionScalar"],["impl<K: Clone + DictionaryKey> Clone for DictionaryArray<K>"],["impl<'clone> Clone for Box<dyn Array + Send + Sync + 'clone>"],["impl<M: Clone + MutableArray> Clone for MutableFixedSizeListArray<M>"],["impl Clone for Schema"],["impl<O: Clone + Offset> Clone for Offsets<O>"],["impl Clone for i256x8"]], +"arrow_format":[["impl<'a> Clone for UnionRef<'a>"],["impl<'a> Clone for FieldNodeRef<'a>"],["impl Clone for Utf8"],["impl Clone for Endianness"],["impl<'a> Clone for IntRef<'a>"],["impl Clone for TimeUnit"],["impl Clone for Block"],["impl<'a> Clone for KeyValueRef<'a>"],["impl Clone for SparseTensorIndexCoo"],["impl Clone for LargeList"],["impl Clone for Bool"],["impl<'a> Clone for FixedSizeListRef<'a>"],["impl Clone for FieldNode"],["impl<'a> Clone for LargeBinaryRef<'a>"],["impl Clone for MetadataVersion"],["impl<'a> Clone for BoolRef<'a>"],["impl<'a> Clone for BufferRef<'a>"],["impl Clone for FixedSizeList"],["impl Clone for DictionaryKind"],["impl Clone for SparseMatrixCompressedAxis"],["impl<'a> Clone for SchemaRef<'a>"],["impl<'a> Clone for LargeListRef<'a>"],["impl<'a> Clone for SparseMatrixIndexCsxRef<'a>"],["impl Clone for Binary"],["impl Clone for SparseTensorIndex"],["impl<'a> Clone for SparseTensorRef<'a>"],["impl Clone for Int"],["impl Clone for DictionaryBatch"],["impl<'a> Clone for ListRef<'a>"],["impl Clone for KeyValue"],["impl<'a> Clone for DecimalRef<'a>"],["impl<'a> Clone for SparseTensorIndexCooRef<'a>"],["impl<'a> Clone for Utf8Ref<'a>"],["impl Clone for FloatingPoint"],["impl Clone for IntervalUnit"],["impl Clone for Date"],["impl Clone for Footer"],["impl Clone for DateUnit"],["impl<'a> Clone for TypeRef<'a>"],["impl Clone for Decimal"],["impl<'a> Clone for TimestampRef<'a>"],["impl Clone for Union"],["impl Clone for DictionaryEncoding"],["impl Clone for Struct"],["impl<'a> Clone for TensorDimRef<'a>"],["impl Clone for Null"],["impl Clone for Interval"],["impl<'a> Clone for NullRef<'a>"],["impl Clone for LargeBinary"],["impl<'a> Clone for TensorRef<'a>"],["impl<'a> Clone for FooterRef<'a>"],["impl Clone for List"],["impl<'a> Clone for FixedSizeBinaryRef<'a>"],["impl<'a> Clone for LargeUtf8Ref<'a>"],["impl Clone for Type"],["impl Clone for RecordBatch"],["impl Clone for UnionMode"],["impl<'a> Clone for BodyCompressionRef<'a>"],["impl Clone for Tensor"],["impl<'a> Clone for BinaryRef<'a>"],["impl<'a> Clone for IntervalRef<'a>"],["impl Clone for Duration"],["impl Clone for FixedSizeBinary"],["impl Clone for Message"],["impl<'a> Clone for DateRef<'a>"],["impl<'a> Clone for SparseTensorIndexRef<'a>"],["impl<'a> Clone for TimeRef<'a>"],["impl Clone for Precision"],["impl Clone for SparseTensor"],["impl<'a> Clone for RecordBatchRef<'a>"],["impl Clone for SparseTensorIndexCsf"],["impl Clone for Feature"],["impl Clone for CompressionType"],["impl Clone for TensorDim"],["impl<'a> Clone for StructRef<'a>"],["impl Clone for Timestamp"],["impl Clone for Time"],["impl Clone for Field"],["impl Clone for Schema"],["impl Clone for BodyCompression"],["impl<'a> Clone for MessageHeaderRef<'a>"],["impl<'a> Clone for DurationRef<'a>"],["impl Clone for Buffer"],["impl<'a> Clone for MessageRef<'a>"],["impl<'a> Clone for DictionaryBatchRef<'a>"],["impl<'a> Clone for FieldRef<'a>"],["impl Clone for LargeUtf8"],["impl<'a> Clone for FloatingPointRef<'a>"],["impl<'a> Clone for SparseTensorIndexCsfRef<'a>"],["impl Clone for SparseMatrixIndexCsx"],["impl<'a> Clone for MapRef<'a>"],["impl Clone for MessageHeader"],["impl Clone for Map"],["impl<'a> Clone for BlockRef<'a>"],["impl<'a> Clone for DictionaryEncodingRef<'a>"],["impl Clone for BodyCompressionMethod"]], "atoi":[["impl Clone for Sign"]], -"avro_schema":[["impl Clone for IntLogical"],["impl Clone for FileMetadata"],["impl Clone for FixedLogical"],["impl Clone for Block"],["impl Clone for BytesLogical"],["impl Clone for Field"],["impl Clone for Error"],["impl Clone for CompressedBlock"],["impl Clone for StringLogical"],["impl Clone for Fixed"],["impl Clone for Order"],["impl Clone for Enum"],["impl Clone for Compression"],["impl Clone for Schema"],["impl Clone for LongLogical"],["impl Clone for Record"]], +"avro_schema":[["impl Clone for Enum"],["impl Clone for BytesLogical"],["impl Clone for Fixed"],["impl Clone for Compression"],["impl Clone for LongLogical"],["impl Clone for CompressedBlock"],["impl Clone for Error"],["impl Clone for IntLogical"],["impl Clone for Field"],["impl Clone for Block"],["impl Clone for Order"],["impl Clone for FixedLogical"],["impl Clone for StringLogical"],["impl Clone for FileMetadata"],["impl Clone for Record"],["impl Clone for Schema"]], "base64":[["impl Clone for DecodeError"],["impl Clone for EncodeSliceError"],["impl Clone for Alphabet"],["impl Clone for DecodePaddingMode"],["impl Clone for GeneralPurposeConfig"],["impl Clone for DecodeSliceError"]], "brotli":[["impl Clone for HistogramPair"],["impl Clone for H9Opts"],["impl Clone for BucketPopIndex"],["impl Clone for BlockTypeCodeCalculator"],["impl Clone for BrotliEncoderMode"],["impl Clone for BroccoliState"],["impl<SliceType: SliceWrapper<u8> + Clone> Clone for Command<SliceType>"],["impl Clone for SpeedAndMax"],["impl Clone for HistogramDistance"],["impl Clone for CopyCommand"],["impl Clone for BrotliEncoderOperation"],["impl Clone for LiteralPredictionModeNibble"],["impl Clone for BrotliEncoderParams"],["impl<'a> Clone for InputReference<'a>"],["impl Clone for H5Sub"],["impl Clone for CodeBlockState"],["impl Clone for Command"],["impl Clone for LiteralBlockSwitch"],["impl Clone for IsFirst"],["impl<SliceType: SliceWrapper<u8> + Clone> Clone for FeatureFlagSliceType<SliceType>"],["impl Clone for HistogramLiteral"],["impl Clone for HuffmanTree"],["impl Clone for ZopfliNode"],["impl<'a> Clone for InputPair<'a>"],["impl Clone for BrotliEncoderParameter"],["impl Clone for PDF"],["impl Clone for SliceOffset"],["impl<SliceType: SliceWrapper<u8> + Clone> Clone for PredictionModeContextMap<SliceType>"],["impl Clone for BrotliDistanceParams"],["impl Clone for ContextType"],["impl Clone for PosData"],["impl Clone for StartPosQueue"],["impl Clone for BlockSwitch"],["impl Clone for H6Sub"],["impl Clone for Struct1"],["impl Clone for HQ7Sub"],["impl Clone for RecoderState"],["impl<AllocU8: Allocator<u8> + Clone, AllocU16: Allocator<u16> + Clone, AllocI32: Allocator<i32> + Clone, AllocU32: Allocator<u32> + Clone, AllocU64: Allocator<u64> + Clone, AllocCommand: Allocator<Command> + Clone, AllocFloatX: Allocator<floatX> + Clone, AllocV8: Allocator<v8> + Clone, AllocS16: Allocator<s16> + Clone, AllocPDF: Allocator<PDF> + Clone, AllocStaticCommand: Allocator<StaticCommand> + Clone, AllocHistogramLiteral: Allocator<HistogramLiteral> + Clone, AllocHistogramCommand: Allocator<HistogramCommand> + Clone, AllocHistogramDistance: Allocator<HistogramDistance> + Clone, AllocHistogramPair: Allocator<HistogramPair> + Clone, AllocContextType: Allocator<ContextType> + Clone, AllocHuffmanTree: Allocator<HuffmanTree> + Clone, AllocZopfliNode: Allocator<ZopfliNode> + Clone> Clone for CombiningAllocator<AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode>"],["impl Clone for DictCommand"],["impl Clone for HQ5Sub"],["impl Clone for HistogramCommand"],["impl Clone for BrotliEncoderStreamState"],["impl Clone for BrotliHasherParams"],["impl<SliceType: SliceWrapper<u8> + Clone> Clone for LiteralCommand<SliceType>"],["impl Clone for DictWord"],["impl Clone for Union1"],["impl Clone for BroCatliResult"]], "brotli_decompressor":[["impl Clone for CAllocator"],["impl Clone for BrotliDecoderErrorCode"],["impl Clone for HuffmanCode"]], @@ -16,7 +16,7 @@ "bytes":[["impl Clone for BytesMut"],["impl Clone for Bytes"]], "chrono":[["impl Clone for SecondsFormat"],["impl Clone for ParseErrorKind"],["impl Clone for FixedOffset"],["impl Clone for NaiveDateTime"],["impl Clone for NaiveTime"],["impl Clone for Fixed"],["impl<'a> Clone for StrftimeItems<'a>"],["impl Clone for OutOfRange"],["impl<Tz: Clone + TimeZone> Clone for DateTime<Tz>where\n Tz::Offset: Clone,"],["impl Clone for IsoWeek"],["impl Clone for ParseWeekdayError"],["impl Clone for Numeric"],["impl Clone for RoundingError"],["impl Clone for Pad"],["impl Clone for Days"],["impl Clone for InternalFixed"],["impl Clone for NaiveDate"],["impl Clone for Month"],["impl<T: Clone> Clone for LocalResult<T>"],["impl Clone for OutOfRangeError"],["impl Clone for ParseError"],["impl<'a> Clone for Item<'a>"],["impl Clone for Parsed"],["impl Clone for Weekday"],["impl<Tz: Clone + TimeZone> Clone for Date<Tz>where\n Tz::Offset: Clone,"],["impl Clone for InternalNumeric"],["impl Clone for Months"],["impl Clone for ParseMonthError"],["impl Clone for Utc"],["impl Clone for Duration"]], "chrono_tz":[["impl Clone for Tz"]], -"ciborium":[["impl Clone for Value"],["impl Clone for CanonicalValue"],["impl<V: Clone, const TAG: u64> Clone for Required<V, TAG>"],["impl Clone for Integer"],["impl<V: Clone> Clone for Captured<V>"],["impl<V: Clone, const TAG: u64> Clone for Accepted<V, TAG>"]], +"ciborium":[["impl<V: Clone, const TAG: u64> Clone for Accepted<V, TAG>"],["impl<V: Clone> Clone for Captured<V>"],["impl Clone for Value"],["impl Clone for CanonicalValue"],["impl<V: Clone, const TAG: u64> Clone for Required<V, TAG>"],["impl Clone for Integer"]], "ciborium_ll":[["impl Clone for Header"]], "comfy_table":[["impl Clone for TableComponent"],["impl Clone for CellAlignment"],["impl Clone for Row"],["impl Clone for Color"],["impl Clone for Cell"],["impl Clone for ContentArrangement"],["impl Clone for Attribute"],["impl Clone for ColumnConstraint"],["impl Clone for Width"]], "crc32fast":[["impl Clone for Hasher"]], @@ -39,7 +39,7 @@ "glob":[["impl Clone for Pattern"],["impl Clone for MatchOptions"]], "h2":[["impl Clone for Reason"],["impl Clone for Builder"],["impl<B> Clone for SendRequest<B>where\n B: Buf,"],["impl Clone for FlowControl"],["impl Clone for Protocol"],["impl Clone for StreamId"],["impl Clone for Builder"]], "half":[["impl Clone for bf16"],["impl Clone for f16"]], -"halfbrown":[["impl<K: Clone, V: Clone, S: Clone, const VEC_LIMIT_UPPER: usize> Clone for SizedHashMap<K, V, S, VEC_LIMIT_UPPER>"],["impl<'a, K, V> Clone for Iter<'a, K, V>"]], +"halfbrown":[["impl<'a, K, V> Clone for Iter<'a, K, V>"],["impl<K: Clone, V: Clone, S: Clone, const VEC_LIMIT_UPPER: usize> Clone for SizedHashMap<K, V, S, VEC_LIMIT_UPPER>"]], "hash_hasher":[["impl Clone for HashHasher"]], "hashbrown":[["impl<T: Clone, S: Clone, A: Allocator + Clone> Clone for HashSet<T, S, A>"],["impl<T, S, A: Allocator + Clone> Clone for Intersection<'_, T, S, A>"],["impl<T> Clone for RawParIter<T>"],["impl<K, V> Clone for ParValues<'_, K, V>"],["impl<K, V> Clone for ParIter<'_, K, V>"],["impl<T> Clone for Bucket<T>"],["impl<T, S, A: Allocator + Clone> Clone for SymmetricDifference<'_, T, S, A>"],["impl<K> Clone for Iter<'_, K>"],["impl<K, V> Clone for Keys<'_, K, V>"],["impl<K, V> Clone for Iter<'_, K, V>"],["impl<K, V> Clone for Values<'_, K, V>"],["impl<T, S, A: Allocator + Clone> Clone for Difference<'_, T, S, A>"],["impl<T> Clone for RawIter<T>"],["impl<T: Clone, A: Allocator + Clone> Clone for RawTable<T, A>"],["impl<K, V> Clone for ParKeys<'_, K, V>"],["impl<T, S, A: Allocator + Clone> Clone for Union<'_, T, S, A>"],["impl<K: Clone, V: Clone, S: Clone, A: Allocator + Clone> Clone for HashMap<K, V, S, A>"],["impl Clone for TryReserveError"]], "hex":[["impl Clone for FromHexError"]], @@ -55,7 +55,7 @@ "ipnet":[["impl Clone for IpNet"],["impl Clone for Ipv4AddrRange"],["impl Clone for AddrParseError"],["impl Clone for IpAddrRange"],["impl Clone for Ipv4Net"],["impl Clone for IpSubnets"],["impl Clone for Ipv6Net"],["impl Clone for PrefixLenError"],["impl Clone for Ipv4Subnets"],["impl Clone for Ipv6Subnets"],["impl Clone for Ipv6AddrRange"]], "itertools":[["impl<I, F> Clone for KMergeBy<I, F>where\n I: Iterator + Clone,\n I::Item: Clone,\n F: Clone,"],["impl<A: Clone> Clone for RepeatN<A>"],["impl<St: Clone, F: Clone> Clone for Iterate<St, F>"],["impl<I, T> Clone for Tuples<I, T>where\n I: Iterator<Item = T::Item> + Clone,\n T: HomogeneousTuple + Clone,\n T::Buffer: Clone,"],["impl<T: Clone> Clone for Zip<T>"],["impl<'a, I: Clone, F: Clone> Clone for FormatWith<'a, I, F>"],["impl<T: Clone> Clone for Position<T>"],["impl<I, J> Clone for InterleaveShortest<I, J>where\n I: Iterator + Clone,\n J: Iterator<Item = I::Item> + Clone,"],["impl<I> Clone for PeekNth<I>where\n I: Iterator + Clone,\n I::Item: Clone,"],["impl<I, J, F> Clone for MergeJoinBy<I, J, F>where\n I: Iterator,\n J: Iterator,\n PutBack<Fuse<I>>: Clone,\n PutBack<Fuse<J>>: Clone,\n F: Clone,"],["impl<F: Clone> Clone for RepeatCall<F>"],["impl<I: Clone> Clone for WhileSome<I>"],["impl<I: Clone> Clone for Step<I>"],["impl<St: Clone, F: Clone> Clone for Unfold<St, F>"],["impl<I> Clone for CombinationsWithReplacement<I>where\n I: Iterator + Clone,\n I::Item: Clone,"],["impl<I> Clone for WithPosition<I>where\n I: Clone + Iterator,\n I::Item: Clone,"],["impl<I, J> Clone for ConsTuples<I, J>where\n I: Clone + Iterator<Item = J>,"],["impl<I: Clone> Clone for GroupingMap<I>"],["impl<I: Clone + Iterator> Clone for PutBackN<I>where\n I::Item: Clone,"],["impl<I, J: Clone> Clone for Product<I, J>where\n I: Iterator + Clone,\n I::Item: Clone,"],["impl<I: Clone, F: Clone> Clone for PadUsing<I, F>"],["impl<I: Clone, F: Clone> Clone for Update<I, F>"],["impl<T> Clone for TupleBuffer<T>where\n T: HomogeneousTuple + Clone,\n T::Buffer: Clone,"],["impl<I> Clone for Permutations<I>where\n I: Clone + Iterator,\n I::Item: Clone,"],["impl<I, T, E> Clone for FlattenOk<I, T, E>where\n I: Iterator<Item = Result<T, E>> + Clone,\n T: IntoIterator,\n T::IntoIter: Clone,"],["impl<A: Clone, B: Clone> Clone for EitherOrBoth<A, B>"],["impl<I> Clone for MultiPeek<I>where\n I: Iterator + Clone,\n I::Item: Clone,"],["impl<T: Clone, U: Clone> Clone for ZipLongest<T, U>"],["impl<I: Clone, F: Clone> Clone for Positions<I, F>"],["impl<T: Clone> Clone for FoldWhile<T>"],["impl<I> Clone for Combinations<I>where\n I: Clone + Iterator,\n I::Item: Clone,"],["impl<I: Clone, J: Clone> Clone for Interleave<I, J>"],["impl<I> Clone for MultiProduct<I>where\n I: Iterator + Clone + Clone,\n I::Item: Clone,"],["impl<I> Clone for PutBack<I>where\n I: Iterator + Clone,\n I::Item: Clone,"],["impl<I> Clone for ExactlyOneError<I>where\n I: Iterator + Clone,\n I::Item: Clone,"],["impl<I, T> Clone for TupleCombinations<I, T>where\n I: Iterator + Clone,\n T: HasCombination<I> + Clone,\n T::Combination: Clone,"],["impl<I: Clone, J: Clone> Clone for ZipEq<I, J>"],["impl<I: Clone + Iterator> Clone for Unique<I>where\n I::Item: Clone,"],["impl<I> Clone for Powerset<I>where\n I: Clone + Iterator,\n I::Item: Clone,"],["impl<I> Clone for RcIter<I>"],["impl<I, T> Clone for TupleWindows<I, T>where\n I: Iterator<Item = T::Item> + Clone,\n T: HomogeneousTuple + Clone,"],["impl<'a, I: Clone> Clone for Format<'a, I>"],["impl<I, J, F> Clone for MergeBy<I, J, F>where\n I: Iterator,\n J: Iterator<Item = I::Item>,\n Peekable<I>: Clone,\n Peekable<J>: Clone,\n F: Clone,"],["impl<I, ElemF: Clone> Clone for IntersperseWith<I, ElemF>where\n I: Iterator + Clone,\n I::Item: Clone,"],["impl<T: Clone> Clone for MinMaxResult<T>"],["impl<I: Clone, F: Clone> Clone for FilterOk<I, F>"],["impl<I: Clone, F: Clone> Clone for Batching<I, F>"],["impl<I: Clone + Iterator, V: Clone, F: Clone> Clone for UniqueBy<I, V, F>"]], "itoa":[["impl Clone for Buffer"]], -"jsonpath_lib":[["impl<'a> Clone for PathParser<'a>"],["impl Clone for Compiled"],["impl<'a> Clone for PathCompiled<'a>"]], +"jsonpath_lib":[["impl Clone for Compiled"],["impl<'a> Clone for PathParser<'a>"],["impl<'a> Clone for PathCompiled<'a>"]], "lexical_parse_float":[["impl Clone for OptionsBuilder"],["impl Clone for Options"]], "lexical_parse_integer":[["impl Clone for OptionsBuilder"],["impl Clone for Options"]], "lexical_util":[["impl<M: Clone + UnsignedInteger> Clone for ExtendedFloat<M>"],["impl<'a, const FORMAT: u128> Clone for Bytes<'a, FORMAT>"],["impl Clone for Error"]], @@ -77,7 +77,7 @@ "ndarray":[["impl<'a, A, D: Clone> Clone for ExactChunksIter<'a, A, D>"],["impl Clone for Order"],["impl<'a, A, D: Clone> Clone for Windows<'a, A, D>"],["impl<'a, D> Clone for Axes<'a, D>"],["impl<'a, A, D: Clone> Clone for AxisIter<'a, A, D>"],["impl Clone for AxisDescription"],["impl<S: RawDataClone, D: Clone> Clone for ArrayBase<S, D>"],["impl<'a, A, D: Clone> Clone for Iter<'a, A, D>"],["impl<'a, A: Clone, D: Clone> Clone for IndexedIter<'a, A, D>"],["impl<A> Clone for OwnedRepr<A>where\n A: Clone,"],["impl<D: Clone> Clone for StrideShape<D>"],["impl<'a, A, D: Clone> Clone for AxisChunksIter<'a, A, D>"],["impl<D: Clone> Clone for Shape<D>"],["impl Clone for ShapeError"],["impl<A> Clone for OwnedArcRepr<A>"],["impl Clone for Axis"],["impl<T: Clone> Clone for FoldWhile<T>"],["impl Clone for IxDynImpl"],["impl<D: Clone> Clone for IndicesIter<D>"],["impl Clone for SliceInfoElem"],["impl Clone for Slice"],["impl<'a, A, D: Clone> Clone for ExactChunks<'a, A, D>"],["impl<'a, A, D: Clone> Clone for LanesIter<'a, A, D>"],["impl<'a, A, D: Clone> Clone for Lanes<'a, A, D>"],["impl<Parts: Clone, D: Clone> Clone for Zip<Parts, D>"],["impl Clone for NewAxis"],["impl<A: Clone> Clone for RawViewRepr<A>"],["impl<D> Clone for Indices<D>where\n D: Dimension + Clone,"],["impl<I: Clone + ?Sized> Clone for Dim<I>"],["impl<T> Clone for MathCell<T>where\n T: Copy,"],["impl Clone for ErrorKind"],["impl<T, Din, Dout> Clone for SliceInfo<T, Din, Dout>where\n T: Clone,\n Din: Dimension,\n Dout: Dimension,"],["impl<A: Clone> Clone for ViewRepr<A>"]], "num_complex":[["impl<T: Clone> Clone for Complex<T>"]], "num_integer":[["impl<A: Clone> Clone for ExtendedGcd<A>"]], -"object_store":[["impl<'a> Clone for PathPart<'a>"],["impl<T: Clone + ObjectStore> Clone for PrefixStore<T>"],["impl Clone for ThrottleConfig"],["impl Clone for Path"],["impl Clone for ObjectMeta"]], +"object_store":[["impl<T: Clone + ObjectStore> Clone for PrefixStore<T>"],["impl Clone for Path"],["impl<'a> Clone for PathPart<'a>"],["impl Clone for ObjectMeta"],["impl Clone for ThrottleConfig"]], "once_cell":[["impl<T: Clone> Clone for OnceCell<T>"],["impl<T: Clone> Clone for OnceCell<T>"]], "parking_lot":[["impl Clone for WaitTimeoutResult"],["impl Clone for OnceState"]], "parking_lot_core":[["impl Clone for FilterOp"],["impl Clone for ParkResult"],["impl Clone for ParkToken"],["impl Clone for UnparkResult"],["impl Clone for RequeueOp"],["impl Clone for UnparkToken"]], @@ -86,23 +86,23 @@ "percent_encoding":[["impl<'a> Clone for PercentEncode<'a>"],["impl<'a> Clone for PercentDecode<'a>"]], "phf":[["impl<'a, K, V> Clone for Values<'a, K, V>"],["impl<'a, T> Clone for Iter<'a, T>"],["impl<'a, K, V> Clone for Entries<'a, K, V>"],["impl<'a, K, V> Clone for Entries<'a, K, V>"],["impl<'a, K, V> Clone for Keys<'a, K, V>"],["impl<'a, K, V> Clone for Keys<'a, K, V>"],["impl<'a, T> Clone for Iter<'a, T>"],["impl<'a, K, V> Clone for Values<'a, K, V>"]], "planus":[["impl Clone for ErrorKind"],["impl Clone for UnknownEnumTagKind"],["impl Clone for ErrorLocation"],["impl<'buf, T: ?Sized> Clone for Vector<'buf, T>"],["impl Clone for UnknownEnumTag"],["impl<'buf, T: Clone + ?Sized> Clone for VectorIter<'buf, T>"],["impl Clone for Error"],["impl<T: ?Sized> Clone for UnionOffset<T>"],["impl<T: ?Sized> Clone for Offset<T>"]], -"polars_arrow":[["impl<T: Clone> Clone for OrdFloat<T>"],["impl Clone for Tz"],["impl Clone for RollingQuantileParams"],["impl Clone for RollingVarParams"],["impl Clone for QuantileInterpolOptions"],["impl Clone for EWMOptions"],["impl<I: Clone + Iterator<Item = J>, J: Clone> Clone for TrustMyLength<I, J>"]], -"polars_core":[["impl Clone for Series"],["impl Clone for GroupByMethod"],["impl Clone for DataFrame"],["impl Clone for Float32Type"],["impl Clone for DatetimeType"],["impl<'df> Clone for GroupBy<'df>"],["impl<'a> Clone for UnstableSeries<'a>"],["impl Clone for DateType"],["impl Clone for StructChunked"],["impl Clone for Int64Type"],["impl Clone for BooleanChunkedBuilder"],["impl Clone for Int16Type"],["impl Clone for FloatFmt"],["impl Clone for FillNullStrategy"],["impl Clone for JoinArgs"],["impl Clone for DataType"],["impl Clone for SortOptions"],["impl Clone for Field"],["impl<'a> Clone for AnyValueBufferTrusted<'a>"],["impl Clone for UInt16Type"],["impl Clone for TimeUnit"],["impl Clone for Int8Type"],["impl Clone for Int32Type"],["impl Clone for UInt32Type"],["impl Clone for CloudOptions"],["impl<'a> Clone for Row<'a>"],["impl Clone for Float64Type"],["impl Clone for JoinType"],["impl Clone for TimeType"],["impl Clone for MeltArgs"],["impl Clone for JoinValidation"],["impl<'a> Clone for AnyValueBuffer<'a>"],["impl<T> Clone for PrimitiveChunkedBuilder<T>where\n T: PolarsNumericType + Clone,\n T::Native: Clone,"],["impl Clone for NullBehavior"],["impl Clone for SortMultipleOptions"],["impl Clone for Schema"],["impl Clone for UniqueKeepStrategy"],["impl Clone for UInt64Type"],["impl Clone for Utf8ChunkedBuilder"],["impl Clone for IsSorted"],["impl Clone for NullStrategy"],["impl Clone for GroupsIdx"],["impl<'a> Clone for AnyValue<'a>"],["impl<T: PolarsDataType> Clone for ChunkedArray<T>"],["impl Clone for CategoricalType"],["impl Clone for DurationType"],["impl Clone for GroupsProxy"],["impl Clone for UInt8Type"],["impl<K: PolarsDataType, T: PolarsDataType> Clone for Logical<K, T>"]], -"polars_io":[["impl Clone for BrotliLevel"],["impl Clone for CsvEncoding"],["impl Clone for ParallelStrategy"],["impl Clone for GzipLevel"],["impl Clone for ZstdLevel"],["impl Clone for ParquetCompression"],["impl Clone for RowCount"],["impl Clone for NullValues"],["impl Clone for IpcCompression"]], -"polars_lazy":[["impl Clone for ScanArgsIpc"],["impl Clone for LazyFrame"],["impl Clone for LazyGroupBy"],["impl Clone for UnionArgs"],["impl Clone for ScanArgsAnonymous"],["impl<'a> Clone for LazyCsvReader<'a>"],["impl Clone for LazyJsonLineReader"],["impl Clone for ScanArgsParquet"]], +"polars_arrow":[["impl<I: Clone + Iterator<Item = J>, J: Clone> Clone for TrustMyLength<I, J>"],["impl Clone for RollingQuantileParams"],["impl Clone for QuantileInterpolOptions"],["impl Clone for Tz"],["impl Clone for RollingVarParams"],["impl<T: Clone> Clone for OrdFloat<T>"],["impl Clone for EWMOptions"]], +"polars_core":[["impl Clone for SortMultipleOptions"],["impl Clone for TimeUnit"],["impl Clone for JoinType"],["impl Clone for SortOptions"],["impl Clone for JoinArgs"],["impl Clone for UInt16Type"],["impl Clone for CloudOptions"],["impl Clone for DataFrame"],["impl Clone for DataType"],["impl Clone for UInt64Type"],["impl<'a> Clone for UnstableSeries<'a>"],["impl Clone for Int16Type"],["impl<T> Clone for PrimitiveChunkedBuilder<T>where\n T: PolarsNumericType + Clone,\n T::Native: Clone,"],["impl Clone for DatetimeType"],["impl<T: PolarsDataType> Clone for ChunkedArray<T>"],["impl Clone for IsSorted"],["impl Clone for JoinValidation"],["impl Clone for Int64Type"],["impl<K: PolarsDataType, T: PolarsDataType> Clone for Logical<K, T>"],["impl Clone for StructChunked"],["impl Clone for Series"],["impl Clone for Utf8ChunkedBuilder"],["impl Clone for DurationType"],["impl Clone for UInt8Type"],["impl Clone for Int8Type"],["impl<'a> Clone for AnyValue<'a>"],["impl Clone for UInt32Type"],["impl Clone for FillNullStrategy"],["impl<'a> Clone for AnyValueBuffer<'a>"],["impl Clone for UniqueKeepStrategy"],["impl Clone for Int32Type"],["impl<'df> Clone for GroupBy<'df>"],["impl Clone for Float32Type"],["impl Clone for GroupsIdx"],["impl<'a> Clone for Row<'a>"],["impl Clone for TimeType"],["impl Clone for GroupByMethod"],["impl Clone for DateType"],["impl Clone for Schema"],["impl Clone for BooleanChunkedBuilder"],["impl Clone for Float64Type"],["impl Clone for MeltArgs"],["impl Clone for NullBehavior"],["impl<'a> Clone for AnyValueBufferTrusted<'a>"],["impl Clone for FloatFmt"],["impl Clone for NullStrategy"],["impl Clone for Field"],["impl Clone for CategoricalType"],["impl Clone for GroupsProxy"]], +"polars_io":[["impl Clone for NullValues"],["impl Clone for CsvEncoding"],["impl Clone for RowCount"],["impl Clone for BrotliLevel"],["impl Clone for ParallelStrategy"],["impl Clone for ParquetCompression"],["impl Clone for GzipLevel"],["impl Clone for ZstdLevel"],["impl Clone for IpcCompression"]], +"polars_lazy":[["impl Clone for LazyGroupBy"],["impl Clone for UnionArgs"],["impl Clone for ScanArgsParquet"],["impl Clone for LazyJsonLineReader"],["impl<'a> Clone for LazyCsvReader<'a>"],["impl Clone for ScanArgsAnonymous"],["impl Clone for ScanArgsIpc"],["impl Clone for LazyFrame"]], "polars_ops":[["impl Clone for SearchSortedSide"]], "polars_pipe":[["impl Clone for DataChunk"]], -"polars_plan":[["impl Clone for FileType"],["impl Clone for IpcWriterOptions"],["impl Clone for UnionOptions"],["impl Clone for CsvParserOptions"],["impl Clone for DistinctOptions"],["impl Clone for AnonymousScanOptions"],["impl Clone for ALogicalPlan"],["impl Clone for Then"],["impl Clone for AggExpr"],["impl Clone for FileSinkOptions"],["impl Clone for ErrorStateSync"],["impl Clone for UnsafeBool"],["impl Clone for RollingCovOptions"],["impl Clone for LiteralValue"],["impl Clone for FunctionOptions"],["impl Clone for FunctionNode"],["impl Clone for ChainedWhen"],["impl<T: Clone> Clone for SpecialEq<T>"],["impl Clone for OptState"],["impl Clone for IpcScanOptions"],["impl Clone for AExpr"],["impl<'a> Clone for DotNode<'a>"],["impl Clone for When"],["impl Clone for FileInfo"],["impl Clone for AAggExpr"],["impl Clone for WindowMapping"],["impl Clone for Excluded"],["impl Clone for SortArguments"],["impl Clone for ChainedThen"],["impl Clone for FileFingerPrint"],["impl Clone for FileScanOptions"],["impl Clone for DurationArgs"],["impl Clone for ParquetWriteOptions"],["impl Clone for ParquetOptions"],["impl Clone for FunctionExpr"],["impl Clone for WindowOptions"],["impl Clone for StrptimeOptions"],["impl Clone for Expr"],["impl Clone for DatetimeArgs"],["impl Clone for ApplyOptions"],["impl Clone for JoinOptions"],["impl Clone for FileScan"],["impl Clone for LogicalPlan"],["impl Clone for Context"],["impl Clone for GroupbyOptions"],["impl Clone for LogicalPlanUdfOptions"],["impl Clone for BooleanFunction"],["impl Clone for Operator"]], +"polars_plan":[["impl Clone for IpcScanOptions"],["impl Clone for WindowMapping"],["impl Clone for FunctionNode"],["impl Clone for FileFingerPrint"],["impl Clone for CsvParserOptions"],["impl Clone for DistinctOptions"],["impl Clone for StrptimeOptions"],["impl Clone for ParquetWriteOptions"],["impl Clone for FileInfo"],["impl Clone for AnonymousScanOptions"],["impl Clone for Context"],["impl Clone for FileSinkOptions"],["impl Clone for FileScan"],["impl<'a> Clone for DotNode<'a>"],["impl Clone for When"],["impl Clone for AggExpr"],["impl Clone for JoinOptions"],["impl Clone for WindowOptions"],["impl Clone for UnionOptions"],["impl Clone for FileType"],["impl Clone for AExpr"],["impl Clone for ChainedThen"],["impl Clone for RollingCovOptions"],["impl Clone for UnsafeBool"],["impl Clone for GroupbyOptions"],["impl<T: Clone> Clone for SpecialEq<T>"],["impl Clone for SortArguments"],["impl Clone for DurationArgs"],["impl Clone for OptState"],["impl Clone for ParquetOptions"],["impl Clone for ErrorStateSync"],["impl Clone for Expr"],["impl Clone for Operator"],["impl Clone for ChainedWhen"],["impl Clone for LiteralValue"],["impl Clone for FunctionOptions"],["impl Clone for FileScanOptions"],["impl Clone for BooleanFunction"],["impl Clone for Then"],["impl Clone for LogicalPlanUdfOptions"],["impl Clone for DatetimeArgs"],["impl Clone for IpcWriterOptions"],["impl Clone for ALogicalPlan"],["impl Clone for LogicalPlan"],["impl Clone for AAggExpr"],["impl Clone for FunctionExpr"],["impl Clone for ApplyOptions"],["impl Clone for Excluded"]], "polars_row":[["impl Clone for SortField"],["impl Clone for RowsEncoded"]], "polars_sql":[["impl Clone for SQLContext"]], -"polars_time":[["impl Clone for Duration"],["impl Clone for Bounds"],["impl Clone for Pattern"],["impl Clone for RollingOptions"],["impl<'a> Clone for RollingOptionsImpl<'a>"],["impl Clone for RollingGroupOptions"],["impl<T: Clone> Clone for DatetimeInfer<T>"],["impl Clone for Window"],["impl Clone for DynamicGroupOptions"],["impl Clone for TruncateOptions"],["impl Clone for ClosedWindow"],["impl Clone for StartBy"]], -"polars_utils":[["impl<T: Clone> Clone for Arena<T>"],["impl Clone for SyncCounter"],["impl<T: Clone> Clone for SyncPtr<T>"],["impl Clone for Node"]], +"polars_time":[["impl Clone for RollingOptions"],["impl Clone for DynamicGroupOptions"],["impl Clone for Pattern"],["impl Clone for RollingGroupOptions"],["impl Clone for Bounds"],["impl Clone for Window"],["impl Clone for Duration"],["impl Clone for ClosedWindow"],["impl Clone for StartBy"],["impl<T: Clone> Clone for DatetimeInfer<T>"],["impl<'a> Clone for RollingOptionsImpl<'a>"],["impl Clone for TruncateOptions"]], +"polars_utils":[["impl<T: Clone> Clone for SyncPtr<T>"],["impl<T: Clone> Clone for Arena<T>"],["impl Clone for Node"],["impl Clone for SyncCounter"]], "ppv_lite86":[["impl Clone for YesNI"],["impl Clone for YesA1"],["impl Clone for YesA2"],["impl Clone for NoS4"],["impl Clone for NoA1"],["impl Clone for NoS3"],["impl Clone for vec512_storage"],["impl<NI: Clone> Clone for Avx2Machine<NI>"],["impl Clone for vec128_storage"],["impl Clone for NoNI"],["impl Clone for vec256_storage"],["impl Clone for YesS4"],["impl Clone for YesS3"],["impl Clone for NoA2"],["impl<S3: Clone, S4: Clone, NI: Clone> Clone for SseMachine<S3, S4, NI>"]], "proc_macro2":[["impl Clone for Group"],["impl Clone for Ident"],["impl Clone for Delimiter"],["impl Clone for Spacing"],["impl Clone for Literal"],["impl Clone for DelimSpan"],["impl Clone for TokenStream"],["impl Clone for IntoIter"],["impl Clone for Punct"],["impl Clone for Span"],["impl Clone for TokenTree"]], "pyo3":[["impl Clone for ElementType"],["impl<'py> Clone for Python<'py>"],["impl<T> Clone for Py<T>"],["impl Clone for CompareOp"],["impl<'a> Clone for PyStringData<'a>"],["impl<'p> Clone for PyVisit<'p>"]], "pyo3_ffi":[["impl Clone for PyGILState_STATE"],["impl Clone for PyObjectArenaAllocator"],["impl Clone for PyDateTime_Time"],["impl Clone for PyType_Spec"],["impl Clone for PyDateTime_Date"],["impl Clone for PyModuleDef_Base"],["impl Clone for _frozen"],["impl Clone for PyListObject"],["impl Clone for PyByteArrayObject"],["impl Clone for PyGetSetDef"],["impl Clone for PyModuleDef"],["impl Clone for _PyDateTime_BaseTime"],["impl Clone for PyStructSequence_Field"],["impl Clone for PyHeapTypeObject"],["impl Clone for PyCodeObject"],["impl Clone for PyHash_FuncDef"],["impl Clone for PyCompilerFlags"],["impl Clone for PyType_Slot"],["impl Clone for Py_buffer"],["impl Clone for PyComplexObject"],["impl Clone for PyBytesObject"],["impl Clone for PyMemberDef"],["impl Clone for PyMethodDef"],["impl Clone for _inittab"],["impl Clone for PyDateTime_CAPI"],["impl Clone for PyModuleDef_Slot"],["impl Clone for Py_complex"],["impl Clone for PyWideStringList"],["impl Clone for PyFutureFeatures"],["impl Clone for PyPreConfig"],["impl Clone for PyMappingMethods"],["impl Clone for PySendResult"],["impl Clone for PyAsyncMethods"],["impl Clone for PyTryBlock"],["impl Clone for PyFrameObject"],["impl Clone for PyVarObject"],["impl Clone for PyBufferProcs"],["impl Clone for PyConfig"],["impl Clone for PyNumberMethods"],["impl Clone for PyMethodDefPointer"],["impl Clone for _PyDateTime_BaseDateTime"],["impl Clone for PyMemAllocatorDomain"],["impl Clone for PyObject"],["impl Clone for _PyErr_StackItem"],["impl Clone for PyStatus"],["impl Clone for PyStructSequence_Desc"],["impl Clone for PyTypeObject"],["impl Clone for PyDateTime_DateTime"],["impl Clone for _PyStatus_TYPE"],["impl Clone for PyMemAllocatorEx"],["impl Clone for PySequenceMethods"],["impl Clone for PyDateTime_Delta"],["impl Clone for PyGenObject"]], "pyo3_macros_backend":[["impl Clone for PyClassMethodsType"]], -"quick_xml":[["impl<W: Clone> Clone for Writer<W>"],["impl<'a> Clone for Prefix<'a>"],["impl<T: Clone> Clone for Attr<T>"],["impl<'a> Clone for Attributes<'a>"],["impl<'a> Clone for PrefixDeclaration<'a>"],["impl<'a> Clone for BytesStart<'a>"],["impl<'a> Clone for Attribute<'a>"],["impl Clone for NoEntityResolver"],["impl<'a> Clone for LocalName<'a>"],["impl Clone for Decoder"],["impl<'a> Clone for BytesDecl<'a>"],["impl Clone for EscapeError"],["impl Clone for AttrError"],["impl Clone for QuoteLevel"],["impl<'a> Clone for Namespace<'a>"],["impl<'a> Clone for BytesEnd<'a>"],["impl Clone for DeError"],["impl<'ns> Clone for ResolveResult<'ns>"],["impl<'a> Clone for Event<'a>"],["impl<'a> Clone for BytesCData<'a>"],["impl<'a> Clone for BytesText<'a>"],["impl<'a> Clone for QName<'a>"],["impl Clone for Error"],["impl<R: Clone> Clone for Reader<R>"]], +"quick_xml":[["impl Clone for Decoder"],["impl Clone for EscapeError"],["impl<T: Clone> Clone for Attr<T>"],["impl<W: Clone> Clone for Writer<W>"],["impl Clone for Error"],["impl<'a> Clone for BytesStart<'a>"],["impl<'a> Clone for LocalName<'a>"],["impl<'a> Clone for Attribute<'a>"],["impl Clone for DeError"],["impl<'a> Clone for BytesCData<'a>"],["impl<'a> Clone for Attributes<'a>"],["impl<'a> Clone for BytesEnd<'a>"],["impl<'a> Clone for Namespace<'a>"],["impl<'a> Clone for Event<'a>"],["impl<'ns> Clone for ResolveResult<'ns>"],["impl<'a> Clone for PrefixDeclaration<'a>"],["impl<'a> Clone for BytesDecl<'a>"],["impl<'a> Clone for Prefix<'a>"],["impl Clone for AttrError"],["impl Clone for QuoteLevel"],["impl<R: Clone> Clone for Reader<R>"],["impl Clone for NoEntityResolver"],["impl<'a> Clone for QName<'a>"],["impl<'a> Clone for BytesText<'a>"]], "rand":[["impl Clone for Open01"],["impl Clone for WeightedError"],["impl<X: Clone> Clone for UniformInt<X>"],["impl Clone for SmallRng"],["impl Clone for Standard"],["impl<X: Clone + SampleUniform> Clone for Uniform<X>where\n X::Sampler: Clone,"],["impl Clone for Alphanumeric"],["impl Clone for UniformChar"],["impl Clone for StepRng"],["impl<X: Clone + SampleUniform + PartialOrd> Clone for WeightedIndex<X>where\n X::Sampler: Clone,"],["impl Clone for BernoulliError"],["impl Clone for IndexVec"],["impl Clone for Bernoulli"],["impl Clone for UniformDuration"],["impl<'a, T: Clone> Clone for Slice<'a, T>"],["impl Clone for StdRng"],["impl Clone for ThreadRng"],["impl<R, Rsdr> Clone for ReseedingRng<R, Rsdr>where\n R: BlockRngCore + SeedableRng + Clone,\n Rsdr: RngCore + Clone,"],["impl Clone for OpenClosed01"],["impl<X: Clone> Clone for UniformFloat<X>"],["impl Clone for IndexVecIntoIter"]], "rand_chacha":[["impl Clone for ChaCha20Core"],["impl Clone for ChaCha8Rng"],["impl Clone for ChaCha12Rng"],["impl Clone for ChaCha20Rng"],["impl Clone for ChaCha12Core"],["impl Clone for ChaCha8Core"]], "rand_core":[["impl Clone for OsRng"],["impl<R: Clone + BlockRngCore + ?Sized> Clone for BlockRng64<R>where\n R::Results: Clone,"],["impl<R: Clone + BlockRngCore + ?Sized> Clone for BlockRng<R>where\n R::Results: Clone,"]], @@ -112,17 +112,17 @@ "regex":[["impl Clone for Error"],["impl<'c, 'h> Clone for SubCaptureMatches<'c, 'h>"],["impl Clone for RegexSet"],["impl Clone for CaptureLocations"],["impl<'c, 'h> Clone for SubCaptureMatches<'c, 'h>"],["impl<'a> Clone for SetMatchesIter<'a>"],["impl Clone for RegexBuilder"],["impl Clone for SetMatches"],["impl<'r> Clone for CaptureNames<'r>"],["impl Clone for RegexSet"],["impl<'s> Clone for NoExpand<'s>"],["impl Clone for RegexSetBuilder"],["impl<'s> Clone for NoExpand<'s>"],["impl Clone for SetMatches"],["impl<'h> Clone for Match<'h>"],["impl Clone for CaptureLocations"],["impl Clone for Regex"],["impl Clone for RegexSetBuilder"],["impl<'r> Clone for CaptureNames<'r>"],["impl Clone for RegexBuilder"],["impl<'a> Clone for SetMatchesIter<'a>"],["impl<'h> Clone for Match<'h>"],["impl Clone for Regex"]], "regex_automata":[["impl Clone for NFA"],["impl Clone for Regex"],["impl Clone for Builder"],["impl Clone for Config"],["impl Clone for Builder"],["impl Clone for BuildError"],["impl Clone for Unit"],["impl Clone for Transition"],["impl Clone for Builder"],["impl Clone for BuildError"],["impl Clone for Cache"],["impl Clone for BuildError"],["impl Clone for Span"],["impl Clone for Captures"],["impl Clone for DenseTransitions"],["impl Clone for PatternID"],["impl Clone for GroupInfoError"],["impl Clone for Cache"],["impl Clone for ByteClasses"],["impl Clone for OverlappingState"],["impl Clone for Config"],["impl Clone for PatternSetInsertError"],["impl Clone for MatchErrorKind"],["impl Clone for Config"],["impl Clone for NonMaxUsize"],["impl Clone for MatchError"],["impl Clone for Builder"],["impl Clone for BuildError"],["impl Clone for GroupInfo"],["impl Clone for SmallIndexError"],["impl Clone for Prefilter"],["impl Clone for MatchKind"],["impl Clone for UnicodeWordBoundaryError"],["impl Clone for PatternIDError"],["impl Clone for Cache"],["impl Clone for Anchored"],["impl Clone for LazyStateID"],["impl Clone for LookSet"],["impl Clone for CacheError"],["impl Clone for Cache"],["impl Clone for Cache"],["impl Clone for DebugByte"],["impl Clone for Config"],["impl Clone for Builder"],["impl Clone for Builder"],["impl Clone for PatternSet"],["impl Clone for Builder"],["impl Clone for DFA"],["impl Clone for BoundedBacktracker"],["impl Clone for DFA"],["impl Clone for StateID"],["impl Clone for Look"],["impl Clone for Match"],["impl Clone for Compiler"],["impl Clone for Cache"],["impl<'a> Clone for PatternSetIter<'a>"],["impl Clone for SmallIndex"],["impl Clone for PikeVM"],["impl Clone for SparseTransitions"],["impl Clone for LookMatcher"],["impl Clone for Config"],["impl Clone for Config"],["impl Clone for HalfMatch"],["impl Clone for Config"],["impl<'h> Clone for Searcher<'h>"],["impl<'a> Clone for GroupInfoPatternNames<'a>"],["impl Clone for StateIDError"],["impl<'a> Clone for CapturesPatternIter<'a>"],["impl<'h> Clone for Input<'h>"],["impl Clone for State"],["impl Clone for LookSetIter"]], "regex_syntax":[["impl Clone for ClassPerlKind"],["impl Clone for CaptureName"],["impl Clone for ClassAsciiKind"],["impl Clone for Repetition"],["impl Clone for LookSetIter"],["impl Clone for ClassBytesRange"],["impl Clone for SpecialLiteralKind"],["impl Clone for ParserBuilder"],["impl Clone for ClassUnicodeRange"],["impl Clone for Hir"],["impl Clone for Assertion"],["impl Clone for ClassUnicodeKind"],["impl Clone for Utf8Sequence"],["impl Clone for Ast"],["impl Clone for ClassUnicode"],["impl Clone for RepetitionKind"],["impl Clone for Parser"],["impl Clone for ClassSetBinaryOp"],["impl Clone for TranslatorBuilder"],["impl Clone for Error"],["impl Clone for Error"],["impl Clone for HexLiteralKind"],["impl Clone for ErrorKind"],["impl Clone for GroupKind"],["impl Clone for Dot"],["impl Clone for ClassSetItem"],["impl Clone for Concat"],["impl Clone for RepetitionRange"],["impl Clone for HirKind"],["impl Clone for AssertionKind"],["impl Clone for Literal"],["impl Clone for SetFlags"],["impl Clone for Alternation"],["impl Clone for Class"],["impl Clone for Extractor"],["impl Clone for Error"],["impl Clone for ClassAscii"],["impl Clone for Class"],["impl Clone for Literal"],["impl Clone for WithComments"],["impl Clone for Translator"],["impl Clone for ClassUnicodeOpKind"],["impl Clone for ClassSetBinaryOpKind"],["impl Clone for LiteralKind"],["impl Clone for ClassSet"],["impl Clone for Properties"],["impl Clone for FlagsItem"],["impl Clone for ExtractKind"],["impl Clone for ClassBytes"],["impl Clone for ParserBuilder"],["impl Clone for FlagsItemKind"],["impl Clone for ErrorKind"],["impl Clone for LookSet"],["impl Clone for Repetition"],["impl Clone for ClassBracketed"],["impl Clone for Span"],["impl Clone for ClassUnicode"],["impl Clone for Position"],["impl Clone for ClassSetRange"],["impl Clone for Seq"],["impl Clone for Look"],["impl Clone for ClassPerl"],["impl Clone for Capture"],["impl Clone for Comment"],["impl Clone for Group"],["impl Clone for Utf8Range"],["impl Clone for Flags"],["impl Clone for Flag"],["impl Clone for ClassSetUnion"],["impl Clone for Literal"],["impl Clone for Parser"],["impl Clone for RepetitionOp"]], -"reqwest":[["impl Clone for Client"],["impl Clone for NoProxy"],["impl Clone for Identity"],["impl Clone for Proxy"],["impl Clone for Certificate"],["impl Clone for Version"]], +"reqwest":[["impl Clone for Version"],["impl Clone for Client"],["impl Clone for NoProxy"],["impl Clone for Certificate"],["impl Clone for Proxy"],["impl Clone for Identity"]], "ring":[["impl Clone for Context"],["impl Clone for SystemRandom"],["impl Clone for Algorithm"],["impl<B> Clone for UnparsedPublicKey<B>where\n B: AsRef<[u8]> + Clone,"],["impl<B> Clone for RsaPublicKeyComponents<B>where\n B: AsRef<[u8]> + Debug + Clone,"],["impl Clone for Prk"],["impl Clone for Tag"],["impl Clone for PublicKey"],["impl Clone for Algorithm"],["impl Clone for RsaSubjectPublicKey"],["impl Clone for Algorithm"],["impl Clone for Context"],["impl Clone for Digest"],["impl Clone for Signature"],["impl Clone for KeyRejected"],["impl Clone for Unspecified"],["impl<B> Clone for UnparsedPublicKey<B>where\n B: AsRef<[u8]> + Clone,"],["impl Clone for Key"],["impl<'a> Clone for Positive<'a>"]], "rustls":[["impl Clone for ECPointFormat"],["impl Clone for HashAlgorithm"],["impl Clone for ClientCertificateType"],["impl Clone for SignatureScheme"],["impl Clone for SessionId"],["impl Clone for ServerNamePayload"],["impl Clone for ServerName"],["impl Clone for WantsTransparencyPolicyOrClientCert"],["impl Clone for Tls12Resumption"],["impl Clone for KeyUpdateRequest"],["impl Clone for WantsClientCert"],["impl Clone for DigitallySignedStruct"],["impl Clone for ServerConfig"],["impl Clone for PeerIncompatible"],["impl Clone for PlainMessage"],["impl Clone for OCSPCertificateStatusRequest"],["impl Clone for WantsVerifier"],["impl Clone for UnknownExtension"],["impl Clone for AlertDescription"],["impl Clone for CertificateStatusType"],["impl Clone for PresharedKeyBinder"],["impl Clone for ResponderId"],["impl Clone for ServerName"],["impl Clone for ServerNameType"],["impl Clone for WantsVersions"],["impl Clone for CertRevocationListError"],["impl Clone for WantsKxGroups"],["impl Clone for PrivateKey"],["impl Clone for ClientConfig"],["impl Clone for Tls12ClientSessionValue"],["impl Clone for InvalidMessage"],["impl Clone for HandshakeType"],["impl Clone for PayloadU8"],["impl Clone for CertificateStatusRequest"],["impl Clone for DistinguishedName"],["impl Clone for ClientSessionCommon"],["impl Clone for Resumption"],["impl<Side: Clone + ConfigSide, State: Clone> Clone for ConfigBuilder<Side, State>"],["impl Clone for CertifiedKey"],["impl Clone for PresharedKeyOffer"],["impl Clone for HeartbeatMode"],["impl Clone for NamedCurve"],["impl Clone for Sct"],["impl Clone for PayloadU16"],["impl Clone for Payload"],["impl Clone for ProtocolName"],["impl Clone for ClientExtension"],["impl Clone for WantsCipherSuites"],["impl Clone for SupportedCipherSuite"],["impl Clone for HeartbeatMessageType"],["impl Clone for AlertLevel"],["impl Clone for SignatureAlgorithm"],["impl Clone for ServerExtension"],["impl Clone for KeyExchangeAlgorithm"],["impl Clone for WantsServerCert"],["impl Clone for ClientSessionTicket"],["impl Clone for Error"],["impl Clone for DnsName"],["impl Clone for Side"],["impl Clone for PayloadU24"],["impl Clone for OwnedTrustAnchor"],["impl Clone for PSKKeyExchangeMode"],["impl Clone for KeyShareEntry"],["impl Clone for OpaqueMessage"],["impl Clone for PresharedKeyIdentity"],["impl Clone for RootCertStore"],["impl Clone for ExtensionType"],["impl Clone for CertificateError"],["impl Clone for Compression"],["impl Clone for ContentType"],["impl Clone for ProtocolVersion"],["impl Clone for Certificate"],["impl Clone for PeerMisbehaved"],["impl Clone for ECCurveType"],["impl Clone for CipherSuite"],["impl Clone for Random"],["impl Clone for u24"],["impl Clone for NamedGroup"]], "ryu":[["impl Clone for Buffer"]], "sct":[["impl Clone for Error"]], -"serde":[["impl<E> Clone for BoolDeserializer<E>"],["impl<E> Clone for U128Deserializer<E>"],["impl<E> Clone for U8Deserializer<E>"],["impl<'de, I, E> Clone for MapDeserializer<'de, I, E>where\n I: Iterator + Clone,\n I::Item: Pair,\n <I::Item as Pair>::Second: Clone,"],["impl<E> Clone for I64Deserializer<E>"],["impl<E> Clone for U32Deserializer<E>"],["impl<A: Clone> Clone for MapAccessDeserializer<A>"],["impl<'a, E> Clone for CowStrDeserializer<'a, E>"],["impl<E> Clone for IsizeDeserializer<E>"],["impl<A: Clone> Clone for EnumAccessDeserializer<A>"],["impl<A: Clone> Clone for SeqAccessDeserializer<A>"],["impl<E> Clone for F32Deserializer<E>"],["impl<'a, E> Clone for BytesDeserializer<'a, E>"],["impl<E> Clone for StringDeserializer<E>"],["impl Clone for IgnoredAny"],["impl<E> Clone for U16Deserializer<E>"],["impl<'a> Clone for Unexpected<'a>"],["impl<E> Clone for F64Deserializer<E>"],["impl<E> Clone for CharDeserializer<E>"],["impl Clone for Error"],["impl<E> Clone for U64Deserializer<E>"],["impl<'de, E> Clone for BorrowedStrDeserializer<'de, E>"],["impl<E> Clone for I32Deserializer<E>"],["impl<E> Clone for UsizeDeserializer<E>"],["impl<E> Clone for UnitDeserializer<E>"],["impl<E> Clone for I16Deserializer<E>"],["impl<'de, E> Clone for StrDeserializer<'de, E>"],["impl<E> Clone for I8Deserializer<E>"],["impl<'de, E> Clone for BorrowedBytesDeserializer<'de, E>"],["impl<I: Clone, E: Clone> Clone for SeqDeserializer<I, E>"],["impl<E> Clone for I128Deserializer<E>"]], -"serde_json":[["impl Clone for Box<RawValue>"],["impl Clone for CompactFormatter"],["impl Clone for Category"],["impl Clone for Map<String, Value>"],["impl Clone for Value"],["impl Clone for Number"],["impl<'a> Clone for PrettyFormatter<'a>"]], +"serde":[["impl<'a> Clone for Unexpected<'a>"],["impl<E> Clone for I32Deserializer<E>"],["impl<A: Clone> Clone for MapAccessDeserializer<A>"],["impl<'de, E> Clone for StrDeserializer<'de, E>"],["impl<E> Clone for IsizeDeserializer<E>"],["impl<E> Clone for UnitDeserializer<E>"],["impl<E> Clone for I16Deserializer<E>"],["impl<E> Clone for F64Deserializer<E>"],["impl<E> Clone for U8Deserializer<E>"],["impl<'de, I, E> Clone for MapDeserializer<'de, I, E>where\n I: Iterator + Clone,\n I::Item: Pair,\n <I::Item as Pair>::Second: Clone,"],["impl<'a, E> Clone for CowStrDeserializer<'a, E>"],["impl<E> Clone for UsizeDeserializer<E>"],["impl Clone for IgnoredAny"],["impl Clone for Error"],["impl<E> Clone for U32Deserializer<E>"],["impl<'a, E> Clone for BytesDeserializer<'a, E>"],["impl<E> Clone for U64Deserializer<E>"],["impl<E> Clone for StringDeserializer<E>"],["impl<E> Clone for I8Deserializer<E>"],["impl<'de, E> Clone for BorrowedBytesDeserializer<'de, E>"],["impl<E> Clone for F32Deserializer<E>"],["impl<A: Clone> Clone for EnumAccessDeserializer<A>"],["impl<E> Clone for I64Deserializer<E>"],["impl<E> Clone for I128Deserializer<E>"],["impl<E> Clone for U128Deserializer<E>"],["impl<A: Clone> Clone for SeqAccessDeserializer<A>"],["impl<E> Clone for CharDeserializer<E>"],["impl<E> Clone for BoolDeserializer<E>"],["impl<'de, E> Clone for BorrowedStrDeserializer<'de, E>"],["impl<I: Clone, E: Clone> Clone for SeqDeserializer<I, E>"],["impl<E> Clone for U16Deserializer<E>"]], +"serde_json":[["impl Clone for Map<String, Value>"],["impl Clone for Category"],["impl Clone for Value"],["impl Clone for CompactFormatter"],["impl<'a> Clone for PrettyFormatter<'a>"],["impl Clone for Box<RawValue>"],["impl Clone for Number"]], "serde_urlencoded":[["impl Clone for Error"]], "signal_hook":[["impl Clone for Handle"],["impl Clone for WithRawSiginfo"],["impl Clone for SignalOnly"]], "signal_hook_registry":[["impl Clone for SigId"]], -"simd_json":[["impl Clone for Value"],["impl<'key> Clone for KnownKey<'key>"],["impl<'input> Clone for Node<'input>"],["impl Clone for Error"],["impl<'value> Clone for Value<'value>"]], +"simd_json":[["impl<'value> Clone for Value<'value>"],["impl Clone for Value"],["impl<'key> Clone for KnownKey<'key>"],["impl Clone for Error"],["impl<'input> Clone for Node<'input>"]], "simdutf8":[["impl Clone for Utf8Error"],["impl Clone for Utf8Error"]], "siphasher":[["impl Clone for SipHasher"],["impl Clone for SipHasher13"],["impl Clone for SipHasher13"],["impl Clone for SipHasher"],["impl Clone for Hash128"],["impl Clone for SipHasher24"],["impl Clone for SipHasher24"]], "slab":[["impl<T: Clone> Clone for Slab<T>"],["impl<'a, T> Clone for Iter<'a, T>"]], @@ -135,7 +135,7 @@ "streaming_iterator":[["impl<I> Clone for Convert<I>where\n I: Iterator + Clone,\n I::Item: Clone,"],["impl<T: Clone> Clone for Once<T>"],["impl<I: Clone> Clone for Fuse<I>"],["impl<'a, I, T: Clone + ?Sized> Clone for ConvertRef<'a, I, T>where\n I: Iterator<Item = &'a T> + Clone,"],["impl<I: Clone> Clone for Take<I>"],["impl<I: Clone, F: Clone> Clone for SkipWhile<I, F>"],["impl<I: Clone> Clone for Copied<I>"],["impl<T: Clone> Clone for Empty<T>"],["impl<I: Clone> Clone for Skip<I>"],["impl<I: Clone> Clone for Cloned<I>"],["impl<T: Clone, F: Clone> Clone for OnceWith<T, F>"],["impl<T: Clone, F: Clone> Clone for RepeatWith<T, F>"],["impl<T: Clone> Clone for Repeat<T>"],["impl<T: Clone, F: Clone> Clone for Successors<T, F>"],["impl<T: Clone, F: Clone> Clone for FromFn<T, F>"]], "strength_reduce":[["impl Clone for StrengthReducedU8"],["impl Clone for StrengthReducedU16"],["impl Clone for StrengthReducedU128"],["impl Clone for StrengthReducedU32"],["impl Clone for StrengthReducedU64"],["impl Clone for StrengthReducedUsize"]], "strum":[["impl Clone for ParseError"]], -"sysinfo":[["impl Clone for LoadAvg"],["impl Clone for DiskKind"],["impl Clone for ProcessRefreshKind"],["impl Clone for MacAddr"],["impl Clone for Signal"],["impl Clone for ProcessStatus"],["impl Clone for Uid"],["impl Clone for CpuRefreshKind"],["impl Clone for RefreshKind"],["impl Clone for DiskUsage"],["impl Clone for Pid"],["impl Clone for Gid"]], +"sysinfo":[["impl Clone for MacAddr"],["impl Clone for Gid"],["impl Clone for DiskKind"],["impl Clone for LoadAvg"],["impl Clone for Uid"],["impl Clone for ProcessRefreshKind"],["impl Clone for Pid"],["impl Clone for Signal"],["impl Clone for CpuRefreshKind"],["impl Clone for ProcessStatus"],["impl Clone for DiskUsage"],["impl Clone for RefreshKind"]], "target_features":[["impl Clone for Architecture"],["impl Clone for Feature"],["impl Clone for UnknownCpu"],["impl Clone for Target"],["impl Clone for UnknownFeature"]], "time":[["impl Clone for Duration"],["impl Clone for PreciseTime"],["impl Clone for Timespec"],["impl Clone for Tm"],["impl Clone for ParseError"],["impl Clone for SteadyTime"],["impl Clone for OutOfRangeError"]], "tinyvec":[["impl<A> Clone for TinyVec<A>where\n A: Array + Clone,\n A::Item: Clone,"],["impl Clone for TryFromSliceError"],["impl<A> Clone for ArrayVec<A>where\n A: Array + Clone,\n A::Item: Clone,"]], @@ -148,7 +148,7 @@ "unicode_normalization":[["impl<I: Clone> Clone for Replacements<I>"],["impl<I: Clone> Clone for Recompositions<I>"],["impl<I: Clone> Clone for Decompositions<I>"]], "untrusted":[["impl<'a> Clone for Input<'a>"],["impl Clone for EndOfInput"]], "url":[["impl<'a> Clone for ParseOptions<'a>"],["impl Clone for Origin"],["impl Clone for OpaqueOrigin"],["impl Clone for SyntaxViolation"],["impl<S: Clone> Clone for Host<S>"],["impl Clone for Position"],["impl Clone for Url"],["impl Clone for ParseError"]], -"value_trait":[["impl Clone for ExtendedValueType"],["impl Clone for ValueType"],["impl Clone for StaticNode"],["impl Clone for AccessError"],["impl Clone for TryTypeError"]], +"value_trait":[["impl Clone for ValueType"],["impl Clone for AccessError"],["impl Clone for ExtendedValueType"],["impl Clone for TryTypeError"],["impl Clone for StaticNode"]], "walkdir":[["impl Clone for DirEntry"]], "want":[["impl Clone for SharedGiver"]], "webpki":[["impl<'a> Clone for DnsNameRef<'a>"],["impl Clone for Time"],["impl Clone for InvalidDnsNameError"],["impl Clone for Error"]], diff --git a/implementors/core/cmp/trait.Eq.js b/implementors/core/cmp/trait.Eq.js index 0822c0fa74fb..42620390cd6a 100644 --- a/implementors/core/cmp/trait.Eq.js +++ b/implementors/core/cmp/trait.Eq.js @@ -2,17 +2,17 @@ "ahash":[["impl<T, S> Eq for AHashSet<T, S>where\n T: Eq + Hash,\n S: BuildHasher,"],["impl<K, V, S> Eq for AHashMap<K, V, S>where\n K: Eq + Hash,\n V: Eq,\n S: BuildHasher,"]], "aho_corasick":[["impl Eq for MatchErrorKind"],["impl Eq for PatternIDError"],["impl Eq for StartKind"],["impl Eq for StateIDError"],["impl Eq for Match"],["impl Eq for MatchKind"],["impl Eq for Anchored"],["impl Eq for MatchError"],["impl Eq for StateID"],["impl Eq for MatchKind"],["impl Eq for PatternID"],["impl Eq for Span"],["impl Eq for AhoCorasickKind"]], "allocator_api2":[["impl<T: Eq, A: Allocator> Eq for Vec<T, A>"],["impl Eq for AllocError"],["impl<T: ?Sized + Eq, A: Allocator> Eq for Box<T, A>"]], -"arrow2":[["impl Eq for Compression"],["impl Eq for months_days_ns"],["impl Eq for i256"],["impl<T: Eq + NativeType> Eq for PrimitiveScalar<T>"],["impl<A: Eq + AsRef<dyn Array>> Eq for Chunk<A>"],["impl Eq for BooleanScalar"],["impl<O: Eq + Offset> Eq for Utf8Scalar<O>"],["impl Eq for days_ms"],["impl Eq for IntegerType"],["impl Eq for PrimitiveType"],["impl Eq for PhysicalType"],["impl Eq for WriteOptions"],["impl Eq for IntervalUnit"],["impl Eq for UnionMode"],["impl Eq for Field"],["impl<O: Eq + Offset> Eq for BinaryScalar<O>"],["impl Eq for FixedSizeBinaryScalar"],["impl Eq for InitNested"],["impl<O: Eq + Offset> Eq for Offsets<O>"],["impl Eq for TimeUnit"],["impl Eq for NullScalar"],["impl Eq for Schema"],["impl Eq for DataType"],["impl Eq for WriteOptions"]], -"arrow_format":[["impl Eq for UnionMode"],["impl Eq for CompressionType"],["impl Eq for Endianness"],["impl Eq for SparseMatrixCompressedAxis"],["impl Eq for DateUnit"],["impl Eq for IntervalUnit"],["impl Eq for DictionaryKind"],["impl Eq for Precision"],["impl Eq for Feature"],["impl Eq for MetadataVersion"],["impl Eq for BodyCompressionMethod"],["impl Eq for TimeUnit"]], +"arrow2":[["impl Eq for BooleanScalar"],["impl Eq for Field"],["impl Eq for FixedSizeBinaryScalar"],["impl Eq for i256"],["impl<O: Eq + Offset> Eq for Offsets<O>"],["impl Eq for WriteOptions"],["impl Eq for days_ms"],["impl Eq for TimeUnit"],["impl<T: Eq + NativeType> Eq for PrimitiveScalar<T>"],["impl Eq for UnionMode"],["impl Eq for PhysicalType"],["impl Eq for months_days_ns"],["impl Eq for Compression"],["impl Eq for NullScalar"],["impl Eq for DataType"],["impl Eq for WriteOptions"],["impl Eq for Schema"],["impl<O: Eq + Offset> Eq for Utf8Scalar<O>"],["impl<A: Eq + AsRef<dyn Array>> Eq for Chunk<A>"],["impl Eq for InitNested"],["impl Eq for IntegerType"],["impl<O: Eq + Offset> Eq for BinaryScalar<O>"],["impl Eq for PrimitiveType"],["impl Eq for IntervalUnit"]], +"arrow_format":[["impl Eq for DictionaryKind"],["impl Eq for TimeUnit"],["impl Eq for UnionMode"],["impl Eq for DateUnit"],["impl Eq for Endianness"],["impl Eq for Precision"],["impl Eq for BodyCompressionMethod"],["impl Eq for Feature"],["impl Eq for MetadataVersion"],["impl Eq for SparseMatrixCompressedAxis"],["impl Eq for IntervalUnit"],["impl Eq for CompressionType"]], "atoi":[["impl Eq for Sign"]], -"avro_schema":[["impl Eq for IntLogical"],["impl Eq for CompressedBlock"],["impl Eq for LongLogical"],["impl Eq for Block"],["impl Eq for StringLogical"],["impl Eq for BytesLogical"],["impl Eq for Compression"],["impl Eq for FixedLogical"]], +"avro_schema":[["impl Eq for StringLogical"],["impl Eq for Block"],["impl Eq for FixedLogical"],["impl Eq for LongLogical"],["impl Eq for BytesLogical"],["impl Eq for IntLogical"],["impl Eq for CompressedBlock"],["impl Eq for Compression"]], "base64":[["impl Eq for EncodeSliceError"],["impl Eq for DecodeMetadata"],["impl Eq for DecodeSliceError"],["impl Eq for DecodePaddingMode"],["impl Eq for ParseAlphabetError"],["impl Eq for Alphabet"],["impl Eq for DecodeError"]], "brotli":[["impl Eq for BrotliEncoderStreamState"],["impl Eq for BrotliEncoderMode"],["impl Eq for BrotliEncoderOperation"],["impl Eq for CodeBlockState"],["impl Eq for BrotliEncoderParameter"],["impl Eq for LiteralPredictionModeNibble"]], "bytemuck":[["impl Eq for CheckedCastError"],["impl Eq for PodCastError"]], "bytes":[["impl Eq for BytesMut"],["impl Eq for Bytes"]], "chrono":[["impl<T: Eq> Eq for LocalResult<T>"],["impl Eq for Days"],["impl Eq for Duration"],["impl Eq for InternalFixed"],["impl Eq for Utc"],["impl Eq for FixedOffset"],["impl Eq for Parsed"],["impl<'a> Eq for Item<'a>"],["impl Eq for NaiveTime"],["impl Eq for RoundingError"],["impl Eq for ParseWeekdayError"],["impl Eq for InternalNumeric"],["impl Eq for NaiveDateTime"],["impl Eq for ParseMonthError"],["impl Eq for OutOfRange"],["impl Eq for ParseError"],["impl Eq for IsoWeek"],["impl Eq for Month"],["impl Eq for Fixed"],["impl Eq for ParseErrorKind"],["impl<Tz: TimeZone> Eq for DateTime<Tz>"],["impl Eq for Pad"],["impl Eq for NaiveDate"],["impl<Tz: TimeZone> Eq for Date<Tz>"],["impl Eq for Weekday"],["impl Eq for SecondsFormat"],["impl Eq for Numeric"],["impl Eq for Months"],["impl Eq for OutOfRangeError"]], "chrono_tz":[["impl Eq for Tz"]], -"ciborium":[["impl<V: Eq, const TAG: u64> Eq for Required<V, TAG>"],["impl<V: Eq> Eq for Captured<V>"],["impl Eq for CanonicalValue"],["impl<V: Eq, const TAG: u64> Eq for Accepted<V, TAG>"],["impl Eq for Integer"]], +"ciborium":[["impl<V: Eq, const TAG: u64> Eq for Accepted<V, TAG>"],["impl Eq for Integer"],["impl Eq for CanonicalValue"],["impl<V: Eq, const TAG: u64> Eq for Required<V, TAG>"],["impl<V: Eq> Eq for Captured<V>"]], "comfy_table":[["impl Eq for Color"],["impl Eq for Attribute"],["impl Eq for Width"],["impl Eq for ColumnConstraint"],["impl Eq for TableComponent"]], "crossbeam_channel":[["impl Eq for ReadyTimeoutError"],["impl<T: Eq> Eq for SendTimeoutError<T>"],["impl Eq for RecvError"],["impl Eq for TryReadyError"],["impl<T: Eq> Eq for TrySendError<T>"],["impl Eq for RecvTimeoutError"],["impl<T: Eq> Eq for SendError<T>"],["impl Eq for SelectTimeoutError"],["impl Eq for TryRecvError"],["impl Eq for TrySelectError"]], "crossbeam_deque":[["impl<T: Eq> Eq for Steal<T>"]], @@ -54,24 +54,24 @@ "ndarray":[["impl Eq for Axis"],["impl Eq for IxDynImpl"],["impl<S, D> Eq for ArrayBase<S, D>where\n D: Dimension,\n S: Data,\n S::Elem: Eq,"],["impl Eq for Slice"],["impl<I: Eq + ?Sized> Eq for Dim<I>"],["impl Eq for SliceInfoElem"],["impl Eq for Order"],["impl<T> Eq for MathCell<T>where\n T: Copy + Eq,"]], "num_complex":[["impl<T: Eq> Eq for Complex<T>"]], "num_integer":[["impl<A: Eq> Eq for ExtendedGcd<A>"]], -"object_store":[["impl Eq for ObjectMeta"],["impl Eq for Path"],["impl<'a> Eq for PathPart<'a>"]], +"object_store":[["impl Eq for ObjectMeta"],["impl<'a> Eq for PathPart<'a>"],["impl Eq for Path"]], "once_cell":[["impl<T: Eq> Eq for OnceCell<T>"],["impl<T: Eq> Eq for OnceCell<T>"]], "parking_lot":[["impl Eq for OnceState"],["impl Eq for WaitTimeoutResult"]], "parking_lot_core":[["impl Eq for ParkResult"],["impl Eq for ParkToken"],["impl Eq for RequeueOp"],["impl Eq for FilterOp"],["impl Eq for UnparkResult"],["impl Eq for UnparkToken"]], "parquet2":[["impl Eq for PageMetaData"],["impl<T: Eq + NativeType> Eq for NativeIndex<T>"],["impl Eq for PrimitiveLogicalType"],["impl<'a> Eq for HybridEncoded<'a>"],["impl Eq for PhysicalType"],["impl<T: Eq + NativeType> Eq for PrimitiveStatistics<T>"],["impl Eq for BrotliLevel"],["impl Eq for dyn Index + '_"],["impl Eq for PrimitiveConvertedType"],["impl<T: Eq> Eq for PageIndex<T>"],["impl Eq for PageType"],["impl Eq for BinaryStatistics"],["impl Eq for FixedLenByteIndex"],["impl Eq for FixedLenStatistics"],["impl Eq for ByteIndex"],["impl Eq for Encoding"],["impl Eq for IntegerType"],["impl Eq for BooleanStatistics"],["impl<'a, I: Eq + Iterator<Item = Result<HybridEncoded<'a>, Error>>> Eq for FilteredHybridBitmapIter<'a, I>"],["impl Eq for Repetition"],["impl Eq for TimeUnit"],["impl Eq for PrimitiveType"],["impl Eq for SortOrder"],["impl Eq for GroupConvertedType"],["impl Eq for WriteOptions"],["impl Eq for ZstdLevel"],["impl Eq for GroupLogicalType"],["impl<'a> Eq for HybridEncoded<'a>"],["impl Eq for FilteredPage"],["impl Eq for Version"],["impl Eq for BoundaryOrder"],["impl Eq for CompressionOptions"],["impl Eq for FieldInfo"],["impl Eq for Feature"],["impl Eq for Compression"],["impl Eq for GzipLevel"],["impl Eq for ColumnOrder"],["impl Eq for BooleanIndex"],["impl Eq for Descriptor"],["impl<'a> Eq for FilteredHybridEncoded<'a>"],["impl Eq for Interval"]], "parquet_format_safe":[["impl Eq for RowGroup"],["impl Eq for SchemaElement"],["impl Eq for ProtocolError"],["impl Eq for DateType"],["impl Eq for UUIDType"],["impl Eq for BloomFilterHash"],["impl Eq for PageEncodingStats"],["impl Eq for DecimalType"],["impl Eq for PageType"],["impl Eq for StringType"],["impl Eq for DataPageHeaderV2"],["impl Eq for ColumnChunk"],["impl Eq for TransportError"],["impl Eq for ColumnOrder"],["impl Eq for TimestampType"],["impl Eq for BloomFilterHeader"],["impl Eq for Type"],["impl Eq for ColumnIndex"],["impl Eq for ConvertedType"],["impl Eq for AesGcmV1"],["impl Eq for BloomFilterAlgorithm"],["impl Eq for TListIdentifier"],["impl Eq for DictionaryPageHeader"],["impl Eq for AesGcmCtrV1"],["impl Eq for EncryptionAlgorithm"],["impl Eq for JsonType"],["impl Eq for BsonType"],["impl Eq for EncryptionWithFooterKey"],["impl Eq for Encoding"],["impl Eq for IndexPageHeader"],["impl Eq for TMessageIdentifier"],["impl Eq for DataPageHeader"],["impl Eq for LogicalType"],["impl Eq for OffsetIndex"],["impl Eq for MapType"],["impl Eq for NullType"],["impl Eq for TSetIdentifier"],["impl Eq for FieldRepetitionType"],["impl Eq for ColumnCryptoMetaData"],["impl Eq for TFieldIdentifier"],["impl Eq for ProtocolErrorKind"],["impl Eq for Uncompressed"],["impl Eq for ListType"],["impl Eq for XxHash"],["impl Eq for MicroSeconds"],["impl Eq for TMapIdentifier"],["impl Eq for TMessageType"],["impl Eq for ApplicationErrorKind"],["impl Eq for ApplicationError"],["impl Eq for FileMetaData"],["impl Eq for PageLocation"],["impl Eq for CompressionCodec"],["impl Eq for TimeType"],["impl Eq for IntType"],["impl Eq for TimeUnit"],["impl Eq for KeyValue"],["impl Eq for Statistics"],["impl Eq for MilliSeconds"],["impl Eq for TypeDefinedOrder"],["impl Eq for BoundaryOrder"],["impl Eq for PageHeader"],["impl Eq for EncryptionWithColumnKey"],["impl Eq for SortingColumn"],["impl Eq for BloomFilterCompression"],["impl Eq for TType"],["impl Eq for FileCryptoMetaData"],["impl Eq for NanoSeconds"],["impl Eq for TransportErrorKind"],["impl Eq for TStructIdentifier"],["impl Eq for EnumType"],["impl Eq for ColumnMetaData"],["impl Eq for SplitBlockAlgorithm"]], -"polars_arrow":[["impl<T: PartialEq + IsFloat> Eq for OrdFloat<T>"],["impl Eq for QuantileInterpolOptions"]], -"polars_core":[["impl Eq for Wrap<Series>"],["impl Eq for IsSorted"],["impl Eq for JoinType"],["impl Eq for JoinValidation"],["impl Eq for TimeUnit"],["impl Eq for Schema"],["impl Eq for NullBehavior"],["impl Eq for JoinArgs"],["impl Eq for DataType"],["impl Eq for SortOptions"],["impl Eq for Field"],["impl Eq for GroupsIdx"],["impl Eq for UniqueKeepStrategy"],["impl<'a> Eq for AnyValue<'a>"],["impl<'a> Eq for Row<'a>"],["impl Eq for GroupsProxy"]], -"polars_io":[["impl Eq for GzipLevel"],["impl Eq for ParallelStrategy"],["impl Eq for NullValues"],["impl Eq for ZstdLevel"],["impl Eq for BrotliLevel"],["impl Eq for ParquetCompression"],["impl Eq for RowCount"],["impl Eq for IpcCompression"],["impl Eq for CsvEncoding"]], +"polars_arrow":[["impl Eq for QuantileInterpolOptions"],["impl<T: PartialEq + IsFloat> Eq for OrdFloat<T>"]], +"polars_core":[["impl Eq for NullBehavior"],["impl Eq for SortOptions"],["impl Eq for Wrap<Series>"],["impl<'a> Eq for AnyValue<'a>"],["impl<'a> Eq for Row<'a>"],["impl Eq for TimeUnit"],["impl Eq for UniqueKeepStrategy"],["impl Eq for JoinArgs"],["impl Eq for GroupsProxy"],["impl Eq for GroupsIdx"],["impl Eq for DataType"],["impl Eq for IsSorted"],["impl Eq for JoinValidation"],["impl Eq for JoinType"],["impl Eq for Field"],["impl Eq for Schema"]], +"polars_io":[["impl Eq for CsvEncoding"],["impl Eq for RowCount"],["impl Eq for ParallelStrategy"],["impl Eq for BrotliLevel"],["impl Eq for IpcCompression"],["impl Eq for ZstdLevel"],["impl Eq for ParquetCompression"],["impl Eq for GzipLevel"],["impl Eq for NullValues"]], "polars_ops":[["impl Eq for SearchSortedSide"]], -"polars_plan":[["impl Eq for LogicalPlanUdfOptions"],["impl Eq for CsvParserOptions"],["impl Eq for FileFingerPrint"],["impl Eq for Excluded"],["impl Eq for BooleanFunction"],["impl Eq for GroupbyOptions"],["impl Eq for Expr"],["impl Eq for AnonymousScanOptions"],["impl Eq for FileScanOptions"],["impl Eq for UnsafeBool"],["impl Eq for ApplyOptions"],["impl Eq for SortArguments"],["impl Eq for ParquetWriteOptions"],["impl Eq for WindowMapping"],["impl Eq for FunctionOptions"],["impl Eq for WindowOptions"],["impl Eq for ParquetOptions"],["impl Eq for JoinOptions"],["impl Eq for StrptimeOptions"],["impl Eq for UnionOptions"],["impl Eq for RollingCovOptions"],["impl Eq for DistinctOptions"],["impl Eq for IpcWriterOptions"],["impl Eq for Operator"]], -"polars_time":[["impl Eq for RollingGroupOptions"],["impl Eq for TruncateOptions"],["impl Eq for Duration"],["impl Eq for DynamicGroupOptions"],["impl Eq for ClosedWindow"],["impl Eq for Pattern"],["impl Eq for StartBy"]], +"polars_plan":[["impl Eq for StrptimeOptions"],["impl Eq for LogicalPlanUdfOptions"],["impl Eq for ParquetOptions"],["impl Eq for GroupbyOptions"],["impl Eq for FileFingerPrint"],["impl Eq for FileScanOptions"],["impl Eq for SortArguments"],["impl Eq for FunctionOptions"],["impl Eq for JoinOptions"],["impl Eq for ApplyOptions"],["impl Eq for ParquetWriteOptions"],["impl Eq for AnonymousScanOptions"],["impl Eq for RollingCovOptions"],["impl Eq for WindowOptions"],["impl Eq for Expr"],["impl Eq for IpcWriterOptions"],["impl Eq for CsvParserOptions"],["impl Eq for Operator"],["impl Eq for UnionOptions"],["impl Eq for UnsafeBool"],["impl Eq for WindowMapping"],["impl Eq for Excluded"],["impl Eq for DistinctOptions"],["impl Eq for BooleanFunction"]], +"polars_time":[["impl Eq for RollingGroupOptions"],["impl Eq for StartBy"],["impl Eq for TruncateOptions"],["impl Eq for Duration"],["impl Eq for Pattern"],["impl Eq for ClosedWindow"],["impl Eq for DynamicGroupOptions"]], "polars_utils":[["impl Eq for Node"]], "ppv_lite86":[["impl Eq for vec512_storage"],["impl Eq for vec256_storage"],["impl Eq for vec128_storage"]], "proc_macro2":[["impl Eq for Spacing"],["impl Eq for Delimiter"],["impl Eq for Ident"]], "pyo3":[["impl<'a> Eq for PyStringData<'a>"],["impl Eq for ElementType"],["impl Eq for PySliceIndices"]], "pyo3_ffi":[["impl Eq for _PyStatus_TYPE"],["impl Eq for PySendResult"],["impl Eq for PyModuleDef_Slot"],["impl Eq for PyMethodDef"],["impl Eq for PyGetSetDef"],["impl Eq for PyMemberDef"],["impl Eq for PyMethodDefPointer"],["impl Eq for PyGILState_STATE"]], -"quick_xml":[["impl<'a> Eq for BytesDecl<'a>"],["impl<'a> Eq for BytesEnd<'a>"],["impl<T: Eq> Eq for Attr<T>"],["impl<'a> Eq for Namespace<'a>"],["impl<'a> Eq for Event<'a>"],["impl<'a> Eq for Prefix<'a>"],["impl<'a> Eq for Text<'a>"],["impl<'a> Eq for BytesText<'a>"],["impl<'a> Eq for Attribute<'a>"],["impl<'a> Eq for QName<'a>"],["impl<'a> Eq for BytesCData<'a>"],["impl Eq for AttrError"],["impl<'ns> Eq for ResolveResult<'ns>"],["impl<'a> Eq for LocalName<'a>"],["impl<'a> Eq for PayloadEvent<'a>"],["impl<'a> Eq for PrefixDeclaration<'a>"],["impl<'a> Eq for DeEvent<'a>"],["impl Eq for Decoder"],["impl<'a> Eq for BytesStart<'a>"],["impl Eq for QuoteLevel"]], +"quick_xml":[["impl<T: Eq> Eq for Attr<T>"],["impl Eq for Decoder"],["impl<'a> Eq for BytesDecl<'a>"],["impl<'a> Eq for DeEvent<'a>"],["impl<'a> Eq for PrefixDeclaration<'a>"],["impl<'a> Eq for Namespace<'a>"],["impl<'a> Eq for PayloadEvent<'a>"],["impl<'a> Eq for BytesEnd<'a>"],["impl Eq for QuoteLevel"],["impl<'a> Eq for Attribute<'a>"],["impl<'a> Eq for QName<'a>"],["impl<'a> Eq for BytesStart<'a>"],["impl<'a> Eq for Event<'a>"],["impl<'ns> Eq for ResolveResult<'ns>"],["impl<'a> Eq for BytesText<'a>"],["impl<'a> Eq for BytesCData<'a>"],["impl<'a> Eq for LocalName<'a>"],["impl<'a> Eq for Text<'a>"],["impl<'a> Eq for Prefix<'a>"],["impl Eq for AttrError"]], "rand":[["impl Eq for StepRng"],["impl Eq for StdRng"],["impl Eq for SmallRng"],["impl Eq for BernoulliError"],["impl Eq for WeightedError"]], "rand_chacha":[["impl Eq for ChaCha20Core"],["impl Eq for ChaCha20Rng"],["impl Eq for ChaCha12Rng"],["impl Eq for ChaCha8Rng"],["impl Eq for ChaCha8Core"],["impl Eq for ChaCha12Core"]], "rand_distr":[["impl Eq for ChiSquaredError"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for TriangularError"],["impl Eq for PertError"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for FisherFError"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for ZipfError"],["impl Eq for Error"],["impl Eq for ZetaError"],["impl Eq for BetaError"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for Error"],["impl Eq for Error"]], @@ -83,7 +83,7 @@ "ring":[["impl Eq for EcdsaSigningAlgorithm"],["impl Eq for Algorithm"],["impl Eq for Algorithm"],["impl Eq for Algorithm"],["impl Eq for Algorithm"],["impl Eq for Algorithm"],["impl Eq for Algorithm"],["impl Eq for Algorithm"]], "rustls":[["impl Eq for ExtensionType"],["impl Eq for ECPointFormat"],["impl Eq for HashAlgorithm"],["impl Eq for Compression"],["impl Eq for ServerNameType"],["impl Eq for PrivateKey"],["impl Eq for ECCurveType"],["impl Eq for PSKKeyExchangeMode"],["impl Eq for PayloadU16"],["impl Eq for SignatureAlgorithm"],["impl Eq for ClientCertificateType"],["impl Eq for Random"],["impl Eq for KeyUpdateRequest"],["impl Eq for PayloadU8"],["impl Eq for HandshakeType"],["impl Eq for ContentType"],["impl Eq for CipherSuite"],["impl Eq for CertificateStatusType"],["impl Eq for NamedCurve"],["impl Eq for Certificate"],["impl Eq for DnsName"],["impl Eq for AlertLevel"],["impl Eq for SignatureScheme"],["impl Eq for IoState"],["impl Eq for ServerName"],["impl Eq for PayloadU24"],["impl Eq for HeartbeatMode"],["impl Eq for SupportedProtocolVersion"],["impl Eq for BulkAlgorithm"],["impl Eq for Payload"],["impl Eq for NamedGroup"],["impl Eq for ProtocolVersion"],["impl Eq for AlertDescription"],["impl Eq for HeartbeatMessageType"]], "same_file":[["impl Eq for Handle"]], -"serde_json":[["impl Eq for Map<String, Value>"],["impl Eq for Number"],["impl Eq for Category"],["impl Eq for Value"]], +"serde_json":[["impl Eq for Category"],["impl Eq for Value"],["impl Eq for Map<String, Value>"],["impl Eq for Number"]], "serde_urlencoded":[["impl Eq for Error"]], "signal_hook_registry":[["impl Eq for SigId"]], "simdutf8":[["impl Eq for Utf8Error"],["impl Eq for Utf8Error"]], @@ -93,7 +93,7 @@ "socket2":[["impl Eq for Domain"],["impl Eq for Protocol"],["impl Eq for RecvFlags"],["impl Eq for Type"]], "sqlparser":[["impl Eq for Distinct"],["impl Eq for Cte"],["impl Eq for FileFormat"],["impl Eq for DataLoadingOption"],["impl Eq for SqlOption"],["impl Eq for FunctionArg"],["impl Eq for CreateTableBuilder"],["impl Eq for CharLengthUnits"],["impl Eq for ListAgg"],["impl Eq for TableWithJoins"],["impl Eq for ParserOptions"],["impl Eq for FunctionArgExpr"],["impl Eq for TableFactor"],["impl Eq for NamedWindowDefinition"],["impl Eq for Array"],["impl Eq for SelectInto"],["impl Eq for IndexType"],["impl Eq for CopySource"],["impl Eq for AnalyzeFormat"],["impl Eq for ArrayAgg"],["impl Eq for OnInsert"],["impl Eq for AlterTableOperation"],["impl Eq for AlterColumnOperation"],["impl Eq for HiveRowFormat"],["impl Eq for DateTimeField"],["impl Eq for CommentObject"],["impl Eq for TransactionMode"],["impl Eq for SetQuantifier"],["impl Eq for OnCommit"],["impl Eq for DollarQuotedString"],["impl Eq for SequenceOptions"],["impl Eq for OnConflict"],["impl Eq for GrantObjects"],["impl Eq for KeyOrIndexDisplay"],["impl Eq for OperateFunctionArg"],["impl Eq for ObjectType"],["impl Eq for LockClause"],["impl Eq for DiscardObject"],["impl Eq for ObjectName"],["impl Eq for ReplaceSelectElement"],["impl Eq for IsOptional"],["impl Eq for ExcludeSelectItem"],["impl Eq for RenameSelectItem"],["impl Eq for FetchDirection"],["impl Eq for DropFunctionOption"],["impl Eq for CopyOption"],["impl Eq for HiveFormat"],["impl Eq for TokenizerError"],["impl Eq for Action"],["impl Eq for Location"],["impl Eq for HiveIOFormat"],["impl Eq for DataLoadingOptionType"],["impl Eq for Word"],["impl Eq for OnConflictAction"],["impl Eq for StageLoadSelectItem"],["impl Eq for ContextModifier"],["impl Eq for MergeClause"],["impl Eq for CopyLegacyOption"],["impl Eq for Join"],["impl Eq for Function"],["impl Eq for NonBlock"],["impl Eq for Offset"],["impl Eq for Assignment"],["impl Eq for WindowFrameBound"],["impl Eq for Table"],["impl Eq for Expr"],["impl Eq for ColumnOption"],["impl Eq for With"],["impl Eq for SelectItem"],["impl Eq for TokenWithLocation"],["impl Eq for CharacterLength"],["impl Eq for DataType"],["impl Eq for LockType"],["impl Eq for FunctionDefinition"],["impl Eq for AddDropSync"],["impl Eq for Password"],["impl Eq for FunctionBehavior"],["impl Eq for Fetch"],["impl Eq for MinMaxValue"],["impl Eq for WildcardAdditionalOptions"],["impl Eq for ReplaceSelectItem"],["impl Eq for AlterIndexOperation"],["impl Eq for UnaryOperator"],["impl Eq for DoUpdate"],["impl Eq for DropFunctionDesc"],["impl Eq for SearchModifier"],["impl Eq for TransactionAccessMode"],["impl Eq for CreateFunctionUsing"],["impl Eq for TableConstraint"],["impl Eq for Values"],["impl Eq for TransactionIsolationLevel"],["impl Eq for Top"],["impl Eq for LateralView"],["impl Eq for Query"],["impl Eq for ExceptSelectItem"],["impl Eq for WindowType"],["impl Eq for OffsetRows"],["impl Eq for Value"],["impl Eq for Ident"],["impl Eq for SqliteOnConflict"],["impl Eq for Token"],["impl Eq for ExactNumberInfo"],["impl Eq for DataLoadingOptions"],["impl Eq for ArgMode"],["impl Eq for ColumnOptionDef"],["impl Eq for SchemaName"],["impl Eq for ParserError"],["impl Eq for Interval"],["impl Eq for CopyTarget"],["impl Eq for CreateFunctionBody"],["impl Eq for CloseCursor"],["impl Eq for JsonOperator"],["impl Eq for Keyword"],["impl Eq for ReferentialAction"],["impl Eq for HiveDistributionStyle"],["impl Eq for JoinOperator"],["impl Eq for Statement"],["impl Eq for ConflictTarget"],["impl Eq for WindowFrame"],["impl Eq for SetExpr"],["impl Eq for WindowFrameUnits"],["impl Eq for IdentWithAlias"],["impl Eq for GeneratedAs"],["impl Eq for KillType"],["impl Eq for ListAggOnOverflow"],["impl Eq for Whitespace"],["impl Eq for SetOperator"],["impl Eq for Select"],["impl Eq for TableAlias"],["impl Eq for BinaryOperator"],["impl Eq for OrderByExpr"],["impl Eq for StageParamsObject"],["impl Eq for ShowStatementFilter"],["impl Eq for TimezoneInfo"],["impl Eq for WindowSpec"],["impl Eq for ShowCreateObject"],["impl Eq for CopyLegacyCsvOption"],["impl Eq for Privileges"],["impl Eq for ColumnDef"],["impl Eq for JoinConstraint"],["impl Eq for TrimWhereField"]], "strum":[["impl Eq for ParseError"]], -"sysinfo":[["impl Eq for MacAddr"],["impl Eq for Pid"],["impl Eq for Signal"],["impl Eq for Uid"],["impl Eq for DiskUsage"],["impl Eq for DiskKind"],["impl Eq for RefreshKind"],["impl Eq for Gid"],["impl Eq for ProcessRefreshKind"],["impl Eq for ProcessStatus"],["impl Eq for User"],["impl Eq for CpuRefreshKind"],["impl Eq for Disk"]], +"sysinfo":[["impl Eq for MacAddr"],["impl Eq for Disk"],["impl Eq for DiskUsage"],["impl Eq for ProcessStatus"],["impl Eq for Gid"],["impl Eq for DiskKind"],["impl Eq for CpuRefreshKind"],["impl Eq for Uid"],["impl Eq for User"],["impl Eq for RefreshKind"],["impl Eq for Pid"],["impl Eq for Signal"],["impl Eq for ProcessRefreshKind"]], "target_features":[["impl Eq for Architecture"],["impl Eq for Target"],["impl Eq for Feature"]], "time":[["impl Eq for Timespec"],["impl Eq for Tm"],["impl Eq for Duration"],["impl Eq for OutOfRangeError"],["impl Eq for SteadyTime"]], "tinyvec":[["impl<'s, T> Eq for SliceVec<'s, T>where\n T: Eq,"],["impl<A: Array> Eq for TinyVec<A>where\n A::Item: Eq,"],["impl<A: Array> Eq for ArrayVec<A>where\n A::Item: Eq,"]], @@ -104,7 +104,7 @@ "unicode_normalization":[["impl Eq for IsNormalized"]], "untrusted":[["impl<'a> Eq for Input<'a>"],["impl Eq for EndOfInput"]], "url":[["impl Eq for Url"],["impl Eq for Origin"],["impl Eq for ParseError"],["impl Eq for SyntaxViolation"],["impl<S: Eq> Eq for Host<S>"],["impl Eq for OpaqueOrigin"]], -"value_trait":[["impl Eq for AccessError"],["impl Eq for ExtendedValueType"],["impl Eq for ValueType"]], +"value_trait":[["impl Eq for ExtendedValueType"],["impl Eq for ValueType"],["impl Eq for AccessError"]], "webpki":[["impl Eq for InvalidDnsNameError"]], "zstd_safe":[["impl Eq for CParameter"]], "zstd_sys":[["impl Eq for ZSTD_cParameter"],["impl Eq for ZSTD_ResetDirective"],["impl Eq for ZSTD_strategy"],["impl Eq for ZSTD_EndDirective"],["impl Eq for ZSTD_dParameter"]] diff --git a/implementors/core/cmp/trait.Ord.js b/implementors/core/cmp/trait.Ord.js index 407221d29ec5..29096dd7412c 100644 --- a/implementors/core/cmp/trait.Ord.js +++ b/implementors/core/cmp/trait.Ord.js @@ -4,7 +4,7 @@ "arrow2":[["impl Ord for i256"]], "bytes":[["impl Ord for BytesMut"],["impl Ord for Bytes"]], "chrono":[["impl Ord for NaiveDateTime"],["impl<Tz: TimeZone> Ord for DateTime<Tz>"],["impl Ord for IsoWeek"],["impl Ord for NaiveTime"],["impl Ord for NaiveDate"],["impl<Tz: TimeZone> Ord for Date<Tz>"],["impl Ord for Duration"]], -"ciborium":[["impl<V: Ord> Ord for Captured<V>"],["impl<V: Ord, const TAG: u64> Ord for Accepted<V, TAG>"],["impl<V: Ord, const TAG: u64> Ord for Required<V, TAG>"],["impl Ord for CanonicalValue"],["impl Ord for Integer"]], +"ciborium":[["impl Ord for CanonicalValue"],["impl<V: Ord, const TAG: u64> Ord for Accepted<V, TAG>"],["impl<V: Ord, const TAG: u64> Ord for Required<V, TAG>"],["impl<V: Ord> Ord for Captured<V>"],["impl Ord for Integer"]], "comfy_table":[["impl Ord for Color"],["impl Ord for Attribute"]], "crossbeam_epoch":[["impl<T: ?Sized + Pointable> Ord for Shared<'_, T>"]], "crossterm":[["impl Ord for Colored"],["impl Ord for KeyModifiers"],["impl Ord for KeyEventState"],["impl Ord for ClearType"],["impl Ord for KeyboardEnhancementFlags"],["impl Ord for Attribute"],["impl Ord for Color"]], @@ -26,13 +26,13 @@ "mime":[["impl<'a> Ord for Name<'a>"],["impl Ord for Mime"]], "mio":[["impl Ord for Token"],["impl Ord for Interest"]], "ndarray":[["impl<T> Ord for MathCell<T>where\n T: Copy + Ord,"],["impl Ord for Axis"]], -"object_store":[["impl Ord for Path"],["impl<'a> Ord for PathPart<'a>"]], +"object_store":[["impl<'a> Ord for PathPart<'a>"],["impl Ord for Path"]], "parquet_format_safe":[["impl Ord for OffsetIndex"],["impl Ord for EnumType"],["impl Ord for Type"],["impl Ord for EncryptionAlgorithm"],["impl Ord for FieldRepetitionType"],["impl Ord for DecimalType"],["impl Ord for BloomFilterCompression"],["impl Ord for NanoSeconds"],["impl Ord for EncryptionWithFooterKey"],["impl Ord for CompressionCodec"],["impl Ord for UUIDType"],["impl Ord for TimestampType"],["impl Ord for DateType"],["impl Ord for BsonType"],["impl Ord for AesGcmV1"],["impl Ord for FileCryptoMetaData"],["impl Ord for SplitBlockAlgorithm"],["impl Ord for KeyValue"],["impl Ord for PageLocation"],["impl Ord for Uncompressed"],["impl Ord for XxHash"],["impl Ord for PageType"],["impl Ord for BloomFilterHeader"],["impl Ord for SchemaElement"],["impl Ord for IntType"],["impl Ord for BloomFilterHash"],["impl Ord for MilliSeconds"],["impl Ord for TimeUnit"],["impl Ord for Encoding"],["impl Ord for Statistics"],["impl Ord for JsonType"],["impl Ord for AesGcmCtrV1"],["impl Ord for ColumnChunk"],["impl Ord for BoundaryOrder"],["impl Ord for ColumnMetaData"],["impl Ord for MicroSeconds"],["impl Ord for MapType"],["impl Ord for ColumnIndex"],["impl Ord for DictionaryPageHeader"],["impl Ord for RowGroup"],["impl Ord for TimeType"],["impl Ord for BloomFilterAlgorithm"],["impl Ord for PageEncodingStats"],["impl Ord for IndexPageHeader"],["impl Ord for ColumnCryptoMetaData"],["impl Ord for SortingColumn"],["impl Ord for TypeDefinedOrder"],["impl Ord for PageHeader"],["impl Ord for DataPageHeaderV2"],["impl Ord for ConvertedType"],["impl Ord for EncryptionWithColumnKey"],["impl Ord for FileMetaData"],["impl Ord for LogicalType"],["impl Ord for DataPageHeader"],["impl Ord for ListType"],["impl Ord for StringType"],["impl Ord for ColumnOrder"],["impl Ord for NullType"]], "polars_arrow":[["impl<T: IsFloat + PartialEq + PartialOrd> Ord for OrdFloat<T>"]], "polars_time":[["impl Ord for Duration"]], "polars_utils":[["impl Ord for Node"]], "proc_macro2":[["impl Ord for Ident"]], -"quick_xml":[["impl<T: Ord> Ord for Attr<T>"],["impl<'a> Ord for PrefixDeclaration<'a>"],["impl<'a> Ord for LocalName<'a>"],["impl<'a> Ord for Prefix<'a>"],["impl<'a> Ord for QName<'a>"],["impl<'a> Ord for Namespace<'a>"]], +"quick_xml":[["impl<'a> Ord for Namespace<'a>"],["impl<'a> Ord for LocalName<'a>"],["impl<T: Ord> Ord for Attr<T>"],["impl<'a> Ord for PrefixDeclaration<'a>"],["impl<'a> Ord for Prefix<'a>"],["impl<'a> Ord for QName<'a>"]], "regex_automata":[["impl Ord for NonMaxUsize"],["impl Ord for StateID"],["impl Ord for SmallIndex"],["impl Ord for Unit"],["impl Ord for PatternID"],["impl Ord for LazyStateID"]], "regex_syntax":[["impl Ord for Utf8Sequence"],["impl Ord for ClassBytesRange"],["impl Ord for Literal"],["impl Ord for ClassUnicodeRange"],["impl Ord for Position"],["impl Ord for Utf8Range"],["impl Ord for Span"]], "reqwest":[["impl Ord for Version"]], @@ -41,7 +41,7 @@ "smallvec":[["impl<A: Array> Ord for SmallVec<A>where\n A::Item: Ord,"]], "smartstring":[["impl<Mode: SmartStringMode> Ord for SmartString<Mode>"]], "sqlparser":[["impl Ord for HiveFormat"],["impl Ord for WildcardAdditionalOptions"],["impl Ord for FunctionArgExpr"],["impl Ord for Values"],["impl Ord for CopyTarget"],["impl Ord for ExactNumberInfo"],["impl Ord for FileFormat"],["impl Ord for OnCommit"],["impl Ord for WindowFrame"],["impl Ord for FunctionBehavior"],["impl Ord for Join"],["impl Ord for CommentObject"],["impl Ord for FunctionArg"],["impl Ord for TrimWhereField"],["impl Ord for WindowType"],["impl Ord for ArgMode"],["impl Ord for LockType"],["impl Ord for StageLoadSelectItem"],["impl Ord for CreateFunctionUsing"],["impl Ord for OrderByExpr"],["impl Ord for ContextModifier"],["impl Ord for ExcludeSelectItem"],["impl Ord for ConflictTarget"],["impl Ord for Cte"],["impl Ord for ReplaceSelectElement"],["impl Ord for CopyLegacyOption"],["impl Ord for JoinOperator"],["impl Ord for ListAgg"],["impl Ord for BinaryOperator"],["impl Ord for OperateFunctionArg"],["impl Ord for Keyword"],["impl Ord for SequenceOptions"],["impl Ord for CreateFunctionBody"],["impl Ord for GrantObjects"],["impl Ord for Password"],["impl Ord for Function"],["impl Ord for SelectItem"],["impl Ord for AnalyzeFormat"],["impl Ord for RenameSelectItem"],["impl Ord for ExceptSelectItem"],["impl Ord for MergeClause"],["impl Ord for Interval"],["impl Ord for SetQuantifier"],["impl Ord for SearchModifier"],["impl Ord for KeyOrIndexDisplay"],["impl Ord for UnaryOperator"],["impl Ord for Expr"],["impl Ord for DoUpdate"],["impl Ord for Query"],["impl Ord for SetExpr"],["impl Ord for OnConflict"],["impl Ord for DropFunctionOption"],["impl Ord for Table"],["impl Ord for OffsetRows"],["impl Ord for NonBlock"],["impl Ord for SetOperator"],["impl Ord for NamedWindowDefinition"],["impl Ord for DropFunctionDesc"],["impl Ord for CloseCursor"],["impl Ord for Assignment"],["impl Ord for Fetch"],["impl Ord for ShowStatementFilter"],["impl Ord for TableWithJoins"],["impl Ord for TransactionMode"],["impl Ord for AlterColumnOperation"],["impl Ord for CharLengthUnits"],["impl Ord for CopyOption"],["impl Ord for Privileges"],["impl Ord for OnInsert"],["impl Ord for AlterIndexOperation"],["impl Ord for FetchDirection"],["impl Ord for WindowFrameUnits"],["impl Ord for CharacterLength"],["impl Ord for CopySource"],["impl Ord for JoinConstraint"],["impl Ord for AlterTableOperation"],["impl Ord for StageParamsObject"],["impl Ord for IdentWithAlias"],["impl Ord for DataLoadingOption"],["impl Ord for DataType"],["impl Ord for TableFactor"],["impl Ord for JsonOperator"],["impl Ord for TransactionAccessMode"],["impl Ord for GeneratedAs"],["impl Ord for TransactionIsolationLevel"],["impl Ord for ListAggOnOverflow"],["impl Ord for LateralView"],["impl Ord for DollarQuotedString"],["impl Ord for MinMaxValue"],["impl Ord for Value"],["impl Ord for Ident"],["impl Ord for DiscardObject"],["impl Ord for OnConflictAction"],["impl Ord for DateTimeField"],["impl Ord for WindowFrameBound"],["impl Ord for HiveIOFormat"],["impl Ord for ArrayAgg"],["impl Ord for FunctionDefinition"],["impl Ord for HiveDistributionStyle"],["impl Ord for SqliteOnConflict"],["impl Ord for Whitespace"],["impl Ord for TableConstraint"],["impl Ord for CopyLegacyCsvOption"],["impl Ord for DataLoadingOptionType"],["impl Ord for Word"],["impl Ord for DataLoadingOptions"],["impl Ord for With"],["impl Ord for LockClause"],["impl Ord for HiveRowFormat"],["impl Ord for Offset"],["impl Ord for TimezoneInfo"],["impl Ord for ColumnOptionDef"],["impl Ord for ObjectType"],["impl Ord for ReferentialAction"],["impl Ord for KillType"],["impl Ord for SqlOption"],["impl Ord for Statement"],["impl Ord for TableAlias"],["impl Ord for SchemaName"],["impl Ord for AddDropSync"],["impl Ord for ObjectName"],["impl Ord for Array"],["impl Ord for Select"],["impl Ord for ColumnOption"],["impl Ord for ReplaceSelectItem"],["impl Ord for WindowSpec"],["impl Ord for Action"],["impl Ord for IndexType"],["impl Ord for ColumnDef"],["impl Ord for Token"],["impl Ord for SelectInto"],["impl Ord for ShowCreateObject"],["impl Ord for Top"],["impl Ord for Distinct"]], -"sysinfo":[["impl Ord for Pid"],["impl Ord for Gid"],["impl Ord for User"],["impl Ord for Uid"]], +"sysinfo":[["impl Ord for Uid"],["impl Ord for Pid"],["impl Ord for Gid"],["impl Ord for User"]], "time":[["impl Ord for Duration"],["impl Ord for Tm"],["impl Ord for Timespec"],["impl Ord for SteadyTime"]], "tinyvec":[["impl<A: Array> Ord for ArrayVec<A>where\n A::Item: Ord,"],["impl<'s, T> Ord for SliceVec<'s, T>where\n T: Ord,"],["impl<A: Array> Ord for TinyVec<A>where\n A::Item: Ord,"]], "tokio":[["impl Ord for Ready"]], diff --git a/implementors/core/cmp/trait.PartialEq.js b/implementors/core/cmp/trait.PartialEq.js index 22bc71b296a5..54b5ad50f576 100644 --- a/implementors/core/cmp/trait.PartialEq.js +++ b/implementors/core/cmp/trait.PartialEq.js @@ -2,10 +2,10 @@ "ahash":[["impl<T, S> PartialEq<AHashSet<T, S>> for AHashSet<T, S>where\n T: Eq + Hash,\n S: BuildHasher,"],["impl<K, V, S> PartialEq<AHashMap<K, V, S>> for AHashMap<K, V, S>where\n K: Eq + Hash,\n V: PartialEq,\n S: BuildHasher,"]], "aho_corasick":[["impl PartialEq<MatchKind> for MatchKind"],["impl PartialEq<Match> for Match"],["impl PartialEq<MatchError> for MatchError"],["impl PartialEq<StateIDError> for StateIDError"],["impl PartialEq<MatchErrorKind> for MatchErrorKind"],["impl PartialEq<Range<usize>> for Span"],["impl PartialEq<AhoCorasickKind> for AhoCorasickKind"],["impl PartialEq<StateID> for StateID"],["impl PartialEq<Anchored> for Anchored"],["impl PartialEq<StartKind> for StartKind"],["impl PartialEq<PatternIDError> for PatternIDError"],["impl PartialEq<MatchKind> for MatchKind"],["impl PartialEq<Span> for Span"],["impl PartialEq<Span> for Range<usize>"],["impl PartialEq<PatternID> for PatternID"]], "allocator_api2":[["impl<T, U, A: Allocator, const N: usize> PartialEq<&[U; N]> for Vec<T, A>where\n T: PartialEq<U>,"],["impl<T, U, A: Allocator> PartialEq<[U]> for Vec<T, A>where\n T: PartialEq<U>,"],["impl<T, U, A: Allocator> PartialEq<Vec<U, A>> for &[T]where\n T: PartialEq<U>,"],["impl<T, U, A: Allocator> PartialEq<Vec<U, A>> for [T]where\n T: PartialEq<U>,"],["impl<T, U, A1: Allocator, A2: Allocator> PartialEq<Vec<U, A2>> for Vec<T, A1>where\n T: PartialEq<U>,"],["impl<T, U, A: Allocator, const N: usize> PartialEq<[U; N]> for Vec<T, A>where\n T: PartialEq<U>,"],["impl<T, U, A: Allocator> PartialEq<&[U]> for Vec<T, A>where\n T: PartialEq<U>,"],["impl PartialEq<AllocError> for AllocError"],["impl<T, U, A: Allocator> PartialEq<Vec<U, A>> for &mut [T]where\n T: PartialEq<U>,"],["impl<T, U, A: Allocator> PartialEq<Vec<U, A>> for Cow<'_, [T]>where\n T: PartialEq<U> + Clone,"],["impl<T, U, A: Allocator> PartialEq<&mut [U]> for Vec<T, A>where\n T: PartialEq<U>,"],["impl<T: ?Sized + PartialEq, A: Allocator> PartialEq<Box<T, A>> for Box<T, A>"]], -"arrow2":[["impl PartialEq<&(dyn Array + 'static)> for NullArray"],["impl PartialEq<days_ms> for days_ms"],["impl PartialEq<&(dyn Array + 'static)> for StructArray"],["impl<O: Offset> PartialEq<BinaryArray<O>> for BinaryArray<O>"],["impl PartialEq<FixedSizeBinaryScalar> for FixedSizeBinaryScalar"],["impl PartialEq<PhysicalType> for PhysicalType"],["impl PartialEq<BooleanScalar> for BooleanScalar"],["impl<T: NativeType> PartialEq<MutablePrimitiveArray<T>> for MutablePrimitiveArray<T>"],["impl PartialEq<FixedSizeListScalar> for FixedSizeListScalar"],["impl PartialEq<FixedSizeBinaryArray> for FixedSizeBinaryArray"],["impl<O: Offset> PartialEq<MutableUtf8Array<O>> for MutableUtf8Array<O>"],["impl<K: DictionaryKey> PartialEq<&(dyn Array + 'static)> for DictionaryArray<K>"],["impl PartialEq<Bitmap> for Bitmap"],["impl PartialEq<DataType> for DataType"],["impl PartialEq<StructScalar> for StructScalar"],["impl<O: Offset> PartialEq<&(dyn Array + 'static)> for BinaryArray<O>"],["impl PartialEq<MutableFixedSizeBinaryArray> for MutableFixedSizeBinaryArray"],["impl PartialEq<InitNested> for InitNested"],["impl<K: DictionaryKey> PartialEq<DictionaryScalar<K>> for DictionaryScalar<K>"],["impl PartialEq<UnionMode> for UnionMode"],["impl PartialEq<PrimitiveType> for PrimitiveType"],["impl PartialEq<&(dyn Array + 'static)> for UnionArray"],["impl PartialEq<Compression> for Compression"],["impl<O: Offset> PartialEq<&(dyn Array + 'static)> for Utf8Array<O>"],["impl PartialEq<Schema> for Schema"],["impl PartialEq<Statistics> for Statistics"],["impl PartialEq<WriteOptions> for WriteOptions"],["impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray"],["impl<O: Offset> PartialEq<MutableBinaryArray<O>> for MutableBinaryArray<O>"],["impl PartialEq<dyn Scalar + '_> for dyn Scalar + '_"],["impl PartialEq<IntegerType> for IntegerType"],["impl PartialEq<NullArray> for NullArray"],["impl<A: PartialEq + AsRef<dyn Array>> PartialEq<Chunk<A>> for Chunk<A>"],["impl PartialEq<MapScalar> for MapScalar"],["impl PartialEq<UnionScalar> for UnionScalar"],["impl PartialEq<IpcField> for IpcField"],["impl PartialEq<dyn Array + '_> for dyn Array + '_"],["impl<O: Offset> PartialEq<Utf8Array<O>> for Utf8Array<O>"],["impl PartialEq<dyn Array> for Arc<dyn Array + '_>"],["impl<O: Offset> PartialEq<ListArray<O>> for ListArray<O>"],["impl PartialEq<UnionArray> for UnionArray"],["impl PartialEq<FieldPageStatistics> for FieldPageStatistics"],["impl PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>"],["impl PartialEq<&(dyn Array + 'static)> for BooleanArray"],["impl PartialEq<months_days_ns> for months_days_ns"],["impl PartialEq<IntervalUnit> for IntervalUnit"],["impl<O: Offset> PartialEq<Utf8Array<O>> for &dyn Array"],["impl PartialEq<f16> for f16"],["impl PartialEq<dyn Scalar> for Box<dyn Scalar + '_>"],["impl PartialEq<BooleanArray> for BooleanArray"],["impl PartialEq<&(dyn Array + 'static)> for MapArray"],["impl<T: PartialEq> PartialEq<Buffer<T>> for Buffer<T>"],["impl<O: PartialEq + Offset> PartialEq<Utf8Scalar<O>> for Utf8Scalar<O>"],["impl PartialEq<MapArray> for MapArray"],["impl PartialEq<dyn Array> for Box<dyn Array + '_>"],["impl PartialEq<IpcSchema> for IpcSchema"],["impl PartialEq<MutableBooleanArray> for MutableBooleanArray"],["impl PartialEq<StructArray> for StructArray"],["impl<T: NativeType> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>"],["impl<K: DictionaryKey> PartialEq<DictionaryArray<K>> for DictionaryArray<K>"],["impl<T: PartialEq + NativeType> PartialEq<PrimitiveScalar<T>> for PrimitiveScalar<T>"],["impl<O: PartialEq + Offset> PartialEq<BinaryScalar<O>> for BinaryScalar<O>"],["impl PartialEq<WriteOptions> for WriteOptions"],["impl PartialEq<MutableBitmap> for MutableBitmap"],["impl PartialEq<FixedSizeListArray> for FixedSizeListArray"],["impl PartialEq<NullScalar> for NullScalar"],["impl PartialEq<Field> for Field"],["impl PartialEq<i256> for i256"],["impl<O: Offset> PartialEq<ListScalar<O>> for ListScalar<O>"],["impl PartialEq<ColumnPageStatistics> for ColumnPageStatistics"],["impl PartialEq<Nested> for Nested"],["impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray"],["impl<O: PartialEq + Offset> PartialEq<Offsets<O>> for Offsets<O>"],["impl<T: NativeType> PartialEq<PrimitiveArray<T>> for &dyn Array"],["impl<O: Offset> PartialEq<&(dyn Array + 'static)> for ListArray<O>"],["impl PartialEq<TimeUnit> for TimeUnit"],["impl<'a> PartialEq<Record<'a>> for Record<'a>"],["impl<T: NativeType> PartialEq<PrimitiveArray<T>> for PrimitiveArray<T>"],["impl<O: PartialEq + Offset> PartialEq<OffsetsBuffer<O>> for OffsetsBuffer<O>"],["impl<O: Offset> PartialEq<BinaryArray<O>> for &dyn Array"]], -"arrow_format":[["impl PartialEq<FieldNode> for FieldNode"],["impl PartialEq<Bool> for Bool"],["impl PartialEq<Buffer> for Buffer"],["impl PartialEq<MessageHeader> for MessageHeader"],["impl PartialEq<SparseTensorIndexCsf> for SparseTensorIndexCsf"],["impl PartialEq<Interval> for Interval"],["impl PartialEq<LargeUtf8> for LargeUtf8"],["impl PartialEq<Footer> for Footer"],["impl PartialEq<Date> for Date"],["impl PartialEq<Precision> for Precision"],["impl PartialEq<FixedSizeList> for FixedSizeList"],["impl PartialEq<LargeList> for LargeList"],["impl PartialEq<SparseTensorIndex> for SparseTensorIndex"],["impl PartialEq<Int> for Int"],["impl PartialEq<List> for List"],["impl PartialEq<Decimal> for Decimal"],["impl PartialEq<FixedSizeBinary> for FixedSizeBinary"],["impl PartialEq<Feature> for Feature"],["impl PartialEq<SparseTensor> for SparseTensor"],["impl PartialEq<Duration> for Duration"],["impl PartialEq<Map> for Map"],["impl PartialEq<Binary> for Binary"],["impl PartialEq<TensorDim> for TensorDim"],["impl PartialEq<Schema> for Schema"],["impl PartialEq<SparseTensorIndexCoo> for SparseTensorIndexCoo"],["impl PartialEq<Union> for Union"],["impl PartialEq<SparseMatrixIndexCsx> for SparseMatrixIndexCsx"],["impl PartialEq<BodyCompressionMethod> for BodyCompressionMethod"],["impl PartialEq<KeyValue> for KeyValue"],["impl PartialEq<TimeUnit> for TimeUnit"],["impl PartialEq<UnionMode> for UnionMode"],["impl PartialEq<CompressionType> for CompressionType"],["impl PartialEq<IntervalUnit> for IntervalUnit"],["impl PartialEq<RecordBatch> for RecordBatch"],["impl PartialEq<Timestamp> for Timestamp"],["impl PartialEq<Field> for Field"],["impl PartialEq<Tensor> for Tensor"],["impl PartialEq<DictionaryBatch> for DictionaryBatch"],["impl PartialEq<DateUnit> for DateUnit"],["impl PartialEq<Struct> for Struct"],["impl PartialEq<DictionaryKind> for DictionaryKind"],["impl PartialEq<Type> for Type"],["impl PartialEq<Block> for Block"],["impl PartialEq<DictionaryEncoding> for DictionaryEncoding"],["impl PartialEq<MetadataVersion> for MetadataVersion"],["impl PartialEq<FloatingPoint> for FloatingPoint"],["impl PartialEq<LargeBinary> for LargeBinary"],["impl PartialEq<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"],["impl PartialEq<Endianness> for Endianness"],["impl PartialEq<Message> for Message"],["impl PartialEq<Time> for Time"],["impl PartialEq<BodyCompression> for BodyCompression"],["impl PartialEq<Utf8> for Utf8"],["impl PartialEq<Null> for Null"]], +"arrow2":[["impl<T: PartialEq + NativeType> PartialEq<PrimitiveScalar<T>> for PrimitiveScalar<T>"],["impl<O: Offset> PartialEq<&(dyn Array + 'static)> for ListArray<O>"],["impl<O: PartialEq + Offset> PartialEq<Utf8Scalar<O>> for Utf8Scalar<O>"],["impl PartialEq<IpcSchema> for IpcSchema"],["impl<T: NativeType> PartialEq<PrimitiveArray<T>> for &dyn Array"],["impl<T: PartialEq> PartialEq<Buffer<T>> for Buffer<T>"],["impl PartialEq<StructArray> for StructArray"],["impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray"],["impl<O: Offset> PartialEq<BinaryArray<O>> for BinaryArray<O>"],["impl PartialEq<days_ms> for days_ms"],["impl<T: NativeType> PartialEq<PrimitiveArray<T>> for PrimitiveArray<T>"],["impl PartialEq<UnionArray> for UnionArray"],["impl PartialEq<NullArray> for NullArray"],["impl PartialEq<&(dyn Array + 'static)> for UnionArray"],["impl PartialEq<WriteOptions> for WriteOptions"],["impl PartialEq<BooleanScalar> for BooleanScalar"],["impl PartialEq<MutableFixedSizeBinaryArray> for MutableFixedSizeBinaryArray"],["impl PartialEq<MutableBooleanArray> for MutableBooleanArray"],["impl PartialEq<Bitmap> for Bitmap"],["impl<O: Offset> PartialEq<ListArray<O>> for ListArray<O>"],["impl<O: Offset> PartialEq<Utf8Array<O>> for &dyn Array"],["impl<'a> PartialEq<Record<'a>> for Record<'a>"],["impl PartialEq<WriteOptions> for WriteOptions"],["impl PartialEq<Compression> for Compression"],["impl PartialEq<dyn Scalar + '_> for dyn Scalar + '_"],["impl<O: PartialEq + Offset> PartialEq<BinaryScalar<O>> for BinaryScalar<O>"],["impl PartialEq<PhysicalType> for PhysicalType"],["impl<O: Offset> PartialEq<Utf8Array<O>> for Utf8Array<O>"],["impl PartialEq<i256> for i256"],["impl PartialEq<InitNested> for InitNested"],["impl PartialEq<UnionMode> for UnionMode"],["impl<O: PartialEq + Offset> PartialEq<Offsets<O>> for Offsets<O>"],["impl PartialEq<StructScalar> for StructScalar"],["impl<T: NativeType> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>"],["impl PartialEq<MapArray> for MapArray"],["impl PartialEq<FixedSizeListArray> for FixedSizeListArray"],["impl PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>"],["impl PartialEq<PrimitiveType> for PrimitiveType"],["impl PartialEq<months_days_ns> for months_days_ns"],["impl<O: Offset> PartialEq<&(dyn Array + 'static)> for Utf8Array<O>"],["impl PartialEq<Field> for Field"],["impl PartialEq<Statistics> for Statistics"],["impl PartialEq<FixedSizeListScalar> for FixedSizeListScalar"],["impl PartialEq<Schema> for Schema"],["impl PartialEq<BooleanArray> for BooleanArray"],["impl<O: Offset> PartialEq<&(dyn Array + 'static)> for BinaryArray<O>"],["impl PartialEq<&(dyn Array + 'static)> for BooleanArray"],["impl PartialEq<dyn Array> for Box<dyn Array + '_>"],["impl PartialEq<NullScalar> for NullScalar"],["impl<O: Offset> PartialEq<ListScalar<O>> for ListScalar<O>"],["impl<O: Offset> PartialEq<BinaryArray<O>> for &dyn Array"],["impl PartialEq<IntervalUnit> for IntervalUnit"],["impl PartialEq<dyn Scalar> for Box<dyn Scalar + '_>"],["impl PartialEq<UnionScalar> for UnionScalar"],["impl PartialEq<dyn Array> for Arc<dyn Array + '_>"],["impl PartialEq<Nested> for Nested"],["impl PartialEq<TimeUnit> for TimeUnit"],["impl<K: DictionaryKey> PartialEq<DictionaryArray<K>> for DictionaryArray<K>"],["impl<T: NativeType> PartialEq<MutablePrimitiveArray<T>> for MutablePrimitiveArray<T>"],["impl PartialEq<MapScalar> for MapScalar"],["impl PartialEq<f16> for f16"],["impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray"],["impl<O: PartialEq + Offset> PartialEq<OffsetsBuffer<O>> for OffsetsBuffer<O>"],["impl PartialEq<&(dyn Array + 'static)> for MapArray"],["impl PartialEq<dyn Array + '_> for dyn Array + '_"],["impl PartialEq<FixedSizeBinaryScalar> for FixedSizeBinaryScalar"],["impl PartialEq<FixedSizeBinaryArray> for FixedSizeBinaryArray"],["impl PartialEq<IntegerType> for IntegerType"],["impl PartialEq<DataType> for DataType"],["impl PartialEq<&(dyn Array + 'static)> for StructArray"],["impl PartialEq<&(dyn Array + 'static)> for NullArray"],["impl PartialEq<IpcField> for IpcField"],["impl PartialEq<MutableBitmap> for MutableBitmap"],["impl PartialEq<ColumnPageStatistics> for ColumnPageStatistics"],["impl PartialEq<FieldPageStatistics> for FieldPageStatistics"],["impl<O: Offset> PartialEq<MutableBinaryArray<O>> for MutableBinaryArray<O>"],["impl<K: DictionaryKey> PartialEq<&(dyn Array + 'static)> for DictionaryArray<K>"],["impl<O: Offset> PartialEq<MutableUtf8Array<O>> for MutableUtf8Array<O>"],["impl<A: PartialEq + AsRef<dyn Array>> PartialEq<Chunk<A>> for Chunk<A>"],["impl<K: DictionaryKey> PartialEq<DictionaryScalar<K>> for DictionaryScalar<K>"]], +"arrow_format":[["impl PartialEq<UnionMode> for UnionMode"],["impl PartialEq<CompressionType> for CompressionType"],["impl PartialEq<Block> for Block"],["impl PartialEq<Message> for Message"],["impl PartialEq<FieldNode> for FieldNode"],["impl PartialEq<Null> for Null"],["impl PartialEq<BodyCompression> for BodyCompression"],["impl PartialEq<Duration> for Duration"],["impl PartialEq<Footer> for Footer"],["impl PartialEq<Precision> for Precision"],["impl PartialEq<Union> for Union"],["impl PartialEq<SparseMatrixIndexCsx> for SparseMatrixIndexCsx"],["impl PartialEq<DictionaryEncoding> for DictionaryEncoding"],["impl PartialEq<List> for List"],["impl PartialEq<Date> for Date"],["impl PartialEq<DictionaryBatch> for DictionaryBatch"],["impl PartialEq<BodyCompressionMethod> for BodyCompressionMethod"],["impl PartialEq<SparseTensor> for SparseTensor"],["impl PartialEq<Buffer> for Buffer"],["impl PartialEq<Time> for Time"],["impl PartialEq<Interval> for Interval"],["impl PartialEq<Type> for Type"],["impl PartialEq<FixedSizeList> for FixedSizeList"],["impl PartialEq<Endianness> for Endianness"],["impl PartialEq<LargeList> for LargeList"],["impl PartialEq<MessageHeader> for MessageHeader"],["impl PartialEq<SparseTensorIndex> for SparseTensorIndex"],["impl PartialEq<Bool> for Bool"],["impl PartialEq<DateUnit> for DateUnit"],["impl PartialEq<LargeUtf8> for LargeUtf8"],["impl PartialEq<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"],["impl PartialEq<Int> for Int"],["impl PartialEq<LargeBinary> for LargeBinary"],["impl PartialEq<Schema> for Schema"],["impl PartialEq<RecordBatch> for RecordBatch"],["impl PartialEq<IntervalUnit> for IntervalUnit"],["impl PartialEq<FixedSizeBinary> for FixedSizeBinary"],["impl PartialEq<DictionaryKind> for DictionaryKind"],["impl PartialEq<MetadataVersion> for MetadataVersion"],["impl PartialEq<KeyValue> for KeyValue"],["impl PartialEq<Feature> for Feature"],["impl PartialEq<SparseTensorIndexCoo> for SparseTensorIndexCoo"],["impl PartialEq<Field> for Field"],["impl PartialEq<Map> for Map"],["impl PartialEq<Decimal> for Decimal"],["impl PartialEq<Binary> for Binary"],["impl PartialEq<Struct> for Struct"],["impl PartialEq<Utf8> for Utf8"],["impl PartialEq<FloatingPoint> for FloatingPoint"],["impl PartialEq<Timestamp> for Timestamp"],["impl PartialEq<TensorDim> for TensorDim"],["impl PartialEq<TimeUnit> for TimeUnit"],["impl PartialEq<SparseTensorIndexCsf> for SparseTensorIndexCsf"],["impl PartialEq<Tensor> for Tensor"]], "atoi":[["impl PartialEq<Sign> for Sign"]], -"avro_schema":[["impl PartialEq<Fixed> for Fixed"],["impl PartialEq<FileMetadata> for FileMetadata"],["impl PartialEq<Block> for Block"],["impl PartialEq<Field> for Field"],["impl PartialEq<Record> for Record"],["impl PartialEq<StringLogical> for StringLogical"],["impl PartialEq<FixedLogical> for FixedLogical"],["impl PartialEq<BytesLogical> for BytesLogical"],["impl PartialEq<Schema> for Schema"],["impl PartialEq<LongLogical> for LongLogical"],["impl PartialEq<Order> for Order"],["impl PartialEq<Enum> for Enum"],["impl PartialEq<Compression> for Compression"],["impl PartialEq<CompressedBlock> for CompressedBlock"],["impl PartialEq<IntLogical> for IntLogical"]], +"avro_schema":[["impl PartialEq<Enum> for Enum"],["impl PartialEq<Schema> for Schema"],["impl PartialEq<LongLogical> for LongLogical"],["impl PartialEq<StringLogical> for StringLogical"],["impl PartialEq<IntLogical> for IntLogical"],["impl PartialEq<Fixed> for Fixed"],["impl PartialEq<CompressedBlock> for CompressedBlock"],["impl PartialEq<BytesLogical> for BytesLogical"],["impl PartialEq<Order> for Order"],["impl PartialEq<Field> for Field"],["impl PartialEq<Compression> for Compression"],["impl PartialEq<FileMetadata> for FileMetadata"],["impl PartialEq<FixedLogical> for FixedLogical"],["impl PartialEq<Record> for Record"],["impl PartialEq<Block> for Block"]], "base64":[["impl PartialEq<Alphabet> for Alphabet"],["impl PartialEq<EncodeSliceError> for EncodeSliceError"],["impl PartialEq<DecodeError> for DecodeError"],["impl PartialEq<DecodePaddingMode> for DecodePaddingMode"],["impl PartialEq<ParseAlphabetError> for ParseAlphabetError"],["impl PartialEq<DecodeMetadata> for DecodeMetadata"],["impl PartialEq<DecodeSliceError> for DecodeSliceError"]], "brotli":[["impl PartialEq<LiteralPredictionModeNibble> for LiteralPredictionModeNibble"],["impl PartialEq<BroCatliResult> for BroCatliResult"],["impl<AllocU32: Allocator<u32>> PartialEq<H10Buckets<AllocU32>> for H10Buckets<AllocU32>"],["impl PartialEq<H6Sub> for H6Sub"],["impl PartialEq<Struct1> for Struct1"],["impl PartialEq<CodeBlockState> for CodeBlockState"],["impl PartialEq<BrotliEncoderOperation> for BrotliEncoderOperation"],["impl PartialEq<BrotliHasherParams> for BrotliHasherParams"],["impl PartialEq<HQ7Sub> for HQ7Sub"],["impl PartialEq<H9Opts> for H9Opts"],["impl PartialEq<BrotliEncoderParameter> for BrotliEncoderParameter"],["impl PartialEq<H5Sub> for H5Sub"],["impl<AllocU32: Allocator<u32>, Buckets, Params: H10Params> PartialEq<H10<AllocU32, Buckets, Params>> for H10<AllocU32, Buckets, Params>where\n Buckets: PartialEq<Buckets> + Allocable<u32, AllocU32> + SliceWrapperMut<u32> + SliceWrapper<u32>,"],["impl<Specialization: AdvHashSpecialization + Sized + Clone, Alloc: Allocator<u16> + Allocator<u32>> PartialEq<AdvHasher<Specialization, Alloc>> for AdvHasher<Specialization, Alloc>"],["impl PartialEq<BrotliEncoderStreamState> for BrotliEncoderStreamState"],["impl<Alloc: Allocator<u16> + Allocator<u32>> PartialEq<UnionHasher<Alloc>> for UnionHasher<Alloc>"],["impl<A: SliceWrapperMut<u32> + SliceWrapper<u32> + BasicHashComputer> PartialEq<BasicHasher<A>> for BasicHasher<A>"],["impl PartialEq<BrotliEncoderMode> for BrotliEncoderMode"],["impl<Alloc: Allocator<u16> + Allocator<u32>> PartialEq<H9<Alloc>> for H9<Alloc>"],["impl<'a> PartialEq<InputPair<'a>> for InputPair<'a>"],["impl PartialEq<HQ5Sub> for HQ5Sub"]], "brotli_decompressor":[["impl PartialEq<HuffmanCode> for HuffmanCode"]], @@ -13,7 +13,7 @@ "bytes":[["impl PartialEq<BytesMut> for [u8]"],["impl PartialEq<String> for BytesMut"],["impl PartialEq<BytesMut> for Vec<u8>"],["impl PartialEq<Bytes> for Vec<u8>"],["impl PartialEq<Bytes> for &[u8]"],["impl PartialEq<BytesMut> for String"],["impl<'a, T: ?Sized> PartialEq<&'a T> for Byteswhere\n Bytes: PartialEq<T>,"],["impl PartialEq<str> for BytesMut"],["impl PartialEq<str> for Bytes"],["impl PartialEq<BytesMut> for str"],["impl PartialEq<BytesMut> for &[u8]"],["impl PartialEq<BytesMut> for &str"],["impl PartialEq<Bytes> for str"],["impl PartialEq<BytesMut> for Bytes"],["impl PartialEq<Bytes> for BytesMut"],["impl PartialEq<Vec<u8, Global>> for Bytes"],["impl<'a, T: ?Sized> PartialEq<&'a T> for BytesMutwhere\n BytesMut: PartialEq<T>,"],["impl PartialEq<BytesMut> for BytesMut"],["impl PartialEq<Vec<u8, Global>> for BytesMut"],["impl PartialEq<Bytes> for &str"],["impl PartialEq<Bytes> for Bytes"],["impl PartialEq<Bytes> for String"],["impl PartialEq<[u8]> for Bytes"],["impl PartialEq<Bytes> for [u8]"],["impl PartialEq<[u8]> for BytesMut"],["impl PartialEq<String> for Bytes"]], "chrono":[["impl PartialEq<IsoWeek> for IsoWeek"],["impl PartialEq<Pad> for Pad"],["impl PartialEq<Month> for Month"],["impl<Tz: TimeZone, Tz2: TimeZone> PartialEq<Date<Tz2>> for Date<Tz>"],["impl PartialEq<NaiveDate> for NaiveDate"],["impl PartialEq<Utc> for Utc"],["impl PartialEq<ParseError> for ParseError"],["impl PartialEq<InternalNumeric> for InternalNumeric"],["impl PartialEq<Parsed> for Parsed"],["impl PartialEq<InternalFixed> for InternalFixed"],["impl PartialEq<Weekday> for Weekday"],["impl<T: PartialEq> PartialEq<LocalResult<T>> for LocalResult<T>"],["impl PartialEq<Months> for Months"],["impl PartialEq<ParseMonthError> for ParseMonthError"],["impl PartialEq<ParseWeekdayError> for ParseWeekdayError"],["impl PartialEq<OutOfRangeError> for OutOfRangeError"],["impl<Tz: TimeZone, Tz2: TimeZone> PartialEq<DateTime<Tz2>> for DateTime<Tz>"],["impl PartialEq<ParseErrorKind> for ParseErrorKind"],["impl PartialEq<Days> for Days"],["impl PartialEq<NaiveTime> for NaiveTime"],["impl PartialEq<NaiveDateTime> for NaiveDateTime"],["impl PartialEq<OutOfRange> for OutOfRange"],["impl PartialEq<RoundingError> for RoundingError"],["impl<'a> PartialEq<Item<'a>> for Item<'a>"],["impl PartialEq<Duration> for Duration"],["impl PartialEq<SecondsFormat> for SecondsFormat"],["impl PartialEq<Fixed> for Fixed"],["impl PartialEq<Numeric> for Numeric"],["impl PartialEq<FixedOffset> for FixedOffset"]], "chrono_tz":[["impl PartialEq<Tz> for Tz"]], -"ciborium":[["impl PartialEq<Value> for Value"],["impl<V: PartialEq, const TAG: u64> PartialEq<Accepted<V, TAG>> for Accepted<V, TAG>"],["impl<V: PartialEq> PartialEq<Captured<V>> for Captured<V>"],["impl<V: PartialEq, const TAG: u64> PartialEq<Required<V, TAG>> for Required<V, TAG>"],["impl PartialEq<CanonicalValue> for CanonicalValue"],["impl PartialEq<Integer> for Integer"]], +"ciborium":[["impl<V: PartialEq> PartialEq<Captured<V>> for Captured<V>"],["impl PartialEq<CanonicalValue> for CanonicalValue"],["impl PartialEq<Integer> for Integer"],["impl<V: PartialEq, const TAG: u64> PartialEq<Accepted<V, TAG>> for Accepted<V, TAG>"],["impl PartialEq<Value> for Value"],["impl<V: PartialEq, const TAG: u64> PartialEq<Required<V, TAG>> for Required<V, TAG>"]], "ciborium_ll":[["impl PartialEq<Header> for Header"]], "comfy_table":[["impl PartialEq<ColumnConstraint> for ColumnConstraint"],["impl PartialEq<TableComponent> for TableComponent"],["impl PartialEq<Attribute> for Attribute"],["impl PartialEq<Color> for Color"],["impl PartialEq<Width> for Width"]], "crossbeam_channel":[["impl PartialEq<RecvError> for RecvError"],["impl PartialEq<RecvTimeoutError> for RecvTimeoutError"],["impl PartialEq<SelectTimeoutError> for SelectTimeoutError"],["impl PartialEq<TrySelectError> for TrySelectError"],["impl PartialEq<TryRecvError> for TryRecvError"],["impl PartialEq<ReadyTimeoutError> for ReadyTimeoutError"],["impl PartialEq<TryReadyError> for TryReadyError"],["impl<T: PartialEq> PartialEq<TrySendError<T>> for TrySendError<T>"],["impl<T: PartialEq> PartialEq<SendError<T>> for SendError<T>"],["impl<T: PartialEq> PartialEq<SendTimeoutError<T>> for SendTimeoutError<T>"]], @@ -58,24 +58,24 @@ "ndarray":[["impl PartialEq<ErrorKind> for ErrorKind"],["impl PartialEq<ShapeError> for ShapeError"],["impl<'a, A, B, S, S2, D> PartialEq<&'a ArrayBase<S2, D>> for ArrayBase<S, D>where\n A: PartialEq<B>,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension,"],["impl<I> PartialEq<I> for Dim<I>where\n I: PartialEq + ?Sized,"],["impl<'a, A, B, S, S2, D> PartialEq<ArrayBase<S2, D>> for &'a ArrayBase<S, D>where\n A: PartialEq<B>,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension,"],["impl PartialEq<IxDynImpl> for IxDynImpl"],["impl<I: PartialEq + ?Sized> PartialEq<Dim<I>> for Dim<I>"],["impl PartialEq<Order> for Order"],["impl PartialEq<Slice> for Slice"],["impl<A, B, S, S2, D> PartialEq<ArrayBase<S2, D>> for ArrayBase<S, D>where\n A: PartialEq<B>,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension,"],["impl PartialEq<Axis> for Axis"],["impl<T> PartialEq<MathCell<T>> for MathCell<T>where\n T: Copy + PartialEq,"],["impl PartialEq<SliceInfoElem> for SliceInfoElem"]], "num_complex":[["impl<T: PartialEq> PartialEq<Complex<T>> for Complex<T>"],["impl<E: PartialEq> PartialEq<ParseComplexError<E>> for ParseComplexError<E>"]], "num_integer":[["impl<A: PartialEq> PartialEq<ExtendedGcd<A>> for ExtendedGcd<A>"]], -"object_store":[["impl PartialEq<Path> for Path"],["impl PartialEq<ObjectMeta> for ObjectMeta"],["impl<'a> PartialEq<PathPart<'a>> for PathPart<'a>"]], +"object_store":[["impl<'a> PartialEq<PathPart<'a>> for PathPart<'a>"],["impl PartialEq<ObjectMeta> for ObjectMeta"],["impl PartialEq<Path> for Path"]], "once_cell":[["impl<T: PartialEq> PartialEq<OnceCell<T>> for OnceCell<T>"],["impl<T: PartialEq> PartialEq<OnceCell<T>> for OnceCell<T>"]], "parking_lot":[["impl PartialEq<WaitTimeoutResult> for WaitTimeoutResult"],["impl PartialEq<OnceState> for OnceState"]], "parking_lot_core":[["impl PartialEq<RequeueOp> for RequeueOp"],["impl PartialEq<UnparkToken> for UnparkToken"],["impl PartialEq<FilterOp> for FilterOp"],["impl PartialEq<ParkToken> for ParkToken"],["impl PartialEq<ParkResult> for ParkResult"],["impl PartialEq<UnparkResult> for UnparkResult"]], "parquet2":[["impl PartialEq<&dyn Statistics> for &dyn Statistics"],["impl PartialEq<ColumnDescriptor> for ColumnDescriptor"],["impl PartialEq<FixedLenStatistics> for FixedLenStatistics"],["impl PartialEq<SortOrder> for SortOrder"],["impl PartialEq<Feature> for Feature"],["impl PartialEq<Descriptor> for Descriptor"],["impl PartialEq<PageMetaData> for PageMetaData"],["impl PartialEq<ColumnOrder> for ColumnOrder"],["impl PartialEq<FixedLenByteIndex> for FixedLenByteIndex"],["impl PartialEq<Encoding> for Encoding"],["impl PartialEq<CompressionOptions> for CompressionOptions"],["impl PartialEq<FieldInfo> for FieldInfo"],["impl PartialEq<TimeUnit> for TimeUnit"],["impl PartialEq<ZstdLevel> for ZstdLevel"],["impl PartialEq<GroupConvertedType> for GroupConvertedType"],["impl PartialEq<PageType> for PageType"],["impl PartialEq<WriteOptions> for WriteOptions"],["impl PartialEq<Interval> for Interval"],["impl PartialEq<PrimitiveType> for PrimitiveType"],["impl<'a> PartialEq<FilteredHybridEncoded<'a>> for FilteredHybridEncoded<'a>"],["impl PartialEq<BooleanIndex> for BooleanIndex"],["impl PartialEq<PrimitiveLogicalType> for PrimitiveLogicalType"],["impl PartialEq<FilteredPage> for FilteredPage"],["impl<T: PartialEq + NativeType> PartialEq<NativeIndex<T>> for NativeIndex<T>"],["impl PartialEq<Repetition> for Repetition"],["impl PartialEq<dyn Index + '_> for dyn Index + '_"],["impl<'a> PartialEq<HybridEncoded<'a>> for HybridEncoded<'a>"],["impl PartialEq<BoundaryOrder> for BoundaryOrder"],["impl<T: PartialEq> PartialEq<PageIndex<T>> for PageIndex<T>"],["impl PartialEq<ByteIndex> for ByteIndex"],["impl<'a> PartialEq<HybridEncoded<'a>> for HybridEncoded<'a>"],["impl PartialEq<GzipLevel> for GzipLevel"],["impl PartialEq<BinaryStatistics> for BinaryStatistics"],["impl PartialEq<BooleanStatistics> for BooleanStatistics"],["impl PartialEq<ParquetType> for ParquetType"],["impl PartialEq<IntegerType> for IntegerType"],["impl PartialEq<PhysicalType> for PhysicalType"],["impl PartialEq<BrotliLevel> for BrotliLevel"],["impl PartialEq<Version> for Version"],["impl PartialEq<PrimitiveConvertedType> for PrimitiveConvertedType"],["impl PartialEq<Compression> for Compression"],["impl<'a, I: PartialEq + Iterator<Item = Result<HybridEncoded<'a>, Error>>> PartialEq<FilteredHybridBitmapIter<'a, I>> for FilteredHybridBitmapIter<'a, I>"],["impl PartialEq<GroupLogicalType> for GroupLogicalType"],["impl<T: PartialEq + NativeType> PartialEq<PrimitiveStatistics<T>> for PrimitiveStatistics<T>"]], "parquet_format_safe":[["impl PartialEq<TimestampType> for TimestampType"],["impl PartialEq<BloomFilterHash> for BloomFilterHash"],["impl PartialEq<OffsetIndex> for OffsetIndex"],["impl PartialEq<PageHeader> for PageHeader"],["impl PartialEq<TimeType> for TimeType"],["impl PartialEq<AesGcmCtrV1> for AesGcmCtrV1"],["impl PartialEq<ProtocolErrorKind> for ProtocolErrorKind"],["impl PartialEq<ColumnIndex> for ColumnIndex"],["impl PartialEq<IndexPageHeader> for IndexPageHeader"],["impl PartialEq<TListIdentifier> for TListIdentifier"],["impl PartialEq<PageEncodingStats> for PageEncodingStats"],["impl PartialEq<XxHash> for XxHash"],["impl PartialEq<MicroSeconds> for MicroSeconds"],["impl PartialEq<Type> for Type"],["impl PartialEq<ColumnOrder> for ColumnOrder"],["impl PartialEq<SchemaElement> for SchemaElement"],["impl PartialEq<CompressionCodec> for CompressionCodec"],["impl PartialEq<TType> for TType"],["impl PartialEq<BoundaryOrder> for BoundaryOrder"],["impl PartialEq<TFieldIdentifier> for TFieldIdentifier"],["impl PartialEq<TStructIdentifier> for TStructIdentifier"],["impl PartialEq<Statistics> for Statistics"],["impl PartialEq<TimeUnit> for TimeUnit"],["impl PartialEq<UUIDType> for UUIDType"],["impl PartialEq<ColumnChunk> for ColumnChunk"],["impl PartialEq<FileCryptoMetaData> for FileCryptoMetaData"],["impl PartialEq<EnumType> for EnumType"],["impl PartialEq<EncryptionAlgorithm> for EncryptionAlgorithm"],["impl PartialEq<SplitBlockAlgorithm> for SplitBlockAlgorithm"],["impl PartialEq<ProtocolError> for ProtocolError"],["impl PartialEq<SortingColumn> for SortingColumn"],["impl PartialEq<TypeDefinedOrder> for TypeDefinedOrder"],["impl PartialEq<ColumnMetaData> for ColumnMetaData"],["impl PartialEq<AesGcmV1> for AesGcmV1"],["impl PartialEq<Uncompressed> for Uncompressed"],["impl PartialEq<RowGroup> for RowGroup"],["impl PartialEq<JsonType> for JsonType"],["impl PartialEq<NanoSeconds> for NanoSeconds"],["impl PartialEq<DecimalType> for DecimalType"],["impl PartialEq<FieldRepetitionType> for FieldRepetitionType"],["impl PartialEq<KeyValue> for KeyValue"],["impl PartialEq<DataPageHeaderV2> for DataPageHeaderV2"],["impl PartialEq<Encoding> for Encoding"],["impl PartialEq<IntType> for IntType"],["impl PartialEq<TransportErrorKind> for TransportErrorKind"],["impl PartialEq<FileMetaData> for FileMetaData"],["impl PartialEq<DictionaryPageHeader> for DictionaryPageHeader"],["impl PartialEq<TransportError> for TransportError"],["impl PartialEq<BloomFilterHeader> for BloomFilterHeader"],["impl PartialEq<EncryptionWithFooterKey> for EncryptionWithFooterKey"],["impl PartialEq<ColumnCryptoMetaData> for ColumnCryptoMetaData"],["impl PartialEq<ConvertedType> for ConvertedType"],["impl PartialEq<TMessageType> for TMessageType"],["impl PartialEq<EncryptionWithColumnKey> for EncryptionWithColumnKey"],["impl PartialEq<NullType> for NullType"],["impl PartialEq<ApplicationError> for ApplicationError"],["impl PartialEq<PageLocation> for PageLocation"],["impl PartialEq<MilliSeconds> for MilliSeconds"],["impl PartialEq<DateType> for DateType"],["impl PartialEq<BloomFilterAlgorithm> for BloomFilterAlgorithm"],["impl PartialEq<LogicalType> for LogicalType"],["impl PartialEq<TMessageIdentifier> for TMessageIdentifier"],["impl PartialEq<BsonType> for BsonType"],["impl PartialEq<ListType> for ListType"],["impl PartialEq<PageType> for PageType"],["impl PartialEq<BloomFilterCompression> for BloomFilterCompression"],["impl PartialEq<ApplicationErrorKind> for ApplicationErrorKind"],["impl PartialEq<DataPageHeader> for DataPageHeader"],["impl PartialEq<TMapIdentifier> for TMapIdentifier"],["impl PartialEq<MapType> for MapType"],["impl PartialEq<TSetIdentifier> for TSetIdentifier"],["impl PartialEq<StringType> for StringType"]], -"polars_arrow":[["impl<T: IsFloat + PartialEq> PartialEq<OrdFloat<T>> for OrdFloat<T>"],["impl PartialEq<QuantileInterpolOptions> for QuantileInterpolOptions"]], -"polars_core":[["impl PartialEq<IsSorted> for IsSorted"],["impl PartialEq<GroupsIdx> for GroupsIdx"],["impl PartialEq<Schema> for Schema"],["impl PartialEq<Wrap<Series>> for Wrap<Series>"],["impl PartialEq<JoinValidation> for JoinValidation"],["impl PartialEq<GroupsProxy> for GroupsProxy"],["impl PartialEq<Field> for Field"],["impl PartialEq<SortOptions> for SortOptions"],["impl PartialEq<JoinArgs> for JoinArgs"],["impl PartialEq<DataFrame> for DataFrame"],["impl PartialEq<DataType> for DataType"],["impl PartialEq<AnyValue<'_>> for AnyValue<'_>"],["impl PartialEq<MeltArgs> for MeltArgs"],["impl PartialEq<JoinType> for JoinType"],["impl PartialEq<NullBehavior> for NullBehavior"],["impl PartialEq<DataType> for DataType"],["impl PartialEq<Series> for Series"],["impl PartialEq<TimeUnit> for TimeUnit"],["impl PartialEq<UniqueKeepStrategy> for UniqueKeepStrategy"],["impl PartialEq<CloudOptions> for CloudOptions"],["impl<'a> PartialEq<Row<'a>> for Row<'a>"]], -"polars_io":[["impl PartialEq<CsvEncoding> for CsvEncoding"],["impl PartialEq<BrotliLevel> for BrotliLevel"],["impl PartialEq<GzipLevel> for GzipLevel"],["impl PartialEq<ParallelStrategy> for ParallelStrategy"],["impl PartialEq<ZstdLevel> for ZstdLevel"],["impl PartialEq<NullValues> for NullValues"],["impl PartialEq<RowCount> for RowCount"],["impl PartialEq<ParquetCompression> for ParquetCompression"],["impl PartialEq<IpcCompression> for IpcCompression"]], +"polars_arrow":[["impl PartialEq<QuantileInterpolOptions> for QuantileInterpolOptions"],["impl<T: IsFloat + PartialEq> PartialEq<OrdFloat<T>> for OrdFloat<T>"]], +"polars_core":[["impl PartialEq<CloudOptions> for CloudOptions"],["impl<'a> PartialEq<Row<'a>> for Row<'a>"],["impl PartialEq<Field> for Field"],["impl PartialEq<UniqueKeepStrategy> for UniqueKeepStrategy"],["impl PartialEq<TimeUnit> for TimeUnit"],["impl PartialEq<JoinArgs> for JoinArgs"],["impl PartialEq<DataFrame> for DataFrame"],["impl PartialEq<AnyValue<'_>> for AnyValue<'_>"],["impl PartialEq<DataType> for DataType"],["impl PartialEq<SortOptions> for SortOptions"],["impl PartialEq<GroupsProxy> for GroupsProxy"],["impl PartialEq<DataType> for DataType"],["impl PartialEq<JoinType> for JoinType"],["impl PartialEq<Schema> for Schema"],["impl PartialEq<Series> for Series"],["impl PartialEq<IsSorted> for IsSorted"],["impl PartialEq<MeltArgs> for MeltArgs"],["impl PartialEq<GroupsIdx> for GroupsIdx"],["impl PartialEq<NullBehavior> for NullBehavior"],["impl PartialEq<Wrap<Series>> for Wrap<Series>"],["impl PartialEq<JoinValidation> for JoinValidation"]], +"polars_io":[["impl PartialEq<IpcCompression> for IpcCompression"],["impl PartialEq<ParquetCompression> for ParquetCompression"],["impl PartialEq<GzipLevel> for GzipLevel"],["impl PartialEq<ZstdLevel> for ZstdLevel"],["impl PartialEq<ParallelStrategy> for ParallelStrategy"],["impl PartialEq<NullValues> for NullValues"],["impl PartialEq<BrotliLevel> for BrotliLevel"],["impl PartialEq<RowCount> for RowCount"],["impl PartialEq<CsvEncoding> for CsvEncoding"]], "polars_ops":[["impl PartialEq<SearchSortedSide> for SearchSortedSide"]], -"polars_plan":[["impl PartialEq<GroupbyOptions> for GroupbyOptions"],["impl PartialEq<FunctionOptions> for FunctionOptions"],["impl PartialEq<IpcWriterOptions> for IpcWriterOptions"],["impl PartialEq<FileScanOptions> for FileScanOptions"],["impl PartialEq<ParquetWriteOptions> for ParquetWriteOptions"],["impl PartialEq<DistinctOptions> for DistinctOptions"],["impl PartialEq<ParquetOptions> for ParquetOptions"],["impl PartialEq<UnionOptions> for UnionOptions"],["impl PartialEq<Excluded> for Excluded"],["impl PartialEq<JoinOptions> for JoinOptions"],["impl PartialEq<Expr> for Expr"],["impl PartialEq<WindowMapping> for WindowMapping"],["impl PartialEq<ApplyOptions> for ApplyOptions"],["impl PartialEq<WindowOptions> for WindowOptions"],["impl PartialEq<LogicalPlanUdfOptions> for LogicalPlanUdfOptions"],["impl PartialEq<SpecialEq<Series>> for SpecialEq<Series>"],["impl PartialEq<LiteralValue> for LiteralValue"],["impl PartialEq<FileFingerPrint> for FileFingerPrint"],["impl PartialEq<AggExpr> for AggExpr"],["impl PartialEq<BooleanFunction> for BooleanFunction"],["impl PartialEq<UnsafeBool> for UnsafeBool"],["impl PartialEq<AnonymousScanOptions> for AnonymousScanOptions"],["impl PartialEq<FunctionNode> for FunctionNode"],["impl PartialEq<SortArguments> for SortArguments"],["impl PartialEq<FunctionExpr> for FunctionExpr"],["impl PartialEq<IpcScanOptions> for IpcScanOptions"],["impl PartialEq<AexprNode> for AexprNode"],["impl<T: ?Sized> PartialEq<SpecialEq<Arc<T>>> for SpecialEq<Arc<T>>"],["impl PartialEq<CsvParserOptions> for CsvParserOptions"],["impl PartialEq<Operator> for Operator"],["impl PartialEq<RollingCovOptions> for RollingCovOptions"],["impl PartialEq<StrptimeOptions> for StrptimeOptions"],["impl PartialEq<FileScan> for FileScan"]], -"polars_time":[["impl PartialEq<Pattern> for Pattern"],["impl PartialEq<DynamicGroupOptions> for DynamicGroupOptions"],["impl PartialEq<StartBy> for StartBy"],["impl PartialEq<Duration> for Duration"],["impl PartialEq<RollingGroupOptions> for RollingGroupOptions"],["impl PartialEq<ClosedWindow> for ClosedWindow"],["impl PartialEq<TruncateOptions> for TruncateOptions"]], +"polars_plan":[["impl PartialEq<IpcWriterOptions> for IpcWriterOptions"],["impl PartialEq<WindowMapping> for WindowMapping"],["impl PartialEq<GroupbyOptions> for GroupbyOptions"],["impl PartialEq<CsvParserOptions> for CsvParserOptions"],["impl PartialEq<AggExpr> for AggExpr"],["impl PartialEq<ApplyOptions> for ApplyOptions"],["impl PartialEq<AnonymousScanOptions> for AnonymousScanOptions"],["impl PartialEq<LogicalPlanUdfOptions> for LogicalPlanUdfOptions"],["impl PartialEq<ParquetWriteOptions> for ParquetWriteOptions"],["impl PartialEq<StrptimeOptions> for StrptimeOptions"],["impl PartialEq<WindowOptions> for WindowOptions"],["impl PartialEq<Operator> for Operator"],["impl PartialEq<UnionOptions> for UnionOptions"],["impl PartialEq<LiteralValue> for LiteralValue"],["impl PartialEq<Expr> for Expr"],["impl PartialEq<FileScan> for FileScan"],["impl PartialEq<AexprNode> for AexprNode"],["impl PartialEq<IpcScanOptions> for IpcScanOptions"],["impl PartialEq<Excluded> for Excluded"],["impl PartialEq<SpecialEq<Series>> for SpecialEq<Series>"],["impl PartialEq<FileFingerPrint> for FileFingerPrint"],["impl PartialEq<FunctionOptions> for FunctionOptions"],["impl PartialEq<SortArguments> for SortArguments"],["impl PartialEq<ParquetOptions> for ParquetOptions"],["impl PartialEq<JoinOptions> for JoinOptions"],["impl PartialEq<BooleanFunction> for BooleanFunction"],["impl PartialEq<FunctionExpr> for FunctionExpr"],["impl PartialEq<UnsafeBool> for UnsafeBool"],["impl PartialEq<FunctionNode> for FunctionNode"],["impl PartialEq<FileScanOptions> for FileScanOptions"],["impl<T: ?Sized> PartialEq<SpecialEq<Arc<T>>> for SpecialEq<Arc<T>>"],["impl PartialEq<RollingCovOptions> for RollingCovOptions"],["impl PartialEq<DistinctOptions> for DistinctOptions"]], +"polars_time":[["impl PartialEq<DynamicGroupOptions> for DynamicGroupOptions"],["impl PartialEq<Duration> for Duration"],["impl PartialEq<RollingGroupOptions> for RollingGroupOptions"],["impl PartialEq<ClosedWindow> for ClosedWindow"],["impl PartialEq<Pattern> for Pattern"],["impl PartialEq<TruncateOptions> for TruncateOptions"],["impl PartialEq<StartBy> for StartBy"]], "polars_utils":[["impl PartialEq<Node> for Node"]], "ppv_lite86":[["impl PartialEq<vec256_storage> for vec256_storage"],["impl PartialEq<vec128_storage> for vec128_storage"],["impl PartialEq<vec512_storage> for vec512_storage"]], "proc_macro2":[["impl PartialEq<Ident> for Ident"],["impl PartialEq<Delimiter> for Delimiter"],["impl PartialEq<Spacing> for Spacing"],["impl<T> PartialEq<T> for Identwhere\n T: ?Sized + AsRef<str>,"]], "pyo3":[["impl PartialEq<(u8, u8)> for PythonVersionInfo<'_>"],["impl PartialEq<(u8, u8, u8)> for PythonVersionInfo<'_>"],["impl PartialEq<ElementType> for ElementType"],["impl PartialEq<PySliceIndices> for PySliceIndices"],["impl<'a> PartialEq<PyStringData<'a>> for PyStringData<'a>"]], "pyo3_ffi":[["impl PartialEq<PyMethodDef> for PyMethodDef"],["impl PartialEq<PyMethodDefPointer> for PyMethodDefPointer"],["impl PartialEq<PySendResult> for PySendResult"],["impl PartialEq<_PyStatus_TYPE> for _PyStatus_TYPE"],["impl PartialEq<PyMemberDef> for PyMemberDef"],["impl PartialEq<PyGetSetDef> for PyGetSetDef"],["impl PartialEq<PyGILState_STATE> for PyGILState_STATE"],["impl PartialEq<PyModuleDef_Slot> for PyModuleDef_Slot"]], -"quick_xml":[["impl PartialEq<AttrError> for AttrError"],["impl<'a> PartialEq<Namespace<'a>> for Namespace<'a>"],["impl<T: PartialEq> PartialEq<Attr<T>> for Attr<T>"],["impl<'a> PartialEq<BytesDecl<'a>> for BytesDecl<'a>"],["impl<'a> PartialEq<PrefixDeclaration<'a>> for PrefixDeclaration<'a>"],["impl<'a> PartialEq<LocalName<'a>> for LocalName<'a>"],["impl<'a> PartialEq<BytesEnd<'a>> for BytesEnd<'a>"],["impl<'a> PartialEq<BytesCData<'a>> for BytesCData<'a>"],["impl<'a> PartialEq<Attribute<'a>> for Attribute<'a>"],["impl PartialEq<QuoteLevel> for QuoteLevel"],["impl PartialEq<Decoder> for Decoder"],["impl<'a> PartialEq<Text<'a>> for Text<'a>"],["impl<'a> PartialEq<BytesStart<'a>> for BytesStart<'a>"],["impl<'ns> PartialEq<ResolveResult<'ns>> for ResolveResult<'ns>"],["impl<'a> PartialEq<PayloadEvent<'a>> for PayloadEvent<'a>"],["impl<'a> PartialEq<DeEvent<'a>> for DeEvent<'a>"],["impl<'a> PartialEq<Event<'a>> for Event<'a>"],["impl<'a> PartialEq<QName<'a>> for QName<'a>"],["impl<'a> PartialEq<BytesText<'a>> for BytesText<'a>"],["impl<'a> PartialEq<Prefix<'a>> for Prefix<'a>"]], +"quick_xml":[["impl<'a> PartialEq<QName<'a>> for QName<'a>"],["impl<'a> PartialEq<Event<'a>> for Event<'a>"],["impl<'a> PartialEq<Namespace<'a>> for Namespace<'a>"],["impl<'a> PartialEq<BytesStart<'a>> for BytesStart<'a>"],["impl<'ns> PartialEq<ResolveResult<'ns>> for ResolveResult<'ns>"],["impl<'a> PartialEq<Text<'a>> for Text<'a>"],["impl<'a> PartialEq<LocalName<'a>> for LocalName<'a>"],["impl<'a> PartialEq<PrefixDeclaration<'a>> for PrefixDeclaration<'a>"],["impl PartialEq<Decoder> for Decoder"],["impl<'a> PartialEq<BytesEnd<'a>> for BytesEnd<'a>"],["impl<'a> PartialEq<BytesCData<'a>> for BytesCData<'a>"],["impl<T: PartialEq> PartialEq<Attr<T>> for Attr<T>"],["impl<'a> PartialEq<Attribute<'a>> for Attribute<'a>"],["impl<'a> PartialEq<Prefix<'a>> for Prefix<'a>"],["impl<'a> PartialEq<PayloadEvent<'a>> for PayloadEvent<'a>"],["impl PartialEq<AttrError> for AttrError"],["impl<'a> PartialEq<BytesDecl<'a>> for BytesDecl<'a>"],["impl<'a> PartialEq<DeEvent<'a>> for DeEvent<'a>"],["impl PartialEq<QuoteLevel> for QuoteLevel"],["impl<'a> PartialEq<BytesText<'a>> for BytesText<'a>"]], "rand":[["impl PartialEq<WeightedError> for WeightedError"],["impl<X: PartialEq + SampleUniform + PartialOrd> PartialEq<WeightedIndex<X>> for WeightedIndex<X>where\n X::Sampler: PartialEq,"],["impl PartialEq<Bernoulli> for Bernoulli"],["impl PartialEq<SmallRng> for SmallRng"],["impl PartialEq<StdRng> for StdRng"],["impl<X: PartialEq + SampleUniform> PartialEq<Uniform<X>> for Uniform<X>where\n X::Sampler: PartialEq,"],["impl PartialEq<BernoulliError> for BernoulliError"],["impl<X: PartialEq> PartialEq<UniformFloat<X>> for UniformFloat<X>"],["impl PartialEq<StepRng> for StepRng"],["impl PartialEq<IndexVec> for IndexVec"],["impl<X: PartialEq> PartialEq<UniformInt<X>> for UniformInt<X>"]], "rand_chacha":[["impl PartialEq<ChaCha12Rng> for ChaCha12Rng"],["impl PartialEq<ChaCha12Core> for ChaCha12Core"],["impl PartialEq<ChaCha20Core> for ChaCha20Core"],["impl PartialEq<ChaCha8Core> for ChaCha8Core"],["impl PartialEq<ChaCha20Rng> for ChaCha20Rng"],["impl PartialEq<ChaCha8Rng> for ChaCha8Rng"]], "rand_distr":[["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<ZipfError> for ZipfError"],["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<PertError> for PertError"],["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<ZetaError> for ZetaError"],["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<TriangularError> for TriangularError"],["impl PartialEq<ChiSquaredError> for ChiSquaredError"],["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<Error> for Error"],["impl PartialEq<FisherFError> for FisherFError"],["impl PartialEq<BetaError> for BetaError"],["impl PartialEq<Error> for Error"]], @@ -89,11 +89,11 @@ "rustls_pemfile":[["impl PartialEq<Item> for Item"]], "same_file":[["impl PartialEq<Handle> for Handle"]], "sct":[["impl PartialEq<Error> for Error"]], -"serde":[["impl PartialEq<Error> for Error"],["impl PartialEq<IgnoredAny> for IgnoredAny"],["impl<'a> PartialEq<Unexpected<'a>> for Unexpected<'a>"]], -"serde_json":[["impl PartialEq<Value> for f64"],["impl PartialEq<u8> for Value"],["impl<'a> PartialEq<f32> for &'a Value"],["impl<'a> PartialEq<usize> for &'a mut Value"],["impl PartialEq<Value> for bool"],["impl<'a> PartialEq<u16> for &'a mut Value"],["impl<'a> PartialEq<u64> for &'a mut Value"],["impl PartialEq<Value> for u64"],["impl PartialEq<u64> for Value"],["impl<'a> PartialEq<u16> for &'a Value"],["impl PartialEq<Map<String, Value>> for Map<String, Value>"],["impl<'a> PartialEq<i8> for &'a Value"],["impl PartialEq<f64> for Value"],["impl<'a> PartialEq<Value> for &'a str"],["impl PartialEq<i8> for Value"],["impl<'a> PartialEq<i64> for &'a Value"],["impl<'a> PartialEq<u32> for &'a mut Value"],["impl<'a> PartialEq<isize> for &'a mut Value"],["impl PartialEq<Value> for isize"],["impl PartialEq<Value> for i8"],["impl PartialEq<Value> for u8"],["impl PartialEq<Value> for String"],["impl PartialEq<Value> for u16"],["impl<'a> PartialEq<bool> for &'a Value"],["impl PartialEq<u32> for Value"],["impl<'a> PartialEq<u8> for &'a mut Value"],["impl<'a> PartialEq<u32> for &'a Value"],["impl PartialEq<i16> for Value"],["impl<'a> PartialEq<isize> for &'a Value"],["impl<'a> PartialEq<f64> for &'a mut Value"],["impl PartialEq<isize> for Value"],["impl PartialEq<Value> for u32"],["impl<'a> PartialEq<i16> for &'a Value"],["impl PartialEq<f32> for Value"],["impl<'a> PartialEq<usize> for &'a Value"],["impl PartialEq<bool> for Value"],["impl PartialEq<Value> for usize"],["impl PartialEq<Value> for i16"],["impl PartialEq<Value> for Value"],["impl PartialEq<u16> for Value"],["impl PartialEq<usize> for Value"],["impl PartialEq<String> for Value"],["impl PartialEq<Value> for i64"],["impl<'a> PartialEq<i64> for &'a mut Value"],["impl PartialEq<Value> for str"],["impl<'a> PartialEq<i32> for &'a Value"],["impl PartialEq<Number> for Number"],["impl<'a> PartialEq<u8> for &'a Value"],["impl PartialEq<Category> for Category"],["impl<'a> PartialEq<i32> for &'a mut Value"],["impl<'a> PartialEq<f64> for &'a Value"],["impl PartialEq<Value> for f32"],["impl PartialEq<str> for Value"],["impl<'a> PartialEq<&'a str> for Value"],["impl<'a> PartialEq<f32> for &'a mut Value"],["impl PartialEq<i32> for Value"],["impl<'a> PartialEq<bool> for &'a mut Value"],["impl<'a> PartialEq<i8> for &'a mut Value"],["impl<'a> PartialEq<u64> for &'a Value"],["impl<'a> PartialEq<i16> for &'a mut Value"],["impl PartialEq<Value> for i32"],["impl PartialEq<i64> for Value"]], +"serde":[["impl<'a> PartialEq<Unexpected<'a>> for Unexpected<'a>"],["impl PartialEq<IgnoredAny> for IgnoredAny"],["impl PartialEq<Error> for Error"]], +"serde_json":[["impl PartialEq<Value> for bool"],["impl<'a> PartialEq<bool> for &'a mut Value"],["impl PartialEq<u64> for Value"],["impl<'a> PartialEq<usize> for &'a Value"],["impl PartialEq<Number> for Number"],["impl PartialEq<Value> for Value"],["impl PartialEq<Value> for f64"],["impl<'a> PartialEq<i32> for &'a Value"],["impl PartialEq<Value> for u32"],["impl<'a> PartialEq<f64> for &'a mut Value"],["impl PartialEq<Value> for u8"],["impl<'a> PartialEq<i64> for &'a Value"],["impl<'a> PartialEq<i16> for &'a Value"],["impl<'a> PartialEq<u16> for &'a Value"],["impl<'a> PartialEq<f32> for &'a mut Value"],["impl<'a> PartialEq<i16> for &'a mut Value"],["impl PartialEq<usize> for Value"],["impl<'a> PartialEq<f32> for &'a Value"],["impl<'a> PartialEq<&'a str> for Value"],["impl<'a> PartialEq<u32> for &'a Value"],["impl PartialEq<i16> for Value"],["impl PartialEq<Value> for isize"],["impl PartialEq<Value> for usize"],["impl PartialEq<str> for Value"],["impl<'a> PartialEq<isize> for &'a mut Value"],["impl PartialEq<Value> for i8"],["impl PartialEq<u32> for Value"],["impl<'a> PartialEq<usize> for &'a mut Value"],["impl<'a> PartialEq<i32> for &'a mut Value"],["impl PartialEq<Map<String, Value>> for Map<String, Value>"],["impl PartialEq<Value> for f32"],["impl<'a> PartialEq<u16> for &'a mut Value"],["impl<'a> PartialEq<Value> for &'a str"],["impl PartialEq<u16> for Value"],["impl PartialEq<f64> for Value"],["impl PartialEq<Value> for String"],["impl PartialEq<Value> for i16"],["impl<'a> PartialEq<u64> for &'a Value"],["impl PartialEq<Category> for Category"],["impl PartialEq<Value> for u16"],["impl<'a> PartialEq<isize> for &'a Value"],["impl<'a> PartialEq<u8> for &'a mut Value"],["impl PartialEq<i32> for Value"],["impl PartialEq<Value> for str"],["impl PartialEq<u8> for Value"],["impl<'a> PartialEq<u8> for &'a Value"],["impl PartialEq<isize> for Value"],["impl<'a> PartialEq<i8> for &'a Value"],["impl PartialEq<i64> for Value"],["impl PartialEq<Value> for i32"],["impl<'a> PartialEq<i64> for &'a mut Value"],["impl PartialEq<String> for Value"],["impl PartialEq<f32> for Value"],["impl PartialEq<i8> for Value"],["impl<'a> PartialEq<u64> for &'a mut Value"],["impl<'a> PartialEq<bool> for &'a Value"],["impl PartialEq<bool> for Value"],["impl<'a> PartialEq<f64> for &'a Value"],["impl PartialEq<Value> for i64"],["impl<'a> PartialEq<i8> for &'a mut Value"],["impl<'a> PartialEq<u32> for &'a mut Value"],["impl PartialEq<Value> for u64"]], "serde_urlencoded":[["impl PartialEq<Error> for Error"]], "signal_hook_registry":[["impl PartialEq<SigId> for SigId"]], -"simd_json":[["impl<'value> PartialEq<Value> for Value<'value>"],["impl<T> PartialEq<&[T]> for Valuewhere\n Value: PartialEq<T>,"],["impl PartialEq<u64> for Value"],["impl PartialEq<str> for Value"],["impl<'value, T> PartialEq<&T> for Value<'value>where\n Value<'value>: PartialEq<T>,"],["impl<'v> PartialEq<usize> for Value<'v>"],["impl<'v> PartialEq<f64> for Value<'v>"],["impl<'v> PartialEq<i16> for Value<'v>"],["impl PartialEq<Value> for Value"],["impl PartialEq<ErrorType> for ErrorType"],["impl<'value> PartialEq<Value<'value>> for Value<'value>"],["impl<'input> PartialEq<Node<'input>> for Node<'input>"],["impl<'v> PartialEq<i128> for Value<'v>"],["impl PartialEq<f32> for Value"],["impl<K, T, S> PartialEq<HashMap<K, T, S>> for Valuewhere\n K: AsRef<str> + Hash + Eq,\n Value: PartialEq<T>,\n S: BuildHasher,"],["impl PartialEq<Value<'_>> for Value"],["impl PartialEq<bool> for Value"],["impl PartialEq<u8> for Value"],["impl<'v> PartialEq<u8> for Value<'v>"],["impl PartialEq<i16> for Value"],["impl<'v> PartialEq<f32> for Value<'v>"],["impl<'v> PartialEq<i64> for Value<'v>"],["impl<'v> PartialEq<()> for Value<'v>"],["impl PartialEq<u32> for Value"],["impl<'v> PartialEq<u16> for Value<'v>"],["impl<'v> PartialEq<String> for Value<'v>"],["impl<'key> PartialEq<KnownKey<'key>> for KnownKey<'key>"],["impl PartialEq<f64> for Value"],["impl<'v> PartialEq<u128> for Value<'v>"],["impl PartialEq<i128> for Value"],["impl PartialEq<()> for Value"],["impl<'v> PartialEq<i32> for Value<'v>"],["impl PartialEq<usize> for Value"],["impl PartialEq<String> for Value"],["impl PartialEq<i64> for Value"],["impl PartialEq<i8> for Value"],["impl<'v> PartialEq<str> for Value<'v>"],["impl<'v, K, T, S> PartialEq<HashMap<K, T, S>> for Value<'v>where\n K: AsRef<str> + Hash + Eq,\n Value<'v>: PartialEq<T>,\n S: BuildHasher,"],["impl PartialEq<Error> for Error"],["impl<'v, T> PartialEq<&[T]> for Value<'v>where\n Value<'v>: PartialEq<T>,"],["impl<'v> PartialEq<&str> for Value<'v>"],["impl<'v> PartialEq<i8> for Value<'v>"],["impl PartialEq<&str> for Value"],["impl<'v> PartialEq<u64> for Value<'v>"],["impl<T> PartialEq<&T> for Valuewhere\n Value: PartialEq<T>,"],["impl PartialEq<i32> for Value"],["impl<'v> PartialEq<u32> for Value<'v>"],["impl<'v> PartialEq<bool> for Value<'v>"],["impl PartialEq<u16> for Value"],["impl PartialEq<u128> for Value"],["impl PartialEq<Error> for Error"]], +"simd_json":[["impl<'v> PartialEq<u128> for Value<'v>"],["impl PartialEq<bool> for Value"],["impl<'v> PartialEq<bool> for Value<'v>"],["impl PartialEq<i8> for Value"],["impl<'v> PartialEq<u32> for Value<'v>"],["impl PartialEq<String> for Value"],["impl PartialEq<i64> for Value"],["impl<'v> PartialEq<String> for Value<'v>"],["impl<K, T, S> PartialEq<HashMap<K, T, S>> for Valuewhere\n K: AsRef<str> + Hash + Eq,\n Value: PartialEq<T>,\n S: BuildHasher,"],["impl<'v> PartialEq<f64> for Value<'v>"],["impl<'v> PartialEq<f32> for Value<'v>"],["impl PartialEq<f64> for Value"],["impl PartialEq<u128> for Value"],["impl<T> PartialEq<&T> for Valuewhere\n Value: PartialEq<T>,"],["impl PartialEq<f32> for Value"],["impl PartialEq<ErrorType> for ErrorType"],["impl<'v, T> PartialEq<&[T]> for Value<'v>where\n Value<'v>: PartialEq<T>,"],["impl PartialEq<u16> for Value"],["impl PartialEq<i16> for Value"],["impl<'v> PartialEq<i16> for Value<'v>"],["impl PartialEq<u64> for Value"],["impl<'v> PartialEq<u8> for Value<'v>"],["impl PartialEq<i128> for Value"],["impl PartialEq<Value> for Value"],["impl<'input> PartialEq<Node<'input>> for Node<'input>"],["impl<'key> PartialEq<KnownKey<'key>> for KnownKey<'key>"],["impl PartialEq<str> for Value"],["impl<'v> PartialEq<str> for Value<'v>"],["impl<'value, T> PartialEq<&T> for Value<'value>where\n Value<'value>: PartialEq<T>,"],["impl PartialEq<i32> for Value"],["impl PartialEq<usize> for Value"],["impl PartialEq<Error> for Error"],["impl<'v> PartialEq<()> for Value<'v>"],["impl PartialEq<&str> for Value"],["impl<'v> PartialEq<u64> for Value<'v>"],["impl PartialEq<()> for Value"],["impl PartialEq<Error> for Error"],["impl<'v, K, T, S> PartialEq<HashMap<K, T, S>> for Value<'v>where\n K: AsRef<str> + Hash + Eq,\n Value<'v>: PartialEq<T>,\n S: BuildHasher,"],["impl PartialEq<u32> for Value"],["impl<'v> PartialEq<i8> for Value<'v>"],["impl PartialEq<Value<'_>> for Value"],["impl<'value> PartialEq<Value<'value>> for Value<'value>"],["impl<T> PartialEq<&[T]> for Valuewhere\n Value: PartialEq<T>,"],["impl<'v> PartialEq<&str> for Value<'v>"],["impl<'v> PartialEq<usize> for Value<'v>"],["impl<'v> PartialEq<u16> for Value<'v>"],["impl<'v> PartialEq<i128> for Value<'v>"],["impl<'value> PartialEq<Value> for Value<'value>"],["impl<'v> PartialEq<i32> for Value<'v>"],["impl PartialEq<u8> for Value"],["impl<'v> PartialEq<i64> for Value<'v>"]], "simdutf8":[["impl PartialEq<Utf8Error> for Utf8Error"],["impl PartialEq<Utf8Error> for Utf8Error"]], "smallvec":[["impl<A: Array, B: Array> PartialEq<SmallVec<B>> for SmallVec<A>where\n A::Item: PartialEq<B::Item>,"]], "smartstring":[["impl<Mode: SmartStringMode> PartialEq<str> for SmartString<Mode>"],["impl<Mode: SmartStringMode> PartialEq<SmartString<Mode>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> PartialEq<SmartString<Mode>> for str"],["impl<Mode: SmartStringMode> PartialEq<&str> for SmartString<Mode>"],["impl<Mode: SmartStringMode> PartialEq<SmartString<Mode>> for String"],["impl<Mode: SmartStringMode> PartialEq<SmartString<Mode>> for &str"],["impl<Mode: SmartStringMode> PartialEq<String> for SmartString<Mode>"]], @@ -101,7 +101,7 @@ "socket2":[["impl PartialEq<Domain> for Domain"],["impl PartialEq<RecvFlags> for RecvFlags"],["impl PartialEq<Protocol> for Protocol"],["impl PartialEq<Type> for Type"]], "sqlparser":[["impl PartialEq<ExactNumberInfo> for ExactNumberInfo"],["impl PartialEq<MinMaxValue> for MinMaxValue"],["impl PartialEq<FunctionArg> for FunctionArg"],["impl PartialEq<TokenWithLocation> for Token"],["impl PartialEq<Interval> for Interval"],["impl PartialEq<ParserError> for ParserError"],["impl PartialEq<SearchModifier> for SearchModifier"],["impl PartialEq<TableFactor> for TableFactor"],["impl PartialEq<IndexType> for IndexType"],["impl PartialEq<HiveDistributionStyle> for HiveDistributionStyle"],["impl PartialEq<RenameSelectItem> for RenameSelectItem"],["impl PartialEq<ListAgg> for ListAgg"],["impl PartialEq<CreateFunctionUsing> for CreateFunctionUsing"],["impl PartialEq<Statement> for Statement"],["impl PartialEq<SetOperator> for SetOperator"],["impl PartialEq<CopySource> for CopySource"],["impl PartialEq<OnInsert> for OnInsert"],["impl PartialEq<ReferentialAction> for ReferentialAction"],["impl PartialEq<HiveRowFormat> for HiveRowFormat"],["impl PartialEq<CopyTarget> for CopyTarget"],["impl PartialEq<TableAlias> for TableAlias"],["impl PartialEq<FunctionDefinition> for FunctionDefinition"],["impl PartialEq<FileFormat> for FileFormat"],["impl PartialEq<ContextModifier> for ContextModifier"],["impl PartialEq<ColumnOptionDef> for ColumnOptionDef"],["impl PartialEq<GeneratedAs> for GeneratedAs"],["impl PartialEq<TokenizerError> for TokenizerError"],["impl PartialEq<SequenceOptions> for SequenceOptions"],["impl PartialEq<Cte> for Cte"],["impl PartialEq<Password> for Password"],["impl PartialEq<IsOptional> for IsOptional"],["impl PartialEq<SelectInto> for SelectInto"],["impl PartialEq<ConflictTarget> for ConflictTarget"],["impl PartialEq<BinaryOperator> for BinaryOperator"],["impl PartialEq<OffsetRows> for OffsetRows"],["impl PartialEq<StageParamsObject> for StageParamsObject"],["impl PartialEq<Value> for Value"],["impl PartialEq<Whitespace> for Whitespace"],["impl PartialEq<OnConflict> for OnConflict"],["impl PartialEq<OnConflictAction> for OnConflictAction"],["impl PartialEq<DataType> for DataType"],["impl PartialEq<Distinct> for Distinct"],["impl PartialEq<TableWithJoins> for TableWithJoins"],["impl PartialEq<Array> for Array"],["impl PartialEq<Offset> for Offset"],["impl PartialEq<ExcludeSelectItem> for ExcludeSelectItem"],["impl PartialEq<Token> for Token"],["impl PartialEq<OrderByExpr> for OrderByExpr"],["impl PartialEq<DataLoadingOptionType> for DataLoadingOptionType"],["impl PartialEq<KillType> for KillType"],["impl PartialEq<NamedWindowDefinition> for NamedWindowDefinition"],["impl PartialEq<SqliteOnConflict> for SqliteOnConflict"],["impl PartialEq<DollarQuotedString> for DollarQuotedString"],["impl PartialEq<WildcardAdditionalOptions> for WildcardAdditionalOptions"],["impl PartialEq<CharLengthUnits> for CharLengthUnits"],["impl PartialEq<Word> for Word"],["impl PartialEq<ObjectName> for ObjectName"],["impl PartialEq<WindowFrameUnits> for WindowFrameUnits"],["impl PartialEq<ExceptSelectItem> for ExceptSelectItem"],["impl PartialEq<StageLoadSelectItem> for StageLoadSelectItem"],["impl PartialEq<Keyword> for Keyword"],["impl PartialEq<SetQuantifier> for SetQuantifier"],["impl PartialEq<CreateFunctionBody> for CreateFunctionBody"],["impl PartialEq<TrimWhereField> for TrimWhereField"],["impl PartialEq<HiveIOFormat> for HiveIOFormat"],["impl PartialEq<Fetch> for Fetch"],["impl PartialEq<CopyOption> for CopyOption"],["impl PartialEq<IdentWithAlias> for IdentWithAlias"],["impl PartialEq<FetchDirection> for FetchDirection"],["impl PartialEq<AlterTableOperation> for AlterTableOperation"],["impl PartialEq<DataLoadingOption> for DataLoadingOption"],["impl PartialEq<CopyLegacyCsvOption> for CopyLegacyCsvOption"],["impl PartialEq<UnaryOperator> for UnaryOperator"],["impl PartialEq<SetExpr> for SetExpr"],["impl PartialEq<LockType> for LockType"],["impl PartialEq<DoUpdate> for DoUpdate"],["impl PartialEq<OnCommit> for OnCommit"],["impl PartialEq<DropFunctionOption> for DropFunctionOption"],["impl PartialEq<Assignment> for Assignment"],["impl PartialEq<DataLoadingOptions> for DataLoadingOptions"],["impl PartialEq<WindowType> for WindowType"],["impl PartialEq<TransactionMode> for TransactionMode"],["impl PartialEq<Select> for Select"],["impl PartialEq<ColumnDef> for ColumnDef"],["impl PartialEq<ParserOptions> for ParserOptions"],["impl PartialEq<LockClause> for LockClause"],["impl PartialEq<JoinConstraint> for JoinConstraint"],["impl PartialEq<Values> for Values"],["impl PartialEq<SqlOption> for SqlOption"],["impl PartialEq<FunctionArgExpr> for FunctionArgExpr"],["impl PartialEq<HiveFormat> for HiveFormat"],["impl PartialEq<Table> for Table"],["impl PartialEq<ReplaceSelectItem> for ReplaceSelectItem"],["impl PartialEq<Token> for TokenWithLocation"],["impl PartialEq<WindowSpec> for WindowSpec"],["impl PartialEq<OperateFunctionArg> for OperateFunctionArg"],["impl PartialEq<Function> for Function"],["impl PartialEq<ArrayAgg> for ArrayAgg"],["impl PartialEq<KeyOrIndexDisplay> for KeyOrIndexDisplay"],["impl PartialEq<Join> for Join"],["impl PartialEq<ObjectType> for ObjectType"],["impl PartialEq<CloseCursor> for CloseCursor"],["impl PartialEq<ColumnOption> for ColumnOption"],["impl PartialEq<Privileges> for Privileges"],["impl PartialEq<GrantObjects> for GrantObjects"],["impl PartialEq<ArgMode> for ArgMode"],["impl PartialEq<MergeClause> for MergeClause"],["impl PartialEq<TokenWithLocation> for TokenWithLocation"],["impl PartialEq<WindowFrameBound> for WindowFrameBound"],["impl PartialEq<NonBlock> for NonBlock"],["impl PartialEq<FunctionBehavior> for FunctionBehavior"],["impl PartialEq<WindowFrame> for WindowFrame"],["impl PartialEq<SchemaName> for SchemaName"],["impl PartialEq<SelectItem> for SelectItem"],["impl PartialEq<Location> for Location"],["impl PartialEq<TimezoneInfo> for TimezoneInfo"],["impl PartialEq<DiscardObject> for DiscardObject"],["impl PartialEq<Ident> for Ident"],["impl PartialEq<AlterIndexOperation> for AlterIndexOperation"],["impl PartialEq<Top> for Top"],["impl PartialEq<ShowStatementFilter> for ShowStatementFilter"],["impl PartialEq<TableConstraint> for TableConstraint"],["impl PartialEq<Expr> for Expr"],["impl PartialEq<ShowCreateObject> for ShowCreateObject"],["impl PartialEq<ReplaceSelectElement> for ReplaceSelectElement"],["impl PartialEq<CreateTableBuilder> for CreateTableBuilder"],["impl PartialEq<DropFunctionDesc> for DropFunctionDesc"],["impl PartialEq<AnalyzeFormat> for AnalyzeFormat"],["impl PartialEq<AlterColumnOperation> for AlterColumnOperation"],["impl PartialEq<ListAggOnOverflow> for ListAggOnOverflow"],["impl PartialEq<Action> for Action"],["impl PartialEq<DateTimeField> for DateTimeField"],["impl PartialEq<CharacterLength> for CharacterLength"],["impl PartialEq<JsonOperator> for JsonOperator"],["impl PartialEq<CopyLegacyOption> for CopyLegacyOption"],["impl PartialEq<LateralView> for LateralView"],["impl PartialEq<With> for With"],["impl PartialEq<CommentObject> for CommentObject"],["impl PartialEq<TransactionIsolationLevel> for TransactionIsolationLevel"],["impl PartialEq<JoinOperator> for JoinOperator"],["impl PartialEq<Query> for Query"],["impl PartialEq<AddDropSync> for AddDropSync"],["impl PartialEq<TransactionAccessMode> for TransactionAccessMode"]], "strum":[["impl PartialEq<ParseError> for ParseError"]], -"sysinfo":[["impl PartialEq<Uid> for Uid"],["impl PartialEq<User> for User"],["impl PartialEq<CpuRefreshKind> for CpuRefreshKind"],["impl PartialEq<DiskUsage> for DiskUsage"],["impl PartialEq<ProcessRefreshKind> for ProcessRefreshKind"],["impl PartialEq<Signal> for Signal"],["impl PartialEq<Gid> for Gid"],["impl PartialEq<Disk> for Disk"],["impl PartialEq<DiskKind> for DiskKind"],["impl PartialEq<RefreshKind> for RefreshKind"],["impl PartialEq<ProcessStatus> for ProcessStatus"],["impl PartialEq<MacAddr> for MacAddr"],["impl PartialEq<Pid> for Pid"]], +"sysinfo":[["impl PartialEq<CpuRefreshKind> for CpuRefreshKind"],["impl PartialEq<Gid> for Gid"],["impl PartialEq<MacAddr> for MacAddr"],["impl PartialEq<RefreshKind> for RefreshKind"],["impl PartialEq<User> for User"],["impl PartialEq<ProcessStatus> for ProcessStatus"],["impl PartialEq<Pid> for Pid"],["impl PartialEq<Uid> for Uid"],["impl PartialEq<DiskKind> for DiskKind"],["impl PartialEq<ProcessRefreshKind> for ProcessRefreshKind"],["impl PartialEq<Signal> for Signal"],["impl PartialEq<Disk> for Disk"],["impl PartialEq<DiskUsage> for DiskUsage"]], "target_features":[["impl PartialEq<Architecture> for Architecture"],["impl PartialEq<Target> for Target"],["impl PartialEq<Feature> for Feature"]], "time":[["impl PartialEq<SteadyTime> for SteadyTime"],["impl PartialEq<ParseError> for ParseError"],["impl PartialEq<Tm> for Tm"],["impl PartialEq<Duration> for Duration"],["impl PartialEq<Timespec> for Timespec"],["impl PartialEq<OutOfRangeError> for OutOfRangeError"]], "tinyvec":[["impl<A: Array> PartialEq<&[<A as Array>::Item]> for TinyVec<A>where\n A::Item: PartialEq,"],["impl<A: Array> PartialEq<&[<A as Array>::Item]> for ArrayVec<A>where\n A::Item: PartialEq,"],["impl<'s, T> PartialEq<SliceVec<'s, T>> for SliceVec<'s, T>where\n T: PartialEq,"],["impl<A: Array> PartialEq<&A> for ArrayVec<A>where\n A::Item: PartialEq,"],["impl<'s, T> PartialEq<&[T]> for SliceVec<'s, T>where\n T: PartialEq,"],["impl<A: Array> PartialEq<ArrayVec<A>> for ArrayVec<A>where\n A::Item: PartialEq,"],["impl<A: Array> PartialEq<&A> for TinyVec<A>where\n A::Item: PartialEq,"],["impl<A: Array> PartialEq<TinyVec<A>> for TinyVec<A>where\n A::Item: PartialEq,"]], @@ -113,7 +113,7 @@ "unicode_normalization":[["impl PartialEq<IsNormalized> for IsNormalized"]], "untrusted":[["impl PartialEq<Input<'_>> for [u8]"],["impl PartialEq<[u8]> for Input<'_>"],["impl PartialEq<EndOfInput> for EndOfInput"],["impl PartialEq<Input<'_>> for Input<'_>"]], "url":[["impl PartialEq<OpaqueOrigin> for OpaqueOrigin"],["impl PartialEq<Url> for Url"],["impl PartialEq<ParseError> for ParseError"],["impl PartialEq<Origin> for Origin"],["impl<S, T> PartialEq<Host<T>> for Host<S>where\n S: PartialEq<T>,"],["impl PartialEq<SyntaxViolation> for SyntaxViolation"]], -"value_trait":[["impl PartialEq<i64> for StaticNode"],["impl PartialEq<f32> for StaticNode"],["impl PartialEq<String> for StaticNode"],["impl PartialEq<i128> for StaticNode"],["impl PartialEq<u32> for StaticNode"],["impl PartialEq<i16> for StaticNode"],["impl PartialEq<i8> for StaticNode"],["impl PartialEq<f64> for StaticNode"],["impl PartialEq<ExtendedValueType> for ExtendedValueType"],["impl PartialEq<i32> for StaticNode"],["impl PartialEq<ValueType> for ValueType"],["impl PartialEq<&str> for StaticNode"],["impl PartialEq<StaticNode> for StaticNode"],["impl PartialEq<()> for StaticNode"],["impl PartialEq<u128> for StaticNode"],["impl PartialEq<str> for StaticNode"],["impl PartialEq<bool> for StaticNode"],["impl PartialEq<u64> for StaticNode"],["impl PartialEq<u16> for StaticNode"],["impl PartialEq<AccessError> for AccessError"],["impl PartialEq<u8> for StaticNode"],["impl PartialEq<usize> for StaticNode"]], +"value_trait":[["impl PartialEq<u128> for StaticNode"],["impl PartialEq<u64> for StaticNode"],["impl PartialEq<()> for StaticNode"],["impl PartialEq<bool> for StaticNode"],["impl PartialEq<i16> for StaticNode"],["impl PartialEq<u16> for StaticNode"],["impl PartialEq<i128> for StaticNode"],["impl PartialEq<ExtendedValueType> for ExtendedValueType"],["impl PartialEq<f32> for StaticNode"],["impl PartialEq<str> for StaticNode"],["impl PartialEq<i32> for StaticNode"],["impl PartialEq<usize> for StaticNode"],["impl PartialEq<u32> for StaticNode"],["impl PartialEq<i64> for StaticNode"],["impl PartialEq<StaticNode> for StaticNode"],["impl PartialEq<&str> for StaticNode"],["impl PartialEq<ValueType> for ValueType"],["impl PartialEq<u8> for StaticNode"],["impl PartialEq<AccessError> for AccessError"],["impl PartialEq<String> for StaticNode"],["impl PartialEq<f64> for StaticNode"],["impl PartialEq<i8> for StaticNode"]], "webpki":[["impl PartialEq<Error> for Error"],["impl PartialEq<InvalidDnsNameError> for InvalidDnsNameError"],["impl PartialEq<Time> for Time"]], "zstd_safe":[["impl PartialEq<CParameter> for CParameter"]], "zstd_sys":[["impl PartialEq<ZSTD_EndDirective> for ZSTD_EndDirective"],["impl PartialEq<ZSTD_cParameter> for ZSTD_cParameter"],["impl PartialEq<ZSTD_strategy> for ZSTD_strategy"],["impl PartialEq<ZSTD_ResetDirective> for ZSTD_ResetDirective"],["impl PartialEq<ZSTD_dParameter> for ZSTD_dParameter"]] diff --git a/implementors/core/cmp/trait.PartialOrd.js b/implementors/core/cmp/trait.PartialOrd.js index bad391230fad..4cf49329dfcf 100644 --- a/implementors/core/cmp/trait.PartialOrd.js +++ b/implementors/core/cmp/trait.PartialOrd.js @@ -4,7 +4,7 @@ "arrow2":[["impl PartialOrd<i256> for i256"]], "bytes":[["impl PartialOrd<String> for Bytes"],["impl PartialOrd<Bytes> for Bytes"],["impl PartialOrd<Bytes> for [u8]"],["impl PartialOrd<str> for BytesMut"],["impl PartialOrd<Bytes> for &[u8]"],["impl PartialOrd<[u8]> for BytesMut"],["impl<'a, T: ?Sized> PartialOrd<&'a T> for BytesMutwhere\n BytesMut: PartialOrd<T>,"],["impl PartialOrd<BytesMut> for [u8]"],["impl PartialOrd<Vec<u8, Global>> for Bytes"],["impl PartialOrd<Bytes> for str"],["impl PartialOrd<Bytes> for &str"],["impl PartialOrd<BytesMut> for String"],["impl PartialOrd<BytesMut> for str"],["impl PartialOrd<[u8]> for Bytes"],["impl PartialOrd<String> for BytesMut"],["impl PartialOrd<Vec<u8, Global>> for BytesMut"],["impl PartialOrd<BytesMut> for BytesMut"],["impl<'a, T: ?Sized> PartialOrd<&'a T> for Byteswhere\n Bytes: PartialOrd<T>,"],["impl PartialOrd<BytesMut> for &str"],["impl PartialOrd<Bytes> for String"],["impl PartialOrd<BytesMut> for Vec<u8>"],["impl PartialOrd<BytesMut> for &[u8]"],["impl PartialOrd<str> for Bytes"],["impl PartialOrd<Bytes> for Vec<u8>"]], "chrono":[["impl PartialOrd<Months> for Months"],["impl PartialOrd<Days> for Days"],["impl<Tz: TimeZone> PartialOrd<Date<Tz>> for Date<Tz>"],["impl PartialOrd<NaiveDate> for NaiveDate"],["impl PartialOrd<NaiveDateTime> for NaiveDateTime"],["impl<Tz: TimeZone, Tz2: TimeZone> PartialOrd<DateTime<Tz2>> for DateTime<Tz>"],["impl PartialOrd<IsoWeek> for IsoWeek"],["impl PartialOrd<NaiveTime> for NaiveTime"],["impl PartialOrd<Month> for Month"],["impl PartialOrd<Duration> for Duration"]], -"ciborium":[["impl PartialOrd<Value> for Value"],["impl<V: PartialOrd, const TAG: u64> PartialOrd<Required<V, TAG>> for Required<V, TAG>"],["impl PartialOrd<CanonicalValue> for CanonicalValue"],["impl<V: PartialOrd, const TAG: u64> PartialOrd<Accepted<V, TAG>> for Accepted<V, TAG>"],["impl<V: PartialOrd> PartialOrd<Captured<V>> for Captured<V>"],["impl PartialOrd<Integer> for Integer"]], +"ciborium":[["impl PartialOrd<CanonicalValue> for CanonicalValue"],["impl PartialOrd<Integer> for Integer"],["impl<V: PartialOrd> PartialOrd<Captured<V>> for Captured<V>"],["impl PartialOrd<Value> for Value"],["impl<V: PartialOrd, const TAG: u64> PartialOrd<Accepted<V, TAG>> for Accepted<V, TAG>"],["impl<V: PartialOrd, const TAG: u64> PartialOrd<Required<V, TAG>> for Required<V, TAG>"]], "comfy_table":[["impl PartialOrd<Attribute> for Attribute"],["impl PartialOrd<Color> for Color"]], "crossbeam_epoch":[["impl<'g, T: ?Sized + Pointable> PartialOrd<Shared<'g, T>> for Shared<'g, T>"]], "crossterm":[["impl PartialOrd<KeyCode> for KeyCode"],["impl PartialOrd<MouseEvent> for MouseEvent"],["impl PartialOrd<KeyEventKind> for KeyEventKind"],["impl PartialOrd<MouseButton> for MouseButton"],["impl PartialOrd<Colored> for Colored"],["impl PartialOrd<Attribute> for Attribute"],["impl PartialOrd<KeyModifiers> for KeyModifiers"],["impl PartialOrd<MediaKeyCode> for MediaKeyCode"],["impl PartialOrd<Event> for Event"],["impl PartialOrd<Color> for Color"],["impl PartialOrd<KeyEvent> for KeyEvent"],["impl PartialOrd<MouseEventKind> for MouseEventKind"],["impl PartialOrd<KeyEventState> for KeyEventState"],["impl PartialOrd<KeyboardEnhancementFlags> for KeyboardEnhancementFlags"],["impl PartialOrd<ModifierKeyCode> for ModifierKeyCode"],["impl PartialOrd<ClearType> for ClearType"]], @@ -27,7 +27,7 @@ "mime":[["impl<'a> PartialOrd<Name<'a>> for Name<'a>"],["impl PartialOrd<Mime> for Mime"]], "mio":[["impl PartialOrd<Interest> for Interest"],["impl PartialOrd<Token> for Token"]], "ndarray":[["impl PartialOrd<Axis> for Axis"],["impl<T> PartialOrd<MathCell<T>> for MathCell<T>where\n T: Copy + PartialOrd,"]], -"object_store":[["impl PartialOrd<Path> for Path"],["impl<'a> PartialOrd<PathPart<'a>> for PathPart<'a>"]], +"object_store":[["impl<'a> PartialOrd<PathPart<'a>> for PathPart<'a>"],["impl PartialOrd<Path> for Path"]], "parquet_format_safe":[["impl PartialOrd<Statistics> for Statistics"],["impl PartialOrd<DataPageHeader> for DataPageHeader"],["impl PartialOrd<BloomFilterHeader> for BloomFilterHeader"],["impl PartialOrd<EncryptionWithFooterKey> for EncryptionWithFooterKey"],["impl PartialOrd<FieldRepetitionType> for FieldRepetitionType"],["impl PartialOrd<TypeDefinedOrder> for TypeDefinedOrder"],["impl PartialOrd<KeyValue> for KeyValue"],["impl PartialOrd<Uncompressed> for Uncompressed"],["impl PartialOrd<FileMetaData> for FileMetaData"],["impl PartialOrd<Encoding> for Encoding"],["impl PartialOrd<EnumType> for EnumType"],["impl PartialOrd<TimeUnit> for TimeUnit"],["impl PartialOrd<BloomFilterCompression> for BloomFilterCompression"],["impl PartialOrd<IntType> for IntType"],["impl PartialOrd<JsonType> for JsonType"],["impl PartialOrd<DecimalType> for DecimalType"],["impl PartialOrd<UUIDType> for UUIDType"],["impl PartialOrd<ColumnIndex> for ColumnIndex"],["impl PartialOrd<XxHash> for XxHash"],["impl PartialOrd<CompressionCodec> for CompressionCodec"],["impl PartialOrd<AesGcmCtrV1> for AesGcmCtrV1"],["impl PartialOrd<ColumnChunk> for ColumnChunk"],["impl PartialOrd<ColumnMetaData> for ColumnMetaData"],["impl PartialOrd<PageType> for PageType"],["impl PartialOrd<IndexPageHeader> for IndexPageHeader"],["impl PartialOrd<PageHeader> for PageHeader"],["impl PartialOrd<OffsetIndex> for OffsetIndex"],["impl PartialOrd<DataPageHeaderV2> for DataPageHeaderV2"],["impl PartialOrd<StringType> for StringType"],["impl PartialOrd<PageLocation> for PageLocation"],["impl PartialOrd<Type> for Type"],["impl PartialOrd<ListType> for ListType"],["impl PartialOrd<AesGcmV1> for AesGcmV1"],["impl PartialOrd<SplitBlockAlgorithm> for SplitBlockAlgorithm"],["impl PartialOrd<ConvertedType> for ConvertedType"],["impl PartialOrd<TimestampType> for TimestampType"],["impl PartialOrd<DateType> for DateType"],["impl PartialOrd<BloomFilterHash> for BloomFilterHash"],["impl PartialOrd<TimeType> for TimeType"],["impl PartialOrd<NanoSeconds> for NanoSeconds"],["impl PartialOrd<BloomFilterAlgorithm> for BloomFilterAlgorithm"],["impl PartialOrd<LogicalType> for LogicalType"],["impl PartialOrd<MapType> for MapType"],["impl PartialOrd<FileCryptoMetaData> for FileCryptoMetaData"],["impl PartialOrd<BoundaryOrder> for BoundaryOrder"],["impl PartialOrd<MicroSeconds> for MicroSeconds"],["impl PartialOrd<ColumnOrder> for ColumnOrder"],["impl PartialOrd<RowGroup> for RowGroup"],["impl PartialOrd<DictionaryPageHeader> for DictionaryPageHeader"],["impl PartialOrd<EncryptionWithColumnKey> for EncryptionWithColumnKey"],["impl PartialOrd<ColumnCryptoMetaData> for ColumnCryptoMetaData"],["impl PartialOrd<EncryptionAlgorithm> for EncryptionAlgorithm"],["impl PartialOrd<SortingColumn> for SortingColumn"],["impl PartialOrd<MilliSeconds> for MilliSeconds"],["impl PartialOrd<BsonType> for BsonType"],["impl PartialOrd<NullType> for NullType"],["impl PartialOrd<SchemaElement> for SchemaElement"],["impl PartialOrd<PageEncodingStats> for PageEncodingStats"]], "polars_arrow":[["impl<T: IsFloat + PartialEq + PartialOrd> PartialOrd<OrdFloat<T>> for OrdFloat<T>"]], "polars_core":[["impl PartialOrd<AnyValue<'_>> for AnyValue<'_>"]], @@ -35,7 +35,7 @@ "polars_utils":[["impl PartialOrd<Node> for Node"]], "proc_macro2":[["impl PartialOrd<Ident> for Ident"]], "pyo3":[["impl PartialOrd<(u8, u8, u8)> for PythonVersionInfo<'_>"],["impl PartialOrd<(u8, u8)> for PythonVersionInfo<'_>"]], -"quick_xml":[["impl<'a> PartialOrd<Prefix<'a>> for Prefix<'a>"],["impl<'a> PartialOrd<QName<'a>> for QName<'a>"],["impl<T: PartialOrd> PartialOrd<Attr<T>> for Attr<T>"],["impl<'a> PartialOrd<LocalName<'a>> for LocalName<'a>"],["impl<'a> PartialOrd<Namespace<'a>> for Namespace<'a>"],["impl<'a> PartialOrd<PrefixDeclaration<'a>> for PrefixDeclaration<'a>"]], +"quick_xml":[["impl<'a> PartialOrd<LocalName<'a>> for LocalName<'a>"],["impl<'a> PartialOrd<QName<'a>> for QName<'a>"],["impl<'a> PartialOrd<Prefix<'a>> for Prefix<'a>"],["impl<T: PartialOrd> PartialOrd<Attr<T>> for Attr<T>"],["impl<'a> PartialOrd<PrefixDeclaration<'a>> for PrefixDeclaration<'a>"],["impl<'a> PartialOrd<Namespace<'a>> for Namespace<'a>"]], "regex_automata":[["impl PartialOrd<LazyStateID> for LazyStateID"],["impl PartialOrd<StateID> for StateID"],["impl PartialOrd<NonMaxUsize> for NonMaxUsize"],["impl PartialOrd<PatternID> for PatternID"],["impl PartialOrd<SmallIndex> for SmallIndex"],["impl PartialOrd<Unit> for Unit"]], "regex_syntax":[["impl PartialOrd<ClassBytesRange> for ClassBytesRange"],["impl PartialOrd<ClassUnicodeRange> for ClassUnicodeRange"],["impl PartialOrd<Position> for Position"],["impl PartialOrd<Literal> for Literal"],["impl PartialOrd<Span> for Span"],["impl PartialOrd<Utf8Sequence> for Utf8Sequence"],["impl PartialOrd<Utf8Range> for Utf8Range"]], "reqwest":[["impl PartialOrd<Version> for Version"]], @@ -44,7 +44,7 @@ "smallvec":[["impl<A: Array> PartialOrd<SmallVec<A>> for SmallVec<A>where\n A::Item: PartialOrd,"]], "smartstring":[["impl<Mode: SmartStringMode> PartialOrd<str> for SmartString<Mode>"],["impl<Mode: SmartStringMode> PartialOrd<SmartString<Mode>> for SmartString<Mode>"]], "sqlparser":[["impl PartialOrd<MinMaxValue> for MinMaxValue"],["impl PartialOrd<DataLoadingOption> for DataLoadingOption"],["impl PartialOrd<AlterTableOperation> for AlterTableOperation"],["impl PartialOrd<OnConflict> for OnConflict"],["impl PartialOrd<ReferentialAction> for ReferentialAction"],["impl PartialOrd<Values> for Values"],["impl PartialOrd<IndexType> for IndexType"],["impl PartialOrd<DataLoadingOptions> for DataLoadingOptions"],["impl PartialOrd<Expr> for Expr"],["impl PartialOrd<SelectItem> for SelectItem"],["impl PartialOrd<SchemaName> for SchemaName"],["impl PartialOrd<MergeClause> for MergeClause"],["impl PartialOrd<OffsetRows> for OffsetRows"],["impl PartialOrd<HiveFormat> for HiveFormat"],["impl PartialOrd<Join> for Join"],["impl PartialOrd<CloseCursor> for CloseCursor"],["impl PartialOrd<ExactNumberInfo> for ExactNumberInfo"],["impl PartialOrd<WindowSpec> for WindowSpec"],["impl PartialOrd<Statement> for Statement"],["impl PartialOrd<Ident> for Ident"],["impl PartialOrd<Password> for Password"],["impl PartialOrd<Value> for Value"],["impl PartialOrd<Fetch> for Fetch"],["impl PartialOrd<CreateFunctionBody> for CreateFunctionBody"],["impl PartialOrd<TransactionIsolationLevel> for TransactionIsolationLevel"],["impl PartialOrd<SetQuantifier> for SetQuantifier"],["impl PartialOrd<FetchDirection> for FetchDirection"],["impl PartialOrd<Privileges> for Privileges"],["impl PartialOrd<LateralView> for LateralView"],["impl PartialOrd<LockClause> for LockClause"],["impl PartialOrd<DataLoadingOptionType> for DataLoadingOptionType"],["impl PartialOrd<Token> for Token"],["impl PartialOrd<CreateFunctionUsing> for CreateFunctionUsing"],["impl PartialOrd<LockType> for LockType"],["impl PartialOrd<CharLengthUnits> for CharLengthUnits"],["impl PartialOrd<Whitespace> for Whitespace"],["impl PartialOrd<Table> for Table"],["impl PartialOrd<TimezoneInfo> for TimezoneInfo"],["impl PartialOrd<DropFunctionOption> for DropFunctionOption"],["impl PartialOrd<GeneratedAs> for GeneratedAs"],["impl PartialOrd<Function> for Function"],["impl PartialOrd<TransactionMode> for TransactionMode"],["impl PartialOrd<ExcludeSelectItem> for ExcludeSelectItem"],["impl PartialOrd<ObjectType> for ObjectType"],["impl PartialOrd<JoinConstraint> for JoinConstraint"],["impl PartialOrd<SelectInto> for SelectInto"],["impl PartialOrd<SetExpr> for SetExpr"],["impl PartialOrd<ObjectName> for ObjectName"],["impl PartialOrd<UnaryOperator> for UnaryOperator"],["impl PartialOrd<CommentObject> for CommentObject"],["impl PartialOrd<TableConstraint> for TableConstraint"],["impl PartialOrd<Select> for Select"],["impl PartialOrd<StageLoadSelectItem> for StageLoadSelectItem"],["impl PartialOrd<AnalyzeFormat> for AnalyzeFormat"],["impl PartialOrd<KeyOrIndexDisplay> for KeyOrIndexDisplay"],["impl PartialOrd<ReplaceSelectElement> for ReplaceSelectElement"],["impl PartialOrd<ExceptSelectItem> for ExceptSelectItem"],["impl PartialOrd<ColumnOption> for ColumnOption"],["impl PartialOrd<DollarQuotedString> for DollarQuotedString"],["impl PartialOrd<Action> for Action"],["impl PartialOrd<Word> for Word"],["impl PartialOrd<JoinOperator> for JoinOperator"],["impl PartialOrd<CharacterLength> for CharacterLength"],["impl PartialOrd<NamedWindowDefinition> for NamedWindowDefinition"],["impl PartialOrd<AlterColumnOperation> for AlterColumnOperation"],["impl PartialOrd<ConflictTarget> for ConflictTarget"],["impl PartialOrd<HiveRowFormat> for HiveRowFormat"],["impl PartialOrd<OperateFunctionArg> for OperateFunctionArg"],["impl PartialOrd<FunctionDefinition> for FunctionDefinition"],["impl PartialOrd<AlterIndexOperation> for AlterIndexOperation"],["impl PartialOrd<WindowFrameBound> for WindowFrameBound"],["impl PartialOrd<AddDropSync> for AddDropSync"],["impl PartialOrd<Interval> for Interval"],["impl PartialOrd<BinaryOperator> for BinaryOperator"],["impl PartialOrd<ListAgg> for ListAgg"],["impl PartialOrd<CopyTarget> for CopyTarget"],["impl PartialOrd<IdentWithAlias> for IdentWithAlias"],["impl PartialOrd<Top> for Top"],["impl PartialOrd<Assignment> for Assignment"],["impl PartialOrd<ColumnOptionDef> for ColumnOptionDef"],["impl PartialOrd<ShowStatementFilter> for ShowStatementFilter"],["impl PartialOrd<ArrayAgg> for ArrayAgg"],["impl PartialOrd<DateTimeField> for DateTimeField"],["impl PartialOrd<Cte> for Cte"],["impl PartialOrd<ListAggOnOverflow> for ListAggOnOverflow"],["impl PartialOrd<SqliteOnConflict> for SqliteOnConflict"],["impl PartialOrd<ArgMode> for ArgMode"],["impl PartialOrd<Distinct> for Distinct"],["impl PartialOrd<WildcardAdditionalOptions> for WildcardAdditionalOptions"],["impl PartialOrd<HiveIOFormat> for HiveIOFormat"],["impl PartialOrd<DiscardObject> for DiscardObject"],["impl PartialOrd<NonBlock> for NonBlock"],["impl PartialOrd<Array> for Array"],["impl PartialOrd<WindowType> for WindowType"],["impl PartialOrd<CopyLegacyOption> for CopyLegacyOption"],["impl PartialOrd<TransactionAccessMode> for TransactionAccessMode"],["impl PartialOrd<Offset> for Offset"],["impl PartialOrd<DropFunctionDesc> for DropFunctionDesc"],["impl PartialOrd<ReplaceSelectItem> for ReplaceSelectItem"],["impl PartialOrd<SequenceOptions> for SequenceOptions"],["impl PartialOrd<OnCommit> for OnCommit"],["impl PartialOrd<DataType> for DataType"],["impl PartialOrd<FunctionArg> for FunctionArg"],["impl PartialOrd<StageParamsObject> for StageParamsObject"],["impl PartialOrd<JsonOperator> for JsonOperator"],["impl PartialOrd<HiveDistributionStyle> for HiveDistributionStyle"],["impl PartialOrd<CopyOption> for CopyOption"],["impl PartialOrd<CopySource> for CopySource"],["impl PartialOrd<OnConflictAction> for OnConflictAction"],["impl PartialOrd<SearchModifier> for SearchModifier"],["impl PartialOrd<CopyLegacyCsvOption> for CopyLegacyCsvOption"],["impl PartialOrd<With> for With"],["impl PartialOrd<ShowCreateObject> for ShowCreateObject"],["impl PartialOrd<ColumnDef> for ColumnDef"],["impl PartialOrd<KillType> for KillType"],["impl PartialOrd<OnInsert> for OnInsert"],["impl PartialOrd<SetOperator> for SetOperator"],["impl PartialOrd<GrantObjects> for GrantObjects"],["impl PartialOrd<Query> for Query"],["impl PartialOrd<FunctionArgExpr> for FunctionArgExpr"],["impl PartialOrd<DoUpdate> for DoUpdate"],["impl PartialOrd<Keyword> for Keyword"],["impl PartialOrd<TrimWhereField> for TrimWhereField"],["impl PartialOrd<SqlOption> for SqlOption"],["impl PartialOrd<TableAlias> for TableAlias"],["impl PartialOrd<FunctionBehavior> for FunctionBehavior"],["impl PartialOrd<TableWithJoins> for TableWithJoins"],["impl PartialOrd<RenameSelectItem> for RenameSelectItem"],["impl PartialOrd<TableFactor> for TableFactor"],["impl PartialOrd<ContextModifier> for ContextModifier"],["impl PartialOrd<OrderByExpr> for OrderByExpr"],["impl PartialOrd<WindowFrameUnits> for WindowFrameUnits"],["impl PartialOrd<FileFormat> for FileFormat"],["impl PartialOrd<WindowFrame> for WindowFrame"]], -"sysinfo":[["impl PartialOrd<Pid> for Pid"],["impl PartialOrd<Uid> for Uid"],["impl PartialOrd<DiskUsage> for DiskUsage"],["impl PartialOrd<User> for User"],["impl PartialOrd<Signal> for Signal"],["impl PartialOrd<Gid> for Gid"]], +"sysinfo":[["impl PartialOrd<Pid> for Pid"],["impl PartialOrd<Gid> for Gid"],["impl PartialOrd<User> for User"],["impl PartialOrd<DiskUsage> for DiskUsage"],["impl PartialOrd<Signal> for Signal"],["impl PartialOrd<Uid> for Uid"]], "time":[["impl PartialOrd<SteadyTime> for SteadyTime"],["impl PartialOrd<Timespec> for Timespec"],["impl PartialOrd<Tm> for Tm"],["impl PartialOrd<Duration> for Duration"]], "tinyvec":[["impl<A: Array> PartialOrd<TinyVec<A>> for TinyVec<A>where\n A::Item: PartialOrd,"],["impl<'s, T> PartialOrd<SliceVec<'s, T>> for SliceVec<'s, T>where\n T: PartialOrd,"],["impl<A: Array> PartialOrd<ArrayVec<A>> for ArrayVec<A>where\n A::Item: PartialOrd,"]], "tokio":[["impl PartialOrd<Ready> for Ready"]], diff --git a/implementors/core/convert/trait.AsMut.js b/implementors/core/convert/trait.AsMut.js index b725f8dd84f0..d3602f7b5331 100644 --- a/implementors/core/convert/trait.AsMut.js +++ b/implementors/core/convert/trait.AsMut.js @@ -6,7 +6,7 @@ "either":[["impl<L, R, Target> AsMut<Target> for Either<L, R>where\n L: AsMut<Target>,\n R: AsMut<Target>,"],["impl<L, R> AsMut<str> for Either<L, R>where\n L: AsMut<str>,\n R: AsMut<str>,"],["impl<L, R> AsMut<Path> for Either<L, R>where\n L: AsMut<Path>,\n R: AsMut<Path>,"],["impl<L, R, Target> AsMut<[Target]> for Either<L, R>where\n L: AsMut<[Target]>,\n R: AsMut<[Target]>,"],["impl<L, R> AsMut<CStr> for Either<L, R>where\n L: AsMut<CStr>,\n R: AsMut<CStr>,"],["impl<L, R> AsMut<OsStr> for Either<L, R>where\n L: AsMut<OsStr>,\n R: AsMut<OsStr>,"]], "futures_util":[["impl<T: AsMut<[u8]>> AsMut<[u8]> for Window<T>"]], "memmap2":[["impl AsMut<[u8]> for MmapMut"]], -"polars_core":[["impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere\n T: 'static + PolarsDataType,"],["impl AsMut<Series> for UnstableSeries<'_>"]], +"polars_core":[["impl AsMut<Series> for UnstableSeries<'_>"],["impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere\n T: 'static + PolarsDataType,"]], "pyo3":[["impl<'p, T, U> AsMut<U> for PyRefMut<'p, T>where\n T: PyClass<BaseType = U, Frozen = False>,\n U: PyClass<Frozen = False>,"]], "smallvec":[["impl<A: Array> AsMut<[<A as Array>::Item]> for SmallVec<A>"]], "smartstring":[["impl<Mode: SmartStringMode> AsMut<str> for SmartString<Mode>"]], diff --git a/implementors/core/convert/trait.AsRef.js b/implementors/core/convert/trait.AsRef.js index 9f9c5bb3cc6e..fe6929231a0e 100644 --- a/implementors/core/convert/trait.AsRef.js +++ b/implementors/core/convert/trait.AsRef.js @@ -14,11 +14,11 @@ "mime":[["impl<'a> AsRef<str> for Name<'a>"],["impl AsRef<str> for Mime"]], "ndarray":[["impl<T, Din, Dout> AsRef<[SliceInfoElem]> for SliceInfo<T, Din, Dout>where\n T: AsRef<[SliceInfoElem]>,\n Din: Dimension,\n Dout: Dimension,"]], "object_store":[["impl<'a> AsRef<str> for PathPart<'a>"],["impl AsRef<str> for Path"]], -"polars_core":[["impl<'a> AsRef<dyn SeriesTrait + 'a> for Series"],["impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere\n T: 'static + PolarsDataType,"],["impl<T: PolarsDataType> AsRef<ChunkedArray<T>> for ChunkedArray<T>"],["impl AsRef<Series> for UnstableSeries<'_>"]], +"polars_core":[["impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere\n T: 'static + PolarsDataType,"],["impl<'a> AsRef<dyn SeriesTrait + 'a> for Series"],["impl AsRef<Series> for UnstableSeries<'_>"],["impl<T: PolarsDataType> AsRef<ChunkedArray<T>> for ChunkedArray<T>"]], "polars_ops":[["impl<T> AsRef<[u8]> for HyperLogLog<T>where\n T: Hash + ?Sized,"]], "polars_plan":[["impl AsRef<Expr> for AggExpr"]], "pyo3":[["impl AsRef<PyAny> for PyIOError"],["impl AsRef<PyAny> for PyMemoryError"],["impl AsRef<PyAny> for PySyntaxError"],["impl AsRef<PyAny> for PyPermissionError"],["impl AsRef<PyAny> for PyIsADirectoryError"],["impl AsRef<PyAny> for PyTraceback"],["impl AsRef<PyAny> for PyCFunction"],["impl AsRef<PyAny> for PyInterruptedError"],["impl AsRef<PyAny> for LimitOverrunError"],["impl AsRef<PyAny> for PyEncodingWarning"],["impl AsRef<PyAny> for PyCapsule"],["impl AsRef<PyAny> for PyBytes"],["impl AsRef<PyAny> for herror"],["impl AsRef<PyAny> for PyKeyboardInterrupt"],["impl AsRef<PyAny> for PySet"],["impl AsRef<PyAny> for PySlice"],["impl AsRef<PyAny> for PyConnectionRefusedError"],["impl AsRef<PyAny> for PySystemExit"],["impl AsRef<PyAny> for PyTuple"],["impl AsRef<PyAny> for PyUnicodeTranslateError"],["impl AsRef<PyAny> for PyByteArray"],["impl AsRef<PyAny> for PyNotImplementedError"],["impl AsRef<PyAny> for PanicException"],["impl AsRef<PyAny> for PyRecursionError"],["impl AsRef<PyAny> for PyArithmeticError"],["impl AsRef<PyAny> for PyAttributeError"],["impl AsRef<PyAny> for PyDelta"],["impl AsRef<PyAny> for PyIterator"],["impl AsRef<PyAny> for PyBufferError"],["impl AsRef<PyAny> for PyPendingDeprecationWarning"],["impl AsRef<PyAny> for InvalidStateError"],["impl AsRef<PyAny> for PyFileNotFoundError"],["impl AsRef<PyAny> for PyFloatingPointError"],["impl AsRef<PyAny> for PySuper"],["impl AsRef<PyAny> for PyUnicodeError"],["impl AsRef<PyAny> for CancelledError"],["impl AsRef<PyAny> for gaierror"],["impl AsRef<PyAny> for PyTimeoutError"],["impl AsRef<PyAny> for PyException"],["impl AsRef<PyAny> for PyOSError"],["impl AsRef<PyAny> for PyKeyError"],["impl AsRef<PyAny> for PyChildProcessError"],["impl AsRef<PyAny> for QueueFull"],["impl AsRef<PyAny> for PyWarning"],["impl AsRef<PyAny> for PyBaseException"],["impl AsRef<PyAny> for PyImportError"],["impl AsRef<PyAny> for PyFunction"],["impl AsRef<PyAny> for PyEOFError"],["impl AsRef<PyAny> for PyTzInfo"],["impl AsRef<PyAny> for PyType"],["impl AsRef<PyAny> for PyUnicodeDecodeError"],["impl AsRef<PyAny> for PyMapping"],["impl AsRef<PyAny> for PyAssertionError"],["impl AsRef<PyAny> for PyConnectionResetError"],["impl AsRef<PyAny> for PyStopAsyncIteration"],["impl AsRef<PyAny> for PyModuleNotFoundError"],["impl AsRef<PyAny> for PyTypeError"],["impl AsRef<PyAny> for PyBrokenPipeError"],["impl<T: PyClass> AsRef<PyAny> for PyCell<T>"],["impl AsRef<PyAny> for PyString"],["impl AsRef<PyAny> for PyRuntimeWarning"],["impl AsRef<PyAny> for PySyntaxWarning"],["impl AsRef<PyAny> for PyIndexError"],["impl AsRef<PyAny> for PyConnectionAbortedError"],["impl AsRef<PyAny> for PyStopIteration"],["impl<'p, T, U> AsRef<U> for PyRef<'p, T>where\n T: PyClass<BaseType = U>,\n U: PyClass,"],["impl AsRef<PyAny> for PySequence"],["impl AsRef<PyAny> for PySystemError"],["impl AsRef<PyAny> for QueueEmpty"],["impl AsRef<PyAny> for PyModule"],["impl AsRef<PyAny> for PyFrame"],["impl AsRef<PyAny> for PyRuntimeError"],["impl AsRef<PyAny> for PyBlockingIOError"],["impl AsRef<PyAny> for PyUnicodeEncodeError"],["impl AsRef<PyAny> for PyLong"],["impl AsRef<PyAny> for PyBool"],["impl AsRef<PyAny> for PyNotADirectoryError"],["impl AsRef<PyAny> for PyDictValues"],["impl AsRef<PyAny> for PyConnectionError"],["impl AsRef<PyAny> for PyResourceWarning"],["impl AsRef<PyAny> for PyZeroDivisionError"],["impl AsRef<PyAny> for PyNameError"],["impl AsRef<PyAny> for PyBytesWarning"],["impl<'p, T, U> AsRef<U> for PyRefMut<'p, T>where\n T: PyClass<BaseType = U, Frozen = False>,\n U: PyClass<Frozen = False>,"],["impl AsRef<PyAny> for PyList"],["impl AsRef<PyAny> for PyFileExistsError"],["impl AsRef<PyAny> for PyDateTime"],["impl AsRef<PyAny> for timeout"],["impl AsRef<PyAny> for PyFrozenSet"],["impl AsRef<PyAny> for PyDate"],["impl AsRef<PyAny> for PyTime"],["impl AsRef<PyAny> for PyFutureWarning"],["impl AsRef<PyAny> for PyFloat"],["impl AsRef<PyAny> for PyDictKeys"],["impl AsRef<PyAny> for PyProcessLookupError"],["impl AsRef<PyAny> for PyReferenceError"],["impl AsRef<PyAny> for PyGeneratorExit"],["impl AsRef<PyAny> for PyUserWarning"],["impl AsRef<PyAny> for PyDictItems"],["impl AsRef<PyAny> for PyValueError"],["impl AsRef<PyAny> for PyOverflowError"],["impl AsRef<PyAny> for TimeoutError"],["impl AsRef<PyAny> for PyLookupError"],["impl AsRef<PyAny> for PyUnboundLocalError"],["impl AsRef<PyAny> for PyComplex"],["impl AsRef<PyAny> for PyCode"],["impl AsRef<PyAny> for PyImportWarning"],["impl AsRef<PyAny> for PyUnicodeWarning"],["impl AsRef<PyAny> for PyDeprecationWarning"],["impl AsRef<PyAny> for PyDict"],["impl AsRef<PyAny> for IncompleteReadError"],["impl AsRef<PyAny> for PyEnvironmentError"]], -"quick_xml":[["impl<'a> AsRef<Event<'a>> for Event<'a>"],["impl<'a> AsRef<[u8]> for Namespace<'a>"],["impl<'a> AsRef<[u8]> for QName<'a>"],["impl<'a> AsRef<[u8]> for LocalName<'a>"],["impl<'a> AsRef<[u8]> for Prefix<'a>"]], +"quick_xml":[["impl<'a> AsRef<[u8]> for Namespace<'a>"],["impl<'a> AsRef<[u8]> for Prefix<'a>"],["impl<'a> AsRef<[u8]> for QName<'a>"],["impl<'a> AsRef<Event<'a>> for Event<'a>"],["impl<'a> AsRef<[u8]> for LocalName<'a>"]], "regex_syntax":[["impl AsRef<[u8]> for Literal"]], "ring":[["impl AsRef<[u8; 12]> for Nonce"],["impl AsRef<[u8]> for Digest"],["impl AsRef<[u8]> for RsaSubjectPublicKey"],["impl AsRef<[u8]> for PublicKey"],["impl AsRef<[u8]> for Tag"],["impl<A> AsRef<[u8]> for Aad<A>where\n A: AsRef<[u8]>,"],["impl AsRef<[u8]> for Tag"],["impl AsRef<[u8]> for Signature"],["impl AsRef<[u8]> for Document"]], "rustls":[["impl AsRef<[u8]> for Sct"],["impl AsRef<[u8]> for Certificate"],["impl AsRef<str> for DnsName"],["impl AsRef<[u8]> for PresharedKeyBinder"],["impl AsRef<[u8]> for DistinguishedName"],["impl AsRef<[u8]> for ResponderId"],["impl AsRef<[u8]> for ProtocolName"]], diff --git a/implementors/core/convert/trait.From.js b/implementors/core/convert/trait.From.js index b5192ab56a76..696c10f07262 100644 --- a/implementors/core/convert/trait.From.js +++ b/implementors/core/convert/trait.From.js @@ -3,16 +3,16 @@ "aho_corasick":[["impl From<Span> for Range<usize>"],["impl<'h, H: ?Sized + AsRef<[u8]>> From<&'h H> for Input<'h>"],["impl From<u8> for PatternID"],["impl From<u8> for StateID"],["impl From<Range<usize>> for Span"]], "alloc_stdlib":[["impl<T> From<Vec<T, Global>> for WrapBox<T>"]], "allocator_api2":[["impl<T, A: Allocator> From<Vec<T, A>> for Box<[T], A>"],["impl<T, A: Allocator, const N: usize> From<Box<[T; N], A>> for Vec<T, A>"],["impl<T: Clone> From<&[T]> for Vec<T>"],["impl<T, const N: usize> From<[T; N]> for Vec<T>"],["impl<A: Allocator + Default> From<&str> for Box<str, A>"],["impl<A: Allocator> From<Box<str, A>> for Box<[u8], A>"],["impl<T: Clone> From<&mut [T]> for Vec<T>"],["impl From<&str> for Vec<u8>"],["impl<T: ?Sized, A> From<Box<T, A>> for Pin<Box<T, A>>where\n A: 'static + Allocator,"],["impl<T, const N: usize> From<[T; N]> for Box<[T]>"],["impl<T> From<T> for Box<T>"],["impl<T, A: Allocator> From<Box<[T], A>> for Vec<T, A>"],["impl<T: Copy, A: Allocator + Default> From<&[T]> for Box<[T], A>"],["impl From<&CStr> for Box<CStr>"]], -"arrow2":[["impl<P: AsRef<[bool]>> From<P> for MutableBitmap"],["impl<'a> From<GrowableFixedSizeList<'a>> for FixedSizeListArray"],["impl<'a, F> From<(&'a Chunk<Box<dyn Array, Global>>, Option<F>)> for Record<'a>where\n F: Into<Cow<'a, [IpcField]>>,"],["impl<O: Offset, M: MutableArray> From<MutableListArray<O, M>> for ListArray<O>"],["impl<T: NativeType, P: AsRef<[Option<T>]>> From<P> for PrimitiveArray<T>"],["impl From<FromUtf8Error> for Error"],["impl<T> From<Vec<T, Global>> for Bytes<T>"],["impl From<Error> for Error"],["impl<O: Offset> From<MutableBinaryValuesArray<O>> for BinaryArray<O>"],["impl<K: DictionaryKey, M: MutableArray> From<M> for MutableDictionaryArray<K, M>"],["impl From<MutableBitmap> for Bitmap"],["impl From<Error> for Error"],["impl<T> From<ForeignVec<BytesAllocator, T>> for Bytes<T>"],["impl From<Error> for Error"],["impl From<Utf8Error> for Error"],["impl<'a, F> From<(Chunk<Box<dyn Array, Global>>, Option<F>)> for Record<'a>where\n F: Into<Cow<'a, [IpcField]>>,"],["impl From<MutableFixedSizeBinaryArray> for FixedSizeBinaryArray"],["impl<'a, O: Offset> From<GrowableList<'a, O>> for ListArray<O>"],["impl<'a, T: NativeType> From<GrowablePrimitive<'a, T>> for PrimitiveArray<T>"],["impl<A: AsRef<dyn Array>> From<Chunk<A>> for Vec<A>"],["impl<T: NativeType> From<DataType> for MutablePrimitiveArray<T>"],["impl<'a, O: Offset> From<GrowableBinary<'a, O>> for BinaryArray<O>"],["impl<O: Offset> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>"],["impl From<MutableNullArray> for NullArray"],["impl<O: Offset> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>"],["impl<O: Offset> From<MutableBinaryArray<O>> for BinaryArray<O>"],["impl<'a> From<GrowableFixedSizeBinary<'a>> for FixedSizeBinaryArray"],["impl<O: Offset> From<MutableUtf8ValuesArray<O>> for MutableUtf8Array<O>"],["impl From<OutOfSpecKind> for Error"],["impl From<Error> for Error"],["impl<O: Offset> From<MutableUtf8Array<O>> for Utf8Array<O>"],["impl From<MutableBitmap> for Option<Bitmap>"],["impl From<Vec<Field, Global>> for Schema"],["impl<'a> From<GrowableStruct<'a>> for StructArray"],["impl<O: Offset> From<Offsets<O>> for OffsetsBuffer<O>"],["impl<'a> From<GrowableMap<'a>> for MapArray"],["impl From<IntegerType> for DataType"],["impl<T: NativeType> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>"],["impl<M: MutableArray> From<MutableFixedSizeListArray<M>> for FixedSizeListArray"],["impl<P: AsRef<[bool]>> From<P> for Bitmap"],["impl<'a, O: Offset> From<GrowableUtf8<'a, O>> for Utf8Array<O>"],["impl<P: AsRef<[Option<bool>]>> From<P> for BooleanArray"],["impl From<&OffsetsBuffer<i32>> for OffsetsBuffer<i64>"],["impl<O: Offset, P: Into<Vec<u8>>> From<Option<P>> for BinaryScalar<O>"],["impl From<GrowableNull> for NullArray"],["impl<'a> From<GrowableUnion<'a>> for UnionArray"],["impl<T: NativeType> From<Option<T>> for PrimitiveScalar<T>"],["impl<P: AsRef<[Option<bool>]>> From<P> for MutableBooleanArray"],["impl From<Offsets<i32>> for Offsets<i64>"],["impl From<ColumnPageStatistics> for FieldPageStatistics"],["impl<O: Offset, P: Into<String>> From<Option<P>> for Utf8Scalar<O>"],["impl From<Option<bool>> for BooleanScalar"],["impl From<MutableBooleanArray> for BooleanArray"],["impl<T: NativeType, P: AsRef<[Option<T>]>> From<P> for MutablePrimitiveArray<T>"],["impl<T> From<Vec<T, Global>> for Buffer<T>"],["impl From<Utf8Error> for Error"],["impl From<MutableStructArray> for StructArray"],["impl From<PrimitiveType> for DataType"],["impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>"],["impl<K: DictionaryKey, M: MutableArray> From<MutableDictionaryArray<K, M>> for DictionaryArray<K>"],["impl<'a, T: DictionaryKey> From<GrowableDictionary<'a, T>> for DictionaryArray<T>"],["impl From<TryReserveError> for Error"],["impl<'a> From<GrowableBoolean<'a>> for BooleanArray"]], -"arrow_format":[["impl From<BodyCompressionMethod> for i8"],["impl From<IntervalUnit> for i16"],["impl From<DictionaryKind> for i16"],["impl From<TimeUnit> for i16"],["impl From<UnionMode> for i16"],["impl From<MetadataVersion> for i16"],["impl From<Feature> for i64"],["impl From<Precision> for i16"],["impl From<DateUnit> for i16"],["impl From<SparseMatrixCompressedAxis> for i16"],["impl From<CompressionType> for i8"],["impl From<Endianness> for i16"]], -"avro_schema":[["impl From<Enum> for Schema"],["impl From<Record> for Schema"],["impl From<Fixed> for Schema"],["impl From<Error> for Error"]], +"arrow2":[["impl<P: AsRef<[Option<bool>]>> From<P> for MutableBooleanArray"],["impl<O: Offset> From<MutableUtf8ValuesArray<O>> for MutableUtf8Array<O>"],["impl<O: Offset> From<MutableBinaryArray<O>> for BinaryArray<O>"],["impl<O: Offset> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>"],["impl<O: Offset, P: Into<String>> From<Option<P>> for Utf8Scalar<O>"],["impl<T: NativeType> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>"],["impl From<Offsets<i32>> for Offsets<i64>"],["impl<T: NativeType> From<Option<T>> for PrimitiveScalar<T>"],["impl<P: AsRef<[bool]>> From<P> for MutableBitmap"],["impl<'a, O: Offset> From<GrowableBinary<'a, O>> for BinaryArray<O>"],["impl From<Vec<Field, Global>> for Schema"],["impl<O: Offset> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>"],["impl<T: NativeType, P: AsRef<[Option<T>]>> From<P> for PrimitiveArray<T>"],["impl<'a, F> From<(&'a Chunk<Box<dyn Array, Global>>, Option<F>)> for Record<'a>where\n F: Into<Cow<'a, [IpcField]>>,"],["impl<K: DictionaryKey, M: MutableArray> From<M> for MutableDictionaryArray<K, M>"],["impl From<ColumnPageStatistics> for FieldPageStatistics"],["impl<'a> From<GrowableFixedSizeList<'a>> for FixedSizeListArray"],["impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>"],["impl From<GrowableNull> for NullArray"],["impl From<&OffsetsBuffer<i32>> for OffsetsBuffer<i64>"],["impl From<MutableBooleanArray> for BooleanArray"],["impl From<MutableBitmap> for Bitmap"],["impl<'a, F> From<(Chunk<Box<dyn Array, Global>>, Option<F>)> for Record<'a>where\n F: Into<Cow<'a, [IpcField]>>,"],["impl<'a, O: Offset> From<GrowableList<'a, O>> for ListArray<O>"],["impl<O: Offset, P: Into<Vec<u8>>> From<Option<P>> for BinaryScalar<O>"],["impl From<IntegerType> for DataType"],["impl<T> From<Vec<T, Global>> for Bytes<T>"],["impl<'a> From<GrowableStruct<'a>> for StructArray"],["impl<A: AsRef<dyn Array>> From<Chunk<A>> for Vec<A>"],["impl<'a> From<GrowableUnion<'a>> for UnionArray"],["impl From<Utf8Error> for Error"],["impl<'a> From<GrowableMap<'a>> for MapArray"],["impl<T: NativeType, P: AsRef<[Option<T>]>> From<P> for MutablePrimitiveArray<T>"],["impl From<PrimitiveType> for DataType"],["impl<'a, T: DictionaryKey> From<GrowableDictionary<'a, T>> for DictionaryArray<T>"],["impl<M: MutableArray> From<MutableFixedSizeListArray<M>> for FixedSizeListArray"],["impl From<OutOfSpecKind> for Error"],["impl From<Error> for Error"],["impl<T: NativeType> From<DataType> for MutablePrimitiveArray<T>"],["impl From<MutableFixedSizeBinaryArray> for FixedSizeBinaryArray"],["impl<P: AsRef<[bool]>> From<P> for Bitmap"],["impl<O: Offset> From<MutableBinaryValuesArray<O>> for BinaryArray<O>"],["impl From<Error> for Error"],["impl<'a> From<GrowableFixedSizeBinary<'a>> for FixedSizeBinaryArray"],["impl<T> From<ForeignVec<BytesAllocator, T>> for Bytes<T>"],["impl From<Utf8Error> for Error"],["impl<K: DictionaryKey, M: MutableArray> From<MutableDictionaryArray<K, M>> for DictionaryArray<K>"],["impl<'a, O: Offset> From<GrowableUtf8<'a, O>> for Utf8Array<O>"],["impl From<Error> for Error"],["impl<T> From<Vec<T, Global>> for Buffer<T>"],["impl<'a> From<GrowableBoolean<'a>> for BooleanArray"],["impl From<FromUtf8Error> for Error"],["impl From<Option<bool>> for BooleanScalar"],["impl<O: Offset, M: MutableArray> From<MutableListArray<O, M>> for ListArray<O>"],["impl<O: Offset> From<MutableUtf8Array<O>> for Utf8Array<O>"],["impl<O: Offset> From<Offsets<O>> for OffsetsBuffer<O>"],["impl<'a, T: NativeType> From<GrowablePrimitive<'a, T>> for PrimitiveArray<T>"],["impl From<MutableBitmap> for Option<Bitmap>"],["impl From<TryReserveError> for Error"],["impl From<MutableNullArray> for NullArray"],["impl From<Error> for Error"],["impl<P: AsRef<[Option<bool>]>> From<P> for BooleanArray"],["impl From<MutableStructArray> for StructArray"]], +"arrow_format":[["impl From<UnionMode> for i16"],["impl From<MetadataVersion> for i16"],["impl From<SparseMatrixCompressedAxis> for i16"],["impl From<DateUnit> for i16"],["impl From<Feature> for i64"],["impl From<TimeUnit> for i16"],["impl From<Precision> for i16"],["impl From<Endianness> for i16"],["impl From<BodyCompressionMethod> for i8"],["impl From<IntervalUnit> for i16"],["impl From<CompressionType> for i8"],["impl From<DictionaryKind> for i16"]], +"avro_schema":[["impl From<Error> for Error"],["impl From<Enum> for Schema"],["impl From<Record> for Schema"],["impl From<Fixed> for Schema"]], "base64":[["impl From<DecodeError> for DecodeSliceError"]], "brotli":[["impl<'a> From<InputReference<'a>> for SliceOffset"],["impl<'a> From<InputReferenceMut<'a>> for InputReference<'a>"],["impl From<BroCatli> for BroccoliState"],["impl<'a> From<&'a InputReferenceMut<'a>> for InputReference<'a>"]], "brotli_decompressor":[["impl From<BrotliResult> for BrotliDecoderResult"]], "bytemuck":[["impl From<PodCastError> for CheckedCastError"]], "bytes":[["impl From<&'static [u8]> for Bytes"],["impl<'a> From<&'a str> for BytesMut"],["impl From<BytesMut> for Bytes"],["impl From<&'static str> for Bytes"],["impl From<Bytes> for Vec<u8>"],["impl From<Vec<u8, Global>> for Bytes"],["impl From<BytesMut> for Vec<u8>"],["impl From<String> for Bytes"],["impl From<Box<[u8], Global>> for Bytes"],["impl<'a> From<&'a [u8]> for BytesMut"]], "chrono":[["impl<Tz: TimeZone> From<DateTime<Tz>> for SystemTime"],["impl From<DateTime<Utc>> for DateTime<FixedOffset>"],["impl From<SystemTime> for DateTime<Utc>"],["impl From<NaiveDateTime> for NaiveDate"],["impl From<DateTime<FixedOffset>> for DateTime<Utc>"]], -"ciborium":[["impl From<i8> for Value"],["impl From<&[Value]> for Value"],["impl From<CanonicalValue> for Value"],["impl From<bool> for Value"],["impl From<i64> for Integer"],["impl From<u16> for Integer"],["impl From<i32> for Value"],["impl From<u16> for Value"],["impl From<usize> for Integer"],["impl From<Integer> for i128"],["impl From<u128> for Value"],["impl<T> From<Error<T>> for Error<T>"],["impl From<u8> for Value"],["impl From<String> for Value"],["impl From<&str> for Value"],["impl From<u8> for Integer"],["impl From<i128> for Value"],["impl From<i32> for Integer"],["impl From<Value> for CanonicalValue"],["impl<T> From<T> for Error<T>"],["impl From<u32> for Integer"],["impl<'a> From<Integer> for Unexpected<'a>"],["impl From<i16> for Integer"],["impl<T> From<T> for Error<T>"],["impl From<Integer> for Value"],["impl From<i64> for Value"],["impl<'a> From<&'a Value> for Unexpected<'a>"],["impl From<u64> for Value"],["impl From<i16> for Value"],["impl From<Vec<(Value, Value), Global>> for Value"],["impl From<Vec<Value, Global>> for Value"],["impl From<i8> for Integer"],["impl From<isize> for Integer"],["impl From<char> for Value"],["impl From<&[u8]> for Value"],["impl From<u64> for Integer"],["impl From<u32> for Value"],["impl From<f32> for Value"],["impl From<f64> for Value"],["impl From<&[(Value, Value)]> for Value"],["impl From<Vec<u8, Global>> for Value"]], +"ciborium":[["impl From<i32> for Integer"],["impl From<u16> for Value"],["impl From<u8> for Value"],["impl From<u32> for Integer"],["impl From<usize> for Integer"],["impl From<u128> for Value"],["impl From<char> for Value"],["impl From<CanonicalValue> for Value"],["impl From<i16> for Value"],["impl From<i16> for Integer"],["impl From<Integer> for i128"],["impl From<i8> for Integer"],["impl<T> From<T> for Error<T>"],["impl<T> From<Error<T>> for Error<T>"],["impl From<Vec<u8, Global>> for Value"],["impl From<bool> for Value"],["impl From<Vec<Value, Global>> for Value"],["impl From<f64> for Value"],["impl From<u8> for Integer"],["impl From<&[Value]> for Value"],["impl From<i64> for Integer"],["impl<'a> From<&'a Value> for Unexpected<'a>"],["impl From<i8> for Value"],["impl From<u64> for Value"],["impl From<String> for Value"],["impl From<u16> for Integer"],["impl From<Value> for CanonicalValue"],["impl From<Vec<(Value, Value), Global>> for Value"],["impl From<u32> for Value"],["impl<T> From<T> for Error<T>"],["impl From<Integer> for Value"],["impl From<&[(Value, Value)]> for Value"],["impl From<&[u8]> for Value"],["impl From<&str> for Value"],["impl From<isize> for Integer"],["impl From<i32> for Value"],["impl<'a> From<Integer> for Unexpected<'a>"],["impl From<i64> for Value"],["impl From<i128> for Value"],["impl From<u64> for Integer"],["impl From<f32> for Value"]], "ciborium_ll":[["impl<R: Read> From<R> for Decoder<R>"],["impl<W: Write> From<W> for Encoder<W>"],["impl<T> From<T> for Error<T>"]], "comfy_table":[["impl<T: Into<Cells>> From<T> for Row"],["impl<T> From<T> for Cellswhere\n T: IntoIterator,\n T::Item: Into<Cell>,"],["impl<T: ToString> From<T> for Cell"]], "crossbeam_channel":[["impl<T> From<SendError<T>> for SendTimeoutError<T>"],["impl<T> From<SendError<T>> for TrySendError<T>"],["impl From<RecvError> for TryRecvError"],["impl From<RecvError> for RecvTimeoutError"]], @@ -29,7 +29,7 @@ "getrandom":[["impl From<NonZeroU32> for Error"],["impl From<Error> for Error"]], "h2":[["impl<'a> From<&'a str> for Protocol"],["impl From<StreamId> for u32"],["impl From<Reason> for Error"],["impl From<Reason> for u32"],["impl From<u32> for Reason"]], "half":[["impl From<u8> for f16"],["impl From<bf16> for f32"],["impl From<u8> for bf16"],["impl From<f16> for f64"],["impl From<bf16> for f64"],["impl From<i8> for bf16"],["impl From<i8> for f16"],["impl From<f16> for f32"]], -"halfbrown":[["impl<'map, K, V, const N: usize, S> From<RawVacantEntryMut<'map, K, V, S, Global>> for RawVacantEntryMut<'map, K, V, N, S>"],["impl<'map, K, V, const N: usize, S> From<RawOccupiedEntryMut<'map, K, V, S, Global>> for RawOccupiedEntryMut<'map, K, V, N, S>"],["impl<'a, K, V, const N: usize, S> From<Entry<'a, K, V, S, Global>> for Entry<'a, K, V, N, S>"],["impl<'map, K, V, const N: usize, S> From<RawEntryBuilder<'map, K, V, S, Global>> for RawEntryBuilder<'map, K, V, N, S>"],["impl<'map, K, V, const N: usize, S> From<RawEntryMut<'map, K, V, S, Global>> for RawEntryMut<'map, K, V, N, S>"],["impl<'map, K, V, const N: usize, S> From<RawEntryBuilderMut<'map, K, V, S, Global>> for RawEntryBuilderMut<'map, K, V, N, S>"]], +"halfbrown":[["impl<'map, K, V, const N: usize, S> From<RawVacantEntryMut<'map, K, V, S, Global>> for RawVacantEntryMut<'map, K, V, N, S>"],["impl<'map, K, V, const N: usize, S> From<RawEntryBuilderMut<'map, K, V, S, Global>> for RawEntryBuilderMut<'map, K, V, N, S>"],["impl<'map, K, V, const N: usize, S> From<RawOccupiedEntryMut<'map, K, V, S, Global>> for RawOccupiedEntryMut<'map, K, V, N, S>"],["impl<'map, K, V, const N: usize, S> From<RawEntryMut<'map, K, V, S, Global>> for RawEntryMut<'map, K, V, N, S>"],["impl<'a, K, V, const N: usize, S> From<Entry<'a, K, V, S, Global>> for Entry<'a, K, V, N, S>"],["impl<'map, K, V, const N: usize, S> From<RawEntryBuilder<'map, K, V, S, Global>> for RawEntryBuilder<'map, K, V, N, S>"]], "hashbrown":[["impl<T, A, const N: usize> From<[T; N]> for HashSet<T, DefaultHashBuilder, A>where\n T: Eq + Hash,\n A: Default + Allocator + Clone,"],["impl<T> From<RawIter<T>> for RawParIter<T>"],["impl<T, S, A> From<HashMap<T, (), S, A>> for HashSet<T, S, A>where\n A: Allocator + Clone,"],["impl<K, V, A, const N: usize> From<[(K, V); N]> for HashMap<K, V, DefaultHashBuilder, A>where\n K: Eq + Hash,\n A: Default + Allocator + Clone,"]], "http":[["impl From<InvalidMethod> for Error"],["impl From<PathAndQuery> for Uri"],["impl From<usize> for HeaderValue"],["impl From<InvalidHeaderValue> for Error"],["impl<'a> From<&'a HeaderValue> for HeaderValue"],["impl From<Infallible> for Error"],["impl From<i64> for HeaderValue"],["impl<T> From<Port<T>> for u16"],["impl From<u64> for HeaderValue"],["impl From<Uri> for Parts"],["impl From<isize> for HeaderValue"],["impl From<i16> for HeaderValue"],["impl From<StatusCode> for u16"],["impl From<u16> for HeaderValue"],["impl<'a> From<&'a HeaderName> for HeaderName"],["impl<'a> From<&'a StatusCode> for StatusCode"],["impl From<HeaderName> for HeaderValue"],["impl From<InvalidUri> for Error"],["impl From<Authority> for Uri"],["impl From<i32> for HeaderValue"],["impl From<u32> for HeaderValue"],["impl From<InvalidUriParts> for Error"],["impl<'a> From<&'a Method> for Method"],["impl From<InvalidHeaderName> for Error"],["impl From<InvalidStatusCode> for Error"]], "http_body":[["impl<D> From<Bytes> for Full<D>where\n D: Buf + From<Bytes>,"],["impl<D, B> From<Cow<'static, B>> for Full<D>where\n D: Buf + From<&'static B> + From<B::Owned>,\n B: ToOwned + ?Sized,"],["impl<D> From<&'static str> for Full<D>where\n D: Buf + From<&'static str>,"],["impl<D> From<&'static [u8]> for Full<D>where\n D: Buf + From<&'static [u8]>,"],["impl<D> From<String> for Full<D>where\n D: Buf + From<String>,"],["impl<D> From<Vec<u8, Global>> for Full<D>where\n D: Buf + From<Vec<u8>>,"]], @@ -50,34 +50,34 @@ "mio":[["impl From<Token> for usize"],["impl From<ChildStdout> for Receiver"],["impl From<ChildStdin> for Sender"],["impl From<ChildStderr> for Receiver"]], "ndarray":[["impl From<RangeFrom<isize>> for Slice"],["impl From<Range<i32>> for SliceInfoElem"],["impl From<RangeFrom<i32>> for SliceInfoElem"],["impl From<RangeFrom<isize>> for SliceInfoElem"],["impl From<Range<usize>> for SliceInfoElem"],["impl<A, D> From<ArrayBase<OwnedRepr<A>, D>> for ArcArray<A, D>where\n D: Dimension,"],["impl From<RangeFrom<i32>> for Slice"],["impl From<RangeInclusive<i32>> for SliceInfoElem"],["impl<T, D> From<T> for StrideShape<D>where\n D: Dimension,\n T: ShapeBuilder<Dim = D>,"],["impl From<Range<usize>> for Slice"],["impl From<RangeTo<i32>> for SliceInfoElem"],["impl From<RangeFull> for SliceInfoElem"],["impl From<Vec<usize, Global>> for IxDynImpl"],["impl<'a, A, S, D> From<&'a mut ArrayBase<S, D>> for ArrayViewMut<'a, A, D>where\n S: DataMut<Elem = A>,\n D: Dimension,"],["impl<'a, A, Slice> From<&'a mut Slice> for ArrayViewMut<'a, A, Ix1>where\n Slice: AsMut<[A]> + ?Sized,"],["impl From<RangeTo<isize>> for SliceInfoElem"],["impl From<RangeTo<usize>> for Slice"],["impl From<Range<i32>> for Slice"],["impl From<RangeFrom<usize>> for Slice"],["impl<A, V, U> From<Vec<V, Global>> for Array3<A>where\n V: FixedInitializer<Elem = U>,\n U: FixedInitializer<Elem = A>,"],["impl From<RangeToInclusive<usize>> for Slice"],["impl<'a, A, Slice> From<&'a Slice> for ArrayView<'a, A, Ix1>where\n Slice: AsRef<[A]> + ?Sized,"],["impl<'a, A, S, D> From<&'a ArrayBase<S, D>> for CowArray<'a, A, D>where\n S: Data<Elem = A>,\n D: Dimension,"],["impl From<RangeToInclusive<usize>> for SliceInfoElem"],["impl From<RangeToInclusive<isize>> for SliceInfoElem"],["impl<A, S> From<Box<[A], Global>> for ArrayBase<S, Ix1>where\n S: DataOwned<Elem = A>,"],["impl<'a, A, Slice> From<&'a Slice> for CowArray<'a, A, Ix1>where\n Slice: AsRef<[A]> + ?Sized,"],["impl<'a, A, D> From<ArrayBase<ViewRepr<&'a A>, D>> for CowArray<'a, A, D>where\n D: Dimension,"],["impl<'a, A, D> From<ArrayBase<OwnedRepr<A>, D>> for CowArray<'a, A, D>where\n D: Dimension,"],["impl From<Slice> for SliceInfoElem"],["impl From<isize> for SliceInfoElem"],["impl From<RangeTo<isize>> for Slice"],["impl From<RangeFull> for Slice"],["impl From<RangeToInclusive<isize>> for Slice"],["impl From<RangeToInclusive<i32>> for Slice"],["impl From<usize> for SliceInfoElem"],["impl From<Range<isize>> for SliceInfoElem"],["impl From<RangeInclusive<usize>> for SliceInfoElem"],["impl From<RangeInclusive<isize>> for Slice"],["impl From<i32> for SliceInfoElem"],["impl<'a> From<&'a [usize]> for IxDynImpl"],["impl<D> From<D> for Shape<D>where\n D: Dimension,"],["impl<'a, T, Din, Dout> From<&'a SliceInfo<T, Din, Dout>> for SliceInfo<&'a [SliceInfoElem], Din, Dout>where\n T: AsRef<[SliceInfoElem]>,\n Din: Dimension,\n Dout: Dimension,"],["impl From<RangeInclusive<i32>> for Slice"],["impl From<RangeTo<i32>> for Slice"],["impl From<NewAxis> for SliceInfoElem"],["impl From<RangeToInclusive<i32>> for SliceInfoElem"],["impl From<RangeTo<usize>> for SliceInfoElem"],["impl From<Range<isize>> for Slice"],["impl<A, S> From<Vec<A, Global>> for ArrayBase<S, Ix1>where\n S: DataOwned<Elem = A>,"],["impl<'a, A, S, D> From<&'a ArrayBase<S, D>> for ArrayView<'a, A, D>where\n S: Data<Elem = A>,\n D: Dimension,"],["impl From<RangeInclusive<usize>> for Slice"],["impl From<RangeInclusive<isize>> for SliceInfoElem"],["impl From<RangeFrom<usize>> for SliceInfoElem"],["impl<A, V> From<Vec<V, Global>> for Array2<A>where\n V: FixedInitializer<Elem = A>,"]], "num_complex":[["impl<'a, T: Clone + Num> From<&'a T> for Complex<T>"],["impl<T: Clone + Num> From<T> for Complex<T>"]], -"object_store":[["impl From<Path> for String"],["impl<'a> From<&'a [u8]> for PathPart<'a>"],["impl From<Error> for Error"],["impl From<&str> for Path"],["impl From<JoinError> for Error"],["impl From<String> for PathPart<'static>"],["impl From<String> for Path"],["impl<'a> From<&'a str> for PathPart<'a>"],["impl From<Error> for Error"]], +"object_store":[["impl From<Path> for String"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl<'a> From<&'a str> for PathPart<'a>"],["impl From<String> for Path"],["impl<'a> From<&'a [u8]> for PathPart<'a>"],["impl From<&str> for Path"],["impl From<String> for PathPart<'static>"],["impl From<JoinError> for Error"]], "once_cell":[["impl<T> From<T> for OnceCell<T>"],["impl<T> From<T> for OnceCell<T>"]], "parquet2":[["impl From<PrimitiveLogicalType> for ParquetLogicalType"],["impl From<GzipLevel> for Compression"],["impl From<TryFromIntError> for Error"],["impl From<GroupConvertedType> for ConvertedType"],["impl From<TryReserveError> for Error"],["impl From<PhysicalType> for (Type, Option<i32>)"],["impl From<TimeUnit> for ParquetTimeUnit"],["impl From<Encoding> for ParquetEncoding"],["impl From<CompressionOptions> for Compression"],["impl From<Error> for Error"],["impl From<IntegerType> for (usize, bool)"],["impl From<CompressionOptions> for CompressionCodec"],["impl From<PageType> for ParquetPageType"],["impl From<TimeUnit> for TimeUnit"],["impl From<PrimitiveConvertedType> for (ConvertedType, Option<(i32, i32)>)"],["impl From<Compression> for CompressionCodec"],["impl From<BoundaryOrder> for ParquetBoundaryOrder"],["impl From<Repetition> for FieldRepetitionType"],["impl From<GroupLogicalType> for ParquetLogicalType"],["impl From<Error> for Error"],["impl From<&ColumnChunkMetaData> for PageMetaData"],["impl From<Version> for i32"],["impl From<TryFromSliceError> for Error"],["impl From<Error> for Error"],["impl From<(i32, bool)> for IntegerType"]], "parquet_format_safe":[["impl From<&i32> for BoundaryOrder"],["impl From<&ConvertedType> for i32"],["impl From<i32> for ConvertedType"],["impl From<Encoding> for i32"],["impl From<ApplicationError> for Error"],["impl From<Error> for Error"],["impl From<i32> for BoundaryOrder"],["impl From<&i32> for ConvertedType"],["impl From<Type> for i32"],["impl From<&BoundaryOrder> for i32"],["impl From<TransportError> for Error"],["impl From<FieldRepetitionType> for i32"],["impl From<ProtocolError> for Error"],["impl From<&i32> for Type"],["impl From<FromUtf8Error> for Error"],["impl From<i32> for Encoding"],["impl From<BoundaryOrder> for i32"],["impl From<i32> for FieldRepetitionType"],["impl From<i32> for CompressionCodec"],["impl From<i32> for PageType"],["impl From<&i32> for PageType"],["impl From<PageType> for i32"],["impl From<i32> for Type"],["impl From<TMessageType> for u8"],["impl From<TryReserveError> for Error"],["impl From<&CompressionCodec> for i32"],["impl From<&FieldRepetitionType> for i32"],["impl<'a> From<&'a str> for Error"],["impl From<String> for Error"],["impl From<TryFromIntError> for Error"],["impl From<CompressionCodec> for i32"],["impl From<Infallible> for Error"],["impl From<&Type> for i32"],["impl From<&i32> for Encoding"],["impl From<&PageType> for i32"],["impl From<&Encoding> for i32"],["impl From<&i32> for FieldRepetitionType"],["impl From<&i32> for CompressionCodec"],["impl From<ConvertedType> for i32"]], "percent_encoding":[["impl<'a> From<PercentEncode<'a>> for Cow<'a, str>"],["impl<'a> From<PercentDecode<'a>> for Cow<'a, [u8]>"]], "planus":[["impl From<UnknownEnumTag> for Error"],["impl From<Infallible> for Error"],["impl From<UnknownEnumTagKind> for ErrorKind"],["impl From<Utf8Error> for ErrorKind"]], -"polars_core":[["impl From<&TimeUnit> for TimeUnit"],["impl<'a> From<&AnyValue<'a>> for DataType"],["impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>>"],["impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx"],["impl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, IdxSize>, fn(_: &IdxSize) -> usize>, Dummy<Option<usize>>>"],["impl From<(&str, BinaryArray<i64>)> for BinaryChunked"],["impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx"],["impl From<JoinType> for JoinArgs"],["impl From<&Row<'_>> for Schema"],["impl From<DataFrame> for Vec<Series>"],["impl From<(&str, Utf8Array<i64>)> for Utf8Chunked"],["impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>"],["impl<'a> From<AnyValue<'a>> for Option<i64>"],["impl From<StructChunked> for DataFrame"],["impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<T::Native>>where\n T: PolarsNumericType,"],["impl From<(&str, BooleanArray)> for BooleanChunked"],["impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx"],["impl<K: NumericNative> From<K> for AnyValue<'_>"],["impl From<BooleanArray> for BooleanChunked"],["impl From<AnyValue<'_>> for DataType"],["impl From<&AnyValue<'_>> for NaiveDateTime"],["impl From<&Field> for Field"],["impl<'a> From<&AnyValue<'a>> for Field"],["impl From<(&DataType, usize)> for AnyValueBuffer<'_>"],["impl<T: PolarsNumericType> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>"],["impl<'a> From<&'a [u32]> for TakeIdx<'a, Map<Iter<'a, IdxSize>, fn(_: &IdxSize) -> usize>, Dummy<Option<usize>>>"],["impl<T> From<ChunkedArray<T>> for Serieswhere\n T: PolarsDataType,\n ChunkedArray<T>: IntoSeries,"],["impl From<&DataType> for DataType"],["impl From<&Schema> for DataFrame"],["impl<'a, I> From<I> for TakeIdx<'a, Dummy<usize>, I>where\n I: TakeIteratorNulls,"],["impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>>"],["impl From<GroupsIdx> for GroupsProxy"],["impl<'a, I> From<I> for TakeIdx<'a, I, Dummy<Option<usize>>>where\n I: TakeIterator,"],["impl<T: PolarsNumericType> From<&[<T as PolarsNumericType>::Native]> for ChunkedArray<T>"],["impl From<&AnyValue<'_>> for NaiveTime"],["impl<T: PolarsNumericType> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>"],["impl From<(&DataType, usize)> for AnyValueBufferTrusted<'_>"],["impl<'a> From<&'a ChunkedArray<Utf8Type>> for Vec<Option<&'a str>>"],["impl<'a, T> From<Option<T>> for AnyValue<'a>where\n T: Into<AnyValue<'a>>,"],["impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>>"]], -"polars_error":[["impl From<Error> for PolarsError"],["impl From<Error> for PolarsError"],["impl From<Error> for PolarsError"],["impl<T> From<T> for ErrStringwhere\n T: Into<Cow<'static, str>>,"]], -"polars_io":[["impl From<IpcCompression> for Compression"],["impl<'a, T: 'a + MmapBytesReader> From<&'a T> for ReaderBytes<'a>"],["impl From<ParquetCompression> for CompressionOptions"]], +"polars_core":[["impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>"],["impl From<&AnyValue<'_>> for NaiveDateTime"],["impl From<(&DataType, usize)> for AnyValueBuffer<'_>"],["impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<T::Native>>where\n T: PolarsNumericType,"],["impl From<(&DataType, usize)> for AnyValueBufferTrusted<'_>"],["impl From<&Field> for Field"],["impl From<BooleanArray> for BooleanChunked"],["impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>>"],["impl<'a> From<AnyValue<'a>> for Option<i64>"],["impl From<GroupsIdx> for GroupsProxy"],["impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>>"],["impl<T: PolarsNumericType> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>"],["impl From<StructChunked> for DataFrame"],["impl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, IdxSize>, fn(_: &IdxSize) -> usize>, Dummy<Option<usize>>>"],["impl<T: PolarsNumericType> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>"],["impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>>"],["impl<'a> From<&AnyValue<'a>> for DataType"],["impl<'a, I> From<I> for TakeIdx<'a, Dummy<usize>, I>where\n I: TakeIteratorNulls,"],["impl<'a> From<&'a [u32]> for TakeIdx<'a, Map<Iter<'a, IdxSize>, fn(_: &IdxSize) -> usize>, Dummy<Option<usize>>>"],["impl From<(&str, BinaryArray<i64>)> for BinaryChunked"],["impl<T: PolarsNumericType> From<&[<T as PolarsNumericType>::Native]> for ChunkedArray<T>"],["impl<K: NumericNative> From<K> for AnyValue<'_>"],["impl From<DataFrame> for Vec<Series>"],["impl From<&Schema> for DataFrame"],["impl From<&Row<'_>> for Schema"],["impl From<&AnyValue<'_>> for NaiveTime"],["impl<'a, T> From<Option<T>> for AnyValue<'a>where\n T: Into<AnyValue<'a>>,"],["impl<'a> From<&'a ChunkedArray<Utf8Type>> for Vec<Option<&'a str>>"],["impl From<(&str, BooleanArray)> for BooleanChunked"],["impl<'a> From<&AnyValue<'a>> for Field"],["impl From<AnyValue<'_>> for DataType"],["impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx"],["impl From<(&str, Utf8Array<i64>)> for Utf8Chunked"],["impl From<&DataType> for DataType"],["impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx"],["impl From<&TimeUnit> for TimeUnit"],["impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx"],["impl<T> From<ChunkedArray<T>> for Serieswhere\n T: PolarsDataType,\n ChunkedArray<T>: IntoSeries,"],["impl From<JoinType> for JoinArgs"],["impl<'a, I> From<I> for TakeIdx<'a, I, Dummy<Option<usize>>>where\n I: TakeIterator,"]], +"polars_error":[["impl From<Error> for PolarsError"],["impl<T> From<T> for ErrStringwhere\n T: Into<Cow<'static, str>>,"],["impl From<Error> for PolarsError"],["impl From<Error> for PolarsError"]], +"polars_io":[["impl From<ParquetCompression> for CompressionOptions"],["impl<'a, T: 'a + MmapBytesReader> From<&'a T> for ReaderBytes<'a>"],["impl From<IpcCompression> for Compression"]], "polars_lazy":[["impl From<LogicalPlan> for LazyFrame"]], -"polars_plan":[["impl From<u32> for Expr"],["impl<'_derivative_strum> From<&'_derivative_strum AAggExpr> for &'static str"],["impl From<AAggExpr> for GroupByMethod"],["impl From<i64> for Expr"],["impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>"],["impl From<AggExpr> for Expr"],["impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>"],["impl From<u64> for Expr"],["impl From<f64> for Expr"],["impl From<LogicalPlan> for LogicalPlanBuilder"],["impl From<&str> for Expr"],["impl From<BooleanFunction> for FunctionExpr"],["impl From<FileScan> for &'static str"],["impl<'_derivative_strum> From<&'_derivative_strum FileScan> for &'static str"],["impl From<i32> for Expr"],["impl From<bool> for Expr"],["impl From<f32> for Expr"],["impl From<AAggExpr> for &'static str"],["impl From<PolarsError> for ErrorStateSync"]], -"polars_time":[["impl From<RollingOptions> for RollingOptionsFixedWindow"],["impl From<RollingOptions> for RollingOptionsImpl<'static>"],["impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow"]], +"polars_plan":[["impl From<f32> for Expr"],["impl From<BooleanFunction> for FunctionExpr"],["impl From<i64> for Expr"],["impl From<AAggExpr> for &'static str"],["impl From<PolarsError> for ErrorStateSync"],["impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>"],["impl From<f64> for Expr"],["impl<'_derivative_strum> From<&'_derivative_strum FileScan> for &'static str"],["impl From<u32> for Expr"],["impl From<&str> for Expr"],["impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>"],["impl From<AggExpr> for Expr"],["impl<'_derivative_strum> From<&'_derivative_strum AAggExpr> for &'static str"],["impl From<FileScan> for &'static str"],["impl From<AAggExpr> for GroupByMethod"],["impl From<LogicalPlan> for LogicalPlanBuilder"],["impl From<u64> for Expr"],["impl From<i32> for Expr"],["impl From<bool> for Expr"]], +"polars_time":[["impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow"],["impl From<RollingOptions> for RollingOptionsImpl<'static>"],["impl From<RollingOptions> for RollingOptionsFixedWindow"]], "polars_utils":[["impl<T> From<T> for SyncUnsafeCell<T>"]], "ppv_lite86":[["impl From<vec512_storage> for [u32; 16]"],["impl From<vec128_storage> for [u32; 4]"],["impl From<vec256_storage> for [u32; 8]"],["impl From<[u32; 4]> for vec128_storage"],["impl<'a> From<&'a vec128_storage> for &'a [u32; 4]"],["impl From<vec128_storage> for [u128; 1]"],["impl From<vec256_storage> for [u128; 2]"],["impl From<vec256_storage> for [u64; 4]"],["impl From<vec512_storage> for [u64; 8]"],["impl From<vec128_storage> for [u64; 2]"],["impl From<vec512_storage> for [u128; 4]"],["impl From<[u64; 4]> for vec256_storage"]], "proc_macro2":[["impl From<TokenTree> for TokenStream"],["impl From<Span> for Span"],["impl From<Ident> for TokenTree"],["impl From<TokenStream> for TokenStream"],["impl From<TokenStream> for TokenStream"],["impl From<Literal> for TokenTree"],["impl From<Punct> for TokenTree"],["impl From<Group> for TokenTree"]], "pyo3":[["impl From<&PyDeprecationWarning> for Py<PyDeprecationWarning>"],["impl<'a> From<&'a PyException> for &'a PyAny"],["impl From<&PyIsADirectoryError> for Py<PyIsADirectoryError>"],["impl<'a> From<&'a PyImportWarning> for &'a PyAny"],["impl From<&PyUnicodeTranslateError> for Py<PyUnicodeTranslateError>"],["impl From<DecodeUtf16Error> for PyErr"],["impl From<&PyBrokenPipeError> for Py<PyBrokenPipeError>"],["impl From<&PyDateTime> for Py<PyDateTime>"],["impl From<&timeout> for PyErr"],["impl From<&PyChildProcessError> for PyErr"],["impl From<&PyFileExistsError> for Py<PyFileExistsError>"],["impl From<&PyComplex> for Py<PyComplex>"],["impl<'a> From<&'a PyMapping> for &'a PyAny"],["impl From<&PyDelta> for Py<PyDelta>"],["impl From<&PyValueError> for Py<PyValueError>"],["impl From<&PyPendingDeprecationWarning> for Py<PyPendingDeprecationWarning>"],["impl From<&PyFileNotFoundError> for PyErr"],["impl From<&PyKeyError> for Py<PyKeyError>"],["impl<'a> From<&'a PyUserWarning> for &'a PyAny"],["impl From<&PyStopAsyncIteration> for Py<PyStopAsyncIteration>"],["impl From<&PyModuleNotFoundError> for PyErr"],["impl From<Infallible> for PyErr"],["impl From<&PyAssertionError> for Py<PyAssertionError>"],["impl From<&PySystemExit> for Py<PySystemExit>"],["impl From<&PyFileExistsError> for PyErr"],["impl From<&PySequence> for Py<PySequence>"],["impl From<&PyBytesWarning> for Py<PyBytesWarning>"],["impl From<&PyDate> for Py<PyDate>"],["impl From<&PyIterator> for Py<PyIterator>"],["impl From<&PyType> for Py<PyType>"],["impl<'a> From<&'a PyAssertionError> for &'a PyAny"],["impl<'a> From<&'a PyFutureWarning> for &'a PyAny"],["impl From<&PyOSError> for PyErr"],["impl From<&PyDeprecationWarning> for PyErr"],["impl From<&PyEOFError> for Py<PyEOFError>"],["impl<'a> From<&'a CancelledError> for &'a PyAny"],["impl<'a> From<&'a PyCode> for &'a PyAny"],["impl<'a> From<&'a PyLookupError> for &'a PyAny"],["impl From<&PyTime> for Py<PyTime>"],["impl From<&PyException> for Py<PyException>"],["impl<'a> From<&'a PyImportError> for &'a PyAny"],["impl From<&PyConnectionRefusedError> for PyErr"],["impl From<&PyImportError> for PyErr"],["impl<'a> From<&'a PyIndexError> for &'a PyAny"],["impl From<TryFromIntError> for PyErr"],["impl<'a> From<&'a PyConnectionAbortedError> for &'a PyAny"],["impl From<&PyFutureWarning> for PyErr"],["impl<'a> From<&'a PyConnectionRefusedError> for &'a PyAny"],["impl From<&PyPermissionError> for PyErr"],["impl<'a> From<&'a PyKeyboardInterrupt> for &'a PyAny"],["impl From<&PyConnectionRefusedError> for Py<PyConnectionRefusedError>"],["impl<'a> From<&'a PySuper> for &'a PyAny"],["impl From<&CancelledError> for Py<CancelledError>"],["impl From<&PyFloatingPointError> for Py<PyFloatingPointError>"],["impl<'a> From<&'a PyEnvironmentError> for &'a PyAny"],["impl From<&PyTypeError> for PyErr"],["impl<'a> From<&'a PyUnicodeWarning> for &'a PyAny"],["impl<'a> From<&'a PyNotImplementedError> for &'a PyAny"],["impl<'a> From<&'a PySyntaxWarning> for &'a PyAny"],["impl From<&PyUnicodeEncodeError> for Py<PyUnicodeEncodeError>"],["impl<'a> From<&'a InvalidStateError> for &'a PyAny"],["impl<'a> From<&'a PyTimeoutError> for &'a PyAny"],["impl From<&PyBlockingIOError> for Py<PyBlockingIOError>"],["impl<'a> From<&'a PyAttributeError> for &'a PyAny"],["impl From<&PyFrozenSet> for Py<PyFrozenSet>"],["impl<'a> From<&'a PyBrokenPipeError> for &'a PyAny"],["impl<'a> From<&'a PyUnicodeEncodeError> for &'a PyAny"],["impl From<&PyTypeError> for Py<PyTypeError>"],["impl<'a> From<&'a PyFloatingPointError> for &'a PyAny"],["impl From<&PyOverflowError> for Py<PyOverflowError>"],["impl<'a> From<&'a PyDictItems> for &'a PyAny"],["impl From<&PySystemError> for Py<PySystemError>"],["impl<'a> From<&'a PanicException> for &'a PyAny"],["impl From<&PyValueError> for PyErr"],["impl<'a> From<&'a PyBytesWarning> for &'a PyAny"],["impl<'a> From<&'a PyRecursionError> for &'a PyAny"],["impl From<&PyConnectionError> for PyErr"],["impl From<&PyBufferError> for Py<PyBufferError>"],["impl From<PyBorrowMutError> for PyErr"],["impl From<&PyUnicodeWarning> for Py<PyUnicodeWarning>"],["impl<'a> From<&'a PyWarning> for &'a PyAny"],["impl From<&PyStopIteration> for PyErr"],["impl<'a> From<&'a PyZeroDivisionError> for &'a PyAny"],["impl<'a> From<&'a PyKeyError> for &'a PyAny"],["impl From<&PyFloatingPointError> for PyErr"],["impl From<ParseBoolError> for PyErr"],["impl<'a> From<&'a PyRuntimeError> for &'a PyAny"],["impl From<PyBorrowError> for PyErr"],["impl From<&PyWarning> for Py<PyWarning>"],["impl<'a> From<&'a PyLong> for &'a PyAny"],["impl From<&PyIOError> for PyErr"],["impl From<&PyStopAsyncIteration> for PyErr"],["impl<'a> From<&'a PySystemExit> for &'a PyAny"],["impl From<&PyReferenceError> for Py<PyReferenceError>"],["impl From<&PyProcessLookupError> for PyErr"],["impl From<&PyResourceWarning> for Py<PyResourceWarning>"],["impl<'a> From<&'a PyPendingDeprecationWarning> for &'a PyAny"],["impl<'a> From<&'a PyBytes> for &'a PyAny"],["impl From<&QueueEmpty> for Py<QueueEmpty>"],["impl From<&PyNameError> for PyErr"],["impl From<&PyBlockingIOError> for PyErr"],["impl From<IntoStringError> for PyErr"],["impl<'a> From<&'a PyEncodingWarning> for &'a PyAny"],["impl From<&PyKeyboardInterrupt> for PyErr"],["impl From<&PyResourceWarning> for PyErr"],["impl<'a> From<&'a PyDict> for &'a PyAny"],["impl From<&PyRuntimeError> for Py<PyRuntimeError>"],["impl<'a> From<&'a PyOverflowError> for &'a PyAny"],["impl From<&PyAttributeError> for Py<PyAttributeError>"],["impl<'a> From<&'a PyTime> for &'a PyAny"],["impl<'a, T> From<PyRef<'a, T>> for Py<T>where\n T: PyClass,"],["impl From<&InvalidStateError> for Py<InvalidStateError>"],["impl<'a> From<&'a PyUnicodeError> for &'a PyAny"],["impl<'a> From<&'a PyTuple> for &'a PyAny"],["impl From<&PyConnectionAbortedError> for PyErr"],["impl<'a> From<&'a PyModule> for &'a PyAny"],["impl From<&PyIOError> for Py<PyIOError>"],["impl From<&PyLong> for Py<PyLong>"],["impl<S, B> From<(S, B)> for PyClassInitializer<S>where\n S: PyClass<BaseType = B>,\n B: PyClass,\n B::BaseType: PyClassBaseType<Initializer = PyNativeTypeInitializer<B::BaseType>>,"],["impl From<&PyDict> for Py<PyDict>"],["impl<'a> From<&'a PyType> for &'a PyAny"],["impl<'a> From<&'a PyBaseException> for &'a PyAny"],["impl From<&PyTimeoutError> for Py<PyTimeoutError>"],["impl<'a> From<&'a TimeoutError> for &'a PyAny"],["impl From<&PyNotImplementedError> for PyErr"],["impl From<&PyGeneratorExit> for Py<PyGeneratorExit>"],["impl From<&PyUnicodeDecodeError> for PyErr"],["impl<'a> From<&'a herror> for &'a PyAny"],["impl<'a> From<&'a PyByteArray> for &'a PyAny"],["impl From<&PyUnicodeEncodeError> for PyErr"],["impl From<&PyEncodingWarning> for Py<PyEncodingWarning>"],["impl<'a> From<&'a PyDictKeys> for &'a PyAny"],["impl From<&PyRuntimeWarning> for Py<PyRuntimeWarning>"],["impl From<&PyUserWarning> for PyErr"],["impl From<&PyFutureWarning> for Py<PyFutureWarning>"],["impl From<&PyImportError> for Py<PyImportError>"],["impl From<&PyMapping> for Py<PyMapping>"],["impl<'a> From<&'a PyTraceback> for &'a PyAny"],["impl From<&PySystemError> for PyErr"],["impl From<&QueueFull> for Py<QueueFull>"],["impl From<&QueueEmpty> for PyErr"],["impl<'a> From<&'a PyChildProcessError> for &'a PyAny"],["impl<'a> From<&'a PyUnicodeTranslateError> for &'a PyAny"],["impl<'a> From<&'a PyDeprecationWarning> for &'a PyAny"],["impl From<&PyException> for PyErr"],["impl From<&PyConnectionError> for Py<PyConnectionError>"],["impl<'a> From<&'a PyCapsule> for &'a PyAny"],["impl<'a> From<&'a PyIsADirectoryError> for &'a PyAny"],["impl<'a> From<&'a PyFloat> for &'a PyAny"],["impl From<&PyAssertionError> for PyErr"],["impl From<&PyZeroDivisionError> for Py<PyZeroDivisionError>"],["impl<'a> From<&'a PyList> for &'a PyAny"],["impl From<PyErr> for Error"],["impl<'a> From<&'a QueueEmpty> for &'a PyAny"],["impl From<&PyModuleNotFoundError> for Py<PyModuleNotFoundError>"],["impl<'a> From<&'a PySystemError> for &'a PyAny"],["impl<'a> From<&'a PyFileExistsError> for &'a PyAny"],["impl From<&PyBrokenPipeError> for PyErr"],["impl<'a> From<&'a PyString> for &'a PyAny"],["impl<'a> From<&'a PyTypeError> for &'a PyAny"],["impl From<&PyLookupError> for PyErr"],["impl From<&IncompleteReadError> for Py<IncompleteReadError>"],["impl From<ParseIntError> for PyErr"],["impl<'a> From<&'a IncompleteReadError> for &'a PyAny"],["impl From<&PyUserWarning> for Py<PyUserWarning>"],["impl<'a> From<&'a PyResourceWarning> for &'a PyAny"],["impl From<&PyBaseException> for Py<PyBaseException>"],["impl From<&PyEnvironmentError> for Py<PyEnvironmentError>"],["impl From<&PyAttributeError> for PyErr"],["impl<'a> From<&'a PyTzInfo> for &'a PyAny"],["impl From<&PyEnvironmentError> for PyErr"],["impl From<&gaierror> for Py<gaierror>"],["impl From<&PyPermissionError> for Py<PyPermissionError>"],["impl From<&PyFrame> for Py<PyFrame>"],["impl From<&CancelledError> for PyErr"],["impl From<&PyModule> for Py<PyModule>"],["impl<'a> From<&'a PyDateTime> for &'a PyAny"],["impl From<&PyRuntimeError> for PyErr"],["impl From<Error> for PyErr"],["impl From<&IncompleteReadError> for PyErr"],["impl<'a> From<&'a PyFunction> for &'a PyAny"],["impl From<&PyImportWarning> for PyErr"],["impl From<&PyDictValues> for Py<PyDictValues>"],["impl From<&PyCapsule> for Py<PyCapsule>"],["impl From<&PanicException> for PyErr"],["impl From<&PySystemExit> for PyErr"],["impl From<&PanicException> for Py<PanicException>"],["impl<'a> From<PyDowncastError<'a>> for PyErr"],["impl<'a> From<&'a PyDictValues> for &'a PyAny"],["impl<'a> From<&'a PySequence> for &'a PyAny"],["impl From<&PyEncodingWarning> for PyErr"],["impl From<&timeout> for Py<timeout>"],["impl<'a> From<&'a PyIOError> for &'a PyAny"],["impl From<&PyProcessLookupError> for Py<PyProcessLookupError>"],["impl<'a> From<&'a PyGeneratorExit> for &'a PyAny"],["impl From<&PyZeroDivisionError> for PyErr"],["impl From<&PyKeyboardInterrupt> for Py<PyKeyboardInterrupt>"],["impl From<&PyBool> for Py<PyBool>"],["impl From<&PyConnectionResetError> for Py<PyConnectionResetError>"],["impl From<&PyMemoryError> for Py<PyMemoryError>"],["impl<'a> From<&'a PyPermissionError> for &'a PyAny"],["impl From<&PyDictItems> for Py<PyDictItems>"],["impl From<&herror> for PyErr"],["impl From<&PySet> for Py<PySet>"],["impl<'a> From<&'a PyNameError> for &'a PyAny"],["impl<'a> From<&'a timeout> for &'a PyAny"],["impl<'a> From<&'a PyModuleNotFoundError> for &'a PyAny"],["impl From<&PyStopIteration> for Py<PyStopIteration>"],["impl<'a> From<&'a PyRuntimeWarning> for &'a PyAny"],["impl<'a> From<&'a PyBool> for &'a PyAny"],["impl<'a> From<&'a PyStopAsyncIteration> for &'a PyAny"],["impl<'a> From<&'a PyConnectionResetError> for &'a PyAny"],["impl From<&PyCFunction> for Py<PyCFunction>"],["impl From<&PyReferenceError> for PyErr"],["impl From<&PyUnboundLocalError> for Py<PyUnboundLocalError>"],["impl<'a> From<&'a PyFileNotFoundError> for &'a PyAny"],["impl From<&PyOverflowError> for PyErr"],["impl<T> From<&PyCell<T>> for Py<T>where\n T: PyClass,"],["impl<'a> From<&'a PyComplex> for &'a PyAny"],["impl From<&PyCode> for Py<PyCode>"],["impl From<&PyTimeoutError> for PyErr"],["impl From<&PyList> for Py<PyList>"],["impl<'a> From<&'a PyDate> for &'a PyAny"],["impl From<&PyNotImplementedError> for Py<PyNotImplementedError>"],["impl From<&PySyntaxWarning> for Py<PySyntaxWarning>"],["impl From<&PyFunction> for Py<PyFunction>"],["impl From<&PyByteArray> for Py<PyByteArray>"],["impl From<&PyTraceback> for Py<PyTraceback>"],["impl From<&PyDictKeys> for Py<PyDictKeys>"],["impl<'a> From<&'a PyArithmeticError> for &'a PyAny"],["impl<'a> From<&'a PyEOFError> for &'a PyAny"],["impl From<&PyBytes> for Py<PyBytes>"],["impl From<&PySyntaxError> for PyErr"],["impl From<&PyUnboundLocalError> for PyErr"],["impl<'a> From<&'a PySet> for &'a PyAny"],["impl From<&PyBytesWarning> for PyErr"],["impl From<&LimitOverrunError> for Py<LimitOverrunError>"],["impl From<&PyInterruptedError> for PyErr"],["impl<'a> From<&'a PyFrozenSet> for &'a PyAny"],["impl<'a> From<&'a PyInterruptedError> for &'a PyAny"],["impl From<&PyString> for Py<PyString>"],["impl<'a> From<&'a PyIterator> for &'a PyAny"],["impl<'a> From<&'a PySyntaxError> for &'a PyAny"],["impl From<ParseFloatError> for PyErr"],["impl From<&TimeoutError> for Py<TimeoutError>"],["impl From<&PyUnicodeError> for Py<PyUnicodeError>"],["impl From<&PyBufferError> for PyErr"],["impl<'a> From<&'a PyFrame> for &'a PyAny"],["impl<'a> From<&'a PyCFunction> for &'a PyAny"],["impl From<&PyLookupError> for Py<PyLookupError>"],["impl<'a> From<&'a PyProcessLookupError> for &'a PyAny"],["impl From<&PyUnicodeTranslateError> for PyErr"],["impl From<Utf8Error> for PyErr"],["impl From<&PyConnectionAbortedError> for Py<PyConnectionAbortedError>"],["impl From<AddrParseError> for PyErr"],["impl From<&PyNotADirectoryError> for Py<PyNotADirectoryError>"],["impl From<&PyNameError> for Py<PyNameError>"],["impl From<&gaierror> for PyErr"],["impl From<&PyPendingDeprecationWarning> for PyErr"],["impl From<&PyConnectionResetError> for PyErr"],["impl From<TryFromSliceError> for PyErr"],["impl<'a> From<&'a PyDelta> for &'a PyAny"],["impl<'a, T> From<PyRefMut<'a, T>> for Py<T>where\n T: PyClass<Frozen = False>,"],["impl From<&PyRecursionError> for Py<PyRecursionError>"],["impl From<&LimitOverrunError> for PyErr"],["impl From<FromUtf8Error> for PyErr"],["impl<'a> From<&'a PyReferenceError> for &'a PyAny"],["impl From<&PyArithmeticError> for Py<PyArithmeticError>"],["impl From<&TimeoutError> for PyErr"],["impl From<&PyRuntimeWarning> for PyErr"],["impl<'a> From<&'a gaierror> for &'a PyAny"],["impl<'a> From<&'a PyUnboundLocalError> for &'a PyAny"],["impl From<&PyGeneratorExit> for PyErr"],["impl<T> From<Py<T>> for PyObjectwhere\n T: AsRef<PyAny>,"],["impl From<&herror> for Py<herror>"],["impl<'a> From<&'a QueueFull> for &'a PyAny"],["impl From<&PyMemoryError> for PyErr"],["impl From<&PyIndexError> for PyErr"],["impl<T: PyClass> From<Py<T>> for PyClassInitializer<T>"],["impl From<&InvalidStateError> for PyErr"],["impl From<&QueueFull> for PyErr"],["impl From<&PyChildProcessError> for Py<PyChildProcessError>"],["impl From<&PyTuple> for Py<PyTuple>"],["impl From<&PyUnicodeError> for PyErr"],["impl From<&PySuper> for Py<PySuper>"],["impl From<&PyBaseException> for PyErr"],["impl From<&PyWarning> for PyErr"],["impl From<&PyKeyError> for PyErr"],["impl From<&PyNotADirectoryError> for PyErr"],["impl<T> From<&T> for PyObjectwhere\n T: AsPyPointer + PyNativeType,"],["impl<'a> From<&'a PyStopIteration> for &'a PyAny"],["impl From<&PyUnicodeWarning> for PyErr"],["impl<'a> From<&'a PySlice> for &'a PyAny"],["impl From<&PySlice> for Py<PySlice>"],["impl<'a> From<&'a PyNotADirectoryError> for &'a PyAny"],["impl<'a> From<&'a PyUnicodeDecodeError> for &'a PyAny"],["impl From<&PyImportWarning> for Py<PyImportWarning>"],["impl<'a> From<&'a PyBufferError> for &'a PyAny"],["impl From<&PyRecursionError> for PyErr"],["impl From<&PyFileNotFoundError> for Py<PyFileNotFoundError>"],["impl<'a> From<&'a PyValueError> for &'a PyAny"],["impl From<&PyInterruptedError> for Py<PyInterruptedError>"],["impl From<&PySyntaxError> for Py<PySyntaxError>"],["impl<'a> From<&'a PyOSError> for &'a PyAny"],["impl From<&PyFloat> for Py<PyFloat>"],["impl<'a> From<&'a PyConnectionError> for &'a PyAny"],["impl From<FromUtf16Error> for PyErr"],["impl From<&PyEOFError> for PyErr"],["impl<'a> From<&'a PyMemoryError> for &'a PyAny"],["impl From<&PyTzInfo> for Py<PyTzInfo>"],["impl From<&PyArithmeticError> for PyErr"],["impl From<&PyIndexError> for Py<PyIndexError>"],["impl From<&PyIsADirectoryError> for PyErr"],["impl From<&PySyntaxWarning> for PyErr"],["impl<'a> From<&'a PyBlockingIOError> for &'a PyAny"],["impl From<&PyOSError> for Py<PyOSError>"],["impl<T> From<T> for PyClassInitializer<T>where\n T: PyClass,\n T::BaseType: PyClassBaseType<Initializer = PyNativeTypeInitializer<T::BaseType>>,"],["impl From<NulError> for PyErr"],["impl From<&PyUnicodeDecodeError> for Py<PyUnicodeDecodeError>"],["impl<'a> From<&'a LimitOverrunError> for &'a PyAny"],["impl<W: 'static + Send + Sync + Debug> From<IntoInnerError<W>> for PyErr"]], -"quick_xml":[["impl From<Error> for DeError"],["impl<'a> From<&'a str> for Text<'a>"],["impl From<Utf8Error> for Error"],["impl<'a> From<Attr<&'a [u8]>> for Attribute<'a>"],["impl From<ParseFloatError> for DeError"],["impl From<Utf8Error> for DeError"],["impl From<ParseIntError> for DeError"],["impl From<Error> for DeError"],["impl<'a> From<(&'a str, &'a str)> for Attribute<'a>"],["impl From<FromUtf8Error> for Error"],["impl From<EscapeError> for Error"],["impl<'a> From<(&'a [u8], &'a [u8])> for Attribute<'a>"],["impl From<EscapeError> for DeError"],["impl<T> From<Attr<T>> for (T, Option<T>)"],["impl From<AttrError> for Error"],["impl From<Error> for Error"],["impl<'a> From<QName<'a>> for LocalName<'a>"],["impl From<AttrError> for DeError"],["impl From<FromUtf8Error> for DeError"]], +"quick_xml":[["impl From<EscapeError> for Error"],["impl<'a> From<&'a str> for Text<'a>"],["impl From<Error> for Error"],["impl From<Utf8Error> for DeError"],["impl From<Utf8Error> for Error"],["impl From<FromUtf8Error> for Error"],["impl<'a> From<(&'a [u8], &'a [u8])> for Attribute<'a>"],["impl From<ParseFloatError> for DeError"],["impl<'a> From<(&'a str, &'a str)> for Attribute<'a>"],["impl From<Error> for DeError"],["impl From<AttrError> for DeError"],["impl From<EscapeError> for DeError"],["impl From<AttrError> for Error"],["impl From<Error> for DeError"],["impl<'a> From<QName<'a>> for LocalName<'a>"],["impl From<ParseIntError> for DeError"],["impl From<FromUtf8Error> for DeError"],["impl<'a> From<Attr<&'a [u8]>> for Attribute<'a>"],["impl<T> From<Attr<T>> for (T, Option<T>)"]], "rand":[["impl<X: SampleUniform> From<RangeInclusive<X>> for Uniform<X>"],["impl<X: SampleUniform> From<Range<X>> for Uniform<X>"],["impl From<Vec<u32, Global>> for IndexVec"],["impl From<Vec<usize, Global>> for IndexVec"]], "rand_chacha":[["impl From<ChaCha20Core> for ChaCha20Rng"],["impl From<ChaCha12Core> for ChaCha12Rng"],["impl From<ChaCha8Core> for ChaCha8Rng"]], "rand_core":[["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<NonZeroU32> for Error"]], "regex":[["impl<'h> From<Match<'h>> for Range<usize>"],["impl<'h> From<Match<'h>> for &'h [u8]"],["impl<'h> From<Match<'h>> for &'h str"],["impl<'h> From<Match<'h>> for Range<usize>"]], "regex_automata":[["impl From<u8> for PatternID"],["impl From<Span> for Range<usize>"],["impl From<u8> for SmallIndex"],["impl From<u8> for StateID"],["impl<'h, H: ?Sized + AsRef<[u8]>> From<&'h H> for Input<'h>"],["impl From<Range<usize>> for Span"]], "regex_syntax":[["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<u8> for Literal"],["impl From<char> for Literal"]], -"reqwest":[["impl<T: Into<Body>> From<Response<T>> for Response"],["impl From<Upgraded> for Upgraded"],["impl From<Body> for Body"],["impl From<Response> for Body"],["impl From<&'static str> for Body"],["impl From<&'static [u8]> for Body"],["impl From<String> for Body"],["impl From<Bytes> for Body"],["impl From<Vec<u8, Global>> for Body"],["impl From<File> for Body"]], +"reqwest":[["impl From<Body> for Body"],["impl From<File> for Body"],["impl From<&'static str> for Body"],["impl<T: Into<Body>> From<Response<T>> for Response"],["impl From<Vec<u8, Global>> for Body"],["impl From<Bytes> for Body"],["impl From<String> for Body"],["impl From<Upgraded> for Upgraded"],["impl From<Response> for Body"],["impl From<&'static [u8]> for Body"]], "ring":[["impl From<KeyRejected> for Unspecified"],["impl From<TryFromSliceError> for Unspecified"],["impl From<EndOfInput> for Unspecified"],["impl From<Okm<'_, Algorithm>> for Prk"],["impl From<Okm<'_, &'static Algorithm>> for HeaderProtectionKey"],["impl From<Okm<'_, Algorithm>> for Salt"],["impl From<Okm<'_, &'static Algorithm>> for UnboundKey"],["impl From<Okm<'_, Algorithm>> for Key"]], "rustls":[["impl From<&'static Tls13CipherSuite> for SupportedCipherSuite"],["impl From<Vec<u8, Global>> for ResponderId"],["impl From<u8> for Compression"],["impl From<u16> for NamedGroup"],["impl From<u8> for PSKKeyExchangeMode"],["impl From<u8> for CertificateStatusType"],["impl From<InvalidMessage> for Error"],["impl From<u8> for HashAlgorithm"],["impl From<u16> for CipherSuite"],["impl From<ServerConnection> for Connection"],["impl From<Okm<'_, PayloadU8Len>> for PayloadU8"],["impl From<Vec<u8, Global>> for ProtocolName"],["impl From<PeerIncompatible> for Error"],["impl From<u8> for HeartbeatMode"],["impl From<u8> for ContentType"],["impl From<u8> for AlertLevel"],["impl From<u8> for ECCurveType"],["impl From<u8> for ClientCertificateType"],["impl From<Message> for PlainMessage"],["impl From<u8> for AlertDescription"],["impl From<CertificateError> for AlertDescription"],["impl From<u16> for SignatureScheme"],["impl From<u8> for KeyUpdateRequest"],["impl From<u8> for ECPointFormat"],["impl From<u8> for HeartbeatMessageType"],["impl From<SystemTimeError> for Error"],["impl From<Vec<u8, Global>> for PresharedKeyBinder"],["impl From<u24> for usize"],["impl From<CertRevocationListError> for Error"],["impl From<u16> for ProtocolVersion"],["impl From<Error> for CertRevocationListError"],["impl From<PeerMisbehaved> for Error"],["impl From<u16> for ExtensionType"],["impl From<u8> for ServerNameType"],["impl From<&'static Tls12CipherSuite> for SupportedCipherSuite"],["impl From<u8> for HandshakeType"],["impl From<Vec<u8, Global>> for DistinguishedName"],["impl From<u16> for NamedCurve"],["impl From<CertificateError> for Error"],["impl From<Vec<u8, Global>> for Sct"],["impl From<[u8; 32]> for Random"],["impl From<u8> for SignatureAlgorithm"],["impl From<ClientConnection> for Connection"]], -"serde_json":[["impl From<f32> for Value"],["impl From<i32> for Number"],["impl<T> From<Option<T>> for Valuewhere\n T: Into<Value>,"],["impl From<u32> for Value"],["impl<'a> From<Cow<'a, str>> for Value"],["impl From<()> for Value"],["impl From<u64> for Number"],["impl From<isize> for Value"],["impl From<u8> for Number"],["impl From<u8> for Value"],["impl From<f64> for Value"],["impl From<Number> for Value"],["impl From<Map<String, Value>> for Value"],["impl From<i16> for Number"],["impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value"],["impl From<i8> for Number"],["impl From<usize> for Number"],["impl From<bool> for Value"],["impl From<String> for Value"],["impl<'a> From<&'a str> for Value"],["impl From<i8> for Value"],["impl From<i64> for Value"],["impl<T: Into<Value>> From<Vec<T, Global>> for Value"],["impl From<usize> for Value"],["impl From<i64> for Number"],["impl From<u16> for Value"],["impl From<u32> for Number"],["impl From<isize> for Number"],["impl From<i32> for Value"],["impl From<u16> for Number"],["impl From<Error> for Error"],["impl From<Box<RawValue, Global>> for Box<str>"],["impl From<i16> for Value"],["impl From<u64> for Value"]], -"simd_json":[["impl From<i16> for Value"],["impl From<Value<'_>> for Value"],["impl<S> From<Vec<S, Global>> for Valuewhere\n Value: From<S>,"],["impl From<bool> for Value"],["impl From<Error> for Error"],["impl From<usize> for Value"],["impl From<i64> for Value"],["impl<'value> From<SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>> for Value<'value>"],["impl From<f32> for Value"],["impl<'value> From<usize> for Value<'value>"],["impl<'value> From<Cow<'value, str>> for Value"],["impl<'value, S> From<Vec<S, Global>> for Value<'value>where\n Value<'value>: From<S>,"],["impl<'value> From<i64> for Value<'value>"],["impl<T> From<Option<T>> for Valuewhere\n Value: From<T>,"],["impl<'value> From<u8> for Value<'value>"],["impl From<SizedHashMap<String, Value, NotSoRandomState, 32>> for Value"],["impl<'value> From<()> for Value<'value>"],["impl From<()> for Value"],["impl<'value> From<i8> for Value<'value>"],["impl<'value> From<Cow<'value, str>> for Value<'value>"],["impl From<String> for Value"],["impl From<i32> for Value"],["impl<'value> From<u64> for Value<'value>"],["impl From<i8> for Value"],["impl From<u16> for Value"],["impl From<HashMap<String, Value, RandomState>> for Value"],["impl<'value> From<i16> for Value<'value>"],["impl From<u8> for Value"],["impl From<f64> for Value"],["impl<'value> From<Value> for Value<'value>"],["impl From<&String> for Value"],["impl<'value> From<&'value str> for Value<'value>"],["impl From<StaticNode> for Value"],["impl From<Error> for Error"],["impl From<u64> for Value"],["impl<'value> From<f32> for Value<'value>"],["impl<'value> From<u32> for Value<'value>"],["impl From<&str> for Value"],["impl<'value> From<bool> for Value<'value>"],["impl<'value, T> From<Option<T>> for Value<'value>where\n Value<'value>: From<T>,"],["impl From<u32> for Value"],["impl<'key, S> From<S> for KnownKey<'key>where\n Cow<'key, str>: From<S>,"],["impl<'value> From<String> for Value<'value>"],["impl<'value> From<f64> for Value<'value>"],["impl<'value> From<u16> for Value<'value>"],["impl<'value> From<i32> for Value<'value>"],["impl<'value> From<StaticNode> for Value<'value>"]], +"serde_json":[["impl From<isize> for Value"],["impl From<u32> for Number"],["impl From<i32> for Number"],["impl From<Map<String, Value>> for Value"],["impl<T: Into<Value>> From<Vec<T, Global>> for Value"],["impl From<u16> for Number"],["impl From<u32> for Value"],["impl From<i64> for Value"],["impl<'a> From<&'a str> for Value"],["impl From<usize> for Number"],["impl From<Error> for Error"],["impl<T> From<Option<T>> for Valuewhere\n T: Into<Value>,"],["impl From<f32> for Value"],["impl From<i8> for Value"],["impl<'a> From<Cow<'a, str>> for Value"],["impl From<i32> for Value"],["impl From<f64> for Value"],["impl From<()> for Value"],["impl From<Number> for Value"],["impl From<bool> for Value"],["impl From<Box<RawValue, Global>> for Box<str>"],["impl From<String> for Value"],["impl From<i16> for Number"],["impl From<u16> for Value"],["impl From<i8> for Number"],["impl From<usize> for Value"],["impl From<u8> for Number"],["impl From<isize> for Number"],["impl From<i16> for Value"],["impl From<u64> for Number"],["impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value"],["impl From<i64> for Number"],["impl From<u8> for Value"],["impl From<u64> for Value"]], +"simd_json":[["impl<'key, S> From<S> for KnownKey<'key>where\n Cow<'key, str>: From<S>,"],["impl From<Value<'_>> for Value"],["impl<T> From<Option<T>> for Valuewhere\n Value: From<T>,"],["impl From<String> for Value"],["impl<'value> From<Cow<'value, str>> for Value<'value>"],["impl<'value> From<u16> for Value<'value>"],["impl<S> From<Vec<S, Global>> for Valuewhere\n Value: From<S>,"],["impl<'value> From<usize> for Value<'value>"],["impl From<u8> for Value"],["impl From<i32> for Value"],["impl<'value> From<Value> for Value<'value>"],["impl<'value> From<SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>> for Value<'value>"],["impl From<f32> for Value"],["impl<'value, T> From<Option<T>> for Value<'value>where\n Value<'value>: From<T>,"],["impl From<u16> for Value"],["impl<'value> From<bool> for Value<'value>"],["impl From<&String> for Value"],["impl From<SizedHashMap<String, Value, NotSoRandomState, 32>> for Value"],["impl<'value> From<i64> for Value<'value>"],["impl<'value> From<i16> for Value<'value>"],["impl<'value> From<StaticNode> for Value<'value>"],["impl From<i64> for Value"],["impl<'value> From<f64> for Value<'value>"],["impl<'value> From<i8> for Value<'value>"],["impl<'value> From<f32> for Value<'value>"],["impl<'value> From<u32> for Value<'value>"],["impl<'value> From<Cow<'value, str>> for Value"],["impl<'value> From<&'value str> for Value<'value>"],["impl<'value> From<i32> for Value<'value>"],["impl From<Error> for Error"],["impl From<bool> for Value"],["impl From<i8> for Value"],["impl From<i16> for Value"],["impl<'value> From<String> for Value<'value>"],["impl From<f64> for Value"],["impl<'value, S> From<Vec<S, Global>> for Value<'value>where\n Value<'value>: From<S>,"],["impl<'value> From<()> for Value<'value>"],["impl From<usize> for Value"],["impl From<&str> for Value"],["impl From<Error> for Error"],["impl From<u64> for Value"],["impl From<()> for Value"],["impl From<u32> for Value"],["impl<'value> From<u8> for Value<'value>"],["impl From<StaticNode> for Value"],["impl<'value> From<u64> for Value<'value>"],["impl From<HashMap<String, Value, RandomState>> for Value"]], "siphasher":[["impl From<Hash128> for u128"],["impl From<u128> for Hash128"]], "smallvec":[["impl From<LayoutError> for CollectionAllocErr"],["impl<A: Array> From<Vec<<A as Array>::Item, Global>> for SmallVec<A>"],["impl<'a, A: Array> From<&'a [<A as Array>::Item]> for SmallVec<A>where\n A::Item: Clone,"],["impl<A: Array> From<A> for SmallVec<A>"]], "smartstring":[["impl<Mode: SmartStringMode> From<String> for SmartString<Mode>"],["impl<Mode: SmartStringMode> From<&mut str> for SmartString<Mode>"],["impl<Mode: SmartStringMode> From<&str> for SmartString<Mode>"],["impl<Mode: SmartStringMode> From<Cow<'_, str>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> From<&String> for SmartString<Mode>"],["impl<Mode: SmartStringMode> From<Box<str, Global>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> From<SmartString<Mode>> for String"]], @@ -95,7 +95,7 @@ "unicode_bidi":[["impl From<u8> for Level"]], "untrusted":[["impl<'a> From<&'a [u8]> for Input<'a>"]], "url":[["impl From<Errors> for ParseError"],["impl From<Url> for String"]], -"value_trait":[["impl From<usize> for StaticNode"],["impl From<u32> for StaticNode"],["impl From<f64> for StaticNode"],["impl From<i64> for StaticNode"],["impl From<i16> for StaticNode"],["impl From<i8> for StaticNode"],["impl From<u8> for StaticNode"],["impl From<i32> for StaticNode"],["impl From<u16> for StaticNode"],["impl From<f32> for StaticNode"],["impl From<bool> for StaticNode"],["impl From<u64> for StaticNode"],["impl From<()> for StaticNode"]], +"value_trait":[["impl From<u64> for StaticNode"],["impl From<u32> for StaticNode"],["impl From<f32> for StaticNode"],["impl From<i32> for StaticNode"],["impl From<i64> for StaticNode"],["impl From<()> for StaticNode"],["impl From<u16> for StaticNode"],["impl From<bool> for StaticNode"],["impl From<i16> for StaticNode"],["impl From<u8> for StaticNode"],["impl From<i8> for StaticNode"],["impl From<f64> for StaticNode"],["impl From<usize> for StaticNode"]], "walkdir":[["impl From<Error> for Error"]], "webpki":[["impl<'a> From<DnsNameRef<'a>> for &'a str"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/convert/trait.TryFrom.js b/implementors/core/convert/trait.TryFrom.js index eb932e7f6ae4..eb0fc64e03a0 100644 --- a/implementors/core/convert/trait.TryFrom.js +++ b/implementors/core/convert/trait.TryFrom.js @@ -1,11 +1,11 @@ (function() {var implementors = { "aho_corasick":[["impl TryFrom<u16> for PatternID"],["impl TryFrom<usize> for StateID"],["impl TryFrom<u64> for PatternID"],["impl TryFrom<u32> for PatternID"],["impl TryFrom<u32> for StateID"],["impl TryFrom<usize> for PatternID"],["impl TryFrom<u64> for StateID"],["impl TryFrom<u16> for StateID"]], "allocator_api2":[["impl<T, A: Allocator, const N: usize> TryFrom<Box<[T], A>> for Box<[T; N], A>"],["impl<T, A: Allocator, const N: usize> TryFrom<Vec<T, A>> for [T; N]"]], -"arrow2":[["impl<O: Offset> TryFrom<Vec<O, Global>> for Offsets<O>"],["impl TryFrom<Offsets<i64>> for Offsets<i32>"],["impl TryFrom<&OffsetsBuffer<i64>> for OffsetsBuffer<i32>"],["impl<O: Offset> TryFrom<Buffer<O>> for OffsetsBuffer<O>"],["impl<O: Offset> TryFrom<Vec<O, Global>> for OffsetsBuffer<O>"]], -"arrow_format":[["impl<'a> TryFrom<DecimalRef<'a>> for Decimal"],["impl<'a> TryFrom<SparseMatrixIndexCsxRef<'a>> for SparseMatrixIndexCsx"],["impl<'a> TryFrom<FixedSizeBinaryRef<'a>> for FixedSizeBinary"],["impl<'a> TryFrom<TensorRef<'a>> for Tensor"],["impl TryFrom<i8> for CompressionType"],["impl<'a> TryFrom<FloatingPointRef<'a>> for FloatingPoint"],["impl<'a> TryFrom<LargeListRef<'a>> for LargeList"],["impl<'a> TryFrom<SchemaRef<'a>> for Schema"],["impl<'a> TryFrom<FixedSizeListRef<'a>> for FixedSizeList"],["impl<'a> TryFrom<TimeRef<'a>> for Time"],["impl<'a> TryFrom<DateRef<'a>> for Date"],["impl<'a> TryFrom<DictionaryBatchRef<'a>> for DictionaryBatch"],["impl<'a> TryFrom<MessageHeaderRef<'a>> for MessageHeader"],["impl<'a> TryFrom<SparseTensorIndexCsfRef<'a>> for SparseTensorIndexCsf"],["impl TryFrom<i8> for BodyCompressionMethod"],["impl<'a> TryFrom<LargeBinaryRef<'a>> for LargeBinary"],["impl<'a> TryFrom<ListRef<'a>> for List"],["impl<'a> TryFrom<IntervalRef<'a>> for Interval"],["impl TryFrom<i16> for SparseMatrixCompressedAxis"],["impl<'a> TryFrom<FieldNodeRef<'a>> for FieldNode"],["impl<'a> TryFrom<MessageRef<'a>> for Message"],["impl<'a> TryFrom<BufferRef<'a>> for Buffer"],["impl<'a> TryFrom<FieldRef<'a>> for Field"],["impl<'a> TryFrom<SparseTensorRef<'a>> for SparseTensor"],["impl<'a> TryFrom<UnionRef<'a>> for Union"],["impl<'a> TryFrom<RecordBatchRef<'a>> for RecordBatch"],["impl TryFrom<i64> for Feature"],["impl<'a> TryFrom<TensorDimRef<'a>> for TensorDim"],["impl<'a> TryFrom<TypeRef<'a>> for Type"],["impl<'a> TryFrom<LargeUtf8Ref<'a>> for LargeUtf8"],["impl<'a> TryFrom<FooterRef<'a>> for Footer"],["impl TryFrom<i16> for DateUnit"],["impl<'a> TryFrom<BinaryRef<'a>> for Binary"],["impl TryFrom<i16> for DictionaryKind"],["impl<'a> TryFrom<BodyCompressionRef<'a>> for BodyCompression"],["impl<'a> TryFrom<DictionaryEncodingRef<'a>> for DictionaryEncoding"],["impl<'a> TryFrom<MapRef<'a>> for Map"],["impl TryFrom<i16> for TimeUnit"],["impl TryFrom<i16> for UnionMode"],["impl<'a> TryFrom<StructRef<'a>> for Struct"],["impl<'a> TryFrom<DurationRef<'a>> for Duration"],["impl TryFrom<i16> for IntervalUnit"],["impl<'a> TryFrom<SparseTensorIndexCooRef<'a>> for SparseTensorIndexCoo"],["impl<'a> TryFrom<NullRef<'a>> for Null"],["impl<'a> TryFrom<BoolRef<'a>> for Bool"],["impl<'a> TryFrom<KeyValueRef<'a>> for KeyValue"],["impl<'a> TryFrom<BlockRef<'a>> for Block"],["impl<'a> TryFrom<SparseTensorIndexRef<'a>> for SparseTensorIndex"],["impl TryFrom<i16> for Precision"],["impl<'a> TryFrom<Utf8Ref<'a>> for Utf8"],["impl TryFrom<i16> for MetadataVersion"],["impl<'a> TryFrom<IntRef<'a>> for Int"],["impl<'a> TryFrom<TimestampRef<'a>> for Timestamp"],["impl TryFrom<i16> for Endianness"]], +"arrow2":[["impl TryFrom<&OffsetsBuffer<i64>> for OffsetsBuffer<i32>"],["impl<O: Offset> TryFrom<Vec<O, Global>> for OffsetsBuffer<O>"],["impl<O: Offset> TryFrom<Buffer<O>> for OffsetsBuffer<O>"],["impl<O: Offset> TryFrom<Vec<O, Global>> for Offsets<O>"],["impl TryFrom<Offsets<i64>> for Offsets<i32>"]], +"arrow_format":[["impl<'a> TryFrom<SparseTensorRef<'a>> for SparseTensor"],["impl<'a> TryFrom<FloatingPointRef<'a>> for FloatingPoint"],["impl<'a> TryFrom<SparseTensorIndexCooRef<'a>> for SparseTensorIndexCoo"],["impl<'a> TryFrom<FieldRef<'a>> for Field"],["impl<'a> TryFrom<DurationRef<'a>> for Duration"],["impl TryFrom<i16> for IntervalUnit"],["impl<'a> TryFrom<ListRef<'a>> for List"],["impl<'a> TryFrom<MessageRef<'a>> for Message"],["impl<'a> TryFrom<SchemaRef<'a>> for Schema"],["impl TryFrom<i16> for TimeUnit"],["impl<'a> TryFrom<FieldNodeRef<'a>> for FieldNode"],["impl<'a> TryFrom<TimeRef<'a>> for Time"],["impl<'a> TryFrom<LargeBinaryRef<'a>> for LargeBinary"],["impl<'a> TryFrom<BlockRef<'a>> for Block"],["impl TryFrom<i16> for SparseMatrixCompressedAxis"],["impl<'a> TryFrom<FixedSizeBinaryRef<'a>> for FixedSizeBinary"],["impl<'a> TryFrom<DateRef<'a>> for Date"],["impl<'a> TryFrom<TensorRef<'a>> for Tensor"],["impl<'a> TryFrom<TimestampRef<'a>> for Timestamp"],["impl TryFrom<i16> for Precision"],["impl<'a> TryFrom<BinaryRef<'a>> for Binary"],["impl<'a> TryFrom<BoolRef<'a>> for Bool"],["impl<'a> TryFrom<DecimalRef<'a>> for Decimal"],["impl<'a> TryFrom<MapRef<'a>> for Map"],["impl<'a> TryFrom<LargeUtf8Ref<'a>> for LargeUtf8"],["impl<'a> TryFrom<NullRef<'a>> for Null"],["impl<'a> TryFrom<MessageHeaderRef<'a>> for MessageHeader"],["impl TryFrom<i16> for MetadataVersion"],["impl TryFrom<i8> for CompressionType"],["impl<'a> TryFrom<FooterRef<'a>> for Footer"],["impl<'a> TryFrom<IntervalRef<'a>> for Interval"],["impl TryFrom<i8> for BodyCompressionMethod"],["impl<'a> TryFrom<SparseMatrixIndexCsxRef<'a>> for SparseMatrixIndexCsx"],["impl TryFrom<i16> for UnionMode"],["impl TryFrom<i16> for DateUnit"],["impl<'a> TryFrom<IntRef<'a>> for Int"],["impl<'a> TryFrom<LargeListRef<'a>> for LargeList"],["impl TryFrom<i16> for Endianness"],["impl<'a> TryFrom<DictionaryEncodingRef<'a>> for DictionaryEncoding"],["impl<'a> TryFrom<DictionaryBatchRef<'a>> for DictionaryBatch"],["impl<'a> TryFrom<BodyCompressionRef<'a>> for BodyCompression"],["impl<'a> TryFrom<KeyValueRef<'a>> for KeyValue"],["impl<'a> TryFrom<RecordBatchRef<'a>> for RecordBatch"],["impl TryFrom<i16> for DictionaryKind"],["impl<'a> TryFrom<TensorDimRef<'a>> for TensorDim"],["impl TryFrom<i64> for Feature"],["impl<'a> TryFrom<Utf8Ref<'a>> for Utf8"],["impl<'a> TryFrom<BufferRef<'a>> for Buffer"],["impl<'a> TryFrom<UnionRef<'a>> for Union"],["impl<'a> TryFrom<FixedSizeListRef<'a>> for FixedSizeList"],["impl<'a> TryFrom<TypeRef<'a>> for Type"],["impl<'a> TryFrom<SparseTensorIndexRef<'a>> for SparseTensorIndex"],["impl<'a> TryFrom<StructRef<'a>> for Struct"],["impl<'a> TryFrom<SparseTensorIndexCsfRef<'a>> for SparseTensorIndexCsf"]], "base64":[["impl TryFrom<&str> for Alphabet"]], "chrono":[["impl TryFrom<u8> for Month"],["impl TryFrom<u8> for Weekday"]], -"ciborium":[["impl TryFrom<Integer> for i16"],["impl TryFrom<u128> for Integer"],["impl TryFrom<Integer> for isize"],["impl TryFrom<i128> for Integer"],["impl TryFrom<Integer> for u8"],["impl TryFrom<Integer> for u16"],["impl TryFrom<Integer> for i8"],["impl TryFrom<Integer> for u32"],["impl TryFrom<Integer> for usize"],["impl TryFrom<Integer> for u64"],["impl TryFrom<Integer> for i64"],["impl TryFrom<Integer> for i32"],["impl TryFrom<Integer> for u128"]], +"ciborium":[["impl TryFrom<i128> for Integer"],["impl TryFrom<Integer> for i32"],["impl TryFrom<Integer> for u8"],["impl TryFrom<Integer> for u128"],["impl TryFrom<Integer> for i8"],["impl TryFrom<Integer> for u64"],["impl TryFrom<u128> for Integer"],["impl TryFrom<Integer> for i64"],["impl TryFrom<Integer> for i16"],["impl TryFrom<Integer> for usize"],["impl TryFrom<Integer> for isize"],["impl TryFrom<Integer> for u32"],["impl TryFrom<Integer> for u16"]], "crossterm":[["impl TryFrom<&str> for Color"]], "ethnum":[["impl TryFrom<U256> for isize"],["impl TryFrom<I256> for u32"],["impl TryFrom<I256> for U256"],["impl TryFrom<I256> for isize"],["impl TryFrom<i64> for U256"],["impl TryFrom<I256> for u16"],["impl TryFrom<U256> for i8"],["impl TryFrom<I256> for i64"],["impl TryFrom<I256> for i32"],["impl TryFrom<U256> for usize"],["impl TryFrom<i16> for U256"],["impl TryFrom<U256> for u8"],["impl TryFrom<I256> for u8"],["impl TryFrom<U256> for i16"],["impl TryFrom<i8> for U256"],["impl TryFrom<I256> for i8"],["impl TryFrom<I256> for u64"],["impl TryFrom<U256> for u32"],["impl TryFrom<I256> for i16"],["impl TryFrom<I256> for usize"],["impl TryFrom<usize> for U256"],["impl TryFrom<I256> for i128"],["impl TryFrom<I256> for u128"],["impl TryFrom<U256> for i32"],["impl TryFrom<i32> for U256"],["impl TryFrom<U256> for I256"],["impl TryFrom<U256> for u16"],["impl TryFrom<U256> for u64"],["impl TryFrom<U256> for i64"],["impl TryFrom<U256> for i128"],["impl TryFrom<U256> for u128"],["impl TryFrom<i128> for U256"],["impl TryFrom<isize> for U256"]], "http":[["impl TryFrom<u16> for StatusCode"],["impl<'a> TryFrom<&'a str> for Scheme"],["impl<'a> TryFrom<&'a str> for Authority"],["impl TryFrom<String> for PathAndQuery"],["impl TryFrom<String> for Uri"],["impl<'a> TryFrom<&'a [u8]> for HeaderName"],["impl<'a> TryFrom<&'a Uri> for Uri"],["impl<'a> TryFrom<&'a str> for HeaderName"],["impl<'a> TryFrom<&'a str> for Method"],["impl<'a> TryFrom<&'a [u8]> for PathAndQuery"],["impl TryFrom<Vec<u8, Global>> for HeaderValue"],["impl TryFrom<Vec<u8, Global>> for HeaderName"],["impl<'a> TryFrom<&'a [u8]> for Uri"],["impl<'a> TryFrom<Vec<u8, Global>> for Uri"],["impl TryFrom<Vec<u8, Global>> for Authority"],["impl<'a> TryFrom<&'a [u8]> for StatusCode"],["impl<'a> TryFrom<&'a str> for HeaderValue"],["impl TryFrom<&String> for PathAndQuery"],["impl<'a> TryFrom<&'a String> for Uri"],["impl<'a> TryFrom<&'a String> for HeaderName"],["impl TryFrom<String> for Authority"],["impl TryFrom<String> for HeaderName"],["impl<'a> TryFrom<&'a [u8]> for Scheme"],["impl TryFrom<Parts> for Uri"],["impl<'a, K, V, T> TryFrom<&'a HashMap<K, V, RandomState>> for HeaderMap<T>where\n K: Eq + Hash,\n HeaderName: TryFrom<&'a K>,\n <HeaderName as TryFrom<&'a K>>::Error: Into<Error>,\n T: TryFrom<&'a V>,\n T::Error: Into<Error>,"],["impl TryFrom<String> for HeaderValue"],["impl<'a> TryFrom<&'a str> for StatusCode"],["impl<'a> TryFrom<&'a [u8]> for Method"],["impl<'a> TryFrom<&'a String> for HeaderValue"],["impl<'a> TryFrom<&'a [u8]> for HeaderValue"],["impl<'a> TryFrom<&'a str> for PathAndQuery"],["impl<'a> TryFrom<&'a str> for Uri"],["impl<'a> TryFrom<&'a [u8]> for Authority"],["impl<'a> TryFrom<Vec<u8, Global>> for PathAndQuery"]], @@ -15,7 +15,7 @@ "parquet2":[["impl TryFrom<(ConvertedType, Option<(i32, i32)>)> for PrimitiveConvertedType"],["impl TryFrom<ConvertedType> for GroupConvertedType"],["impl TryFrom<FieldRepetitionType> for Repetition"],["impl TryFrom<LogicalType> for PrimitiveLogicalType"],["impl TryFrom<BoundaryOrder> for BoundaryOrder"],["impl TryFrom<Encoding> for Encoding"],["impl TryFrom<LogicalType> for GroupLogicalType"],["impl TryFrom<CompressionCodec> for Compression"],["impl TryFrom<PageType> for PageType"],["impl TryFrom<(Type, Option<i32>)> for PhysicalType"]], "parquet_format_safe":[["impl TryFrom<i32> for ProtocolErrorKind"],["impl TryFrom<i32> for ApplicationErrorKind"],["impl TryFrom<u8> for TMessageType"],["impl TryFrom<i32> for TransportErrorKind"]], "planus":[["impl<'buf, T: VectorRead<'buf>, O> TryFrom<Vector<'buf, T>> for Vec<O>where\n O: TryFrom<T>,\n Error: From<O::Error>,"]], -"polars_core":[["impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series"],["impl TryFrom<StructArray> for DataFrame"],["impl TryFrom<(&str, Box<dyn Array, Global>)> for Series"],["impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame"]], +"polars_core":[["impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame"],["impl TryFrom<(&str, Box<dyn Array, Global>)> for Series"],["impl TryFrom<StructArray> for DataFrame"],["impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series"]], "polars_plan":[["impl TryFrom<AnyValue<'_>> for LiteralValue"]], "pyo3":[["impl<'a, T: PyClass> TryFrom<&'a PyCell<T>> for PyRef<'a, T>"],["impl<'a, T: PyClass<Frozen = False>> TryFrom<&'a PyCell<T>> for PyRefMut<'a, T>"]], "quick_xml":[["impl<'ns> TryFrom<ResolveResult<'ns>> for Option<Namespace<'ns>>"]], @@ -23,9 +23,9 @@ "regex_automata":[["impl TryFrom<u64> for SmallIndex"],["impl TryFrom<u16> for PatternID"],["impl TryFrom<u32> for PatternID"],["impl TryFrom<u32> for SmallIndex"],["impl TryFrom<usize> for PatternID"],["impl TryFrom<usize> for SmallIndex"],["impl TryFrom<u16> for StateID"],["impl TryFrom<usize> for StateID"],["impl TryFrom<u64> for PatternID"],["impl TryFrom<u32> for StateID"],["impl TryFrom<u16> for SmallIndex"],["impl TryFrom<u64> for StateID"]], "reqwest":[["impl<T> TryFrom<Request<T>> for Requestwhere\n T: Into<Body>,"],["impl TryFrom<Request> for HttpRequest<Body>"]], "rustls":[["impl<'a> TryFrom<&'a Certificate> for ParsedCertificate<'a>"],["impl TryFrom<PlainMessage> for Message"],["impl TryFrom<&str> for ServerName"],["impl TryFrom<String> for DnsName"]], -"simd_json":[["impl<'value> TryFrom<Value> for BorrowedValue<'value>"],["impl TryFrom<Value> for OwnedValue"]], +"simd_json":[["impl TryFrom<Value> for OwnedValue"],["impl<'value> TryFrom<Value> for BorrowedValue<'value>"]], "sqlparser":[["impl TryFrom<Statement> for CreateTableBuilder"]], -"sysinfo":[["impl TryFrom<usize> for Uid"],["impl TryFrom<usize> for Gid"]], +"sysinfo":[["impl TryFrom<usize> for Gid"],["impl TryFrom<usize> for Uid"]], "tinyvec":[["impl<T, A> TryFrom<&[T]> for ArrayVec<A>where\n T: Clone + Default,\n A: Array<Item = T>,"]], "tokio":[["impl TryFrom<UnixStream> for UnixStream"],["impl TryFrom<UdpSocket> for UdpSocket"],["impl TryFrom<TcpStream> for TcpStream"],["impl TryFrom<UnixDatagram> for UnixDatagram"],["impl TryFrom<TcpListener> for TcpListener"],["impl TryFrom<UnixListener> for UnixListener"]], "url":[["impl<'a> TryFrom<&'a str> for Url"]], diff --git a/implementors/core/convert/trait.TryInto.js b/implementors/core/convert/trait.TryInto.js index 337c32a05de8..f24849e8fc97 100644 --- a/implementors/core/convert/trait.TryInto.js +++ b/implementors/core/convert/trait.TryInto.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"simd_json":[["impl TryInto<Value> for OwnedValue"],["impl<'value> TryInto<Value> for BorrowedValue<'value>"]] +"simd_json":[["impl<'value> TryInto<Value> for BorrowedValue<'value>"],["impl TryInto<Value> for OwnedValue"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/default/trait.Default.js b/implementors/core/default/trait.Default.js index a893c5aa8b21..e8922c5c76a6 100644 --- a/implementors/core/default/trait.Default.js +++ b/implementors/core/default/trait.Default.js @@ -6,8 +6,8 @@ "alloc_no_stdlib":[["impl<'a, T: 'a> Default for AllocatedStackMemory<'a, T>"]], "alloc_stdlib":[["impl<T> Default for WrapBox<T>"],["impl<'a, T: 'a> Default for HeapPrealloc<'a, T>"],["impl Default for StandardAlloc"],["impl<T: Clone + Default> Default for HeapAlloc<T>"]], "allocator_api2":[["impl Default for Global"],["impl<T> Default for Vec<T>"],["impl<T, A: Allocator + Default> Default for Box<[T], A>"],["impl<A: Allocator + Default> Default for Box<str, A>"],["impl<T: Default> Default for Box<T>"]], -"arrow2":[["impl<T: NativeType> Default for PrimitiveArray<T>"],["impl Default for months_days_nsx8"],["impl<O: Offset> Default for MutableBinaryArray<O>"],["impl<O: Offset> Default for MutableUtf8Array<O>"],["impl Default for f16"],["impl Default for u64x8"],["impl Default for GrowableNull"],["impl Default for Schema"],["impl Default for u8x64"],["impl Default for i128x8"],["impl<O: Offset> Default for Offsets<O>"],["impl Default for Bitmap"],["impl Default for NullScalar"],["impl Default for days_ms"],["impl Default for i64x8"],["impl<O: Offset> Default for MutableBinaryValuesArray<O>"],["impl Default for i8x64"],["impl Default for i256x8"],["impl Default for MutableBitmap"],["impl Default for i32x16"],["impl Default for i256"],["impl Default for i16x32"],["impl Default for u16x32"],["impl Default for WriteOptions"],["impl Default for MutableBooleanArray"],["impl Default for IpcField"],["impl Default for months_days_ns"],["impl<O: Offset, M: MutableArray + Default> Default for MutableListArray<O, M>"],["impl Default for f16x32"],["impl<T> Default for Buffer<T>"],["impl Default for f64x8"],["impl<O: Offset> Default for Utf8Array<O>"],["impl<O: Offset> Default for OffsetsBuffer<O>"],["impl<K: DictionaryKey, M: MutableArray + Default> Default for MutableDictionaryArray<K, M>"],["impl Default for f32x16"],["impl<O: Offset> Default for MutableUtf8ValuesArray<O>"],["impl Default for days_msx8"],["impl Default for u32x16"],["impl<T: NativeType> Default for MutablePrimitiveArray<T>"],["impl Default for CastOptions"]], -"avro_schema":[["impl Default for CompressedBlock"],["impl Default for Block"]], +"arrow2":[["impl Default for u8x64"],["impl<T: NativeType> Default for MutablePrimitiveArray<T>"],["impl Default for f64x8"],["impl<O: Offset, M: MutableArray + Default> Default for MutableListArray<O, M>"],["impl Default for i32x16"],["impl<O: Offset> Default for MutableBinaryArray<O>"],["impl Default for IpcField"],["impl Default for f16"],["impl Default for WriteOptions"],["impl<K: DictionaryKey, M: MutableArray + Default> Default for MutableDictionaryArray<K, M>"],["impl Default for MutableBooleanArray"],["impl Default for months_days_nsx8"],["impl Default for i16x32"],["impl<O: Offset> Default for OffsetsBuffer<O>"],["impl Default for f32x16"],["impl<T> Default for Buffer<T>"],["impl Default for i256x8"],["impl Default for u32x16"],["impl Default for u64x8"],["impl<O: Offset> Default for MutableUtf8ValuesArray<O>"],["impl Default for Bitmap"],["impl Default for i8x64"],["impl Default for i256"],["impl Default for NullScalar"],["impl Default for CastOptions"],["impl<O: Offset> Default for MutableBinaryValuesArray<O>"],["impl Default for months_days_ns"],["impl Default for f16x32"],["impl<O: Offset> Default for Utf8Array<O>"],["impl Default for MutableBitmap"],["impl Default for days_ms"],["impl<O: Offset> Default for Offsets<O>"],["impl<T: NativeType> Default for PrimitiveArray<T>"],["impl Default for i64x8"],["impl Default for Schema"],["impl Default for i128x8"],["impl Default for GrowableNull"],["impl<O: Offset> Default for MutableUtf8Array<O>"],["impl Default for u16x32"],["impl Default for days_msx8"]], +"avro_schema":[["impl Default for Block"],["impl Default for CompressedBlock"]], "base64":[["impl Default for GeneralPurposeConfig"]], "brotli":[["impl<AllocU8: Allocator<u8> + Default, AllocU16: Allocator<u16> + Default, AllocI32: Allocator<i32> + Default, AllocU32: Allocator<u32> + Default, AllocU64: Allocator<u64> + Default, AllocCommand: Allocator<Command> + Default, AllocFloatX: Allocator<floatX> + Default, AllocV8: Allocator<v8> + Default, AllocS16: Allocator<s16> + Default, AllocPDF: Allocator<PDF> + Default, AllocStaticCommand: Allocator<StaticCommand> + Default, AllocHistogramLiteral: Allocator<HistogramLiteral> + Default, AllocHistogramCommand: Allocator<HistogramCommand> + Default, AllocHistogramDistance: Allocator<HistogramDistance> + Default, AllocHistogramPair: Allocator<HistogramPair> + Default, AllocContextType: Allocator<ContextType> + Default, AllocHuffmanTree: Allocator<HuffmanTree> + Default, AllocZopfliNode: Allocator<ZopfliNode> + Default> Default for CombiningAllocator<AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode>"],["impl Default for Array264i"],["impl Default for ZopfliNode"],["impl Default for ContextType"],["impl Default for BlockSwitch"],["impl Default for EmptyIVec"],["impl Default for LiteralBlockSwitch"],["impl<'a> Default for InputReference<'a>"],["impl<SliceType: SliceWrapper<u8> + Default> Default for FeatureFlagSliceType<SliceType>"],["impl<'a> Default for InputReferenceMut<'a>"],["impl Default for HistogramDistance"],["impl<Alloc: Allocator<u16> + Allocator<u32>> Default for UnionHasher<Alloc>"],["impl Default for BrotliEncoderParams"],["impl<SliceType: SliceWrapper<u8>> Default for Command<SliceType>"],["impl<T: Default + Clone + Default> Default for SendableMemoryBlock<T>"],["impl Default for H9Opts"],["impl Default for PDF"],["impl Default for LiteralPredictionModeNibble"],["impl Default for BroccoliState"],["impl Default for MultiThreadedSpawner"],["impl Default for HuffmanTree"],["impl Default for SliceOffset"],["impl Default for BroCatli"],["impl Default for StartPosQueue"],["impl Default for SingleThreadedSpawner"],["impl Default for HistogramCommand"],["impl Default for Command"],["impl Default for Array712i"],["impl Default for HistogramPair"],["impl Default for Array528i"],["impl<T: Sized> Default for FixedQueue<T>"],["impl Default for HistogramLiteral"]], "brotli_decompressor":[["impl Default for HuffmanCode"],["impl<Ty: Sized + Default> Default for MemoryBlock<Ty>"],["impl<AllocU32: Allocator<u32>, AllocHC: Allocator<HuffmanCode>> Default for HuffmanTreeGroup<AllocU32, AllocHC>"]], @@ -42,7 +42,7 @@ "indexmap":[["impl<T> Default for IntoIter<T>"],["impl<K, V> Default for Iter<'_, K, V>"],["impl<K, V, S> Default for IndexMap<K, V, S>where\n S: Default,"],["impl<K, V> Default for IntoKeys<K, V>"],["impl<K, V> Default for &mut Slice<K, V>"],["impl<K, V> Default for IterMut<'_, K, V>"],["impl<T> Default for Box<Slice<T>>"],["impl<T> Default for &Slice<T>"],["impl<K, V> Default for Keys<'_, K, V>"],["impl<K, V> Default for Box<Slice<K, V>>"],["impl<K, V> Default for Values<'_, K, V>"],["impl<T, S> Default for IndexSet<T, S>where\n S: Default,"],["impl<K, V> Default for ValuesMut<'_, K, V>"],["impl<T> Default for Iter<'_, T>"],["impl<K, V> Default for &Slice<K, V>"],["impl<K, V> Default for IntoIter<K, V>"],["impl<K, V> Default for IntoValues<K, V>"]], "ipnet":[["impl Default for Ipv4Net"],["impl Default for Ipv6Net"],["impl Default for IpNet"]], "itoa":[["impl Default for Buffer"]], -"jsonpath_lib":[["impl Default for SelectorMut"],["impl<'a, 'b> Default for Selector<'a, 'b>"],["impl<'a> Default for JsonSelector<'a>"],["impl<'a> Default for JsonSelectorMut<'a>"]], +"jsonpath_lib":[["impl<'a> Default for JsonSelectorMut<'a>"],["impl<'a> Default for JsonSelector<'a>"],["impl Default for SelectorMut"],["impl<'a, 'b> Default for Selector<'a, 'b>"]], "lexical_parse_float":[["impl Default for OptionsBuilder"],["impl Default for Options"]], "lexical_parse_integer":[["impl Default for OptionsBuilder"],["impl Default for Options"]], "lexical_util":[["impl Default for NumberFormatBuilder"]], @@ -57,7 +57,7 @@ "miniz_oxide":[["impl Default for DecompressorOxide"],["impl Default for InflateState"],["impl Default for CompressorOxide"]], "ndarray":[["impl<A, S, D> Default for ArrayBase<S, D>where\n S: DataOwned<Elem = A>,\n D: Dimension,\n A: Default,"],["impl<I: Default + ?Sized> Default for Dim<I>"],["impl<T: Default> Default for MathCell<T>"],["impl Default for IxDynImpl"]], "num_complex":[["impl<T: Default> Default for Complex<T>"]], -"object_store":[["impl Default for GetOptions"],["impl<'a> Default for PathPart<'a>"],["impl Default for ThrottleConfig"],["impl Default for InMemory"],["impl Default for Path"],["impl Default for LocalFileSystem"]], +"object_store":[["impl Default for GetOptions"],["impl<'a> Default for PathPart<'a>"],["impl Default for Path"],["impl Default for InMemory"],["impl Default for LocalFileSystem"],["impl Default for ThrottleConfig"]], "once_cell":[["impl<T: Default> Default for Lazy<T>"],["impl<T> Default for OnceCell<T>"],["impl Default for OnceNonZeroUsize"],["impl<T> Default for OnceBox<T>"],["impl<T: Default> Default for Lazy<T>"],["impl<'a, T> Default for OnceRef<'a, T>"],["impl<T> Default for OnceCell<T>"],["impl Default for OnceBool"]], "parking_lot":[["impl Default for Condvar"],["impl Default for Once"]], "parking_lot_core":[["impl Default for SpinWait"],["impl Default for UnparkResult"]], @@ -66,15 +66,15 @@ "phf":[["impl<K, V> Default for Map<K, V>"]], "planus":[["impl Default for Builder"]], "polars_arrow":[["impl Default for QuantileInterpolOptions"],["impl Default for MutableNullArray"],["impl Default for EWMOptions"]], -"polars_core":[["impl Default for MeltArgs"],["impl Default for CloudOptions"],["impl<T: PolarsDataType> Default for ChunkedArray<T>"],["impl Default for NullBehavior"],["impl Default for Series"],["impl Default for UniqueKeepStrategy"],["impl Default for IdHasher"],["impl Default for GroupsIdx"],["impl<'a> Default for Row<'a>"],["impl Default for GroupsProxy"],["impl Default for DataFrame"],["impl Default for SortOptions"],["impl Default for Schema"],["impl<'a> Default for AnyValue<'a>"],["impl Default for AnonymousOwnedListBuilder"],["impl Default for AnonymousListBuilder<'_>"],["impl Default for DataType"],["impl Default for JoinValidation"]], -"polars_io":[["impl Default for IpcWriterOption"],["impl Default for IpcCompression"],["impl Default for ParallelStrategy"],["impl Default for ParquetCompression"]], -"polars_lazy":[["impl Default for LazyFrame"],["impl Default for ScanArgsIpc"],["impl Default for ScanArgsParquet"],["impl Default for ScanArgsAnonymous"],["impl Default for Box<dyn Executor>"],["impl Default for UnionArgs"]], +"polars_core":[["impl Default for IdHasher"],["impl Default for SortOptions"],["impl Default for Schema"],["impl Default for JoinValidation"],["impl Default for DataType"],["impl Default for AnonymousListBuilder<'_>"],["impl Default for GroupsProxy"],["impl<'a> Default for AnyValue<'a>"],["impl Default for GroupsIdx"],["impl Default for AnonymousOwnedListBuilder"],["impl Default for NullBehavior"],["impl Default for DataFrame"],["impl<T: PolarsDataType> Default for ChunkedArray<T>"],["impl Default for Series"],["impl Default for UniqueKeepStrategy"],["impl Default for MeltArgs"],["impl Default for CloudOptions"],["impl<'a> Default for Row<'a>"]], +"polars_io":[["impl Default for IpcCompression"],["impl Default for IpcWriterOption"],["impl Default for ParquetCompression"],["impl Default for ParallelStrategy"]], +"polars_lazy":[["impl Default for ScanArgsIpc"],["impl Default for LazyFrame"],["impl Default for Box<dyn Executor>"],["impl Default for ScanArgsAnonymous"],["impl Default for UnionArgs"],["impl Default for ScanArgsParquet"]], "polars_ops":[["impl Default for SearchSortedSide"]], -"polars_plan":[["impl Default for GetOutput"],["impl Default for WindowOptions"],["impl Default for OptState"],["impl Default for SortArguments"],["impl Default for ParquetWriteOptions"],["impl Default for UnsafeBool"],["impl Default for WindowMapping"],["impl Default for UnionOptions"],["impl Default for LogicalPlan"],["impl Default for GroupbyOptions"],["impl Default for JoinOptions"],["impl Default for DurationArgs"],["impl Default for IpcWriterOptions"],["impl Default for AExpr"],["impl Default for DistinctOptions"],["impl Default for SpecialEq<Arc<dyn SeriesBinaryUdf>>"],["impl Default for SpecialEq<Arc<dyn BinaryUdfOutputField>>"],["impl Default for AnonymousScanOptions"],["impl Default for PredicatePushDown"],["impl Default for FunctionOptions"],["impl Default for ALogicalPlan"],["impl Default for Expr"],["impl Default for StrptimeOptions"]], +"polars_plan":[["impl Default for GroupbyOptions"],["impl Default for FunctionOptions"],["impl Default for UnionOptions"],["impl Default for DurationArgs"],["impl Default for AExpr"],["impl Default for OptState"],["impl Default for LogicalPlan"],["impl Default for SpecialEq<Arc<dyn BinaryUdfOutputField>>"],["impl Default for SpecialEq<Arc<dyn SeriesBinaryUdf>>"],["impl Default for PredicatePushDown"],["impl Default for WindowOptions"],["impl Default for SortArguments"],["impl Default for StrptimeOptions"],["impl Default for ParquetWriteOptions"],["impl Default for GetOutput"],["impl Default for DistinctOptions"],["impl Default for IpcWriterOptions"],["impl Default for JoinOptions"],["impl Default for Expr"],["impl Default for AnonymousScanOptions"],["impl Default for WindowMapping"],["impl Default for ALogicalPlan"],["impl Default for UnsafeBool"]], "polars_row":[["impl Default for RowsEncoded"],["impl Default for SortField"]], "polars_sql":[["impl Default for SQLContext"]], -"polars_time":[["impl Default for RollingOptions"],["impl Default for RollingGroupOptions"],["impl Default for RollingOptionsImpl<'static>"],["impl Default for DynamicGroupOptions"],["impl Default for StartBy"]], -"polars_utils":[["impl Default for Node"],["impl<T> Default for Arena<T>"],["impl<T: Default> Default for SyncUnsafeCell<T>"],["impl Default for SyncCounter"]], +"polars_time":[["impl Default for StartBy"],["impl Default for DynamicGroupOptions"],["impl Default for RollingGroupOptions"],["impl Default for RollingOptions"],["impl Default for RollingOptionsImpl<'static>"]], +"polars_utils":[["impl<T> Default for Arena<T>"],["impl Default for SyncCounter"],["impl<T: Default> Default for SyncUnsafeCell<T>"],["impl Default for Node"]], "ppv_lite86":[["impl Default for vec256_storage"],["impl Default for vec512_storage"],["impl Default for vec128_storage"]], "proc_macro2":[["impl Default for TokenStream"]], "pyo3_ffi":[["impl Default for PyGetSetDef"],["impl Default for PyMemberDef"],["impl Default for PyType_Spec"],["impl Default for PyHeapTypeObject"],["impl Default for PyModuleDef_Slot"],["impl Default for PyMappingMethods"],["impl Default for PyObjectArenaAllocator"],["impl Default for PyBufferProcs"],["impl Default for PyAsyncMethods"],["impl Default for PyMethodDef"],["impl Default for PyType_Slot"],["impl Default for PyHash_FuncDef"]], @@ -90,7 +90,7 @@ "rustls":[["impl Default for Acceptor"],["impl Default for MessageDeframer"],["impl Default for ServerConnectionData"],["impl Default for Resumption"],["impl Default for MessageFragmenter"]], "ryu":[["impl Default for Buffer"]], "serde":[["impl Default for IgnoredAny"]], -"serde_json":[["impl Default for Box<RawValue>"],["impl<'a> Default for PrettyFormatter<'a>"],["impl Default for Map<String, Value>"],["impl Default for Value"]], +"serde_json":[["impl Default for Value"],["impl Default for Box<RawValue>"],["impl Default for Map<String, Value>"],["impl<'a> Default for PrettyFormatter<'a>"]], "signal_hook":[["impl Default for SignalOnly"],["impl<T> Default for Channel<T>"],["impl Default for WithRawSiginfo"]], "simd_json":[["impl<'value> Default for Value<'value>"],["impl Default for Value"]], "siphasher":[["impl Default for SipHasher"],["impl Default for SipHasher13"],["impl Default for SipHasher"],["impl Default for SipHasher24"],["impl Default for Hash128"],["impl Default for SipHasher24"],["impl Default for SipHasher13"]], @@ -101,13 +101,13 @@ "snap":[["impl Default for Decoder"]], "spin":[["impl<T: ?Sized + Default> Default for RwLock<T>"],["impl<T: ?Sized + Default> Default for Mutex<T>"]], "sqlparser":[["impl Default for BigQueryDialect"],["impl Default for WildcardAdditionalOptions"],["impl Default for CreateFunctionBody"],["impl Default for DuckDbDialect"],["impl Default for WindowFrame"],["impl Default for HiveFormat"],["impl Default for SnowflakeDialect"],["impl Default for ParserOptions"],["impl Default for GenericDialect"]], -"sysinfo":[["impl Default for CpuRefreshKind"],["impl Default for DiskUsage"],["impl Default for RefreshKind"],["impl Default for ProcessRefreshKind"],["impl Default for Component"],["impl Default for System"],["impl Default for LoadAvg"]], +"sysinfo":[["impl Default for RefreshKind"],["impl Default for DiskUsage"],["impl Default for LoadAvg"],["impl Default for CpuRefreshKind"],["impl Default for Component"],["impl Default for ProcessRefreshKind"],["impl Default for System"]], "tinyvec":[["impl<A: Array> Default for TinyVec<A>"],["impl<'s, T> Default for SliceVec<'s, T>"],["impl<A: Array> Default for ArrayVec<A>"]], "tokio":[["impl Default for OpenOptions"]], "tokio_util":[["impl Default for AnyDelimiterCodec"],["impl Default for Builder"],["impl Default for LinesCodec"],["impl Default for CancellationToken"],["impl Default for LengthDelimitedCodec"],["impl Default for BytesCodec"]], "tracing_core":[["impl Default for Dispatch"],["impl Default for NoSubscriber"]], "try_lock":[["impl<T: Default> Default for TryLock<T>"]], -"value_trait":[["impl Default for ValueType"],["impl Default for StaticNode"],["impl<VT: Value> Default for DumpGenerator<VT>"],["impl Default for ExtendedValueType"]], +"value_trait":[["impl<VT: Value> Default for DumpGenerator<VT>"],["impl Default for ValueType"],["impl Default for ExtendedValueType"],["impl Default for StaticNode"]], "xxhash_rust":[["impl Default for Xxh3"],["impl Default for Xxh3Builder"]], "zstd":[["impl<'a> Default for Decompressor<'a>"],["impl<'a> Default for Compressor<'a>"]], "zstd_safe":[["impl Default for CCtx<'_>"],["impl Default for DCtx<'_>"]] diff --git a/implementors/core/error/trait.Error.js b/implementors/core/error/trait.Error.js index d5114a9f2841..0b6acd103e16 100644 --- a/implementors/core/error/trait.Error.js +++ b/implementors/core/error/trait.Error.js @@ -31,14 +31,14 @@ "lexical_util":[["impl Error for Error"]], "lz4":[["impl Error for LZ4Error"]], "mime":[["impl Error for FromStrError"]], -"object_store":[["impl Error for Errorwhere\n Self: Debug + Display,"],["impl Error for Errorwhere\n Self: Debug + Display,"],["impl Error for InvalidPartwhere\n Self: Debug + Display,"]], +"object_store":[["impl Error for Errorwhere\n Self: Debug + Display,"],["impl Error for Errorwhere\n Self: Debug + Display,"],["impl Error for InvalidPartwhere\n Self: Debug + Display,"]], "parquet2":[["impl Error for Error"]], "parquet_format_safe":[["impl Error for Error"]], "planus":[["impl Error for ErrorKind"],["impl Error for UnknownEnumTag"],["impl Error for Error"],["impl Error for UnknownEnumTagKind"]], "polars_error":[["impl Error for PolarsError"]], "proc_macro2":[["impl Error for LexError"]], "pyo3":[["impl Error for PySyntaxWarning"],["impl Error for PyImportWarning"],["impl Error for PyIsADirectoryError"],["impl Error for PyKeyError"],["impl Error for PyTimeoutError"],["impl Error for PyMemoryError"],["impl Error for PyConnectionAbortedError"],["impl Error for PyResourceWarning"],["impl Error for PyUnicodeError"],["impl Error for PyReferenceError"],["impl Error for PyNotADirectoryError"],["impl Error for PyBlockingIOError"],["impl Error for QueueEmpty"],["impl<T> Error for Py<T>where\n T: Error + PyTypeInfo,\n T::AsRefTarget: Display,"],["impl Error for PyEOFError"],["impl Error for PyInterruptedError"],["impl Error for PyPermissionError"],["impl Error for PyConnectionError"],["impl Error for PyValueError"],["impl Error for PyModuleNotFoundError"],["impl Error for PyBufferError"],["impl Error for PyUnicodeWarning"],["impl Error for PyEnvironmentError"],["impl Error for PySystemError"],["impl Error for PyTypeError"],["impl Error for PySystemExit"],["impl Error for PyKeyboardInterrupt"],["impl Error for PyProcessLookupError"],["impl Error for PyArithmeticError"],["impl Error for PyDeprecationWarning"],["impl Error for PyErr"],["impl Error for PyRuntimeError"],["impl Error for PyUnboundLocalError"],["impl Error for gaierror"],["impl Error for PyConnectionRefusedError"],["impl Error for IncompleteReadError"],["impl Error for PyUserWarning"],["impl Error for PyAssertionError"],["impl Error for PyGeneratorExit"],["impl Error for PyFileExistsError"],["impl Error for InvalidStateError"],["impl Error for TimeoutError"],["impl Error for PyZeroDivisionError"],["impl Error for CancelledError"],["impl Error for PyFloatingPointError"],["impl Error for PyFutureWarning"],["impl Error for PyAttributeError"],["impl Error for PyStopAsyncIteration"],["impl Error for PyUnicodeDecodeError"],["impl Error for PyRuntimeWarning"],["impl Error for PanicException"],["impl Error for PyNotImplementedError"],["impl Error for PyImportError"],["impl Error for PyEncodingWarning"],["impl Error for PyIOError"],["impl Error for PyException"],["impl Error for PyNameError"],["impl Error for PySyntaxError"],["impl Error for PyBrokenPipeError"],["impl Error for PyWarning"],["impl Error for herror"],["impl Error for LimitOverrunError"],["impl Error for PyLookupError"],["impl Error for PyFileNotFoundError"],["impl Error for PyPendingDeprecationWarning"],["impl Error for PyChildProcessError"],["impl Error for PyOverflowError"],["impl Error for timeout"],["impl Error for PyConnectionResetError"],["impl Error for PyRecursionError"],["impl<'a> Error for PyDowncastError<'a>"],["impl Error for PyIndexError"],["impl Error for QueueFull"],["impl Error for PyBaseException"],["impl Error for PyUnicodeEncodeError"],["impl Error for PyStopIteration"],["impl Error for PyOSError"],["impl Error for PyUnicodeTranslateError"],["impl Error for PyBytesWarning"]], -"quick_xml":[["impl Error for EscapeError"],["impl Error for DeError"],["impl Error for AttrError"],["impl Error for Error"]], +"quick_xml":[["impl Error for AttrError"],["impl Error for DeError"],["impl Error for Error"],["impl Error for EscapeError"]], "rand":[["impl Error for ReadError"],["impl Error for WeightedError"],["impl Error for BernoulliError"]], "rand_core":[["impl Error for Error"]], "rand_distr":[["impl Error for TriangularError"],["impl Error for ChiSquaredError"],["impl Error for Error"],["impl Error for Error"],["impl Error for Error"],["impl Error for Error"],["impl Error for FisherFError"],["impl Error for Error"],["impl Error for BetaError"],["impl Error for Error"],["impl Error for PertError"],["impl Error for Error"],["impl Error for Error"],["impl Error for Error"],["impl Error for Error"],["impl Error for Error"],["impl Error for ZetaError"],["impl Error for Error"],["impl Error for Error"],["impl Error for Error"],["impl Error for Error"],["impl Error for Error"],["impl Error for ZipfError"]], @@ -52,7 +52,7 @@ "serde":[["impl Error for Error"]], "serde_json":[["impl Error for Error"]], "serde_urlencoded":[["impl Error for Error"]], -"simd_json":[["impl Error for Error"],["impl Error for Error"],["impl Error for SerdeConversionError"]], +"simd_json":[["impl Error for SerdeConversionError"],["impl Error for Error"],["impl Error for Error"]], "simdutf8":[["impl Error for Utf8Error"],["impl Error for Utf8Error"]], "snafu":[["impl Error for Whateverwhere\n Self: Debug + Display,"]], "snap":[["impl<W: Any> Error for IntoInnerError<W>"],["impl Error for Error"]], @@ -63,7 +63,7 @@ "tokio_util":[["impl Error for LengthDelimitedCodecError"],["impl<T: Debug> Error for PollSendError<T>"],["impl Error for AnyDelimiterCodecError"],["impl Error for LinesCodecError"]], "tracing_core":[["impl Error for ParseLevelError"],["impl Error for ParseLevelFilterError"],["impl Error for SetGlobalDefaultError"]], "url":[["impl Error for ParseError"]], -"value_trait":[["impl Error for TryTypeError"],["impl Error for AccessError"]], +"value_trait":[["impl Error for AccessError"],["impl Error for TryTypeError"]], "walkdir":[["impl Error for Error"]], "webpki":[["impl Error for AddrParseError"],["impl Error for InvalidDnsNameError"],["impl Error for Error"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/fmt/trait.Debug.js b/implementors/core/fmt/trait.Debug.js index 975cb47f6fcb..d0f54a87ef93 100644 --- a/implementors/core/fmt/trait.Debug.js +++ b/implementors/core/fmt/trait.Debug.js @@ -5,10 +5,10 @@ "alloc_no_stdlib":[["impl<'a, T: Debug + 'a> Debug for CallocBackingStore<'a, T>"]], "alloc_stdlib":[["impl Debug for StandardAlloc"]], "allocator_api2":[["impl<'a, I: Debug + Iterator + 'a, A: Debug + Allocator + 'a> Debug for Splice<'a, I, A>where\n I::Item: Debug,"],["impl<T: Debug, A: Allocator> Debug for Drain<'_, T, A>"],["impl Debug for AllocError"],["impl<T: Debug + ?Sized, A: Allocator> Debug for Box<T, A>"],["impl<T: Debug, A: Allocator> Debug for IntoIter<T, A>"],["impl<T: Debug, A: Allocator> Debug for Vec<T, A>"],["impl Debug for Global"]], -"arrow2":[["impl Debug for Schema"],["impl Debug for IntervalUnit"],["impl<O: Offset> Debug for Utf8Array<O>"],["impl Debug for ColumnPageStatistics"],["impl Debug for UnionArray"],["impl Debug for dyn Array + '_"],["impl<O: Debug + Offset> Debug for MutableBinaryValuesArray<O>"],["impl Debug for MapScalar"],["impl Debug for StructArray"],["impl Debug for IpcSchema"],["impl Debug for months_days_ns"],["impl Debug for BooleanScalar"],["impl Debug for IntegerType"],["impl Debug for MutableFixedSizeBinaryArray"],["impl<O: Debug + Offset> Debug for Utf8Scalar<O>"],["impl Debug for PrimitiveType"],["impl Debug for FieldPageStatistics"],["impl Debug for FixedSizeBinaryScalar"],["impl Debug for Field"],["impl<'a> Debug for BitmapIter<'a>"],["impl<T: Debug + NativeType> Debug for MutablePrimitiveArray<T>"],["impl Debug for Compression"],["impl Debug for BooleanArray"],["impl<T: Debug + NativeType> Debug for PrimitiveScalar<T>"],["impl<O: Debug + Offset> Debug for OffsetsBuffer<O>"],["impl Debug for IpcField"],["impl Debug for CastOptions"],["impl<'a, T: Debug + BitChunk> Debug for BitChunksExactMut<'a, T>"],["impl Debug for FixedSizeBinaryArray"],["impl Debug for Bitmap"],["impl<O: Offset> Debug for BinaryArray<O>"],["impl<K: DictionaryKey> Debug for DictionaryArray<K>"],["impl<T: Debug, I, V> Debug for ZipValidityIter<T, I, V>where\n I: Iterator<Item = T> + Debug,\n V: Iterator<Item = bool> + Debug,"],["impl Debug for MapArray"],["impl Debug for FixedSizeListArray"],["impl Debug for Nested"],["impl<'a, T: Debug + BitChunk> Debug for BitChunks<'a, T>"],["impl Debug for NestedState"],["impl<O: Debug + Offset, M: Debug + MutableArray> Debug for MutableListArray<O, M>"],["impl Debug for Error"],["impl<O: Debug + Offset> Debug for MutableUtf8ValuesArray<O>"],["impl Debug for FixedSizeListScalar"],["impl<A: Debug + AsRef<dyn Array>> Debug for Chunk<A>"],["impl<O: Debug + Offset> Debug for Offsets<O>"],["impl Debug for StructScalar"],["impl Debug for Statistics"],["impl Debug for MutableStructArray"],["impl Debug for DataType"],["impl<O: Debug + Offset> Debug for ListScalar<O>"],["impl Debug for ArrowArray"],["impl Debug for WriteOptions"],["impl<T: Debug, I, V> Debug for ZipValidity<T, I, V>where\n I: Iterator<Item = T> + Debug,\n V: Iterator<Item = bool> + Debug,"],["impl Debug for PhysicalType"],["impl<O: Debug + Offset> Debug for BinaryScalar<O>"],["impl Debug for IntoIter"],["impl Debug for ArrowSchema"],["impl<K: Debug + DictionaryKey> Debug for DictionaryScalar<K>"],["impl Debug for InitNested"],["impl<T: NativeType> Debug for PrimitiveArray<T>"],["impl Debug for MutableNullArray"],["impl Debug for UnionScalar"],["impl Debug for OutOfSpecKind"],["impl<M: Debug + MutableArray> Debug for MutableFixedSizeListArray<M>"],["impl Debug for StreamMetadata"],["impl Debug for days_ms"],["impl<O: Debug + Offset> Debug for MutableUtf8Array<O>"],["impl Debug for WriteOptions"],["impl Debug for ArrowArrayStream"],["impl Debug for FileMetadata"],["impl<O: Offset> Debug for ListArray<O>"],["impl Debug for i256"],["impl<T: Debug> Debug for Buffer<T>"],["impl<A, I> Debug for Serializer<A, I>where\n A: AsRef<dyn Array> + Debug,\n I: Iterator<Item = Result<A, Error>> + Debug,"],["impl<'a, A: Debug + ArrayAccessor<'a>> Debug for ArrayValuesIter<'a, A>"],["impl<K: Debug + DictionaryKey, M: Debug + MutableArray> Debug for MutableDictionaryArray<K, M>"],["impl<'a, T: Debug + BitChunk> Debug for BitChunksExact<'a, T>"],["impl<'a> Debug for Record<'a>"],["impl Debug for f16"],["impl Debug for MutableBitmap"],["impl Debug for TimeUnit"],["impl<'a> Debug for SlicesIterator<'a>"],["impl<O: Debug + Offset> Debug for MutableBinaryArray<O>"],["impl Debug for MutableBooleanArray"],["impl Debug for NullScalar"],["impl Debug for NullArray"],["impl Debug for UnionMode"],["impl<A, I> Debug for Serializer<A, I>where\n A: AsRef<dyn Array> + Debug,\n I: Iterator<Item = Result<A, Error>> + Debug,"]], -"arrow_format":[["impl Debug for Decimal"],["impl Debug for IntervalUnit"],["impl<'a> Debug for LargeUtf8Ref<'a>"],["impl<'a> Debug for LargeListRef<'a>"],["impl<'a> Debug for DurationRef<'a>"],["impl Debug for SparseTensorIndexCsf"],["impl<'a> Debug for TensorRef<'a>"],["impl<'a> Debug for BoolRef<'a>"],["impl<'a> Debug for DateRef<'a>"],["impl<'a> Debug for IntRef<'a>"],["impl<'a> Debug for IntervalRef<'a>"],["impl Debug for DictionaryBatch"],["impl Debug for UnionMode"],["impl Debug for SparseMatrixCompressedAxis"],["impl<'a> Debug for TypeRef<'a>"],["impl<'a> Debug for DecimalRef<'a>"],["impl Debug for KeyValue"],["impl Debug for Map"],["impl Debug for Null"],["impl<'a> Debug for RecordBatchRef<'a>"],["impl Debug for Tensor"],["impl<'a> Debug for SparseTensorIndexRef<'a>"],["impl<'a> Debug for BlockRef<'a>"],["impl Debug for BodyCompression"],["impl<'a> Debug for BodyCompressionRef<'a>"],["impl Debug for Field"],["impl Debug for Schema"],["impl<'a> Debug for SchemaRef<'a>"],["impl Debug for Date"],["impl Debug for Binary"],["impl Debug for Duration"],["impl<'a> Debug for SparseTensorIndexCsfRef<'a>"],["impl Debug for Type"],["impl Debug for FloatingPoint"],["impl<'a> Debug for StructRef<'a>"],["impl<'a> Debug for BinaryRef<'a>"],["impl Debug for TimeUnit"],["impl Debug for LargeUtf8"],["impl Debug for TensorDim"],["impl<'a> Debug for ListRef<'a>"],["impl Debug for Block"],["impl Debug for Footer"],["impl<'a> Debug for FloatingPointRef<'a>"],["impl Debug for LargeList"],["impl Debug for List"],["impl Debug for Time"],["impl<'a> Debug for TensorDimRef<'a>"],["impl Debug for FieldNode"],["impl Debug for SparseMatrixIndexCsx"],["impl<'a> Debug for FieldRef<'a>"],["impl Debug for SparseTensor"],["impl<'a> Debug for SparseTensorIndexCooRef<'a>"],["impl<'a> Debug for MapRef<'a>"],["impl Debug for LargeBinary"],["impl Debug for SparseTensorIndexCoo"],["impl Debug for Int"],["impl Debug for Endianness"],["impl<'a> Debug for DictionaryBatchRef<'a>"],["impl<'a> Debug for Utf8Ref<'a>"],["impl Debug for Struct"],["impl<'a> Debug for FooterRef<'a>"],["impl<'a> Debug for BufferRef<'a>"],["impl Debug for FixedSizeList"],["impl Debug for CompressionType"],["impl<'a> Debug for LargeBinaryRef<'a>"],["impl<'a> Debug for KeyValueRef<'a>"],["impl Debug for Precision"],["impl Debug for DictionaryEncoding"],["impl<'a> Debug for FieldNodeRef<'a>"],["impl<'a> Debug for FixedSizeListRef<'a>"],["impl Debug for MetadataVersion"],["impl Debug for Buffer"],["impl Debug for Message"],["impl<'a> Debug for SparseTensorRef<'a>"],["impl Debug for Bool"],["impl Debug for DateUnit"],["impl<'a> Debug for SparseMatrixIndexCsxRef<'a>"],["impl Debug for MessageHeader"],["impl Debug for Timestamp"],["impl Debug for Utf8"],["impl<'a> Debug for TimestampRef<'a>"],["impl<'a> Debug for TimeRef<'a>"],["impl Debug for FixedSizeBinary"],["impl Debug for Interval"],["impl Debug for Feature"],["impl Debug for BodyCompressionMethod"],["impl<'a> Debug for MessageHeaderRef<'a>"],["impl<'a> Debug for DictionaryEncodingRef<'a>"],["impl<'a> Debug for NullRef<'a>"],["impl Debug for Union"],["impl<'a> Debug for MessageRef<'a>"],["impl Debug for RecordBatch"],["impl<'a> Debug for UnionRef<'a>"],["impl Debug for SparseTensorIndex"],["impl Debug for DictionaryKind"],["impl<'a> Debug for FixedSizeBinaryRef<'a>"]], +"arrow2":[["impl Debug for StreamMetadata"],["impl<M: Debug + MutableArray> Debug for MutableFixedSizeListArray<M>"],["impl Debug for Schema"],["impl Debug for MutableStructArray"],["impl Debug for Nested"],["impl<T: Debug> Debug for Buffer<T>"],["impl Debug for UnionArray"],["impl<A: Debug + AsRef<dyn Array>> Debug for Chunk<A>"],["impl<T: Debug, I, V> Debug for ZipValidity<T, I, V>where\n I: Iterator<Item = T> + Debug,\n V: Iterator<Item = bool> + Debug,"],["impl Debug for FieldPageStatistics"],["impl Debug for IntervalUnit"],["impl Debug for CastOptions"],["impl Debug for IntoIter"],["impl Debug for MutableNullArray"],["impl<'a, T: Debug + BitChunk> Debug for BitChunks<'a, T>"],["impl Debug for ArrowSchema"],["impl Debug for MutableFixedSizeBinaryArray"],["impl Debug for OutOfSpecKind"],["impl<O: Offset> Debug for BinaryArray<O>"],["impl Debug for ArrowArray"],["impl Debug for WriteOptions"],["impl Debug for UnionScalar"],["impl<O: Debug + Offset> Debug for MutableBinaryValuesArray<O>"],["impl<A, I> Debug for Serializer<A, I>where\n A: AsRef<dyn Array> + Debug,\n I: Iterator<Item = Result<A, Error>> + Debug,"],["impl<K: Debug + DictionaryKey, M: Debug + MutableArray> Debug for MutableDictionaryArray<K, M>"],["impl<A, I> Debug for Serializer<A, I>where\n A: AsRef<dyn Array> + Debug,\n I: Iterator<Item = Result<A, Error>> + Debug,"],["impl<'a> Debug for Record<'a>"],["impl Debug for BooleanArray"],["impl<O: Debug + Offset> Debug for BinaryScalar<O>"],["impl Debug for Field"],["impl Debug for FixedSizeListScalar"],["impl Debug for StructScalar"],["impl<K: Debug + DictionaryKey> Debug for DictionaryScalar<K>"],["impl Debug for BooleanScalar"],["impl<T: Debug + NativeType> Debug for PrimitiveScalar<T>"],["impl Debug for FixedSizeListArray"],["impl Debug for IpcField"],["impl Debug for MapScalar"],["impl<T: Debug, I, V> Debug for ZipValidityIter<T, I, V>where\n I: Iterator<Item = T> + Debug,\n V: Iterator<Item = bool> + Debug,"],["impl Debug for ColumnPageStatistics"],["impl Debug for Bitmap"],["impl<O: Debug + Offset> Debug for MutableUtf8Array<O>"],["impl Debug for NestedState"],["impl<'a, T: Debug + BitChunk> Debug for BitChunksExact<'a, T>"],["impl<O: Debug + Offset, M: Debug + MutableArray> Debug for MutableListArray<O, M>"],["impl Debug for i256"],["impl Debug for StructArray"],["impl<'a, A: Debug + ArrayAccessor<'a>> Debug for ArrayValuesIter<'a, A>"],["impl Debug for FixedSizeBinaryArray"],["impl Debug for UnionMode"],["impl<O: Debug + Offset> Debug for MutableBinaryArray<O>"],["impl<T: NativeType> Debug for PrimitiveArray<T>"],["impl Debug for days_ms"],["impl Debug for Compression"],["impl Debug for MutableBooleanArray"],["impl<'a, T: Debug + BitChunk> Debug for BitChunksExactMut<'a, T>"],["impl<O: Debug + Offset> Debug for Offsets<O>"],["impl Debug for NullArray"],["impl Debug for FileMetadata"],["impl Debug for DataType"],["impl<K: DictionaryKey> Debug for DictionaryArray<K>"],["impl Debug for NullScalar"],["impl Debug for TimeUnit"],["impl<O: Offset> Debug for ListArray<O>"],["impl Debug for InitNested"],["impl Debug for IpcSchema"],["impl Debug for f16"],["impl<T: Debug + NativeType> Debug for MutablePrimitiveArray<T>"],["impl<'a> Debug for BitmapIter<'a>"],["impl Debug for IntegerType"],["impl Debug for MapArray"],["impl Debug for PhysicalType"],["impl<O: Debug + Offset> Debug for MutableUtf8ValuesArray<O>"],["impl<O: Offset> Debug for Utf8Array<O>"],["impl Debug for WriteOptions"],["impl Debug for months_days_ns"],["impl<O: Debug + Offset> Debug for ListScalar<O>"],["impl<'a> Debug for SlicesIterator<'a>"],["impl Debug for ArrowArrayStream"],["impl Debug for dyn Array + '_"],["impl<O: Debug + Offset> Debug for Utf8Scalar<O>"],["impl<O: Debug + Offset> Debug for OffsetsBuffer<O>"],["impl Debug for FixedSizeBinaryScalar"],["impl Debug for Error"],["impl Debug for MutableBitmap"],["impl Debug for Statistics"],["impl Debug for PrimitiveType"]], +"arrow_format":[["impl Debug for SparseTensorIndex"],["impl<'a> Debug for RecordBatchRef<'a>"],["impl<'a> Debug for FixedSizeListRef<'a>"],["impl Debug for Duration"],["impl Debug for TensorDim"],["impl Debug for Type"],["impl<'a> Debug for Utf8Ref<'a>"],["impl Debug for Struct"],["impl<'a> Debug for StructRef<'a>"],["impl<'a> Debug for ListRef<'a>"],["impl Debug for Decimal"],["impl<'a> Debug for BodyCompressionRef<'a>"],["impl Debug for SparseTensorIndexCsf"],["impl<'a> Debug for BufferRef<'a>"],["impl<'a> Debug for DictionaryBatchRef<'a>"],["impl Debug for RecordBatch"],["impl<'a> Debug for MapRef<'a>"],["impl Debug for Endianness"],["impl Debug for Bool"],["impl<'a> Debug for TimeRef<'a>"],["impl<'a> Debug for DateRef<'a>"],["impl Debug for MetadataVersion"],["impl Debug for Schema"],["impl<'a> Debug for FixedSizeBinaryRef<'a>"],["impl Debug for Block"],["impl<'a> Debug for MessageHeaderRef<'a>"],["impl Debug for UnionMode"],["impl<'a> Debug for FieldRef<'a>"],["impl Debug for DictionaryEncoding"],["impl Debug for Precision"],["impl<'a> Debug for FieldNodeRef<'a>"],["impl Debug for Null"],["impl Debug for Footer"],["impl Debug for TimeUnit"],["impl Debug for KeyValue"],["impl<'a> Debug for TensorDimRef<'a>"],["impl Debug for Buffer"],["impl<'a> Debug for BlockRef<'a>"],["impl Debug for Timestamp"],["impl Debug for List"],["impl<'a> Debug for SparseTensorIndexCsfRef<'a>"],["impl Debug for SparseTensorIndexCoo"],["impl<'a> Debug for SparseMatrixIndexCsxRef<'a>"],["impl<'a> Debug for TypeRef<'a>"],["impl Debug for FieldNode"],["impl Debug for DictionaryBatch"],["impl<'a> Debug for UnionRef<'a>"],["impl Debug for LargeList"],["impl<'a> Debug for FloatingPointRef<'a>"],["impl Debug for Feature"],["impl Debug for DateUnit"],["impl<'a> Debug for IntervalRef<'a>"],["impl Debug for SparseMatrixCompressedAxis"],["impl Debug for MessageHeader"],["impl Debug for FixedSizeList"],["impl Debug for BodyCompressionMethod"],["impl Debug for Field"],["impl<'a> Debug for SparseTensorRef<'a>"],["impl Debug for Map"],["impl Debug for Int"],["impl<'a> Debug for LargeUtf8Ref<'a>"],["impl<'a> Debug for FooterRef<'a>"],["impl<'a> Debug for KeyValueRef<'a>"],["impl Debug for SparseTensor"],["impl<'a> Debug for MessageRef<'a>"],["impl<'a> Debug for DecimalRef<'a>"],["impl Debug for FixedSizeBinary"],["impl<'a> Debug for TimestampRef<'a>"],["impl<'a> Debug for BoolRef<'a>"],["impl Debug for BodyCompression"],["impl Debug for Utf8"],["impl Debug for LargeUtf8"],["impl Debug for SparseMatrixIndexCsx"],["impl Debug for Time"],["impl Debug for IntervalUnit"],["impl Debug for DictionaryKind"],["impl<'a> Debug for NullRef<'a>"],["impl<'a> Debug for SparseTensorIndexCooRef<'a>"],["impl<'a> Debug for LargeBinaryRef<'a>"],["impl<'a> Debug for BinaryRef<'a>"],["impl Debug for Binary"],["impl<'a> Debug for DictionaryEncodingRef<'a>"],["impl<'a> Debug for DurationRef<'a>"],["impl Debug for LargeBinary"],["impl<'a> Debug for SchemaRef<'a>"],["impl<'a> Debug for TensorRef<'a>"],["impl Debug for FloatingPoint"],["impl<'a> Debug for SparseTensorIndexRef<'a>"],["impl Debug for Message"],["impl Debug for CompressionType"],["impl Debug for Union"],["impl Debug for Interval"],["impl<'a> Debug for IntRef<'a>"],["impl Debug for Date"],["impl Debug for Tensor"],["impl<'a> Debug for LargeListRef<'a>"]], "atoi":[["impl Debug for Sign"]], -"avro_schema":[["impl Debug for FileMetadata"],["impl Debug for LongLogical"],["impl Debug for BytesLogical"],["impl Debug for CompressedBlock"],["impl Debug for Enum"],["impl Debug for Order"],["impl Debug for Block"],["impl Debug for Error"],["impl Debug for Record"],["impl Debug for FixedLogical"],["impl Debug for Fixed"],["impl Debug for Compression"],["impl Debug for StringLogical"],["impl Debug for Field"],["impl Debug for Schema"],["impl Debug for IntLogical"]], +"avro_schema":[["impl Debug for Error"],["impl Debug for LongLogical"],["impl Debug for StringLogical"],["impl Debug for CompressedBlock"],["impl Debug for IntLogical"],["impl Debug for Enum"],["impl Debug for FileMetadata"],["impl Debug for Compression"],["impl Debug for Record"],["impl Debug for Block"],["impl Debug for Fixed"],["impl Debug for Field"],["impl Debug for BytesLogical"],["impl Debug for Order"],["impl Debug for FixedLogical"],["impl Debug for Schema"]], "base64":[["impl Debug for DecodeError"],["impl<'e, E: Engine, R: Read> Debug for DecoderReader<'e, E, R>"],["impl Debug for DecodeMetadata"],["impl Debug for DecodeSliceError"],["impl Debug for Alphabet"],["impl Debug for DecodePaddingMode"],["impl<'e, E: Engine, W: Write> Debug for EncoderWriter<'e, E, W>"],["impl Debug for ParseAlphabetError"],["impl Debug for GeneralPurposeConfig"],["impl Debug for EncodeSliceError"]], "brotli":[["impl<'a> Debug for InputReference<'a>"],["impl Debug for Command"],["impl Debug for StartPosQueue"],["impl Debug for BroCatliResult"],["impl Debug for IsFirst"],["impl Debug for LiteralBlockSwitch"],["impl Debug for CopyCommand"],["impl<SliceType: Debug + SliceWrapper<u8>> Debug for LiteralCommand<SliceType>"],["impl<'a> Debug for InputPair<'a>"],["impl Debug for ZopfliNode"],["impl Debug for BrotliEncoderMode"],["impl Debug for BrotliEncoderParameter"],["impl Debug for BrotliHasherParams"],["impl Debug for PDF"],["impl Debug for BrotliEncoderParams"],["impl Debug for SliceOffset"],["impl Debug for BrotliDistanceParams"],["impl<SliceType: Debug + SliceWrapper<u8>> Debug for PredictionModeContextMap<SliceType>"],["impl Debug for SpeedAndMax"],["impl Debug for BlockSwitch"],["impl<SliceType: Debug + SliceWrapper<u8>> Debug for FeatureFlagSliceType<SliceType>"],["impl Debug for LiteralPredictionModeNibble"],["impl Debug for PosData"],["impl Debug for Union1"],["impl Debug for DictCommand"],["impl Debug for BrotliEncoderThreadError"],["impl<SliceType: Debug + SliceWrapper<u8>> Debug for Command<SliceType>"]], "brotli_decompressor":[["impl Debug for BrotliDecoderErrorCode"],["impl Debug for HuffmanCode"],["impl Debug for BrotliResult"]], @@ -16,7 +16,7 @@ "bytes":[["impl<T: Debug> Debug for Take<T>"],["impl Debug for BytesMut"],["impl<B: Debug> Debug for Reader<B>"],["impl<B: Debug> Debug for Writer<B>"],["impl<T: Debug> Debug for IntoIter<T>"],["impl Debug for Bytes"],["impl<T: Debug> Debug for Limit<T>"],["impl<T: Debug, U: Debug> Debug for Chain<T, U>"],["impl Debug for UninitSlice"]], "chrono":[["impl Debug for InternalNumeric"],["impl Debug for Months"],["impl<Tz: TimeZone> Debug for Date<Tz>"],["impl Debug for NaiveWeek"],["impl<'a> Debug for Item<'a>"],["impl Debug for Numeric"],["impl Debug for SecondsFormat"],["impl Debug for Parsed"],["impl Debug for Fixed"],["impl Debug for RoundingError"],["impl Debug for ParseError"],["impl Debug for OutOfRange"],["impl Debug for Weekday"],["impl Debug for ParseErrorKind"],["impl Debug for Month"],["impl<I: Debug> Debug for DelayedFormat<I>"],["impl Debug for OutOfRangeError"],["impl Debug for IsoWeek"],["impl Debug for NaiveTime"],["impl<Tz: TimeZone> Debug for DateTime<Tz>"],["impl Debug for Pad"],["impl Debug for InternalFixed"],["impl Debug for ParseMonthError"],["impl Debug for ParseWeekdayError"],["impl Debug for NaiveDate"],["impl<T: Debug> Debug for LocalResult<T>"],["impl Debug for Days"],["impl Debug for FixedOffset"],["impl Debug for NaiveDateTime"],["impl Debug for Utc"],["impl Debug for Duration"],["impl<'a> Debug for StrftimeItems<'a>"]], "chrono_tz":[["impl Debug for Tz"]], -"ciborium":[["impl<T: Debug> Debug for Error<T>"],["impl Debug for Value"],["impl Debug for Error"],["impl<T: Debug> Debug for Error<T>"],["impl<V: Debug> Debug for Captured<V>"],["impl<V: Debug, const TAG: u64> Debug for Accepted<V, TAG>"],["impl Debug for CanonicalValue"],["impl<V: Debug, const TAG: u64> Debug for Required<V, TAG>"],["impl Debug for Integer"]], +"ciborium":[["impl<V: Debug, const TAG: u64> Debug for Accepted<V, TAG>"],["impl Debug for Integer"],["impl Debug for Error"],["impl<V: Debug> Debug for Captured<V>"],["impl<V: Debug, const TAG: u64> Debug for Required<V, TAG>"],["impl<T: Debug> Debug for Error<T>"],["impl<T: Debug> Debug for Error<T>"],["impl Debug for Value"],["impl Debug for CanonicalValue"]], "ciborium_ll":[["impl<T: Debug> Debug for Error<T>"],["impl Debug for Header"]], "comfy_table":[["impl Debug for Width"],["impl Debug for Column"],["impl Debug for ContentArrangement"],["impl Debug for Cell"],["impl Debug for Color"],["impl Debug for ColumnConstraint"],["impl Debug for Table"],["impl Debug for CellAlignment"],["impl Debug for TableComponent"],["impl Debug for Attribute"],["impl Debug for Row"]], "crc32fast":[["impl Debug for Hasher"]], @@ -42,7 +42,7 @@ "glob":[["impl Debug for Paths"],["impl Debug for PatternError"],["impl Debug for MatchOptions"],["impl Debug for GlobError"],["impl Debug for Pattern"]], "h2":[["impl<B: Debug + Buf> Debug for ReadySendRequest<B>"],["impl Debug for PushPromise"],["impl<T, B> Debug for Handshake<T, B>where\n T: AsyncRead + AsyncWrite + Debug,\n B: Debug + Buf,"],["impl Debug for RecvStream"],["impl Debug for ResponseFuture"],["impl<B: Debug> Debug for SendStream<B>"],["impl<B: Debug + Buf> Debug for SendResponse<B>"],["impl Debug for Pong"],["impl Debug for Ping"],["impl Debug for PushPromises"],["impl Debug for PingPong"],["impl Debug for StreamId"],["impl Debug for Builder"],["impl Debug for Error"],["impl Debug for Builder"],["impl Debug for PushedResponseFuture"],["impl<B> Debug for SendRequest<B>where\n B: Buf,"],["impl<B: Buf + Debug> Debug for SendPushedResponse<B>"],["impl<T, B> Debug for Connection<T, B>where\n T: Debug,\n B: Debug + Buf,"],["impl Debug for Protocol"],["impl<T, B> Debug for Connection<T, B>where\n T: AsyncRead + AsyncWrite + Debug,\n B: Debug + Buf,"],["impl Debug for Reason"],["impl Debug for FlowControl"]], "half":[["impl Debug for bf16"],["impl Debug for f16"]], -"halfbrown":[["impl<K, V, const N: usize, S> Debug for RawVacantEntryMut<'_, K, V, N, S>"],["impl<'a, K: Debug, V: Debug> Debug for Iter<'a, K, V>"],["impl<K, V, const N: usize, S> Debug for RawEntryBuilder<'_, K, V, N, S>"],["impl<K, V, S, const VEC_LIMIT_UPPER: usize> Debug for SizedHashMap<K, V, S, VEC_LIMIT_UPPER>where\n K: Debug,\n V: Debug,"],["impl<K: Debug, V: Debug, const N: usize, S> Debug for Entry<'_, K, V, N, S>"],["impl<K: Debug, V: Debug, const N: usize, S> Debug for RawEntryMut<'_, K, V, N, S>where\n S: BuildHasher,"],["impl<K: Debug, V, const N: usize, S> Debug for VacantEntry<'_, K, V, N, S>"],["impl<K: Debug, V: Debug, const N: usize, S> Debug for OccupiedEntry<'_, K, V, N, S>"],["impl<K: Debug, V: Debug, const N: usize, S> Debug for RawOccupiedEntryMut<'_, K, V, N, S>where\n S: BuildHasher,"],["impl<K, V, const N: usize, S> Debug for RawEntryBuilderMut<'_, K, V, N, S>"]], +"halfbrown":[["impl<K, V, const N: usize, S> Debug for RawVacantEntryMut<'_, K, V, N, S>"],["impl<K, V, const N: usize, S> Debug for RawEntryBuilderMut<'_, K, V, N, S>"],["impl<K, V, const N: usize, S> Debug for RawEntryBuilder<'_, K, V, N, S>"],["impl<K: Debug, V: Debug, const N: usize, S> Debug for RawOccupiedEntryMut<'_, K, V, N, S>where\n S: BuildHasher,"],["impl<K: Debug, V: Debug, const N: usize, S> Debug for Entry<'_, K, V, N, S>"],["impl<K: Debug, V: Debug, const N: usize, S> Debug for RawEntryMut<'_, K, V, N, S>where\n S: BuildHasher,"],["impl<K: Debug, V, const N: usize, S> Debug for VacantEntry<'_, K, V, N, S>"],["impl<'a, K: Debug, V: Debug> Debug for Iter<'a, K, V>"],["impl<K, V, S, const VEC_LIMIT_UPPER: usize> Debug for SizedHashMap<K, V, S, VEC_LIMIT_UPPER>where\n K: Debug,\n V: Debug,"],["impl<K: Debug, V: Debug, const N: usize, S> Debug for OccupiedEntry<'_, K, V, N, S>"]], "hashbrown":[["impl<K: Debug, V: Debug, A: Allocator + Clone> Debug for IntoKeys<K, V, A>"],["impl<K, V, S, A: Allocator + Clone> Debug for RawEntryBuilder<'_, K, V, S, A>"],["impl<K: Debug, V, S, A: Allocator + Clone> Debug for VacantEntry<'_, K, V, S, A>"],["impl<K: Debug + Eq + Hash, V: Debug> Debug for ParIter<'_, K, V>"],["impl Debug for TryReserveError"],["impl<T: Debug, S, A: Allocator + Clone> Debug for Entry<'_, T, S, A>"],["impl<K: Debug> Debug for Iter<'_, K>"],["impl<K: Borrow<Q>, Q: ?Sized + Debug, V: Debug, S, A: Allocator + Clone> Debug for EntryRef<'_, '_, K, Q, V, S, A>"],["impl<K: Debug, V: Debug, S, A: Allocator + Clone> Debug for RawEntryMut<'_, K, V, S, A>"],["impl<K: Debug + Eq + Hash, V> Debug for ParKeys<'_, K, V>"],["impl<T: Debug, S, A: Allocator + Clone> Debug for VacantEntry<'_, T, S, A>"],["impl<T, S, A> Debug for Difference<'_, T, S, A>where\n T: Debug + Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<K: Debug, V: Debug, S, A: Allocator + Clone> Debug for RawOccupiedEntryMut<'_, K, V, S, A>"],["impl<K: Debug + Eq + Hash, V: Debug> Debug for ParIterMut<'_, K, V>"],["impl<T, S, A> Debug for HashSet<T, S, A>where\n T: Debug,\n A: Allocator + Clone,"],["impl<K: Debug, V: Debug, S, A: Allocator + Clone> Debug for OccupiedError<'_, K, V, S, A>"],["impl<K: Debug, V: Debug, S, A: Allocator + Clone> Debug for OccupiedEntry<'_, K, V, S, A>"],["impl<K, V, S, A: Allocator + Clone> Debug for RawVacantEntryMut<'_, K, V, S, A>"],["impl<K: Eq + Hash, V: Debug> Debug for ParValuesMut<'_, K, V>"],["impl<K: Debug, V: Debug, A: Allocator + Clone> Debug for IntoIter<K, V, A>"],["impl<T, S, A> Debug for Intersection<'_, T, S, A>where\n T: Debug + Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<K, V: Debug> Debug for ValuesMut<'_, K, V>"],["impl<K, V: Debug, A: Allocator + Clone> Debug for IntoValues<K, V, A>"],["impl<K, V: Debug> Debug for Values<'_, K, V>"],["impl<K, V, S, A: Allocator + Clone> Debug for RawEntryBuilderMut<'_, K, V, S, A>"],["impl<T, S, A> Debug for SymmetricDifference<'_, T, S, A>where\n T: Debug + Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<K: Debug + Eq + Hash, V: Debug, A: Allocator + Clone> Debug for IntoParIter<K, V, A>"],["impl<K, V, S, A> Debug for HashMap<K, V, S, A>where\n K: Debug,\n V: Debug,\n A: Allocator + Clone,"],["impl<K, V, A> Debug for Drain<'_, K, V, A>where\n K: Debug,\n V: Debug,\n A: Allocator + Clone,"],["impl<K: Debug, A: Allocator + Clone> Debug for Drain<'_, K, A>"],["impl<K: Debug, A: Allocator + Clone> Debug for IntoIter<K, A>"],["impl<K: Debug + Eq + Hash, V: Debug, A: Allocator + Clone> Debug for ParDrain<'_, K, V, A>"],["impl<K: Borrow<Q>, Q: ?Sized + Debug, V: Debug, S, A: Allocator + Clone> Debug for OccupiedEntryRef<'_, '_, K, Q, V, S, A>"],["impl<K: Eq + Hash, V: Debug> Debug for ParValues<'_, K, V>"],["impl<K: Debug, V: Debug> Debug for Iter<'_, K, V>"],["impl<K: Borrow<Q>, Q: ?Sized + Debug, V, S, A: Allocator + Clone> Debug for VacantEntryRef<'_, '_, K, Q, V, S, A>"],["impl<K: Debug, V> Debug for Keys<'_, K, V>"],["impl<T: Debug, S, A: Allocator + Clone> Debug for OccupiedEntry<'_, T, S, A>"],["impl<K, V> Debug for IterMut<'_, K, V>where\n K: Debug,\n V: Debug,"],["impl<K: Debug, V: Debug, S, A: Allocator + Clone> Debug for Entry<'_, K, V, S, A>"],["impl<T, S, A> Debug for Union<'_, T, S, A>where\n T: Debug + Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"]], "hex":[["impl Debug for FromHexError"]], "http":[["impl Debug for Authority"],["impl Debug for InvalidHeaderName"],["impl<T: Debug> Debug for HeaderMap<T>"],["impl<'a, T: Debug> Debug for Values<'a, T>"],["impl<'a, T: Debug> Debug for ValueIterMut<'a, T>"],["impl Debug for Scheme"],["impl<'a, T: Debug + 'a> Debug for Entry<'a, T>"],["impl Debug for InvalidHeaderValue"],["impl Debug for InvalidStatusCode"],["impl<T: Debug> Debug for Request<T>"],["impl<'a, T: Debug> Debug for ValueDrain<'a, T>"],["impl Debug for Extensions"],["impl Debug for Builder"],["impl Debug for Builder"],["impl Debug for Version"],["impl Debug for Parts"],["impl<T: Debug> Debug for Response<T>"],["impl<'a, T: Debug> Debug for Keys<'a, T>"],["impl<'a, T: Debug> Debug for OccupiedEntry<'a, T>"],["impl Debug for HeaderValue"],["impl<'a, T: Debug> Debug for Iter<'a, T>"],["impl Debug for Method"],["impl<T> Debug for Port<T>where\n T: Debug,"],["impl<T: Debug> Debug for IntoIter<T>"],["impl Debug for Uri"],["impl Debug for InvalidUriParts"],["impl<'a, T: Debug> Debug for Drain<'a, T>"],["impl Debug for StatusCode"],["impl<'a, T: Debug> Debug for IterMut<'a, T>"],["impl Debug for Builder"],["impl<'a, T: Debug> Debug for VacantEntry<'a, T>"],["impl Debug for Parts"],["impl Debug for InvalidUri"],["impl<'a, T: Debug> Debug for ValuesMut<'a, T>"],["impl<'a, T: Debug> Debug for ValueIter<'a, T>"],["impl<'a, T: Debug> Debug for GetAll<'a, T>"],["impl Debug for HeaderName"],["impl Debug for PathAndQuery"],["impl Debug for Error"],["impl Debug for ToStrError"],["impl Debug for Parts"],["impl Debug for InvalidMethod"]], @@ -57,7 +57,7 @@ "indexmap":[["impl<K: Debug, V: Debug> Debug for Iter<'_, K, V>"],["impl<T: Debug> Debug for Drain<'_, T>"],["impl<T, S> Debug for Difference<'_, T, S>where\n T: Debug + Eq + Hash,\n S: BuildHasher,"],["impl<K: Debug, V: Debug> Debug for Entry<'_, K, V>"],["impl<K: Debug, V> Debug for IntoKeys<K, V>"],["impl<K: Debug, V: Debug> Debug for Drain<'_, K, V>"],["impl<T: Debug> Debug for Slice<T>"],["impl<K: Debug, V: Debug> Debug for Slice<K, V>"],["impl Debug for TryReserveError"],["impl<K: Debug, V> Debug for VacantEntry<'_, K, V>"],["impl<K, V: Debug> Debug for Values<'_, K, V>"],["impl<K: Debug, V: Debug> Debug for OccupiedEntry<'_, K, V>"],["impl<K, V, S> Debug for IndexMap<K, V, S>where\n K: Debug,\n V: Debug,"],["impl<T, S1, S2> Debug for SymmetricDifference<'_, T, S1, S2>where\n T: Debug + Eq + Hash,\n S1: BuildHasher,\n S2: BuildHasher,"],["impl<K: Debug, V> Debug for Keys<'_, K, V>"],["impl<T, S> Debug for Union<'_, T, S>where\n T: Debug + Eq + Hash,\n S: BuildHasher,"],["impl<T: Debug> Debug for Iter<'_, T>"],["impl<K, V: Debug> Debug for ValuesMut<'_, K, V>"],["impl<T: Debug> Debug for IntoIter<T>"],["impl<K: Debug, V: Debug> Debug for IntoIter<K, V>"],["impl<T, S> Debug for IndexSet<T, S>where\n T: Debug,"],["impl<T, S> Debug for Intersection<'_, T, S>where\n T: Debug + Eq + Hash,\n S: BuildHasher,"],["impl<K: Debug, V: Debug> Debug for IterMut<'_, K, V>"],["impl<K, V: Debug> Debug for IntoValues<K, V>"]], "ipnet":[["impl Debug for Ipv6Subnets"],["impl Debug for Ipv6Net"],["impl Debug for IpNet"],["impl Debug for Ipv6AddrRange"],["impl Debug for IpSubnets"],["impl Debug for Ipv4AddrRange"],["impl Debug for IpAddrRange"],["impl Debug for PrefixLenError"],["impl Debug for Ipv4Net"],["impl Debug for Ipv4Subnets"],["impl Debug for AddrParseError"]], "itertools":[["impl<I: Debug> Debug for WhileSome<I>"],["impl<A: Debug, B: Debug> Debug for EitherOrBoth<A, B>"],["impl<I, T> Debug for TupleCombinations<I, T>where\n I: Iterator + Debug,\n T: HasCombination<I> + Debug,\n T::Combination: Debug,"],["impl<I> Debug for PutBack<I>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I> Debug for ExactlyOneError<I>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I> Debug for CombinationsWithReplacement<I>where\n I: Iterator + Debug,\n I::Item: Debug + Clone,"],["impl<'a, I, F> Debug for TakeWhileRef<'a, I, F>where\n I: Iterator + Debug,"],["impl<I, J: Debug> Debug for Product<I, J>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I: Debug + Iterator> Debug for PutBackN<I>where\n I::Item: Debug,"],["impl<T> Debug for TupleBuffer<T>where\n T: HomogeneousTuple + Debug,\n T::Buffer: Debug,"],["impl<I> Debug for Permutations<I>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<F> Debug for RepeatCall<F>"],["impl<St, F> Debug for Unfold<St, F>where\n St: Debug,"],["impl<I> Debug for PeekNth<I>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I: Debug> Debug for GroupingMap<I>"],["impl<I, T> Debug for TupleWindows<I, T>where\n I: Iterator<Item = T::Item> + Debug,\n T: HomogeneousTuple + Debug,"],["impl<A: Debug> Debug for RepeatN<A>"],["impl<T: Debug> Debug for FoldWhile<T>"],["impl<I> Debug for Unique<I>where\n I: Iterator + Debug,\n I::Item: Hash + Eq + Debug,"],["impl<I: Debug> Debug for RcIter<I>"],["impl<I> Debug for Powerset<I>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I, T, E> Debug for FlattenOk<I, T, E>where\n I: Iterator<Item = Result<T, E>> + Debug,\n T: IntoIterator,\n T::IntoIter: Debug,"],["impl<I: Debug, J: Debug> Debug for ZipEq<I, J>"],["impl<T: Debug, U: Debug> Debug for ZipLongest<T, U>"],["impl<T: Debug> Debug for Position<T>"],["impl<I, T> Debug for Tuples<I, T>where\n I: Iterator<Item = T::Item> + Debug,\n T: HomogeneousTuple + Debug,\n T::Buffer: Debug,"],["impl<I> Debug for Combinations<I>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<St, F> Debug for Iterate<St, F>where\n St: Debug,"],["impl<I> Debug for MultiPeek<I>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I: Debug> Debug for Step<I>"],["impl<I, ElemF: Debug> Debug for IntersperseWith<I, ElemF>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I, J, F> Debug for MergeBy<I, J, F>where\n I: Iterator + Debug,\n J: Iterator<Item = I::Item> + Debug,\n I::Item: Debug,"],["impl<T: Debug> Debug for MinMaxResult<T>"],["impl<I> Debug for Tee<I>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I, F> Debug for PadUsing<I, F>where\n I: Debug,"],["impl<I, F> Debug for FilterOk<I, F>where\n I: Debug,"],["impl<I, F> Debug for Update<I, F>where\n I: Debug,"],["impl<I: Debug, J: Debug> Debug for Interleave<I, J>"],["impl<'a, I, F> Debug for PeekingTakeWhile<'a, I, F>where\n I: Iterator + Debug + 'a,"],["impl<I, V, F> Debug for UniqueBy<I, V, F>where\n I: Iterator + Debug,\n V: Debug + Hash + Eq,"],["impl<I, F> Debug for KMergeBy<I, F>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I> Debug for MultiProduct<I>where\n I: Iterator + Clone + Debug,\n I::Item: Clone + Debug,"],["impl<'a, I> Debug for Format<'a, I>where\n I: Iterator,\n I::Item: Debug,"],["impl<I, J> Debug for InterleaveShortest<I, J>where\n I: Iterator + Debug,\n J: Iterator<Item = I::Item> + Debug,"],["impl<I, F> Debug for FilterMapOk<I, F>where\n I: Debug,"],["impl<I, F> Debug for Batching<I, F>where\n I: Debug,"],["impl<I, T> Debug for CircularTupleWindows<I, T>where\n I: Iterator<Item = T::Item> + Clone + Debug,\n T: TupleCollect + Clone + Debug,"],["impl<I, F> Debug for Positions<I, F>where\n I: Debug,"],["impl<T: Debug> Debug for Zip<T>"],["impl<I, J: Debug> Debug for ConsTuples<I, J>where\n I: Iterator<Item = J> + Debug,"],["impl<I, J, F> Debug for MergeJoinBy<I, J, F>where\n I: Iterator + Debug,\n I::Item: Debug,\n J: Iterator + Debug,\n J::Item: Debug,"],["impl<'a, I: Debug, E: Debug + 'a> Debug for ProcessResults<'a, I, E>"]], -"jsonpath_lib":[["impl<'a> Debug for PathCompiled<'a>"],["impl<'a> Debug for JsonSelector<'a>"],["impl<'a, 'b> Debug for Selector<'a, 'b>"],["impl<'a> Debug for PathParser<'a>"],["impl Debug for JsonPathError"],["impl Debug for Compiled"]], +"jsonpath_lib":[["impl<'a> Debug for PathParser<'a>"],["impl<'a> Debug for JsonSelector<'a>"],["impl Debug for JsonPathError"],["impl<'a, 'b> Debug for Selector<'a, 'b>"],["impl<'a> Debug for PathCompiled<'a>"],["impl Debug for Compiled"]], "lexical_parse_float":[["impl Debug for OptionsBuilder"],["impl Debug for Options"]], "lexical_parse_integer":[["impl Debug for Options"],["impl Debug for OptionsBuilder"]], "lexical_util":[["impl<M: Debug + UnsignedInteger> Debug for ExtendedFloat<M>"],["impl Debug for Error"]], @@ -80,7 +80,7 @@ "num_complex":[["impl<T: Debug> Debug for Complex<T>"],["impl<E: Debug> Debug for ParseComplexError<E>"]], "num_integer":[["impl<A: Debug> Debug for ExtendedGcd<A>"]], "num_traits":[["impl Debug for FloatErrorKind"],["impl Debug for ParseFloatError"]], -"object_store":[["impl Debug for ChunkedStore"],["impl Debug for InvalidPart"],["impl<'a> Debug for PathPart<'a>"],["impl<T: Debug + ObjectStore> Debug for LimitStore<T>"],["impl Debug for Error"],["impl<T: Debug + ObjectStore> Debug for ThrottledStore<T>"],["impl Debug for GetResult"],["impl<T: Debug + ObjectStore> Debug for PrefixStore<T>"],["impl Debug for ListResult"],["impl Debug for Path"],["impl Debug for InMemory"],["impl Debug for Error"],["impl Debug for ThrottleConfig"],["impl Debug for LocalFileSystem"],["impl Debug for ObjectMeta"],["impl Debug for GetOptions"]], +"object_store":[["impl Debug for GetOptions"],["impl Debug for LocalFileSystem"],["impl Debug for Error"],["impl<'a> Debug for PathPart<'a>"],["impl Debug for ObjectMeta"],["impl Debug for Error"],["impl Debug for InMemory"],["impl<T: Debug + ObjectStore> Debug for LimitStore<T>"],["impl<T: Debug + ObjectStore> Debug for ThrottledStore<T>"],["impl Debug for GetResult"],["impl<T: Debug + ObjectStore> Debug for PrefixStore<T>"],["impl Debug for Path"],["impl Debug for InvalidPart"],["impl Debug for ListResult"],["impl Debug for ChunkedStore"],["impl Debug for ThrottleConfig"]], "once_cell":[["impl<T> Debug for OnceBox<T>"],["impl<T: Debug> Debug for OnceCell<T>"],["impl Debug for OnceBool"],["impl<'a, T> Debug for OnceRef<'a, T>"],["impl<T: Debug, F> Debug for Lazy<T, F>"],["impl<T: Debug, F> Debug for Lazy<T, F>"],["impl<T: Debug> Debug for OnceCell<T>"],["impl Debug for OnceNonZeroUsize"]], "parking_lot":[["impl Debug for WaitTimeoutResult"],["impl Debug for Condvar"],["impl Debug for OnceState"],["impl Debug for Once"]], "parking_lot_core":[["impl Debug for ParkResult"],["impl Debug for FilterOp"],["impl Debug for ParkToken"],["impl Debug for UnparkResult"],["impl Debug for UnparkToken"],["impl Debug for RequeueOp"]], @@ -89,20 +89,20 @@ "percent_encoding":[["impl<'a> Debug for PercentDecode<'a>"]], "phf":[["impl<'a, K, V> Debug for Values<'a, K, V>where\n V: Debug,"],["impl<K, V> Debug for Map<K, V>where\n K: Debug,\n V: Debug,"],["impl<'a, K, V> Debug for Entries<'a, K, V>where\n K: Debug,\n V: Debug,"],["impl<T> Debug for OrderedSet<T>where\n T: Debug,"],["impl<'a, T> Debug for Iter<'a, T>where\n T: Debug,"],["impl<'a, K, V> Debug for Values<'a, K, V>where\n V: Debug,"],["impl<K, V> Debug for OrderedMap<K, V>where\n K: Debug,\n V: Debug,"],["impl<'a, K, V> Debug for Entries<'a, K, V>where\n K: Debug,\n V: Debug,"],["impl<'a, T> Debug for Iter<'a, T>where\n T: Debug,"],["impl<T> Debug for Set<T>where\n T: Debug,"],["impl<'a, K, V> Debug for Keys<'a, K, V>where\n K: Debug,"],["impl<'a, K, V> Debug for Keys<'a, K, V>where\n K: Debug,"]], "planus":[["impl Debug for ErrorKind"],["impl Debug for Error"],["impl Debug for Builder"],["impl Debug for UnknownEnumTagKind"],["impl<'buf, T> Debug for Vector<'buf, T>where\n T: Debug + VectorRead<'buf>,"],["impl Debug for ErrorLocation"],["impl Debug for UnknownEnumTag"],["impl<'buf, T: VectorRead<'buf> + Debug> Debug for VectorIter<'buf, T>"]], -"polars_arrow":[["impl Debug for RollingQuantileParams"],["impl Debug for EWMOptions"],["impl Debug for QuantileInterpolOptions"],["impl Debug for MutableNullArray"],["impl Debug for RollingVarParams"]], -"polars_core":[["impl Debug for Schema"],["impl Debug for SortOptions"],["impl Debug for GroupByMethod"],["impl Debug for NullBehavior"],["impl Debug for GroupsIdx"],["impl Debug for TimeUnit"],["impl Debug for IsSorted"],["impl Debug for MeltArgs"],["impl Debug for JoinType"],["impl Debug for FillNullStrategy"],["impl Debug for Field"],["impl Debug for BinaryChunked"],["impl Debug for Series"],["impl Debug for Utf8Chunked"],["impl Debug for UniqueKeepStrategy"],["impl<T> Debug for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl Debug for ListChunked"],["impl<'df> Debug for GroupBy<'df>"],["impl Debug for NullStrategy"],["impl Debug for GroupsProxy"],["impl Debug for DataFrame"],["impl Debug for JoinArgs"],["impl Debug for ChunkedArray<BooleanType>"],["impl<'a> Debug for AnyValue<'a>"],["impl Debug for DataType"],["impl Debug for CloudOptions"],["impl<'a> Debug for Row<'a>"],["impl Debug for JoinValidation"]], +"polars_arrow":[["impl Debug for RollingQuantileParams"],["impl Debug for MutableNullArray"],["impl Debug for EWMOptions"],["impl Debug for QuantileInterpolOptions"],["impl Debug for RollingVarParams"]], +"polars_core":[["impl Debug for CloudOptions"],["impl Debug for BinaryChunked"],["impl Debug for JoinArgs"],["impl Debug for FillNullStrategy"],["impl Debug for ListChunked"],["impl Debug for NullBehavior"],["impl Debug for ChunkedArray<BooleanType>"],["impl Debug for NullStrategy"],["impl<T> Debug for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl Debug for Field"],["impl Debug for Schema"],["impl Debug for DataFrame"],["impl Debug for JoinValidation"],["impl Debug for IsSorted"],["impl Debug for GroupByMethod"],["impl Debug for TimeUnit"],["impl Debug for Series"],["impl Debug for MeltArgs"],["impl<'a> Debug for AnyValue<'a>"],["impl Debug for GroupsIdx"],["impl Debug for UniqueKeepStrategy"],["impl Debug for JoinType"],["impl Debug for DataType"],["impl<'a> Debug for Row<'a>"],["impl Debug for SortOptions"],["impl<'df> Debug for GroupBy<'df>"],["impl Debug for Utf8Chunked"],["impl Debug for GroupsProxy"]], "polars_error":[["impl Debug for ErrString"],["impl Debug for PolarsError"]], -"polars_io":[["impl Debug for ColumnStats"],["impl Debug for RowCount"],["impl Debug for GzipLevel"],["impl Debug for CsvEncoding"],["impl Debug for IpcCompression"],["impl Debug for ZstdLevel"],["impl Debug for ParquetCompression"],["impl Debug for ParallelStrategy"],["impl Debug for NullValues"],["impl Debug for BrotliLevel"]], +"polars_io":[["impl Debug for ColumnStats"],["impl Debug for ParallelStrategy"],["impl Debug for BrotliLevel"],["impl Debug for IpcCompression"],["impl Debug for ZstdLevel"],["impl Debug for CsvEncoding"],["impl Debug for RowCount"],["impl Debug for NullValues"],["impl Debug for GzipLevel"],["impl Debug for ParquetCompression"]], "polars_lazy":[["impl<'a> Debug for AggregationContext<'a>"]], "polars_ops":[["impl Debug for SearchSortedSide"]], -"polars_pipe":[["impl Debug for PipeLine"],["impl Debug for DataChunk"],["impl Debug for SinkResult"]], -"polars_plan":[["impl Debug for ALogicalPlan"],["impl Debug for RewriteRecursion"],["impl Debug for AnonymousScanOptions"],["impl Debug for DatetimeArgs"],["impl Debug for SortArguments"],["impl Debug for IpcWriterOptions"],["impl Debug for LogicalPlanUdfOptions"],["impl Debug for DurationArgs"],["impl Debug for AAggExpr"],["impl Debug for OptState"],["impl Debug for FileScan"],["impl Debug for ParquetOptions"],["impl Debug for dyn UdfSchema"],["impl Debug for UnsafeBool"],["impl Debug for FileScanOptions"],["impl Debug for dyn DataFrameUdfMut"],["impl Debug for Operator"],["impl Debug for ErrorStateSync"],["impl Debug for IpcScanOptions"],["impl Debug for FileType"],["impl Debug for Excluded"],["impl Debug for AExpr"],["impl Debug for Expr"],["impl Debug for GroupbyOptions"],["impl Debug for FunctionOptions"],["impl Debug for dyn SeriesBinaryUdf"],["impl Debug for Context"],["impl Debug for dyn RenameAliasFn"],["impl Debug for dyn AnonymousScan"],["impl Debug for ApplyOptions"],["impl Debug for LogicalPlan"],["impl Debug for LiteralValue"],["impl Debug for FunctionExpr"],["impl Debug for BooleanFunction"],["impl Debug for FileFingerPrint"],["impl Debug for UnionOptions"],["impl Debug for FunctionNode"],["impl Debug for ErrorState"],["impl Debug for dyn SeriesUdf"],["impl Debug for CsvParserOptions"],["impl Debug for FileInfo"],["impl Debug for dyn DataFrameUdf"],["impl Debug for FileSinkOptions"],["impl Debug for JoinOptions"],["impl Debug for DistinctOptions"],["impl Debug for WindowOptions"],["impl Debug for VisitRecursion"],["impl Debug for RollingCovOptions"],["impl Debug for StrptimeOptions"],["impl<T> Debug for SpecialEq<T>"],["impl Debug for WindowMapping"],["impl Debug for ParquetWriteOptions"]], -"polars_time":[["impl Debug for Pattern"],["impl Debug for RollingGroupOptions"],["impl Debug for Duration"],["impl Debug for Bounds"],["impl Debug for ClosedWindow"],["impl Debug for StartBy"],["impl Debug for DynamicGroupOptions"],["impl Debug for TruncateOptions"]], +"polars_pipe":[["impl Debug for SinkResult"],["impl Debug for PipeLine"],["impl Debug for DataChunk"]], +"polars_plan":[["impl Debug for ALogicalPlan"],["impl Debug for WindowMapping"],["impl Debug for ErrorStateSync"],["impl Debug for FileInfo"],["impl Debug for StrptimeOptions"],["impl Debug for LogicalPlan"],["impl Debug for dyn DataFrameUdf"],["impl Debug for Expr"],["impl Debug for dyn SeriesUdf"],["impl Debug for FileType"],["impl Debug for UnsafeBool"],["impl Debug for LiteralValue"],["impl Debug for dyn RenameAliasFn"],["impl Debug for FunctionExpr"],["impl Debug for Excluded"],["impl Debug for FunctionNode"],["impl Debug for Context"],["impl Debug for RollingCovOptions"],["impl Debug for Operator"],["impl Debug for dyn DataFrameUdfMut"],["impl Debug for SortArguments"],["impl Debug for GroupbyOptions"],["impl Debug for DistinctOptions"],["impl Debug for IpcWriterOptions"],["impl<T> Debug for SpecialEq<T>"],["impl Debug for FunctionOptions"],["impl Debug for FileSinkOptions"],["impl Debug for LogicalPlanUdfOptions"],["impl Debug for dyn SeriesBinaryUdf"],["impl Debug for FileScanOptions"],["impl Debug for ParquetWriteOptions"],["impl Debug for WindowOptions"],["impl Debug for OptState"],["impl Debug for dyn UdfSchema"],["impl Debug for VisitRecursion"],["impl Debug for JoinOptions"],["impl Debug for dyn AnonymousScan"],["impl Debug for AExpr"],["impl Debug for ApplyOptions"],["impl Debug for AnonymousScanOptions"],["impl Debug for FileFingerPrint"],["impl Debug for ParquetOptions"],["impl Debug for ErrorState"],["impl Debug for AAggExpr"],["impl Debug for IpcScanOptions"],["impl Debug for RewriteRecursion"],["impl Debug for CsvParserOptions"],["impl Debug for UnionOptions"],["impl Debug for DatetimeArgs"],["impl Debug for DurationArgs"],["impl Debug for FileScan"],["impl Debug for BooleanFunction"]], +"polars_time":[["impl Debug for DynamicGroupOptions"],["impl Debug for Duration"],["impl Debug for TruncateOptions"],["impl Debug for ClosedWindow"],["impl Debug for Bounds"],["impl Debug for Pattern"],["impl Debug for RollingGroupOptions"],["impl Debug for StartBy"]], "polars_utils":[["impl<T: Debug> Debug for SyncPtr<T>"],["impl Debug for Node"]], "proc_macro2":[["impl Debug for DelimSpan"],["impl Debug for Delimiter"],["impl Debug for IntoIter"],["impl Debug for TokenStream"],["impl Debug for Punct"],["impl Debug for Group"],["impl Debug for LexError"],["impl Debug for Span"],["impl Debug for Literal"],["impl Debug for Ident"],["impl Debug for Spacing"],["impl Debug for TokenTree"]], "pyo3":[["impl Debug for PySyntaxError"],["impl Debug for PyModule"],["impl Debug for PyMapping"],["impl Debug for PyUnicodeEncodeError"],["impl Debug for PyDelta"],["impl Debug for PyOverflowError"],["impl Debug for PyDateTime"],["impl Debug for PyUserWarning"],["impl Debug for PySyntaxWarning"],["impl Debug for PyUnicodeTranslateError"],["impl<T: PyClass + Debug> Debug for PyRef<'_, T>"],["impl Debug for PySliceIndices"],["impl Debug for PyFileExistsError"],["impl Debug for PyUnicodeWarning"],["impl Debug for PyBytes"],["impl Debug for CancelledError"],["impl Debug for PyConnectionAbortedError"],["impl Debug for PyTzInfo"],["impl Debug for PyList"],["impl Debug for PyDate"],["impl Debug for PyDeprecationWarning"],["impl Debug for PyNameError"],["impl Debug for PyIsADirectoryError"],["impl Debug for PyResourceWarning"],["impl Debug for PyStopAsyncIteration"],["impl Debug for PyIOError"],["impl Debug for PyValueError"],["impl Debug for PyDictValues"],["impl Debug for PyUnboundLocalError"],["impl Debug for PyBool"],["impl Debug for PyBytesWarning"],["impl Debug for PyCapsule"],["impl Debug for PyEncodingWarning"],["impl Debug for PyAssertionError"],["impl<T> Debug for Py<T>"],["impl Debug for PyTraceback"],["impl Debug for PyCode"],["impl Debug for PyConnectionRefusedError"],["impl Debug for PySet"],["impl Debug for PyReferenceError"],["impl Debug for PyZeroDivisionError"],["impl Debug for PyLookupError"],["impl Debug for PyComplex"],["impl Debug for PyException"],["impl Debug for PyBufferError"],["impl Debug for PyArithmeticError"],["impl Debug for PyBorrowError"],["impl Debug for PyMemoryError"],["impl Debug for PyType"],["impl Debug for PyFrozenSet"],["impl Debug for QueueEmpty"],["impl Debug for PyFunction"],["impl<T> Debug for PyBuffer<T>"],["impl Debug for PySuper"],["impl Debug for PyKeyboardInterrupt"],["impl Debug for PyFloat"],["impl<'a> Debug for PyStringData<'a>"],["impl<'py> Debug for PythonVersionInfo<'py>"],["impl Debug for PyDict"],["impl Debug for PyNotADirectoryError"],["impl Debug for PyOSError"],["impl Debug for PyUnicodeError"],["impl Debug for PyEnvironmentError"],["impl Debug for PyStopIteration"],["impl Debug for PyProcessLookupError"],["impl Debug for PyKeyError"],["impl Debug for PyEOFError"],["impl Debug for PyRuntimeWarning"],["impl Debug for PyTypeError"],["impl Debug for PyInterruptedError"],["impl Debug for PyDictItems"],["impl Debug for PyRecursionError"],["impl Debug for PyWarning"],["impl Debug for PyBaseException"],["impl Debug for PyBorrowMutError"],["impl Debug for PyPendingDeprecationWarning"],["impl Debug for PyByteArray"],["impl Debug for LimitOverrunError"],["impl Debug for QueueFull"],["impl Debug for PyGeneratorExit"],["impl Debug for PyString"],["impl Debug for PySlice"],["impl Debug for PyTuple"],["impl Debug for PyNotImplementedError"],["impl Debug for PyFrame"],["impl Debug for PyImportWarning"],["impl Debug for PyConnectionResetError"],["impl<T: PyClass<Frozen = False> + Debug> Debug for PyRefMut<'_, T>"],["impl Debug for PyFileNotFoundError"],["impl Debug for PyAny"],["impl Debug for PyBrokenPipeError"],["impl Debug for PySequence"],["impl Debug for PyLong"],["impl Debug for PyCFunction"],["impl Debug for TimeoutError"],["impl Debug for PyIndexError"],["impl Debug for PyErr"],["impl Debug for PyAttributeError"],["impl Debug for gaierror"],["impl Debug for timeout"],["impl Debug for PyPermissionError"],["impl Debug for InvalidStateError"],["impl Debug for PyConnectionError"],["impl Debug for PyIterator"],["impl Debug for CompareOp"],["impl Debug for PyDictKeys"],["impl Debug for PySystemExit"],["impl<'a> Debug for PyDowncastError<'a>"],["impl<T: PyClass + Debug> Debug for PyCell<T>"],["impl Debug for IncompleteReadError"],["impl Debug for PyBlockingIOError"],["impl Debug for PyFloatingPointError"],["impl Debug for PyFutureWarning"],["impl Debug for PyImportError"],["impl Debug for PyUnicodeDecodeError"],["impl Debug for PyModuleNotFoundError"],["impl Debug for PyRuntimeError"],["impl Debug for PySystemError"],["impl Debug for PyChildProcessError"],["impl Debug for ElementType"],["impl Debug for PanicException"],["impl Debug for herror"],["impl Debug for PyTime"],["impl Debug for PyTimeoutError"]], "pyo3_ffi":[["impl Debug for PyGILState_STATE"],["impl Debug for PyStopIterationObject"],["impl Debug for PyDateTime_CAPI"],["impl Debug for PyImportErrorObject"],["impl Debug for PySetObject"],["impl Debug for _PyDateTime_BaseTime"],["impl Debug for setentry"],["impl Debug for PyOSErrorObject"],["impl Debug for PyBaseExceptionObject"],["impl Debug for PyUnicodeErrorObject"],["impl Debug for PyVarObject"],["impl Debug for _PyDateTime_BaseDateTime"],["impl Debug for PySystemExitObject"],["impl Debug for PyGetSetDef"],["impl Debug for PyTypeObject"],["impl Debug for PyDateTime_DateTime"],["impl Debug for PyObject"],["impl Debug for PyDateTime_Delta"],["impl Debug for PySendResult"],["impl Debug for _PyStatus_TYPE"],["impl Debug for PyDictObject"],["impl Debug for PyDateTime_Time"],["impl Debug for PySyntaxErrorObject"],["impl Debug for PyDateTime_Date"]], -"quick_xml":[["impl<'a> Debug for DeEvent<'a>"],["impl<'a> Debug for Event<'a>"],["impl Debug for DeError"],["impl Debug for Error"],["impl<'a> Debug for BytesDecl<'a>"],["impl Debug for Decoder"],["impl<'a> Debug for Prefix<'a>"],["impl<'a> Debug for LocalName<'a>"],["impl<'a> Debug for BytesEnd<'a>"],["impl<'a> Debug for Namespace<'a>"],["impl<'a> Debug for BytesText<'a>"],["impl<T: AsRef<[u8]>> Debug for Attr<T>"],["impl<'ns> Debug for ResolveResult<'ns>"],["impl Debug for EscapeError"],["impl<'a> Debug for Attributes<'a>"],["impl<'a> Debug for Text<'a>"],["impl Debug for AttrError"],["impl Debug for QuoteLevel"],["impl<'a> Debug for PayloadEvent<'a>"],["impl<'a> Debug for PrefixDeclaration<'a>"],["impl<'a> Debug for Attribute<'a>"],["impl<'a> Debug for BytesStart<'a>"],["impl<'a> Debug for BytesCData<'a>"],["impl<'a> Debug for QName<'a>"]], +"quick_xml":[["impl<'a> Debug for BytesText<'a>"],["impl<'a> Debug for BytesDecl<'a>"],["impl<'a> Debug for Attribute<'a>"],["impl Debug for QuoteLevel"],["impl<'a> Debug for PayloadEvent<'a>"],["impl<'a> Debug for Prefix<'a>"],["impl Debug for AttrError"],["impl<'a> Debug for BytesCData<'a>"],["impl<'a> Debug for PrefixDeclaration<'a>"],["impl Debug for Decoder"],["impl<'a> Debug for BytesStart<'a>"],["impl<'a> Debug for BytesEnd<'a>"],["impl<'a> Debug for QName<'a>"],["impl Debug for Error"],["impl<'a> Debug for Event<'a>"],["impl<'a> Debug for Namespace<'a>"],["impl Debug for EscapeError"],["impl Debug for DeError"],["impl<'a> Debug for DeEvent<'a>"],["impl<'a> Debug for Attributes<'a>"],["impl<'a> Debug for LocalName<'a>"],["impl<'a> Debug for Text<'a>"],["impl<'ns> Debug for ResolveResult<'ns>"],["impl<T: AsRef<[u8]>> Debug for Attr<T>"]], "rand":[["impl<'a, S: Debug + ?Sized + 'a, T: Debug + 'a> Debug for SliceChooseIter<'a, S, T>"],["impl<W: Debug + Weight> Debug for WeightedIndex<W>"],["impl Debug for Bernoulli"],["impl Debug for Open01"],["impl Debug for ThreadRng"],["impl Debug for UniformChar"],["impl Debug for OpenClosed01"],["impl<R, Rsdr> Debug for ReseedingRng<R, Rsdr>where\n R: BlockRngCore + SeedableRng + Debug,\n Rsdr: RngCore + Debug,"],["impl Debug for StdRng"],["impl<D: Debug, F: Debug, T: Debug, S: Debug> Debug for DistMap<D, F, T, S>"],["impl<X: Debug> Debug for UniformFloat<X>"],["impl<R: Debug> Debug for ReadRng<R>"],["impl Debug for Standard"],["impl<X: Debug + SampleUniform + PartialOrd> Debug for WeightedIndex<X>where\n X::Sampler: Debug,"],["impl<X: Debug> Debug for UniformInt<X>"],["impl Debug for IndexVecIntoIter"],["impl<X: Debug + SampleUniform> Debug for Uniform<X>where\n X::Sampler: Debug,"],["impl<D: Debug, R: Debug, T: Debug> Debug for DistIter<D, R, T>"],["impl Debug for IndexVec"],["impl Debug for UniformDuration"],["impl Debug for WeightedError"],["impl<'a> Debug for IndexVecIter<'a>"],["impl Debug for Alphanumeric"],["impl Debug for SmallRng"],["impl<'a, T: Debug> Debug for Slice<'a, T>"],["impl Debug for BernoulliError"],["impl Debug for ReadError"],["impl Debug for StepRng"]], "rand_chacha":[["impl Debug for ChaCha12Rng"],["impl Debug for ChaCha20Core"],["impl Debug for ChaCha20Rng"],["impl Debug for ChaCha8Rng"],["impl Debug for ChaCha8Core"],["impl Debug for ChaCha12Core"]], "rand_core":[["impl Debug for OsRng"],["impl Debug for Error"],["impl<R: BlockRngCore + Debug> Debug for BlockRng64<R>"],["impl<R: BlockRngCore + Debug> Debug for BlockRng<R>"]], @@ -112,19 +112,19 @@ "regex":[["impl Debug for Regex"],["impl Debug for SetMatchesIntoIter"],["impl<'r> Debug for CaptureNames<'r>"],["impl Debug for RegexSetBuilder"],["impl Debug for RegexBuilder"],["impl<'c, 'h> Debug for SubCaptureMatches<'c, 'h>"],["impl Debug for RegexSet"],["impl Debug for CaptureLocations"],["impl Debug for CaptureLocations"],["impl<'r, 'h> Debug for CaptureMatches<'r, 'h>"],["impl<'r> Debug for CaptureNames<'r>"],["impl<'r, 'h> Debug for Split<'r, 'h>"],["impl Debug for RegexBuilder"],["impl<'h> Debug for Captures<'h>"],["impl<'h> Debug for Match<'h>"],["impl Debug for SetMatches"],["impl<'h> Debug for Captures<'h>"],["impl<'r, 'h> Debug for SplitN<'r, 'h>"],["impl<'r, 'h> Debug for Matches<'r, 'h>"],["impl Debug for SetMatches"],["impl<'a> Debug for SetMatchesIter<'a>"],["impl<'s> Debug for NoExpand<'s>"],["impl<'h> Debug for Match<'h>"],["impl<'r, 'h> Debug for CaptureMatches<'r, 'h>"],["impl Debug for RegexSetBuilder"],["impl Debug for SetMatchesIntoIter"],["impl Debug for Regex"],["impl Debug for Error"],["impl<'a> Debug for SetMatchesIter<'a>"],["impl<'r, 'h> Debug for SplitN<'r, 'h>"],["impl<'c, 'h> Debug for SubCaptureMatches<'c, 'h>"],["impl<'a, R: Debug + ?Sized> Debug for ReplacerRef<'a, R>"],["impl<'s> Debug for NoExpand<'s>"],["impl Debug for RegexSet"],["impl<'a, R: Debug + ?Sized> Debug for ReplacerRef<'a, R>"],["impl<'r, 'h> Debug for Split<'r, 'h>"],["impl<'r, 'h> Debug for Matches<'r, 'h>"]], "regex_automata":[["impl Debug for Compiler"],["impl<'a> Debug for ByteClassIter<'a>"],["impl Debug for BuildError"],["impl Debug for LookSetIter"],["impl<'r, 'h> Debug for Split<'r, 'h>"],["impl Debug for Look"],["impl Debug for BuildError"],["impl Debug for PatternSet"],["impl Debug for Builder"],["impl<'a> Debug for ByteClassElements<'a>"],["impl Debug for Cache"],["impl Debug for Builder"],["impl Debug for DeserializeError"],["impl Debug for UnicodeWordBoundaryError"],["impl Debug for Builder"],["impl<'h, F: Debug> Debug for HalfMatchesIter<'h, F>"],["impl<'r, 'c, 'h> Debug for TryFindMatches<'r, 'c, 'h>"],["impl<'a> Debug for PatternSetIter<'a>"],["impl Debug for Config"],["impl Debug for DFA"],["impl Debug for Match"],["impl Debug for NonMaxUsize"],["impl Debug for Config"],["impl Debug for BuildError"],["impl Debug for StateIDError"],["impl<'h> Debug for Input<'h>"],["impl Debug for Cache"],["impl Debug for Config"],["impl Debug for Prefilter"],["impl Debug for Regex"],["impl<'h, F> Debug for TryCapturesIter<'h, F>"],["impl Debug for ByteClasses"],["impl Debug for Unit"],["impl Debug for StateID"],["impl Debug for BuildError"],["impl Debug for BoundedBacktracker"],["impl Debug for Builder"],["impl<'a> Debug for CapturesPatternIter<'a>"],["impl Debug for Cache"],["impl<'h, F: Debug> Debug for CapturesIter<'h, F>"],["impl Debug for PatternIDError"],["impl Debug for SmallIndexError"],["impl Debug for Span"],["impl Debug for MatchKind"],["impl<'h> Debug for Searcher<'h>"],["impl Debug for Config"],["impl Debug for Regex"],["impl Debug for PatternID"],["impl<'a> Debug for DebugHaystack<'a>"],["impl<'r, 'h> Debug for CapturesMatches<'r, 'h>"],["impl Debug for LookSet"],["impl Debug for CacheError"],["impl Debug for HalfMatch"],["impl Debug for Builder"],["impl<'a> Debug for GroupInfoAllNames<'a>"],["impl Debug for Transition"],["impl Debug for Builder"],["impl<'r, 'c, 'h> Debug for CapturesMatches<'r, 'c, 'h>"],["impl<'a> Debug for ByteClassRepresentatives<'a>"],["impl Debug for Config"],["impl Debug for LookMatcher"],["impl Debug for MatchError"],["impl Debug for GroupInfoError"],["impl<'a, T: Send + Debug, F: Fn() -> T> Debug for PoolGuard<'a, T, F>"],["impl Debug for PikeVM"],["impl Debug for SmallIndex"],["impl<B: Debug + ?Sized, T: Debug> Debug for AlignAs<B, T>"],["impl<'r, 'h> Debug for FindMatches<'r, 'h>"],["impl Debug for Config"],["impl<T: Debug, F> Debug for Pool<T, F>"],["impl Debug for State"],["impl Debug for Anchored"],["impl<'r, 'c, 'h> Debug for FindMatches<'r, 'c, 'h>"],["impl Debug for OverlappingState"],["impl Debug for DFA"],["impl<'a> Debug for PatternIter<'a>"],["impl Debug for LazyStateID"],["impl Debug for Config"],["impl Debug for MatchErrorKind"],["impl Debug for NFA"],["impl Debug for DenseTransitions"],["impl Debug for GroupInfo"],["impl<'r, 'c, 'h> Debug for TryCapturesMatches<'r, 'c, 'h>"],["impl<'h, F: Debug> Debug for MatchesIter<'h, F>"],["impl<'h, F> Debug for TryHalfMatchesIter<'h, F>"],["impl<'r, 'c, 'h> Debug for FindMatches<'r, 'c, 'h>"],["impl Debug for Builder"],["impl Debug for SerializeError"],["impl Debug for DebugByte"],["impl<'h, F> Debug for TryMatchesIter<'h, F>"],["impl<T: Debug, F: Fn() -> T> Debug for Lazy<T, F>"],["impl Debug for Cache"],["impl Debug for Cache"],["impl Debug for Cache"],["impl<'r, 'h> Debug for SplitN<'r, 'h>"],["impl Debug for Captures"],["impl Debug for PatternSetInsertError"],["impl Debug for SparseTransitions"],["impl<'a> Debug for GroupInfoPatternNames<'a>"]], "regex_syntax":[["impl Debug for SpecialLiteralKind"],["impl Debug for LookSetIter"],["impl Debug for Position"],["impl Debug for Parser"],["impl Debug for ClassUnicodeOpKind"],["impl Debug for Hir"],["impl Debug for Literal"],["impl Debug for Class"],["impl Debug for ErrorKind"],["impl Debug for Properties"],["impl Debug for Flags"],["impl Debug for Alternation"],["impl<'a> Debug for ClassUnicodeIter<'a>"],["impl Debug for Class"],["impl Debug for RepetitionRange"],["impl Debug for Assertion"],["impl Debug for ClassUnicode"],["impl Debug for Dot"],["impl Debug for Seq"],["impl Debug for ClassBytes"],["impl Debug for ClassSetRange"],["impl Debug for ClassAscii"],["impl Debug for Error"],["impl Debug for Utf8Sequences"],["impl Debug for Repetition"],["impl Debug for Ast"],["impl Debug for Printer"],["impl Debug for RepetitionOp"],["impl Debug for ClassSetBinaryOpKind"],["impl Debug for Capture"],["impl Debug for Error"],["impl Debug for Extractor"],["impl Debug for FlagsItemKind"],["impl Debug for RepetitionKind"],["impl Debug for Flag"],["impl Debug for Printer"],["impl Debug for TranslatorBuilder"],["impl Debug for CaseFoldError"],["impl Debug for Translator"],["impl Debug for ClassUnicode"],["impl Debug for Group"],["impl Debug for ClassSetUnion"],["impl Debug for HirKind"],["impl Debug for LiteralKind"],["impl Debug for Literal"],["impl Debug for Literal"],["impl Debug for FlagsItem"],["impl<'a> Debug for ClassBytesIter<'a>"],["impl Debug for ErrorKind"],["impl Debug for ClassSetItem"],["impl Debug for Repetition"],["impl Debug for Span"],["impl Debug for ClassAsciiKind"],["impl Debug for Utf8Sequence"],["impl Debug for Utf8Range"],["impl Debug for ClassPerlKind"],["impl Debug for SetFlags"],["impl Debug for Error"],["impl Debug for ClassBytesRange"],["impl Debug for WithComments"],["impl Debug for ClassUnicodeRange"],["impl Debug for Look"],["impl Debug for GroupKind"],["impl Debug for Comment"],["impl Debug for ClassUnicodeKind"],["impl Debug for ClassSet"],["impl Debug for ClassPerl"],["impl Debug for ParserBuilder"],["impl Debug for ClassSetBinaryOp"],["impl Debug for ExtractKind"],["impl Debug for AssertionKind"],["impl Debug for LookSet"],["impl Debug for Parser"],["impl Debug for CaptureName"],["impl Debug for ParserBuilder"],["impl Debug for Concat"],["impl Debug for ClassBracketed"],["impl Debug for HexLiteralKind"],["impl Debug for UnicodeWordError"]], -"reqwest":[["impl Debug for Error"],["impl Debug for Body"],["impl Debug for Response"],["impl Debug for Version"],["impl Debug for Upgraded"],["impl Debug for RequestBuilder"],["impl Debug for ClientBuilder"],["impl Debug for NoProxy"],["impl Debug for Client"],["impl<'a> Debug for Attempt<'a>"],["impl Debug for Request"],["impl Debug for Proxy"],["impl Debug for Action"],["impl Debug for Certificate"],["impl Debug for Identity"],["impl Debug for Policy"]], +"reqwest":[["impl Debug for Action"],["impl Debug for RequestBuilder"],["impl Debug for Certificate"],["impl Debug for Identity"],["impl Debug for Upgraded"],["impl Debug for Body"],["impl Debug for Error"],["impl Debug for NoProxy"],["impl Debug for Response"],["impl Debug for Proxy"],["impl Debug for ClientBuilder"],["impl<'a> Debug for Attempt<'a>"],["impl Debug for Request"],["impl Debug for Client"],["impl Debug for Version"],["impl Debug for Policy"]], "ring":[["impl Debug for KeyRejected"],["impl Debug for Algorithm"],["impl Debug for RsaKeyPair"],["impl<N: NonceSequence> Debug for SealingKey<N>"],["impl Debug for RsaSubjectPublicKey"],["impl Debug for TestCase"],["impl Debug for Algorithm"],["impl Debug for Algorithm"],["impl Debug for UnboundKey"],["impl Debug for Ed25519KeyPair"],["impl Debug for LessSafeKey"],["impl Debug for RsaParameters"],["impl<B> Debug for UnparsedPublicKey<B>where\n B: AsRef<[u8]> + Debug,"],["impl Debug for EcdsaKeyPair"],["impl<'a, L: Debug + KeyType> Debug for Okm<'a, L>"],["impl Debug for EdDSAParameters"],["impl Debug for EcdsaVerificationAlgorithm"],["impl Debug for Digest"],["impl Debug for Algorithm"],["impl Debug for Tag"],["impl Debug for Salt"],["impl Debug for SystemRandom"],["impl Debug for Algorithm"],["impl Debug for Algorithm"],["impl Debug for PublicKey"],["impl Debug for EphemeralPrivateKey"],["impl Debug for Key"],["impl Debug for Unspecified"],["impl Debug for EcdsaSigningAlgorithm"],["impl<N: NonceSequence> Debug for OpeningKey<N>"],["impl Debug for Context"],["impl Debug for Prk"],["impl<B: Debug + AsRef<[u8]> + Debug> Debug for RsaPublicKeyComponents<B>"]], "rustls":[["impl Debug for ServerECDHParams"],["impl Debug for ServerConnection"],["impl Debug for NamedCurve"],["impl Debug for SignatureScheme"],["impl Debug for Connection"],["impl Debug for Compression"],["impl Debug for Error"],["impl Debug for SignError"],["impl Debug for AlertLevel"],["impl Debug for Decrypted"],["impl Debug for ContentType"],["impl Debug for ClientHelloPayload"],["impl Debug for DnsName"],["impl Debug for AlertDescription"],["impl Debug for PresharedKeyIdentity"],["impl Debug for ClientSessionTicket"],["impl Debug for PayloadU16"],["impl Debug for ProtocolVersion"],["impl Debug for CertificatePayloadTLS13"],["impl Debug for PrivateKey"],["impl Debug for Payload"],["impl Debug for ServerKeyExchangePayload"],["impl Debug for ClientExtension"],["impl Debug for IoState"],["impl Debug for CertificateExtension"],["impl Debug for PresharedKeyOffer"],["impl Debug for ResponderId"],["impl Debug for Certificate"],["impl Debug for SupportedProtocolVersion"],["impl Debug for NewSessionTicketExtension"],["impl Debug for NamedGroup"],["impl Debug for HashAlgorithm"],["impl Debug for SignatureAlgorithm"],["impl Debug for ServerNameType"],["impl Debug for HandshakeMessagePayload"],["impl Debug for Tls12Resumption"],["impl Debug for WantsVersions"],["impl Debug for InvalidMessage"],["impl Debug for ServerConfig"],["impl Debug for CertificateRequestPayloadTLS13"],["impl Debug for u24"],["impl Debug for OwnedTrustAnchor"],["impl Debug for SupportedKxGroup"],["impl Debug for WantsVerifier"],["impl<'a, C: Debug + 'a + ?Sized, T: Debug + 'a + Read + Write + ?Sized> Debug for Stream<'a, C, T>"],["impl Debug for UnknownExtension"],["impl Debug for CertificateError"],["impl Debug for InvalidDnsNameError"],["impl Debug for DistinguishedName"],["impl Debug for SessionId"],["impl Debug for KeyExchangeAlgorithm"],["impl Debug for WantsClientCert"],["impl Debug for ECParameters"],["impl<C: Debug + Sized, T: Debug + Read + Write + Sized> Debug for StreamOwned<C, T>"],["impl Debug for WantsServerCert"],["impl Debug for ServerExtension"],["impl Debug for HeartbeatMode"],["impl Debug for Tls12CipherSuite"],["impl Debug for OpaqueMessage"],["impl Debug for BulkAlgorithm"],["impl Debug for CertificateStatusRequest"],["impl Debug for ClientECDHParams"],["impl Debug for Deframed"],["impl Debug for WantsKxGroups"],["impl Debug for Side"],["impl Debug for HelloRetryExtension"],["impl Debug for PayloadU8"],["impl Debug for Resumption"],["impl Debug for KeyUpdateRequest"],["impl Debug for ClientConfig"],["impl Debug for dyn ClientCertVerifier"],["impl Debug for DigitallySignedStruct"],["impl Debug for MessagePayload"],["impl Debug for HeartbeatMessageType"],["impl Debug for PayloadU24"],["impl Debug for SupportedCipherSuite"],["impl Debug for Random"],["impl Debug for KeyShareEntry"],["impl Debug for HandshakeSignatureValid"],["impl Debug for HandshakePayload"],["impl Debug for MessageError"],["impl Debug for WantsTransparencyPolicyOrClientCert"],["impl Debug for PSKKeyExchangeMode"],["impl Debug for NewSessionTicketPayloadTLS13"],["impl Debug for ProtocolName"],["impl Debug for ExtensionType"],["impl Debug for CertReqExtension"],["impl Debug for HandshakeType"],["impl Debug for RootCertStore"],["impl Debug for ServerName"],["impl Debug for Tls12ClientSessionValue"],["impl Debug for ClientConnection"],["impl<'a> Debug for DangerousClientConfig<'a>"],["impl Debug for CertificateRequestPayload"],["impl Debug for Tls13ClientSessionValue"],["impl Debug for CertificateStatus"],["impl Debug for Message"],["impl Debug for ServerName"],["impl Debug for ECCurveType"],["impl Debug for ECDHEServerKeyExchange"],["impl Debug for dyn ServerCertVerifier"],["impl Debug for WantsCipherSuites"],["impl Debug for ServerNamePayload"],["impl Debug for NewSessionTicketPayload"],["impl Debug for ECPointFormat"],["impl Debug for CertRevocationListError"],["impl Debug for CipherSuiteCommon"],["impl Debug for ClientCertificateType"],["impl Debug for PlainMessage"],["impl Debug for PeerMisbehaved"],["impl Debug for CertificateEntry"],["impl Debug for PeerIncompatible"],["impl Debug for CipherSuite"],["impl Debug for ServerCertVerified"],["impl Debug for ChangeCipherSpecPayload"],["impl Debug for ClientSessionCommon"],["impl Debug for ServerSessionValue"],["impl Debug for CertificateStatusType"],["impl Debug for Tls13CipherSuite"],["impl Debug for HelloRetryRequest"],["impl Debug for AlertMessagePayload"],["impl Debug for ServerHelloPayload"],["impl Debug for Sct"],["impl Debug for ClientCertVerified"],["impl Debug for OCSPCertificateStatusRequest"],["impl<Side: ConfigSide, State: Debug> Debug for ConfigBuilder<Side, State>"],["impl Debug for PresharedKeyBinder"],["impl Debug for DeframerError"]], "rustls_pemfile":[["impl Debug for Item"]], "same_file":[["impl Debug for Handle"]], "scopeguard":[["impl<T, F, S> Debug for ScopeGuard<T, F, S>where\n T: Debug,\n F: FnOnce(T),\n S: Strategy,"],["impl Debug for Always"]], "sct":[["impl Debug for Error"],["impl<'a> Debug for Log<'a>"]], -"serde":[["impl<E> Debug for U128Deserializer<E>"],["impl<E> Debug for I128Deserializer<E>"],["impl<E> Debug for F32Deserializer<E>"],["impl<'de, I, E> Debug for MapDeserializer<'de, I, E>where\n I: Iterator + Debug,\n I::Item: Pair,\n <I::Item as Pair>::Second: Debug,"],["impl<E> Debug for IsizeDeserializer<E>"],["impl<E> Debug for I32Deserializer<E>"],["impl<E> Debug for UsizeDeserializer<E>"],["impl<A: Debug> Debug for EnumAccessDeserializer<A>"],["impl<'a, E> Debug for StrDeserializer<'a, E>"],["impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>"],["impl Debug for Error"],["impl<E> Debug for F64Deserializer<E>"],["impl<E> Debug for UnitDeserializer<E>"],["impl<E> Debug for U16Deserializer<E>"],["impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>"],["impl<I, E> Debug for SeqDeserializer<I, E>where\n I: Debug,"],["impl<A: Debug> Debug for MapAccessDeserializer<A>"],["impl<'a, E> Debug for CowStrDeserializer<'a, E>"],["impl<A: Debug> Debug for SeqAccessDeserializer<A>"],["impl<E> Debug for I64Deserializer<E>"],["impl Debug for IgnoredAny"],["impl<'a> Debug for Unexpected<'a>"],["impl<E> Debug for U64Deserializer<E>"],["impl<'a, E> Debug for BytesDeserializer<'a, E>"],["impl<E> Debug for StringDeserializer<E>"],["impl<E> Debug for I16Deserializer<E>"],["impl<E> Debug for U32Deserializer<E>"],["impl<E> Debug for BoolDeserializer<E>"],["impl<E> Debug for CharDeserializer<E>"],["impl<E> Debug for I8Deserializer<E>"],["impl<E> Debug for U8Deserializer<E>"]], -"serde_json":[["impl Debug for Category"],["impl Debug for Error"],["impl Debug for RawValue"],["impl Debug for Map<String, Value>"],["impl Debug for Value"],["impl Debug for Number"],["impl Debug for CompactFormatter"],["impl<'a> Debug for PrettyFormatter<'a>"]], +"serde":[["impl<A: Debug> Debug for EnumAccessDeserializer<A>"],["impl<A: Debug> Debug for MapAccessDeserializer<A>"],["impl<E> Debug for UnitDeserializer<E>"],["impl<E> Debug for BoolDeserializer<E>"],["impl<E> Debug for StringDeserializer<E>"],["impl<'a, E> Debug for CowStrDeserializer<'a, E>"],["impl<'a, E> Debug for BytesDeserializer<'a, E>"],["impl<'a, E> Debug for StrDeserializer<'a, E>"],["impl Debug for Error"],["impl<E> Debug for I32Deserializer<E>"],["impl<A: Debug> Debug for SeqAccessDeserializer<A>"],["impl<E> Debug for CharDeserializer<E>"],["impl<E> Debug for U32Deserializer<E>"],["impl<E> Debug for IsizeDeserializer<E>"],["impl<E> Debug for I8Deserializer<E>"],["impl<E> Debug for F32Deserializer<E>"],["impl<E> Debug for U8Deserializer<E>"],["impl<E> Debug for U64Deserializer<E>"],["impl<E> Debug for I64Deserializer<E>"],["impl<'de, I, E> Debug for MapDeserializer<'de, I, E>where\n I: Iterator + Debug,\n I::Item: Pair,\n <I::Item as Pair>::Second: Debug,"],["impl<I, E> Debug for SeqDeserializer<I, E>where\n I: Debug,"],["impl<'a> Debug for Unexpected<'a>"],["impl<'de, E> Debug for BorrowedBytesDeserializer<'de, E>"],["impl<E> Debug for I128Deserializer<E>"],["impl<E> Debug for I16Deserializer<E>"],["impl Debug for IgnoredAny"],["impl<E> Debug for U128Deserializer<E>"],["impl<'de, E> Debug for BorrowedStrDeserializer<'de, E>"],["impl<E> Debug for U16Deserializer<E>"],["impl<E> Debug for F64Deserializer<E>"],["impl<E> Debug for UsizeDeserializer<E>"]], +"serde_json":[["impl Debug for Error"],["impl Debug for RawValue"],["impl Debug for Value"],["impl Debug for Map<String, Value>"],["impl Debug for Category"],["impl Debug for CompactFormatter"],["impl<'a> Debug for PrettyFormatter<'a>"],["impl Debug for Number"]], "serde_urlencoded":[["impl Debug for Error"]], "signal_hook":[["impl<E: Debug + Exfiltrator> Debug for Pending<E>"],["impl<R: Debug, E: Debug + Exfiltrator> Debug for SignalDelivery<R, E>"],["impl Debug for WithRawSiginfo"],["impl<E> Debug for SignalsInfo<E>where\n E: Debug + Exfiltrator,\n E::Storage: Debug,"],["impl Debug for SignalOnly"],["impl Debug for Handle"]], "signal_hook_registry":[["impl Debug for SigId"]], -"simd_json":[["impl<'value> Debug for Value<'value>"],["impl Debug for ErrorType"],["impl Debug for Error"],["impl<'key> Debug for KnownKey<'key>"],["impl Debug for Value"],["impl Debug for Error"],["impl Debug for SerdeConversionError"],["impl<'input> Debug for Node<'input>"]], +"simd_json":[["impl<'key> Debug for KnownKey<'key>"],["impl Debug for Error"],["impl Debug for ErrorType"],["impl Debug for Error"],["impl Debug for Value"],["impl<'input> Debug for Node<'input>"],["impl Debug for SerdeConversionError"],["impl<'value> Debug for Value<'value>"]], "simdutf8":[["impl Debug for Utf8Error"],["impl Debug for Utf8Error"]], "siphasher":[["impl Debug for SipHasher24"],["impl Debug for SipHasher"],["impl Debug for Hash128"],["impl Debug for SipHasher13"],["impl Debug for SipHasher"],["impl Debug for SipHasher13"],["impl Debug for SipHasher24"]], "slab":[["impl<T> Debug for IntoIter<T>where\n T: Debug,"],["impl<T> Debug for IterMut<'_, T>where\n T: Debug,"],["impl<'a, T: Debug> Debug for VacantEntry<'a, T>"],["impl<T> Debug for Iter<'_, T>where\n T: Debug,"],["impl<T> Debug for Drain<'_, T>"],["impl<T> Debug for Slab<T>where\n T: Debug,"]], @@ -138,7 +138,7 @@ "streaming_iterator":[["impl<I: Debug, B: Debug, F: Debug> Debug for FilterMap<I, B, F>"],["impl<I: Debug, B: Debug, F: Debug> Debug for Map<I, B, F>"],["impl<T: Debug> Debug for Empty<T>"],["impl<T: Debug, F: Debug> Debug for FromFn<T, F>"],["impl<I> Debug for Convert<I>where\n I: Iterator + Debug,\n I::Item: Debug,"],["impl<I: Debug> Debug for Fuse<I>"],["impl<I: Debug, F: Debug> Debug for MapDerefMut<I, F>"],["impl<I: Debug> Debug for Flatten<I>"],["impl<T: Debug> Debug for Once<T>"],["impl<I: Debug, F: Debug> Debug for FilterMapDeref<I, F>"],["impl<I: Debug, J: Debug, F: Debug> Debug for FlatMap<I, J, F>"],["impl<I: Debug> Debug for Skip<I>"],["impl<A: Debug, B: Debug> Debug for Chain<A, B>"],["impl<I: Debug> Debug for Take<I>"],["impl<'a, I, T: Debug + ?Sized> Debug for ConvertMut<'a, I, T>where\n I: Iterator<Item = &'a mut T> + Debug,"],["impl<T: Debug> Debug for Repeat<T>"],["impl<I: Debug> Debug for Cloned<I>"],["impl<I: Debug, F: Debug> Debug for SkipWhile<I, F>"],["impl<I: Debug, F: Debug> Debug for MapDeref<I, F>"],["impl<'a, I, T: Debug + ?Sized> Debug for ConvertRef<'a, I, T>where\n I: Iterator<Item = &'a T> + Debug,"],["impl<I: Debug> Debug for Copied<I>"],["impl<T: Debug, F: Debug> Debug for RepeatWith<T, F>"],["impl<T: Debug, F: Debug> Debug for OnceWith<T, F>"],["impl<I: Debug, F: Debug> Debug for TakeWhile<I, F>"],["impl<I: Debug, F: Debug> Debug for Inspect<I, F>"],["impl<T: Debug, F: Debug> Debug for Successors<T, F>"],["impl<I: Debug, F: Debug> Debug for MapRef<I, F>"],["impl<I: Debug, F: Debug> Debug for Filter<I, F>"]], "strength_reduce":[["impl Debug for StrengthReducedU32"],["impl Debug for StrengthReducedU8"],["impl Debug for StrengthReducedU16"],["impl Debug for StrengthReducedUsize"],["impl Debug for StrengthReducedU128"],["impl Debug for StrengthReducedU64"]], "strum":[["impl Debug for ParseError"]], -"sysinfo":[["impl Debug for Uid"],["impl Debug for Process"],["impl Debug for LoadAvg"],["impl Debug for Networks"],["impl Debug for Disk"],["impl Debug for System"],["impl Debug for Signal"],["impl Debug for DiskUsage"],["impl Debug for Component"],["impl Debug for NetworkData"],["impl Debug for RefreshKind"],["impl Debug for MacAddr"],["impl Debug for Cpu"],["impl Debug for Pid"],["impl Debug for ProcessRefreshKind"],["impl Debug for Gid"],["impl Debug for ProcessStatus"],["impl Debug for User"],["impl Debug for DiskKind"],["impl Debug for CpuRefreshKind"]], +"sysinfo":[["impl Debug for User"],["impl Debug for Networks"],["impl Debug for System"],["impl Debug for DiskUsage"],["impl Debug for Disk"],["impl Debug for CpuRefreshKind"],["impl Debug for Component"],["impl Debug for Pid"],["impl Debug for DiskKind"],["impl Debug for NetworkData"],["impl Debug for Cpu"],["impl Debug for ProcessStatus"],["impl Debug for LoadAvg"],["impl Debug for Process"],["impl Debug for ProcessRefreshKind"],["impl Debug for RefreshKind"],["impl Debug for Uid"],["impl Debug for Signal"],["impl Debug for MacAddr"],["impl Debug for Gid"]], "target_features":[["impl Debug for Architecture"],["impl Debug for UnknownFeature"],["impl Debug for Feature"],["impl Debug for Target"],["impl Debug for UnknownCpu"]], "time":[["impl<'a> Debug for TmFmt<'a>"],["impl Debug for OutOfRangeError"],["impl Debug for SteadyTime"],["impl Debug for Tm"],["impl Debug for Duration"],["impl Debug for ParseError"],["impl Debug for Timespec"]], "tinyvec":[["impl Debug for TryFromSliceError"],["impl<A: Array> Debug for TinyVecIterator<A>where\n A::Item: Debug,"],["impl<'s, T> Debug for SliceVec<'s, T>where\n T: Debug,"],["impl<A: Array> Debug for ArrayVec<A>where\n A::Item: Debug,"],["impl<A: Array> Debug for TinyVec<A>where\n A::Item: Debug,"],["impl<A: Array> Debug for ArrayVecIterator<A>where\n A::Item: Debug,"]], @@ -152,7 +152,7 @@ "unicode_normalization":[["impl Debug for IsNormalized"]], "untrusted":[["impl Debug for EndOfInput"],["impl<'a> Debug for Reader<'a>"],["impl<'a> Debug for Input<'a>"]], "url":[["impl Debug for Url"],["impl Debug for Origin"],["impl Debug for Position"],["impl<'a> Debug for PathSegmentsMut<'a>"],["impl Debug for SyntaxViolation"],["impl<'a> Debug for UrlQuery<'a>"],["impl Debug for ParseError"],["impl<S: Debug> Debug for Host<S>"],["impl Debug for OpaqueOrigin"]], -"value_trait":[["impl Debug for ValueType"],["impl Debug for TryTypeError"],["impl Debug for ExtendedValueType"],["impl Debug for StaticNode"],["impl Debug for AccessError"]], +"value_trait":[["impl Debug for StaticNode"],["impl Debug for AccessError"],["impl Debug for ValueType"],["impl Debug for ExtendedValueType"],["impl Debug for TryTypeError"]], "walkdir":[["impl Debug for Error"],["impl<I: Debug, P: Debug> Debug for FilterEntry<I, P>"],["impl Debug for DirEntry"],["impl Debug for WalkDir"],["impl Debug for IntoIter"]], "want":[["impl Debug for Closed"],["impl Debug for Taker"],["impl Debug for Giver"],["impl Debug for SharedGiver"]], "webpki":[["impl Debug for InvalidDnsNameError"],["impl<'a> Debug for TrustAnchor<'a>"],["impl<'a> Debug for TlsServerTrustAnchors<'a>"],["impl Debug for Error"],["impl Debug for Time"],["impl<'a> Debug for TlsClientTrustAnchors<'a>"]], diff --git a/implementors/core/fmt/trait.Display.js b/implementors/core/fmt/trait.Display.js index d0819d46c403..4bf366ac267f 100644 --- a/implementors/core/fmt/trait.Display.js +++ b/implementors/core/fmt/trait.Display.js @@ -1,13 +1,13 @@ (function() {var implementors = { "aho_corasick":[["impl Display for PatternIDError"],["impl Display for BuildError"],["impl Display for MatchError"],["impl Display for StateIDError"]], "allocator_api2":[["impl<T: Display + ?Sized, A: Allocator> Display for Box<T, A>"],["impl Display for AllocError"]], -"arrow2":[["impl Display for f16"],["impl Display for days_ms"],["impl Display for months_days_ns"],["impl Display for i256"],["impl Display for Error"]], +"arrow2":[["impl Display for months_days_ns"],["impl Display for f16"],["impl Display for i256"],["impl Display for days_ms"],["impl Display for Error"]], "avro_schema":[["impl Display for Error"]], "base64":[["impl<'a, 'e, E: Engine> Display for Base64Display<'a, 'e, E>"],["impl Display for ParseAlphabetError"],["impl Display for DecodeSliceError"],["impl Display for DecodeError"],["impl Display for EncodeSliceError"]], "bytemuck":[["impl Display for CheckedCastError"],["impl Display for PodCastError"]], "chrono":[["impl Display for OutOfRange"],["impl<Tz: TimeZone> Display for Date<Tz>where\n Tz::Offset: Display,"],["impl Display for Utc"],["impl Display for NaiveDate"],["impl Display for RoundingError"],["impl<Tz: TimeZone> Display for DateTime<Tz>where\n Tz::Offset: Display,"],["impl Display for NaiveDateTime"],["impl Display for OutOfRangeError"],["impl Display for Duration"],["impl Display for Weekday"],["impl Display for NaiveTime"],["impl Display for ParseError"],["impl<'a, I: Iterator<Item = B> + Clone, B: Borrow<Item<'a>>> Display for DelayedFormat<I>"],["impl Display for FixedOffset"],["impl Display for ParseWeekdayError"]], "chrono_tz":[["impl Display for Tz"]], -"ciborium":[["impl Display for Error"],["impl<T: Debug> Display for Error<T>"],["impl<T: Debug> Display for Error<T>"]], +"ciborium":[["impl<T: Debug> Display for Error<T>"],["impl<T: Debug> Display for Error<T>"],["impl Display for Error"]], "comfy_table":[["impl Display for Table"]], "crossbeam_channel":[["impl<T> Display for SendTimeoutError<T>"],["impl Display for SelectTimeoutError"],["impl<T> Display for TrySendError<T>"],["impl Display for TryRecvError"],["impl Display for TrySelectError"],["impl<T> Display for SendError<T>"],["impl Display for RecvError"],["impl Display for RecvTimeoutError"]], "crossbeam_utils":[["impl<T: ?Sized + Display> Display for ShardedLockReadGuard<'_, T>"],["impl<T: ?Sized + Display> Display for ShardedLockWriteGuard<'_, T>"]], @@ -48,19 +48,19 @@ "ndarray":[["impl Display for SliceInfoElem"],["impl Display for ShapeError"],["impl<A: Display, S, D: Dimension> Display for ArrayBase<S, D>where\n S: Data<Elem = A>,"]], "num_complex":[["impl<T> Display for Complex<T>where\n T: Display + Num + PartialOrd + Clone,"],["impl<E: Display> Display for ParseComplexError<E>"]], "num_traits":[["impl Display for ParseFloatError"]], -"object_store":[["impl Display for Path"],["impl Display for Error"],["impl Display for Error"],["impl<T: ObjectStore> Display for PrefixStore<T>"],["impl<T: ObjectStore> Display for ThrottledStore<T>"],["impl Display for LocalFileSystem"],["impl Display for InMemory"],["impl<T: ObjectStore> Display for LimitStore<T>"],["impl Display for ChunkedStore"],["impl Display for InvalidPart"]], +"object_store":[["impl Display for Error"],["impl<T: ObjectStore> Display for ThrottledStore<T>"],["impl Display for Path"],["impl Display for InvalidPart"],["impl Display for ChunkedStore"],["impl Display for LocalFileSystem"],["impl<T: ObjectStore> Display for PrefixStore<T>"],["impl Display for InMemory"],["impl Display for Error"],["impl<T: ObjectStore> Display for LimitStore<T>"]], "parquet2":[["impl Display for Error"]], "parquet_format_safe":[["impl Display for Error"],["impl Display for ApplicationError"],["impl Display for TransportError"],["impl Display for TType"],["impl Display for TMessageType"],["impl Display for ProtocolError"]], "percent_encoding":[["impl<'a> Display for PercentEncode<'a>"]], "planus":[["impl Display for Error"],["impl Display for ErrorKind"],["impl Display for ErrorLocation"],["impl Display for UnknownEnumTag"],["impl Display for UnknownEnumTagKind"]], -"polars_core":[["impl Display for JoinType"],["impl Display for Series"],["impl Display for TimeUnit"],["impl Display for DataFrame"],["impl Display for GroupByMethod"],["impl Display for AnyValue<'_>"],["impl Display for JoinValidation"],["impl Display for DataType"]], -"polars_error":[["impl Display for ErrString"],["impl Display for PolarsError"]], +"polars_core":[["impl Display for Series"],["impl Display for GroupByMethod"],["impl Display for TimeUnit"],["impl Display for JoinValidation"],["impl Display for DataType"],["impl Display for AnyValue<'_>"],["impl Display for DataFrame"],["impl Display for JoinType"]], +"polars_error":[["impl Display for PolarsError"],["impl Display for ErrString"]], "polars_lazy":[["impl Display for &dyn PhysicalExpr"]], "polars_ops":[["impl Display for SetOperation"]], -"polars_plan":[["impl Display for FunctionExpr"],["impl Display for Expr"],["impl Display for ErrorState"],["impl Display for Operator"],["impl Display for FunctionNode"],["impl Display for BooleanFunction"]], +"polars_plan":[["impl Display for Operator"],["impl Display for BooleanFunction"],["impl Display for FunctionNode"],["impl Display for ErrorState"],["impl Display for Expr"],["impl Display for FunctionExpr"]], "proc_macro2":[["impl Display for Punct"],["impl Display for Literal"],["impl Display for Ident"],["impl Display for LexError"],["impl Display for TokenStream"],["impl Display for Group"],["impl Display for TokenTree"]], "pyo3":[["impl Display for PyStopIteration"],["impl Display for PyProcessLookupError"],["impl Display for PyLong"],["impl Display for PyStopAsyncIteration"],["impl Display for gaierror"],["impl Display for PyConnectionAbortedError"],["impl Display for PySystemExit"],["impl Display for PyFutureWarning"],["impl Display for PyOverflowError"],["impl Display for PySequence"],["impl Display for PyRuntimeError"],["impl Display for PyReferenceError"],["impl Display for timeout"],["impl Display for PyZeroDivisionError"],["impl Display for PyFrame"],["impl Display for PySet"],["impl Display for LimitOverrunError"],["impl Display for PyNameError"],["impl Display for PyDictItems"],["impl Display for PyErr"],["impl Display for PyResourceWarning"],["impl Display for PyCode"],["impl Display for PyIndexError"],["impl Display for PyPermissionError"],["impl Display for PyDateTime"],["impl Display for PySyntaxWarning"],["impl Display for IncompleteReadError"],["impl Display for PyBrokenPipeError"],["impl Display for PyBorrowMutError"],["impl Display for PyUnicodeTranslateError"],["impl Display for PyByteArray"],["impl Display for PyKeyboardInterrupt"],["impl Display for PyAny"],["impl Display for PyLookupError"],["impl Display for PyEnvironmentError"],["impl Display for PyList"],["impl Display for PyTraceback"],["impl Display for PyNotADirectoryError"],["impl Display for PyChildProcessError"],["impl Display for PyFloat"],["impl Display for PyIterator"],["impl Display for TimeoutError"],["impl Display for PyCapsule"],["impl Display for PyBlockingIOError"],["impl Display for PanicException"],["impl Display for PyBytesWarning"],["impl Display for InvalidStateError"],["impl Display for PyTimeoutError"],["impl Display for PyTime"],["impl Display for QueueEmpty"],["impl Display for PyType"],["impl Display for CancelledError"],["impl Display for PyDict"],["impl Display for PyFunction"],["impl Display for PyWarning"],["impl Display for PyString"],["impl Display for PyDictKeys"],["impl Display for PyException"],["impl Display for PyBool"],["impl Display for PyConnectionResetError"],["impl Display for PySystemError"],["impl Display for PyFloatingPointError"],["impl Display for PySuper"],["impl Display for PyFrozenSet"],["impl Display for PyIsADirectoryError"],["impl Display for QueueFull"],["impl Display for PyGeneratorExit"],["impl Display for PyConnectionError"],["impl Display for PyBaseException"],["impl Display for PyUnicodeDecodeError"],["impl Display for PyFileExistsError"],["impl Display for PyTuple"],["impl Display for herror"],["impl Display for PyAttributeError"],["impl Display for PyBytes"],["impl Display for PyUserWarning"],["impl<T> Display for Py<T>where\n T: PyTypeInfo,\n T::AsRefTarget: Display,"],["impl Display for PyDeprecationWarning"],["impl Display for PyImportError"],["impl Display for PyMapping"],["impl Display for PySyntaxError"],["impl Display for PyComplex"],["impl Display for PyBorrowError"],["impl Display for PyModuleNotFoundError"],["impl Display for PyFileNotFoundError"],["impl Display for PyIOError"],["impl Display for PyRuntimeWarning"],["impl Display for PyConnectionRefusedError"],["impl Display for PyEncodingWarning"],["impl Display for PyAssertionError"],["impl Display for PyImportWarning"],["impl Display for PyOSError"],["impl Display for PyDictValues"],["impl Display for PyUnboundLocalError"],["impl Display for PyArithmeticError"],["impl<'a> Display for PyDowncastError<'a>"],["impl Display for PyUnicodeWarning"],["impl Display for PyPendingDeprecationWarning"],["impl Display for PyModule"],["impl Display for PyTzInfo"],["impl Display for PyMemoryError"],["impl Display for PyNotImplementedError"],["impl Display for PyUnicodeEncodeError"],["impl Display for PySlice"],["impl Display for PyInterruptedError"],["impl Display for PyCFunction"],["impl Display for PyValueError"],["impl Display for PyTypeError"],["impl Display for PyKeyError"],["impl Display for PyRecursionError"],["impl Display for PyEOFError"],["impl Display for PyDate"],["impl Display for PyBufferError"],["impl Display for PyUnicodeError"],["impl Display for PyDelta"]], -"quick_xml":[["impl Display for Error"],["impl Display for AttrError"],["impl Display for EscapeError"],["impl Display for DeError"]], +"quick_xml":[["impl Display for EscapeError"],["impl Display for Error"],["impl Display for DeError"],["impl Display for AttrError"]], "rand":[["impl Display for WeightedError"],["impl Display for ReadError"],["impl Display for BernoulliError"]], "rand_core":[["impl Display for Error"]], "rand_distr":[["impl Display for Error"],["impl Display for Error"],["impl Display for Error"],["impl Display for ZetaError"],["impl Display for Error"],["impl Display for Error"],["impl Display for ChiSquaredError"],["impl Display for Error"],["impl Display for Error"],["impl Display for Error"],["impl Display for Error"],["impl Display for PertError"],["impl Display for Error"],["impl Display for Error"],["impl Display for TriangularError"],["impl Display for Error"],["impl Display for Error"],["impl Display for BetaError"],["impl Display for Error"],["impl Display for ZipfError"],["impl Display for Error"],["impl Display for Error"],["impl Display for FisherFError"]], @@ -71,10 +71,10 @@ "reqwest":[["impl Display for Error"]], "ring":[["impl Display for KeyRejected"],["impl Display for Unspecified"]], "rustls":[["impl Display for SignError"],["impl Display for Error"],["impl Display for InvalidDnsNameError"]], -"serde":[["impl Display for Error"],["impl<'a> Display for Unexpected<'a>"],["impl<'a> Display for dyn Expected + 'a"]], -"serde_json":[["impl Display for RawValue"],["impl Display for Error"],["impl Display for Number"],["impl Display for Value"]], +"serde":[["impl<'a> Display for Unexpected<'a>"],["impl<'a> Display for dyn Expected + 'a"],["impl Display for Error"]], +"serde_json":[["impl Display for Number"],["impl Display for Value"],["impl Display for Error"],["impl Display for RawValue"]], "serde_urlencoded":[["impl Display for Error"]], -"simd_json":[["impl Display for Value"],["impl<'value> Display for Value<'value>"],["impl Display for Error"],["impl Display for Error"],["impl Display for SerdeConversionError"]], +"simd_json":[["impl Display for Error"],["impl Display for Error"],["impl<'value> Display for Value<'value>"],["impl Display for Value"],["impl Display for SerdeConversionError"]], "simdutf8":[["impl Display for Utf8Error"],["impl Display for Utf8Error"]], "smallvec":[["impl Display for CollectionAllocErr"]], "smartstring":[["impl<Mode: SmartStringMode> Display for SmartString<Mode>"]], @@ -82,7 +82,7 @@ "snap":[["impl<W> Display for IntoInnerError<W>"],["impl Display for Error"]], "sqlparser":[["impl Display for Word"],["impl Display for Top"],["impl Display for Fetch"],["impl Display for CopyTarget"],["impl Display for DataType"],["impl Display for TableWithJoins"],["impl Display for ListAggOnOverflow"],["impl Display for CopyOption"],["impl Display for RenameSelectItem"],["impl Display for LockClause"],["impl Display for CopyLegacyCsvOption"],["impl Display for ShowCreateObject"],["impl Display for Table"],["impl Display for TokenizerError"],["impl Display for TimezoneInfo"],["impl Display for Statement"],["impl Display for FunctionDefinition"],["impl Display for ArgMode"],["impl Display for Cte"],["impl Display for ReferentialAction"],["impl Display for SequenceOptions"],["impl Display for AnalyzeFormat"],["impl Display for DataLoadingOption"],["impl Display for SetExpr"],["impl Display for KillType"],["impl Display for CloseCursor"],["impl Display for With"],["impl Display for ConflictTarget"],["impl Display for ReplaceSelectItem"],["impl Display for TransactionIsolationLevel"],["impl Display for ContextModifier"],["impl Display for OnConflictAction"],["impl Display for CreateFunctionUsing"],["impl Display for TransactionMode"],["impl Display for TableAlias"],["impl Display for Privileges"],["impl Display for TrimWhereField"],["impl Display for AlterColumnOperation"],["impl Display for ExcludeSelectItem"],["impl Display for LateralView"],["impl Display for AlterTableOperation"],["impl Display for DiscardObject"],["impl Display for ColumnDef"],["impl Display for Value"],["impl Display for TokenWithLocation"],["impl Display for Query"],["impl Display for ExceptSelectItem"],["impl Display for WindowFrameBound"],["impl Display for CharLengthUnits"],["impl Display for FileFormat"],["impl Display for Values"],["impl Display for JsonOperator"],["impl Display for UnaryOperator"],["impl Display for SelectItem"],["impl Display for SetOperator"],["impl Display for BinaryOperator"],["impl Display for SqliteOnConflict"],["impl Display for CopyLegacyOption"],["impl Display for WindowType"],["impl Display for OperateFunctionArg"],["impl Display for Function"],["impl Display for ArrayAgg"],["impl Display for ColumnOption"],["impl Display for AddDropSync"],["impl Display for WindowFrameUnits"],["impl Display for KeyOrIndexDisplay"],["impl Display for NonBlock"],["impl Display for ShowStatementFilter"],["impl Display for WildcardAdditionalOptions"],["impl Display for DataLoadingOptions"],["impl Display for IndexType"],["impl Display for DropFunctionDesc"],["impl Display for SchemaName"],["impl Display for FetchDirection"],["impl Display for Assignment"],["impl Display for DateTimeField"],["impl Display for OffsetRows"],["impl Display for IdentWithAlias"],["impl Display for Select"],["impl Display for TransactionAccessMode"],["impl Display for Expr"],["impl Display for StageParamsObject"],["impl Display for CharacterLength"],["impl Display for TableFactor"],["impl Display for FunctionArgExpr"],["impl Display for ReplaceSelectElement"],["impl Display for Join"],["impl Display for TableConstraint"],["impl Display for Ident"],["impl Display for NamedWindowDefinition"],["impl Display for CreateFunctionBody"],["impl Display for SearchModifier"],["impl Display for SelectInto"],["impl Display for Action"],["impl Display for DollarQuotedString"],["impl Display for CommentObject"],["impl Display for Offset"],["impl Display for ListAgg"],["impl Display for Whitespace"],["impl Display for ColumnOptionDef"],["impl Display for StageLoadSelectItem"],["impl Display for SqlOption"],["impl Display for OrderByExpr"],["impl Display for Array"],["impl Display for WindowSpec"],["impl Display for ParserError"],["impl Display for FunctionBehavior"],["impl Display for FunctionArg"],["impl Display for OnConflict"],["impl Display for Token"],["impl Display for ObjectType"],["impl Display for Distinct"],["impl Display for Interval"],["impl Display for GrantObjects"],["impl Display for AlterIndexOperation"],["impl Display for MergeClause"],["impl Display for ObjectName"],["impl Display for ExactNumberInfo"],["impl Display for OnInsert"],["impl Display for SetQuantifier"],["impl Display for DropFunctionOption"],["impl Display for LockType"]], "strum":[["impl Display for ParseError"]], -"sysinfo":[["impl Display for MacAddr"],["impl Display for Pid"],["impl Display for ProcessStatus"],["impl Display for Signal"]], +"sysinfo":[["impl Display for MacAddr"],["impl Display for Pid"],["impl Display for Signal"],["impl Display for ProcessStatus"]], "target_features":[["impl Display for UnknownFeature"],["impl Display for UnknownCpu"]], "time":[["impl Display for SteadyTime"],["impl<'a> Display for TmFmt<'a>"],["impl Display for ParseError"],["impl Display for Duration"],["impl Display for OutOfRangeError"]], "tinyvec":[["impl<A: Array> Display for ArrayVec<A>where\n A::Item: Display,"],["impl Display for TryFromSliceError"],["impl<A: Array> Display for TinyVec<A>where\n A::Item: Display,"],["impl<'s, T> Display for SliceVec<'s, T>where\n T: Display,"]], @@ -91,7 +91,7 @@ "tracing_core":[["impl Display for ParseLevelError"],["impl Display for LevelFilter"],["impl Display for dyn Value"],["impl Display for Level"],["impl<T: Display> Display for DisplayValue<T>"],["impl Display for Field"],["impl<'a> Display for ValueSet<'a>"],["impl Display for ParseLevelFilterError"],["impl Display for SetGlobalDefaultError"],["impl Display for FieldSet"]], "unicode_normalization":[["impl<I: Iterator<Item = char> + Clone> Display for Decompositions<I>"],["impl<I: Iterator<Item = char> + Clone> Display for Replacements<I>"],["impl<I: Iterator<Item = char> + Clone> Display for Recompositions<I>"]], "url":[["impl Display for ParseError"],["impl Display for Url"],["impl Display for SyntaxViolation"],["impl<S: AsRef<str>> Display for Host<S>"]], -"value_trait":[["impl Display for StaticNode"],["impl Display for ExtendedValueType"],["impl Display for TryTypeError"],["impl Display for ValueType"],["impl Display for AccessError"]], +"value_trait":[["impl Display for AccessError"],["impl Display for ValueType"],["impl Display for ExtendedValueType"],["impl Display for TryTypeError"],["impl Display for StaticNode"]], "walkdir":[["impl Display for Error"]], "webpki":[["impl Display for InvalidDnsNameError"],["impl Display for Error"]], "zstd_safe":[["impl Display for ContentSizeError"]] diff --git a/implementors/core/hash/trait.Hash.js b/implementors/core/hash/trait.Hash.js index 9bc3826cf934..c9cfc07f27f6 100644 --- a/implementors/core/hash/trait.Hash.js +++ b/implementors/core/hash/trait.Hash.js @@ -1,14 +1,14 @@ (function() {var implementors = { "aho_corasick":[["impl Hash for StateID"],["impl Hash for Span"],["impl Hash for Match"],["impl Hash for PatternID"]], "allocator_api2":[["impl<T: Hash, A: Allocator> Hash for Vec<T, A>"],["impl<T: ?Sized + Hash, A: Allocator> Hash for Box<T, A>"]], -"arrow2":[["impl Hash for IntervalUnit"],["impl Hash for Compression"],["impl Hash for i256"],["impl Hash for Field"],["impl Hash for TimeUnit"],["impl Hash for days_ms"],["impl Hash for UnionMode"],["impl Hash for PrimitiveType"],["impl Hash for PhysicalType"],["impl Hash for IntegerType"],["impl Hash for DataType"],["impl Hash for WriteOptions"],["impl Hash for months_days_ns"]], -"avro_schema":[["impl Hash for FileMetadata"],["impl Hash for Record"],["impl Hash for Order"],["impl Hash for LongLogical"],["impl Hash for Compression"],["impl Hash for FixedLogical"],["impl Hash for IntLogical"],["impl Hash for Fixed"],["impl Hash for BytesLogical"],["impl Hash for StringLogical"],["impl Hash for Schema"],["impl Hash for Field"],["impl Hash for Enum"]], +"arrow2":[["impl Hash for DataType"],["impl Hash for Compression"],["impl Hash for UnionMode"],["impl Hash for days_ms"],["impl Hash for months_days_ns"],["impl Hash for IntegerType"],["impl Hash for Field"],["impl Hash for PrimitiveType"],["impl Hash for PhysicalType"],["impl Hash for IntervalUnit"],["impl Hash for TimeUnit"],["impl Hash for WriteOptions"],["impl Hash for i256"]], +"avro_schema":[["impl Hash for Record"],["impl Hash for Schema"],["impl Hash for FixedLogical"],["impl Hash for BytesLogical"],["impl Hash for Compression"],["impl Hash for LongLogical"],["impl Hash for StringLogical"],["impl Hash for Enum"],["impl Hash for IntLogical"],["impl Hash for Order"],["impl Hash for FileMetadata"],["impl Hash for Fixed"],["impl Hash for Field"]], "brotli":[["impl Hash for LiteralPredictionModeNibble"]], "bytemuck":[["impl Hash for CheckedCastError"],["impl Hash for PodCastError"]], "bytes":[["impl Hash for Bytes"],["impl Hash for BytesMut"]], "chrono":[["impl Hash for Weekday"],["impl Hash for ParseErrorKind"],["impl<'a> Hash for Item<'a>"],["impl Hash for Pad"],["impl Hash for Months"],["impl Hash for Numeric"],["impl Hash for Duration"],["impl<Tz: TimeZone> Hash for Date<Tz>"],["impl Hash for Utc"],["impl Hash for Month"],["impl Hash for NaiveTime"],["impl Hash for NaiveDateTime"],["impl Hash for Parsed"],["impl Hash for IsoWeek"],["impl Hash for FixedOffset"],["impl Hash for SecondsFormat"],["impl<T: Hash> Hash for LocalResult<T>"],["impl Hash for Days"],["impl Hash for InternalFixed"],["impl Hash for NaiveDate"],["impl Hash for Fixed"],["impl Hash for ParseError"],["impl Hash for InternalNumeric"],["impl Hash for OutOfRange"],["impl<Tz: TimeZone> Hash for DateTime<Tz>"]], "chrono_tz":[["impl Hash for Tz"]], -"ciborium":[["impl<V: Hash, const TAG: u64> Hash for Required<V, TAG>"],["impl Hash for Integer"],["impl<V: Hash> Hash for Captured<V>"],["impl<V: Hash, const TAG: u64> Hash for Accepted<V, TAG>"]], +"ciborium":[["impl<V: Hash, const TAG: u64> Hash for Accepted<V, TAG>"],["impl Hash for Integer"],["impl<V: Hash, const TAG: u64> Hash for Required<V, TAG>"],["impl<V: Hash> Hash for Captured<V>"]], "comfy_table":[["impl Hash for Color"],["impl Hash for TableComponent"],["impl Hash for Attribute"]], "crossbeam_utils":[["impl<T: Hash> Hash for CachePadded<T>"]], "crossterm":[["impl Hash for KeyEventState"],["impl Hash for KeyEvent"],["impl Hash for Event"],["impl Hash for Attribute"],["impl Hash for MediaKeyCode"],["impl Hash for MouseEventKind"],["impl Hash for MouseButton"],["impl Hash for KeyCode"],["impl Hash for ClearType"],["impl Hash for Color"],["impl Hash for MouseEvent"],["impl Hash for KeyboardEnhancementFlags"],["impl Hash for KeyEventKind"],["impl Hash for ModifierKeyCode"],["impl Hash for KeyModifiers"],["impl Hash for Colored"]], @@ -38,14 +38,14 @@ "object_store":[["impl Hash for Path"],["impl<'a> Hash for PathPart<'a>"]], "parquet2":[["impl Hash for BooleanIndex"],["impl Hash for PhysicalType"],["impl Hash for ZstdLevel"],["impl<T: Hash> Hash for PageIndex<T>"],["impl Hash for Repetition"],["impl<T: Hash + NativeType> Hash for NativeIndex<T>"],["impl Hash for Interval"],["impl Hash for BrotliLevel"],["impl Hash for TimeUnit"],["impl Hash for Encoding"],["impl Hash for GroupLogicalType"],["impl Hash for Feature"],["impl Hash for ByteIndex"],["impl Hash for PageType"],["impl Hash for CompressionOptions"],["impl Hash for PrimitiveType"],["impl Hash for FieldInfo"],["impl Hash for Version"],["impl Hash for FixedLenByteIndex"],["impl Hash for Descriptor"],["impl Hash for Compression"],["impl Hash for FilteredPage"],["impl Hash for PrimitiveLogicalType"],["impl Hash for BoundaryOrder"],["impl Hash for WriteOptions"],["impl Hash for IntegerType"],["impl Hash for PrimitiveConvertedType"],["impl Hash for GroupConvertedType"],["impl Hash for GzipLevel"]], "parquet_format_safe":[["impl Hash for TimestampType"],["impl Hash for BloomFilterAlgorithm"],["impl Hash for StringType"],["impl Hash for MicroSeconds"],["impl Hash for TimeType"],["impl Hash for EncryptionAlgorithm"],["impl Hash for MilliSeconds"],["impl Hash for DateType"],["impl Hash for JsonType"],["impl Hash for SortingColumn"],["impl Hash for PageLocation"],["impl Hash for OffsetIndex"],["impl Hash for BoundaryOrder"],["impl Hash for CompressionCodec"],["impl Hash for FileCryptoMetaData"],["impl Hash for EnumType"],["impl Hash for ColumnMetaData"],["impl Hash for EncryptionWithFooterKey"],["impl Hash for PageHeader"],["impl Hash for MapType"],["impl Hash for FieldRepetitionType"],["impl Hash for NanoSeconds"],["impl Hash for DictionaryPageHeader"],["impl Hash for EncryptionWithColumnKey"],["impl Hash for ColumnOrder"],["impl Hash for KeyValue"],["impl Hash for DataPageHeaderV2"],["impl Hash for BloomFilterHeader"],["impl Hash for UUIDType"],["impl Hash for NullType"],["impl Hash for XxHash"],["impl Hash for Statistics"],["impl Hash for BsonType"],["impl Hash for ColumnIndex"],["impl Hash for ListType"],["impl Hash for ColumnCryptoMetaData"],["impl Hash for Uncompressed"],["impl Hash for TypeDefinedOrder"],["impl Hash for SchemaElement"],["impl Hash for FileMetaData"],["impl Hash for SplitBlockAlgorithm"],["impl Hash for BloomFilterHash"],["impl Hash for LogicalType"],["impl Hash for Type"],["impl Hash for TimeUnit"],["impl Hash for Encoding"],["impl Hash for AesGcmV1"],["impl Hash for IndexPageHeader"],["impl Hash for BloomFilterCompression"],["impl Hash for IntType"],["impl Hash for DataPageHeader"],["impl Hash for RowGroup"],["impl Hash for PageType"],["impl Hash for AesGcmCtrV1"],["impl Hash for PageEncodingStats"],["impl Hash for DecimalType"],["impl Hash for ConvertedType"],["impl Hash for ColumnChunk"]], -"polars_core":[["impl Hash for NullBehavior"],["impl Hash for Wrap<Series>"],["impl<'a> Hash for AnyValue<'a>"],["impl Hash for SortOptions"],["impl Hash for TimeUnit"],["impl Hash for DataType"]], -"polars_io":[["impl Hash for ParquetCompression"],["impl Hash for ZstdLevel"],["impl Hash for BrotliLevel"],["impl Hash for GzipLevel"],["impl Hash for IpcCompression"]], +"polars_core":[["impl<'a> Hash for AnyValue<'a>"],["impl Hash for SortOptions"],["impl Hash for Wrap<Series>"],["impl Hash for TimeUnit"],["impl Hash for NullBehavior"],["impl Hash for DataType"]], +"polars_io":[["impl Hash for IpcCompression"],["impl Hash for GzipLevel"],["impl Hash for ParquetCompression"],["impl Hash for BrotliLevel"],["impl Hash for ZstdLevel"]], "polars_ops":[["impl Hash for SearchSortedSide"]], -"polars_plan":[["impl Hash for FunctionOptions"],["impl Hash for Excluded"],["impl Hash for UnsafeBool"],["impl Hash for ApplyOptions"],["impl Hash for StrptimeOptions"],["impl Hash for RollingCovOptions"],["impl Hash for BooleanFunction"],["impl Hash for FileFingerPrint"],["impl Hash for Expr"]], -"polars_time":[["impl Hash for StartBy"],["impl Hash for Pattern"],["impl Hash for TruncateOptions"],["impl Hash for ClosedWindow"],["impl Hash for Duration"]], +"polars_plan":[["impl Hash for BooleanFunction"],["impl Hash for FunctionOptions"],["impl Hash for Expr"],["impl Hash for FileFingerPrint"],["impl Hash for Excluded"],["impl Hash for StrptimeOptions"],["impl Hash for UnsafeBool"],["impl Hash for ApplyOptions"],["impl Hash for RollingCovOptions"]], +"polars_time":[["impl Hash for StartBy"],["impl Hash for ClosedWindow"],["impl Hash for Duration"],["impl Hash for Pattern"],["impl Hash for TruncateOptions"]], "polars_utils":[["impl Hash for Node"]], "proc_macro2":[["impl Hash for Ident"]], -"quick_xml":[["impl<'ns> Hash for ResolveResult<'ns>"],["impl<'a> Hash for LocalName<'a>"],["impl<'a> Hash for Prefix<'a>"],["impl<'a> Hash for PrefixDeclaration<'a>"],["impl<'a> Hash for QName<'a>"],["impl<T: Hash> Hash for Attr<T>"],["impl<'a> Hash for Namespace<'a>"]], +"quick_xml":[["impl<'ns> Hash for ResolveResult<'ns>"],["impl<'a> Hash for LocalName<'a>"],["impl<'a> Hash for Namespace<'a>"],["impl<'a> Hash for PrefixDeclaration<'a>"],["impl<'a> Hash for Prefix<'a>"],["impl<'a> Hash for QName<'a>"],["impl<T: Hash> Hash for Attr<T>"]], "regex_automata":[["impl Hash for Span"],["impl Hash for NonMaxUsize"],["impl Hash for Match"],["impl Hash for StateID"],["impl Hash for HalfMatch"],["impl Hash for LazyStateID"],["impl Hash for SmallIndex"],["impl Hash for PatternID"],["impl Hash for Transition"]], "rustls":[["impl Hash for DnsName"],["impl Hash for ServerName"],["impl Hash for Certificate"]], "same_file":[["impl Hash for Handle"]], diff --git a/implementors/core/iter/traits/collect/trait.Extend.js b/implementors/core/iter/traits/collect/trait.Extend.js index 5a142291be7f..2c0c99ad6bfa 100644 --- a/implementors/core/iter/traits/collect/trait.Extend.js +++ b/implementors/core/iter/traits/collect/trait.Extend.js @@ -1,7 +1,7 @@ (function() {var implementors = { "ahash":[["impl<'a, K, V, S> Extend<(&'a K, &'a V)> for AHashMap<K, V, S>where\n K: Eq + Hash + Copy + 'a,\n V: Copy + 'a,\n S: BuildHasher,"],["impl<'a, T, S> Extend<&'a T> for AHashSet<T, S>where\n T: 'a + Eq + Hash + Copy,\n S: BuildHasher,"],["impl<K, V, S> Extend<(K, V)> for AHashMap<K, V, S>where\n K: Eq + Hash,\n S: BuildHasher,"],["impl<T, S> Extend<T> for AHashSet<T, S>where\n T: Eq + Hash,\n S: BuildHasher,"]], "allocator_api2":[["impl<A: Allocator> Extend<Box<str, A>> for String"],["impl<T, A: Allocator> Extend<T> for Vec<T, A>"],["impl<'a, T: Copy + 'a, A: Allocator + 'a> Extend<&'a T> for Vec<T, A>"]], -"arrow2":[["impl<T: NativeType> Extend<Option<T>> for MutablePrimitiveArray<T>"],["impl Extend<Option<bool>> for MutableBooleanArray"],["impl<O: Offset, T: AsRef<str>> Extend<Option<T>> for MutableUtf8Array<O>"],["impl<O: Offset, T: AsRef<[u8]>> Extend<T> for MutableBinaryValuesArray<O>"],["impl<O: Offset, T: AsRef<str>> Extend<T> for MutableUtf8ValuesArray<O>"],["impl<O: Offset, T: AsRef<[u8]>> Extend<Option<T>> for MutableBinaryArray<O>"]], +"arrow2":[["impl<O: Offset, T: AsRef<str>> Extend<T> for MutableUtf8ValuesArray<O>"],["impl<T: NativeType> Extend<Option<T>> for MutablePrimitiveArray<T>"],["impl<O: Offset, T: AsRef<[u8]>> Extend<T> for MutableBinaryValuesArray<O>"],["impl<O: Offset, T: AsRef<[u8]>> Extend<Option<T>> for MutableBinaryArray<O>"],["impl Extend<Option<bool>> for MutableBooleanArray"],["impl<O: Offset, T: AsRef<str>> Extend<Option<T>> for MutableUtf8Array<O>"]], "bytes":[["impl Extend<u8> for BytesMut"],["impl Extend<Bytes> for BytesMut"],["impl<'a> Extend<&'a u8> for BytesMut"]], "crossterm":[["impl Extend<KeyboardEnhancementFlags> for KeyboardEnhancementFlags"],["impl Extend<KeyModifiers> for KeyModifiers"],["impl Extend<KeyEventState> for KeyEventState"]], "either":[["impl<L, R, A> Extend<A> for Either<L, R>where\n L: Extend<A>,\n R: Extend<A>,"]], diff --git a/implementors/core/iter/traits/collect/trait.FromIterator.js b/implementors/core/iter/traits/collect/trait.FromIterator.js index 8d00218d4c63..e90709379053 100644 --- a/implementors/core/iter/traits/collect/trait.FromIterator.js +++ b/implementors/core/iter/traits/collect/trait.FromIterator.js @@ -1,7 +1,7 @@ (function() {var implementors = { "ahash":[["impl<K, V> FromIterator<(K, V)> for AHashMap<K, V, RandomState>where\n K: Eq + Hash,"],["impl<T> FromIterator<T> for AHashSet<T, RandomState>where\n T: Eq + Hash,"]], "allocator_api2":[["impl<T> FromIterator<T> for Vec<T>"],["impl<I> FromIterator<I> for Box<[I]>"]], -"arrow2":[["impl<O: Offset, P: AsRef<[u8]>> FromIterator<Option<P>> for MutableBinaryArray<O>"],["impl<O: Offset, P: AsRef<str>> FromIterator<P> for MutableUtf8ValuesArray<O>"],["impl<O: Offset, P: AsRef<str>> FromIterator<Option<P>> for MutableUtf8Array<O>"],["impl<Ptr: Borrow<Option<bool>>> FromIterator<Ptr> for MutableBooleanArray"],["impl<O: Offset, P: AsRef<str>> FromIterator<Option<P>> for Utf8Array<O>"],["impl FromIterator<bool> for MutableBitmap"],["impl<T> FromIterator<T> for Buffer<T>"],["impl<O: Offset, P: AsRef<[u8]>> FromIterator<Option<P>> for BinaryArray<O>"],["impl<T: NativeType, Ptr: Borrow<Option<T>>> FromIterator<Ptr> for PrimitiveArray<T>"],["impl<Ptr: Borrow<Option<bool>>> FromIterator<Ptr> for BooleanArray"],["impl FromIterator<bool> for Bitmap"],["impl<O: Offset, P: AsRef<[u8]>> FromIterator<P> for MutableBinaryValuesArray<O>"],["impl<T: NativeType, Ptr: Borrow<Option<T>>> FromIterator<Ptr> for MutablePrimitiveArray<T>"]], +"arrow2":[["impl<O: Offset, P: AsRef<str>> FromIterator<Option<P>> for MutableUtf8Array<O>"],["impl<T: NativeType, Ptr: Borrow<Option<T>>> FromIterator<Ptr> for PrimitiveArray<T>"],["impl<Ptr: Borrow<Option<bool>>> FromIterator<Ptr> for MutableBooleanArray"],["impl FromIterator<bool> for Bitmap"],["impl<O: Offset, P: AsRef<str>> FromIterator<Option<P>> for Utf8Array<O>"],["impl<O: Offset, P: AsRef<[u8]>> FromIterator<Option<P>> for BinaryArray<O>"],["impl<T: NativeType, Ptr: Borrow<Option<T>>> FromIterator<Ptr> for MutablePrimitiveArray<T>"],["impl<O: Offset, P: AsRef<[u8]>> FromIterator<P> for MutableBinaryValuesArray<O>"],["impl<Ptr: Borrow<Option<bool>>> FromIterator<Ptr> for BooleanArray"],["impl<T> FromIterator<T> for Buffer<T>"],["impl FromIterator<bool> for MutableBitmap"],["impl<O: Offset, P: AsRef<str>> FromIterator<P> for MutableUtf8ValuesArray<O>"],["impl<O: Offset, P: AsRef<[u8]>> FromIterator<Option<P>> for MutableBinaryArray<O>"]], "bytes":[["impl FromIterator<u8> for Bytes"],["impl<'a> FromIterator<&'a u8> for BytesMut"],["impl FromIterator<u8> for BytesMut"]], "crossbeam_deque":[["impl<T> FromIterator<Steal<T>> for Steal<T>"]], "crossterm":[["impl FromIterator<KeyEventState> for KeyEventState"],["impl FromIterator<KeyModifiers> for KeyModifiers"],["impl FromIterator<KeyboardEnhancementFlags> for KeyboardEnhancementFlags"]], @@ -12,11 +12,11 @@ "indexmap":[["impl<T, S> FromIterator<T> for IndexSet<T, S>where\n T: Hash + Eq,\n S: BuildHasher + Default,"],["impl<K, V, S> FromIterator<(K, V)> for IndexMap<K, V, S>where\n K: Hash + Eq,\n S: BuildHasher + Default,"]], "ndarray":[["impl<A, S> FromIterator<A> for ArrayBase<S, Ix1>where\n S: DataOwned<Elem = A>,"]], "object_store":[["impl<'a, I> FromIterator<I> for Pathwhere\n I: Into<PathPart<'a>>,"]], -"polars_core":[["impl<'a> FromIterator<&'a i32> for Series"],["impl<'a> FromIterator<&'a f64> for Series"],["impl FromIterator<Option<f64>> for Series"],["impl FromIterator<f64> for Series"],["impl<T> FromIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>>where\n T: PolarsNumericType,"],["impl<Ptr> FromIterator<Ptr> for Utf8Chunkedwhere\n Ptr: PolarsAsRef<str>,"],["impl FromIterator<Option<Series>> for ListChunked"],["impl FromIterator<bool> for NoNull<BooleanChunked>"],["impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx"],["impl FromIterator<Option<bool>> for Series"],["impl<Ptr> FromIterator<Ptr> for BinaryChunkedwhere\n Ptr: PolarsAsRef<[u8]>,"],["impl FromIterator<i32> for Series"],["impl<T> FromIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl FromIterator<Option<i64>> for Series"],["impl FromIterator<bool> for BooleanChunked"],["impl FromIterator<u64> for Series"],["impl FromIterator<Option<bool>> for ChunkedArray<BooleanType>"],["impl FromIterator<bool> for Series"],["impl<'a> FromIterator<&'a bool> for Series"],["impl FromIterator<Series> for DataFrame"],["impl FromIterator<u32> for Series"],["impl FromIterator<f32> for Series"],["impl<'a> FromIterator<&'a u32> for Series"],["impl<'a> FromIterator<&'a u64> for Series"],["impl<F> FromIterator<F> for Schemawhere\n F: Into<Field>,"],["impl FromIterator<Option<i32>> for Series"],["impl<Ptr> FromIterator<Option<Ptr>> for BinaryChunkedwhere\n Ptr: AsRef<[u8]>,"],["impl<'a> FromIterator<&'a i64> for Series"],["impl FromIterator<Option<Box<dyn Array, Global>>> for ListChunked"],["impl<'a> FromIterator<&'a str> for Series"],["impl FromIterator<i64> for Series"],["impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl FromIterator<Option<f32>> for Series"],["impl<'a> FromIterator<&'a f32> for Series"],["impl FromIterator<Option<u64>> for Series"],["impl<Ptr> FromIterator<Option<Ptr>> for Utf8Chunkedwhere\n Ptr: AsRef<str>,"],["impl FromIterator<Option<u32>> for Series"],["impl<Ptr> FromIterator<Ptr> for ListChunkedwhere\n Ptr: Borrow<Series>,"],["impl FromIterator<String> for Series"]], +"polars_core":[["impl<'a> FromIterator<&'a bool> for Series"],["impl FromIterator<Option<u32>> for Series"],["impl<T> FromIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>>where\n T: PolarsNumericType,"],["impl FromIterator<f32> for Series"],["impl<T> FromIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl FromIterator<Option<Box<dyn Array, Global>>> for ListChunked"],["impl<'a> FromIterator<&'a i64> for Series"],["impl<Ptr> FromIterator<Ptr> for Utf8Chunkedwhere\n Ptr: PolarsAsRef<str>,"],["impl<'a> FromIterator<&'a u32> for Series"],["impl<'a> FromIterator<&'a str> for Series"],["impl<'a> FromIterator<&'a u64> for Series"],["impl FromIterator<Option<u64>> for Series"],["impl<'a> FromIterator<&'a f32> for Series"],["impl FromIterator<Option<i32>> for Series"],["impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx"],["impl FromIterator<f64> for Series"],["impl FromIterator<Option<f32>> for Series"],["impl FromIterator<i32> for Series"],["impl<F> FromIterator<F> for Schemawhere\n F: Into<Field>,"],["impl<Ptr> FromIterator<Option<Ptr>> for BinaryChunkedwhere\n Ptr: AsRef<[u8]>,"],["impl<'a> FromIterator<&'a f64> for Series"],["impl FromIterator<Option<bool>> for ChunkedArray<BooleanType>"],["impl FromIterator<String> for Series"],["impl FromIterator<Series> for DataFrame"],["impl FromIterator<u32> for Series"],["impl<Ptr> FromIterator<Option<Ptr>> for Utf8Chunkedwhere\n Ptr: AsRef<str>,"],["impl FromIterator<Option<f64>> for Series"],["impl<Ptr> FromIterator<Ptr> for BinaryChunkedwhere\n Ptr: PolarsAsRef<[u8]>,"],["impl FromIterator<Option<Series>> for ListChunked"],["impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl FromIterator<u64> for Series"],["impl FromIterator<bool> for BooleanChunked"],["impl FromIterator<bool> for Series"],["impl<Ptr> FromIterator<Ptr> for ListChunkedwhere\n Ptr: Borrow<Series>,"],["impl FromIterator<Option<bool>> for Series"],["impl FromIterator<Option<i64>> for Series"],["impl FromIterator<i64> for Series"],["impl<'a> FromIterator<&'a i32> for Series"],["impl FromIterator<bool> for NoNull<BooleanChunked>"]], "proc_macro2":[["impl FromIterator<TokenTree> for TokenStream"],["impl FromIterator<TokenStream> for TokenStream"]], "regex_syntax":[["impl FromIterator<Literal> for Seq"]], -"serde_json":[["impl FromIterator<(String, Value)> for Map<String, Value>"],["impl<T: Into<Value>> FromIterator<T> for Value"],["impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value"]], -"simd_json":[["impl<V: Into<Value>> FromIterator<V> for Value"],["impl<K: ToString, V: Into<Value>> FromIterator<(K, V)> for Value"],["impl<'value, V: Into<Value<'value>>> FromIterator<V> for Value<'value>"],["impl<'value, K: Into<Cow<'value, str>>, V: Into<Value<'value>>> FromIterator<(K, V)> for Value<'value>"]], +"serde_json":[["impl FromIterator<(String, Value)> for Map<String, Value>"],["impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value"],["impl<T: Into<Value>> FromIterator<T> for Value"]], +"simd_json":[["impl<'value, K: Into<Cow<'value, str>>, V: Into<Value<'value>>> FromIterator<(K, V)> for Value<'value>"],["impl<K: ToString, V: Into<Value>> FromIterator<(K, V)> for Value"],["impl<'value, V: Into<Value<'value>>> FromIterator<V> for Value<'value>"],["impl<V: Into<Value>> FromIterator<V> for Value"]], "slab":[["impl<T> FromIterator<(usize, T)> for Slab<T>"]], "smallvec":[["impl<A: Array> FromIterator<<A as Array>::Item> for SmallVec<A>"]], "smartstring":[["impl<Mode: SmartStringMode> FromIterator<char> for SmartString<Mode>"],["impl<'a, Mode: SmartStringMode> FromIterator<&'a String> for SmartString<Mode>"],["impl<Mode: SmartStringMode> FromIterator<SmartString<Mode>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> FromIterator<String> for SmartString<Mode>"],["impl<'a, Mode: SmartStringMode + 'a> FromIterator<&'a SmartString<Mode>> for SmartString<Mode>"],["impl<'a, Mode: SmartStringMode> FromIterator<&'a str> for SmartString<Mode>"]], diff --git a/implementors/core/iter/traits/collect/trait.IntoIterator.js b/implementors/core/iter/traits/collect/trait.IntoIterator.js index c542b7a2fcbd..efdbc8d81ef3 100644 --- a/implementors/core/iter/traits/collect/trait.IntoIterator.js +++ b/implementors/core/iter/traits/collect/trait.IntoIterator.js @@ -1,7 +1,7 @@ (function() {var implementors = { "ahash":[["impl<K, V, S> IntoIterator for AHashMap<K, V, S>"],["impl<'a, K, V, S> IntoIterator for &'a mut AHashMap<K, V, S>"],["impl<T, S> IntoIterator for AHashSet<T, S>"],["impl<'a, T, S> IntoIterator for &'a AHashSet<T, S>"],["impl<'a, K, V, S> IntoIterator for &'a AHashMap<K, V, S>"]], "allocator_api2":[["impl<'a, T, A: Allocator> IntoIterator for &'a Vec<T, A>"],["impl<'a, T, A: Allocator> IntoIterator for &'a mut Vec<T, A>"],["impl<T, A: Allocator> IntoIterator for Vec<T, A>"]], -"arrow2":[["impl<'a> IntoIterator for &'a FixedSizeListArray"],["impl<'a, O: Offset> IntoIterator for &'a BinaryArray<O>"],["impl<'a> IntoIterator for &'a BooleanArray"],["impl<'a, O: Offset> IntoIterator for &'a Utf8Array<O>"],["impl<'a> IntoIterator for &'a MutableFixedSizeBinaryArray"],["impl<'a, T: NativeType> IntoIterator for &'a PrimitiveArray<T>"],["impl IntoIterator for Bitmap"],["impl<'a> IntoIterator for &'a MapArray"],["impl<'a> IntoIterator for &'a MutableBitmap"],["impl<'a, O: Offset> IntoIterator for &'a MutableUtf8Array<O>"],["impl IntoIterator for BooleanArray"],["impl<'a> IntoIterator for &'a MutableBooleanArray"],["impl<'a> IntoIterator for &'a UnionArray"],["impl<'a> IntoIterator for &'a FixedSizeBinaryArray"],["impl<'a, O: Offset> IntoIterator for &'a MutableBinaryValuesArray<O>"],["impl<'a, O: Offset> IntoIterator for &'a ListArray<O>"],["impl<T: Copy> IntoIterator for Buffer<T>"],["impl<'a, K: DictionaryKey> IntoIterator for &'a DictionaryArray<K>"],["impl<'a> IntoIterator for &'a StructArray"],["impl<'a> IntoIterator for &'a Bitmap"],["impl<T: NativeType> IntoIterator for PrimitiveArray<T>"],["impl<'a, O: Offset> IntoIterator for &'a MutableUtf8ValuesArray<O>"]], +"arrow2":[["impl<'a, O: Offset> IntoIterator for &'a BinaryArray<O>"],["impl<'a> IntoIterator for &'a MapArray"],["impl<T: Copy> IntoIterator for Buffer<T>"],["impl<'a> IntoIterator for &'a Bitmap"],["impl<'a, O: Offset> IntoIterator for &'a MutableUtf8ValuesArray<O>"],["impl<'a, K: DictionaryKey> IntoIterator for &'a DictionaryArray<K>"],["impl<'a, O: Offset> IntoIterator for &'a MutableBinaryValuesArray<O>"],["impl<'a> IntoIterator for &'a StructArray"],["impl<'a> IntoIterator for &'a MutableFixedSizeBinaryArray"],["impl IntoIterator for Bitmap"],["impl<'a> IntoIterator for &'a FixedSizeBinaryArray"],["impl<T: NativeType> IntoIterator for PrimitiveArray<T>"],["impl<'a, O: Offset> IntoIterator for &'a ListArray<O>"],["impl<'a> IntoIterator for &'a MutableBitmap"],["impl<'a, T: NativeType> IntoIterator for &'a PrimitiveArray<T>"],["impl<'a> IntoIterator for &'a MutableBooleanArray"],["impl IntoIterator for BooleanArray"],["impl<'a> IntoIterator for &'a UnionArray"],["impl<'a> IntoIterator for &'a BooleanArray"],["impl<'a, O: Offset> IntoIterator for &'a MutableUtf8Array<O>"],["impl<'a> IntoIterator for &'a FixedSizeListArray"],["impl<'a, O: Offset> IntoIterator for &'a Utf8Array<O>"]], "bytes":[["impl<'a> IntoIterator for &'a Bytes"],["impl<T, U> IntoIterator for Chain<T, U>where\n T: Buf,\n U: Buf,"],["impl<'a> IntoIterator for &'a BytesMut"],["impl IntoIterator for BytesMut"],["impl IntoIterator for Bytes"]], "crossbeam_channel":[["impl<'a, T> IntoIterator for &'a Receiver<T>"],["impl<T> IntoIterator for Receiver<T>"]], "crossbeam_queue":[["impl<T> IntoIterator for ArrayQueue<T>"],["impl<T> IntoIterator for SegQueue<T>"]], @@ -15,14 +15,14 @@ "ndarray":[["impl<'a> IntoIterator for &'a IxDynImpl"],["impl<'a, S, D> IntoIterator for &'a mut ArrayBase<S, D>where\n D: Dimension,\n S: DataMut,"],["impl<'a, A, D> IntoIterator for Windows<'a, A, D>where\n D: Dimension,\n A: 'a,"],["impl<A, D> IntoIterator for ArcArray<A, D>where\n D: Dimension,\n A: Clone,"],["impl<A, D> IntoIterator for CowArray<'_, A, D>where\n D: Dimension,\n A: Clone,"],["impl<'a, S, D> IntoIterator for &'a ArrayBase<S, D>where\n D: Dimension,\n S: Data,"],["impl<'a, A, D> IntoIterator for LanesMut<'a, A, D>where\n D: Dimension,"],["impl<'a, A, D> IntoIterator for ExactChunks<'a, A, D>where\n D: Dimension,\n A: 'a,"],["impl<'a, A, D> IntoIterator for ArrayViewMut<'a, A, D>where\n D: Dimension,"],["impl<'a, A, D> IntoIterator for ExactChunksMut<'a, A, D>where\n D: Dimension,\n A: 'a,"],["impl<D> IntoIterator for Indices<D>where\n D: Dimension,"],["impl<'a, A, D> IntoIterator for ArrayView<'a, A, D>where\n D: Dimension,"],["impl<A, D> IntoIterator for Array<A, D>where\n D: Dimension,"],["impl<'a, A, D> IntoIterator for Lanes<'a, A, D>where\n D: Dimension,"]], "phf":[["impl<'a, K, V> IntoIterator for &'a Map<K, V>"],["impl<'a, T> IntoIterator for &'a OrderedSet<T>"],["impl<'a, T> IntoIterator for &'a Set<T>"],["impl<'a, K, V> IntoIterator for &'a OrderedMap<K, V>"]], "planus":[["impl<'buf, T: VectorRead<'buf>> IntoIterator for Vector<'buf, T>"]], -"polars_core":[["impl<'a, T> IntoIterator for &'a ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<'a> IntoIterator for &'a ListChunked"],["impl<'a> IntoIterator for &'a StructChunked"],["impl<'a> IntoIterator for &'a BinaryChunked"],["impl<'a> IntoIterator for &'a Utf8Chunked"],["impl<'a> IntoIterator for &'a GroupsIdx"],["impl IntoIterator for GroupsIdx"],["impl IntoIterator for Schema"],["impl<'a> IntoIterator for &'a BooleanChunked"]], +"polars_core":[["impl<'a> IntoIterator for &'a ListChunked"],["impl IntoIterator for Schema"],["impl<'a, T> IntoIterator for &'a ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<'a> IntoIterator for &'a StructChunked"],["impl<'a> IntoIterator for &'a GroupsIdx"],["impl<'a> IntoIterator for &'a BooleanChunked"],["impl IntoIterator for GroupsIdx"],["impl<'a> IntoIterator for &'a BinaryChunked"],["impl<'a> IntoIterator for &'a Utf8Chunked"]], "polars_plan":[["impl<'a> IntoIterator for &'a Expr"]], "proc_macro2":[["impl IntoIterator for TokenStream"]], "pyo3":[["impl<'a> IntoIterator for &'a PyList"],["impl<'a> IntoIterator for &'a PyTuple"],["impl<'a> IntoIterator for &'a PyDict"],["impl<'a> IntoIterator for &'a PySet"],["impl<'a> IntoIterator for &'a PyFrozenSet"]], "rand":[["impl IntoIterator for IndexVec"]], "regex":[["impl IntoIterator for SetMatches"],["impl<'a> IntoIterator for &'a SetMatches"],["impl<'a> IntoIterator for &'a SetMatches"],["impl IntoIterator for SetMatches"]], "regex_syntax":[["impl<'a> IntoIterator for &'a Utf8Sequence"]], -"serde_json":[["impl<'a> IntoIterator for &'a Map<String, Value>"],["impl<'a> IntoIterator for &'a mut Map<String, Value>"],["impl IntoIterator for Map<String, Value>"]], +"serde_json":[["impl<'a> IntoIterator for &'a mut Map<String, Value>"],["impl<'a> IntoIterator for &'a Map<String, Value>"],["impl IntoIterator for Map<String, Value>"]], "signal_hook":[["impl<'a, E: Exfiltrator> IntoIterator for &'a mut SignalsInfo<E>"]], "slab":[["impl<'a, T> IntoIterator for &'a mut Slab<T>"],["impl<T> IntoIterator for Slab<T>"],["impl<'a, T> IntoIterator for &'a Slab<T>"]], "smallvec":[["impl<'a, A: Array> IntoIterator for &'a mut SmallVec<A>"],["impl<A: Array> IntoIterator for SmallVec<A>"],["impl<'a, A: Array> IntoIterator for &'a SmallVec<A>"]], diff --git a/implementors/core/iter/traits/double_ended/trait.DoubleEndedIterator.js b/implementors/core/iter/traits/double_ended/trait.DoubleEndedIterator.js index 4578a72179b6..0e3c36394263 100644 --- a/implementors/core/iter/traits/double_ended/trait.DoubleEndedIterator.js +++ b/implementors/core/iter/traits/double_ended/trait.DoubleEndedIterator.js @@ -1,6 +1,6 @@ (function() {var implementors = { "allocator_api2":[["impl<I: Iterator, A: Allocator> DoubleEndedIterator for Splice<'_, I, A>"],["impl<T, A: Allocator> DoubleEndedIterator for Drain<'_, T, A>"],["impl<T, A: Allocator> DoubleEndedIterator for IntoIter<T, A>"],["impl<I: DoubleEndedIterator + ?Sized, A: Allocator> DoubleEndedIterator for Box<I, A>"]], -"arrow2":[["impl<T, I, V> DoubleEndedIterator for ZipValidityIter<T, I, V>where\n I: DoubleEndedIterator<Item = T>,\n V: DoubleEndedIterator<Item = bool>,"],["impl<'a> DoubleEndedIterator for BitmapIter<'a>"],["impl DoubleEndedIterator for IntoIter"],["impl<T, I, V> DoubleEndedIterator for ZipValidity<T, I, V>where\n I: DoubleEndedIterator<Item = T>,\n V: DoubleEndedIterator<Item = bool>,"],["impl<'a, A: ArrayAccessor<'a>> DoubleEndedIterator for ArrayValuesIter<'a, A>"]], +"arrow2":[["impl<T, I, V> DoubleEndedIterator for ZipValidityIter<T, I, V>where\n I: DoubleEndedIterator<Item = T>,\n V: DoubleEndedIterator<Item = bool>,"],["impl DoubleEndedIterator for IntoIter"],["impl<'a, A: ArrayAccessor<'a>> DoubleEndedIterator for ArrayValuesIter<'a, A>"],["impl<T, I, V> DoubleEndedIterator for ZipValidity<T, I, V>where\n I: DoubleEndedIterator<Item = T>,\n V: DoubleEndedIterator<Item = bool>,"],["impl<'a> DoubleEndedIterator for BitmapIter<'a>"]], "either":[["impl<L, R> DoubleEndedIterator for Either<L, R>where\n L: DoubleEndedIterator,\n R: DoubleEndedIterator<Item = L::Item>,"]], "http":[["impl<'a, T: 'a> DoubleEndedIterator for ValueIterMut<'a, T>"],["impl<'a, T: 'a> DoubleEndedIterator for ValueIter<'a, T>"]], "indexmap":[["impl<K, V> DoubleEndedIterator for ValuesMut<'_, K, V>"],["impl<T> DoubleEndedIterator for IntoIter<T>"],["impl<T, S> DoubleEndedIterator for Difference<'_, T, S>where\n T: Eq + Hash,\n S: BuildHasher,"],["impl<K, V> DoubleEndedIterator for Iter<'_, K, V>"],["impl<K, V> DoubleEndedIterator for IntoIter<K, V>"],["impl<K, V> DoubleEndedIterator for IntoKeys<K, V>"],["impl<T> DoubleEndedIterator for Iter<'_, T>"],["impl<T> DoubleEndedIterator for Drain<'_, T>"],["impl<K, V> DoubleEndedIterator for Drain<'_, K, V>"],["impl<T, S> DoubleEndedIterator for Union<'_, T, S>where\n T: Eq + Hash,\n S: BuildHasher,"],["impl<K, V> DoubleEndedIterator for IterMut<'_, K, V>"],["impl<T, S> DoubleEndedIterator for Intersection<'_, T, S>where\n T: Eq + Hash,\n S: BuildHasher,"],["impl<T, S1, S2> DoubleEndedIterator for SymmetricDifference<'_, T, S1, S2>where\n T: Eq + Hash,\n S1: BuildHasher,\n S2: BuildHasher,"],["impl<K, V> DoubleEndedIterator for Keys<'_, K, V>"],["impl<K, V> DoubleEndedIterator for IntoValues<K, V>"],["impl<K, V> DoubleEndedIterator for Values<'_, K, V>"]], @@ -10,10 +10,10 @@ "ndarray":[["impl<'a, A, D> DoubleEndedIterator for AxisChunksIterMut<'a, A, D>where\n D: Dimension,"],["impl<'a, A, D> DoubleEndedIterator for AxisChunksIter<'a, A, D>where\n D: Dimension,"],["impl<'a, A, D> DoubleEndedIterator for AxisIter<'a, A, D>where\n D: Dimension,"],["impl<'a, D> DoubleEndedIterator for Axes<'a, D>where\n D: Dimension,"],["impl<'a, A> DoubleEndedIterator for Iter<'a, A, Ix1>"],["impl<'a, A, D> DoubleEndedIterator for AxisIterMut<'a, A, D>where\n D: Dimension,"],["impl<'a, A> DoubleEndedIterator for IterMut<'a, A, Ix1>"]], "phf":[["impl<'a, T> DoubleEndedIterator for Iter<'a, T>"],["impl<'a, K, V> DoubleEndedIterator for Values<'a, K, V>"],["impl<'a, K, V> DoubleEndedIterator for Entries<'a, K, V>"],["impl<'a, K, V> DoubleEndedIterator for Entries<'a, K, V>"],["impl<'a, K, V> DoubleEndedIterator for Keys<'a, K, V>"],["impl<'a, K, V> DoubleEndedIterator for Values<'a, K, V>"],["impl<'a, T> DoubleEndedIterator for Iter<'a, T>"],["impl<'a, K, V> DoubleEndedIterator for Keys<'a, K, V>"]], "polars_arrow":[["impl<I, J> DoubleEndedIterator for TrustMyLength<I, J>where\n I: Iterator<Item = J> + DoubleEndedIterator,"]], -"polars_core":[["impl<'a> DoubleEndedIterator for BinaryIterNoNull<'a>"],["impl<'a> DoubleEndedIterator for Utf8IterNoNull<'a>"],["impl<'a> DoubleEndedIterator for BoolIterNoNull<'a>"],["impl<'a> DoubleEndedIterator for ListIterNoNull<'a>"],["impl<I> DoubleEndedIterator for SomeIterator<I>where\n I: DoubleEndedIterator,"]], +"polars_core":[["impl<'a> DoubleEndedIterator for Utf8IterNoNull<'a>"],["impl<'a> DoubleEndedIterator for ListIterNoNull<'a>"],["impl<'a> DoubleEndedIterator for BoolIterNoNull<'a>"],["impl<'a> DoubleEndedIterator for BinaryIterNoNull<'a>"],["impl<I> DoubleEndedIterator for SomeIterator<I>where\n I: DoubleEndedIterator,"]], "regex":[["impl<'a> DoubleEndedIterator for SetMatchesIter<'a>"],["impl DoubleEndedIterator for SetMatchesIntoIter"],["impl<'a> DoubleEndedIterator for SetMatchesIter<'a>"],["impl DoubleEndedIterator for SetMatchesIntoIter"]], "regex_automata":[["impl<'a> DoubleEndedIterator for PatternSetIter<'a>"]], -"serde_json":[["impl<'a> DoubleEndedIterator for IterMut<'a>"],["impl<'a> DoubleEndedIterator for ValuesMut<'a>"],["impl<'a> DoubleEndedIterator for Iter<'a>"],["impl DoubleEndedIterator for IntoIter"],["impl<'a> DoubleEndedIterator for Values<'a>"],["impl<'a> DoubleEndedIterator for Keys<'a>"]], +"serde_json":[["impl DoubleEndedIterator for IntoIter"],["impl<'a> DoubleEndedIterator for IterMut<'a>"],["impl<'a> DoubleEndedIterator for Keys<'a>"],["impl<'a> DoubleEndedIterator for Iter<'a>"],["impl<'a> DoubleEndedIterator for Values<'a>"],["impl<'a> DoubleEndedIterator for ValuesMut<'a>"]], "slab":[["impl<T> DoubleEndedIterator for Iter<'_, T>"],["impl<T> DoubleEndedIterator for IterMut<'_, T>"],["impl<T> DoubleEndedIterator for Drain<'_, T>"],["impl<T> DoubleEndedIterator for IntoIter<T>"]], "smallvec":[["impl<'a, T: 'a + Array> DoubleEndedIterator for Drain<'a, T>"],["impl<A: Array> DoubleEndedIterator for IntoIter<A>"]], "smartstring":[["impl<'a, Mode: SmartStringMode> DoubleEndedIterator for Drain<'a, Mode>"]], diff --git a/implementors/core/iter/traits/exact_size/trait.ExactSizeIterator.js b/implementors/core/iter/traits/exact_size/trait.ExactSizeIterator.js index 1defefee006a..075bc6652c2e 100644 --- a/implementors/core/iter/traits/exact_size/trait.ExactSizeIterator.js +++ b/implementors/core/iter/traits/exact_size/trait.ExactSizeIterator.js @@ -1,10 +1,10 @@ (function() {var implementors = { "allocator_api2":[["impl<I: Iterator, A: Allocator> ExactSizeIterator for Splice<'_, I, A>"],["impl<I: ExactSizeIterator + ?Sized, A: Allocator> ExactSizeIterator for Box<I, A>"],["impl<T, A: Allocator> ExactSizeIterator for Drain<'_, T, A>"],["impl<T, A: Allocator> ExactSizeIterator for IntoIter<T, A>"]], -"arrow2":[["impl<T, I, V> ExactSizeIterator for ZipValidityIter<T, I, V>where\n I: ExactSizeIterator<Item = T>,\n V: ExactSizeIterator<Item = bool>,"],["impl ExactSizeIterator for BitmapIter<'_>"],["impl<'a, A: ArrayAccessor<'a>> ExactSizeIterator for ArrayValuesIter<'a, A>"],["impl<T: BitChunk> ExactSizeIterator for BitChunks<'_, T>"],["impl<T, I, V> ExactSizeIterator for ZipValidity<T, I, V>where\n I: ExactSizeIterator<Item = T>,\n V: ExactSizeIterator<Item = bool>,"]], +"arrow2":[["impl<'a, A: ArrayAccessor<'a>> ExactSizeIterator for ArrayValuesIter<'a, A>"],["impl ExactSizeIterator for BitmapIter<'_>"],["impl<T, I, V> ExactSizeIterator for ZipValidity<T, I, V>where\n I: ExactSizeIterator<Item = T>,\n V: ExactSizeIterator<Item = bool>,"],["impl<T, I, V> ExactSizeIterator for ZipValidityIter<T, I, V>where\n I: ExactSizeIterator<Item = T>,\n V: ExactSizeIterator<Item = bool>,"],["impl<T: BitChunk> ExactSizeIterator for BitChunks<'_, T>"]], "bytes":[["impl<T: Buf> ExactSizeIterator for IntoIter<T>"]], "either":[["impl<L, R> ExactSizeIterator for Either<L, R>where\n L: ExactSizeIterator,\n R: ExactSizeIterator<Item = L::Item>,"]], "futures_util":[["impl<St: Stream + Unpin> ExactSizeIterator for Iter<'_, St>"],["impl<St: Stream + Unpin> ExactSizeIterator for IterMut<'_, St>"],["impl<Fut: Unpin> ExactSizeIterator for IntoIter<Fut>"],["impl<Fut: Unpin> ExactSizeIterator for Iter<'_, Fut>"],["impl<St: Stream + Unpin> ExactSizeIterator for IntoIter<St>"],["impl<Fut> ExactSizeIterator for IterPinMut<'_, Fut>"],["impl<Fut: Unpin> ExactSizeIterator for IterMut<'_, Fut>"],["impl<Fut> ExactSizeIterator for IterPinRef<'_, Fut>"]], -"halfbrown":[["impl<'a, K, V> ExactSizeIterator for Iter<'a, K, V>"],["impl<'a, K, V> ExactSizeIterator for IterMut<'a, K, V>"],["impl<K, V, const N: usize> ExactSizeIterator for IntoIter<K, V, N>"]], +"halfbrown":[["impl<'a, K, V> ExactSizeIterator for IterMut<'a, K, V>"],["impl<K, V, const N: usize> ExactSizeIterator for IntoIter<K, V, N>"],["impl<'a, K, V> ExactSizeIterator for Iter<'a, K, V>"]], "hashbrown":[["impl<K, V, A: Allocator + Clone> ExactSizeIterator for Drain<'_, K, V, A>"],["impl<T> ExactSizeIterator for RawIter<T>"],["impl<'a, K> ExactSizeIterator for Iter<'a, K>"],["impl<K, V> ExactSizeIterator for ValuesMut<'_, K, V>"],["impl<K, V> ExactSizeIterator for Iter<'_, K, V>"],["impl<K, V> ExactSizeIterator for IterMut<'_, K, V>"],["impl<T, A: Allocator + Clone> ExactSizeIterator for RawIntoIter<T, A>"],["impl<K, V, A: Allocator + Clone> ExactSizeIterator for IntoValues<K, V, A>"],["impl<K, V> ExactSizeIterator for Values<'_, K, V>"],["impl<K, A: Allocator + Clone> ExactSizeIterator for Drain<'_, K, A>"],["impl<K, V> ExactSizeIterator for Keys<'_, K, V>"],["impl<K, A: Allocator + Clone> ExactSizeIterator for IntoIter<K, A>"],["impl<K, V, A: Allocator + Clone> ExactSizeIterator for IntoIter<K, V, A>"],["impl<T, A: Allocator + Clone> ExactSizeIterator for RawDrain<'_, T, A>"],["impl<K, V, A: Allocator + Clone> ExactSizeIterator for IntoKeys<K, V, A>"]], "http":[["impl<'a, T> ExactSizeIterator for Keys<'a, T>"]], "indexmap":[["impl<K, V> ExactSizeIterator for IterMut<'_, K, V>"],["impl<K, V> ExactSizeIterator for Drain<'_, K, V>"],["impl<K, V> ExactSizeIterator for ValuesMut<'_, K, V>"],["impl<T> ExactSizeIterator for IntoIter<T>"],["impl<K, V> ExactSizeIterator for IntoKeys<K, V>"],["impl<K, V> ExactSizeIterator for Keys<'_, K, V>"],["impl<K, V> ExactSizeIterator for Iter<'_, K, V>"],["impl<T> ExactSizeIterator for Iter<'_, T>"],["impl<K, V> ExactSizeIterator for Values<'_, K, V>"],["impl<K, V> ExactSizeIterator for IntoIter<K, V>"],["impl<K, V> ExactSizeIterator for IntoValues<K, V>"],["impl<T> ExactSizeIterator for Drain<'_, T>"]], @@ -13,12 +13,12 @@ "parquet2":[["impl<'a> ExactSizeIterator for HybridRleDecoder<'a>"]], "phf":[["impl<'a, K, V> ExactSizeIterator for Keys<'a, K, V>"],["impl<'a, K, V> ExactSizeIterator for Values<'a, K, V>"],["impl<'a, K, V> ExactSizeIterator for Values<'a, K, V>"],["impl<'a, K, V> ExactSizeIterator for Entries<'a, K, V>"],["impl<'a, K, V> ExactSizeIterator for Keys<'a, K, V>"],["impl<'a, K, V> ExactSizeIterator for Entries<'a, K, V>"],["impl<'a, T> ExactSizeIterator for Iter<'a, T>"],["impl<'a, T> ExactSizeIterator for Iter<'a, T>"]], "polars_arrow":[["impl<I, J> ExactSizeIterator for TrustMyLength<I, J>where\n I: Iterator<Item = J>,"]], -"polars_core":[["impl<'a> ExactSizeIterator for BinaryIterNoNull<'a>"],["impl<'a> ExactSizeIterator for Utf8IterNoNull<'a>"],["impl<'a> ExactSizeIterator for ListIterNoNull<'a>"],["impl<'a> ExactSizeIterator for BoolIterNoNull<'a>"],["impl ExactSizeIterator for SeriesIter<'_>"],["impl<I> ExactSizeIterator for SomeIterator<I>where\n I: ExactSizeIterator,"]], +"polars_core":[["impl<'a> ExactSizeIterator for BoolIterNoNull<'a>"],["impl<'a> ExactSizeIterator for ListIterNoNull<'a>"],["impl<'a> ExactSizeIterator for Utf8IterNoNull<'a>"],["impl<I> ExactSizeIterator for SomeIterator<I>where\n I: ExactSizeIterator,"],["impl ExactSizeIterator for SeriesIter<'_>"],["impl<'a> ExactSizeIterator for BinaryIterNoNull<'a>"]], "pyo3":[["impl<'py> ExactSizeIterator for PyFrozenSetIterator<'py>"],["impl<'py> ExactSizeIterator for PyDictIterator<'py>"],["impl<'py> ExactSizeIterator for PySetIterator<'py>"]], "rand":[["impl ExactSizeIterator for IndexVecIntoIter"],["impl<'a, S: Index<usize, Output = T> + ?Sized + 'a, T: 'a> ExactSizeIterator for SliceChooseIter<'a, S, T>"],["impl<'a> ExactSizeIterator for IndexVecIter<'a>"]], "regex":[["impl<'c, 'h> ExactSizeIterator for SubCaptureMatches<'c, 'h>"],["impl<'r> ExactSizeIterator for CaptureNames<'r>"],["impl<'r> ExactSizeIterator for CaptureNames<'r>"],["impl<'c, 'h> ExactSizeIterator for SubCaptureMatches<'c, 'h>"]], "regex_automata":[["impl<'a> ExactSizeIterator for GroupInfoPatternNames<'a>"],["impl<'a> ExactSizeIterator for CapturesPatternIter<'a>"]], -"serde_json":[["impl ExactSizeIterator for IntoIter"],["impl<'a> ExactSizeIterator for Values<'a>"],["impl<'a> ExactSizeIterator for Keys<'a>"],["impl<'a> ExactSizeIterator for Iter<'a>"],["impl<'a> ExactSizeIterator for ValuesMut<'a>"],["impl<'a> ExactSizeIterator for IterMut<'a>"]], +"serde_json":[["impl ExactSizeIterator for IntoIter"],["impl<'a> ExactSizeIterator for Iter<'a>"],["impl<'a> ExactSizeIterator for Keys<'a>"],["impl<'a> ExactSizeIterator for IterMut<'a>"],["impl<'a> ExactSizeIterator for Values<'a>"],["impl<'a> ExactSizeIterator for ValuesMut<'a>"]], "slab":[["impl<T> ExactSizeIterator for Drain<'_, T>"],["impl<T> ExactSizeIterator for IterMut<'_, T>"],["impl<T> ExactSizeIterator for Iter<'_, T>"],["impl<T> ExactSizeIterator for IntoIter<T>"]], "smallvec":[["impl<'a, T: Array> ExactSizeIterator for Drain<'a, T>"],["impl<A: Array> ExactSizeIterator for IntoIter<A>"]], "tinyvec":[["impl<'a, T: 'a + Default> ExactSizeIterator for ArrayVecDrain<'a, T>"],["impl<'p, A, I> ExactSizeIterator for ArrayVecSplice<'p, A, I>where\n A: Array,\n I: Iterator<Item = A::Item>,"],["impl<'p, A, I> ExactSizeIterator for TinyVecSplice<'p, A, I>where\n A: Array,\n I: Iterator<Item = A::Item>,"]] diff --git a/implementors/core/iter/traits/iterator/trait.Iterator.js b/implementors/core/iter/traits/iterator/trait.Iterator.js index f498cc69de6f..67086669e1cb 100644 --- a/implementors/core/iter/traits/iterator/trait.Iterator.js +++ b/implementors/core/iter/traits/iterator/trait.Iterator.js @@ -1,7 +1,7 @@ (function() {var implementors = { "aho_corasick":[["impl<'a, 'h, A: Automaton> Iterator for FindOverlappingIter<'a, 'h, A>"],["impl<'a, 'h> Iterator for FindIter<'a, 'h>"],["impl<'a, 'h> Iterator for FindOverlappingIter<'a, 'h>"],["impl<'a, A: Automaton, R: Read> Iterator for StreamFindIter<'a, A, R>"],["impl<'s, 'h> Iterator for FindIter<'s, 'h>"],["impl<'a, R: Read> Iterator for StreamFindIter<'a, R>"],["impl<'a, 'h, A: Automaton> Iterator for FindIter<'a, 'h, A>"]], "allocator_api2":[["impl<T, A: Allocator> Iterator for IntoIter<T, A>"],["impl<I: Iterator, A: Allocator> Iterator for Splice<'_, I, A>"],["impl<I: Iterator + ?Sized, A: Allocator> Iterator for Box<I, A>"],["impl<T, A: Allocator> Iterator for Drain<'_, T, A>"]], -"arrow2":[["impl<R: Read + Seek> Iterator for FileReader<R>"],["impl<'a> Iterator for BitmapIter<'a>"],["impl Iterator for IntoIter"],["impl<T: BitChunk> Iterator for BitChunkIter<T>"],["impl<'a, T: BitChunk> Iterator for BitChunksExactMut<'a, T>"],["impl<'a> Iterator for StructIterator<'a>"],["impl<R: Read + Seek> Iterator for FileReader<R>"],["impl<I: Index> Iterator for IndexRange<I>"],["impl Iterator for RowGroupDeserializer"],["impl<R: Read> Iterator for StreamReader<R>"],["impl<'a> Iterator for SlicesIterator<'a>"],["impl<'a, A: ArrayAccessor<'a>> Iterator for ArrayValuesIter<'a, A>"],["impl<T: BitChunk> Iterator for BitChunkOnes<T>"],["impl<T, I, V> Iterator for ZipValidityIter<T, I, V>where\n I: Iterator<Item = T>,\n V: Iterator<Item = bool>,"],["impl<T: BitChunk> Iterator for BitChunks<'_, T>"],["impl<T, I, V> Iterator for ZipValidity<T, I, V>where\n I: Iterator<Item = T>,\n V: Iterator<Item = bool>,"],["impl<T: BitChunk> Iterator for BitChunksExact<'_, T>"],["impl<R: Read + Seek> Iterator for RowGroupReader<R>"],["impl<A: AsRef<dyn Array> + 'static + Send + Sync, I: Iterator<Item = Result<Chunk<A>>>> Iterator for RowGroupIterator<A, I>"],["impl<W, I> Iterator for FileWriter<W, I>where\n W: Write,\n I: FallibleStreamingIterator<Item = [u8], Error = Error>,"]], +"arrow2":[["impl<R: Read + Seek> Iterator for FileReader<R>"],["impl<'a> Iterator for StructIterator<'a>"],["impl<A: AsRef<dyn Array> + 'static + Send + Sync, I: Iterator<Item = Result<Chunk<A>>>> Iterator for RowGroupIterator<A, I>"],["impl<R: Read> Iterator for StreamReader<R>"],["impl<'a, A: ArrayAccessor<'a>> Iterator for ArrayValuesIter<'a, A>"],["impl Iterator for RowGroupDeserializer"],["impl<T, I, V> Iterator for ZipValidityIter<T, I, V>where\n I: Iterator<Item = T>,\n V: Iterator<Item = bool>,"],["impl<T, I, V> Iterator for ZipValidity<T, I, V>where\n I: Iterator<Item = T>,\n V: Iterator<Item = bool>,"],["impl<T: BitChunk> Iterator for BitChunksExact<'_, T>"],["impl<R: Read + Seek> Iterator for RowGroupReader<R>"],["impl<'a> Iterator for BitmapIter<'a>"],["impl Iterator for IntoIter"],["impl<'a> Iterator for SlicesIterator<'a>"],["impl<R: Read + Seek> Iterator for FileReader<R>"],["impl<T: BitChunk> Iterator for BitChunkIter<T>"],["impl<T: BitChunk> Iterator for BitChunkOnes<T>"],["impl<'a, T: BitChunk> Iterator for BitChunksExactMut<'a, T>"],["impl<W, I> Iterator for FileWriter<W, I>where\n W: Write,\n I: FallibleStreamingIterator<Item = [u8], Error = Error>,"],["impl<T: BitChunk> Iterator for BitChunks<'_, T>"],["impl<I: Index> Iterator for IndexRange<I>"]], "bytes":[["impl<T: Buf> Iterator for IntoIter<T>"]], "chrono":[["impl<'a> Iterator for StrftimeItems<'a>"]], "comfy_table":[["impl<'a> Iterator for ColumnCellIter<'a>"]], @@ -11,7 +11,7 @@ "futures_executor":[["impl<S: Stream + Unpin> Iterator for BlockingStream<S>"]], "futures_util":[["impl<'a, St: Stream + Unpin> Iterator for Iter<'a, St>"],["impl<'a, Fut> Iterator for IterPinRef<'a, Fut>"],["impl<'a, Fut: Unpin> Iterator for Iter<'a, Fut>"],["impl<'a, Fut: Unpin> Iterator for IterMut<'a, Fut>"],["impl<St: Stream + Unpin> Iterator for IntoIter<St>"],["impl<'a, St: Stream + Unpin> Iterator for IterMut<'a, St>"],["impl<'a, Fut> Iterator for IterPinMut<'a, Fut>"],["impl<Fut: Unpin> Iterator for IntoIter<Fut>"]], "glob":[["impl Iterator for Paths"]], -"halfbrown":[["impl<'a, K, V> Iterator for IterMut<'a, K, V>"],["impl<'a, K, V, const N: usize> Iterator for Drain<'a, K, V, N>"],["impl<'a, K, V> Iterator for Iter<'a, K, V>"],["impl<'a, K, V> Iterator for Keys<'a, K, V>"],["impl<'a, K, V> Iterator for ValuesMut<'a, K, V>"],["impl<'a, K, V> Iterator for Values<'a, K, V>"],["impl<K, V, const N: usize> Iterator for IntoIter<K, V, N>"]], +"halfbrown":[["impl<'a, K, V, const N: usize> Iterator for Drain<'a, K, V, N>"],["impl<'a, K, V> Iterator for ValuesMut<'a, K, V>"],["impl<'a, K, V> Iterator for Keys<'a, K, V>"],["impl<K, V, const N: usize> Iterator for IntoIter<K, V, N>"],["impl<'a, K, V> Iterator for Iter<'a, K, V>"],["impl<'a, K, V> Iterator for Values<'a, K, V>"],["impl<'a, K, V> Iterator for IterMut<'a, K, V>"]], "hashbrown":[["impl<'a, T, S, A> Iterator for Intersection<'a, T, S, A>where\n T: Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<K, V, A: Allocator + Clone> Iterator for IntoKeys<K, V, A>"],["impl<K, F, A: Allocator + Clone> Iterator for ExtractIf<'_, K, F, A>where\n F: FnMut(&K) -> bool,"],["impl<'a, K, V> Iterator for Iter<'a, K, V>"],["impl<T, A: Allocator + Clone> Iterator for RawIntoIter<T, A>"],["impl<'a, T, S, A> Iterator for Difference<'a, T, S, A>where\n T: Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<T, A: Allocator + Clone> Iterator for RawDrain<'_, T, A>"],["impl<'a, K, V> Iterator for Keys<'a, K, V>"],["impl<'a, T, S, A> Iterator for SymmetricDifference<'a, T, S, A>where\n T: Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<K, V, A: Allocator + Clone> Iterator for IntoValues<K, V, A>"],["impl<'a, K, V> Iterator for Values<'a, K, V>"],["impl<K, V, A: Allocator + Clone> Iterator for IntoIter<K, V, A>"],["impl<T> Iterator for RawIter<T>"],["impl<'a, K> Iterator for Iter<'a, K>"],["impl<'a, K, V> Iterator for ValuesMut<'a, K, V>"],["impl<'a, K, V> Iterator for IterMut<'a, K, V>"],["impl<K, A: Allocator + Clone> Iterator for Drain<'_, K, A>"],["impl<K, A: Allocator + Clone> Iterator for IntoIter<K, A>"],["impl<T> Iterator for RawIterHash<T>"],["impl<K, V, F, A> Iterator for ExtractIf<'_, K, V, F, A>where\n F: FnMut(&K, &mut V) -> bool,\n A: Allocator + Clone,"],["impl<'a, K, V, A: Allocator + Clone> Iterator for Drain<'a, K, V, A>"],["impl<'a, T, S, A> Iterator for Union<'a, T, S, A>where\n T: Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"]], "http":[["impl<T> Iterator for IntoIter<T>"],["impl<'a, T: 'a> Iterator for ValueIterMut<'a, T>"],["impl<'a, T> Iterator for Values<'a, T>"],["impl<'a, T> Iterator for Drain<'a, T>"],["impl<'a, T> Iterator for Iter<'a, T>"],["impl<'a, T> Iterator for ValueDrain<'a, T>"],["impl<'a, T> Iterator for ValuesMut<'a, T>"],["impl<'a, T> Iterator for Keys<'a, T>"],["impl<'a, T> Iterator for IterMut<'a, T>"],["impl<'a, T: 'a> Iterator for ValueIter<'a, T>"]], "hyper":[["impl Iterator for GaiAddrs"]], @@ -28,8 +28,8 @@ "phf":[["impl<'a, K, V> Iterator for Keys<'a, K, V>"],["impl<'a, K, V> Iterator for Keys<'a, K, V>"],["impl<'a, K, V> Iterator for Values<'a, K, V>"],["impl<'a, T> Iterator for Iter<'a, T>"],["impl<'a, T> Iterator for Iter<'a, T>"],["impl<'a, K, V> Iterator for Entries<'a, K, V>"],["impl<'a, K, V> Iterator for Values<'a, K, V>"],["impl<'a, K, V> Iterator for Entries<'a, K, V>"]], "planus":[["impl<'buf, T: VectorRead<'buf>> Iterator for VectorIter<'buf, T>"]], "polars_arrow":[["impl<I, J> Iterator for TrustMyLength<I, J>where\n I: Iterator<Item = J>,"]], -"polars_core":[["impl<'a> Iterator for Utf8IterNoNull<'a>"],["impl<'a> Iterator for BoolIterNoNull<'a>"],["impl<'a> Iterator for SeriesIter<'a>"],["impl<'a> Iterator for StructIter<'a>"],["impl<'a> Iterator for GroupsProxyIter<'a>"],["impl<I> Iterator for SomeIterator<I>where\n I: Iterator,"],["impl Iterator for PhysRecordBatchIter<'_>"],["impl<'a> Iterator for ListIterNoNull<'a>"],["impl<'a> Iterator for BinaryIterNoNull<'a>"],["impl<'a> Iterator for RecordBatchIter<'a>"]], -"polars_plan":[["impl<'a> Iterator for AlpIter<'a>"],["impl<'a> Iterator for ExprIter<'a>"],["impl<'a> Iterator for AExprIter<'a>"]], +"polars_core":[["impl Iterator for PhysRecordBatchIter<'_>"],["impl<'a> Iterator for Utf8IterNoNull<'a>"],["impl<'a> Iterator for BoolIterNoNull<'a>"],["impl<I> Iterator for SomeIterator<I>where\n I: Iterator,"],["impl<'a> Iterator for SeriesIter<'a>"],["impl<'a> Iterator for ListIterNoNull<'a>"],["impl<'a> Iterator for GroupsProxyIter<'a>"],["impl<'a> Iterator for StructIter<'a>"],["impl<'a> Iterator for RecordBatchIter<'a>"],["impl<'a> Iterator for BinaryIterNoNull<'a>"]], +"polars_plan":[["impl<'a> Iterator for AExprIter<'a>"],["impl<'a> Iterator for ExprIter<'a>"],["impl<'a> Iterator for AlpIter<'a>"]], "polars_time":[["impl<'a> Iterator for BoundsIter<'a>"]], "proc_macro2":[["impl Iterator for IntoIter"]], "pyo3":[["impl<'p> Iterator for &'p PyIterator"],["impl<'py> Iterator for PyFrozenSetIterator<'py>"],["impl<'py> Iterator for PyDictIterator<'py>"],["impl<'py> Iterator for PySetIterator<'py>"]], @@ -38,7 +38,7 @@ "regex":[["impl<'r, 'h> Iterator for CaptureMatches<'r, 'h>"],["impl<'r, 'h> Iterator for Matches<'r, 'h>"],["impl Iterator for SetMatchesIntoIter"],["impl Iterator for SetMatchesIntoIter"],["impl<'r> Iterator for CaptureNames<'r>"],["impl<'c, 'h> Iterator for SubCaptureMatches<'c, 'h>"],["impl<'a> Iterator for SetMatchesIter<'a>"],["impl<'r, 'h> Iterator for Matches<'r, 'h>"],["impl<'r, 'h> Iterator for CaptureMatches<'r, 'h>"],["impl<'c, 'h> Iterator for SubCaptureMatches<'c, 'h>"],["impl<'r, 'h> Iterator for SplitN<'r, 'h>"],["impl<'r, 'h> Iterator for SplitN<'r, 'h>"],["impl<'a> Iterator for SetMatchesIter<'a>"],["impl<'r, 'h> Iterator for Split<'r, 'h>"],["impl<'r, 'h> Iterator for Split<'r, 'h>"],["impl<'r> Iterator for CaptureNames<'r>"]], "regex_automata":[["impl<'a> Iterator for PatternIter<'a>"],["impl<'a> Iterator for ByteClassIter<'a>"],["impl<'a> Iterator for GroupInfoPatternNames<'a>"],["impl<'h, F> Iterator for TryHalfMatchesIter<'h, F>where\n F: FnMut(&Input<'_>) -> Result<Option<HalfMatch>, MatchError>,"],["impl<'r, 'c, 'h> Iterator for FindMatches<'r, 'c, 'h>"],["impl<'r, 'c, 'h> Iterator for CapturesMatches<'r, 'c, 'h>"],["impl<'h, F> Iterator for CapturesIter<'h, F>where\n F: FnMut(&Input<'_>, &mut Captures) -> Result<(), MatchError>,"],["impl<'a> Iterator for CapturesPatternIter<'a>"],["impl<'h, F> Iterator for HalfMatchesIter<'h, F>where\n F: FnMut(&Input<'_>) -> Result<Option<HalfMatch>, MatchError>,"],["impl<'a> Iterator for GroupInfoAllNames<'a>"],["impl<'r, 'h> Iterator for CapturesMatches<'r, 'h>"],["impl<'h, F> Iterator for TryMatchesIter<'h, F>where\n F: FnMut(&Input<'_>) -> Result<Option<Match>, MatchError>,"],["impl<'r, 'h> Iterator for Split<'r, 'h>"],["impl<'r, 'c, 'h> Iterator for TryFindMatches<'r, 'c, 'h>"],["impl<'a> Iterator for ByteClassElements<'a>"],["impl<'r, 'h> Iterator for FindMatches<'r, 'h>"],["impl<'r, 'c, 'h> Iterator for FindMatches<'r, 'c, 'h>"],["impl<'h, F> Iterator for MatchesIter<'h, F>where\n F: FnMut(&Input<'_>) -> Result<Option<Match>, MatchError>,"],["impl Iterator for LookSetIter"],["impl<'r, 'c, 'h> Iterator for TryCapturesMatches<'r, 'c, 'h>"],["impl<'r, 'h> Iterator for SplitN<'r, 'h>"],["impl<'a> Iterator for PatternSetIter<'a>"],["impl<'a> Iterator for ByteClassRepresentatives<'a>"],["impl<'h, F> Iterator for TryCapturesIter<'h, F>where\n F: FnMut(&Input<'_>, &mut Captures) -> Result<(), MatchError>,"]], "regex_syntax":[["impl Iterator for LookSetIter"],["impl<'a> Iterator for ClassUnicodeIter<'a>"],["impl<'a> Iterator for ClassBytesIter<'a>"],["impl Iterator for Utf8Sequences"]], -"serde_json":[["impl<'a> Iterator for ValuesMut<'a>"],["impl<'a> Iterator for Keys<'a>"],["impl<'a> Iterator for Values<'a>"],["impl<'de, R, T> Iterator for StreamDeserializer<'de, R, T>where\n R: Read<'de>,\n T: Deserialize<'de>,"],["impl<'a> Iterator for IterMut<'a>"],["impl<'a> Iterator for Iter<'a>"],["impl Iterator for IntoIter"]], +"serde_json":[["impl<'a> Iterator for IterMut<'a>"],["impl<'a> Iterator for Keys<'a>"],["impl Iterator for IntoIter"],["impl<'de, R, T> Iterator for StreamDeserializer<'de, R, T>where\n R: Read<'de>,\n T: Deserialize<'de>,"],["impl<'a> Iterator for Iter<'a>"],["impl<'a> Iterator for ValuesMut<'a>"],["impl<'a> Iterator for Values<'a>"]], "signal_hook":[["impl<'a, E: Exfiltrator> Iterator for Forever<'a, E>"],["impl<E: Exfiltrator> Iterator for Pending<E>"]], "slab":[["impl<'a, T> Iterator for IterMut<'a, T>"],["impl<T> Iterator for IntoIter<T>"],["impl<'a, T> Iterator for Iter<'a, T>"],["impl<T> Iterator for Drain<'_, T>"]], "smallvec":[["impl<A: Array> Iterator for IntoIter<A>"],["impl<'a, T: 'a + Array> Iterator for Drain<'a, T>"]], diff --git a/implementors/core/iter/traits/marker/trait.FusedIterator.js b/implementors/core/iter/traits/marker/trait.FusedIterator.js index 3d5c8ce0aaea..419189dbe58b 100644 --- a/implementors/core/iter/traits/marker/trait.FusedIterator.js +++ b/implementors/core/iter/traits/marker/trait.FusedIterator.js @@ -2,7 +2,7 @@ "allocator_api2":[["impl<T, A: Allocator> FusedIterator for Drain<'_, T, A>"],["impl<T, A: Allocator> FusedIterator for IntoIter<T, A>"],["impl<I: FusedIterator + ?Sized, A: Allocator> FusedIterator for Box<I, A>"]], "crossbeam_channel":[["impl<T> FusedIterator for IntoIter<T>"],["impl<T> FusedIterator for Iter<'_, T>"]], "either":[["impl<L, R> FusedIterator for Either<L, R>where\n L: FusedIterator,\n R: FusedIterator<Item = L::Item>,"]], -"halfbrown":[["impl<'a, K, V> FusedIterator for IterMut<'a, K, V>"],["impl<'a, K, V> FusedIterator for Iter<'a, K, V>"],["impl<K, V, const N: usize> FusedIterator for IntoIter<K, V, N>"]], +"halfbrown":[["impl<'a, K, V> FusedIterator for Iter<'a, K, V>"],["impl<'a, K, V> FusedIterator for IterMut<'a, K, V>"],["impl<K, V, const N: usize> FusedIterator for IntoIter<K, V, N>"]], "hashbrown":[["impl<K, V> FusedIterator for Keys<'_, K, V>"],["impl<K, V, A: Allocator + Clone> FusedIterator for IntoKeys<K, V, A>"],["impl<K> FusedIterator for Iter<'_, K>"],["impl<K, V> FusedIterator for Values<'_, K, V>"],["impl<K, A: Allocator + Clone> FusedIterator for Drain<'_, K, A>"],["impl<K, V, A: Allocator + Clone> FusedIterator for Drain<'_, K, V, A>"],["impl<T, S, A> FusedIterator for Intersection<'_, T, S, A>where\n T: Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<K, V> FusedIterator for ValuesMut<'_, K, V>"],["impl<K, A: Allocator + Clone> FusedIterator for IntoIter<K, A>"],["impl<K, V> FusedIterator for Iter<'_, K, V>"],["impl<K, V> FusedIterator for IterMut<'_, K, V>"],["impl<T, S, A> FusedIterator for Difference<'_, T, S, A>where\n T: Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<K, F, A: Allocator + Clone> FusedIterator for ExtractIf<'_, K, F, A>where\n F: FnMut(&K) -> bool,"],["impl<T> FusedIterator for RawIter<T>"],["impl<T, A: Allocator + Clone> FusedIterator for RawDrain<'_, T, A>"],["impl<K, V, A: Allocator + Clone> FusedIterator for IntoValues<K, V, A>"],["impl<T, A: Allocator + Clone> FusedIterator for RawIntoIter<T, A>"],["impl<T, S, A> FusedIterator for SymmetricDifference<'_, T, S, A>where\n T: Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<K, V, F> FusedIterator for ExtractIf<'_, K, V, F>where\n F: FnMut(&K, &mut V) -> bool,"],["impl<T, S, A> FusedIterator for Union<'_, T, S, A>where\n T: Eq + Hash,\n S: BuildHasher,\n A: Allocator + Clone,"],["impl<K, V, A: Allocator + Clone> FusedIterator for IntoIter<K, V, A>"]], "http":[["impl<'a, T> FusedIterator for Drain<'a, T>"],["impl<'a, T> FusedIterator for Iter<'a, T>"],["impl<'a, T> FusedIterator for ValueIterMut<'a, T>"],["impl<T> FusedIterator for IntoIter<T>"],["impl<'a, T> FusedIterator for ValuesMut<'a, T>"],["impl<'a, T> FusedIterator for ValueIter<'a, T>"],["impl<'a, T> FusedIterator for IterMut<'a, T>"],["impl<'a, T> FusedIterator for Keys<'a, T>"],["impl<'a, T> FusedIterator for ValueDrain<'a, T>"],["impl<'a, T> FusedIterator for Values<'a, T>"]], "indexmap":[["impl<T, S> FusedIterator for Intersection<'_, T, S>where\n T: Eq + Hash,\n S: BuildHasher,"],["impl<K, V> FusedIterator for Drain<'_, K, V>"],["impl<K, V> FusedIterator for Values<'_, K, V>"],["impl<K, V> FusedIterator for IterMut<'_, K, V>"],["impl<K, V> FusedIterator for IntoIter<K, V>"],["impl<K, V> FusedIterator for IntoValues<K, V>"],["impl<K, V> FusedIterator for IntoKeys<K, V>"],["impl<K, V> FusedIterator for Keys<'_, K, V>"],["impl<K, V> FusedIterator for ValuesMut<'_, K, V>"],["impl<T, S1, S2> FusedIterator for SymmetricDifference<'_, T, S1, S2>where\n T: Eq + Hash,\n S1: BuildHasher,\n S2: BuildHasher,"],["impl<T, S> FusedIterator for Union<'_, T, S>where\n T: Eq + Hash,\n S: BuildHasher,"],["impl<T> FusedIterator for IntoIter<T>"],["impl<T, S> FusedIterator for Difference<'_, T, S>where\n T: Eq + Hash,\n S: BuildHasher,"],["impl<T> FusedIterator for Iter<'_, T>"],["impl<T> FusedIterator for Drain<'_, T>"],["impl<K, V> FusedIterator for Iter<'_, K, V>"]], @@ -14,7 +14,7 @@ "regex":[["impl FusedIterator for SetMatchesIntoIter"],["impl<'r, 'h> FusedIterator for Matches<'r, 'h>"],["impl<'a> FusedIterator for SetMatchesIter<'a>"],["impl<'r, 'h> FusedIterator for CaptureMatches<'r, 'h>"],["impl<'r, 'h> FusedIterator for Split<'r, 'h>"],["impl<'r, 'h> FusedIterator for Matches<'r, 'h>"],["impl<'r> FusedIterator for CaptureNames<'r>"],["impl<'r, 'h> FusedIterator for SplitN<'r, 'h>"],["impl FusedIterator for SetMatchesIntoIter"],["impl<'c, 'h> FusedIterator for SubCaptureMatches<'c, 'h>"],["impl<'r, 'h> FusedIterator for Split<'r, 'h>"],["impl<'r, 'h> FusedIterator for CaptureMatches<'r, 'h>"],["impl<'c, 'h> FusedIterator for SubCaptureMatches<'c, 'h>"],["impl<'r> FusedIterator for CaptureNames<'r>"],["impl<'r, 'h> FusedIterator for SplitN<'r, 'h>"],["impl<'a> FusedIterator for SetMatchesIter<'a>"]], "regex_automata":[["impl<'r, 'h> FusedIterator for FindMatches<'r, 'h>"],["impl<'r, 'h> FusedIterator for Split<'r, 'h>"],["impl<'a> FusedIterator for GroupInfoPatternNames<'a>"],["impl<'a> FusedIterator for CapturesPatternIter<'a>"],["impl<'r, 'h> FusedIterator for CapturesMatches<'r, 'h>"],["impl<'r, 'h> FusedIterator for SplitN<'r, 'h>"]], "regex_syntax":[["impl FusedIterator for Utf8Sequences"]], -"serde_json":[["impl<'a> FusedIterator for Values<'a>"],["impl<'a> FusedIterator for Keys<'a>"],["impl<'de, R, T> FusedIterator for StreamDeserializer<'de, R, T>where\n R: Read<'de> + Fused,\n T: Deserialize<'de>,"],["impl<'a> FusedIterator for Iter<'a>"],["impl FusedIterator for IntoIter"],["impl<'a> FusedIterator for ValuesMut<'a>"],["impl<'a> FusedIterator for IterMut<'a>"]], +"serde_json":[["impl<'a> FusedIterator for Values<'a>"],["impl<'a> FusedIterator for Keys<'a>"],["impl<'a> FusedIterator for IterMut<'a>"],["impl<'a> FusedIterator for Iter<'a>"],["impl<'de, R, T> FusedIterator for StreamDeserializer<'de, R, T>where\n R: Read<'de> + Fused,\n T: Deserialize<'de>,"],["impl FusedIterator for IntoIter"],["impl<'a> FusedIterator for ValuesMut<'a>"]], "slab":[["impl<T> FusedIterator for Drain<'_, T>"],["impl<T> FusedIterator for IterMut<'_, T>"],["impl<T> FusedIterator for Iter<'_, T>"],["impl<T> FusedIterator for IntoIter<T>"]], "smallvec":[["impl<A: Array> FusedIterator for IntoIter<A>"],["impl<'a, T: Array> FusedIterator for Drain<'a, T>"]], "smartstring":[["impl<'a, Mode: SmartStringMode> FusedIterator for Drain<'a, Mode>"]], diff --git a/implementors/core/marker/trait.Copy.js b/implementors/core/marker/trait.Copy.js index 8524950b873f..cfe60e1c155e 100644 --- a/implementors/core/marker/trait.Copy.js +++ b/implementors/core/marker/trait.Copy.js @@ -3,17 +3,17 @@ "aho_corasick":[["impl Copy for StateID"],["impl Copy for Anchored"],["impl Copy for StartKind"],["impl Copy for Match"],["impl Copy for AhoCorasickKind"],["impl Copy for PatternID"],["impl Copy for MatchKind"],["impl Copy for MatchKind"],["impl Copy for Span"]], "alloc_stdlib":[["impl Copy for StandardAlloc"]], "allocator_api2":[["impl Copy for AllocError"],["impl Copy for Global"]], -"arrow2":[["impl Copy for InitNested"],["impl Copy for TimeUnit"],["impl Copy for i32x16"],["impl Copy for PrimitiveType"],["impl Copy for f32x16"],["impl Copy for WriteOptions"],["impl Copy for i128x8"],["impl Copy for UnionMode"],["impl Copy for f16x32"],["impl Copy for IntervalUnit"],["impl Copy for u32x16"],["impl Copy for days_msx8"],["impl Copy for u16x32"],["impl Copy for u64x8"],["impl Copy for i64x8"],["impl Copy for days_ms"],["impl Copy for PhysicalType"],["impl Copy for f64x8"],["impl Copy for u8x64"],["impl Copy for months_days_ns"],["impl Copy for months_days_nsx8"],["impl Copy for WriteOptions"],["impl Copy for i8x64"],["impl Copy for CastOptions"],["impl Copy for i256x8"],["impl Copy for i16x32"],["impl Copy for i256"],["impl Copy for Compression"],["impl Copy for IntegerType"],["impl Copy for f16"]], -"arrow_format":[["impl Copy for TimeUnit"],["impl<'a> Copy for TimestampRef<'a>"],["impl<'a> Copy for DictionaryEncodingRef<'a>"],["impl<'a> Copy for MessageHeaderRef<'a>"],["impl<'a> Copy for MapRef<'a>"],["impl Copy for IntervalUnit"],["impl<'a> Copy for SparseTensorIndexRef<'a>"],["impl<'a> Copy for BlockRef<'a>"],["impl<'a> Copy for FixedSizeBinaryRef<'a>"],["impl<'a> Copy for MessageRef<'a>"],["impl Copy for MetadataVersion"],["impl<'a> Copy for SparseTensorIndexCooRef<'a>"],["impl<'a> Copy for BinaryRef<'a>"],["impl<'a> Copy for TypeRef<'a>"],["impl<'a> Copy for TensorDimRef<'a>"],["impl<'a> Copy for RecordBatchRef<'a>"],["impl Copy for Feature"],["impl<'a> Copy for TimeRef<'a>"],["impl<'a> Copy for SparseMatrixIndexCsxRef<'a>"],["impl Copy for FieldNode"],["impl<'a> Copy for FieldRef<'a>"],["impl<'a> Copy for IntRef<'a>"],["impl<'a> Copy for UnionRef<'a>"],["impl Copy for Buffer"],["impl Copy for SparseMatrixCompressedAxis"],["impl<'a> Copy for FooterRef<'a>"],["impl<'a> Copy for LargeListRef<'a>"],["impl<'a> Copy for DateRef<'a>"],["impl<'a> Copy for Utf8Ref<'a>"],["impl Copy for Precision"],["impl<'a> Copy for NullRef<'a>"],["impl<'a> Copy for IntervalRef<'a>"],["impl<'a> Copy for TensorRef<'a>"],["impl<'a> Copy for DurationRef<'a>"],["impl<'a> Copy for FixedSizeListRef<'a>"],["impl<'a> Copy for BufferRef<'a>"],["impl<'a> Copy for BodyCompressionRef<'a>"],["impl<'a> Copy for DecimalRef<'a>"],["impl<'a> Copy for LargeUtf8Ref<'a>"],["impl Copy for Endianness"],["impl Copy for DateUnit"],["impl Copy for DictionaryKind"],["impl<'a> Copy for FieldNodeRef<'a>"],["impl<'a> Copy for DictionaryBatchRef<'a>"],["impl<'a> Copy for LargeBinaryRef<'a>"],["impl<'a> Copy for SparseTensorRef<'a>"],["impl<'a> Copy for BoolRef<'a>"],["impl Copy for Block"],["impl<'a> Copy for KeyValueRef<'a>"],["impl Copy for UnionMode"],["impl<'a> Copy for SchemaRef<'a>"],["impl<'a> Copy for FloatingPointRef<'a>"],["impl Copy for CompressionType"],["impl Copy for BodyCompressionMethod"],["impl<'a> Copy for StructRef<'a>"],["impl<'a> Copy for SparseTensorIndexCsfRef<'a>"],["impl<'a> Copy for ListRef<'a>"]], +"arrow2":[["impl Copy for u64x8"],["impl Copy for u8x64"],["impl Copy for f32x16"],["impl Copy for WriteOptions"],["impl Copy for days_msx8"],["impl Copy for IntegerType"],["impl Copy for days_ms"],["impl Copy for UnionMode"],["impl Copy for i32x16"],["impl Copy for f16x32"],["impl Copy for TimeUnit"],["impl Copy for i8x64"],["impl Copy for u32x16"],["impl Copy for WriteOptions"],["impl Copy for i16x32"],["impl Copy for i256"],["impl Copy for PhysicalType"],["impl Copy for Compression"],["impl Copy for i128x8"],["impl Copy for i64x8"],["impl Copy for IntervalUnit"],["impl Copy for u16x32"],["impl Copy for PrimitiveType"],["impl Copy for i256x8"],["impl Copy for f64x8"],["impl Copy for InitNested"],["impl Copy for months_days_ns"],["impl Copy for months_days_nsx8"],["impl Copy for CastOptions"],["impl Copy for f16"]], +"arrow_format":[["impl<'a> Copy for LargeUtf8Ref<'a>"],["impl<'a> Copy for SparseTensorIndexRef<'a>"],["impl Copy for Buffer"],["impl<'a> Copy for FloatingPointRef<'a>"],["impl Copy for BodyCompressionMethod"],["impl<'a> Copy for SparseTensorIndexCooRef<'a>"],["impl<'a> Copy for SparseMatrixIndexCsxRef<'a>"],["impl<'a> Copy for DateRef<'a>"],["impl<'a> Copy for DurationRef<'a>"],["impl<'a> Copy for TypeRef<'a>"],["impl<'a> Copy for StructRef<'a>"],["impl<'a> Copy for Utf8Ref<'a>"],["impl Copy for Feature"],["impl Copy for Endianness"],["impl<'a> Copy for BodyCompressionRef<'a>"],["impl<'a> Copy for BinaryRef<'a>"],["impl Copy for IntervalUnit"],["impl<'a> Copy for TensorRef<'a>"],["impl<'a> Copy for SparseTensorRef<'a>"],["impl<'a> Copy for BufferRef<'a>"],["impl<'a> Copy for BoolRef<'a>"],["impl Copy for Precision"],["impl<'a> Copy for SchemaRef<'a>"],["impl<'a> Copy for FieldNodeRef<'a>"],["impl<'a> Copy for TimeRef<'a>"],["impl<'a> Copy for KeyValueRef<'a>"],["impl Copy for Block"],["impl<'a> Copy for LargeListRef<'a>"],["impl Copy for DictionaryKind"],["impl<'a> Copy for FixedSizeBinaryRef<'a>"],["impl<'a> Copy for BlockRef<'a>"],["impl<'a> Copy for DictionaryBatchRef<'a>"],["impl<'a> Copy for IntRef<'a>"],["impl Copy for SparseMatrixCompressedAxis"],["impl<'a> Copy for LargeBinaryRef<'a>"],["impl<'a> Copy for FooterRef<'a>"],["impl Copy for DateUnit"],["impl<'a> Copy for MapRef<'a>"],["impl<'a> Copy for IntervalRef<'a>"],["impl<'a> Copy for DecimalRef<'a>"],["impl Copy for UnionMode"],["impl Copy for CompressionType"],["impl<'a> Copy for DictionaryEncodingRef<'a>"],["impl<'a> Copy for MessageHeaderRef<'a>"],["impl<'a> Copy for UnionRef<'a>"],["impl<'a> Copy for FieldRef<'a>"],["impl<'a> Copy for FixedSizeListRef<'a>"],["impl<'a> Copy for TensorDimRef<'a>"],["impl Copy for TimeUnit"],["impl<'a> Copy for MessageRef<'a>"],["impl<'a> Copy for RecordBatchRef<'a>"],["impl<'a> Copy for NullRef<'a>"],["impl<'a> Copy for SparseTensorIndexCsfRef<'a>"],["impl<'a> Copy for TimestampRef<'a>"],["impl<'a> Copy for ListRef<'a>"],["impl Copy for FieldNode"],["impl Copy for MetadataVersion"]], "atoi":[["impl Copy for Sign"]], -"avro_schema":[["impl Copy for LongLogical"],["impl Copy for Error"],["impl Copy for IntLogical"],["impl Copy for BytesLogical"],["impl Copy for StringLogical"],["impl Copy for Order"],["impl Copy for Compression"],["impl Copy for FixedLogical"]], +"avro_schema":[["impl Copy for StringLogical"],["impl Copy for Compression"],["impl Copy for BytesLogical"],["impl Copy for Error"],["impl Copy for Order"],["impl Copy for FixedLogical"],["impl Copy for IntLogical"],["impl Copy for LongLogical"]], "base64":[["impl Copy for GeneralPurposeConfig"],["impl Copy for DecodePaddingMode"]], "brotli":[["impl Copy for BucketPopIndex"],["impl<SliceType: SliceWrapper<u8> + Clone + Copy> Copy for PredictionModeContextMap<SliceType>"],["impl Copy for BroccoliState"],["impl Copy for IsFirst"],["impl Copy for SpeedAndMax"],["impl Copy for BlockTypeCodeCalculator"],["impl Copy for LiteralPredictionModeNibble"],["impl<AllocU8: Allocator<u8> + Copy, AllocU16: Allocator<u16> + Copy, AllocI32: Allocator<i32> + Copy, AllocU32: Allocator<u32> + Copy, AllocU64: Allocator<u64> + Copy, AllocCommand: Allocator<Command> + Copy, AllocFloatX: Allocator<floatX> + Copy, AllocV8: Allocator<v8> + Copy, AllocS16: Allocator<s16> + Copy, AllocPDF: Allocator<PDF> + Copy, AllocStaticCommand: Allocator<StaticCommand> + Copy, AllocHistogramLiteral: Allocator<HistogramLiteral> + Copy, AllocHistogramCommand: Allocator<HistogramCommand> + Copy, AllocHistogramDistance: Allocator<HistogramDistance> + Copy, AllocHistogramPair: Allocator<HistogramPair> + Copy, AllocContextType: Allocator<ContextType> + Copy, AllocHuffmanTree: Allocator<HuffmanTree> + Copy, AllocZopfliNode: Allocator<ZopfliNode> + Copy> Copy for CombiningAllocator<AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode>"],["impl Copy for DictWord"],["impl Copy for H9Opts"],["impl Copy for BrotliEncoderStreamState"],["impl Copy for StartPosQueue"],["impl Copy for Command"],["impl Copy for ZopfliNode"],["impl Copy for PosData"],["impl Copy for BroCatliResult"],["impl Copy for BrotliHasherParams"],["impl<'a> Copy for InputReference<'a>"],["impl<'a> Copy for InputPair<'a>"],["impl Copy for CopyCommand"],["impl Copy for PDF"],["impl Copy for BrotliEncoderOperation"],["impl Copy for CodeBlockState"],["impl Copy for HuffmanTree"],["impl Copy for DictCommand"],["impl Copy for LiteralBlockSwitch"],["impl Copy for BrotliEncoderParameter"],["impl Copy for BrotliEncoderMode"],["impl Copy for BrotliDistanceParams"],["impl<SliceType: SliceWrapper<u8> + Clone + Copy> Copy for FeatureFlagSliceType<SliceType>"],["impl Copy for SliceOffset"],["impl<SliceType: SliceWrapper<u8> + Clone + Copy> Copy for LiteralCommand<SliceType>"],["impl Copy for HistogramPair"],["impl Copy for RecoderState"],["impl Copy for BlockSwitch"],["impl Copy for ContextType"],["impl Copy for Union1"],["impl<SliceType: SliceWrapper<u8> + Clone + Copy> Copy for Command<SliceType>"]], "brotli_decompressor":[["impl Copy for BrotliDecoderErrorCode"],["impl Copy for HuffmanCode"]], "bytemuck":[["impl Copy for PodCastError"],["impl Copy for CheckedCastError"]], "chrono":[["impl<Tz: TimeZone> Copy for DateTime<Tz>where\n <Tz as TimeZone>::Offset: Copy,"],["impl Copy for NaiveTime"],["impl Copy for SecondsFormat"],["impl Copy for OutOfRangeError"],["impl Copy for FixedOffset"],["impl Copy for ParseError"],["impl Copy for NaiveDate"],["impl<Tz: TimeZone> Copy for Date<Tz>where\n <Tz as TimeZone>::Offset: Copy,"],["impl Copy for RoundingError"],["impl Copy for Month"],["impl Copy for Pad"],["impl Copy for ParseErrorKind"],["impl Copy for NaiveDateTime"],["impl<T: Copy> Copy for LocalResult<T>"],["impl Copy for OutOfRange"],["impl Copy for Weekday"],["impl Copy for Months"],["impl Copy for IsoWeek"],["impl Copy for Days"],["impl Copy for Utc"],["impl Copy for Duration"]], "chrono_tz":[["impl Copy for Tz"]], -"ciborium":[["impl Copy for Integer"],["impl<V: Copy, const TAG: u64> Copy for Required<V, TAG>"],["impl<V: Copy> Copy for Captured<V>"],["impl<V: Copy, const TAG: u64> Copy for Accepted<V, TAG>"]], +"ciborium":[["impl<V: Copy> Copy for Captured<V>"],["impl<V: Copy, const TAG: u64> Copy for Accepted<V, TAG>"],["impl<V: Copy, const TAG: u64> Copy for Required<V, TAG>"],["impl Copy for Integer"]], "ciborium_ll":[["impl Copy for Header"]], "comfy_table":[["impl Copy for CellAlignment"],["impl Copy for Color"],["impl Copy for Attribute"],["impl Copy for ColumnConstraint"],["impl Copy for TableComponent"],["impl Copy for Width"]], "crossbeam_channel":[["impl<T: Copy> Copy for TrySendError<T>"],["impl<T: Copy> Copy for SendError<T>"],["impl Copy for TryReadyError"],["impl Copy for TryRecvError"],["impl Copy for RecvError"],["impl<T: Copy> Copy for SendTimeoutError<T>"],["impl Copy for ReadyTimeoutError"],["impl Copy for TrySelectError"],["impl Copy for RecvTimeoutError"],["impl Copy for SelectTimeoutError"]], @@ -67,20 +67,20 @@ "parquet2":[["impl Copy for PhysicalType"],["impl Copy for SortOrder"],["impl Copy for Feature"],["impl Copy for TimeUnit"],["impl<'a> Copy for HybridEncoded<'a>"],["impl Copy for BoundaryOrder"],["impl<'a> Copy for FilteredHybridEncoded<'a>"],["impl Copy for ColumnOrder"],["impl Copy for CompressionOptions"],["impl Copy for Compression"],["impl Copy for Interval"],["impl Copy for PrimitiveConvertedType"],["impl Copy for PrimitiveLogicalType"],["impl Copy for Version"],["impl Copy for Encoding"],["impl Copy for GzipLevel"],["impl Copy for WriteOptions"],["impl Copy for BrotliLevel"],["impl Copy for IntegerType"],["impl Copy for GroupLogicalType"],["impl<'a> Copy for HybridEncoded<'a>"],["impl Copy for PageType"],["impl Copy for Repetition"],["impl Copy for ZstdLevel"],["impl Copy for GroupConvertedType"]], "parquet_format_safe":[["impl Copy for BsonType"],["impl Copy for Encoding"],["impl Copy for TMessageType"],["impl Copy for XxHash"],["impl Copy for IndexPageHeader"],["impl Copy for ApplicationErrorKind"],["impl Copy for TransportErrorKind"],["impl Copy for EncryptionWithFooterKey"],["impl Copy for NanoSeconds"],["impl Copy for MapType"],["impl Copy for FieldRepetitionType"],["impl Copy for Type"],["impl Copy for ConvertedType"],["impl Copy for EnumType"],["impl Copy for NullType"],["impl Copy for BoundaryOrder"],["impl Copy for ListType"],["impl Copy for UUIDType"],["impl Copy for Uncompressed"],["impl Copy for PageType"],["impl Copy for ProtocolErrorKind"],["impl Copy for StringType"],["impl Copy for DateType"],["impl Copy for MilliSeconds"],["impl Copy for MicroSeconds"],["impl Copy for TType"],["impl Copy for SplitBlockAlgorithm"],["impl Copy for CompressionCodec"],["impl Copy for JsonType"],["impl Copy for TypeDefinedOrder"]], "planus":[["impl<T: ?Sized> Copy for Offset<T>"],["impl Copy for ErrorKind"],["impl<T: ?Sized> Copy for UnionOffset<T>"],["impl Copy for UnknownEnumTagKind"],["impl Copy for ErrorLocation"],["impl<'buf, T: ?Sized> Copy for Vector<'buf, T>"],["impl Copy for Error"]], -"polars_arrow":[["impl Copy for EWMOptions"],["impl<T: Copy> Copy for OrdFloat<T>"],["impl Copy for RollingQuantileParams"],["impl Copy for RollingVarParams"],["impl Copy for QuantileInterpolOptions"],["impl Copy for Tz"]], -"polars_core":[["impl Copy for Int32Type"],["impl Copy for DatetimeType"],["impl Copy for SortOptions"],["impl Copy for TimeUnit"],["impl Copy for Int16Type"],["impl<'a> Copy for UnstableSeries<'a>"],["impl Copy for Float64Type"],["impl Copy for FillNullStrategy"],["impl Copy for UInt64Type"],["impl Copy for Float32Type"],["impl Copy for FloatFmt"],["impl Copy for DateType"],["impl Copy for UInt16Type"],["impl Copy for NullStrategy"],["impl Copy for UInt8Type"],["impl Copy for IsSorted"],["impl Copy for Int8Type"],["impl Copy for UniqueKeepStrategy"],["impl Copy for JoinValidation"],["impl Copy for UInt32Type"],["impl Copy for GroupByMethod"],["impl Copy for DurationType"],["impl Copy for TimeType"],["impl Copy for Int64Type"],["impl Copy for CategoricalType"],["impl Copy for NullBehavior"]], -"polars_io":[["impl Copy for IpcCompression"],["impl Copy for GzipLevel"],["impl Copy for ParallelStrategy"],["impl Copy for ParquetCompression"],["impl Copy for BrotliLevel"],["impl Copy for ZstdLevel"],["impl Copy for CsvEncoding"]], +"polars_arrow":[["impl Copy for Tz"],["impl Copy for EWMOptions"],["impl Copy for RollingQuantileParams"],["impl Copy for RollingVarParams"],["impl<T: Copy> Copy for OrdFloat<T>"],["impl Copy for QuantileInterpolOptions"]], +"polars_core":[["impl Copy for UniqueKeepStrategy"],["impl Copy for IsSorted"],["impl Copy for TimeUnit"],["impl Copy for Float32Type"],["impl Copy for Int8Type"],["impl Copy for SortOptions"],["impl Copy for NullBehavior"],["impl Copy for NullStrategy"],["impl Copy for GroupByMethod"],["impl Copy for Int64Type"],["impl Copy for DateType"],["impl Copy for Int32Type"],["impl Copy for DurationType"],["impl Copy for CategoricalType"],["impl Copy for UInt16Type"],["impl Copy for Float64Type"],["impl Copy for JoinValidation"],["impl Copy for FloatFmt"],["impl Copy for Int16Type"],["impl Copy for FillNullStrategy"],["impl Copy for DatetimeType"],["impl Copy for UInt8Type"],["impl Copy for TimeType"],["impl<'a> Copy for UnstableSeries<'a>"],["impl Copy for UInt64Type"],["impl Copy for UInt32Type"]], +"polars_io":[["impl Copy for ParallelStrategy"],["impl Copy for ZstdLevel"],["impl Copy for ParquetCompression"],["impl Copy for IpcCompression"],["impl Copy for BrotliLevel"],["impl Copy for CsvEncoding"],["impl Copy for GzipLevel"]], "polars_lazy":[["impl Copy for UnionArgs"]], "polars_ops":[["impl Copy for SearchSortedSide"]], -"polars_plan":[["impl Copy for WindowMapping"],["impl Copy for FunctionOptions"],["impl Copy for RollingCovOptions"],["impl Copy for LogicalPlanUdfOptions"],["impl Copy for WindowOptions"],["impl Copy for ParquetWriteOptions"],["impl Copy for OptState"],["impl Copy for Operator"],["impl Copy for ApplyOptions"],["impl Copy for IpcWriterOptions"],["impl Copy for Context"],["impl<'a> Copy for DotNode<'a>"],["impl Copy for UnsafeBool"],["impl Copy for UnionOptions"]], -"polars_time":[["impl Copy for Bounds"],["impl Copy for StartBy"],["impl Copy for ClosedWindow"],["impl Copy for Window"],["impl Copy for Pattern"],["impl Copy for Duration"]], +"polars_plan":[["impl Copy for RollingCovOptions"],["impl Copy for WindowOptions"],["impl Copy for UnsafeBool"],["impl Copy for WindowMapping"],["impl Copy for ParquetWriteOptions"],["impl Copy for FunctionOptions"],["impl Copy for UnionOptions"],["impl Copy for Context"],["impl Copy for LogicalPlanUdfOptions"],["impl Copy for OptState"],["impl Copy for Operator"],["impl Copy for IpcWriterOptions"],["impl<'a> Copy for DotNode<'a>"],["impl Copy for ApplyOptions"]], +"polars_time":[["impl Copy for Bounds"],["impl Copy for Pattern"],["impl Copy for StartBy"],["impl Copy for Duration"],["impl Copy for ClosedWindow"],["impl Copy for Window"]], "polars_utils":[["impl Copy for Node"],["impl<T: Copy> Copy for SyncPtr<T>"]], "ppv_lite86":[["impl Copy for NoS4"],["impl Copy for YesA1"],["impl Copy for YesS4"],["impl Copy for NoA1"],["impl<S3: Copy, S4: Copy, NI: Copy> Copy for SseMachine<S3, S4, NI>"],["impl Copy for vec256_storage"],["impl Copy for vec512_storage"],["impl Copy for NoNI"],["impl Copy for NoS3"],["impl Copy for vec128_storage"],["impl Copy for YesS3"],["impl Copy for YesNI"],["impl<NI: Copy> Copy for Avx2Machine<NI>"],["impl Copy for NoA2"],["impl Copy for YesA2"]], "proc_macro2":[["impl Copy for Span"],["impl Copy for DelimSpan"],["impl Copy for Delimiter"],["impl Copy for Spacing"]], "pyo3":[["impl Copy for ElementType"],["impl<'a> Copy for PyStringData<'a>"],["impl Copy for CompareOp"],["impl<'py> Copy for Python<'py>"]], "pyo3_ffi":[["impl Copy for PyCompilerFlags"],["impl Copy for PyModuleDef"],["impl Copy for PyVarObject"],["impl Copy for PyComplexObject"],["impl Copy for _PyStatus_TYPE"],["impl Copy for _inittab"],["impl Copy for PyPreConfig"],["impl Copy for _PyDateTime_BaseTime"],["impl Copy for PyStatus"],["impl Copy for PyDateTime_Date"],["impl Copy for PyGenObject"],["impl Copy for PyGILState_STATE"],["impl Copy for PyType_Spec"],["impl Copy for PyFutureFeatures"],["impl Copy for PyStructSequence_Desc"],["impl Copy for PyType_Slot"],["impl Copy for Py_complex"],["impl Copy for PyMemberDef"],["impl Copy for PyStructSequence_Field"],["impl Copy for Py_buffer"],["impl Copy for _PyDateTime_BaseDateTime"],["impl Copy for PyObject"],["impl Copy for _frozen"],["impl Copy for PyFrameObject"],["impl Copy for PyHash_FuncDef"],["impl Copy for PyMemAllocatorEx"],["impl Copy for PyObjectArenaAllocator"],["impl Copy for PyByteArrayObject"],["impl Copy for PyMemAllocatorDomain"],["impl Copy for PyWideStringList"],["impl Copy for PyListObject"],["impl Copy for PyDateTime_DateTime"],["impl Copy for PyModuleDef_Slot"],["impl Copy for PyTryBlock"],["impl Copy for PyTypeObject"],["impl Copy for PyGetSetDef"],["impl Copy for PyMethodDef"],["impl Copy for PyMethodDefPointer"],["impl Copy for PyConfig"],["impl Copy for PyDateTime_Time"],["impl Copy for _PyErr_StackItem"],["impl Copy for PyDateTime_Delta"],["impl Copy for PyCodeObject"],["impl Copy for PyModuleDef_Base"],["impl Copy for PySendResult"],["impl Copy for PyNumberMethods"],["impl Copy for PyDateTime_CAPI"],["impl Copy for PyBytesObject"]], "pyo3_macros_backend":[["impl Copy for PyClassMethodsType"]], -"quick_xml":[["impl Copy for QuoteLevel"],["impl<'a> Copy for PrefixDeclaration<'a>"],["impl Copy for Decoder"],["impl<'a> Copy for Namespace<'a>"],["impl Copy for NoEntityResolver"],["impl<'a> Copy for Prefix<'a>"],["impl<'a> Copy for QName<'a>"],["impl<'a> Copy for LocalName<'a>"]], +"quick_xml":[["impl<'a> Copy for LocalName<'a>"],["impl Copy for QuoteLevel"],["impl<'a> Copy for Prefix<'a>"],["impl Copy for Decoder"],["impl<'a> Copy for PrefixDeclaration<'a>"],["impl<'a> Copy for QName<'a>"],["impl<'a> Copy for Namespace<'a>"],["impl Copy for NoEntityResolver"]], "rand":[["impl Copy for UniformChar"],["impl Copy for BernoulliError"],["impl Copy for Standard"],["impl Copy for Alphanumeric"],["impl<X: Copy + SampleUniform> Copy for Uniform<X>where\n X::Sampler: Copy,"],["impl Copy for OpenClosed01"],["impl Copy for WeightedError"],["impl Copy for UniformDuration"],["impl Copy for Bernoulli"],["impl<X: Copy> Copy for UniformInt<X>"],["impl Copy for Open01"],["impl<X: Copy> Copy for UniformFloat<X>"],["impl<'a, T: Copy> Copy for Slice<'a, T>"]], "rand_core":[["impl Copy for OsRng"]], "rand_distr":[["impl<F> Copy for NormalInverseGaussian<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,\n Standard: Distribution<F>,"],["impl Copy for Error"],["impl Copy for Error"],["impl<F> Copy for Exp<F>where\n F: Float + Copy,\n Exp1: Distribution<F>,"],["impl Copy for UnitCircle"],["impl Copy for Error"],["impl<F> Copy for Zipf<F>where\n F: Float + Copy,\n Standard: Distribution<F>,"],["impl Copy for StandardGeometric"],["impl<F> Copy for SkewNormal<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,"],["impl Copy for Hypergeometric"],["impl<F> Copy for Gamma<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,\n Exp1: Distribution<F>,\n Open01: Distribution<F>,"],["impl<F> Copy for Normal<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,"],["impl Copy for UnitSphere"],["impl Copy for Error"],["impl Copy for Exp1"],["impl<F> Copy for Poisson<F>where\n F: Float + FloatConst + Copy,\n Standard: Distribution<F>,"],["impl Copy for Error"],["impl Copy for Error"],["impl<F> Copy for Frechet<F>where\n F: Float + Copy,\n OpenClosed01: Distribution<F>,"],["impl Copy for Error"],["impl Copy for Error"],["impl Copy for Binomial"],["impl Copy for BetaError"],["impl<F> Copy for StudentT<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,\n Exp1: Distribution<F>,\n Open01: Distribution<F>,"],["impl<F> Copy for ChiSquared<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,\n Exp1: Distribution<F>,\n Open01: Distribution<F>,"],["impl Copy for Error"],["impl Copy for ZipfError"],["impl<F> Copy for Beta<F>where\n F: Float + Copy,\n Open01: Distribution<F>,"],["impl<F> Copy for Cauchy<F>where\n F: Float + FloatConst + Copy,\n Standard: Distribution<F>,"],["impl Copy for Error"],["impl<F> Copy for LogNormal<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,"],["impl Copy for Error"],["impl<F> Copy for Pert<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,\n Exp1: Distribution<F>,\n Open01: Distribution<F>,"],["impl Copy for UnitDisc"],["impl<F> Copy for Pareto<F>where\n F: Float + Copy,\n OpenClosed01: Distribution<F>,"],["impl Copy for Geometric"],["impl<F> Copy for Triangular<F>where\n F: Float + Copy,\n Standard: Distribution<F>,"],["impl Copy for Error"],["impl Copy for Error"],["impl Copy for ChiSquaredError"],["impl Copy for Error"],["impl<F> Copy for InverseGaussian<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,\n Standard: Distribution<F>,"],["impl Copy for Error"],["impl Copy for PertError"],["impl<F> Copy for Gumbel<F>where\n F: Float + Copy,\n OpenClosed01: Distribution<F>,"],["impl Copy for ZetaError"],["impl<F> Copy for FisherF<F>where\n F: Float + Copy,\n StandardNormal: Distribution<F>,\n Exp1: Distribution<F>,\n Open01: Distribution<F>,"],["impl<F> Copy for Zeta<F>where\n F: Float + Copy,\n Standard: Distribution<F>,\n OpenClosed01: Distribution<F>,"],["impl Copy for UnitBall"],["impl Copy for StandardNormal"],["impl Copy for FisherFError"],["impl<F> Copy for Weibull<F>where\n F: Float + Copy,\n OpenClosed01: Distribution<F>,"],["impl Copy for TriangularError"],["impl Copy for Error"]], @@ -93,7 +93,7 @@ "rustls":[["impl Copy for InvalidMessage"],["impl Copy for KeyExchangeAlgorithm"],["impl Copy for ECPointFormat"],["impl Copy for ExtensionType"],["impl Copy for ECCurveType"],["impl Copy for ContentType"],["impl Copy for SignatureAlgorithm"],["impl Copy for SupportedCipherSuite"],["impl Copy for SessionId"],["impl Copy for Compression"],["impl Copy for AlertLevel"],["impl Copy for PSKKeyExchangeMode"],["impl Copy for HeartbeatMode"],["impl Copy for HeartbeatMessageType"],["impl Copy for HandshakeType"],["impl Copy for ProtocolVersion"],["impl Copy for NamedGroup"],["impl Copy for AlertDescription"],["impl Copy for KeyUpdateRequest"],["impl Copy for Side"],["impl Copy for Tls12Resumption"],["impl Copy for CipherSuite"],["impl Copy for NamedCurve"],["impl Copy for Random"],["impl Copy for HashAlgorithm"],["impl Copy for u24"],["impl Copy for ClientCertificateType"],["impl Copy for ServerNameType"],["impl Copy for CertificateStatusType"],["impl Copy for SignatureScheme"]], "ryu":[["impl Copy for Buffer"]], "sct":[["impl Copy for Error"]], -"serde":[["impl<E> Copy for UnitDeserializer<E>"],["impl<E> Copy for U64Deserializer<E>"],["impl<E> Copy for BoolDeserializer<E>"],["impl<E> Copy for UsizeDeserializer<E>"],["impl<E> Copy for F32Deserializer<E>"],["impl<E> Copy for F64Deserializer<E>"],["impl<E> Copy for IsizeDeserializer<E>"],["impl<'de, E> Copy for StrDeserializer<'de, E>"],["impl<E> Copy for U16Deserializer<E>"],["impl<'de, E> Copy for BorrowedStrDeserializer<'de, E>"],["impl<'a> Copy for Unexpected<'a>"],["impl<E> Copy for I32Deserializer<E>"],["impl<E> Copy for U8Deserializer<E>"],["impl<'a, E> Copy for BytesDeserializer<'a, E>"],["impl<E> Copy for I16Deserializer<E>"],["impl<E> Copy for I8Deserializer<E>"],["impl<'de, E> Copy for BorrowedBytesDeserializer<'de, E>"],["impl<E> Copy for U128Deserializer<E>"],["impl<E> Copy for I128Deserializer<E>"],["impl<E> Copy for U32Deserializer<E>"],["impl Copy for IgnoredAny"],["impl<E> Copy for CharDeserializer<E>"],["impl<E> Copy for I64Deserializer<E>"]], +"serde":[["impl<'de, E> Copy for BorrowedStrDeserializer<'de, E>"],["impl<E> Copy for UnitDeserializer<E>"],["impl<E> Copy for I16Deserializer<E>"],["impl<'de, E> Copy for StrDeserializer<'de, E>"],["impl<E> Copy for U8Deserializer<E>"],["impl<E> Copy for I32Deserializer<E>"],["impl<E> Copy for CharDeserializer<E>"],["impl<'a, E> Copy for BytesDeserializer<'a, E>"],["impl<E> Copy for U32Deserializer<E>"],["impl<E> Copy for I8Deserializer<E>"],["impl<E> Copy for U128Deserializer<E>"],["impl<'de, E> Copy for BorrowedBytesDeserializer<'de, E>"],["impl<E> Copy for IsizeDeserializer<E>"],["impl<E> Copy for F64Deserializer<E>"],["impl<E> Copy for U16Deserializer<E>"],["impl<E> Copy for BoolDeserializer<E>"],["impl<'a> Copy for Unexpected<'a>"],["impl<E> Copy for U64Deserializer<E>"],["impl<E> Copy for I64Deserializer<E>"],["impl<E> Copy for UsizeDeserializer<E>"],["impl<E> Copy for I128Deserializer<E>"],["impl<E> Copy for F32Deserializer<E>"],["impl Copy for IgnoredAny"]], "serde_json":[["impl Copy for Category"]], "signal_hook":[["impl Copy for SignalOnly"],["impl Copy for WithRawSiginfo"]], "signal_hook_registry":[["impl Copy for SigId"]], @@ -105,7 +105,7 @@ "sqlparser":[["impl Copy for OffsetRows"],["impl Copy for ExactNumberInfo"],["impl Copy for KeyOrIndexDisplay"],["impl Copy for WindowFrameUnits"],["impl Copy for CommentObject"],["impl Copy for JsonOperator"],["impl Copy for TrimWhereField"],["impl Copy for CharacterLength"],["impl Copy for OnCommit"],["impl Copy for TransactionMode"],["impl Copy for AddDropSync"],["impl Copy for DateTimeField"],["impl Copy for TransactionIsolationLevel"],["impl Copy for NonBlock"],["impl Copy for AnalyzeFormat"],["impl Copy for DiscardObject"],["impl Copy for CharLengthUnits"],["impl Copy for LockType"],["impl Copy for SetOperator"],["impl Copy for UnaryOperator"],["impl Copy for ContextModifier"],["impl Copy for IndexType"],["impl Copy for ShowCreateObject"],["impl Copy for ObjectType"],["impl Copy for SqliteOnConflict"],["impl Copy for TimezoneInfo"],["impl Copy for FileFormat"],["impl Copy for TransactionAccessMode"],["impl Copy for Keyword"],["impl Copy for SetQuantifier"],["impl Copy for ReferentialAction"],["impl Copy for KillType"]], "strength_reduce":[["impl Copy for StrengthReducedU64"],["impl Copy for StrengthReducedU8"],["impl Copy for StrengthReducedU32"],["impl Copy for StrengthReducedU16"],["impl Copy for StrengthReducedUsize"],["impl Copy for StrengthReducedU128"]], "strum":[["impl Copy for ParseError"]], -"sysinfo":[["impl Copy for CpuRefreshKind"],["impl Copy for ProcessRefreshKind"],["impl Copy for RefreshKind"],["impl Copy for DiskUsage"],["impl Copy for Gid"],["impl Copy for MacAddr"],["impl Copy for Signal"],["impl Copy for DiskKind"],["impl Copy for ProcessStatus"],["impl Copy for Pid"]], +"sysinfo":[["impl Copy for DiskUsage"],["impl Copy for Pid"],["impl Copy for Gid"],["impl Copy for CpuRefreshKind"],["impl Copy for RefreshKind"],["impl Copy for MacAddr"],["impl Copy for ProcessStatus"],["impl Copy for Signal"],["impl Copy for ProcessRefreshKind"],["impl Copy for DiskKind"]], "target_features":[["impl Copy for UnknownFeature"],["impl Copy for Architecture"],["impl Copy for UnknownCpu"],["impl Copy for Target"],["impl Copy for Feature"]], "time":[["impl Copy for Timespec"],["impl Copy for Tm"],["impl Copy for SteadyTime"],["impl Copy for OutOfRangeError"],["impl Copy for Duration"],["impl Copy for PreciseTime"],["impl Copy for ParseError"]], "tinyvec":[["impl Copy for TryFromSliceError"],["impl<A> Copy for ArrayVec<A>where\n A: Array + Copy,\n A::Item: Copy,"]], @@ -115,7 +115,7 @@ "unicode_bidi":[["impl Copy for BidiMatchedOpeningBracket"],["impl Copy for Level"],["impl Copy for BidiClass"]], "untrusted":[["impl<'a> Copy for Input<'a>"],["impl Copy for EndOfInput"]], "url":[["impl Copy for ParseError"],["impl<'a> Copy for ParseOptions<'a>"],["impl Copy for Position"],["impl Copy for SyntaxViolation"]], -"value_trait":[["impl Copy for StaticNode"],["impl Copy for ValueType"],["impl Copy for AccessError"],["impl Copy for ExtendedValueType"]], +"value_trait":[["impl Copy for AccessError"],["impl Copy for ValueType"],["impl Copy for StaticNode"],["impl Copy for ExtendedValueType"]], "webpki":[["impl<'a> Copy for DnsNameRef<'a>"],["impl Copy for Error"],["impl Copy for Time"],["impl Copy for InvalidDnsNameError"]], "xxhash_rust":[["impl Copy for Xxh3Builder"]], "zstd_safe":[["impl Copy for CParameter"]], diff --git a/implementors/core/marker/trait.Send.js b/implementors/core/marker/trait.Send.js index c0385479060f..d6c0ca3ed853 100644 --- a/implementors/core/marker/trait.Send.js +++ b/implementors/core/marker/trait.Send.js @@ -49,7 +49,7 @@ "glob":[["impl Send for Paths",1,["glob::Paths"]],["impl Send for GlobError",1,["glob::GlobError"]],["impl Send for PatternError",1,["glob::PatternError"]],["impl Send for Pattern",1,["glob::Pattern"]],["impl Send for MatchOptions",1,["glob::MatchOptions"]]], "h2":[["impl Send for Error",1,["h2::error::Error"]],["impl Send for Reason",1,["h2::frame::reason::Reason"]],["impl<B> Send for SendRequest<B>where\n B: Send,",1,["h2::client::SendRequest"]],["impl<B> Send for ReadySendRequest<B>where\n B: Send,",1,["h2::client::ReadySendRequest"]],["impl<T, B> Send for Connection<T, B>where\n B: Send,\n T: Send,",1,["h2::client::Connection"]],["impl Send for ResponseFuture",1,["h2::client::ResponseFuture"]],["impl Send for PushedResponseFuture",1,["h2::client::PushedResponseFuture"]],["impl Send for PushPromise",1,["h2::client::PushPromise"]],["impl Send for PushPromises",1,["h2::client::PushPromises"]],["impl Send for Builder",1,["h2::client::Builder"]],["impl Send for Protocol",1,["h2::ext::Protocol"]],["impl<T, B> Send for Handshake<T, B>where\n B: Send,\n T: Send,",1,["h2::server::Handshake"]],["impl<T, B> Send for Connection<T, B>where\n B: Send,\n T: Send,",1,["h2::server::Connection"]],["impl Send for Builder",1,["h2::server::Builder"]],["impl<B> Send for SendResponse<B>where\n B: Send,",1,["h2::server::SendResponse"]],["impl<B> Send for SendPushedResponse<B>where\n B: Send,",1,["h2::server::SendPushedResponse"]],["impl<B> Send for SendStream<B>where\n B: Send,",1,["h2::share::SendStream"]],["impl Send for StreamId",1,["h2::share::StreamId"]],["impl Send for RecvStream",1,["h2::share::RecvStream"]],["impl Send for FlowControl",1,["h2::share::FlowControl"]],["impl Send for PingPong",1,["h2::share::PingPong"]],["impl Send for Ping",1,["h2::share::Ping"]],["impl Send for Pong",1,["h2::share::Pong"]]], "half":[["impl Send for bf16",1,["half::bfloat::bf16"]],["impl Send for f16",1,["half::binary16::f16"]]], -"halfbrown":[["impl<'a, K, V, const N: usize, S> Send for Entry<'a, K, V, N, S>where\n K: Send,\n S: Send,\n V: Send,",1,["halfbrown::entry::Entry"]],["impl<'a, K, V, const N: usize, S> Send for VacantEntry<'a, K, V, N, S>where\n K: Send,\n S: Send,\n V: Send,",1,["halfbrown::entry::VacantEntry"]],["impl<'a, K, V> Send for Iter<'a, K, V>where\n K: Sync,\n V: Sync,",1,["halfbrown::iter::Iter"]],["impl<K, V, const N: usize> Send for IntoIter<K, V, N>where\n K: Send,\n V: Send,",1,["halfbrown::iter::IntoIter"]],["impl<'a, K, V> Send for IterMut<'a, K, V>where\n K: Send,\n V: Send,",1,["halfbrown::iter::IterMut"]],["impl<'map, K, V, const N: usize, S> Send for RawEntryBuilderMut<'map, K, V, N, S>where\n K: Send,\n S: Send,\n V: Send,",1,["halfbrown::raw_entry::RawEntryBuilderMut"]],["impl<'map, K, V, const N: usize, S> Send for RawEntryMut<'map, K, V, N, S>where\n K: Send,\n S: Send + Sync,\n V: Send,",1,["halfbrown::raw_entry::RawEntryMut"]],["impl<'map, K, V, const N: usize, S> Send for RawVacantEntryMut<'map, K, V, N, S>where\n K: Send,\n S: Send + Sync,\n V: Send,",1,["halfbrown::raw_entry::RawVacantEntryMut"]],["impl<'map, K, V, const N: usize, S> Send for RawEntryBuilder<'map, K, V, N, S>where\n K: Sync,\n S: Sync,\n V: Sync,",1,["halfbrown::raw_entry::RawEntryBuilder"]],["impl<K, V, S, const VEC_LIMIT_UPPER: usize> Send for SizedHashMap<K, V, S, VEC_LIMIT_UPPER>where\n K: Send,\n S: Send,\n V: Send,",1,["halfbrown::SizedHashMap"]],["impl<'a, K, V> Send for Keys<'a, K, V>where\n K: Sync,\n V: Sync,",1,["halfbrown::Keys"]],["impl<'a, K, V> Send for Values<'a, K, V>where\n K: Sync,\n V: Sync,",1,["halfbrown::Values"]],["impl<'a, K, V> Send for ValuesMut<'a, K, V>where\n K: Send,\n V: Send,",1,["halfbrown::ValuesMut"]],["impl<'a, K, V, const N: usize> Send for Drain<'a, K, V, N>where\n K: Send,\n V: Send,",1,["halfbrown::Drain"]],["impl<K, V, const N: usize, S> Send for OccupiedEntry<'_, K, V, N, S>where\n K: Send,\n V: Send,\n S: Send,"],["impl<K, V, const N: usize, S> Send for RawOccupiedEntryMut<'_, K, V, N, S>where\n K: Send,\n V: Send,\n S: Send,"]], +"halfbrown":[["impl<'a, K, V, const N: usize, S> Send for Entry<'a, K, V, N, S>where\n K: Send,\n S: Send,\n V: Send,",1,["halfbrown::entry::Entry"]],["impl<'a, K, V, const N: usize, S> Send for VacantEntry<'a, K, V, N, S>where\n K: Send,\n S: Send,\n V: Send,",1,["halfbrown::entry::VacantEntry"]],["impl<'a, K, V> Send for Iter<'a, K, V>where\n K: Sync,\n V: Sync,",1,["halfbrown::iter::Iter"]],["impl<K, V, const N: usize> Send for IntoIter<K, V, N>where\n K: Send,\n V: Send,",1,["halfbrown::iter::IntoIter"]],["impl<'a, K, V> Send for IterMut<'a, K, V>where\n K: Send,\n V: Send,",1,["halfbrown::iter::IterMut"]],["impl<'map, K, V, const N: usize, S> Send for RawEntryBuilderMut<'map, K, V, N, S>where\n K: Send,\n S: Send,\n V: Send,",1,["halfbrown::raw_entry::RawEntryBuilderMut"]],["impl<'map, K, V, const N: usize, S> Send for RawEntryMut<'map, K, V, N, S>where\n K: Send,\n S: Send + Sync,\n V: Send,",1,["halfbrown::raw_entry::RawEntryMut"]],["impl<'map, K, V, const N: usize, S> Send for RawVacantEntryMut<'map, K, V, N, S>where\n K: Send,\n S: Send + Sync,\n V: Send,",1,["halfbrown::raw_entry::RawVacantEntryMut"]],["impl<'map, K, V, const N: usize, S> Send for RawEntryBuilder<'map, K, V, N, S>where\n K: Sync,\n S: Sync,\n V: Sync,",1,["halfbrown::raw_entry::RawEntryBuilder"]],["impl<K, V, S, const VEC_LIMIT_UPPER: usize> Send for SizedHashMap<K, V, S, VEC_LIMIT_UPPER>where\n K: Send,\n S: Send,\n V: Send,",1,["halfbrown::SizedHashMap"]],["impl<'a, K, V> Send for Keys<'a, K, V>where\n K: Sync,\n V: Sync,",1,["halfbrown::Keys"]],["impl<'a, K, V> Send for Values<'a, K, V>where\n K: Sync,\n V: Sync,",1,["halfbrown::Values"]],["impl<'a, K, V> Send for ValuesMut<'a, K, V>where\n K: Send,\n V: Send,",1,["halfbrown::ValuesMut"]],["impl<'a, K, V, const N: usize> Send for Drain<'a, K, V, N>where\n K: Send,\n V: Send,",1,["halfbrown::Drain"]],["impl<K, V, const N: usize, S> Send for RawOccupiedEntryMut<'_, K, V, N, S>where\n K: Send,\n V: Send,\n S: Send,"],["impl<K, V, const N: usize, S> Send for OccupiedEntry<'_, K, V, N, S>where\n K: Send,\n V: Send,\n S: Send,"]], "hash_hasher":[["impl Send for HashHasher",1,["hash_hasher::HashHasher"]]], "hashbrown":[["impl Send for InsertSlot",1,["hashbrown::raw::inner::InsertSlot"]],["impl<T> Send for RawIter<T>",1,["hashbrown::raw::inner::RawIter"]],["impl<T> !Send for RawIterHash<T>",1,["hashbrown::raw::inner::RawIterHash"]],["impl<T> Send for RawParIter<T>",1,["hashbrown::external_trait_impls::rayon::raw::RawParIter"]],["impl<T, A> Send for RawIntoParIter<T, A>where\n A: Send,\n T: Send,",1,["hashbrown::external_trait_impls::rayon::raw::RawIntoParIter"]],["impl<'a, K, V> Send for ParIter<'a, K, V>where\n K: Sync,\n V: Sync,",1,["hashbrown::external_trait_impls::rayon::map::ParIter"]],["impl<'a, K, V> Send for ParKeys<'a, K, V>where\n K: Sync,\n V: Sync,",1,["hashbrown::external_trait_impls::rayon::map::ParKeys"]],["impl<'a, K, V> Send for ParValues<'a, K, V>where\n K: Sync,\n V: Sync,",1,["hashbrown::external_trait_impls::rayon::map::ParValues"]],["impl<'a, K, V> Send for ParIterMut<'a, K, V>where\n K: Sync,\n V: Send,",1,["hashbrown::external_trait_impls::rayon::map::ParIterMut"]],["impl<'a, K, V> Send for ParValuesMut<'a, K, V>where\n K: Sync,\n V: Send,",1,["hashbrown::external_trait_impls::rayon::map::ParValuesMut"]],["impl<K, V, A> Send for IntoParIter<K, V, A>where\n A: Send,\n K: Send,\n V: Send,",1,["hashbrown::external_trait_impls::rayon::map::IntoParIter"]],["impl<'a, K, V, A> Send for ParDrain<'a, K, V, A>where\n K: Send,\n V: Send,",1,["hashbrown::external_trait_impls::rayon::map::ParDrain"]],["impl<T, A> Send for IntoParIter<T, A>where\n A: Send,\n T: Send,",1,["hashbrown::external_trait_impls::rayon::set::IntoParIter"]],["impl<'a, T, A> Send for ParDrain<'a, T, A>where\n T: Send,",1,["hashbrown::external_trait_impls::rayon::set::ParDrain"]],["impl<'a, T> Send for ParIter<'a, T>where\n T: Sync,",1,["hashbrown::external_trait_impls::rayon::set::ParIter"]],["impl<'a, T, S, A> Send for ParDifference<'a, T, S, A>where\n A: Sync,\n S: Sync,\n T: Sync,",1,["hashbrown::external_trait_impls::rayon::set::ParDifference"]],["impl<'a, T, S, A> Send for ParSymmetricDifference<'a, T, S, A>where\n A: Sync,\n S: Sync,\n T: Sync,",1,["hashbrown::external_trait_impls::rayon::set::ParSymmetricDifference"]],["impl<'a, T, S, A> Send for ParIntersection<'a, T, S, A>where\n A: Sync,\n S: Sync,\n T: Sync,",1,["hashbrown::external_trait_impls::rayon::set::ParIntersection"]],["impl<'a, T, S, A> Send for ParUnion<'a, T, S, A>where\n A: Sync,\n S: Sync,\n T: Sync,",1,["hashbrown::external_trait_impls::rayon::set::ParUnion"]],["impl<K, V, S, A> Send for HashMap<K, V, S, A>where\n A: Send,\n K: Send,\n S: Send,\n V: Send,",1,["hashbrown::map::HashMap"]],["impl<'a, K, V> Send for Iter<'a, K, V>where\n K: Sync,\n V: Sync,",1,["hashbrown::map::Iter"]],["impl<K, V, A> Send for IntoIter<K, V, A>where\n A: Send,\n K: Send,\n V: Send,",1,["hashbrown::map::IntoIter"]],["impl<K, V, A> Send for IntoKeys<K, V, A>where\n A: Send,\n K: Send,\n V: Send,",1,["hashbrown::map::IntoKeys"]],["impl<K, V, A> Send for IntoValues<K, V, A>where\n A: Send,\n K: Send,\n V: Send,",1,["hashbrown::map::IntoValues"]],["impl<'a, K, V> Send for Keys<'a, K, V>where\n K: Sync,\n V: Sync,",1,["hashbrown::map::Keys"]],["impl<'a, K, V> Send for Values<'a, K, V>where\n K: Sync,\n V: Sync,",1,["hashbrown::map::Values"]],["impl<'a, K, V, A> Send for Drain<'a, K, V, A>where\n A: Send + Copy,\n K: Send,\n V: Send,",1,["hashbrown::map::Drain"]],["impl<'a, K, V, F, A> Send for ExtractIf<'a, K, V, F, A>where\n A: Send,\n F: Send,\n K: Send,\n V: Send,",1,["hashbrown::map::ExtractIf"]],["impl<'a, K, V> Send for ValuesMut<'a, K, V>where\n K: Send,\n V: Send,",1,["hashbrown::map::ValuesMut"]],["impl<'a, K, V, S, A> Send for RawEntryBuilderMut<'a, K, V, S, A>where\n A: Send,\n K: Send,\n S: Send,\n V: Send,",1,["hashbrown::map::RawEntryBuilderMut"]],["impl<'a, K, V, S, A> Send for RawEntryMut<'a, K, V, S, A>where\n A: Send,\n K: Send,\n S: Send + Sync,\n V: Send,",1,["hashbrown::map::RawEntryMut"]],["impl<'a, K, V, S, A> Send for RawVacantEntryMut<'a, K, V, S, A>where\n A: Send,\n K: Send,\n S: Sync,\n V: Send,",1,["hashbrown::map::RawVacantEntryMut"]],["impl<'a, K, V, S, A> Send for RawEntryBuilder<'a, K, V, S, A>where\n A: Sync,\n K: Sync,\n S: Sync,\n V: Sync,",1,["hashbrown::map::RawEntryBuilder"]],["impl<'a, K, V, S, A> Send for Entry<'a, K, V, S, A>where\n A: Send,\n K: Send,\n S: Send,\n V: Send,",1,["hashbrown::map::Entry"]],["impl<'a, K, V, S, A> Send for VacantEntry<'a, K, V, S, A>where\n A: Send,\n K: Send,\n S: Send,\n V: Send,",1,["hashbrown::map::VacantEntry"]],["impl<'a, 'b, K, Q: ?Sized, V, S, A> Send for EntryRef<'a, 'b, K, Q, V, S, A>where\n A: Send,\n K: Send,\n Q: Sync,\n S: Send,\n V: Send,",1,["hashbrown::map::EntryRef"]],["impl<'a, 'b, K, Q: ?Sized, V, S, A> Send for VacantEntryRef<'a, 'b, K, Q, V, S, A>where\n A: Send,\n K: Send,\n Q: Sync,\n S: Send,\n V: Send,",1,["hashbrown::map::VacantEntryRef"]],["impl<'a, K, V, S, A> Send for OccupiedError<'a, K, V, S, A>where\n A: Send,\n K: Send,\n S: Send,\n V: Send,",1,["hashbrown::map::OccupiedError"]],["impl<T, S, A> Send for HashSet<T, S, A>where\n A: Send,\n S: Send,\n T: Send,",1,["hashbrown::set::HashSet"]],["impl<'a, K> Send for Iter<'a, K>where\n K: Sync,",1,["hashbrown::set::Iter"]],["impl<K, A> Send for IntoIter<K, A>where\n A: Send,\n K: Send,",1,["hashbrown::set::IntoIter"]],["impl<'a, K, A> Send for Drain<'a, K, A>where\n A: Send + Copy,\n K: Send,",1,["hashbrown::set::Drain"]],["impl<'a, K, F, A> Send for ExtractIf<'a, K, F, A>where\n A: Send,\n F: Send,\n K: Send,",1,["hashbrown::set::ExtractIf"]],["impl<'a, T, S, A> Send for Intersection<'a, T, S, A>where\n A: Sync,\n S: Sync,\n T: Sync,",1,["hashbrown::set::Intersection"]],["impl<'a, T, S, A> Send for Difference<'a, T, S, A>where\n A: Sync,\n S: Sync,\n T: Sync,",1,["hashbrown::set::Difference"]],["impl<'a, T, S, A> Send for SymmetricDifference<'a, T, S, A>where\n A: Sync,\n S: Sync,\n T: Sync,",1,["hashbrown::set::SymmetricDifference"]],["impl<'a, T, S, A> Send for Union<'a, T, S, A>where\n A: Sync,\n S: Sync,\n T: Sync,",1,["hashbrown::set::Union"]],["impl<'a, T, S, A> Send for Entry<'a, T, S, A>where\n A: Send,\n S: Send,\n T: Send,",1,["hashbrown::set::Entry"]],["impl<'a, T, S, A> Send for OccupiedEntry<'a, T, S, A>where\n A: Send,\n S: Send,\n T: Send,",1,["hashbrown::set::OccupiedEntry"]],["impl<'a, T, S, A> Send for VacantEntry<'a, T, S, A>where\n A: Send,\n S: Send,\n T: Send,",1,["hashbrown::set::VacantEntry"]],["impl Send for TryReserveError",1,["hashbrown::TryReserveError"]],["impl<'a, 'b, K, Q, V, S, A> Send for OccupiedEntryRef<'a, 'b, K, Q, V, S, A>where\n K: Send,\n Q: Sync + ?Sized,\n V: Send,\n S: Send,\n A: Send + Allocator + Clone,"],["impl<T, A> Send for RawIntoIter<T, A>where\n T: Send,\n A: Send + Allocator + Clone,"],["impl<T, A> Send for RawDrain<'_, T, A>where\n T: Send,\n A: Send + Allocator + Copy,"],["impl<K, V, S, A> Send for OccupiedEntry<'_, K, V, S, A>where\n K: Send,\n V: Send,\n S: Send,\n A: Send + Allocator + Clone,"],["impl<T: Send, A: Allocator + Clone> Send for RawParDrain<'_, T, A>"],["impl<K: Send, V: Send> Send for IterMut<'_, K, V>"],["impl<T, A> Send for RawTable<T, A>where\n T: Send,\n A: Send + Allocator + Clone,"],["impl<T> Send for Bucket<T>"],["impl<K, V, S, A> Send for RawOccupiedEntryMut<'_, K, V, S, A>where\n K: Send,\n V: Send,\n S: Send,\n A: Send + Allocator + Clone,"]], "heck":[["impl<T> Send for AsKebabCase<T>where\n T: Send,",1,["heck::kebab::AsKebabCase"]],["impl<T> Send for AsLowerCamelCase<T>where\n T: Send,",1,["heck::lower_camel::AsLowerCamelCase"]],["impl<T> Send for AsShoutyKebabCase<T>where\n T: Send,",1,["heck::shouty_kebab::AsShoutyKebabCase"]],["impl<T> Send for AsShoutySnakeCase<T>where\n T: Send,",1,["heck::shouty_snake::AsShoutySnakeCase"]],["impl<T> Send for AsSnakeCase<T>where\n T: Send,",1,["heck::snake::AsSnakeCase"]],["impl<T> Send for AsTitleCase<T>where\n T: Send,",1,["heck::title::AsTitleCase"]],["impl<T> Send for AsTrainCase<T>where\n T: Send,",1,["heck::train::AsTrainCase"]],["impl<T> Send for AsUpperCamelCase<T>where\n T: Send,",1,["heck::upper_camel::AsUpperCamelCase"]]], diff --git a/implementors/core/marker/trait.StructuralEq.js b/implementors/core/marker/trait.StructuralEq.js index 9592003b4a7a..b8b125e27160 100644 --- a/implementors/core/marker/trait.StructuralEq.js +++ b/implementors/core/marker/trait.StructuralEq.js @@ -1,16 +1,16 @@ (function() {var implementors = { "aho_corasick":[["impl StructuralEq for Span"],["impl StructuralEq for PatternID"],["impl StructuralEq for PatternIDError"],["impl StructuralEq for StateID"],["impl StructuralEq for MatchKind"],["impl StructuralEq for Match"],["impl StructuralEq for Anchored"],["impl StructuralEq for MatchError"],["impl StructuralEq for AhoCorasickKind"],["impl StructuralEq for MatchKind"],["impl StructuralEq for StateIDError"],["impl StructuralEq for MatchErrorKind"],["impl StructuralEq for StartKind"]], "allocator_api2":[["impl StructuralEq for AllocError"]], -"arrow2":[["impl StructuralEq for WriteOptions"],["impl StructuralEq for IntegerType"],["impl<O: Offset> StructuralEq for Utf8Scalar<O>"],["impl StructuralEq for days_ms"],["impl<O: Offset> StructuralEq for Offsets<O>"],["impl StructuralEq for BooleanScalar"],["impl StructuralEq for months_days_ns"],["impl StructuralEq for FixedSizeBinaryScalar"],["impl<T: NativeType> StructuralEq for PrimitiveScalar<T>"],["impl StructuralEq for InitNested"],["impl StructuralEq for TimeUnit"],["impl StructuralEq for Compression"],["impl StructuralEq for PhysicalType"],["impl StructuralEq for NullScalar"],["impl StructuralEq for UnionMode"],["impl StructuralEq for DataType"],["impl<O: Offset> StructuralEq for BinaryScalar<O>"],["impl StructuralEq for i256"],["impl StructuralEq for IntervalUnit"],["impl StructuralEq for WriteOptions"],["impl<A: AsRef<dyn Array>> StructuralEq for Chunk<A>"],["impl StructuralEq for Schema"],["impl StructuralEq for Field"],["impl StructuralEq for PrimitiveType"]], -"arrow_format":[["impl StructuralEq for BodyCompressionMethod"],["impl StructuralEq for TimeUnit"],["impl StructuralEq for MetadataVersion"],["impl StructuralEq for DateUnit"],["impl StructuralEq for Feature"],["impl StructuralEq for UnionMode"],["impl StructuralEq for SparseMatrixCompressedAxis"],["impl StructuralEq for IntervalUnit"],["impl StructuralEq for Precision"],["impl StructuralEq for Endianness"],["impl StructuralEq for CompressionType"],["impl StructuralEq for DictionaryKind"]], +"arrow2":[["impl StructuralEq for i256"],["impl StructuralEq for IntervalUnit"],["impl StructuralEq for InitNested"],["impl StructuralEq for DataType"],["impl<O: Offset> StructuralEq for Utf8Scalar<O>"],["impl StructuralEq for BooleanScalar"],["impl StructuralEq for Field"],["impl StructuralEq for FixedSizeBinaryScalar"],["impl StructuralEq for IntegerType"],["impl StructuralEq for Compression"],["impl<A: AsRef<dyn Array>> StructuralEq for Chunk<A>"],["impl StructuralEq for WriteOptions"],["impl StructuralEq for TimeUnit"],["impl StructuralEq for months_days_ns"],["impl StructuralEq for Schema"],["impl StructuralEq for days_ms"],["impl StructuralEq for NullScalar"],["impl<O: Offset> StructuralEq for BinaryScalar<O>"],["impl<T: NativeType> StructuralEq for PrimitiveScalar<T>"],["impl<O: Offset> StructuralEq for Offsets<O>"],["impl StructuralEq for WriteOptions"],["impl StructuralEq for PhysicalType"],["impl StructuralEq for PrimitiveType"],["impl StructuralEq for UnionMode"]], +"arrow_format":[["impl StructuralEq for UnionMode"],["impl StructuralEq for DictionaryKind"],["impl StructuralEq for CompressionType"],["impl StructuralEq for MetadataVersion"],["impl StructuralEq for SparseMatrixCompressedAxis"],["impl StructuralEq for Feature"],["impl StructuralEq for TimeUnit"],["impl StructuralEq for IntervalUnit"],["impl StructuralEq for BodyCompressionMethod"],["impl StructuralEq for Endianness"],["impl StructuralEq for Precision"],["impl StructuralEq for DateUnit"]], "atoi":[["impl StructuralEq for Sign"]], -"avro_schema":[["impl StructuralEq for BytesLogical"],["impl StructuralEq for StringLogical"],["impl StructuralEq for Block"],["impl StructuralEq for CompressedBlock"],["impl StructuralEq for FixedLogical"],["impl StructuralEq for IntLogical"],["impl StructuralEq for LongLogical"],["impl StructuralEq for Compression"]], +"avro_schema":[["impl StructuralEq for StringLogical"],["impl StructuralEq for Block"],["impl StructuralEq for IntLogical"],["impl StructuralEq for BytesLogical"],["impl StructuralEq for CompressedBlock"],["impl StructuralEq for FixedLogical"],["impl StructuralEq for LongLogical"],["impl StructuralEq for Compression"]], "base64":[["impl StructuralEq for EncodeSliceError"],["impl StructuralEq for DecodePaddingMode"],["impl StructuralEq for Alphabet"],["impl StructuralEq for DecodeMetadata"],["impl StructuralEq for DecodeError"],["impl StructuralEq for ParseAlphabetError"],["impl StructuralEq for DecodeSliceError"]], "brotli":[["impl StructuralEq for BrotliEncoderStreamState"],["impl StructuralEq for LiteralPredictionModeNibble"],["impl StructuralEq for BrotliEncoderOperation"],["impl StructuralEq for CodeBlockState"],["impl StructuralEq for BrotliEncoderParameter"],["impl StructuralEq for BrotliEncoderMode"]], "bytemuck":[["impl StructuralEq for PodCastError"],["impl StructuralEq for CheckedCastError"]], "chrono":[["impl StructuralEq for Month"],["impl StructuralEq for FixedOffset"],["impl StructuralEq for ParseError"],["impl StructuralEq for Fixed"],["impl StructuralEq for Weekday"],["impl StructuralEq for Numeric"],["impl StructuralEq for Utc"],["impl StructuralEq for SecondsFormat"],["impl StructuralEq for OutOfRange"],["impl StructuralEq for NaiveDateTime"],["impl StructuralEq for ParseMonthError"],["impl StructuralEq for IsoWeek"],["impl StructuralEq for RoundingError"],["impl StructuralEq for Duration"],["impl StructuralEq for InternalNumeric"],["impl StructuralEq for NaiveDate"],["impl<T> StructuralEq for LocalResult<T>"],["impl StructuralEq for Pad"],["impl StructuralEq for ParseWeekdayError"],["impl StructuralEq for Parsed"],["impl StructuralEq for NaiveTime"],["impl StructuralEq for InternalFixed"],["impl<'a> StructuralEq for Item<'a>"],["impl StructuralEq for Months"],["impl StructuralEq for Days"],["impl StructuralEq for OutOfRangeError"],["impl StructuralEq for ParseErrorKind"]], "chrono_tz":[["impl StructuralEq for Tz"]], -"ciborium":[["impl<V, const TAG: u64> StructuralEq for Required<V, TAG>"],["impl StructuralEq for Integer"],["impl<V, const TAG: u64> StructuralEq for Accepted<V, TAG>"],["impl<V> StructuralEq for Captured<V>"]], +"ciborium":[["impl<V> StructuralEq for Captured<V>"],["impl StructuralEq for Integer"],["impl<V, const TAG: u64> StructuralEq for Accepted<V, TAG>"],["impl<V, const TAG: u64> StructuralEq for Required<V, TAG>"]], "comfy_table":[["impl StructuralEq for Width"],["impl StructuralEq for Color"],["impl StructuralEq for TableComponent"],["impl StructuralEq for Attribute"],["impl StructuralEq for ColumnConstraint"]], "crossbeam_channel":[["impl<T> StructuralEq for SendError<T>"],["impl StructuralEq for TrySelectError"],["impl StructuralEq for SelectTimeoutError"],["impl StructuralEq for TryRecvError"],["impl StructuralEq for RecvTimeoutError"],["impl<T> StructuralEq for SendTimeoutError<T>"],["impl StructuralEq for RecvError"],["impl<T> StructuralEq for TrySendError<T>"],["impl StructuralEq for TryReadyError"],["impl StructuralEq for ReadyTimeoutError"]], "crossbeam_deque":[["impl<T> StructuralEq for Steal<T>"]], @@ -56,16 +56,16 @@ "parquet2":[["impl StructuralEq for PrimitiveType"],["impl<T: NativeType> StructuralEq for PrimitiveStatistics<T>"],["impl<T: NativeType> StructuralEq for NativeIndex<T>"],["impl StructuralEq for Compression"],["impl StructuralEq for Descriptor"],["impl StructuralEq for PrimitiveLogicalType"],["impl StructuralEq for FixedLenStatistics"],["impl StructuralEq for ColumnOrder"],["impl StructuralEq for IntegerType"],["impl StructuralEq for FilteredPage"],["impl StructuralEq for BooleanIndex"],["impl StructuralEq for ByteIndex"],["impl<'a, I: Iterator<Item = Result<HybridEncoded<'a>, Error>>> StructuralEq for FilteredHybridBitmapIter<'a, I>"],["impl StructuralEq for CompressionOptions"],["impl<'a> StructuralEq for HybridEncoded<'a>"],["impl StructuralEq for BoundaryOrder"],["impl StructuralEq for PhysicalType"],["impl<'a> StructuralEq for HybridEncoded<'a>"],["impl StructuralEq for WriteOptions"],["impl<T> StructuralEq for PageIndex<T>"],["impl<'a> StructuralEq for FilteredHybridEncoded<'a>"],["impl StructuralEq for PageMetaData"],["impl StructuralEq for Version"],["impl StructuralEq for SortOrder"],["impl StructuralEq for Repetition"],["impl StructuralEq for BooleanStatistics"],["impl StructuralEq for GzipLevel"],["impl StructuralEq for PageType"],["impl StructuralEq for PrimitiveConvertedType"],["impl StructuralEq for FixedLenByteIndex"],["impl StructuralEq for FieldInfo"],["impl StructuralEq for Interval"],["impl StructuralEq for ZstdLevel"],["impl StructuralEq for Feature"],["impl StructuralEq for BinaryStatistics"],["impl StructuralEq for GroupLogicalType"],["impl StructuralEq for TimeUnit"],["impl StructuralEq for GroupConvertedType"],["impl StructuralEq for BrotliLevel"],["impl StructuralEq for Encoding"]], "parquet_format_safe":[["impl StructuralEq for AesGcmV1"],["impl StructuralEq for NanoSeconds"],["impl StructuralEq for NullType"],["impl StructuralEq for ProtocolErrorKind"],["impl StructuralEq for TimestampType"],["impl StructuralEq for FieldRepetitionType"],["impl StructuralEq for IntType"],["impl StructuralEq for EncryptionAlgorithm"],["impl StructuralEq for BloomFilterHash"],["impl StructuralEq for DataPageHeaderV2"],["impl StructuralEq for ApplicationError"],["impl StructuralEq for PageHeader"],["impl StructuralEq for DateType"],["impl StructuralEq for OffsetIndex"],["impl StructuralEq for SplitBlockAlgorithm"],["impl StructuralEq for TFieldIdentifier"],["impl StructuralEq for EnumType"],["impl StructuralEq for TransportErrorKind"],["impl StructuralEq for SchemaElement"],["impl StructuralEq for Statistics"],["impl StructuralEq for ColumnCryptoMetaData"],["impl StructuralEq for KeyValue"],["impl StructuralEq for TimeUnit"],["impl StructuralEq for TType"],["impl StructuralEq for DataPageHeader"],["impl StructuralEq for PageLocation"],["impl StructuralEq for LogicalType"],["impl StructuralEq for ColumnIndex"],["impl StructuralEq for BloomFilterCompression"],["impl StructuralEq for DictionaryPageHeader"],["impl StructuralEq for MapType"],["impl StructuralEq for EncryptionWithFooterKey"],["impl StructuralEq for TStructIdentifier"],["impl StructuralEq for ColumnOrder"],["impl StructuralEq for Encoding"],["impl StructuralEq for BoundaryOrder"],["impl StructuralEq for SortingColumn"],["impl StructuralEq for XxHash"],["impl StructuralEq for ColumnChunk"],["impl StructuralEq for TypeDefinedOrder"],["impl StructuralEq for BsonType"],["impl StructuralEq for FileCryptoMetaData"],["impl StructuralEq for TMessageType"],["impl StructuralEq for Type"],["impl StructuralEq for TListIdentifier"],["impl StructuralEq for Uncompressed"],["impl StructuralEq for TMessageIdentifier"],["impl StructuralEq for TimeType"],["impl StructuralEq for FileMetaData"],["impl StructuralEq for PageEncodingStats"],["impl StructuralEq for IndexPageHeader"],["impl StructuralEq for BloomFilterHeader"],["impl StructuralEq for ProtocolError"],["impl StructuralEq for MilliSeconds"],["impl StructuralEq for JsonType"],["impl StructuralEq for EncryptionWithColumnKey"],["impl StructuralEq for StringType"],["impl StructuralEq for ApplicationErrorKind"],["impl StructuralEq for DecimalType"],["impl StructuralEq for TSetIdentifier"],["impl StructuralEq for MicroSeconds"],["impl StructuralEq for ConvertedType"],["impl StructuralEq for CompressionCodec"],["impl StructuralEq for TMapIdentifier"],["impl StructuralEq for BloomFilterAlgorithm"],["impl StructuralEq for RowGroup"],["impl StructuralEq for UUIDType"],["impl StructuralEq for PageType"],["impl StructuralEq for AesGcmCtrV1"],["impl StructuralEq for TransportError"],["impl StructuralEq for ListType"],["impl StructuralEq for ColumnMetaData"]], "polars_arrow":[["impl StructuralEq for QuantileInterpolOptions"]], -"polars_core":[["impl StructuralEq for Schema"],["impl StructuralEq for GroupsProxy"],["impl<'a> StructuralEq for Row<'a>"],["impl StructuralEq for UniqueKeepStrategy"],["impl StructuralEq for JoinType"],["impl StructuralEq for TimeUnit"],["impl StructuralEq for JoinValidation"],["impl StructuralEq for Field"],["impl StructuralEq for JoinArgs"],["impl StructuralEq for NullBehavior"],["impl StructuralEq for SortOptions"],["impl StructuralEq for IsSorted"],["impl StructuralEq for GroupsIdx"]], -"polars_io":[["impl StructuralEq for CsvEncoding"],["impl StructuralEq for ParquetCompression"],["impl StructuralEq for GzipLevel"],["impl StructuralEq for ZstdLevel"],["impl StructuralEq for IpcCompression"],["impl StructuralEq for ParallelStrategy"],["impl StructuralEq for RowCount"],["impl StructuralEq for BrotliLevel"],["impl StructuralEq for NullValues"]], +"polars_core":[["impl StructuralEq for JoinValidation"],["impl StructuralEq for IsSorted"],["impl<'a> StructuralEq for Row<'a>"],["impl StructuralEq for SortOptions"],["impl StructuralEq for JoinArgs"],["impl StructuralEq for UniqueKeepStrategy"],["impl StructuralEq for GroupsIdx"],["impl StructuralEq for Schema"],["impl StructuralEq for NullBehavior"],["impl StructuralEq for GroupsProxy"],["impl StructuralEq for Field"],["impl StructuralEq for JoinType"],["impl StructuralEq for TimeUnit"]], +"polars_io":[["impl StructuralEq for RowCount"],["impl StructuralEq for BrotliLevel"],["impl StructuralEq for ZstdLevel"],["impl StructuralEq for NullValues"],["impl StructuralEq for ParquetCompression"],["impl StructuralEq for IpcCompression"],["impl StructuralEq for CsvEncoding"],["impl StructuralEq for GzipLevel"],["impl StructuralEq for ParallelStrategy"]], "polars_ops":[["impl StructuralEq for SearchSortedSide"]], -"polars_plan":[["impl StructuralEq for ParquetWriteOptions"],["impl StructuralEq for BooleanFunction"],["impl StructuralEq for JoinOptions"],["impl StructuralEq for UnsafeBool"],["impl StructuralEq for DistinctOptions"],["impl StructuralEq for FunctionOptions"],["impl StructuralEq for Operator"],["impl StructuralEq for IpcWriterOptions"],["impl StructuralEq for StrptimeOptions"],["impl StructuralEq for GroupbyOptions"],["impl StructuralEq for CsvParserOptions"],["impl StructuralEq for WindowMapping"],["impl StructuralEq for SortArguments"],["impl StructuralEq for FileFingerPrint"],["impl StructuralEq for FileScanOptions"],["impl StructuralEq for Excluded"],["impl StructuralEq for UnionOptions"],["impl StructuralEq for WindowOptions"],["impl StructuralEq for LogicalPlanUdfOptions"],["impl StructuralEq for ApplyOptions"],["impl StructuralEq for RollingCovOptions"],["impl StructuralEq for ParquetOptions"],["impl StructuralEq for AnonymousScanOptions"]], -"polars_time":[["impl StructuralEq for TruncateOptions"],["impl StructuralEq for Duration"],["impl StructuralEq for Pattern"],["impl StructuralEq for RollingGroupOptions"],["impl StructuralEq for StartBy"],["impl StructuralEq for DynamicGroupOptions"],["impl StructuralEq for ClosedWindow"]], +"polars_plan":[["impl StructuralEq for ParquetWriteOptions"],["impl StructuralEq for WindowMapping"],["impl StructuralEq for UnsafeBool"],["impl StructuralEq for AnonymousScanOptions"],["impl StructuralEq for ApplyOptions"],["impl StructuralEq for Excluded"],["impl StructuralEq for Operator"],["impl StructuralEq for BooleanFunction"],["impl StructuralEq for JoinOptions"],["impl StructuralEq for DistinctOptions"],["impl StructuralEq for UnionOptions"],["impl StructuralEq for WindowOptions"],["impl StructuralEq for FileFingerPrint"],["impl StructuralEq for RollingCovOptions"],["impl StructuralEq for CsvParserOptions"],["impl StructuralEq for SortArguments"],["impl StructuralEq for IpcWriterOptions"],["impl StructuralEq for FunctionOptions"],["impl StructuralEq for ParquetOptions"],["impl StructuralEq for FileScanOptions"],["impl StructuralEq for StrptimeOptions"],["impl StructuralEq for GroupbyOptions"],["impl StructuralEq for LogicalPlanUdfOptions"]], +"polars_time":[["impl StructuralEq for Duration"],["impl StructuralEq for RollingGroupOptions"],["impl StructuralEq for Pattern"],["impl StructuralEq for ClosedWindow"],["impl StructuralEq for StartBy"],["impl StructuralEq for DynamicGroupOptions"],["impl StructuralEq for TruncateOptions"]], "polars_utils":[["impl StructuralEq for Node"]], "proc_macro2":[["impl StructuralEq for Delimiter"],["impl StructuralEq for Spacing"]], "pyo3":[["impl StructuralEq for PySliceIndices"],["impl<'a> StructuralEq for PyStringData<'a>"],["impl StructuralEq for ElementType"]], "pyo3_ffi":[["impl StructuralEq for PyMethodDef"],["impl StructuralEq for PyGILState_STATE"],["impl StructuralEq for PySendResult"],["impl StructuralEq for PyGetSetDef"],["impl StructuralEq for _PyStatus_TYPE"],["impl StructuralEq for PyMemberDef"],["impl StructuralEq for PyModuleDef_Slot"]], -"quick_xml":[["impl<'a> StructuralEq for Namespace<'a>"],["impl<'a> StructuralEq for BytesCData<'a>"],["impl<'a> StructuralEq for QName<'a>"],["impl<'a> StructuralEq for BytesStart<'a>"],["impl<'a> StructuralEq for BytesText<'a>"],["impl<'a> StructuralEq for Event<'a>"],["impl StructuralEq for AttrError"],["impl<'a> StructuralEq for PrefixDeclaration<'a>"],["impl<'a> StructuralEq for DeEvent<'a>"],["impl<'a> StructuralEq for Text<'a>"],["impl<'a> StructuralEq for BytesDecl<'a>"],["impl<'a> StructuralEq for LocalName<'a>"],["impl<'a> StructuralEq for Prefix<'a>"],["impl StructuralEq for QuoteLevel"],["impl<'a> StructuralEq for BytesEnd<'a>"],["impl StructuralEq for Decoder"],["impl<'a> StructuralEq for PayloadEvent<'a>"],["impl<'ns> StructuralEq for ResolveResult<'ns>"],["impl<T> StructuralEq for Attr<T>"],["impl<'a> StructuralEq for Attribute<'a>"]], +"quick_xml":[["impl<'a> StructuralEq for PayloadEvent<'a>"],["impl<'a> StructuralEq for Namespace<'a>"],["impl<'a> StructuralEq for PrefixDeclaration<'a>"],["impl<'a> StructuralEq for DeEvent<'a>"],["impl<'a> StructuralEq for BytesText<'a>"],["impl<'ns> StructuralEq for ResolveResult<'ns>"],["impl StructuralEq for Decoder"],["impl<'a> StructuralEq for Prefix<'a>"],["impl StructuralEq for QuoteLevel"],["impl<'a> StructuralEq for BytesCData<'a>"],["impl<'a> StructuralEq for BytesEnd<'a>"],["impl<T> StructuralEq for Attr<T>"],["impl<'a> StructuralEq for Text<'a>"],["impl<'a> StructuralEq for BytesStart<'a>"],["impl StructuralEq for AttrError"],["impl<'a> StructuralEq for Attribute<'a>"],["impl<'a> StructuralEq for LocalName<'a>"],["impl<'a> StructuralEq for BytesDecl<'a>"],["impl<'a> StructuralEq for Event<'a>"],["impl<'a> StructuralEq for QName<'a>"]], "rand":[["impl StructuralEq for StdRng"],["impl StructuralEq for WeightedError"],["impl StructuralEq for StepRng"],["impl StructuralEq for SmallRng"],["impl StructuralEq for BernoulliError"]], "rand_chacha":[["impl StructuralEq for ChaCha12Core"],["impl StructuralEq for ChaCha8Core"],["impl StructuralEq for ChaCha20Core"]], "rand_distr":[["impl StructuralEq for Error"],["impl StructuralEq for ZetaError"],["impl StructuralEq for Error"],["impl StructuralEq for BetaError"],["impl StructuralEq for Error"],["impl StructuralEq for Error"],["impl StructuralEq for Error"],["impl StructuralEq for Error"],["impl StructuralEq for Error"],["impl StructuralEq for Error"],["impl StructuralEq for Error"],["impl StructuralEq for Error"],["impl StructuralEq for FisherFError"],["impl StructuralEq for TriangularError"],["impl StructuralEq for ZipfError"],["impl StructuralEq for Error"],["impl StructuralEq for PertError"],["impl StructuralEq for Error"],["impl StructuralEq for Error"],["impl StructuralEq for Error"],["impl StructuralEq for ChiSquaredError"],["impl StructuralEq for Error"],["impl StructuralEq for Error"]], @@ -77,14 +77,14 @@ "ring":[["impl StructuralEq for Algorithm"],["impl StructuralEq for Algorithm"],["impl StructuralEq for Algorithm"]], "rustls":[["impl StructuralEq for NamedGroup"],["impl StructuralEq for BulkAlgorithm"],["impl StructuralEq for PayloadU8"],["impl StructuralEq for SupportedProtocolVersion"],["impl StructuralEq for ECPointFormat"],["impl StructuralEq for Compression"],["impl StructuralEq for PSKKeyExchangeMode"],["impl StructuralEq for AlertDescription"],["impl StructuralEq for Random"],["impl StructuralEq for HashAlgorithm"],["impl StructuralEq for ECCurveType"],["impl StructuralEq for PayloadU24"],["impl StructuralEq for AlertLevel"],["impl StructuralEq for ContentType"],["impl StructuralEq for SignatureAlgorithm"],["impl StructuralEq for SignatureScheme"],["impl StructuralEq for HeartbeatMessageType"],["impl StructuralEq for HandshakeType"],["impl StructuralEq for ClientCertificateType"],["impl StructuralEq for IoState"],["impl StructuralEq for PrivateKey"],["impl StructuralEq for DnsName"],["impl StructuralEq for ServerNameType"],["impl StructuralEq for ExtensionType"],["impl StructuralEq for HeartbeatMode"],["impl StructuralEq for NamedCurve"],["impl StructuralEq for CertificateStatusType"],["impl StructuralEq for ServerName"],["impl StructuralEq for CipherSuite"],["impl StructuralEq for PayloadU16"],["impl StructuralEq for ProtocolVersion"],["impl StructuralEq for Payload"],["impl StructuralEq for KeyUpdateRequest"],["impl StructuralEq for Certificate"]], "same_file":[["impl StructuralEq for Handle"]], -"serde_json":[["impl StructuralEq for Number"],["impl StructuralEq for Value"],["impl StructuralEq for Category"]], +"serde_json":[["impl StructuralEq for Category"],["impl StructuralEq for Number"],["impl StructuralEq for Value"]], "serde_urlencoded":[["impl StructuralEq for Error"]], "signal_hook_registry":[["impl StructuralEq for SigId"]], "simdutf8":[["impl StructuralEq for Utf8Error"],["impl StructuralEq for Utf8Error"]], "socket2":[["impl StructuralEq for Domain"],["impl StructuralEq for Type"],["impl StructuralEq for Protocol"],["impl StructuralEq for RecvFlags"]], "sqlparser":[["impl StructuralEq for CopyTarget"],["impl StructuralEq for ParserOptions"],["impl StructuralEq for CopyOption"],["impl StructuralEq for CreateFunctionUsing"],["impl StructuralEq for ContextModifier"],["impl StructuralEq for OnConflictAction"],["impl StructuralEq for SelectItem"],["impl StructuralEq for FetchDirection"],["impl StructuralEq for Offset"],["impl StructuralEq for TableConstraint"],["impl StructuralEq for WindowFrameUnits"],["impl StructuralEq for FunctionBehavior"],["impl StructuralEq for OperateFunctionArg"],["impl StructuralEq for HiveFormat"],["impl StructuralEq for SqlOption"],["impl StructuralEq for Query"],["impl StructuralEq for CopyLegacyCsvOption"],["impl StructuralEq for WindowFrameBound"],["impl StructuralEq for SetQuantifier"],["impl StructuralEq for CommentObject"],["impl StructuralEq for TableAlias"],["impl StructuralEq for DropFunctionDesc"],["impl StructuralEq for ListAgg"],["impl StructuralEq for CharacterLength"],["impl StructuralEq for Password"],["impl StructuralEq for ExactNumberInfo"],["impl StructuralEq for ColumnOptionDef"],["impl StructuralEq for ReplaceSelectElement"],["impl StructuralEq for TransactionAccessMode"],["impl StructuralEq for DateTimeField"],["impl StructuralEq for HiveDistributionStyle"],["impl StructuralEq for WildcardAdditionalOptions"],["impl StructuralEq for OnCommit"],["impl StructuralEq for DoUpdate"],["impl StructuralEq for TimezoneInfo"],["impl StructuralEq for OnConflict"],["impl StructuralEq for DropFunctionOption"],["impl StructuralEq for Assignment"],["impl StructuralEq for GrantObjects"],["impl StructuralEq for ReferentialAction"],["impl StructuralEq for AddDropSync"],["impl StructuralEq for StageParamsObject"],["impl StructuralEq for Action"],["impl StructuralEq for NonBlock"],["impl StructuralEq for ArrayAgg"],["impl StructuralEq for UnaryOperator"],["impl StructuralEq for HiveIOFormat"],["impl StructuralEq for JoinConstraint"],["impl StructuralEq for Cte"],["impl StructuralEq for TransactionMode"],["impl StructuralEq for Whitespace"],["impl StructuralEq for ShowStatementFilter"],["impl StructuralEq for LockType"],["impl StructuralEq for JsonOperator"],["impl StructuralEq for Word"],["impl StructuralEq for ColumnDef"],["impl StructuralEq for HiveRowFormat"],["impl StructuralEq for GeneratedAs"],["impl StructuralEq for Location"],["impl StructuralEq for WindowFrame"],["impl StructuralEq for Value"],["impl StructuralEq for Privileges"],["impl StructuralEq for Array"],["impl StructuralEq for SelectInto"],["impl StructuralEq for ColumnOption"],["impl StructuralEq for AlterTableOperation"],["impl StructuralEq for CloseCursor"],["impl StructuralEq for LateralView"],["impl StructuralEq for RenameSelectItem"],["impl StructuralEq for MergeClause"],["impl StructuralEq for Top"],["impl StructuralEq for FunctionArgExpr"],["impl StructuralEq for ObjectName"],["impl StructuralEq for ObjectType"],["impl StructuralEq for Values"],["impl StructuralEq for AlterColumnOperation"],["impl StructuralEq for TableWithJoins"],["impl StructuralEq for Keyword"],["impl StructuralEq for Function"],["impl StructuralEq for Ident"],["impl StructuralEq for JoinOperator"],["impl StructuralEq for TableFactor"],["impl StructuralEq for SetExpr"],["impl StructuralEq for DataLoadingOptions"],["impl StructuralEq for FunctionDefinition"],["impl StructuralEq for LockClause"],["impl StructuralEq for DataLoadingOptionType"],["impl StructuralEq for KillType"],["impl StructuralEq for OnInsert"],["impl StructuralEq for ExceptSelectItem"],["impl StructuralEq for SetOperator"],["impl StructuralEq for SchemaName"],["impl StructuralEq for With"],["impl StructuralEq for NamedWindowDefinition"],["impl StructuralEq for ArgMode"],["impl StructuralEq for TokenWithLocation"],["impl StructuralEq for IdentWithAlias"],["impl StructuralEq for DollarQuotedString"],["impl StructuralEq for ExcludeSelectItem"],["impl StructuralEq for OrderByExpr"],["impl StructuralEq for DataLoadingOption"],["impl StructuralEq for TransactionIsolationLevel"],["impl StructuralEq for Expr"],["impl StructuralEq for Join"],["impl StructuralEq for OffsetRows"],["impl StructuralEq for Distinct"],["impl StructuralEq for TokenizerError"],["impl StructuralEq for ParserError"],["impl StructuralEq for AlterIndexOperation"],["impl StructuralEq for DataType"],["impl StructuralEq for CreateTableBuilder"],["impl StructuralEq for StageLoadSelectItem"],["impl StructuralEq for Interval"],["impl StructuralEq for FileFormat"],["impl StructuralEq for ShowCreateObject"],["impl StructuralEq for ConflictTarget"],["impl StructuralEq for SequenceOptions"],["impl StructuralEq for BinaryOperator"],["impl StructuralEq for FunctionArg"],["impl StructuralEq for IsOptional"],["impl StructuralEq for Statement"],["impl StructuralEq for CreateFunctionBody"],["impl StructuralEq for TrimWhereField"],["impl StructuralEq for CopyLegacyOption"],["impl StructuralEq for WindowType"],["impl StructuralEq for CopySource"],["impl StructuralEq for CharLengthUnits"],["impl StructuralEq for ReplaceSelectItem"],["impl StructuralEq for Token"],["impl StructuralEq for SqliteOnConflict"],["impl StructuralEq for Table"],["impl StructuralEq for Fetch"],["impl StructuralEq for AnalyzeFormat"],["impl StructuralEq for MinMaxValue"],["impl StructuralEq for ListAggOnOverflow"],["impl StructuralEq for SearchModifier"],["impl StructuralEq for DiscardObject"],["impl StructuralEq for IndexType"],["impl StructuralEq for KeyOrIndexDisplay"],["impl StructuralEq for Select"],["impl StructuralEq for WindowSpec"]], "strum":[["impl StructuralEq for ParseError"]], -"sysinfo":[["impl StructuralEq for Signal"],["impl StructuralEq for Uid"],["impl StructuralEq for ProcessRefreshKind"],["impl StructuralEq for ProcessStatus"],["impl StructuralEq for User"],["impl StructuralEq for CpuRefreshKind"],["impl StructuralEq for Pid"],["impl StructuralEq for RefreshKind"],["impl StructuralEq for MacAddr"],["impl StructuralEq for Disk"],["impl StructuralEq for DiskUsage"],["impl StructuralEq for DiskKind"],["impl StructuralEq for Gid"]], +"sysinfo":[["impl StructuralEq for CpuRefreshKind"],["impl StructuralEq for ProcessRefreshKind"],["impl StructuralEq for RefreshKind"],["impl StructuralEq for Pid"],["impl StructuralEq for User"],["impl StructuralEq for Uid"],["impl StructuralEq for DiskKind"],["impl StructuralEq for ProcessStatus"],["impl StructuralEq for Disk"],["impl StructuralEq for Gid"],["impl StructuralEq for Signal"],["impl StructuralEq for DiskUsage"],["impl StructuralEq for MacAddr"]], "target_features":[["impl StructuralEq for Architecture"],["impl StructuralEq for Feature"],["impl StructuralEq for Target"]], "time":[["impl StructuralEq for Timespec"],["impl StructuralEq for OutOfRangeError"],["impl StructuralEq for SteadyTime"],["impl StructuralEq for Tm"],["impl StructuralEq for Duration"]], "tokio":[["impl StructuralEq for Interest"],["impl StructuralEq for UCred"],["impl StructuralEq for PipeMode"],["impl StructuralEq for Ready"],["impl StructuralEq for PipeEnd"]], @@ -94,7 +94,7 @@ "unicode_normalization":[["impl StructuralEq for IsNormalized"]], "untrusted":[["impl StructuralEq for EndOfInput"],["impl<'a> StructuralEq for Input<'a>"]], "url":[["impl StructuralEq for SyntaxViolation"],["impl StructuralEq for OpaqueOrigin"],["impl<S> StructuralEq for Host<S>"],["impl StructuralEq for ParseError"],["impl StructuralEq for Origin"]], -"value_trait":[["impl StructuralEq for ExtendedValueType"],["impl StructuralEq for AccessError"],["impl StructuralEq for ValueType"]], +"value_trait":[["impl StructuralEq for ValueType"],["impl StructuralEq for ExtendedValueType"],["impl StructuralEq for AccessError"]], "webpki":[["impl StructuralEq for InvalidDnsNameError"]], "zstd_safe":[["impl StructuralEq for CParameter"]], "zstd_sys":[["impl StructuralEq for ZSTD_dParameter"],["impl StructuralEq for ZSTD_strategy"],["impl StructuralEq for ZSTD_ResetDirective"],["impl StructuralEq for ZSTD_EndDirective"],["impl StructuralEq for ZSTD_cParameter"]] diff --git a/implementors/core/marker/trait.StructuralPartialEq.js b/implementors/core/marker/trait.StructuralPartialEq.js index 4bf1373cbcdd..5bc1aab29bba 100644 --- a/implementors/core/marker/trait.StructuralPartialEq.js +++ b/implementors/core/marker/trait.StructuralPartialEq.js @@ -1,17 +1,17 @@ (function() {var implementors = { "aho_corasick":[["impl StructuralPartialEq for MatchError"],["impl StructuralPartialEq for StateID"],["impl StructuralPartialEq for StartKind"],["impl StructuralPartialEq for PatternID"],["impl StructuralPartialEq for Span"],["impl StructuralPartialEq for PatternIDError"],["impl StructuralPartialEq for MatchKind"],["impl StructuralPartialEq for Match"],["impl StructuralPartialEq for Anchored"],["impl StructuralPartialEq for StateIDError"],["impl StructuralPartialEq for AhoCorasickKind"],["impl StructuralPartialEq for MatchErrorKind"],["impl StructuralPartialEq for MatchKind"]], "allocator_api2":[["impl StructuralPartialEq for AllocError"]], -"arrow2":[["impl StructuralPartialEq for ColumnPageStatistics"],["impl StructuralPartialEq for InitNested"],["impl<'a> StructuralPartialEq for Record<'a>"],["impl StructuralPartialEq for Statistics"],["impl<O: Offset> StructuralPartialEq for OffsetsBuffer<O>"],["impl StructuralPartialEq for IntervalUnit"],["impl StructuralPartialEq for PrimitiveType"],["impl StructuralPartialEq for BooleanScalar"],["impl StructuralPartialEq for IpcSchema"],["impl<A: AsRef<dyn Array>> StructuralPartialEq for Chunk<A>"],["impl<O: Offset> StructuralPartialEq for Utf8Scalar<O>"],["impl StructuralPartialEq for FieldPageStatistics"],["impl StructuralPartialEq for days_ms"],["impl StructuralPartialEq for IntegerType"],["impl StructuralPartialEq for Field"],["impl StructuralPartialEq for Schema"],["impl<O: Offset> StructuralPartialEq for BinaryScalar<O>"],["impl StructuralPartialEq for WriteOptions"],["impl<T: NativeType> StructuralPartialEq for PrimitiveScalar<T>"],["impl StructuralPartialEq for NullScalar"],["impl StructuralPartialEq for WriteOptions"],["impl StructuralPartialEq for months_days_ns"],["impl StructuralPartialEq for Nested"],["impl StructuralPartialEq for UnionScalar"],["impl StructuralPartialEq for UnionMode"],["impl StructuralPartialEq for PhysicalType"],["impl StructuralPartialEq for TimeUnit"],["impl StructuralPartialEq for i256"],["impl<O: Offset> StructuralPartialEq for Offsets<O>"],["impl StructuralPartialEq for Compression"],["impl StructuralPartialEq for DataType"],["impl StructuralPartialEq for FixedSizeBinaryScalar"],["impl StructuralPartialEq for IpcField"]], -"arrow_format":[["impl StructuralPartialEq for Date"],["impl StructuralPartialEq for Block"],["impl StructuralPartialEq for Struct"],["impl StructuralPartialEq for LargeUtf8"],["impl StructuralPartialEq for Type"],["impl StructuralPartialEq for RecordBatch"],["impl StructuralPartialEq for DateUnit"],["impl StructuralPartialEq for FixedSizeBinary"],["impl StructuralPartialEq for SparseTensorIndexCoo"],["impl StructuralPartialEq for SparseMatrixCompressedAxis"],["impl StructuralPartialEq for Precision"],["impl StructuralPartialEq for KeyValue"],["impl StructuralPartialEq for Footer"],["impl StructuralPartialEq for SparseTensor"],["impl StructuralPartialEq for Field"],["impl StructuralPartialEq for Schema"],["impl StructuralPartialEq for FixedSizeList"],["impl StructuralPartialEq for IntervalUnit"],["impl StructuralPartialEq for Duration"],["impl StructuralPartialEq for BodyCompressionMethod"],["impl StructuralPartialEq for List"],["impl StructuralPartialEq for Buffer"],["impl StructuralPartialEq for DictionaryKind"],["impl StructuralPartialEq for UnionMode"],["impl StructuralPartialEq for DictionaryBatch"],["impl StructuralPartialEq for Union"],["impl StructuralPartialEq for FieldNode"],["impl StructuralPartialEq for Null"],["impl StructuralPartialEq for SparseMatrixIndexCsx"],["impl StructuralPartialEq for MetadataVersion"],["impl StructuralPartialEq for DictionaryEncoding"],["impl StructuralPartialEq for TimeUnit"],["impl StructuralPartialEq for Interval"],["impl StructuralPartialEq for SparseTensorIndex"],["impl StructuralPartialEq for LargeBinary"],["impl StructuralPartialEq for CompressionType"],["impl StructuralPartialEq for FloatingPoint"],["impl StructuralPartialEq for TensorDim"],["impl StructuralPartialEq for Decimal"],["impl StructuralPartialEq for Time"],["impl StructuralPartialEq for Utf8"],["impl StructuralPartialEq for MessageHeader"],["impl StructuralPartialEq for Endianness"],["impl StructuralPartialEq for Message"],["impl StructuralPartialEq for Int"],["impl StructuralPartialEq for SparseTensorIndexCsf"],["impl StructuralPartialEq for Feature"],["impl StructuralPartialEq for Map"],["impl StructuralPartialEq for LargeList"],["impl StructuralPartialEq for Timestamp"],["impl StructuralPartialEq for Binary"],["impl StructuralPartialEq for Bool"],["impl StructuralPartialEq for BodyCompression"],["impl StructuralPartialEq for Tensor"]], +"arrow2":[["impl StructuralPartialEq for BooleanScalar"],["impl StructuralPartialEq for Schema"],["impl StructuralPartialEq for InitNested"],["impl StructuralPartialEq for IntegerType"],["impl StructuralPartialEq for PhysicalType"],["impl StructuralPartialEq for UnionMode"],["impl StructuralPartialEq for IpcField"],["impl<O: Offset> StructuralPartialEq for OffsetsBuffer<O>"],["impl StructuralPartialEq for WriteOptions"],["impl StructuralPartialEq for ColumnPageStatistics"],["impl StructuralPartialEq for i256"],["impl StructuralPartialEq for TimeUnit"],["impl<O: Offset> StructuralPartialEq for BinaryScalar<O>"],["impl StructuralPartialEq for IntervalUnit"],["impl StructuralPartialEq for FixedSizeBinaryScalar"],["impl StructuralPartialEq for Compression"],["impl StructuralPartialEq for days_ms"],["impl StructuralPartialEq for DataType"],["impl StructuralPartialEq for WriteOptions"],["impl StructuralPartialEq for Nested"],["impl StructuralPartialEq for NullScalar"],["impl<O: Offset> StructuralPartialEq for Utf8Scalar<O>"],["impl StructuralPartialEq for IpcSchema"],["impl StructuralPartialEq for FieldPageStatistics"],["impl<'a> StructuralPartialEq for Record<'a>"],["impl<O: Offset> StructuralPartialEq for Offsets<O>"],["impl StructuralPartialEq for PrimitiveType"],["impl StructuralPartialEq for months_days_ns"],["impl StructuralPartialEq for Statistics"],["impl StructuralPartialEq for UnionScalar"],["impl<A: AsRef<dyn Array>> StructuralPartialEq for Chunk<A>"],["impl StructuralPartialEq for Field"],["impl<T: NativeType> StructuralPartialEq for PrimitiveScalar<T>"]], +"arrow_format":[["impl StructuralPartialEq for Buffer"],["impl StructuralPartialEq for DateUnit"],["impl StructuralPartialEq for FixedSizeBinary"],["impl StructuralPartialEq for SparseMatrixIndexCsx"],["impl StructuralPartialEq for UnionMode"],["impl StructuralPartialEq for Footer"],["impl StructuralPartialEq for DictionaryEncoding"],["impl StructuralPartialEq for SparseTensorIndex"],["impl StructuralPartialEq for SparseTensorIndexCsf"],["impl StructuralPartialEq for RecordBatch"],["impl StructuralPartialEq for Duration"],["impl StructuralPartialEq for SparseMatrixCompressedAxis"],["impl StructuralPartialEq for SparseTensor"],["impl StructuralPartialEq for Date"],["impl StructuralPartialEq for Binary"],["impl StructuralPartialEq for Decimal"],["impl StructuralPartialEq for Precision"],["impl StructuralPartialEq for Union"],["impl StructuralPartialEq for BodyCompression"],["impl StructuralPartialEq for Bool"],["impl StructuralPartialEq for LargeUtf8"],["impl StructuralPartialEq for Endianness"],["impl StructuralPartialEq for Map"],["impl StructuralPartialEq for BodyCompressionMethod"],["impl StructuralPartialEq for Int"],["impl StructuralPartialEq for TimeUnit"],["impl StructuralPartialEq for Message"],["impl StructuralPartialEq for Tensor"],["impl StructuralPartialEq for Null"],["impl StructuralPartialEq for CompressionType"],["impl StructuralPartialEq for Schema"],["impl StructuralPartialEq for KeyValue"],["impl StructuralPartialEq for LargeBinary"],["impl StructuralPartialEq for FixedSizeList"],["impl StructuralPartialEq for Type"],["impl StructuralPartialEq for DictionaryKind"],["impl StructuralPartialEq for Timestamp"],["impl StructuralPartialEq for TensorDim"],["impl StructuralPartialEq for List"],["impl StructuralPartialEq for Feature"],["impl StructuralPartialEq for Time"],["impl StructuralPartialEq for DictionaryBatch"],["impl StructuralPartialEq for Struct"],["impl StructuralPartialEq for MetadataVersion"],["impl StructuralPartialEq for Field"],["impl StructuralPartialEq for MessageHeader"],["impl StructuralPartialEq for Utf8"],["impl StructuralPartialEq for FloatingPoint"],["impl StructuralPartialEq for SparseTensorIndexCoo"],["impl StructuralPartialEq for Interval"],["impl StructuralPartialEq for IntervalUnit"],["impl StructuralPartialEq for LargeList"],["impl StructuralPartialEq for FieldNode"],["impl StructuralPartialEq for Block"]], "atoi":[["impl StructuralPartialEq for Sign"]], -"avro_schema":[["impl StructuralPartialEq for Order"],["impl StructuralPartialEq for Compression"],["impl StructuralPartialEq for LongLogical"],["impl StructuralPartialEq for FixedLogical"],["impl StructuralPartialEq for Enum"],["impl StructuralPartialEq for Fixed"],["impl StructuralPartialEq for Schema"],["impl StructuralPartialEq for BytesLogical"],["impl StructuralPartialEq for FileMetadata"],["impl StructuralPartialEq for IntLogical"],["impl StructuralPartialEq for Field"],["impl StructuralPartialEq for StringLogical"],["impl StructuralPartialEq for Record"],["impl StructuralPartialEq for CompressedBlock"],["impl StructuralPartialEq for Block"]], +"avro_schema":[["impl StructuralPartialEq for CompressedBlock"],["impl StructuralPartialEq for Enum"],["impl StructuralPartialEq for Field"],["impl StructuralPartialEq for StringLogical"],["impl StructuralPartialEq for BytesLogical"],["impl StructuralPartialEq for Record"],["impl StructuralPartialEq for Block"],["impl StructuralPartialEq for IntLogical"],["impl StructuralPartialEq for FileMetadata"],["impl StructuralPartialEq for Fixed"],["impl StructuralPartialEq for Compression"],["impl StructuralPartialEq for LongLogical"],["impl StructuralPartialEq for Schema"],["impl StructuralPartialEq for FixedLogical"],["impl StructuralPartialEq for Order"]], "base64":[["impl StructuralPartialEq for EncodeSliceError"],["impl StructuralPartialEq for ParseAlphabetError"],["impl StructuralPartialEq for DecodeMetadata"],["impl StructuralPartialEq for Alphabet"],["impl StructuralPartialEq for DecodeError"],["impl StructuralPartialEq for DecodePaddingMode"],["impl StructuralPartialEq for DecodeSliceError"]], "brotli":[["impl StructuralPartialEq for BrotliEncoderParameter"],["impl StructuralPartialEq for HQ7Sub"],["impl StructuralPartialEq for H5Sub"],["impl StructuralPartialEq for BrotliEncoderMode"],["impl StructuralPartialEq for LiteralPredictionModeNibble"],["impl StructuralPartialEq for BrotliEncoderStreamState"],["impl StructuralPartialEq for CodeBlockState"],["impl StructuralPartialEq for BrotliHasherParams"],["impl StructuralPartialEq for Struct1"],["impl StructuralPartialEq for HQ5Sub"],["impl StructuralPartialEq for BrotliEncoderOperation"],["impl StructuralPartialEq for H6Sub"],["impl StructuralPartialEq for BroCatliResult"],["impl StructuralPartialEq for H9Opts"]], "brotli_decompressor":[["impl StructuralPartialEq for HuffmanCode"]], "bytemuck":[["impl StructuralPartialEq for PodCastError"],["impl StructuralPartialEq for CheckedCastError"]], "chrono":[["impl StructuralPartialEq for Utc"],["impl StructuralPartialEq for InternalNumeric"],["impl StructuralPartialEq for Parsed"],["impl StructuralPartialEq for Weekday"],["impl StructuralPartialEq for ParseMonthError"],["impl StructuralPartialEq for Month"],["impl<'a> StructuralPartialEq for Item<'a>"],["impl StructuralPartialEq for ParseError"],["impl StructuralPartialEq for FixedOffset"],["impl StructuralPartialEq for SecondsFormat"],["impl StructuralPartialEq for Duration"],["impl StructuralPartialEq for OutOfRangeError"],["impl<T> StructuralPartialEq for LocalResult<T>"],["impl StructuralPartialEq for Fixed"],["impl StructuralPartialEq for RoundingError"],["impl StructuralPartialEq for Numeric"],["impl StructuralPartialEq for Months"],["impl StructuralPartialEq for ParseWeekdayError"],["impl StructuralPartialEq for Days"],["impl StructuralPartialEq for Pad"],["impl StructuralPartialEq for ParseErrorKind"],["impl StructuralPartialEq for NaiveDateTime"],["impl StructuralPartialEq for InternalFixed"],["impl StructuralPartialEq for NaiveDate"],["impl StructuralPartialEq for OutOfRange"],["impl StructuralPartialEq for IsoWeek"],["impl StructuralPartialEq for NaiveTime"]], "chrono_tz":[["impl StructuralPartialEq for Tz"]], -"ciborium":[["impl StructuralPartialEq for Value"],["impl StructuralPartialEq for Integer"],["impl<V> StructuralPartialEq for Captured<V>"],["impl<V, const TAG: u64> StructuralPartialEq for Accepted<V, TAG>"],["impl<V, const TAG: u64> StructuralPartialEq for Required<V, TAG>"]], +"ciborium":[["impl<V> StructuralPartialEq for Captured<V>"],["impl StructuralPartialEq for Integer"],["impl<V, const TAG: u64> StructuralPartialEq for Required<V, TAG>"],["impl<V, const TAG: u64> StructuralPartialEq for Accepted<V, TAG>"],["impl StructuralPartialEq for Value"]], "ciborium_ll":[["impl StructuralPartialEq for Header"]], "comfy_table":[["impl StructuralPartialEq for Width"],["impl StructuralPartialEq for Color"],["impl StructuralPartialEq for TableComponent"],["impl StructuralPartialEq for ColumnConstraint"],["impl StructuralPartialEq for Attribute"]], "crossbeam_channel":[["impl StructuralPartialEq for TryRecvError"],["impl StructuralPartialEq for RecvTimeoutError"],["impl<T> StructuralPartialEq for SendError<T>"],["impl<T> StructuralPartialEq for TrySendError<T>"],["impl StructuralPartialEq for RecvError"],["impl<T> StructuralPartialEq for SendTimeoutError<T>"],["impl StructuralPartialEq for TrySelectError"],["impl StructuralPartialEq for ReadyTimeoutError"],["impl StructuralPartialEq for SelectTimeoutError"],["impl StructuralPartialEq for TryReadyError"]], @@ -53,22 +53,22 @@ "ndarray":[["impl StructuralPartialEq for Axis"],["impl<I: ?Sized> StructuralPartialEq for Dim<I>"],["impl StructuralPartialEq for IxDynImpl"],["impl StructuralPartialEq for Slice"],["impl StructuralPartialEq for Order"],["impl StructuralPartialEq for SliceInfoElem"]], "num_complex":[["impl<T> StructuralPartialEq for Complex<T>"],["impl<E> StructuralPartialEq for ParseComplexError<E>"]], "num_integer":[["impl<A> StructuralPartialEq for ExtendedGcd<A>"]], -"object_store":[["impl<'a> StructuralPartialEq for PathPart<'a>"],["impl StructuralPartialEq for Path"],["impl StructuralPartialEq for ObjectMeta"]], +"object_store":[["impl StructuralPartialEq for ObjectMeta"],["impl StructuralPartialEq for Path"],["impl<'a> StructuralPartialEq for PathPart<'a>"]], "parking_lot":[["impl StructuralPartialEq for WaitTimeoutResult"],["impl StructuralPartialEq for OnceState"]], "parking_lot_core":[["impl StructuralPartialEq for ParkResult"],["impl StructuralPartialEq for RequeueOp"],["impl StructuralPartialEq for UnparkResult"],["impl StructuralPartialEq for UnparkToken"],["impl StructuralPartialEq for FilterOp"],["impl StructuralPartialEq for ParkToken"]], "parquet2":[["impl StructuralPartialEq for GzipLevel"],["impl StructuralPartialEq for Version"],["impl StructuralPartialEq for GroupConvertedType"],["impl StructuralPartialEq for FixedLenStatistics"],["impl StructuralPartialEq for FixedLenByteIndex"],["impl StructuralPartialEq for Encoding"],["impl StructuralPartialEq for CompressionOptions"],["impl StructuralPartialEq for PrimitiveLogicalType"],["impl<T> StructuralPartialEq for PageIndex<T>"],["impl<'a> StructuralPartialEq for HybridEncoded<'a>"],["impl<'a> StructuralPartialEq for HybridEncoded<'a>"],["impl StructuralPartialEq for Repetition"],["impl StructuralPartialEq for Compression"],["impl StructuralPartialEq for IntegerType"],["impl StructuralPartialEq for SortOrder"],["impl StructuralPartialEq for ColumnDescriptor"],["impl<T: NativeType> StructuralPartialEq for PrimitiveStatistics<T>"],["impl StructuralPartialEq for PageType"],["impl StructuralPartialEq for Descriptor"],["impl<T: NativeType> StructuralPartialEq for NativeIndex<T>"],["impl StructuralPartialEq for ColumnOrder"],["impl StructuralPartialEq for GroupLogicalType"],["impl StructuralPartialEq for Feature"],["impl StructuralPartialEq for BinaryStatistics"],["impl StructuralPartialEq for ByteIndex"],["impl StructuralPartialEq for FilteredPage"],["impl StructuralPartialEq for ParquetType"],["impl StructuralPartialEq for PrimitiveConvertedType"],["impl StructuralPartialEq for PrimitiveType"],["impl StructuralPartialEq for Interval"],["impl<'a> StructuralPartialEq for FilteredHybridEncoded<'a>"],["impl StructuralPartialEq for BrotliLevel"],["impl<'a, I: Iterator<Item = Result<HybridEncoded<'a>, Error>>> StructuralPartialEq for FilteredHybridBitmapIter<'a, I>"],["impl StructuralPartialEq for ZstdLevel"],["impl StructuralPartialEq for PhysicalType"],["impl StructuralPartialEq for BooleanIndex"],["impl StructuralPartialEq for TimeUnit"],["impl StructuralPartialEq for FieldInfo"],["impl StructuralPartialEq for BoundaryOrder"],["impl StructuralPartialEq for WriteOptions"],["impl StructuralPartialEq for PageMetaData"],["impl StructuralPartialEq for BooleanStatistics"]], "parquet_format_safe":[["impl StructuralPartialEq for RowGroup"],["impl StructuralPartialEq for EncryptionWithColumnKey"],["impl StructuralPartialEq for ColumnMetaData"],["impl StructuralPartialEq for SortingColumn"],["impl StructuralPartialEq for ColumnOrder"],["impl StructuralPartialEq for ProtocolError"],["impl StructuralPartialEq for MapType"],["impl StructuralPartialEq for XxHash"],["impl StructuralPartialEq for ColumnIndex"],["impl StructuralPartialEq for TMessageType"],["impl StructuralPartialEq for PageHeader"],["impl StructuralPartialEq for ColumnChunk"],["impl StructuralPartialEq for StringType"],["impl StructuralPartialEq for OffsetIndex"],["impl StructuralPartialEq for DataPageHeaderV2"],["impl StructuralPartialEq for TransportErrorKind"],["impl StructuralPartialEq for PageEncodingStats"],["impl StructuralPartialEq for FileCryptoMetaData"],["impl StructuralPartialEq for BsonType"],["impl StructuralPartialEq for FileMetaData"],["impl StructuralPartialEq for MilliSeconds"],["impl StructuralPartialEq for AesGcmV1"],["impl StructuralPartialEq for ListType"],["impl StructuralPartialEq for IndexPageHeader"],["impl StructuralPartialEq for BloomFilterHash"],["impl StructuralPartialEq for SplitBlockAlgorithm"],["impl StructuralPartialEq for Type"],["impl StructuralPartialEq for BloomFilterCompression"],["impl StructuralPartialEq for EncryptionAlgorithm"],["impl StructuralPartialEq for TimeType"],["impl StructuralPartialEq for BloomFilterHeader"],["impl StructuralPartialEq for TypeDefinedOrder"],["impl StructuralPartialEq for PageType"],["impl StructuralPartialEq for DataPageHeader"],["impl StructuralPartialEq for TimeUnit"],["impl StructuralPartialEq for DecimalType"],["impl StructuralPartialEq for SchemaElement"],["impl StructuralPartialEq for ConvertedType"],["impl StructuralPartialEq for DateType"],["impl StructuralPartialEq for TMessageIdentifier"],["impl StructuralPartialEq for TStructIdentifier"],["impl StructuralPartialEq for Uncompressed"],["impl StructuralPartialEq for LogicalType"],["impl StructuralPartialEq for TFieldIdentifier"],["impl StructuralPartialEq for BloomFilterAlgorithm"],["impl StructuralPartialEq for DictionaryPageHeader"],["impl StructuralPartialEq for FieldRepetitionType"],["impl StructuralPartialEq for TMapIdentifier"],["impl StructuralPartialEq for ApplicationError"],["impl StructuralPartialEq for BoundaryOrder"],["impl StructuralPartialEq for TType"],["impl StructuralPartialEq for JsonType"],["impl StructuralPartialEq for EnumType"],["impl StructuralPartialEq for NullType"],["impl StructuralPartialEq for AesGcmCtrV1"],["impl StructuralPartialEq for KeyValue"],["impl StructuralPartialEq for TransportError"],["impl StructuralPartialEq for ColumnCryptoMetaData"],["impl StructuralPartialEq for TimestampType"],["impl StructuralPartialEq for PageLocation"],["impl StructuralPartialEq for IntType"],["impl StructuralPartialEq for CompressionCodec"],["impl StructuralPartialEq for UUIDType"],["impl StructuralPartialEq for NanoSeconds"],["impl StructuralPartialEq for TSetIdentifier"],["impl StructuralPartialEq for MicroSeconds"],["impl StructuralPartialEq for Statistics"],["impl StructuralPartialEq for ApplicationErrorKind"],["impl StructuralPartialEq for Encoding"],["impl StructuralPartialEq for EncryptionWithFooterKey"],["impl StructuralPartialEq for TListIdentifier"],["impl StructuralPartialEq for ProtocolErrorKind"]], "polars_arrow":[["impl StructuralPartialEq for QuantileInterpolOptions"]], -"polars_core":[["impl StructuralPartialEq for CloudOptions"],["impl<'a> StructuralPartialEq for Row<'a>"],["impl StructuralPartialEq for GroupsProxy"],["impl StructuralPartialEq for SortOptions"],["impl StructuralPartialEq for JoinArgs"],["impl StructuralPartialEq for TimeUnit"],["impl StructuralPartialEq for JoinType"],["impl StructuralPartialEq for JoinValidation"],["impl StructuralPartialEq for GroupsIdx"],["impl StructuralPartialEq for NullBehavior"],["impl StructuralPartialEq for MeltArgs"],["impl StructuralPartialEq for UniqueKeepStrategy"],["impl StructuralPartialEq for Field"],["impl StructuralPartialEq for IsSorted"]], -"polars_io":[["impl StructuralPartialEq for ZstdLevel"],["impl StructuralPartialEq for ParquetCompression"],["impl StructuralPartialEq for IpcCompression"],["impl StructuralPartialEq for ParallelStrategy"],["impl StructuralPartialEq for BrotliLevel"],["impl StructuralPartialEq for CsvEncoding"],["impl StructuralPartialEq for NullValues"],["impl StructuralPartialEq for RowCount"],["impl StructuralPartialEq for GzipLevel"]], +"polars_core":[["impl StructuralPartialEq for Field"],["impl StructuralPartialEq for SortOptions"],["impl StructuralPartialEq for JoinArgs"],["impl StructuralPartialEq for NullBehavior"],["impl StructuralPartialEq for GroupsIdx"],["impl StructuralPartialEq for UniqueKeepStrategy"],["impl StructuralPartialEq for GroupsProxy"],["impl StructuralPartialEq for JoinType"],["impl StructuralPartialEq for CloudOptions"],["impl<'a> StructuralPartialEq for Row<'a>"],["impl StructuralPartialEq for JoinValidation"],["impl StructuralPartialEq for MeltArgs"],["impl StructuralPartialEq for TimeUnit"],["impl StructuralPartialEq for IsSorted"]], +"polars_io":[["impl StructuralPartialEq for CsvEncoding"],["impl StructuralPartialEq for IpcCompression"],["impl StructuralPartialEq for BrotliLevel"],["impl StructuralPartialEq for ParallelStrategy"],["impl StructuralPartialEq for NullValues"],["impl StructuralPartialEq for GzipLevel"],["impl StructuralPartialEq for RowCount"],["impl StructuralPartialEq for ParquetCompression"],["impl StructuralPartialEq for ZstdLevel"]], "polars_ops":[["impl StructuralPartialEq for SearchSortedSide"]], -"polars_plan":[["impl StructuralPartialEq for WindowMapping"],["impl StructuralPartialEq for AggExpr"],["impl StructuralPartialEq for FunctionOptions"],["impl StructuralPartialEq for FileScanOptions"],["impl StructuralPartialEq for ParquetWriteOptions"],["impl StructuralPartialEq for Excluded"],["impl StructuralPartialEq for FunctionExpr"],["impl StructuralPartialEq for LiteralValue"],["impl StructuralPartialEq for WindowOptions"],["impl StructuralPartialEq for IpcWriterOptions"],["impl StructuralPartialEq for ParquetOptions"],["impl StructuralPartialEq for SortArguments"],["impl StructuralPartialEq for AnonymousScanOptions"],["impl StructuralPartialEq for CsvParserOptions"],["impl StructuralPartialEq for Operator"],["impl StructuralPartialEq for Expr"],["impl StructuralPartialEq for FileFingerPrint"],["impl StructuralPartialEq for LogicalPlanUdfOptions"],["impl StructuralPartialEq for GroupbyOptions"],["impl StructuralPartialEq for JoinOptions"],["impl StructuralPartialEq for DistinctOptions"],["impl StructuralPartialEq for UnsafeBool"],["impl StructuralPartialEq for StrptimeOptions"],["impl StructuralPartialEq for RollingCovOptions"],["impl StructuralPartialEq for IpcScanOptions"],["impl StructuralPartialEq for BooleanFunction"],["impl StructuralPartialEq for UnionOptions"],["impl StructuralPartialEq for FileScan"],["impl StructuralPartialEq for ApplyOptions"]], -"polars_time":[["impl StructuralPartialEq for DynamicGroupOptions"],["impl StructuralPartialEq for ClosedWindow"],["impl StructuralPartialEq for Duration"],["impl StructuralPartialEq for RollingGroupOptions"],["impl StructuralPartialEq for StartBy"],["impl StructuralPartialEq for TruncateOptions"],["impl StructuralPartialEq for Pattern"]], +"polars_plan":[["impl StructuralPartialEq for IpcWriterOptions"],["impl StructuralPartialEq for UnionOptions"],["impl StructuralPartialEq for AnonymousScanOptions"],["impl StructuralPartialEq for StrptimeOptions"],["impl StructuralPartialEq for IpcScanOptions"],["impl StructuralPartialEq for LogicalPlanUdfOptions"],["impl StructuralPartialEq for GroupbyOptions"],["impl StructuralPartialEq for WindowMapping"],["impl StructuralPartialEq for FunctionExpr"],["impl StructuralPartialEq for DistinctOptions"],["impl StructuralPartialEq for FileFingerPrint"],["impl StructuralPartialEq for Operator"],["impl StructuralPartialEq for CsvParserOptions"],["impl StructuralPartialEq for FunctionOptions"],["impl StructuralPartialEq for Expr"],["impl StructuralPartialEq for Excluded"],["impl StructuralPartialEq for JoinOptions"],["impl StructuralPartialEq for ApplyOptions"],["impl StructuralPartialEq for FileScan"],["impl StructuralPartialEq for UnsafeBool"],["impl StructuralPartialEq for ParquetOptions"],["impl StructuralPartialEq for SortArguments"],["impl StructuralPartialEq for LiteralValue"],["impl StructuralPartialEq for FileScanOptions"],["impl StructuralPartialEq for ParquetWriteOptions"],["impl StructuralPartialEq for BooleanFunction"],["impl StructuralPartialEq for AggExpr"],["impl StructuralPartialEq for RollingCovOptions"],["impl StructuralPartialEq for WindowOptions"]], +"polars_time":[["impl StructuralPartialEq for RollingGroupOptions"],["impl StructuralPartialEq for DynamicGroupOptions"],["impl StructuralPartialEq for StartBy"],["impl StructuralPartialEq for Pattern"],["impl StructuralPartialEq for ClosedWindow"],["impl StructuralPartialEq for TruncateOptions"],["impl StructuralPartialEq for Duration"]], "polars_utils":[["impl StructuralPartialEq for Node"]], "proc_macro2":[["impl StructuralPartialEq for Spacing"],["impl StructuralPartialEq for Delimiter"]], "pyo3":[["impl<'a> StructuralPartialEq for PyStringData<'a>"],["impl StructuralPartialEq for PySliceIndices"],["impl StructuralPartialEq for ElementType"]], "pyo3_ffi":[["impl StructuralPartialEq for PySendResult"],["impl StructuralPartialEq for PyGetSetDef"],["impl StructuralPartialEq for PyMethodDef"],["impl StructuralPartialEq for _PyStatus_TYPE"],["impl StructuralPartialEq for PyModuleDef_Slot"],["impl StructuralPartialEq for PyMemberDef"],["impl StructuralPartialEq for PyGILState_STATE"]], -"quick_xml":[["impl<'a> StructuralPartialEq for PayloadEvent<'a>"],["impl StructuralPartialEq for QuoteLevel"],["impl<'ns> StructuralPartialEq for ResolveResult<'ns>"],["impl<'a> StructuralPartialEq for QName<'a>"],["impl<'a> StructuralPartialEq for DeEvent<'a>"],["impl<'a> StructuralPartialEq for BytesDecl<'a>"],["impl<'a> StructuralPartialEq for BytesText<'a>"],["impl StructuralPartialEq for Decoder"],["impl StructuralPartialEq for AttrError"],["impl<'a> StructuralPartialEq for PrefixDeclaration<'a>"],["impl<T> StructuralPartialEq for Attr<T>"],["impl<'a> StructuralPartialEq for Prefix<'a>"],["impl<'a> StructuralPartialEq for BytesStart<'a>"],["impl<'a> StructuralPartialEq for Attribute<'a>"],["impl<'a> StructuralPartialEq for Event<'a>"],["impl<'a> StructuralPartialEq for Text<'a>"],["impl<'a> StructuralPartialEq for BytesCData<'a>"],["impl<'a> StructuralPartialEq for BytesEnd<'a>"],["impl<'a> StructuralPartialEq for LocalName<'a>"],["impl<'a> StructuralPartialEq for Namespace<'a>"]], +"quick_xml":[["impl<'a> StructuralPartialEq for BytesEnd<'a>"],["impl<'a> StructuralPartialEq for PayloadEvent<'a>"],["impl<T> StructuralPartialEq for Attr<T>"],["impl<'a> StructuralPartialEq for Namespace<'a>"],["impl<'ns> StructuralPartialEq for ResolveResult<'ns>"],["impl<'a> StructuralPartialEq for Event<'a>"],["impl<'a> StructuralPartialEq for DeEvent<'a>"],["impl<'a> StructuralPartialEq for Attribute<'a>"],["impl<'a> StructuralPartialEq for BytesDecl<'a>"],["impl<'a> StructuralPartialEq for QName<'a>"],["impl StructuralPartialEq for Decoder"],["impl StructuralPartialEq for AttrError"],["impl<'a> StructuralPartialEq for PrefixDeclaration<'a>"],["impl<'a> StructuralPartialEq for BytesText<'a>"],["impl<'a> StructuralPartialEq for BytesStart<'a>"],["impl<'a> StructuralPartialEq for LocalName<'a>"],["impl<'a> StructuralPartialEq for Prefix<'a>"],["impl StructuralPartialEq for QuoteLevel"],["impl<'a> StructuralPartialEq for BytesCData<'a>"],["impl<'a> StructuralPartialEq for Text<'a>"]], "rand":[["impl StructuralPartialEq for WeightedError"],["impl<X: SampleUniform + PartialOrd> StructuralPartialEq for WeightedIndex<X>"],["impl StructuralPartialEq for StepRng"],["impl StructuralPartialEq for SmallRng"],["impl StructuralPartialEq for StdRng"],["impl StructuralPartialEq for Bernoulli"],["impl<X> StructuralPartialEq for UniformInt<X>"],["impl<X> StructuralPartialEq for UniformFloat<X>"],["impl StructuralPartialEq for BernoulliError"],["impl<X: SampleUniform> StructuralPartialEq for Uniform<X>"]], "rand_chacha":[["impl StructuralPartialEq for ChaCha12Core"],["impl StructuralPartialEq for ChaCha20Core"],["impl StructuralPartialEq for ChaCha8Core"]], "rand_distr":[["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for BetaError"],["impl StructuralPartialEq for ZipfError"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for FisherFError"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for TriangularError"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for ZetaError"],["impl StructuralPartialEq for ChiSquaredError"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for PertError"]], @@ -82,16 +82,16 @@ "rustls_pemfile":[["impl StructuralPartialEq for Item"]], "same_file":[["impl StructuralPartialEq for Handle"]], "sct":[["impl StructuralPartialEq for Error"]], -"serde":[["impl<'a> StructuralPartialEq for Unexpected<'a>"],["impl StructuralPartialEq for IgnoredAny"],["impl StructuralPartialEq for Error"]], -"serde_json":[["impl StructuralPartialEq for Category"],["impl StructuralPartialEq for Value"],["impl StructuralPartialEq for Number"]], +"serde":[["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for IgnoredAny"],["impl<'a> StructuralPartialEq for Unexpected<'a>"]], +"serde_json":[["impl StructuralPartialEq for Category"],["impl StructuralPartialEq for Number"],["impl StructuralPartialEq for Value"]], "serde_urlencoded":[["impl StructuralPartialEq for Error"]], "signal_hook_registry":[["impl StructuralPartialEq for SigId"]], -"simd_json":[["impl StructuralPartialEq for Error"],["impl<'input> StructuralPartialEq for Node<'input>"],["impl StructuralPartialEq for Error"],["impl<'key> StructuralPartialEq for KnownKey<'key>"]], +"simd_json":[["impl<'input> StructuralPartialEq for Node<'input>"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for Error"],["impl<'key> StructuralPartialEq for KnownKey<'key>"]], "simdutf8":[["impl StructuralPartialEq for Utf8Error"],["impl StructuralPartialEq for Utf8Error"]], "socket2":[["impl StructuralPartialEq for Domain"],["impl StructuralPartialEq for Protocol"],["impl StructuralPartialEq for RecvFlags"],["impl StructuralPartialEq for Type"]], "sqlparser":[["impl StructuralPartialEq for SqlOption"],["impl StructuralPartialEq for Distinct"],["impl StructuralPartialEq for GeneratedAs"],["impl StructuralPartialEq for JoinConstraint"],["impl StructuralPartialEq for Expr"],["impl StructuralPartialEq for ObjectType"],["impl StructuralPartialEq for FunctionArg"],["impl StructuralPartialEq for TrimWhereField"],["impl StructuralPartialEq for ExactNumberInfo"],["impl StructuralPartialEq for Table"],["impl StructuralPartialEq for HiveDistributionStyle"],["impl StructuralPartialEq for ExceptSelectItem"],["impl StructuralPartialEq for Array"],["impl StructuralPartialEq for CharLengthUnits"],["impl StructuralPartialEq for ListAgg"],["impl StructuralPartialEq for Assignment"],["impl StructuralPartialEq for DateTimeField"],["impl StructuralPartialEq for SqliteOnConflict"],["impl StructuralPartialEq for TransactionAccessMode"],["impl StructuralPartialEq for Privileges"],["impl StructuralPartialEq for CreateTableBuilder"],["impl StructuralPartialEq for WindowFrame"],["impl StructuralPartialEq for ObjectName"],["impl StructuralPartialEq for Location"],["impl StructuralPartialEq for JsonOperator"],["impl StructuralPartialEq for Ident"],["impl StructuralPartialEq for TransactionMode"],["impl StructuralPartialEq for WindowFrameBound"],["impl StructuralPartialEq for CharacterLength"],["impl StructuralPartialEq for ReplaceSelectElement"],["impl StructuralPartialEq for SequenceOptions"],["impl StructuralPartialEq for OnConflict"],["impl StructuralPartialEq for DollarQuotedString"],["impl StructuralPartialEq for TimezoneInfo"],["impl StructuralPartialEq for Interval"],["impl StructuralPartialEq for KillType"],["impl StructuralPartialEq for Query"],["impl StructuralPartialEq for ParserOptions"],["impl StructuralPartialEq for OnConflictAction"],["impl StructuralPartialEq for Keyword"],["impl StructuralPartialEq for FunctionArgExpr"],["impl StructuralPartialEq for DropFunctionOption"],["impl StructuralPartialEq for TableWithJoins"],["impl StructuralPartialEq for Value"],["impl StructuralPartialEq for ListAggOnOverflow"],["impl StructuralPartialEq for SelectInto"],["impl StructuralPartialEq for HiveFormat"],["impl StructuralPartialEq for UnaryOperator"],["impl StructuralPartialEq for FetchDirection"],["impl StructuralPartialEq for Offset"],["impl StructuralPartialEq for ShowCreateObject"],["impl StructuralPartialEq for ShowStatementFilter"],["impl StructuralPartialEq for SelectItem"],["impl StructuralPartialEq for Join"],["impl StructuralPartialEq for WildcardAdditionalOptions"],["impl StructuralPartialEq for Statement"],["impl StructuralPartialEq for WindowSpec"],["impl StructuralPartialEq for StageLoadSelectItem"],["impl StructuralPartialEq for IsOptional"],["impl StructuralPartialEq for DataLoadingOptions"],["impl StructuralPartialEq for AnalyzeFormat"],["impl StructuralPartialEq for DataType"],["impl StructuralPartialEq for ColumnOptionDef"],["impl StructuralPartialEq for DoUpdate"],["impl StructuralPartialEq for SearchModifier"],["impl StructuralPartialEq for CommentObject"],["impl StructuralPartialEq for ParserError"],["impl StructuralPartialEq for NamedWindowDefinition"],["impl StructuralPartialEq for BinaryOperator"],["impl StructuralPartialEq for SchemaName"],["impl StructuralPartialEq for CreateFunctionBody"],["impl StructuralPartialEq for TokenizerError"],["impl StructuralPartialEq for ReferentialAction"],["impl StructuralPartialEq for ContextModifier"],["impl StructuralPartialEq for CopyLegacyCsvOption"],["impl StructuralPartialEq for WindowType"],["impl StructuralPartialEq for OnInsert"],["impl StructuralPartialEq for CreateFunctionUsing"],["impl StructuralPartialEq for Fetch"],["impl StructuralPartialEq for TableAlias"],["impl StructuralPartialEq for Password"],["impl StructuralPartialEq for OrderByExpr"],["impl StructuralPartialEq for AddDropSync"],["impl StructuralPartialEq for Token"],["impl StructuralPartialEq for FunctionBehavior"],["impl StructuralPartialEq for ColumnDef"],["impl StructuralPartialEq for SetOperator"],["impl StructuralPartialEq for DataLoadingOption"],["impl StructuralPartialEq for OffsetRows"],["impl StructuralPartialEq for CopyOption"],["impl StructuralPartialEq for GrantObjects"],["impl StructuralPartialEq for IndexType"],["impl StructuralPartialEq for ReplaceSelectItem"],["impl StructuralPartialEq for KeyOrIndexDisplay"],["impl StructuralPartialEq for SetQuantifier"],["impl StructuralPartialEq for JoinOperator"],["impl StructuralPartialEq for HiveRowFormat"],["impl StructuralPartialEq for LateralView"],["impl StructuralPartialEq for Cte"],["impl StructuralPartialEq for MinMaxValue"],["impl StructuralPartialEq for DiscardObject"],["impl StructuralPartialEq for LockClause"],["impl StructuralPartialEq for CopySource"],["impl StructuralPartialEq for DataLoadingOptionType"],["impl StructuralPartialEq for AlterColumnOperation"],["impl StructuralPartialEq for LockType"],["impl StructuralPartialEq for TransactionIsolationLevel"],["impl StructuralPartialEq for ExcludeSelectItem"],["impl StructuralPartialEq for DropFunctionDesc"],["impl StructuralPartialEq for ConflictTarget"],["impl StructuralPartialEq for RenameSelectItem"],["impl StructuralPartialEq for ColumnOption"],["impl StructuralPartialEq for CopyLegacyOption"],["impl StructuralPartialEq for Function"],["impl StructuralPartialEq for FunctionDefinition"],["impl StructuralPartialEq for Action"],["impl StructuralPartialEq for TableConstraint"],["impl StructuralPartialEq for Whitespace"],["impl StructuralPartialEq for TokenWithLocation"],["impl StructuralPartialEq for OnCommit"],["impl StructuralPartialEq for Select"],["impl StructuralPartialEq for CopyTarget"],["impl StructuralPartialEq for ArrayAgg"],["impl StructuralPartialEq for AlterTableOperation"],["impl StructuralPartialEq for Values"],["impl StructuralPartialEq for Top"],["impl StructuralPartialEq for AlterIndexOperation"],["impl StructuralPartialEq for Word"],["impl StructuralPartialEq for OperateFunctionArg"],["impl StructuralPartialEq for MergeClause"],["impl StructuralPartialEq for SetExpr"],["impl StructuralPartialEq for ArgMode"],["impl StructuralPartialEq for WindowFrameUnits"],["impl StructuralPartialEq for HiveIOFormat"],["impl StructuralPartialEq for FileFormat"],["impl StructuralPartialEq for StageParamsObject"],["impl StructuralPartialEq for CloseCursor"],["impl StructuralPartialEq for NonBlock"],["impl StructuralPartialEq for IdentWithAlias"],["impl StructuralPartialEq for With"],["impl StructuralPartialEq for TableFactor"]], "strum":[["impl StructuralPartialEq for ParseError"]], -"sysinfo":[["impl StructuralPartialEq for DiskUsage"],["impl StructuralPartialEq for Signal"],["impl StructuralPartialEq for DiskKind"],["impl StructuralPartialEq for ProcessRefreshKind"],["impl StructuralPartialEq for Pid"],["impl StructuralPartialEq for MacAddr"],["impl StructuralPartialEq for Disk"],["impl StructuralPartialEq for ProcessStatus"],["impl StructuralPartialEq for CpuRefreshKind"],["impl StructuralPartialEq for Gid"],["impl StructuralPartialEq for User"],["impl StructuralPartialEq for Uid"],["impl StructuralPartialEq for RefreshKind"]], +"sysinfo":[["impl StructuralPartialEq for Signal"],["impl StructuralPartialEq for ProcessRefreshKind"],["impl StructuralPartialEq for Disk"],["impl StructuralPartialEq for User"],["impl StructuralPartialEq for Gid"],["impl StructuralPartialEq for DiskKind"],["impl StructuralPartialEq for RefreshKind"],["impl StructuralPartialEq for ProcessStatus"],["impl StructuralPartialEq for Pid"],["impl StructuralPartialEq for DiskUsage"],["impl StructuralPartialEq for CpuRefreshKind"],["impl StructuralPartialEq for Uid"],["impl StructuralPartialEq for MacAddr"]], "target_features":[["impl StructuralPartialEq for Architecture"],["impl StructuralPartialEq for Target"],["impl StructuralPartialEq for Feature"]], "time":[["impl StructuralPartialEq for SteadyTime"],["impl StructuralPartialEq for Tm"],["impl StructuralPartialEq for OutOfRangeError"],["impl StructuralPartialEq for Timespec"],["impl StructuralPartialEq for ParseError"],["impl StructuralPartialEq for Duration"]], "tokio":[["impl StructuralPartialEq for UCred"],["impl StructuralPartialEq for Ready"],["impl StructuralPartialEq for PipeMode"],["impl StructuralPartialEq for Interest"],["impl StructuralPartialEq for PipeEnd"]], @@ -101,7 +101,7 @@ "unicode_normalization":[["impl StructuralPartialEq for IsNormalized"]], "untrusted":[["impl StructuralPartialEq for EndOfInput"]], "url":[["impl StructuralPartialEq for ParseError"],["impl StructuralPartialEq for SyntaxViolation"],["impl StructuralPartialEq for OpaqueOrigin"],["impl StructuralPartialEq for Origin"]], -"value_trait":[["impl StructuralPartialEq for AccessError"],["impl StructuralPartialEq for ValueType"],["impl StructuralPartialEq for ExtendedValueType"]], +"value_trait":[["impl StructuralPartialEq for AccessError"],["impl StructuralPartialEq for ExtendedValueType"],["impl StructuralPartialEq for ValueType"]], "webpki":[["impl StructuralPartialEq for Time"],["impl StructuralPartialEq for Error"],["impl StructuralPartialEq for InvalidDnsNameError"]], "zstd_safe":[["impl StructuralPartialEq for CParameter"]], "zstd_sys":[["impl StructuralPartialEq for ZSTD_EndDirective"],["impl StructuralPartialEq for ZSTD_dParameter"],["impl StructuralPartialEq for ZSTD_cParameter"],["impl StructuralPartialEq for ZSTD_strategy"],["impl StructuralPartialEq for ZSTD_ResetDirective"]] diff --git a/implementors/core/marker/trait.Sync.js b/implementors/core/marker/trait.Sync.js index e951d668af82..bc068b9faf07 100644 --- a/implementors/core/marker/trait.Sync.js +++ b/implementors/core/marker/trait.Sync.js @@ -107,7 +107,7 @@ "polars_arrow":[["impl<'a> Sync for AnonymousBuilder<'a>",1,["polars_arrow::array::list::AnonymousBuilder"]],["impl Sync for MutableNullArray",1,["polars_arrow::array::null::MutableNullArray"]],["impl<T> Sync for OrdFloat<T>where\n T: Sync,",1,["polars_arrow::floats::ord::OrdFloat"]],["impl Sync for EWMOptions",1,["polars_arrow::kernels::ewm::EWMOptions"]],["impl<'a, T> Sync for MeanWindow<'a, T>where\n T: Sync,",1,["polars_arrow::kernels::rolling::no_nulls::mean::MeanWindow"]],["impl<'a, T> Sync for MinWindow<'a, T>",1,["polars_arrow::kernels::rolling::no_nulls::min_max::MinWindow"]],["impl<'a, T> Sync for MaxWindow<'a, T>",1,["polars_arrow::kernels::rolling::no_nulls::min_max::MaxWindow"]],["impl<'a, T> Sync for QuantileWindow<'a, T>",1,["polars_arrow::kernels::rolling::no_nulls::quantile::QuantileWindow"]],["impl<'a, T> Sync for SumWindow<'a, T>where\n T: Sync,",1,["polars_arrow::kernels::rolling::no_nulls::sum::SumWindow"]],["impl<'a, T> Sync for VarWindow<'a, T>where\n T: Sync,",1,["polars_arrow::kernels::rolling::no_nulls::variance::VarWindow"]],["impl Sync for QuantileInterpolOptions",1,["polars_arrow::kernels::rolling::no_nulls::QuantileInterpolOptions"]],["impl<'a, T> Sync for MeanWindow<'a, T>where\n T: Sync,",1,["polars_arrow::kernels::rolling::nulls::mean::MeanWindow"]],["impl<'a, T> Sync for SortedMinMax<'a, T>",1,["polars_arrow::kernels::rolling::nulls::min_max::SortedMinMax"]],["impl<'a, T> Sync for MinMaxWindow<'a, T>",1,["polars_arrow::kernels::rolling::nulls::min_max::MinMaxWindow"]],["impl<'a, T> Sync for MinWindow<'a, T>",1,["polars_arrow::kernels::rolling::nulls::min_max::MinWindow"]],["impl<'a, T> Sync for MaxWindow<'a, T>",1,["polars_arrow::kernels::rolling::nulls::min_max::MaxWindow"]],["impl<'a, T> Sync for QuantileWindow<'a, T>",1,["polars_arrow::kernels::rolling::nulls::quantile::QuantileWindow"]],["impl<'a, T> Sync for SumWindow<'a, T>where\n T: Sync,",1,["polars_arrow::kernels::rolling::nulls::sum::SumWindow"]],["impl<'a, T> Sync for VarWindow<'a, T>where\n T: Sync,",1,["polars_arrow::kernels::rolling::nulls::variance::VarWindow"]],["impl Sync for RollingVarParams",1,["polars_arrow::kernels::rolling::RollingVarParams"]],["impl Sync for RollingQuantileParams",1,["polars_arrow::kernels::rolling::RollingQuantileParams"]],["impl Sync for Tz",1,["polars_arrow::time_zone::Tz"]],["impl<I, J> Sync for TrustMyLength<I, J>where\n I: Sync,",1,["polars_arrow::utils::TrustMyLength"]]], "polars_core":[["impl<T> Sync for Wrap<T>where\n T: Sync,",1,["polars_core::utils::Wrap"]],["impl<T> Sync for NoNull<T>where\n T: Sync,",1,["polars_core::utils::NoNull"]],["impl<N, S, M> Sync for TakeRandBranch3<N, S, M>where\n M: Sync,\n N: Sync,\n S: Sync,",1,["polars_core::chunked_array::ops::take::take_random::TakeRandBranch3"]],["impl<S, M> Sync for TakeRandBranch2<S, M>where\n M: Sync,\n S: Sync,",1,["polars_core::chunked_array::ops::take::take_random::TakeRandBranch2"]],["impl<'a> Sync for Utf8TakeRandom<'a>",1,["polars_core::chunked_array::ops::take::take_random::Utf8TakeRandom"]],["impl<'a> Sync for Utf8TakeRandomSingleChunk<'a>",1,["polars_core::chunked_array::ops::take::take_random::Utf8TakeRandomSingleChunk"]],["impl<'a> Sync for BinaryTakeRandom<'a>",1,["polars_core::chunked_array::ops::take::take_random::BinaryTakeRandom"]],["impl<'a> Sync for BinaryTakeRandomSingleChunk<'a>",1,["polars_core::chunked_array::ops::take::take_random::BinaryTakeRandomSingleChunk"]],["impl<'a, T> Sync for NumTakeRandomChunked<'a, T>",1,["polars_core::chunked_array::ops::take::take_random::NumTakeRandomChunked"]],["impl<'a, T> Sync for NumTakeRandomCont<'a, T>where\n T: Sync,",1,["polars_core::chunked_array::ops::take::take_random::NumTakeRandomCont"]],["impl<'a> Sync for TakeRandomBitmap<'a>",1,["polars_core::chunked_array::ops::take::take_random::TakeRandomBitmap"]],["impl<'a, T> Sync for NumTakeRandomSingleChunk<'a, T>",1,["polars_core::chunked_array::ops::take::take_random::NumTakeRandomSingleChunk"]],["impl<'a> Sync for BoolTakeRandom<'a>",1,["polars_core::chunked_array::ops::take::take_random::BoolTakeRandom"]],["impl<'a> Sync for BoolTakeRandomSingleChunk<'a>",1,["polars_core::chunked_array::ops::take::take_random::BoolTakeRandomSingleChunk"]],["impl<'a> Sync for ListTakeRandom<'a>",1,["polars_core::chunked_array::ops::take::take_random::ListTakeRandom"]],["impl<'a> Sync for ListTakeRandomSingleChunk<'a>",1,["polars_core::chunked_array::ops::take::take_random::ListTakeRandomSingleChunk"]],["impl<'a, I, INulls> Sync for TakeIdx<'a, I, INulls>where\n I: Sync,\n INulls: Sync,",1,["polars_core::chunked_array::ops::take::traits::TakeIdx"]],["impl Sync for SortOptions",1,["polars_core::chunked_array::ops::SortOptions"]],["impl Sync for SortMultipleOptions",1,["polars_core::chunked_array::ops::SortMultipleOptions"]],["impl Sync for FillNullStrategy",1,["polars_core::chunked_array::ops::FillNullStrategy"]],["impl Sync for BinaryChunkedBuilder",1,["polars_core::chunked_array::builder::binary::BinaryChunkedBuilder"]],["impl Sync for BinaryChunkedBuilderCow",1,["polars_core::chunked_array::builder::binary::BinaryChunkedBuilderCow"]],["impl Sync for BooleanChunkedBuilder",1,["polars_core::chunked_array::builder::boolean::BooleanChunkedBuilder"]],["impl<'a> Sync for AnonymousListBuilder<'a>",1,["polars_core::chunked_array::builder::list::anonymous::AnonymousListBuilder"]],["impl Sync for AnonymousOwnedListBuilder",1,["polars_core::chunked_array::builder::list::anonymous::AnonymousOwnedListBuilder"]],["impl Sync for ListUtf8ChunkedBuilder",1,["polars_core::chunked_array::builder::list::binary::ListUtf8ChunkedBuilder"]],["impl Sync for ListBinaryChunkedBuilder",1,["polars_core::chunked_array::builder::list::binary::ListBinaryChunkedBuilder"]],["impl Sync for ListBooleanChunkedBuilder",1,["polars_core::chunked_array::builder::list::boolean::ListBooleanChunkedBuilder"]],["impl<T> Sync for ListPrimitiveChunkedBuilder<T>",1,["polars_core::chunked_array::builder::list::primitive::ListPrimitiveChunkedBuilder"]],["impl<T> Sync for PrimitiveChunkedBuilder<T>",1,["polars_core::chunked_array::builder::primitive::PrimitiveChunkedBuilder"]],["impl Sync for Utf8ChunkedBuilder",1,["polars_core::chunked_array::builder::utf8::Utf8ChunkedBuilder"]],["impl Sync for Utf8ChunkedBuilderCow",1,["polars_core::chunked_array::builder::utf8::Utf8ChunkedBuilderCow"]],["impl<'a> Sync for BoolIterNoNull<'a>",1,["polars_core::chunked_array::iterator::BoolIterNoNull"]],["impl<'a> Sync for Utf8IterNoNull<'a>",1,["polars_core::chunked_array::iterator::Utf8IterNoNull"]],["impl<'a> Sync for BinaryIterNoNull<'a>",1,["polars_core::chunked_array::iterator::BinaryIterNoNull"]],["impl<'a> Sync for ListIterNoNull<'a>",1,["polars_core::chunked_array::iterator::ListIterNoNull"]],["impl<'a> Sync for StructIter<'a>",1,["polars_core::chunked_array::iterator::StructIter"]],["impl<I> Sync for SomeIterator<I>where\n I: Sync,",1,["polars_core::chunked_array::iterator::SomeIterator"]],["impl Sync for StructChunked",1,["polars_core::chunked_array::logical::struct_::StructChunked"]],["impl<Logical, Physical> Sync for Logical<Logical, Physical>",1,["polars_core::chunked_array::logical::Logical"]],["impl Sync for RevMapping",1,["polars_core::chunked_array::RevMapping"]],["impl<T> Sync for ChunkedArray<T>",1,["polars_core::chunked_array::ChunkedArray"]],["impl Sync for CloudOptions",1,["polars_core::cloud::CloudOptions"]],["impl Sync for CloudType",1,["polars_core::cloud::CloudType"]],["impl<'a> Sync for AnyValue<'a>",1,["polars_core::datatypes::any_value::AnyValue"]],["impl Sync for DataType",1,["polars_core::datatypes::dtype::DataType"]],["impl Sync for Field",1,["polars_core::datatypes::field::Field"]],["impl Sync for TimeUnit",1,["polars_core::datatypes::time_unit::TimeUnit"]],["impl Sync for Utf8Type",1,["polars_core::datatypes::Utf8Type"]],["impl Sync for BinaryType",1,["polars_core::datatypes::BinaryType"]],["impl Sync for ListType",1,["polars_core::datatypes::ListType"]],["impl Sync for UInt8Type",1,["polars_core::datatypes::UInt8Type"]],["impl Sync for UInt16Type",1,["polars_core::datatypes::UInt16Type"]],["impl Sync for UInt32Type",1,["polars_core::datatypes::UInt32Type"]],["impl Sync for UInt64Type",1,["polars_core::datatypes::UInt64Type"]],["impl Sync for Int8Type",1,["polars_core::datatypes::Int8Type"]],["impl Sync for Int16Type",1,["polars_core::datatypes::Int16Type"]],["impl Sync for Int32Type",1,["polars_core::datatypes::Int32Type"]],["impl Sync for Int64Type",1,["polars_core::datatypes::Int64Type"]],["impl Sync for Float32Type",1,["polars_core::datatypes::Float32Type"]],["impl Sync for Float64Type",1,["polars_core::datatypes::Float64Type"]],["impl Sync for DateType",1,["polars_core::datatypes::DateType"]],["impl Sync for DatetimeType",1,["polars_core::datatypes::DatetimeType"]],["impl Sync for DurationType",1,["polars_core::datatypes::DurationType"]],["impl Sync for CategoricalType",1,["polars_core::datatypes::CategoricalType"]],["impl Sync for TimeType",1,["polars_core::datatypes::TimeType"]],["impl Sync for BooleanType",1,["polars_core::datatypes::BooleanType"]],["impl Sync for FloatFmt",1,["polars_core::fmt::FloatFmt"]],["impl Sync for MeltArgs",1,["polars_core::frame::explode::MeltArgs"]],["impl Sync for GroupsIdx",1,["polars_core::frame::groupby::proxy::GroupsIdx"]],["impl Sync for GroupsProxy",1,["polars_core::frame::groupby::proxy::GroupsProxy"]],["impl<'a> Sync for GroupsIndicator<'a>",1,["polars_core::frame::groupby::proxy::GroupsIndicator"]],["impl<'a> Sync for GroupsProxyIter<'a>",1,["polars_core::frame::groupby::proxy::GroupsProxyIter"]],["impl<'a> Sync for GroupsProxyParIter<'a>",1,["polars_core::frame::groupby::proxy::GroupsProxyParIter"]],["impl<'a> Sync for SlicedGroups<'a>",1,["polars_core::frame::groupby::proxy::SlicedGroups"]],["impl<'df> Sync for GroupBy<'df>",1,["polars_core::frame::groupby::GroupBy"]],["impl Sync for GroupByMethod",1,["polars_core::frame::groupby::GroupByMethod"]],["impl Sync for JoinArgs",1,["polars_core::frame::hash_join::args::JoinArgs"]],["impl Sync for JoinType",1,["polars_core::frame::hash_join::args::JoinType"]],["impl Sync for JoinValidation",1,["polars_core::frame::hash_join::args::JoinValidation"]],["impl<'a> Sync for AnyValueBuffer<'a>",1,["polars_core::frame::row::av_buffer::AnyValueBuffer"]],["impl<'a> Sync for AnyValueBufferTrusted<'a>",1,["polars_core::frame::row::av_buffer::AnyValueBufferTrusted"]],["impl<'a> Sync for Row<'a>",1,["polars_core::frame::row::Row"]],["impl Sync for NullStrategy",1,["polars_core::frame::NullStrategy"]],["impl Sync for UniqueKeepStrategy",1,["polars_core::frame::UniqueKeepStrategy"]],["impl Sync for DataFrame",1,["polars_core::frame::DataFrame"]],["impl<'a> Sync for RecordBatchIter<'a>",1,["polars_core::frame::RecordBatchIter"]],["impl<'a> Sync for PhysRecordBatchIter<'a>",1,["polars_core::frame::PhysRecordBatchIter"]],["impl Sync for IdHasher",1,["polars_core::hashing::identity::IdHasher"]],["impl Sync for Schema",1,["polars_core::schema::Schema"]],["impl<'a> Sync for SeriesIter<'a>",1,["polars_core::series::iterator::SeriesIter"]],["impl Sync for NullBehavior",1,["polars_core::series::ops::NullBehavior"]],["impl Sync for IsSorted",1,["polars_core::series::series_trait::IsSorted"]],["impl<'a> !Sync for UnstableSeries<'a>",1,["polars_core::series::unstable::UnstableSeries"]],["impl Sync for Series",1,["polars_core::series::Series"]]], "polars_error":[["impl Sync for ErrString",1,["polars_error::ErrString"]],["impl Sync for PolarsError",1,["polars_error::PolarsError"]]], -"polars_io":[["impl<'a> Sync for BatchedCsvReaderMmap<'a>",1,["polars_io::csv::read_impl::batched_mmap::BatchedCsvReaderMmap"]],["impl<'a> Sync for BatchedCsvReaderRead<'a>",1,["polars_io::csv::read_impl::batched_read::BatchedCsvReaderRead"]],["impl Sync for CsvEncoding",1,["polars_io::csv::read::CsvEncoding"]],["impl Sync for NullValues",1,["polars_io::csv::read::NullValues"]],["impl<'a, R> Sync for CsvReader<'a, R>",1,["polars_io::csv::read::CsvReader"]],["impl<W> Sync for CsvWriter<W>where\n W: Sync,",1,["polars_io::csv::write::CsvWriter"]],["impl<R> Sync for IpcReader<R>",1,["polars_io::ipc::ipc_file::IpcReader"]],["impl<W> Sync for IpcWriter<W>where\n W: Sync,",1,["polars_io::ipc::write::IpcWriter"]],["impl<W> Sync for BatchedWriter<W>where\n W: Sync,",1,["polars_io::ipc::write::BatchedWriter"]],["impl Sync for IpcCompression",1,["polars_io::ipc::write::IpcCompression"]],["impl Sync for IpcWriterOption",1,["polars_io::ipc::write::IpcWriterOption"]],["impl Sync for JsonFormat",1,["polars_io::json::JsonFormat"]],["impl<W> Sync for JsonWriter<W>where\n W: Sync,",1,["polars_io::json::JsonWriter"]],["impl<'a, R> Sync for JsonReader<'a, R>",1,["polars_io::json::JsonReader"]],["impl<'a, R> Sync for JsonLineReader<'a, R>",1,["polars_io::ndjson::core::JsonLineReader"]],["impl<'a> Sync for ReaderBytes<'a>",1,["polars_io::mmap::ReaderBytes"]],["impl Sync for RowCount",1,["polars_io::options::RowCount"]],["impl Sync for ColumnStats",1,["polars_io::parquet::predicates::ColumnStats"]],["impl Sync for BatchStats",1,["polars_io::parquet::predicates::BatchStats"]],["impl Sync for ParallelStrategy",1,["polars_io::parquet::read::ParallelStrategy"]],["impl<R> Sync for ParquetReader<R>where\n R: Sync,",1,["polars_io::parquet::read::ParquetReader"]],["impl Sync for BatchedParquetReader",1,["polars_io::parquet::read_impl::BatchedParquetReader"]],["impl Sync for GzipLevel",1,["polars_io::parquet::write::GzipLevel"]],["impl Sync for BrotliLevel",1,["polars_io::parquet::write::BrotliLevel"]],["impl Sync for ZstdLevel",1,["polars_io::parquet::write::ZstdLevel"]],["impl Sync for ParquetCompression",1,["polars_io::parquet::write::ParquetCompression"]],["impl<W> Sync for ParquetWriter<W>where\n W: Sync,",1,["polars_io::parquet::write::ParquetWriter"]],["impl<W> Sync for BatchedWriter<W>where\n W: Sync,",1,["polars_io::parquet::write::BatchedWriter"]],["impl Sync for OwnedBatchedCsvReader"],["impl Sync for OwnedBatchedCsvReaderMmap"]], +"polars_io":[["impl<'a> Sync for BatchedCsvReaderMmap<'a>",1,["polars_io::csv::read_impl::batched_mmap::BatchedCsvReaderMmap"]],["impl<'a> Sync for BatchedCsvReaderRead<'a>",1,["polars_io::csv::read_impl::batched_read::BatchedCsvReaderRead"]],["impl Sync for CsvEncoding",1,["polars_io::csv::read::CsvEncoding"]],["impl Sync for NullValues",1,["polars_io::csv::read::NullValues"]],["impl<'a, R> Sync for CsvReader<'a, R>",1,["polars_io::csv::read::CsvReader"]],["impl<W> Sync for CsvWriter<W>where\n W: Sync,",1,["polars_io::csv::write::CsvWriter"]],["impl<R> Sync for IpcReader<R>",1,["polars_io::ipc::ipc_file::IpcReader"]],["impl<W> Sync for IpcWriter<W>where\n W: Sync,",1,["polars_io::ipc::write::IpcWriter"]],["impl<W> Sync for BatchedWriter<W>where\n W: Sync,",1,["polars_io::ipc::write::BatchedWriter"]],["impl Sync for IpcCompression",1,["polars_io::ipc::write::IpcCompression"]],["impl Sync for IpcWriterOption",1,["polars_io::ipc::write::IpcWriterOption"]],["impl Sync for JsonFormat",1,["polars_io::json::JsonFormat"]],["impl<W> Sync for JsonWriter<W>where\n W: Sync,",1,["polars_io::json::JsonWriter"]],["impl<'a, R> Sync for JsonReader<'a, R>",1,["polars_io::json::JsonReader"]],["impl<'a, R> Sync for JsonLineReader<'a, R>",1,["polars_io::ndjson::core::JsonLineReader"]],["impl<'a> Sync for ReaderBytes<'a>",1,["polars_io::mmap::ReaderBytes"]],["impl Sync for RowCount",1,["polars_io::options::RowCount"]],["impl Sync for ColumnStats",1,["polars_io::parquet::predicates::ColumnStats"]],["impl Sync for BatchStats",1,["polars_io::parquet::predicates::BatchStats"]],["impl Sync for ParallelStrategy",1,["polars_io::parquet::read::ParallelStrategy"]],["impl<R> Sync for ParquetReader<R>where\n R: Sync,",1,["polars_io::parquet::read::ParquetReader"]],["impl Sync for BatchedParquetReader",1,["polars_io::parquet::read_impl::BatchedParquetReader"]],["impl Sync for GzipLevel",1,["polars_io::parquet::write::GzipLevel"]],["impl Sync for BrotliLevel",1,["polars_io::parquet::write::BrotliLevel"]],["impl Sync for ZstdLevel",1,["polars_io::parquet::write::ZstdLevel"]],["impl Sync for ParquetCompression",1,["polars_io::parquet::write::ParquetCompression"]],["impl<W> Sync for ParquetWriter<W>where\n W: Sync,",1,["polars_io::parquet::write::ParquetWriter"]],["impl<W> Sync for BatchedWriter<W>where\n W: Sync,",1,["polars_io::parquet::write::BatchedWriter"]],["impl Sync for OwnedBatchedCsvReaderMmap"],["impl Sync for OwnedBatchedCsvReader"]], "polars_lazy":[["impl Sync for UnionArgs",1,["polars_lazy::dsl::functions::UnionArgs"]],["impl<'a> Sync for LazyCsvReader<'a>",1,["polars_lazy::frame::csv::LazyCsvReader"]],["impl Sync for ScanArgsIpc",1,["polars_lazy::frame::ipc::ScanArgsIpc"]],["impl Sync for LazyJsonLineReader",1,["polars_lazy::frame::ndjson::LazyJsonLineReader"]],["impl Sync for ScanArgsParquet",1,["polars_lazy::frame::parquet::ScanArgsParquet"]],["impl Sync for ScanArgsAnonymous",1,["polars_lazy::frame::anonymous_scan::ScanArgsAnonymous"]],["impl Sync for LazyFrame",1,["polars_lazy::frame::LazyFrame"]],["impl Sync for LazyGroupBy",1,["polars_lazy::frame::LazyGroupBy"]],["impl Sync for JoinBuilder",1,["polars_lazy::frame::JoinBuilder"]],["impl<'a> Sync for AggregationContext<'a>",1,["polars_lazy::physical_plan::expressions::AggregationContext"]],["impl Sync for PhysicalIoHelper",1,["polars_lazy::physical_plan::expressions::PhysicalIoHelper"]]], "polars_ops":[["impl Sync for SearchSortedSide",1,["polars_ops::series::ops::search_sorted::SearchSortedSide"]]], "polars_pipe":[["impl Sync for DataChunk",1,["polars_pipe::operators::chunks::DataChunk"]],["impl Sync for PExecutionContext",1,["polars_pipe::operators::context::PExecutionContext"]],["impl Sync for SinkResult",1,["polars_pipe::operators::sink::SinkResult"]],["impl Sync for FinalizedSink",1,["polars_pipe::operators::sink::FinalizedSink"]],["impl Sync for PipeLine"]], @@ -115,7 +115,7 @@ "polars_row":[["impl Sync for SortField",1,["polars_row::row::SortField"]],["impl Sync for RowsEncoded",1,["polars_row::row::RowsEncoded"]]], "polars_sql":[["impl !Sync for SQLContext",1,["polars_sql::context::SQLContext"]]], "polars_time":[["impl Sync for RollingOptions",1,["polars_time::chunkedarray::rolling_window::RollingOptions"]],["impl<'a> Sync for RollingOptionsImpl<'a>",1,["polars_time::chunkedarray::rolling_window::RollingOptionsImpl"]],["impl<T> Sync for DatetimeInfer<T>",1,["polars_time::chunkedarray::utf8::infer::DatetimeInfer"]],["impl Sync for Pattern",1,["polars_time::chunkedarray::utf8::patterns::Pattern"]],["impl Sync for DynamicGroupOptions",1,["polars_time::groupby::dynamic::DynamicGroupOptions"]],["impl Sync for RollingGroupOptions",1,["polars_time::groupby::dynamic::RollingGroupOptions"]],["impl Sync for Bounds",1,["polars_time::windows::bounds::Bounds"]],["impl Sync for Duration",1,["polars_time::windows::duration::Duration"]],["impl Sync for ClosedWindow",1,["polars_time::windows::groupby::ClosedWindow"]],["impl Sync for StartBy",1,["polars_time::windows::groupby::StartBy"]],["impl Sync for Window",1,["polars_time::windows::window::Window"]],["impl<'a> Sync for BoundsIter<'a>",1,["polars_time::windows::window::BoundsIter"]],["impl Sync for TruncateOptions",1,["polars_time::truncate::TruncateOptions"]]], -"polars_utils":[["impl Sync for Node",1,["polars_utils::arena::Node"]],["impl<T> Sync for Arena<T>where\n T: Sync,",1,["polars_utils::arena::Arena"]],["impl<T> Sync for LowContentionPool<T>where\n T: Send,",1,["polars_utils::contention_pool::LowContentionPool"]],["impl Sync for MemInfo",1,["polars_utils::sys::MemInfo"]],["impl<T> Sync for SyncPtr<T>"],["impl Sync for SyncCounter"],["impl<T: ?Sized + Sync> Sync for SyncUnsafeCell<T>"]], +"polars_utils":[["impl Sync for Node",1,["polars_utils::arena::Node"]],["impl<T> Sync for Arena<T>where\n T: Sync,",1,["polars_utils::arena::Arena"]],["impl<T> Sync for LowContentionPool<T>where\n T: Send,",1,["polars_utils::contention_pool::LowContentionPool"]],["impl Sync for MemInfo",1,["polars_utils::sys::MemInfo"]],["impl Sync for SyncCounter"],["impl<T> Sync for SyncPtr<T>"],["impl<T: ?Sized + Sync> Sync for SyncUnsafeCell<T>"]], "ppv_lite86":[["impl Sync for YesS3",1,["ppv_lite86::x86_64::YesS3"]],["impl Sync for NoS3",1,["ppv_lite86::x86_64::NoS3"]],["impl Sync for YesS4",1,["ppv_lite86::x86_64::YesS4"]],["impl Sync for NoS4",1,["ppv_lite86::x86_64::NoS4"]],["impl Sync for YesA1",1,["ppv_lite86::x86_64::YesA1"]],["impl Sync for NoA1",1,["ppv_lite86::x86_64::NoA1"]],["impl Sync for YesA2",1,["ppv_lite86::x86_64::YesA2"]],["impl Sync for NoA2",1,["ppv_lite86::x86_64::NoA2"]],["impl Sync for YesNI",1,["ppv_lite86::x86_64::YesNI"]],["impl Sync for NoNI",1,["ppv_lite86::x86_64::NoNI"]],["impl<S3, S4, NI> Sync for SseMachine<S3, S4, NI>where\n NI: Sync,\n S3: Sync,\n S4: Sync,",1,["ppv_lite86::x86_64::SseMachine"]],["impl<NI> Sync for Avx2Machine<NI>where\n NI: Sync,",1,["ppv_lite86::x86_64::Avx2Machine"]],["impl Sync for vec128_storage",1,["ppv_lite86::x86_64::vec128_storage"]],["impl Sync for vec256_storage",1,["ppv_lite86::x86_64::vec256_storage"]],["impl Sync for vec512_storage",1,["ppv_lite86::x86_64::vec512_storage"]]], "proc_macro2":[["impl !Sync for DelimSpan",1,["proc_macro2::extra::DelimSpan"]],["impl !Sync for IntoIter",1,["proc_macro2::token_stream::IntoIter"]],["impl !Sync for TokenStream",1,["proc_macro2::TokenStream"]],["impl !Sync for LexError",1,["proc_macro2::LexError"]],["impl !Sync for Span",1,["proc_macro2::Span"]],["impl !Sync for TokenTree",1,["proc_macro2::TokenTree"]],["impl !Sync for Group",1,["proc_macro2::Group"]],["impl Sync for Delimiter",1,["proc_macro2::Delimiter"]],["impl !Sync for Punct",1,["proc_macro2::Punct"]],["impl Sync for Spacing",1,["proc_macro2::Spacing"]],["impl !Sync for Ident",1,["proc_macro2::Ident"]],["impl !Sync for Literal",1,["proc_macro2::Literal"]]], "pyo3":[["impl Sync for ElementType",1,["pyo3::buffer::ElementType"]],["impl<T> !Sync for ReadOnlyCell<T>",1,["pyo3::buffer::ReadOnlyCell"]],["impl<'a> !Sync for PyDowncastError<'a>",1,["pyo3::err::PyDowncastError"]],["impl !Sync for CancelledError",1,["pyo3::exceptions::asyncio::CancelledError"]],["impl !Sync for InvalidStateError",1,["pyo3::exceptions::asyncio::InvalidStateError"]],["impl !Sync for TimeoutError",1,["pyo3::exceptions::asyncio::TimeoutError"]],["impl !Sync for IncompleteReadError",1,["pyo3::exceptions::asyncio::IncompleteReadError"]],["impl !Sync for LimitOverrunError",1,["pyo3::exceptions::asyncio::LimitOverrunError"]],["impl !Sync for QueueEmpty",1,["pyo3::exceptions::asyncio::QueueEmpty"]],["impl !Sync for QueueFull",1,["pyo3::exceptions::asyncio::QueueFull"]],["impl !Sync for herror",1,["pyo3::exceptions::socket::herror"]],["impl !Sync for gaierror",1,["pyo3::exceptions::socket::gaierror"]],["impl !Sync for timeout",1,["pyo3::exceptions::socket::timeout"]],["impl !Sync for PyBaseException",1,["pyo3::exceptions::PyBaseException"]],["impl !Sync for PyException",1,["pyo3::exceptions::PyException"]],["impl !Sync for PyStopAsyncIteration",1,["pyo3::exceptions::PyStopAsyncIteration"]],["impl !Sync for PyStopIteration",1,["pyo3::exceptions::PyStopIteration"]],["impl !Sync for PyGeneratorExit",1,["pyo3::exceptions::PyGeneratorExit"]],["impl !Sync for PyArithmeticError",1,["pyo3::exceptions::PyArithmeticError"]],["impl !Sync for PyLookupError",1,["pyo3::exceptions::PyLookupError"]],["impl !Sync for PyAssertionError",1,["pyo3::exceptions::PyAssertionError"]],["impl !Sync for PyAttributeError",1,["pyo3::exceptions::PyAttributeError"]],["impl !Sync for PyBufferError",1,["pyo3::exceptions::PyBufferError"]],["impl !Sync for PyEOFError",1,["pyo3::exceptions::PyEOFError"]],["impl !Sync for PyFloatingPointError",1,["pyo3::exceptions::PyFloatingPointError"]],["impl !Sync for PyOSError",1,["pyo3::exceptions::PyOSError"]],["impl !Sync for PyImportError",1,["pyo3::exceptions::PyImportError"]],["impl !Sync for PyModuleNotFoundError",1,["pyo3::exceptions::PyModuleNotFoundError"]],["impl !Sync for PyIndexError",1,["pyo3::exceptions::PyIndexError"]],["impl !Sync for PyKeyError",1,["pyo3::exceptions::PyKeyError"]],["impl !Sync for PyKeyboardInterrupt",1,["pyo3::exceptions::PyKeyboardInterrupt"]],["impl !Sync for PyMemoryError",1,["pyo3::exceptions::PyMemoryError"]],["impl !Sync for PyNameError",1,["pyo3::exceptions::PyNameError"]],["impl !Sync for PyOverflowError",1,["pyo3::exceptions::PyOverflowError"]],["impl !Sync for PyRuntimeError",1,["pyo3::exceptions::PyRuntimeError"]],["impl !Sync for PyRecursionError",1,["pyo3::exceptions::PyRecursionError"]],["impl !Sync for PyNotImplementedError",1,["pyo3::exceptions::PyNotImplementedError"]],["impl !Sync for PySyntaxError",1,["pyo3::exceptions::PySyntaxError"]],["impl !Sync for PyReferenceError",1,["pyo3::exceptions::PyReferenceError"]],["impl !Sync for PySystemError",1,["pyo3::exceptions::PySystemError"]],["impl !Sync for PySystemExit",1,["pyo3::exceptions::PySystemExit"]],["impl !Sync for PyTypeError",1,["pyo3::exceptions::PyTypeError"]],["impl !Sync for PyUnboundLocalError",1,["pyo3::exceptions::PyUnboundLocalError"]],["impl !Sync for PyUnicodeError",1,["pyo3::exceptions::PyUnicodeError"]],["impl !Sync for PyUnicodeDecodeError",1,["pyo3::exceptions::PyUnicodeDecodeError"]],["impl !Sync for PyUnicodeEncodeError",1,["pyo3::exceptions::PyUnicodeEncodeError"]],["impl !Sync for PyUnicodeTranslateError",1,["pyo3::exceptions::PyUnicodeTranslateError"]],["impl !Sync for PyValueError",1,["pyo3::exceptions::PyValueError"]],["impl !Sync for PyZeroDivisionError",1,["pyo3::exceptions::PyZeroDivisionError"]],["impl !Sync for PyBlockingIOError",1,["pyo3::exceptions::PyBlockingIOError"]],["impl !Sync for PyBrokenPipeError",1,["pyo3::exceptions::PyBrokenPipeError"]],["impl !Sync for PyChildProcessError",1,["pyo3::exceptions::PyChildProcessError"]],["impl !Sync for PyConnectionError",1,["pyo3::exceptions::PyConnectionError"]],["impl !Sync for PyConnectionAbortedError",1,["pyo3::exceptions::PyConnectionAbortedError"]],["impl !Sync for PyConnectionRefusedError",1,["pyo3::exceptions::PyConnectionRefusedError"]],["impl !Sync for PyConnectionResetError",1,["pyo3::exceptions::PyConnectionResetError"]],["impl !Sync for PyFileExistsError",1,["pyo3::exceptions::PyFileExistsError"]],["impl !Sync for PyFileNotFoundError",1,["pyo3::exceptions::PyFileNotFoundError"]],["impl !Sync for PyInterruptedError",1,["pyo3::exceptions::PyInterruptedError"]],["impl !Sync for PyIsADirectoryError",1,["pyo3::exceptions::PyIsADirectoryError"]],["impl !Sync for PyNotADirectoryError",1,["pyo3::exceptions::PyNotADirectoryError"]],["impl !Sync for PyPermissionError",1,["pyo3::exceptions::PyPermissionError"]],["impl !Sync for PyProcessLookupError",1,["pyo3::exceptions::PyProcessLookupError"]],["impl !Sync for PyTimeoutError",1,["pyo3::exceptions::PyTimeoutError"]],["impl !Sync for PyEnvironmentError",1,["pyo3::exceptions::PyEnvironmentError"]],["impl !Sync for PyIOError",1,["pyo3::exceptions::PyIOError"]],["impl !Sync for PyWarning",1,["pyo3::exceptions::PyWarning"]],["impl !Sync for PyUserWarning",1,["pyo3::exceptions::PyUserWarning"]],["impl !Sync for PyDeprecationWarning",1,["pyo3::exceptions::PyDeprecationWarning"]],["impl !Sync for PyPendingDeprecationWarning",1,["pyo3::exceptions::PyPendingDeprecationWarning"]],["impl !Sync for PySyntaxWarning",1,["pyo3::exceptions::PySyntaxWarning"]],["impl !Sync for PyRuntimeWarning",1,["pyo3::exceptions::PyRuntimeWarning"]],["impl !Sync for PyFutureWarning",1,["pyo3::exceptions::PyFutureWarning"]],["impl !Sync for PyImportWarning",1,["pyo3::exceptions::PyImportWarning"]],["impl !Sync for PyUnicodeWarning",1,["pyo3::exceptions::PyUnicodeWarning"]],["impl !Sync for PyBytesWarning",1,["pyo3::exceptions::PyBytesWarning"]],["impl !Sync for PyResourceWarning",1,["pyo3::exceptions::PyResourceWarning"]],["impl !Sync for PyEncodingWarning",1,["pyo3::exceptions::PyEncodingWarning"]],["impl !Sync for GILPool",1,["pyo3::gil::GILPool"]],["impl<'py> !Sync for Python<'py>",1,["pyo3::marker::Python"]],["impl !Sync for PanicException",1,["pyo3::panic::PanicException"]],["impl<T> !Sync for PyCell<T>",1,["pyo3::pycell::PyCell"]],["impl<'p, T> !Sync for PyRef<'p, T>",1,["pyo3::pycell::PyRef"]],["impl<'p, T> !Sync for PyRefMut<'p, T>",1,["pyo3::pycell::PyRefMut"]],["impl Sync for PyBorrowError",1,["pyo3::pycell::PyBorrowError"]],["impl Sync for PyBorrowMutError",1,["pyo3::pycell::PyBorrowMutError"]],["impl Sync for PyTraverseError",1,["pyo3::pyclass::gc::PyTraverseError"]],["impl<'p> !Sync for PyVisit<'p>",1,["pyo3::pyclass::gc::PyVisit"]],["impl Sync for CompareOp",1,["pyo3::pyclass::CompareOp"]],["impl<T, U> Sync for IterNextOutput<T, U>where\n T: Sync,\n U: Sync,",1,["pyo3::pyclass::IterNextOutput"]],["impl<T, U> Sync for IterANextOutput<T, U>where\n T: Sync,\n U: Sync,",1,["pyo3::pyclass::IterANextOutput"]],["impl<T> Sync for PyNativeTypeInitializer<T>where\n T: Sync,",1,["pyo3::pyclass_init::PyNativeTypeInitializer"]],["impl<T> Sync for PyClassInitializer<T>where\n T: Sync,\n <<T as PyClassImpl>::BaseType as PyClassBaseType>::Initializer: Sync,",1,["pyo3::pyclass_init::PyClassInitializer"]],["impl<'py> !Sync for PyDictIterator<'py>",1,["pyo3::types::dict::PyDictIterator"]],["impl<'py> !Sync for PyFrozenSetIterator<'py>",1,["pyo3::types::frozenset::impl_::PyFrozenSetIterator"]],["impl<'py> !Sync for PySetIterator<'py>",1,["pyo3::types::set::impl_::PySetIterator"]],["impl !Sync for PyAny",1,["pyo3::types::any::PyAny"]],["impl !Sync for PyBool",1,["pyo3::types::boolobject::PyBool"]],["impl !Sync for PyByteArray",1,["pyo3::types::bytearray::PyByteArray"]],["impl !Sync for PyBytes",1,["pyo3::types::bytes::PyBytes"]],["impl !Sync for PyCapsule",1,["pyo3::types::capsule::PyCapsule"]],["impl !Sync for PyCode",1,["pyo3::types::code::PyCode"]],["impl !Sync for PyComplex",1,["pyo3::types::complex::PyComplex"]],["impl !Sync for PyDate",1,["pyo3::types::datetime::PyDate"]],["impl !Sync for PyDateTime",1,["pyo3::types::datetime::PyDateTime"]],["impl !Sync for PyTime",1,["pyo3::types::datetime::PyTime"]],["impl !Sync for PyTzInfo",1,["pyo3::types::datetime::PyTzInfo"]],["impl !Sync for PyDelta",1,["pyo3::types::datetime::PyDelta"]],["impl !Sync for PyDict",1,["pyo3::types::dict::PyDict"]],["impl !Sync for PyDictKeys",1,["pyo3::types::dict::PyDictKeys"]],["impl !Sync for PyDictValues",1,["pyo3::types::dict::PyDictValues"]],["impl !Sync for PyDictItems",1,["pyo3::types::dict::PyDictItems"]],["impl !Sync for PyFloat",1,["pyo3::types::floatob::PyFloat"]],["impl !Sync for PyFrame",1,["pyo3::types::frame::PyFrame"]],["impl<'py> !Sync for PyFrozenSetBuilder<'py>",1,["pyo3::types::frozenset::PyFrozenSetBuilder"]],["impl !Sync for PyFrozenSet",1,["pyo3::types::frozenset::PyFrozenSet"]],["impl !Sync for PyCFunction",1,["pyo3::types::function::PyCFunction"]],["impl !Sync for PyFunction",1,["pyo3::types::function::PyFunction"]],["impl !Sync for PyIterator",1,["pyo3::types::iterator::PyIterator"]],["impl !Sync for PyList",1,["pyo3::types::list::PyList"]],["impl !Sync for PyMapping",1,["pyo3::types::mapping::PyMapping"]],["impl !Sync for PyModule",1,["pyo3::types::module::PyModule"]],["impl !Sync for PyLong",1,["pyo3::types::num::PyLong"]],["impl !Sync for PySuper",1,["pyo3::types::pysuper::PySuper"]],["impl !Sync for PySequence",1,["pyo3::types::sequence::PySequence"]],["impl !Sync for PySet",1,["pyo3::types::set::PySet"]],["impl !Sync for PySlice",1,["pyo3::types::slice::PySlice"]],["impl Sync for PySliceIndices",1,["pyo3::types::slice::PySliceIndices"]],["impl<'a> Sync for PyStringData<'a>",1,["pyo3::types::string::PyStringData"]],["impl !Sync for PyString",1,["pyo3::types::string::PyString"]],["impl !Sync for PyTraceback",1,["pyo3::types::traceback::PyTraceback"]],["impl !Sync for PyTuple",1,["pyo3::types::tuple::PyTuple"]],["impl !Sync for PyType",1,["pyo3::types::typeobject::PyType"]],["impl<'py> Sync for PythonVersionInfo<'py>",1,["pyo3::version::PythonVersionInfo"]],["impl<T: Send + Sync> Sync for GILOnceCell<T>"],["impl<T> Sync for GILProtected<T>where\n T: Send,"],["impl Sync for PyErr"],["impl<T> Sync for PyBuffer<T>"],["impl<T> Sync for Py<T>"]], diff --git a/implementors/core/ops/arith/trait.Add.js b/implementors/core/ops/arith/trait.Add.js index f58f53afce26..f803729ad63f 100644 --- a/implementors/core/ops/arith/trait.Add.js +++ b/implementors/core/ops/arith/trait.Add.js @@ -1,11 +1,11 @@ (function() {var implementors = { -"arrow2":[["impl Add<i32x16> for i32x16"],["impl Add<u16x32> for u16x32"],["impl Add<i16x32> for i16x32"],["impl Add<i64x8> for i64x8"],["impl Add<f32x16> for f32x16"],["impl Add<u64x8> for u64x8"],["impl Add<f64x8> for f64x8"],["impl Add<i8x64> for i8x64"],["impl Add<u8x64> for u8x64"],["impl Add<u32x16> for u32x16"],["impl Add<i128x8> for i128x8"]], +"arrow2":[["impl Add<u16x32> for u16x32"],["impl Add<i8x64> for i8x64"],["impl Add<i16x32> for i16x32"],["impl Add<i128x8> for i128x8"],["impl Add<i32x16> for i32x16"],["impl Add<u64x8> for u64x8"],["impl Add<f64x8> for f64x8"],["impl Add<u8x64> for u8x64"],["impl Add<u32x16> for u32x16"],["impl Add<f32x16> for f32x16"],["impl Add<i64x8> for i64x8"]], "chrono":[["impl<Tz: TimeZone> Add<Days> for DateTime<Tz>"],["impl<Tz: TimeZone> Add<Duration> for DateTime<Tz>"],["impl Add<Months> for NaiveDate"],["impl Add<Duration> for NaiveDate"],["impl<Tz: TimeZone> Add<FixedOffset> for DateTime<Tz>"],["impl Add<Duration> for NaiveDateTime"],["impl Add<FixedOffset> for NaiveDateTime"],["impl<Tz: TimeZone> Add<Duration> for Date<Tz>"],["impl Add<FixedOffset> for NaiveTime"],["impl Add<Months> for NaiveDateTime"],["impl Add<Duration> for NaiveTime"],["impl Add<Duration> for Duration"],["impl Add<Days> for NaiveDate"],["impl<Tz: TimeZone> Add<Months> for DateTime<Tz>"],["impl Add<Days> for NaiveDateTime"]], "ethnum":[["impl Add<U256> for &u128"],["impl Add<&u128> for U256"],["impl Add<I256> for I256"],["impl Add<I256> for &i128"],["impl Add<&U256> for u128"],["impl Add<&U256> for U256"],["impl Add<U256> for u128"],["impl Add<&I256> for i128"],["impl Add<&U256> for &u128"],["impl Add<&i128> for &I256"],["impl Add<i128> for I256"],["impl Add<I256> for i128"],["impl Add<I256> for &I256"],["impl Add<U256> for &U256"],["impl Add<U256> for U256"],["impl Add<&I256> for &I256"],["impl Add<&I256> for I256"],["impl Add<u128> for U256"],["impl Add<&i128> for I256"],["impl Add<i128> for &I256"],["impl Add<u128> for &U256"],["impl Add<&U256> for &U256"],["impl Add<&I256> for &i128"],["impl Add<&u128> for &U256"]], "half":[["impl Add<f16> for f16"],["impl Add<&bf16> for bf16"],["impl Add<bf16> for bf16"],["impl Add<&bf16> for &bf16"],["impl Add<&f16> for &f16"],["impl Add<f16> for &f16"],["impl Add<bf16> for &bf16"],["impl Add<&f16> for f16"]], "ndarray":[["impl<S, D> Add<ArrayBase<S, D>> for u64where\n S: DataOwned<Elem = u64> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for i128where\n S: Data<Elem = i128>,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Add<&'a ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Add<B, Output = A>,\n B: Clone,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for u16where\n S: DataOwned<Elem = u16> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for i64where\n S: Data<Elem = i64>,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for usizewhere\n S: Data<Elem = usize>,\n D: Dimension,"],["impl<A, B, S, S2, D, E> Add<ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Add<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for Complex<f32>where\n S: Data<Elem = Complex<f32>>,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for i8where\n S: Data<Elem = i8>,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for f64where\n S: Data<Elem = f64>,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for i16where\n S: DataOwned<Elem = i16> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for i32where\n S: Data<Elem = i32>,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for u16where\n S: Data<Elem = u16>,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for f32where\n S: Data<Elem = f32>,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for isizewhere\n S: Data<Elem = isize>,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for u128where\n S: Data<Elem = u128>,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Add<&'a ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Add<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for Complex<f32>where\n S: DataOwned<Elem = Complex<f32>> + DataMut,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for i64where\n S: DataOwned<Elem = i64> + DataMut,\n D: Dimension,"],["impl<I> Add<Dim<I>> for Dim<I>where\n Dim<I>: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for i16where\n S: Data<Elem = i16>,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for f32where\n S: DataOwned<Elem = f32> + DataMut,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for i8where\n S: DataOwned<Elem = i8> + DataMut,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for u32where\n S: DataOwned<Elem = u32> + DataMut,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for Complex<f64>where\n S: DataOwned<Elem = Complex<f64>> + DataMut,\n D: Dimension,"],["impl<A, S, D, B> Add<B> for ArrayBase<S, D>where\n A: Clone + Add<B, Output = A>,\n S: DataOwned<Elem = A> + DataMut,\n D: Dimension,\n B: ScalarOperand,"],["impl<S, D> Add<ArrayBase<S, D>> for isizewhere\n S: DataOwned<Elem = isize> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for u64where\n S: Data<Elem = u64>,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for u128where\n S: DataOwned<Elem = u128> + DataMut,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for i32where\n S: DataOwned<Elem = i32> + DataMut,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for u8where\n S: DataOwned<Elem = u8> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for u32where\n S: Data<Elem = u32>,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for u8where\n S: Data<Elem = u8>,\n D: Dimension,"],["impl Add<usize> for Dim<[Ix; 1]>"],["impl<S, D> Add<ArrayBase<S, D>> for usizewhere\n S: DataOwned<Elem = usize> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Add<ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Add<B, Output = B>,\n B: Clone,\n S: Data<Elem = A>,\n S2: DataOwned<Elem = B> + DataMut,\n D: Dimension,\n E: Dimension + DimMax<D>,"],["impl<'a, A, S, D, B> Add<B> for &'a ArrayBase<S, D>where\n A: Clone + Add<B, Output = A>,\n S: Data<Elem = A>,\n D: Dimension,\n B: ScalarOperand,"],["impl<S, D> Add<ArrayBase<S, D>> for f64where\n S: DataOwned<Elem = f64> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Add<&'a ArrayBase<S, D>> for Complex<f64>where\n S: Data<Elem = Complex<f64>>,\n D: Dimension,"],["impl<S, D> Add<ArrayBase<S, D>> for i128where\n S: DataOwned<Elem = i128> + DataMut,\n D: Dimension,"]], "num_complex":[["impl<T: Clone + Num> Add<T> for Complex<T>"],["impl<'a> Add<Complex<i128>> for &'a i128"],["impl Add<Complex<i32>> for i32"],["impl<'a, T: Clone + Num> Add<Complex<T>> for &'a Complex<T>"],["impl<'a> Add<Complex<isize>> for &'a isize"],["impl<'a> Add<&'a Complex<u8>> for u8"],["impl Add<Complex<u64>> for u64"],["impl<'a, 'b> Add<&'a Complex<i8>> for &'b i8"],["impl<'a, 'b> Add<&'a Complex<u32>> for &'b u32"],["impl<'a> Add<&'a Complex<u32>> for u32"],["impl<'a> Add<&'a Complex<u128>> for u128"],["impl<'a> Add<Complex<u128>> for &'a u128"],["impl<'a> Add<Complex<i8>> for &'a i8"],["impl<'a> Add<&'a Complex<f32>> for f32"],["impl<'a> Add<Complex<i64>> for &'a i64"],["impl<'a> Add<Complex<u32>> for &'a u32"],["impl<'a, 'b> Add<&'a Complex<isize>> for &'b isize"],["impl Add<Complex<f64>> for f64"],["impl<'a> Add<&'a Complex<i16>> for i16"],["impl Add<Complex<isize>> for isize"],["impl<'a> Add<Complex<f64>> for &'a f64"],["impl<'a, 'b, T: Clone + Num> Add<&'b Complex<T>> for &'a Complex<T>"],["impl Add<Complex<i16>> for i16"],["impl Add<Complex<u8>> for u8"],["impl<'a> Add<Complex<i16>> for &'a i16"],["impl<'a> Add<&'a Complex<i64>> for i64"],["impl<'a> Add<&'a Complex<i128>> for i128"],["impl Add<Complex<u128>> for u128"],["impl<'a> Add<Complex<i32>> for &'a i32"],["impl<'a, 'b> Add<&'a Complex<f64>> for &'b f64"],["impl Add<Complex<u32>> for u32"],["impl<'a> Add<&'a Complex<isize>> for isize"],["impl<'a> Add<&'a Complex<i8>> for i8"],["impl<'a, 'b> Add<&'a Complex<u16>> for &'b u16"],["impl<'a> Add<Complex<u16>> for &'a u16"],["impl Add<Complex<u16>> for u16"],["impl<'a> Add<Complex<u64>> for &'a u64"],["impl<'a, 'b> Add<&'a Complex<i16>> for &'b i16"],["impl<'a> Add<&'a Complex<u16>> for u16"],["impl<'a> Add<&'a Complex<usize>> for usize"],["impl<'a, T: Clone + Num> Add<T> for &'a Complex<T>"],["impl Add<Complex<usize>> for usize"],["impl<'a> Add<&'a Complex<i32>> for i32"],["impl<'a, 'b> Add<&'a Complex<i32>> for &'b i32"],["impl<'a> Add<Complex<f32>> for &'a f32"],["impl<'a> Add<&'a Complex<u64>> for u64"],["impl<'a> Add<Complex<usize>> for &'a usize"],["impl<'a, 'b> Add<&'a Complex<u128>> for &'b u128"],["impl<'a> Add<&'a Complex<f64>> for f64"],["impl<'a, 'b> Add<&'a Complex<i128>> for &'b i128"],["impl Add<Complex<i128>> for i128"],["impl<T: Clone + Num> Add<Complex<T>> for Complex<T>"],["impl<'a, T: Clone + Num> Add<&'a T> for Complex<T>"],["impl<'a, 'b> Add<&'a Complex<i64>> for &'b i64"],["impl<'a, 'b> Add<&'a Complex<usize>> for &'b usize"],["impl<'a> Add<Complex<u8>> for &'a u8"],["impl Add<Complex<i64>> for i64"],["impl<'a, 'b> Add<&'a Complex<u8>> for &'b u8"],["impl<'a, 'b> Add<&'a Complex<u64>> for &'b u64"],["impl Add<Complex<f32>> for f32"],["impl<'a, T: Clone + Num> Add<&'a Complex<T>> for Complex<T>"],["impl<'a, 'b, T: Clone + Num> Add<&'a T> for &'b Complex<T>"],["impl<'a, 'b> Add<&'a Complex<f32>> for &'b f32"],["impl Add<Complex<i8>> for i8"]], -"polars_core":[["impl Add<Series> for Series"],["impl Add<&ChunkedArray<BinaryType>> for &BinaryChunked"],["impl Add<&str> for &Utf8Chunked"],["impl<T, N> Add<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T> Add<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl Add<ChunkedArray<BooleanType>> for BooleanChunked"],["impl Add<&ChunkedArray<Utf8Type>> for &Utf8Chunked"],["impl<T> Add<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T> Add<T> for &Serieswhere\n T: Num + NumCast,"],["impl<T, N> Add<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T> Add<T> for Serieswhere\n T: Num + NumCast,"],["impl Add<ChunkedArray<Utf8Type>> for Utf8Chunked"],["impl Add<&Series> for &Series"],["impl Add<&[u8]> for &BinaryChunked"],["impl Add<ChunkedArray<BinaryType>> for BinaryChunked"],["impl Add<&ChunkedArray<BooleanType>> for &BooleanChunked"]], +"polars_core":[["impl Add<&[u8]> for &BinaryChunked"],["impl Add<&Series> for &Series"],["impl Add<&str> for &Utf8Chunked"],["impl<T> Add<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T> Add<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl Add<ChunkedArray<BooleanType>> for BooleanChunked"],["impl<T> Add<T> for &Serieswhere\n T: Num + NumCast,"],["impl<T, N> Add<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl Add<&ChunkedArray<BooleanType>> for &BooleanChunked"],["impl<T, N> Add<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl Add<&ChunkedArray<BinaryType>> for &BinaryChunked"],["impl Add<ChunkedArray<Utf8Type>> for Utf8Chunked"],["impl Add<ChunkedArray<BinaryType>> for BinaryChunked"],["impl Add<&ChunkedArray<Utf8Type>> for &Utf8Chunked"],["impl Add<Series> for Series"],["impl<T> Add<T> for Serieswhere\n T: Num + NumCast,"]], "polars_plan":[["impl Add<Expr> for Expr"]], "pyo3":[["impl<'py> Add<&'py PyComplex> for &'py PyComplex"]], "smartstring":[["impl<Mode: SmartStringMode> Add<&String> for SmartString<Mode>"],["impl<Mode: SmartStringMode> Add<String> for SmartString<Mode>"],["impl<Mode: SmartStringMode> Add<SmartString<Mode>> for String"],["impl<Mode: SmartStringMode> Add<&SmartString<Mode>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> Add<&str> for SmartString<Mode>"],["impl<Mode: SmartStringMode> Add<SmartString<Mode>> for SmartString<Mode>"]], diff --git a/implementors/core/ops/arith/trait.AddAssign.js b/implementors/core/ops/arith/trait.AddAssign.js index 192f7ed1dd7e..0d6e66d0fdea 100644 --- a/implementors/core/ops/arith/trait.AddAssign.js +++ b/implementors/core/ops/arith/trait.AddAssign.js @@ -1,5 +1,5 @@ (function() {var implementors = { -"arrow2":[["impl AddAssign<f32x16> for f32x16"],["impl AddAssign<i8x64> for i8x64"],["impl AddAssign<f64x8> for f64x8"],["impl AddAssign<i32x16> for i32x16"],["impl AddAssign<i64x8> for i64x8"],["impl AddAssign<u8x64> for u8x64"],["impl AddAssign<i16x32> for i16x32"],["impl AddAssign<i128x8> for i128x8"],["impl AddAssign<u64x8> for u64x8"],["impl AddAssign<u32x16> for u32x16"],["impl AddAssign<u16x32> for u16x32"]], +"arrow2":[["impl AddAssign<i64x8> for i64x8"],["impl AddAssign<f32x16> for f32x16"],["impl AddAssign<i128x8> for i128x8"],["impl AddAssign<i16x32> for i16x32"],["impl AddAssign<i8x64> for i8x64"],["impl AddAssign<f64x8> for f64x8"],["impl AddAssign<u32x16> for u32x16"],["impl AddAssign<i32x16> for i32x16"],["impl AddAssign<u8x64> for u8x64"],["impl AddAssign<u64x8> for u64x8"],["impl AddAssign<u16x32> for u16x32"]], "chrono":[["impl AddAssign<Duration> for NaiveDate"],["impl<Tz: TimeZone> AddAssign<Duration> for Date<Tz>"],["impl AddAssign<Duration> for NaiveDateTime"],["impl<Tz: TimeZone> AddAssign<Duration> for DateTime<Tz>"],["impl AddAssign<Duration> for NaiveTime"]], "ethnum":[["impl AddAssign<u128> for U256"],["impl AddAssign<&U256> for U256"],["impl AddAssign<&u128> for U256"],["impl AddAssign<i128> for I256"],["impl AddAssign<U256> for U256"],["impl AddAssign<&i128> for I256"],["impl AddAssign<&I256> for I256"],["impl AddAssign<I256> for I256"]], "half":[["impl AddAssign<f16> for f16"],["impl AddAssign<&bf16> for bf16"],["impl AddAssign<&f16> for f16"],["impl AddAssign<bf16> for bf16"]], diff --git a/implementors/core/ops/arith/trait.Div.js b/implementors/core/ops/arith/trait.Div.js index 9770e4df4430..17e06cad5401 100644 --- a/implementors/core/ops/arith/trait.Div.js +++ b/implementors/core/ops/arith/trait.Div.js @@ -4,7 +4,7 @@ "half":[["impl Div<&f16> for &f16"],["impl Div<bf16> for &bf16"],["impl Div<f16> for f16"],["impl Div<f16> for &f16"],["impl Div<&bf16> for bf16"],["impl Div<bf16> for bf16"],["impl Div<&bf16> for &bf16"],["impl Div<&f16> for f16"]], "ndarray":[["impl<S, D> Div<ArrayBase<S, D>> for i64where\n S: DataOwned<Elem = i64> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Div<ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Div<B, Output = B>,\n B: Clone,\n S: Data<Elem = A>,\n S2: DataOwned<Elem = B> + DataMut,\n D: Dimension,\n E: Dimension + DimMax<D>,"],["impl<'a, A, B, S, S2, D, E> Div<&'a ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Div<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for i32where\n S: Data<Elem = i32>,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for u64where\n S: DataOwned<Elem = u64> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for f64where\n S: Data<Elem = f64>,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for u32where\n S: DataOwned<Elem = u32> + DataMut,\n D: Dimension,"],["impl<A, S, D, B> Div<B> for ArrayBase<S, D>where\n A: Clone + Div<B, Output = A>,\n S: DataOwned<Elem = A> + DataMut,\n D: Dimension,\n B: ScalarOperand,"],["impl<'a, A, S, D, B> Div<B> for &'a ArrayBase<S, D>where\n A: Clone + Div<B, Output = A>,\n S: Data<Elem = A>,\n D: Dimension,\n B: ScalarOperand,"],["impl<A, B, S, S2, D, E> Div<ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Div<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for u64where\n S: Data<Elem = u64>,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for f32where\n S: Data<Elem = f32>,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for u8where\n S: Data<Elem = u8>,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for i128where\n S: DataOwned<Elem = i128> + DataMut,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for f32where\n S: DataOwned<Elem = f32> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for i128where\n S: Data<Elem = i128>,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for f64where\n S: DataOwned<Elem = f64> + DataMut,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for Complex<f32>where\n S: DataOwned<Elem = Complex<f32>> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for i8where\n S: Data<Elem = i8>,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for u128where\n S: DataOwned<Elem = u128> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for u128where\n S: Data<Elem = u128>,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for isizewhere\n S: Data<Elem = isize>,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for i64where\n S: Data<Elem = i64>,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Div<&'a ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Div<B, Output = A>,\n B: Clone,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for i8where\n S: DataOwned<Elem = i8> + DataMut,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for Complex<f64>where\n S: DataOwned<Elem = Complex<f64>> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for u32where\n S: Data<Elem = u32>,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for i16where\n S: DataOwned<Elem = i16> + DataMut,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for isizewhere\n S: DataOwned<Elem = isize> + DataMut,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for usizewhere\n S: DataOwned<Elem = usize> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for i16where\n S: Data<Elem = i16>,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for Complex<f32>where\n S: Data<Elem = Complex<f32>>,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for usizewhere\n S: Data<Elem = usize>,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for Complex<f64>where\n S: Data<Elem = Complex<f64>>,\n D: Dimension,"],["impl<'a, S, D> Div<&'a ArrayBase<S, D>> for u16where\n S: Data<Elem = u16>,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for u8where\n S: DataOwned<Elem = u8> + DataMut,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for u16where\n S: DataOwned<Elem = u16> + DataMut,\n D: Dimension,"],["impl<S, D> Div<ArrayBase<S, D>> for i32where\n S: DataOwned<Elem = i32> + DataMut,\n D: Dimension,"]], "num_complex":[["impl Div<Complex<u8>> for u8"],["impl<T: Clone + Num> Div<T> for Complex<T>"],["impl<'a, 'b> Div<&'a Complex<usize>> for &'b usize"],["impl<'a> Div<Complex<i8>> for &'a i8"],["impl Div<Complex<i16>> for i16"],["impl<'a> Div<&'a Complex<f32>> for f32"],["impl<'a> Div<&'a Complex<f64>> for f64"],["impl<'a> Div<Complex<u128>> for &'a u128"],["impl<'a, 'b> Div<&'a Complex<i32>> for &'b i32"],["impl Div<Complex<u32>> for u32"],["impl<'a, T: Clone + Num> Div<&'a Complex<T>> for Complex<T>"],["impl Div<Complex<u16>> for u16"],["impl<'a> Div<Complex<f64>> for &'a f64"],["impl<'a> Div<&'a Complex<u32>> for u32"],["impl<'a> Div<Complex<u16>> for &'a u16"],["impl Div<Complex<i8>> for i8"],["impl<T: Clone + Num> Div<Complex<T>> for Complex<T>"],["impl<'a> Div<&'a Complex<u64>> for u64"],["impl<'a, 'b, T: Clone + Num> Div<&'b Complex<T>> for &'a Complex<T>"],["impl<'a> Div<Complex<i16>> for &'a i16"],["impl<'a, 'b, T: Clone + Num> Div<&'a T> for &'b Complex<T>"],["impl Div<Complex<usize>> for usize"],["impl<'a> Div<&'a Complex<i32>> for i32"],["impl<'a> Div<Complex<i128>> for &'a i128"],["impl<'a> Div<Complex<u32>> for &'a u32"],["impl<'a, 'b> Div<&'a Complex<f64>> for &'b f64"],["impl<'a> Div<&'a Complex<u128>> for u128"],["impl<'a> Div<Complex<u64>> for &'a u64"],["impl<'a> Div<Complex<isize>> for &'a isize"],["impl<'a> Div<&'a Complex<i16>> for i16"],["impl Div<Complex<i128>> for i128"],["impl<'a, T: Clone + Num> Div<&'a T> for Complex<T>"],["impl<'a> Div<Complex<i32>> for &'a i32"],["impl<'a, T: Clone + Num> Div<T> for &'a Complex<T>"],["impl<'a> Div<&'a Complex<i64>> for i64"],["impl Div<Complex<i32>> for i32"],["impl<'a> Div<&'a Complex<isize>> for isize"],["impl<'a, 'b> Div<&'a Complex<u16>> for &'b u16"],["impl<'a> Div<&'a Complex<i128>> for i128"],["impl Div<Complex<f32>> for f32"],["impl<'a> Div<Complex<usize>> for &'a usize"],["impl<'a, 'b> Div<&'a Complex<isize>> for &'b isize"],["impl<'a> Div<&'a Complex<usize>> for usize"],["impl<'a, 'b> Div<&'a Complex<u32>> for &'b u32"],["impl<'a, 'b> Div<&'a Complex<u128>> for &'b u128"],["impl<'a, 'b> Div<&'a Complex<u8>> for &'b u8"],["impl<'a, 'b> Div<&'a Complex<f32>> for &'b f32"],["impl<'a, T: Clone + Num> Div<Complex<T>> for &'a Complex<T>"],["impl<'a> Div<&'a Complex<u16>> for u16"],["impl<'a> Div<Complex<u8>> for &'a u8"],["impl Div<Complex<u128>> for u128"],["impl<'a, 'b> Div<&'a Complex<u64>> for &'b u64"],["impl<'a> Div<&'a Complex<i8>> for i8"],["impl<'a, 'b> Div<&'a Complex<i128>> for &'b i128"],["impl Div<Complex<f64>> for f64"],["impl<'a> Div<&'a Complex<u8>> for u8"],["impl Div<Complex<isize>> for isize"],["impl<'a, 'b> Div<&'a Complex<i16>> for &'b i16"],["impl Div<Complex<i64>> for i64"],["impl<'a, 'b> Div<&'a Complex<i8>> for &'b i8"],["impl<'a> Div<Complex<f32>> for &'a f32"],["impl Div<Complex<u64>> for u64"],["impl<'a> Div<Complex<i64>> for &'a i64"],["impl<'a, 'b> Div<&'a Complex<i64>> for &'b i64"]], -"polars_core":[["impl<T> Div<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T, N> Div<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl Div<Series> for Series"],["impl<T> Div<T> for Serieswhere\n T: Num + NumCast,"],["impl<T> Div<T> for &Serieswhere\n T: Num + NumCast,"],["impl<T, N> Div<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl Div<&Series> for &Series"],["impl<T> Div<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"]], +"polars_core":[["impl Div<Series> for Series"],["impl<T> Div<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T, N> Div<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl Div<&Series> for &Series"],["impl<T> Div<T> for Serieswhere\n T: Num + NumCast,"],["impl<T, N> Div<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T> Div<T> for &Serieswhere\n T: Num + NumCast,"],["impl<T> Div<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"]], "polars_plan":[["impl Div<Expr> for Expr"]], "pyo3":[["impl<'py> Div<&'py PyComplex> for &'py PyComplex"]], "strength_reduce":[["impl Div<StrengthReducedU8> for u8"],["impl Div<StrengthReducedU16> for u16"],["impl Div<StrengthReducedU128> for u128"],["impl Div<StrengthReducedUsize> for usize"],["impl Div<StrengthReducedU64> for u64"],["impl Div<StrengthReducedU32> for u32"]], diff --git a/implementors/core/ops/arith/trait.Mul.js b/implementors/core/ops/arith/trait.Mul.js index 54b87aed98f0..3023c3a622c6 100644 --- a/implementors/core/ops/arith/trait.Mul.js +++ b/implementors/core/ops/arith/trait.Mul.js @@ -4,7 +4,7 @@ "half":[["impl Mul<f16> for f16"],["impl Mul<bf16> for &bf16"],["impl Mul<&f16> for &f16"],["impl Mul<&f16> for f16"],["impl Mul<&bf16> for bf16"],["impl Mul<&bf16> for &bf16"],["impl Mul<bf16> for bf16"],["impl Mul<f16> for &f16"]], "ndarray":[["impl<'a, A, S, D, B> Mul<B> for &'a ArrayBase<S, D>where\n A: Clone + Mul<B, Output = A>,\n S: Data<Elem = A>,\n D: Dimension,\n B: ScalarOperand,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for f32where\n S: Data<Elem = f32>,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for i8where\n S: Data<Elem = i8>,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for f64where\n S: Data<Elem = f64>,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for u128where\n S: Data<Elem = u128>,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for u32where\n S: Data<Elem = u32>,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for u64where\n S: Data<Elem = u64>,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for u8where\n S: Data<Elem = u8>,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for i32where\n S: Data<Elem = i32>,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for i8where\n S: DataOwned<Elem = i8> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for usizewhere\n S: Data<Elem = usize>,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for i64where\n S: DataOwned<Elem = i64> + DataMut,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for isizewhere\n S: DataOwned<Elem = isize> + DataMut,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for f32where\n S: DataOwned<Elem = f32> + DataMut,\n D: Dimension,"],["impl<A, S, D, B> Mul<B> for ArrayBase<S, D>where\n A: Clone + Mul<B, Output = A>,\n S: DataOwned<Elem = A> + DataMut,\n D: Dimension,\n B: ScalarOperand,"],["impl<I> Mul<usize> for Dim<I>where\n Dim<I>: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for u8where\n S: DataOwned<Elem = u8> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for i64where\n S: Data<Elem = i64>,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Mul<&'a ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Mul<B, Output = A>,\n B: Clone,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, A, B, S, S2, D, E> Mul<ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Mul<B, Output = B>,\n B: Clone,\n S: Data<Elem = A>,\n S2: DataOwned<Elem = B> + DataMut,\n D: Dimension,\n E: Dimension + DimMax<D>,"],["impl<S, D> Mul<ArrayBase<S, D>> for i128where\n S: DataOwned<Elem = i128> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Mul<&'a ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Mul<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for f64where\n S: DataOwned<Elem = f64> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for i128where\n S: Data<Elem = i128>,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for i16where\n S: Data<Elem = i16>,\n D: Dimension,"],["impl<A, B, S, S2, D, E> Mul<ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Mul<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for i16where\n S: DataOwned<Elem = i16> + DataMut,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for Complex<f64>where\n S: DataOwned<Elem = Complex<f64>> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for Complex<f64>where\n S: Data<Elem = Complex<f64>>,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for usizewhere\n S: DataOwned<Elem = usize> + DataMut,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for u128where\n S: DataOwned<Elem = u128> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for Complex<f32>where\n S: Data<Elem = Complex<f32>>,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for isizewhere\n S: Data<Elem = isize>,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for u16where\n S: DataOwned<Elem = u16> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Mul<&'a ArrayBase<S, D>> for u16where\n S: Data<Elem = u16>,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for u32where\n S: DataOwned<Elem = u32> + DataMut,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for Complex<f32>where\n S: DataOwned<Elem = Complex<f32>> + DataMut,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for u64where\n S: DataOwned<Elem = u64> + DataMut,\n D: Dimension,"],["impl<S, D> Mul<ArrayBase<S, D>> for i32where\n S: DataOwned<Elem = i32> + DataMut,\n D: Dimension,"],["impl<I> Mul<Dim<I>> for Dim<I>where\n Dim<I>: Dimension,"]], "num_complex":[["impl<'a> Mul<&'a Complex<i8>> for i8"],["impl<'a> Mul<Complex<i8>> for &'a i8"],["impl<'a, T: Clone + Num> Mul<T> for &'a Complex<T>"],["impl Mul<Complex<i16>> for i16"],["impl<'a> Mul<&'a Complex<u32>> for u32"],["impl Mul<Complex<u16>> for u16"],["impl Mul<Complex<i8>> for i8"],["impl<'a, T: Clone + Num> Mul<Complex<T>> for &'a Complex<T>"],["impl<'a> Mul<&'a Complex<u64>> for u64"],["impl<'a> Mul<&'a Complex<f64>> for f64"],["impl<'a> Mul<Complex<i32>> for &'a i32"],["impl<'a> Mul<Complex<i64>> for &'a i64"],["impl Mul<Complex<i64>> for i64"],["impl<'a> Mul<&'a Complex<i64>> for i64"],["impl<'a> Mul<&'a Complex<i16>> for i16"],["impl<'a, 'b> Mul<&'a Complex<u16>> for &'b u16"],["impl<'a, 'b> Mul<&'a Complex<i32>> for &'b i32"],["impl<'a, 'b> Mul<&'a Complex<usize>> for &'b usize"],["impl<'a> Mul<&'a Complex<u16>> for u16"],["impl<'a> Mul<Complex<u128>> for &'a u128"],["impl<'a, 'b> Mul<&'a Complex<i16>> for &'b i16"],["impl<'a> Mul<Complex<i16>> for &'a i16"],["impl Mul<Complex<i128>> for i128"],["impl<'a> Mul<&'a Complex<isize>> for isize"],["impl<'a> Mul<Complex<f64>> for &'a f64"],["impl Mul<Complex<u32>> for u32"],["impl<'a> Mul<Complex<u8>> for &'a u8"],["impl<'a, 'b> Mul<&'a Complex<u128>> for &'b u128"],["impl Mul<Complex<usize>> for usize"],["impl<'a, 'b> Mul<&'a Complex<i8>> for &'b i8"],["impl<'a, T: Clone + Num> Mul<&'a Complex<T>> for Complex<T>"],["impl Mul<Complex<f32>> for f32"],["impl<'a, 'b> Mul<&'a Complex<isize>> for &'b isize"],["impl<T: Clone + Num> Mul<T> for Complex<T>"],["impl<'a, 'b> Mul<&'a Complex<u8>> for &'b u8"],["impl<'a, 'b> Mul<&'a Complex<i64>> for &'b i64"],["impl<'a, 'b> Mul<&'a Complex<u32>> for &'b u32"],["impl<'a> Mul<&'a Complex<u128>> for u128"],["impl<'a, T: Clone + Num> Mul<&'a T> for Complex<T>"],["impl<'a, 'b, T: Clone + Num> Mul<&'a T> for &'b Complex<T>"],["impl<'a> Mul<Complex<usize>> for &'a usize"],["impl<'a> Mul<Complex<u16>> for &'a u16"],["impl<'a> Mul<&'a Complex<u8>> for u8"],["impl<'a, 'b, T: Clone + Num> Mul<&'b Complex<T>> for &'a Complex<T>"],["impl<'a, 'b> Mul<&'a Complex<f64>> for &'b f64"],["impl Mul<Complex<i32>> for i32"],["impl<'a> Mul<Complex<i128>> for &'a i128"],["impl<'a, 'b> Mul<&'a Complex<f32>> for &'b f32"],["impl Mul<Complex<u64>> for u64"],["impl<'a, 'b> Mul<&'a Complex<i128>> for &'b i128"],["impl<'a> Mul<Complex<u64>> for &'a u64"],["impl<'a> Mul<&'a Complex<i32>> for i32"],["impl<'a> Mul<&'a Complex<f32>> for f32"],["impl<'a> Mul<Complex<f32>> for &'a f32"],["impl<'a, 'b> Mul<&'a Complex<u64>> for &'b u64"],["impl Mul<Complex<u8>> for u8"],["impl Mul<Complex<f64>> for f64"],["impl<'a> Mul<Complex<u32>> for &'a u32"],["impl<T: Clone + Num> Mul<Complex<T>> for Complex<T>"],["impl Mul<Complex<u128>> for u128"],["impl<'a> Mul<&'a Complex<i128>> for i128"],["impl<'a> Mul<&'a Complex<usize>> for usize"],["impl<'a> Mul<Complex<isize>> for &'a isize"],["impl Mul<Complex<isize>> for isize"]], -"polars_core":[["impl<T, N> Mul<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl Mul<Series> for Series"],["impl<T> Mul<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T> Mul<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T, N> Mul<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T> Mul<T> for Serieswhere\n T: Num + NumCast,"],["impl<T> Mul<T> for &Serieswhere\n T: Num + NumCast,"],["impl Mul<&Series> for &Series"]], +"polars_core":[["impl Mul<&Series> for &Series"],["impl Mul<Series> for Series"],["impl<T> Mul<T> for Serieswhere\n T: Num + NumCast,"],["impl<T, N> Mul<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T> Mul<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T, N> Mul<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T> Mul<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T> Mul<T> for &Serieswhere\n T: Num + NumCast,"]], "polars_plan":[["impl Mul<Expr> for Expr"]], "polars_time":[["impl Mul<i64> for Duration"]], "pyo3":[["impl<'py> Mul<&'py PyComplex> for &'py PyComplex"]], diff --git a/implementors/core/ops/arith/trait.Neg.js b/implementors/core/ops/arith/trait.Neg.js index 9b21749cc60f..2bd526853a9b 100644 --- a/implementors/core/ops/arith/trait.Neg.js +++ b/implementors/core/ops/arith/trait.Neg.js @@ -1,5 +1,5 @@ (function() {var implementors = { -"arrow2":[["impl Neg for i256"],["impl Neg for days_ms"],["impl Neg for months_days_ns"]], +"arrow2":[["impl Neg for days_ms"],["impl Neg for months_days_ns"],["impl Neg for i256"]], "chrono":[["impl Neg for Duration"]], "ethnum":[["impl Neg for &I256"],["impl Neg for I256"]], "half":[["impl Neg for bf16"],["impl Neg for f16"]], diff --git a/implementors/core/ops/arith/trait.Rem.js b/implementors/core/ops/arith/trait.Rem.js index fa31d3768a0f..4d5c2b9a6bee 100644 --- a/implementors/core/ops/arith/trait.Rem.js +++ b/implementors/core/ops/arith/trait.Rem.js @@ -3,7 +3,7 @@ "half":[["impl Rem<&bf16> for bf16"],["impl Rem<&bf16> for &bf16"],["impl Rem<&f16> for f16"],["impl Rem<bf16> for &bf16"],["impl Rem<f16> for &f16"],["impl Rem<bf16> for bf16"],["impl Rem<f16> for f16"],["impl Rem<&f16> for &f16"]], "ndarray":[["impl<A, B, S, S2, D, E> Rem<ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Rem<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for u64where\n S: Data<Elem = u64>,\n D: Dimension,"],["impl<'a, A, S, D, B> Rem<B> for &'a ArrayBase<S, D>where\n A: Clone + Rem<B, Output = A>,\n S: Data<Elem = A>,\n D: Dimension,\n B: ScalarOperand,"],["impl<A, S, D, B> Rem<B> for ArrayBase<S, D>where\n A: Clone + Rem<B, Output = A>,\n S: DataOwned<Elem = A> + DataMut,\n D: Dimension,\n B: ScalarOperand,"],["impl<S, D> Rem<ArrayBase<S, D>> for isizewhere\n S: DataOwned<Elem = isize> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for i64where\n S: Data<Elem = i64>,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for f64where\n S: DataOwned<Elem = f64> + DataMut,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for u128where\n S: DataOwned<Elem = u128> + DataMut,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for u16where\n S: DataOwned<Elem = u16> + DataMut,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for i64where\n S: DataOwned<Elem = i64> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Rem<ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Rem<B, Output = B>,\n B: Clone,\n S: Data<Elem = A>,\n S2: DataOwned<Elem = B> + DataMut,\n D: Dimension,\n E: Dimension + DimMax<D>,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for isizewhere\n S: Data<Elem = isize>,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for usizewhere\n S: Data<Elem = usize>,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for i8where\n S: Data<Elem = i8>,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Rem<&'a ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Rem<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for u128where\n S: Data<Elem = u128>,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for i16where\n S: Data<Elem = i16>,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for f64where\n S: Data<Elem = f64>,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for usizewhere\n S: DataOwned<Elem = usize> + DataMut,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for i128where\n S: DataOwned<Elem = i128> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for f32where\n S: Data<Elem = f32>,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for i32where\n S: DataOwned<Elem = i32> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for i32where\n S: Data<Elem = i32>,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for u32where\n S: DataOwned<Elem = u32> + DataMut,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for f32where\n S: DataOwned<Elem = f32> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Rem<&'a ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Rem<B, Output = A>,\n B: Clone,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for u8where\n S: Data<Elem = u8>,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for u64where\n S: DataOwned<Elem = u64> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for i128where\n S: Data<Elem = i128>,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for u16where\n S: Data<Elem = u16>,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for i16where\n S: DataOwned<Elem = i16> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Rem<&'a ArrayBase<S, D>> for u32where\n S: Data<Elem = u32>,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for u8where\n S: DataOwned<Elem = u8> + DataMut,\n D: Dimension,"],["impl<S, D> Rem<ArrayBase<S, D>> for i8where\n S: DataOwned<Elem = i8> + DataMut,\n D: Dimension,"]], "num_complex":[["impl<'a, T: Clone + Num> Rem<&'a T> for Complex<T>"],["impl<'a> Rem<Complex<u128>> for &'a u128"],["impl Rem<Complex<u32>> for u32"],["impl<'a> Rem<&'a Complex<u64>> for u64"],["impl<'a> Rem<Complex<i8>> for &'a i8"],["impl<'a, 'b, T: Clone + Num> Rem<&'a T> for &'b Complex<T>"],["impl Rem<Complex<i64>> for i64"],["impl Rem<Complex<i16>> for i16"],["impl<'a> Rem<&'a Complex<i8>> for i8"],["impl<'a> Rem<Complex<f32>> for &'a f32"],["impl<'a, 'b> Rem<&'a Complex<i8>> for &'b i8"],["impl<'a> Rem<Complex<f64>> for &'a f64"],["impl<'a, 'b> Rem<&'a Complex<f32>> for &'b f32"],["impl<'a> Rem<&'a Complex<u8>> for u8"],["impl<'a> Rem<Complex<usize>> for &'a usize"],["impl Rem<Complex<usize>> for usize"],["impl<'a> Rem<Complex<i64>> for &'a i64"],["impl<'a, T: Clone + Num> Rem<Complex<T>> for &'a Complex<T>"],["impl Rem<Complex<u8>> for u8"],["impl<'a> Rem<&'a Complex<i16>> for i16"],["impl Rem<Complex<isize>> for isize"],["impl Rem<Complex<u16>> for u16"],["impl<'a> Rem<&'a Complex<u128>> for u128"],["impl<T: Clone + Num> Rem<T> for Complex<T>"],["impl<'a, 'b, T: Clone + Num> Rem<&'b Complex<T>> for &'a Complex<T>"],["impl<'a> Rem<Complex<isize>> for &'a isize"],["impl<'a> Rem<Complex<u8>> for &'a u8"],["impl<'a, 'b> Rem<&'a Complex<usize>> for &'b usize"],["impl Rem<Complex<i8>> for i8"],["impl<'a, 'b> Rem<&'a Complex<isize>> for &'b isize"],["impl<'a> Rem<&'a Complex<f64>> for f64"],["impl<'a> Rem<&'a Complex<i32>> for i32"],["impl<'a, T: Clone + Num> Rem<T> for &'a Complex<T>"],["impl<'a, 'b> Rem<&'a Complex<i32>> for &'b i32"],["impl<'a> Rem<Complex<i128>> for &'a i128"],["impl<'a> Rem<&'a Complex<isize>> for isize"],["impl Rem<Complex<f32>> for f32"],["impl<T: Clone + Num> Rem<Complex<T>> for Complex<T>"],["impl<'a> Rem<&'a Complex<u16>> for u16"],["impl<'a> Rem<Complex<u16>> for &'a u16"],["impl<'a, 'b> Rem<&'a Complex<i128>> for &'b i128"],["impl<'a> Rem<Complex<i32>> for &'a i32"],["impl Rem<Complex<i32>> for i32"],["impl<'a, 'b> Rem<&'a Complex<u32>> for &'b u32"],["impl<'a> Rem<Complex<u32>> for &'a u32"],["impl<'a> Rem<&'a Complex<i128>> for i128"],["impl<'a> Rem<&'a Complex<i64>> for i64"],["impl<'a> Rem<&'a Complex<usize>> for usize"],["impl<'a, 'b> Rem<&'a Complex<u64>> for &'b u64"],["impl<'a> Rem<&'a Complex<f32>> for f32"],["impl<'a, 'b> Rem<&'a Complex<u16>> for &'b u16"],["impl<'a, 'b> Rem<&'a Complex<u128>> for &'b u128"],["impl Rem<Complex<u128>> for u128"],["impl<'a, 'b> Rem<&'a Complex<i16>> for &'b i16"],["impl Rem<Complex<i128>> for i128"],["impl<'a> Rem<Complex<u64>> for &'a u64"],["impl<'a> Rem<&'a Complex<u32>> for u32"],["impl Rem<Complex<u64>> for u64"],["impl<'a> Rem<Complex<i16>> for &'a i16"],["impl<'a, 'b> Rem<&'a Complex<i64>> for &'b i64"],["impl Rem<Complex<f64>> for f64"],["impl<'a, 'b> Rem<&'a Complex<u8>> for &'b u8"],["impl<'a, 'b> Rem<&'a Complex<f64>> for &'b f64"],["impl<'a, T: Clone + Num> Rem<&'a Complex<T>> for Complex<T>"]], -"polars_core":[["impl<T> Rem<T> for Serieswhere\n T: Num + NumCast,"],["impl<T> Rem<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T, N> Rem<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T, N> Rem<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T> Rem<T> for &Serieswhere\n T: Num + NumCast,"],["impl<T> Rem<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"],["impl Rem<&Series> for &Series"]], +"polars_core":[["impl<T> Rem<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T, N> Rem<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T> Rem<T> for Serieswhere\n T: Num + NumCast,"],["impl Rem<&Series> for &Series"],["impl<T> Rem<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T> Rem<T> for &Serieswhere\n T: Num + NumCast,"],["impl<T, N> Rem<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"]], "polars_plan":[["impl Rem<Expr> for Expr"]], "strength_reduce":[["impl Rem<StrengthReducedU8> for u8"],["impl Rem<StrengthReducedU16> for u16"],["impl Rem<StrengthReducedUsize> for usize"],["impl Rem<StrengthReducedU64> for u64"],["impl Rem<StrengthReducedU128> for u128"],["impl Rem<StrengthReducedU32> for u32"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/ops/arith/trait.Sub.js b/implementors/core/ops/arith/trait.Sub.js index 3dd8e446541e..21da763ac8d4 100644 --- a/implementors/core/ops/arith/trait.Sub.js +++ b/implementors/core/ops/arith/trait.Sub.js @@ -8,7 +8,7 @@ "indexmap":[["impl<T, S1, S2> Sub<&IndexSet<T, S2>> for &IndexSet<T, S1>where\n T: Eq + Hash + Clone,\n S1: BuildHasher + Default,\n S2: BuildHasher,"]], "ndarray":[["impl<'a, A, B, S, S2, D, E> Sub<ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Sub<B, Output = B>,\n B: Clone,\n S: Data<Elem = A>,\n S2: DataOwned<Elem = B> + DataMut,\n D: Dimension,\n E: Dimension + DimMax<D>,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for u64where\n S: Data<Elem = u64>,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for f64where\n S: Data<Elem = f64>,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for i32where\n S: DataOwned<Elem = i32> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for i64where\n S: Data<Elem = i64>,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for i16where\n S: Data<Elem = i16>,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for f64where\n S: DataOwned<Elem = f64> + DataMut,\n D: Dimension,"],["impl<A, S, D, B> Sub<B> for ArrayBase<S, D>where\n A: Clone + Sub<B, Output = A>,\n S: DataOwned<Elem = A> + DataMut,\n D: Dimension,\n B: ScalarOperand,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for i128where\n S: Data<Elem = i128>,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for u32where\n S: DataOwned<Elem = u32> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for i32where\n S: Data<Elem = i32>,\n D: Dimension,"],["impl<I> Sub<Dim<I>> for Dim<I>where\n Dim<I>: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for u64where\n S: DataOwned<Elem = u64> + DataMut,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for isizewhere\n S: DataOwned<Elem = isize> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for i8where\n S: Data<Elem = i8>,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for u32where\n S: Data<Elem = u32>,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for u8where\n S: DataOwned<Elem = u8> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for Complex<f32>where\n S: Data<Elem = Complex<f32>>,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for i8where\n S: DataOwned<Elem = i8> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Sub<&'a ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Sub<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for Complex<f64>where\n S: DataOwned<Elem = Complex<f64>> + DataMut,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for f32where\n S: DataOwned<Elem = f32> + DataMut,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for i128where\n S: DataOwned<Elem = i128> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for isizewhere\n S: Data<Elem = isize>,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for Complex<f32>where\n S: DataOwned<Elem = Complex<f32>> + DataMut,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for i16where\n S: DataOwned<Elem = i16> + DataMut,\n D: Dimension,"],["impl Sub<usize> for Dim<[Ix; 1]>"],["impl<S, D> Sub<ArrayBase<S, D>> for usizewhere\n S: DataOwned<Elem = usize> + DataMut,\n D: Dimension,"],["impl<'a, A, S, D, B> Sub<B> for &'a ArrayBase<S, D>where\n A: Clone + Sub<B, Output = A>,\n S: Data<Elem = A>,\n D: Dimension,\n B: ScalarOperand,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for usizewhere\n S: Data<Elem = usize>,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for u16where\n S: DataOwned<Elem = u16> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> Sub<&'a ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + Sub<B, Output = A>,\n B: Clone,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for u16where\n S: Data<Elem = u16>,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for Complex<f64>where\n S: Data<Elem = Complex<f64>>,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for u128where\n S: Data<Elem = u128>,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for f32where\n S: Data<Elem = f32>,\n D: Dimension,"],["impl<A, B, S, S2, D, E> Sub<ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + Sub<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for i64where\n S: DataOwned<Elem = i64> + DataMut,\n D: Dimension,"],["impl<'a, S, D> Sub<&'a ArrayBase<S, D>> for u8where\n S: Data<Elem = u8>,\n D: Dimension,"],["impl<S, D> Sub<ArrayBase<S, D>> for u128where\n S: DataOwned<Elem = u128> + DataMut,\n D: Dimension,"]], "num_complex":[["impl<'a> Sub<Complex<u16>> for &'a u16"],["impl<'a, 'b, T: Clone + Num> Sub<&'b Complex<T>> for &'a Complex<T>"],["impl<'a> Sub<&'a Complex<i128>> for i128"],["impl<'a> Sub<&'a Complex<i16>> for i16"],["impl<'a, T: Clone + Num> Sub<T> for &'a Complex<T>"],["impl<'a, 'b> Sub<&'a Complex<u32>> for &'b u32"],["impl<'a, 'b> Sub<&'a Complex<u128>> for &'b u128"],["impl<'a> Sub<Complex<i8>> for &'a i8"],["impl<'a, 'b> Sub<&'a Complex<f32>> for &'b f32"],["impl<'a> Sub<&'a Complex<u16>> for u16"],["impl<'a> Sub<Complex<u64>> for &'a u64"],["impl<'a, 'b> Sub<&'a Complex<u16>> for &'b u16"],["impl<'a> Sub<&'a Complex<i8>> for i8"],["impl<'a> Sub<Complex<isize>> for &'a isize"],["impl<'a, 'b> Sub<&'a Complex<i16>> for &'b i16"],["impl Sub<Complex<u8>> for u8"],["impl Sub<Complex<u128>> for u128"],["impl Sub<Complex<u16>> for u16"],["impl<'a> Sub<&'a Complex<u64>> for u64"],["impl<'a> Sub<Complex<u8>> for &'a u8"],["impl<'a> Sub<&'a Complex<usize>> for usize"],["impl<'a, 'b> Sub<&'a Complex<usize>> for &'b usize"],["impl<T: Clone + Num> Sub<Complex<T>> for Complex<T>"],["impl<'a> Sub<&'a Complex<f64>> for f64"],["impl<T: Clone + Num> Sub<T> for Complex<T>"],["impl<'a> Sub<&'a Complex<u8>> for u8"],["impl<'a> Sub<Complex<i32>> for &'a i32"],["impl Sub<Complex<u64>> for u64"],["impl Sub<Complex<u32>> for u32"],["impl<'a> Sub<Complex<usize>> for &'a usize"],["impl<'a> Sub<&'a Complex<u32>> for u32"],["impl<'a> Sub<Complex<i128>> for &'a i128"],["impl<'a, T: Clone + Num> Sub<&'a Complex<T>> for Complex<T>"],["impl<'a, 'b> Sub<&'a Complex<f64>> for &'b f64"],["impl<'a> Sub<&'a Complex<i32>> for i32"],["impl Sub<Complex<i64>> for i64"],["impl<'a, 'b> Sub<&'a Complex<u8>> for &'b u8"],["impl<'a> Sub<Complex<f32>> for &'a f32"],["impl Sub<Complex<i32>> for i32"],["impl Sub<Complex<f32>> for f32"],["impl<'a, 'b, T: Clone + Num> Sub<&'a T> for &'b Complex<T>"],["impl<'a> Sub<Complex<i64>> for &'a i64"],["impl Sub<Complex<i128>> for i128"],["impl<'a> Sub<&'a Complex<isize>> for isize"],["impl<'a, T: Clone + Num> Sub<&'a T> for Complex<T>"],["impl<'a> Sub<Complex<u32>> for &'a u32"],["impl<'a> Sub<Complex<i16>> for &'a i16"],["impl<'a, 'b> Sub<&'a Complex<i8>> for &'b i8"],["impl<'a, T: Clone + Num> Sub<Complex<T>> for &'a Complex<T>"],["impl Sub<Complex<isize>> for isize"],["impl<'a, 'b> Sub<&'a Complex<i128>> for &'b i128"],["impl<'a, 'b> Sub<&'a Complex<u64>> for &'b u64"],["impl<'a> Sub<&'a Complex<i64>> for i64"],["impl<'a, 'b> Sub<&'a Complex<isize>> for &'b isize"],["impl<'a, 'b> Sub<&'a Complex<i32>> for &'b i32"],["impl<'a> Sub<&'a Complex<f32>> for f32"],["impl Sub<Complex<i8>> for i8"],["impl Sub<Complex<f64>> for f64"],["impl<'a> Sub<Complex<u128>> for &'a u128"],["impl Sub<Complex<i16>> for i16"],["impl<'a, 'b> Sub<&'a Complex<i64>> for &'b i64"],["impl<'a> Sub<Complex<f64>> for &'a f64"],["impl<'a> Sub<&'a Complex<u128>> for u128"],["impl Sub<Complex<usize>> for usize"]], -"polars_core":[["impl<T> Sub<T> for Serieswhere\n T: Num + NumCast,"],["impl<T> Sub<T> for &Serieswhere\n T: Num + NumCast,"],["impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"],["impl Sub<Series> for Series"],["impl<T> Sub<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T, N> Sub<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl<T, N> Sub<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl Sub<&Series> for &Series"]], +"polars_core":[["impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T> Sub<T> for Serieswhere\n T: Num + NumCast,"],["impl<T> Sub<T> for &Serieswhere\n T: Num + NumCast,"],["impl Sub<&Series> for &Series"],["impl<T, N> Sub<N> for &ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"],["impl Sub<Series> for Series"],["impl<T> Sub<ChunkedArray<T>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl<T, N> Sub<N> for ChunkedArray<T>where\n T: PolarsNumericType,\n N: Num + ToPrimitive,"]], "polars_plan":[["impl Sub<Expr> for Expr"]], "pyo3":[["impl<'py> Sub<&'py PyComplex> for &'py PyComplex"]], "time":[["impl Sub<Duration> for Duration"],["impl Sub<Duration> for Tm"],["impl Sub<Tm> for Tm"],["impl Sub<Timespec> for Timespec"],["impl Sub<Duration> for SteadyTime"],["impl Sub<Duration> for Timespec"],["impl Sub<SteadyTime> for SteadyTime"]], diff --git a/implementors/core/ops/bit/trait.BitAnd.js b/implementors/core/ops/bit/trait.BitAnd.js index 4c0a7ab21977..26c11d92e70e 100644 --- a/implementors/core/ops/bit/trait.BitAnd.js +++ b/implementors/core/ops/bit/trait.BitAnd.js @@ -6,6 +6,6 @@ "hashbrown":[["impl<T, S, A> BitAnd<&HashSet<T, S, A>> for &HashSet<T, S, A>where\n T: Eq + Hash + Clone,\n S: BuildHasher + Default,\n A: Allocator + Clone,"]], "indexmap":[["impl<T, S1, S2> BitAnd<&IndexSet<T, S2>> for &IndexSet<T, S1>where\n T: Eq + Hash + Clone,\n S1: BuildHasher + Default,\n S2: BuildHasher,"]], "ndarray":[["impl<A, S, D, B> BitAnd<B> for ArrayBase<S, D>where\n A: Clone + BitAnd<B, Output = A>,\n S: DataOwned<Elem = A> + DataMut,\n D: Dimension,\n B: ScalarOperand,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for isizewhere\n S: Data<Elem = isize>,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for u128where\n S: Data<Elem = u128>,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for usizewhere\n S: DataOwned<Elem = usize> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for usizewhere\n S: Data<Elem = usize>,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for i128where\n S: Data<Elem = i128>,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> BitAnd<&'a ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + BitAnd<B, Output = A>,\n B: Clone,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for u128where\n S: DataOwned<Elem = u128> + DataMut,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for isizewhere\n S: DataOwned<Elem = isize> + DataMut,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for u8where\n S: DataOwned<Elem = u8> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for i32where\n S: Data<Elem = i32>,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for i16where\n S: Data<Elem = i16>,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for u32where\n S: DataOwned<Elem = u32> + DataMut,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for i32where\n S: DataOwned<Elem = i32> + DataMut,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for i128where\n S: DataOwned<Elem = i128> + DataMut,\n D: Dimension,"],["impl<A, B, S, S2, D, E> BitAnd<ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + BitAnd<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for i8where\n S: DataOwned<Elem = i8> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for u8where\n S: Data<Elem = u8>,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for u16where\n S: DataOwned<Elem = u16> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for u16where\n S: Data<Elem = u16>,\n D: Dimension,"],["impl<'a, A, S, D, B> BitAnd<B> for &'a ArrayBase<S, D>where\n A: Clone + BitAnd<B, Output = A>,\n S: Data<Elem = A>,\n D: Dimension,\n B: ScalarOperand,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for u32where\n S: Data<Elem = u32>,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> BitAnd<ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + BitAnd<B, Output = B>,\n B: Clone,\n S: Data<Elem = A>,\n S2: DataOwned<Elem = B> + DataMut,\n D: Dimension,\n E: Dimension + DimMax<D>,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for boolwhere\n S: Data<Elem = bool>,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for i64where\n S: Data<Elem = i64>,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for i16where\n S: DataOwned<Elem = i16> + DataMut,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for boolwhere\n S: DataOwned<Elem = bool> + DataMut,\n D: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for i64where\n S: DataOwned<Elem = i64> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> BitAnd<&'a ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + BitAnd<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> BitAnd<ArrayBase<S, D>> for u64where\n S: DataOwned<Elem = u64> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for u64where\n S: Data<Elem = u64>,\n D: Dimension,"],["impl<'a, S, D> BitAnd<&'a ArrayBase<S, D>> for i8where\n S: Data<Elem = i8>,\n D: Dimension,"]], -"polars_core":[["impl<T> BitAnd<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsIntegerType,\n T::Native: BitAnd<Output = T::Native>,"],["impl BitAnd<&ChunkedArray<BooleanType>> for &BooleanChunked"],["impl BitAnd<ChunkedArray<BooleanType>> for BooleanChunked"]], +"polars_core":[["impl BitAnd<&ChunkedArray<BooleanType>> for &BooleanChunked"],["impl BitAnd<ChunkedArray<BooleanType>> for BooleanChunked"],["impl<T> BitAnd<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsIntegerType,\n T::Native: BitAnd<Output = T::Native>,"]], "tokio":[["impl BitAnd<Ready> for Ready"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/ops/bit/trait.BitOr.js b/implementors/core/ops/bit/trait.BitOr.js index 557810d4e687..e2d9d2e57530 100644 --- a/implementors/core/ops/bit/trait.BitOr.js +++ b/implementors/core/ops/bit/trait.BitOr.js @@ -1,12 +1,12 @@ (function() {var implementors = { "ahash":[["impl<T, S> BitOr<&AHashSet<T, S>> for &AHashSet<T, S>where\n T: Eq + Hash + Clone,\n S: BuildHasher + Default,"]], -"arrow2":[["impl<'a, 'b> BitOr<&'b Bitmap> for &'a Bitmap"],["impl<'a> BitOr<&'a Bitmap> for MutableBitmap"]], +"arrow2":[["impl<'a> BitOr<&'a Bitmap> for MutableBitmap"],["impl<'a, 'b> BitOr<&'b Bitmap> for &'a Bitmap"]], "crossterm":[["impl BitOr<KeyboardEnhancementFlags> for KeyboardEnhancementFlags"],["impl BitOr<KeyEventState> for KeyEventState"],["impl BitOr<Attributes> for Attributes"],["impl BitOr<Attribute> for Attributes"],["impl BitOr<KeyModifiers> for KeyModifiers"]], "ethnum":[["impl BitOr<u128> for U256"],["impl BitOr<U256> for U256"],["impl BitOr<I256> for i128"],["impl BitOr<U256> for u128"],["impl BitOr<I256> for I256"],["impl BitOr<&i128> for &I256"],["impl BitOr<&I256> for i128"],["impl BitOr<i128> for I256"],["impl BitOr<U256> for &U256"],["impl BitOr<&i128> for I256"],["impl BitOr<&U256> for u128"],["impl BitOr<i128> for &I256"],["impl BitOr<u128> for &U256"],["impl BitOr<U256> for &u128"],["impl BitOr<&U256> for &U256"],["impl BitOr<&I256> for &I256"],["impl BitOr<&I256> for &i128"],["impl BitOr<&u128> for U256"],["impl BitOr<&U256> for &u128"],["impl BitOr<&U256> for U256"],["impl BitOr<I256> for &I256"],["impl BitOr<&u128> for &U256"],["impl BitOr<&I256> for I256"],["impl BitOr<I256> for &i128"]], "hashbrown":[["impl<T, S, A> BitOr<&HashSet<T, S, A>> for &HashSet<T, S, A>where\n T: Eq + Hash + Clone,\n S: BuildHasher + Default,\n A: Allocator + Clone,"]], "indexmap":[["impl<T, S1, S2> BitOr<&IndexSet<T, S2>> for &IndexSet<T, S1>where\n T: Eq + Hash + Clone,\n S1: BuildHasher + Default,\n S2: BuildHasher,"]], "mio":[["impl BitOr<Interest> for Interest"]], "ndarray":[["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for i16where\n S: Data<Elem = i16>,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for u32where\n S: DataOwned<Elem = u32> + DataMut,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for i16where\n S: DataOwned<Elem = i16> + DataMut,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for i128where\n S: DataOwned<Elem = i128> + DataMut,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for i32where\n S: DataOwned<Elem = i32> + DataMut,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for u128where\n S: DataOwned<Elem = u128> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for boolwhere\n S: Data<Elem = bool>,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for i128where\n S: Data<Elem = i128>,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for u16where\n S: DataOwned<Elem = u16> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> BitOr<&'a ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + BitOr<B, Output = A>,\n B: Clone,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for u64where\n S: DataOwned<Elem = u64> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for u128where\n S: Data<Elem = u128>,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for i64where\n S: Data<Elem = i64>,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for isizewhere\n S: Data<Elem = isize>,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for u8where\n S: DataOwned<Elem = u8> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for u16where\n S: Data<Elem = u16>,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for u64where\n S: Data<Elem = u64>,\n D: Dimension,"],["impl<A, B, S, S2, D, E> BitOr<ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + BitOr<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for i8where\n S: Data<Elem = i8>,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for boolwhere\n S: DataOwned<Elem = bool> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for usizewhere\n S: Data<Elem = usize>,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for usizewhere\n S: DataOwned<Elem = usize> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for u32where\n S: Data<Elem = u32>,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for u8where\n S: Data<Elem = u8>,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> BitOr<ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + BitOr<B, Output = B>,\n B: Clone,\n S: Data<Elem = A>,\n S2: DataOwned<Elem = B> + DataMut,\n D: Dimension,\n E: Dimension + DimMax<D>,"],["impl<'a, A, S, D, B> BitOr<B> for &'a ArrayBase<S, D>where\n A: Clone + BitOr<B, Output = A>,\n S: Data<Elem = A>,\n D: Dimension,\n B: ScalarOperand,"],["impl<A, S, D, B> BitOr<B> for ArrayBase<S, D>where\n A: Clone + BitOr<B, Output = A>,\n S: DataOwned<Elem = A> + DataMut,\n D: Dimension,\n B: ScalarOperand,"],["impl<'a, A, B, S, S2, D, E> BitOr<&'a ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + BitOr<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for i8where\n S: DataOwned<Elem = i8> + DataMut,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for isizewhere\n S: DataOwned<Elem = isize> + DataMut,\n D: Dimension,"],["impl<S, D> BitOr<ArrayBase<S, D>> for i64where\n S: DataOwned<Elem = i64> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitOr<&'a ArrayBase<S, D>> for i32where\n S: Data<Elem = i32>,\n D: Dimension,"]], -"polars_core":[["impl BitOr<&ChunkedArray<BooleanType>> for &BooleanChunked"],["impl BitOr<ChunkedArray<BooleanType>> for BooleanChunked"],["impl<T> BitOr<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsIntegerType,\n T::Native: BitOr<Output = T::Native>,"]], +"polars_core":[["impl BitOr<ChunkedArray<BooleanType>> for BooleanChunked"],["impl<T> BitOr<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsIntegerType,\n T::Native: BitOr<Output = T::Native>,"],["impl BitOr<&ChunkedArray<BooleanType>> for &BooleanChunked"]], "tokio":[["impl BitOr<Ready> for Ready"],["impl BitOr<Interest> for Interest"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/ops/bit/trait.BitXor.js b/implementors/core/ops/bit/trait.BitXor.js index 7596428f0dce..716f31d53333 100644 --- a/implementors/core/ops/bit/trait.BitXor.js +++ b/implementors/core/ops/bit/trait.BitXor.js @@ -1,10 +1,10 @@ (function() {var implementors = { "ahash":[["impl<T, S> BitXor<&AHashSet<T, S>> for &AHashSet<T, S>where\n T: Eq + Hash + Clone,\n S: BuildHasher + Default,"]], -"arrow2":[["impl<'a, 'b> BitXor<&'b Bitmap> for &'a Bitmap"],["impl<'a> BitXor<&'a Bitmap> for MutableBitmap"]], +"arrow2":[["impl<'a> BitXor<&'a Bitmap> for MutableBitmap"],["impl<'a, 'b> BitXor<&'b Bitmap> for &'a Bitmap"]], "crossterm":[["impl BitXor<Attributes> for Attributes"],["impl BitXor<KeyEventState> for KeyEventState"],["impl BitXor<KeyboardEnhancementFlags> for KeyboardEnhancementFlags"],["impl BitXor<KeyModifiers> for KeyModifiers"],["impl BitXor<Attribute> for Attributes"]], "ethnum":[["impl BitXor<U256> for U256"],["impl BitXor<&I256> for &I256"],["impl BitXor<u128> for &U256"],["impl BitXor<I256> for &I256"],["impl BitXor<I256> for I256"],["impl BitXor<U256> for &U256"],["impl BitXor<&u128> for &U256"],["impl BitXor<&i128> for I256"],["impl BitXor<&I256> for &i128"],["impl BitXor<I256> for &i128"],["impl BitXor<&I256> for I256"],["impl BitXor<U256> for u128"],["impl BitXor<u128> for U256"],["impl BitXor<&i128> for &I256"],["impl BitXor<&U256> for U256"],["impl BitXor<&U256> for &u128"],["impl BitXor<i128> for I256"],["impl BitXor<&U256> for u128"],["impl BitXor<U256> for &u128"],["impl BitXor<&I256> for i128"],["impl BitXor<i128> for &I256"],["impl BitXor<I256> for i128"],["impl BitXor<&u128> for U256"],["impl BitXor<&U256> for &U256"]], "hashbrown":[["impl<T, S> BitXor<&HashSet<T, S, Global>> for &HashSet<T, S>where\n T: Eq + Hash + Clone,\n S: BuildHasher + Default,"]], "indexmap":[["impl<T, S1, S2> BitXor<&IndexSet<T, S2>> for &IndexSet<T, S1>where\n T: Eq + Hash + Clone,\n S1: BuildHasher + Default,\n S2: BuildHasher,"]], "ndarray":[["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for i16where\n S: Data<Elem = i16>,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> BitXor<&'a ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + BitXor<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for u8where\n S: DataOwned<Elem = u8> + DataMut,\n D: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for u16where\n S: DataOwned<Elem = u16> + DataMut,\n D: Dimension,"],["impl<A, B, S, S2, D, E> BitXor<ArrayBase<S2, E>> for ArrayBase<S, D>where\n A: Clone + BitXor<B, Output = A>,\n B: Clone,\n S: DataOwned<Elem = A> + DataMut,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for isizewhere\n S: DataOwned<Elem = isize> + DataMut,\n D: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for boolwhere\n S: DataOwned<Elem = bool> + DataMut,\n D: Dimension,"],["impl<'a, A, S, D, B> BitXor<B> for &'a ArrayBase<S, D>where\n A: Clone + BitXor<B, Output = A>,\n S: Data<Elem = A>,\n D: Dimension,\n B: ScalarOperand,"],["impl<S, D> BitXor<ArrayBase<S, D>> for usizewhere\n S: DataOwned<Elem = usize> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for i128where\n S: Data<Elem = i128>,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for u16where\n S: Data<Elem = u16>,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for isizewhere\n S: Data<Elem = isize>,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for i32where\n S: Data<Elem = i32>,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for u32where\n S: Data<Elem = u32>,\n D: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for u64where\n S: DataOwned<Elem = u64> + DataMut,\n D: Dimension,"],["impl<'a, A, B, S, S2, D, E> BitXor<&'a ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + BitXor<B, Output = A>,\n B: Clone,\n S: Data<Elem = A>,\n S2: Data<Elem = B>,\n D: Dimension + DimMax<E>,\n E: Dimension,"],["impl<'a, A, B, S, S2, D, E> BitXor<ArrayBase<S2, E>> for &'a ArrayBase<S, D>where\n A: Clone + BitXor<B, Output = B>,\n B: Clone,\n S: Data<Elem = A>,\n S2: DataOwned<Elem = B> + DataMut,\n D: Dimension,\n E: Dimension + DimMax<D>,"],["impl<S, D> BitXor<ArrayBase<S, D>> for u32where\n S: DataOwned<Elem = u32> + DataMut,\n D: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for i8where\n S: DataOwned<Elem = i8> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for i64where\n S: Data<Elem = i64>,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for usizewhere\n S: Data<Elem = usize>,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for boolwhere\n S: Data<Elem = bool>,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for u128where\n S: Data<Elem = u128>,\n D: Dimension,"],["impl<A, S, D, B> BitXor<B> for ArrayBase<S, D>where\n A: Clone + BitXor<B, Output = A>,\n S: DataOwned<Elem = A> + DataMut,\n D: Dimension,\n B: ScalarOperand,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for u64where\n S: Data<Elem = u64>,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for i8where\n S: Data<Elem = i8>,\n D: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for i64where\n S: DataOwned<Elem = i64> + DataMut,\n D: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for i16where\n S: DataOwned<Elem = i16> + DataMut,\n D: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for i128where\n S: DataOwned<Elem = i128> + DataMut,\n D: Dimension,"],["impl<'a, S, D> BitXor<&'a ArrayBase<S, D>> for u8where\n S: Data<Elem = u8>,\n D: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for u128where\n S: DataOwned<Elem = u128> + DataMut,\n D: Dimension,"],["impl<S, D> BitXor<ArrayBase<S, D>> for i32where\n S: DataOwned<Elem = i32> + DataMut,\n D: Dimension,"]], -"polars_core":[["impl BitXor<&ChunkedArray<BooleanType>> for &BooleanChunked"],["impl<T> BitXor<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsIntegerType,\n T::Native: BitXor<Output = T::Native>,"],["impl BitXor<ChunkedArray<BooleanType>> for BooleanChunked"]] +"polars_core":[["impl BitXor<ChunkedArray<BooleanType>> for BooleanChunked"],["impl BitXor<&ChunkedArray<BooleanType>> for &BooleanChunked"],["impl<T> BitXor<&ChunkedArray<T>> for &ChunkedArray<T>where\n T: PolarsIntegerType,\n T::Native: BitXor<Output = T::Native>,"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/core/ops/deref/trait.Deref.js b/implementors/core/ops/deref/trait.Deref.js index 8f888ae9f14c..da9f7c0607a6 100644 --- a/implementors/core/ops/deref/trait.Deref.js +++ b/implementors/core/ops/deref/trait.Deref.js @@ -2,7 +2,7 @@ "ahash":[["impl<T, S> Deref for AHashSet<T, S>"],["impl<K, V, S> Deref for AHashMap<K, V, S>"]], "alloc_no_stdlib":[["impl<'a, T> Deref for AllocatedStackMemory<'a, T>"]], "allocator_api2":[["impl<T: ?Sized, A: Allocator> Deref for Box<T, A>"],["impl<T, A: Allocator> Deref for Vec<T, A>"]], -"arrow2":[["impl<O: Offset> Deref for OffsetsBuffer<O>"],["impl<T> Deref for Buffer<T>"],["impl<T> Deref for Bytes<T>"],["impl<A: AsRef<dyn Array>> Deref for Chunk<A>"]], +"arrow2":[["impl<T> Deref for Buffer<T>"],["impl<T> Deref for Bytes<T>"],["impl<O: Offset> Deref for OffsetsBuffer<O>"],["impl<A: AsRef<dyn Array>> Deref for Chunk<A>"]], "bytes":[["impl Deref for BytesMut"],["impl Deref for Bytes"]], "crossbeam_epoch":[["impl<T: ?Sized + Pointable> Deref for Owned<T>"]], "crossbeam_utils":[["impl<T: ?Sized> Deref for ShardedLockWriteGuard<'_, T>"],["impl<T: ?Sized> Deref for ShardedLockReadGuard<'_, T>"],["impl<T> Deref for CachePadded<T>"]], @@ -17,13 +17,13 @@ "memmap2":[["impl Deref for Mmap"],["impl Deref for MmapMut"]], "ndarray":[["impl<T> Deref for MathCell<T>"],["impl Deref for IxDynImpl"],["impl<T, Din, Dout> Deref for SliceInfo<T, Din, Dout>where\n Din: Dimension,\n Dout: Dimension,"]], "once_cell":[["impl<T, F: FnOnce() -> T> Deref for Lazy<T, F>"],["impl<T, F: FnOnce() -> T> Deref for Lazy<T, F>"]], -"polars_core":[["impl<T> Deref for Wrap<T>"],["impl<K: PolarsDataType, T: PolarsDataType> Deref for Logical<K, T>"],["impl Deref for Series"],["impl<T> Deref for NoNull<T>"],["impl Deref for SlicedGroups<'_>"]], +"polars_core":[["impl<T> Deref for NoNull<T>"],["impl Deref for Series"],["impl<T> Deref for Wrap<T>"],["impl<K: PolarsDataType, T: PolarsDataType> Deref for Logical<K, T>"],["impl Deref for SlicedGroups<'_>"]], "polars_error":[["impl Deref for ErrString"]], "polars_io":[["impl Deref for ReaderBytes<'_>"]], "polars_plan":[["impl Deref for ErrorStateSync"],["impl<T> Deref for SpecialEq<T>"]], "polars_utils":[["impl Deref for SyncCounter"]], "pyo3":[["impl Deref for PyBufferError"],["impl Deref for PyEOFError"],["impl Deref for PyDate"],["impl Deref for PyCFunction"],["impl Deref for PyComplex"],["impl Deref for PyBytesWarning"],["impl Deref for PyModule"],["impl Deref for PyTimeoutError"],["impl Deref for PyProcessLookupError"],["impl Deref for PyIsADirectoryError"],["impl Deref for PyZeroDivisionError"],["impl Deref for PySyntaxError"],["impl Deref for PyEnvironmentError"],["impl Deref for PyBaseException"],["impl Deref for PyIOError"],["impl Deref for PySlice"],["impl Deref for PyBytes"],["impl Deref for PyIterator"],["impl Deref for PyKeyError"],["impl Deref for PyUnicodeTranslateError"],["impl Deref for PyFloatingPointError"],["impl Deref for PyType"],["impl Deref for PyFileExistsError"],["impl<T: PyClass> Deref for PyCell<T>"],["impl Deref for PyDict"],["impl Deref for PyFileNotFoundError"],["impl Deref for PyStopIteration"],["impl Deref for PyFloat"],["impl Deref for PyStopAsyncIteration"],["impl Deref for PyAttributeError"],["impl Deref for PyEncodingWarning"],["impl Deref for PyString"],["impl Deref for PyConnectionRefusedError"],["impl Deref for PyTzInfo"],["impl Deref for TimeoutError"],["impl Deref for PyByteArray"],["impl Deref for PyFunction"],["impl Deref for PyValueError"],["impl Deref for PyDictValues"],["impl Deref for PyLookupError"],["impl Deref for PyException"],["impl Deref for timeout"],["impl Deref for PyDelta"],["impl Deref for PyWarning"],["impl Deref for PySequence"],["impl Deref for PyDictKeys"],["impl Deref for PySuper"],["impl Deref for PyNotADirectoryError"],["impl Deref for PySystemError"],["impl Deref for PyReferenceError"],["impl Deref for PyUnicodeDecodeError"],["impl Deref for PyImportError"],["impl Deref for PyRuntimeError"],["impl Deref for PyDateTime"],["impl Deref for InvalidStateError"],["impl Deref for CancelledError"],["impl Deref for PanicException"],["impl Deref for PyConnectionAbortedError"],["impl Deref for PyBlockingIOError"],["impl Deref for PySyntaxWarning"],["impl Deref for IncompleteReadError"],["impl Deref for PyIndexError"],["impl Deref for PyNotImplementedError"],["impl Deref for PyUnboundLocalError"],["impl Deref for PyKeyboardInterrupt"],["impl Deref for PyCapsule"],["impl Deref for PyPermissionError"],["impl Deref for herror"],["impl Deref for PyCode"],["impl Deref for PyConnectionResetError"],["impl Deref for PyTypeError"],["impl Deref for PyResourceWarning"],["impl Deref for PyMapping"],["impl Deref for PyNameError"],["impl Deref for PySet"],["impl Deref for PyTraceback"],["impl Deref for gaierror"],["impl Deref for PyFrame"],["impl Deref for PyBrokenPipeError"],["impl Deref for PyArithmeticError"],["impl Deref for PyImportWarning"],["impl Deref for PyList"],["impl Deref for PyChildProcessError"],["impl<'p, T: PyClass> Deref for PyRef<'p, T>"],["impl Deref for PyRecursionError"],["impl Deref for PyModuleNotFoundError"],["impl Deref for PyInterruptedError"],["impl Deref for PyUnicodeEncodeError"],["impl Deref for PyDeprecationWarning"],["impl Deref for PyRuntimeWarning"],["impl Deref for PyOSError"],["impl Deref for PyConnectionError"],["impl Deref for PyMemoryError"],["impl Deref for PySystemExit"],["impl Deref for PyGeneratorExit"],["impl Deref for PyTime"],["impl Deref for PyTuple"],["impl<'p, T: PyClass<Frozen = False>> Deref for PyRefMut<'p, T>"],["impl Deref for PyUnicodeWarning"],["impl Deref for PyUserWarning"],["impl Deref for PyAssertionError"],["impl Deref for PyLong"],["impl Deref for PyFutureWarning"],["impl Deref for PyDictItems"],["impl Deref for PyOverflowError"],["impl Deref for PyUnicodeError"],["impl Deref for PyBool"],["impl Deref for PyFrozenSet"],["impl Deref for QueueFull"],["impl Deref for PyPendingDeprecationWarning"],["impl Deref for QueueEmpty"],["impl Deref for LimitOverrunError"]], -"quick_xml":[["impl<'a> Deref for BytesCData<'a>"],["impl<'a> Deref for BytesText<'a>"],["impl<'a> Deref for Text<'a>"],["impl<'a> Deref for BytesDecl<'a>"],["impl<'a> Deref for BytesEnd<'a>"],["impl<'a> Deref for Event<'a>"],["impl<'a> Deref for BytesStart<'a>"],["impl<R> Deref for NsReader<R>"]], +"quick_xml":[["impl<'a> Deref for BytesDecl<'a>"],["impl<'a> Deref for BytesEnd<'a>"],["impl<'a> Deref for BytesStart<'a>"],["impl<R> Deref for NsReader<R>"],["impl<'a> Deref for Event<'a>"],["impl<'a> Deref for Text<'a>"],["impl<'a> Deref for BytesCData<'a>"],["impl<'a> Deref for BytesText<'a>"]], "regex_automata":[["impl<'a, T: Send, F: Fn() -> T> Deref for PoolGuard<'a, T, F>"],["impl<T, F: Fn() -> T> Deref for Lazy<T, F>"]], "rustls":[["impl Deref for ServerConnection"],["impl Deref for ClientConnection"],["impl<T> Deref for Retrieved<T>"],["impl Deref for Connection"],["impl Deref for Tls13ClientSessionValue"],["impl Deref for Tls12ClientSessionValue"],["impl<T> Deref for ConnectionCommon<T>"]], "scopeguard":[["impl<T, F, S> Deref for ScopeGuard<T, F, S>where\n F: FnOnce(T),\n S: Strategy,"]], @@ -32,7 +32,7 @@ "smartstring":[["impl<Mode: SmartStringMode> Deref for SmartString<Mode>"]], "socket2":[["impl<'s> Deref for SockRef<'s>"],["impl<'a> Deref for MaybeUninitSlice<'a>"]], "spin":[["impl<'rwlock, T: ?Sized> Deref for RwLockReadGuard<'rwlock, T>"],["impl<'rwlock, T: ?Sized> Deref for RwLockWriteGuard<'rwlock, T>"],["impl<'a, T: ?Sized> Deref for MutexGuard<'a, T>"],["impl<'rwlock, T: ?Sized> Deref for RwLockUpgradeableGuard<'rwlock, T>"]], -"sysinfo":[["impl Deref for Uid"],["impl Deref for Gid"]], +"sysinfo":[["impl Deref for Gid"],["impl Deref for Uid"]], "tinyvec":[["impl<A: Array> Deref for TinyVec<A>"],["impl<A: Array> Deref for ArrayVec<A>"],["impl<'s, T> Deref for SliceVec<'s, T>"]], "tokio":[["impl<E: AioSource> Deref for Aio<E>"]], "tracing":[["impl Deref for EnteredSpan"]], diff --git a/implementors/core/ops/index/trait.Index.js b/implementors/core/ops/index/trait.Index.js index d3d7e91f22d7..a3a6d63bf40d 100644 --- a/implementors/core/ops/index/trait.Index.js +++ b/implementors/core/ops/index/trait.Index.js @@ -4,7 +4,7 @@ "alloc_no_stdlib":[["impl<'a, T> Index<Range<usize>> for AllocatedStackMemory<'a, T>"],["impl<'a, T> Index<usize> for AllocatedStackMemory<'a, T>"]], "alloc_stdlib":[["impl<'a, T: 'a> Index<usize> for HeapPrealloc<'a, T>"],["impl<T> Index<usize> for WrapBox<T>"],["impl<T> Index<Range<usize>> for WrapBox<T>"]], "allocator_api2":[["impl<T, I: SliceIndex<[T]>, A: Allocator> Index<I> for Vec<T, A>"]], -"arrow2":[["impl Index<usize> for u64x8"],["impl Index<usize> for u8x64"],["impl Index<usize> for f32x16"],["impl Index<usize> for months_days_nsx8"],["impl Index<usize> for i128x8"],["impl Index<usize> for i256x8"],["impl Index<usize> for i64x8"],["impl Index<usize> for f64x8"],["impl Index<usize> for i8x64"],["impl Index<usize> for i32x16"],["impl Index<usize> for f16x32"],["impl Index<usize> for days_msx8"],["impl Index<usize> for i16x32"],["impl Index<usize> for u16x32"],["impl Index<usize> for u32x16"]], +"arrow2":[["impl Index<usize> for u32x16"],["impl Index<usize> for f32x16"],["impl Index<usize> for i16x32"],["impl Index<usize> for f64x8"],["impl Index<usize> for u16x32"],["impl Index<usize> for i32x16"],["impl Index<usize> for i256x8"],["impl Index<usize> for i128x8"],["impl Index<usize> for i8x64"],["impl Index<usize> for u8x64"],["impl Index<usize> for days_msx8"],["impl Index<usize> for months_days_nsx8"],["impl Index<usize> for u64x8"],["impl Index<usize> for i64x8"],["impl Index<usize> for f16x32"]], "brotli":[["impl<AllocU32: Allocator<u32>> Index<BucketPopIndex> for EntropyBucketPopulation<AllocU32>"],["impl<'a> Index<usize> for InputPair<'a>"]], "brotli_decompressor":[["impl<Ty: Sized + Default> Index<usize> for MemoryBlock<Ty>"]], "bytes":[["impl Index<RangeFull> for UninitSlice"],["impl Index<RangeFrom<usize>> for UninitSlice"],["impl Index<RangeTo<usize>> for UninitSlice"],["impl Index<RangeToInclusive<usize>> for UninitSlice"],["impl Index<RangeInclusive<usize>> for UninitSlice"],["impl Index<Range<usize>> for UninitSlice"]], @@ -14,12 +14,12 @@ "indexmap":[["impl<T> Index<RangeInclusive<usize>> for Slice<T>"],["impl<T> Index<RangeFrom<usize>> for Slice<T>"],["impl<T> Index<Range<usize>> for Slice<T>"],["impl<K, V, S> Index<RangeToInclusive<usize>> for IndexMap<K, V, S>"],["impl<K, V> Index<RangeInclusive<usize>> for Slice<K, V>"],["impl<K, V, S> Index<usize> for IndexMap<K, V, S>"],["impl<T, S> Index<RangeFull> for IndexSet<T, S>"],["impl<K, V, Q, S> Index<&Q> for IndexMap<K, V, S>where\n Q: Hash + Equivalent<K> + ?Sized,\n K: Hash + Eq,\n S: BuildHasher,"],["impl<K, V> Index<Range<usize>> for Slice<K, V>"],["impl<T, S> Index<usize> for IndexSet<T, S>"],["impl<T, S> Index<RangeFrom<usize>> for IndexSet<T, S>"],["impl<T> Index<(Bound<usize>, Bound<usize>)> for Slice<T>"],["impl<K, V> Index<RangeTo<usize>> for Slice<K, V>"],["impl<T, S> Index<RangeTo<usize>> for IndexSet<T, S>"],["impl<T, S> Index<RangeInclusive<usize>> for IndexSet<T, S>"],["impl<K, V, S> Index<RangeFull> for IndexMap<K, V, S>"],["impl<K, V, S> Index<(Bound<usize>, Bound<usize>)> for IndexMap<K, V, S>"],["impl<K, V> Index<RangeFrom<usize>> for Slice<K, V>"],["impl<T, S> Index<Range<usize>> for IndexSet<T, S>"],["impl<K, V, S> Index<RangeFrom<usize>> for IndexMap<K, V, S>"],["impl<T> Index<usize> for Slice<T>"],["impl<T, S> Index<(Bound<usize>, Bound<usize>)> for IndexSet<T, S>"],["impl<T> Index<RangeTo<usize>> for Slice<T>"],["impl<K, V, S> Index<RangeTo<usize>> for IndexMap<K, V, S>"],["impl<K, V> Index<usize> for Slice<K, V>"],["impl<K, V, S> Index<Range<usize>> for IndexMap<K, V, S>"],["impl<T, S> Index<RangeToInclusive<usize>> for IndexSet<T, S>"],["impl<K, V> Index<RangeToInclusive<usize>> for Slice<K, V>"],["impl<T> Index<RangeToInclusive<usize>> for Slice<T>"],["impl<K, V> Index<RangeFull> for Slice<K, V>"],["impl<T> Index<RangeFull> for Slice<T>"],["impl<K, V, S> Index<RangeInclusive<usize>> for IndexMap<K, V, S>"],["impl<K, V> Index<(Bound<usize>, Bound<usize>)> for Slice<K, V>"]], "ndarray":[["impl Index<usize> for Dim<[Ix; 4]>"],["impl Index<usize> for Dim<[Ix; 0]>"],["impl Index<usize> for Dim<[Ix; 3]>"],["impl Index<usize> for Dim<[Ix; 5]>"],["impl Index<usize> for Dim<[Ix; 6]>"],["impl Index<usize> for Dim<IxDynImpl>"],["impl<J> Index<J> for IxDynImplwhere\n [Ix]: Index<J>,"],["impl<S, D, I> Index<I> for ArrayBase<S, D>where\n D: Dimension,\n I: NdIndex<D>,\n S: Data,"],["impl Index<usize> for Dim<[Ix; 2]>"],["impl Index<usize> for Dim<[Ix; 1]>"]], "phf":[["impl<'a, K, V, T> Index<&'a T> for Map<K, V>where\n T: Eq + PhfHash + ?Sized,\n K: PhfBorrow<T>,"],["impl<'a, K, V, T> Index<&'a T> for OrderedMap<K, V>where\n T: Eq + PhfHash + ?Sized,\n K: PhfBorrow<T>,"]], -"polars_core":[["impl Index<RangeInclusive<usize>> for DataFrame"],["impl Index<Range<usize>> for DataFrame"],["impl Index<RangeTo<usize>> for DataFrame"],["impl Index<RangeFull> for DataFrame"],["impl Index<RangeFrom<usize>> for DataFrame"],["impl Index<RangeToInclusive<usize>> for DataFrame"],["impl Index<&str> for DataFrame"],["impl Index<usize> for DataFrame"]], +"polars_core":[["impl Index<usize> for DataFrame"],["impl Index<RangeTo<usize>> for DataFrame"],["impl Index<RangeToInclusive<usize>> for DataFrame"],["impl Index<&str> for DataFrame"],["impl Index<RangeFrom<usize>> for DataFrame"],["impl Index<RangeFull> for DataFrame"],["impl Index<RangeInclusive<usize>> for DataFrame"],["impl Index<Range<usize>> for DataFrame"]], "pyo3":[["impl Index<RangeInclusive<usize>> for PySequence"],["impl Index<RangeToInclusive<usize>> for PyTuple"],["impl Index<RangeInclusive<usize>> for PyTuple"],["impl Index<Range<usize>> for PySequence"],["impl Index<RangeFull> for PySequence"],["impl Index<RangeTo<usize>> for PyTuple"],["impl Index<RangeToInclusive<usize>> for PySequence"],["impl Index<RangeTo<usize>> for PyList"],["impl Index<RangeFull> for PyTuple"],["impl Index<Range<usize>> for PyList"],["impl Index<usize> for PyTuple"],["impl Index<Range<usize>> for PyTuple"],["impl Index<RangeFull> for PyList"],["impl Index<RangeInclusive<usize>> for PyList"],["impl Index<RangeFrom<usize>> for PyList"],["impl Index<RangeFrom<usize>> for PySequence"],["impl Index<RangeFrom<usize>> for PyTuple"],["impl<I: SliceIndex<[u8]>> Index<I> for PyBytes"],["impl Index<usize> for PySequence"],["impl Index<usize> for PyList"],["impl Index<RangeToInclusive<usize>> for PyList"],["impl Index<RangeTo<usize>> for PySequence"]], "regex":[["impl<'h, 'n> Index<&'n str> for Captures<'h>"],["impl<'h> Index<usize> for Captures<'h>"],["impl<'h> Index<usize> for Captures<'h>"],["impl<'h, 'n> Index<&'n str> for Captures<'h>"]], "regex_automata":[["impl Index<Span> for [u8]"],["impl<T> Index<StateID> for [T]"],["impl<T> Index<PatternID> for Vec<T>"],["impl<T> Index<PatternID> for [T]"],["impl<T> Index<SmallIndex> for [T]"],["impl<T> Index<StateID> for Vec<T>"],["impl Index<Span> for str"],["impl<T> Index<SmallIndex> for Vec<T>"]], -"serde_json":[["impl<I> Index<I> for Valuewhere\n I: Index,"],["impl<'a, Q> Index<&'a Q> for Map<String, Value>where\n String: Borrow<Q>,\n Q: ?Sized + Ord + Eq + Hash,"]], -"simd_json":[["impl Index<usize> for Value"],["impl<'value> Index<usize> for Value<'value>"],["impl Index<&str> for Value"],["impl<'value> Index<&str> for Value<'value>"]], +"serde_json":[["impl<'a, Q> Index<&'a Q> for Map<String, Value>where\n String: Borrow<Q>,\n Q: ?Sized + Ord + Eq + Hash,"],["impl<I> Index<I> for Valuewhere\n I: Index,"]], +"simd_json":[["impl<'value> Index<&str> for Value<'value>"],["impl Index<&str> for Value"],["impl<'value> Index<usize> for Value<'value>"],["impl Index<usize> for Value"]], "slab":[["impl<T> Index<usize> for Slab<T>"]], "smallvec":[["impl<A: Array, I: SliceIndex<[A::Item]>> Index<I> for SmallVec<A>"]], "smartstring":[["impl<Mode: SmartStringMode> Index<RangeFrom<usize>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> Index<RangeToInclusive<usize>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> Index<RangeInclusive<usize>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> Index<RangeFull> for SmartString<Mode>"],["impl<Mode: SmartStringMode> Index<Range<usize>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> Index<RangeTo<usize>> for SmartString<Mode>"]], diff --git a/implementors/core/ops/index/trait.IndexMut.js b/implementors/core/ops/index/trait.IndexMut.js index a2bc8aec9fd7..6c04bfd454c0 100644 --- a/implementors/core/ops/index/trait.IndexMut.js +++ b/implementors/core/ops/index/trait.IndexMut.js @@ -3,7 +3,7 @@ "alloc_no_stdlib":[["impl<'a, T> IndexMut<Range<usize>> for AllocatedStackMemory<'a, T>"],["impl<'a, T> IndexMut<usize> for AllocatedStackMemory<'a, T>"]], "alloc_stdlib":[["impl<T> IndexMut<usize> for WrapBox<T>"],["impl<T> IndexMut<Range<usize>> for WrapBox<T>"],["impl<'a, T: 'a> IndexMut<usize> for HeapPrealloc<'a, T>"]], "allocator_api2":[["impl<T, I: SliceIndex<[T]>, A: Allocator> IndexMut<I> for Vec<T, A>"]], -"arrow2":[["impl IndexMut<usize> for u64x8"],["impl IndexMut<usize> for i128x8"],["impl IndexMut<usize> for i64x8"],["impl IndexMut<usize> for u32x16"],["impl IndexMut<usize> for f32x16"],["impl IndexMut<usize> for i8x64"],["impl IndexMut<usize> for days_msx8"],["impl IndexMut<usize> for i16x32"],["impl IndexMut<usize> for months_days_nsx8"],["impl IndexMut<usize> for i32x16"],["impl IndexMut<usize> for u8x64"],["impl IndexMut<usize> for f16x32"],["impl IndexMut<usize> for u16x32"],["impl IndexMut<usize> for i256x8"],["impl IndexMut<usize> for f64x8"]], +"arrow2":[["impl IndexMut<usize> for f32x16"],["impl IndexMut<usize> for i8x64"],["impl IndexMut<usize> for f64x8"],["impl IndexMut<usize> for i16x32"],["impl IndexMut<usize> for u32x16"],["impl IndexMut<usize> for u64x8"],["impl IndexMut<usize> for i128x8"],["impl IndexMut<usize> for months_days_nsx8"],["impl IndexMut<usize> for i64x8"],["impl IndexMut<usize> for u8x64"],["impl IndexMut<usize> for f16x32"],["impl IndexMut<usize> for u16x32"],["impl IndexMut<usize> for i32x16"],["impl IndexMut<usize> for days_msx8"],["impl IndexMut<usize> for i256x8"]], "brotli":[["impl<AllocU32: Allocator<u32>> IndexMut<BucketPopIndex> for EntropyBucketPopulation<AllocU32>"]], "brotli_decompressor":[["impl<Ty: Sized + Default> IndexMut<usize> for MemoryBlock<Ty>"]], "bytes":[["impl IndexMut<RangeFrom<usize>> for UninitSlice"],["impl IndexMut<RangeFull> for UninitSlice"],["impl IndexMut<RangeTo<usize>> for UninitSlice"],["impl IndexMut<Range<usize>> for UninitSlice"],["impl IndexMut<RangeInclusive<usize>> for UninitSlice"],["impl IndexMut<RangeToInclusive<usize>> for UninitSlice"]], @@ -11,7 +11,7 @@ "ndarray":[["impl IndexMut<usize> for Dim<[Ix; 3]>"],["impl IndexMut<usize> for Dim<[Ix; 4]>"],["impl IndexMut<usize> for Dim<[Ix; 6]>"],["impl IndexMut<usize> for Dim<[Ix; 2]>"],["impl IndexMut<usize> for Dim<[Ix; 1]>"],["impl IndexMut<usize> for Dim<[Ix; 0]>"],["impl<S, D, I> IndexMut<I> for ArrayBase<S, D>where\n D: Dimension,\n I: NdIndex<D>,\n S: DataMut,"],["impl IndexMut<usize> for Dim<IxDynImpl>"],["impl<J> IndexMut<J> for IxDynImplwhere\n [Ix]: IndexMut<J>,"],["impl IndexMut<usize> for Dim<[Ix; 5]>"]], "regex_automata":[["impl<T> IndexMut<StateID> for [T]"],["impl IndexMut<Span> for [u8]"],["impl<T> IndexMut<PatternID> for [T]"],["impl<T> IndexMut<PatternID> for Vec<T>"],["impl<T> IndexMut<SmallIndex> for Vec<T>"],["impl<T> IndexMut<StateID> for Vec<T>"],["impl<T> IndexMut<SmallIndex> for [T]"]], "serde_json":[["impl<'a, Q> IndexMut<&'a Q> for Map<String, Value>where\n String: Borrow<Q>,\n Q: ?Sized + Ord + Eq + Hash,"],["impl<I> IndexMut<I> for Valuewhere\n I: Index,"]], -"simd_json":[["impl IndexMut<usize> for Value"],["impl<'value> IndexMut<&str> for Value<'value>"],["impl IndexMut<&str> for Value"],["impl<'value> IndexMut<usize> for Value<'value>"]], +"simd_json":[["impl IndexMut<usize> for Value"],["impl IndexMut<&str> for Value"],["impl<'value> IndexMut<usize> for Value<'value>"],["impl<'value> IndexMut<&str> for Value<'value>"]], "slab":[["impl<T> IndexMut<usize> for Slab<T>"]], "smallvec":[["impl<A: Array, I: SliceIndex<[A::Item]>> IndexMut<I> for SmallVec<A>"]], "smartstring":[["impl<Mode: SmartStringMode> IndexMut<RangeTo<usize>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> IndexMut<RangeToInclusive<usize>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> IndexMut<RangeFull> for SmartString<Mode>"],["impl<Mode: SmartStringMode> IndexMut<RangeInclusive<usize>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> IndexMut<Range<usize>> for SmartString<Mode>"],["impl<Mode: SmartStringMode> IndexMut<RangeFrom<usize>> for SmartString<Mode>"]], diff --git a/implementors/core/str/traits/trait.FromStr.js b/implementors/core/str/traits/trait.FromStr.js index 21084b31d704..5dcb0ea56ea6 100644 --- a/implementors/core/str/traits/trait.FromStr.js +++ b/implementors/core/str/traits/trait.FromStr.js @@ -13,7 +13,7 @@ "log":[["impl FromStr for Level"],["impl FromStr for LevelFilter"]], "mime":[["impl FromStr for Mime"]], "num_complex":[["impl<T> FromStr for Complex<T>where\n T: FromStr + Num + Clone,"]], -"object_store":[["impl FromStr for Checksum"],["impl FromStr for AmazonS3ConfigKey"],["impl FromStr for GoogleConfigKey"],["impl FromStr for AzureConfigKey"]], +"object_store":[["impl FromStr for Checksum"],["impl FromStr for AzureConfigKey"],["impl FromStr for AmazonS3ConfigKey"],["impl FromStr for GoogleConfigKey"]], "polars_core":[["impl FromStr for CloudType"]], "proc_macro2":[["impl FromStr for Literal"],["impl FromStr for TokenStream"]], "regex":[["impl FromStr for Regex"],["impl FromStr for Regex"]], diff --git a/implementors/fallible_streaming_iterator/trait.FallibleStreamingIterator.js b/implementors/fallible_streaming_iterator/trait.FallibleStreamingIterator.js index 3b1e6d50ff6b..12114feab92d 100644 --- a/implementors/fallible_streaming_iterator/trait.FallibleStreamingIterator.js +++ b/implementors/fallible_streaming_iterator/trait.FallibleStreamingIterator.js @@ -1,5 +1,5 @@ (function() {var implementors = { -"arrow2":[["impl<A, I> FallibleStreamingIterator for Serializer<A, I>where\n A: AsRef<dyn Array>,\n I: Iterator<Item = Result<A, Error>>,"],["impl<'a> FallibleStreamingIterator for RecordSerializer<'a>"],["impl<A, I> FallibleStreamingIterator for Serializer<A, I>where\n A: AsRef<dyn Array>,\n I: Iterator<Item = Result<A, Error>>,"]], +"arrow2":[["impl<A, I> FallibleStreamingIterator for Serializer<A, I>where\n A: AsRef<dyn Array>,\n I: Iterator<Item = Result<A, Error>>,"],["impl<'a> FallibleStreamingIterator for RecordSerializer<'a>"],["impl<A, I> FallibleStreamingIterator for Serializer<A, I>where\n A: AsRef<dyn Array>,\n I: Iterator<Item = Result<A, Error>>,"]], "avro_schema":[["impl<R: Read> FallibleStreamingIterator for BlockStreamingIterator<R>"]], "fallible_streaming_iterator":[], "parquet2":[["impl<I: Iterator<Item = Result<Page>>> FallibleStreamingIterator for Compressor<I>"],["impl<P: PageIterator> FallibleStreamingIterator for Decompressor<P>"],["impl<I> FallibleStreamingIterator for BasicDecompressor<I>where\n I: Iterator<Item = Result<CompressedPage>>,"],["impl<'a, V, E> FallibleStreamingIterator for DynStreamingIterator<'a, V, E>"]], diff --git a/implementors/planus/traits/trait.ReadAsRoot.js b/implementors/planus/traits/trait.ReadAsRoot.js index 9fe7784eec98..8e9fd5ad28ae 100644 --- a/implementors/planus/traits/trait.ReadAsRoot.js +++ b/implementors/planus/traits/trait.ReadAsRoot.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"arrow_format":[["impl<'a> ReadAsRoot<'a> for FixedSizeBinaryRef<'a>"],["impl<'a> ReadAsRoot<'a> for RecordBatchRef<'a>"],["impl<'a> ReadAsRoot<'a> for SchemaRef<'a>"],["impl<'a> ReadAsRoot<'a> for TimestampRef<'a>"],["impl<'a> ReadAsRoot<'a> for DecimalRef<'a>"],["impl<'a> ReadAsRoot<'a> for DateRef<'a>"],["impl<'a> ReadAsRoot<'a> for KeyValueRef<'a>"],["impl<'a> ReadAsRoot<'a> for TensorDimRef<'a>"],["impl<'a> ReadAsRoot<'a> for NullRef<'a>"],["impl<'a> ReadAsRoot<'a> for IntRef<'a>"],["impl<'a> ReadAsRoot<'a> for UnionRef<'a>"],["impl<'a> ReadAsRoot<'a> for DictionaryBatchRef<'a>"],["impl<'a> ReadAsRoot<'a> for FooterRef<'a>"],["impl<'a> ReadAsRoot<'a> for FieldRef<'a>"],["impl<'a> ReadAsRoot<'a> for Utf8Ref<'a>"],["impl<'a> ReadAsRoot<'a> for LargeUtf8Ref<'a>"],["impl<'a> ReadAsRoot<'a> for FixedSizeListRef<'a>"],["impl<'a> ReadAsRoot<'a> for TimeRef<'a>"],["impl<'a> ReadAsRoot<'a> for DictionaryEncodingRef<'a>"],["impl<'a> ReadAsRoot<'a> for SparseTensorRef<'a>"],["impl<'a> ReadAsRoot<'a> for BodyCompressionRef<'a>"],["impl<'a> ReadAsRoot<'a> for IntervalRef<'a>"],["impl<'a> ReadAsRoot<'a> for SparseMatrixIndexCsxRef<'a>"],["impl<'a> ReadAsRoot<'a> for MessageRef<'a>"],["impl<'a> ReadAsRoot<'a> for LargeBinaryRef<'a>"],["impl<'a> ReadAsRoot<'a> for BoolRef<'a>"],["impl<'a> ReadAsRoot<'a> for BinaryRef<'a>"],["impl<'a> ReadAsRoot<'a> for FloatingPointRef<'a>"],["impl<'a> ReadAsRoot<'a> for SparseTensorIndexCooRef<'a>"],["impl<'a> ReadAsRoot<'a> for ListRef<'a>"],["impl<'a> ReadAsRoot<'a> for DurationRef<'a>"],["impl<'a> ReadAsRoot<'a> for MapRef<'a>"],["impl<'a> ReadAsRoot<'a> for TensorRef<'a>"],["impl<'a> ReadAsRoot<'a> for StructRef<'a>"],["impl<'a> ReadAsRoot<'a> for LargeListRef<'a>"],["impl<'a> ReadAsRoot<'a> for SparseTensorIndexCsfRef<'a>"]] +"arrow_format":[["impl<'a> ReadAsRoot<'a> for DurationRef<'a>"],["impl<'a> ReadAsRoot<'a> for FixedSizeListRef<'a>"],["impl<'a> ReadAsRoot<'a> for TimeRef<'a>"],["impl<'a> ReadAsRoot<'a> for DecimalRef<'a>"],["impl<'a> ReadAsRoot<'a> for Utf8Ref<'a>"],["impl<'a> ReadAsRoot<'a> for MapRef<'a>"],["impl<'a> ReadAsRoot<'a> for DictionaryEncodingRef<'a>"],["impl<'a> ReadAsRoot<'a> for DateRef<'a>"],["impl<'a> ReadAsRoot<'a> for RecordBatchRef<'a>"],["impl<'a> ReadAsRoot<'a> for FieldRef<'a>"],["impl<'a> ReadAsRoot<'a> for DictionaryBatchRef<'a>"],["impl<'a> ReadAsRoot<'a> for SparseTensorIndexCooRef<'a>"],["impl<'a> ReadAsRoot<'a> for BinaryRef<'a>"],["impl<'a> ReadAsRoot<'a> for KeyValueRef<'a>"],["impl<'a> ReadAsRoot<'a> for ListRef<'a>"],["impl<'a> ReadAsRoot<'a> for StructRef<'a>"],["impl<'a> ReadAsRoot<'a> for BoolRef<'a>"],["impl<'a> ReadAsRoot<'a> for FloatingPointRef<'a>"],["impl<'a> ReadAsRoot<'a> for LargeListRef<'a>"],["impl<'a> ReadAsRoot<'a> for LargeBinaryRef<'a>"],["impl<'a> ReadAsRoot<'a> for NullRef<'a>"],["impl<'a> ReadAsRoot<'a> for SparseTensorIndexCsfRef<'a>"],["impl<'a> ReadAsRoot<'a> for BodyCompressionRef<'a>"],["impl<'a> ReadAsRoot<'a> for IntRef<'a>"],["impl<'a> ReadAsRoot<'a> for IntervalRef<'a>"],["impl<'a> ReadAsRoot<'a> for FooterRef<'a>"],["impl<'a> ReadAsRoot<'a> for MessageRef<'a>"],["impl<'a> ReadAsRoot<'a> for UnionRef<'a>"],["impl<'a> ReadAsRoot<'a> for TensorRef<'a>"],["impl<'a> ReadAsRoot<'a> for SchemaRef<'a>"],["impl<'a> ReadAsRoot<'a> for LargeUtf8Ref<'a>"],["impl<'a> ReadAsRoot<'a> for TensorDimRef<'a>"],["impl<'a> ReadAsRoot<'a> for FixedSizeBinaryRef<'a>"],["impl<'a> ReadAsRoot<'a> for SparseMatrixIndexCsxRef<'a>"],["impl<'a> ReadAsRoot<'a> for TimestampRef<'a>"],["impl<'a> ReadAsRoot<'a> for SparseTensorRef<'a>"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/planus/traits/trait.VectorRead.js b/implementors/planus/traits/trait.VectorRead.js index c129ca6687ad..21f6f553fb9d 100644 --- a/implementors/planus/traits/trait.VectorRead.js +++ b/implementors/planus/traits/trait.VectorRead.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow_format":[["impl<'a> VectorRead<'a> for BufferRef<'a>"],["impl<'a> VectorRead<'a> for FieldNodeRef<'a>"],["impl<'a> VectorRead<'a> for BlockRef<'a>"]], +"arrow_format":[["impl<'a> VectorRead<'a> for BlockRef<'a>"],["impl<'a> VectorRead<'a> for BufferRef<'a>"],["impl<'a> VectorRead<'a> for FieldNodeRef<'a>"]], "planus":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/planus/traits/trait.VectorWrite.js b/implementors/planus/traits/trait.VectorWrite.js index 4b41d5efc5f5..938504fc9c69 100644 --- a/implementors/planus/traits/trait.VectorWrite.js +++ b/implementors/planus/traits/trait.VectorWrite.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow_format":[["impl VectorWrite<Offset<BodyCompression>> for BodyCompression"],["impl VectorWrite<Offset<Schema>> for Schema"],["impl VectorWrite<Offset<Map>> for Map"],["impl VectorWrite<Offset<LargeBinary>> for LargeBinary"],["impl VectorWrite<FieldNode> for FieldNode"],["impl VectorWrite<Offset<Int>> for Int"],["impl VectorWrite<Offset<List>> for List"],["impl VectorWrite<Offset<Footer>> for Footer"],["impl VectorWrite<Offset<Time>> for Time"],["impl VectorWrite<Offset<Date>> for Date"],["impl VectorWrite<Offset<Null>> for Null"],["impl VectorWrite<Offset<FloatingPoint>> for FloatingPoint"],["impl<'buf> VectorWrite<Endianness> for Endianness"],["impl VectorWrite<Offset<TensorDim>> for TensorDim"],["impl VectorWrite<Offset<DictionaryBatch>> for DictionaryBatch"],["impl VectorWrite<Offset<SparseTensorIndexCsf>> for SparseTensorIndexCsf"],["impl VectorWrite<Offset<Binary>> for Binary"],["impl VectorWrite<Offset<SparseTensorIndexCoo>> for SparseTensorIndexCoo"],["impl VectorWrite<Offset<LargeUtf8>> for LargeUtf8"],["impl VectorWrite<Offset<FixedSizeBinary>> for FixedSizeBinary"],["impl VectorWrite<Offset<Tensor>> for Tensor"],["impl<'buf> VectorWrite<BodyCompressionMethod> for BodyCompressionMethod"],["impl<'buf> VectorWrite<DictionaryKind> for DictionaryKind"],["impl<'buf> VectorWrite<CompressionType> for CompressionType"],["impl<'buf> VectorWrite<TimeUnit> for TimeUnit"],["impl<'buf> VectorWrite<IntervalUnit> for IntervalUnit"],["impl VectorWrite<Offset<Interval>> for Interval"],["impl VectorWrite<Buffer> for Buffer"],["impl VectorWrite<Offset<Timestamp>> for Timestamp"],["impl VectorWrite<Offset<Message>> for Message"],["impl VectorWrite<Offset<Utf8>> for Utf8"],["impl<'buf> VectorWrite<MetadataVersion> for MetadataVersion"],["impl VectorWrite<Offset<FixedSizeList>> for FixedSizeList"],["impl VectorWrite<Offset<Field>> for Field"],["impl<'buf> VectorWrite<Precision> for Precision"],["impl VectorWrite<Offset<SparseMatrixIndexCsx>> for SparseMatrixIndexCsx"],["impl VectorWrite<Offset<LargeList>> for LargeList"],["impl<'buf> VectorWrite<Feature> for Feature"],["impl<'buf> VectorWrite<UnionMode> for UnionMode"],["impl VectorWrite<Offset<SparseTensor>> for SparseTensor"],["impl<'buf> VectorWrite<DateUnit> for DateUnit"],["impl VectorWrite<Block> for Block"],["impl VectorWrite<Offset<Struct>> for Struct"],["impl VectorWrite<Offset<Duration>> for Duration"],["impl VectorWrite<Offset<Union>> for Union"],["impl VectorWrite<Offset<Bool>> for Bool"],["impl VectorWrite<Offset<RecordBatch>> for RecordBatch"],["impl VectorWrite<Offset<DictionaryEncoding>> for DictionaryEncoding"],["impl<'buf> VectorWrite<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"],["impl VectorWrite<Offset<KeyValue>> for KeyValue"],["impl VectorWrite<Offset<Decimal>> for Decimal"]], +"arrow_format":[["impl VectorWrite<Offset<Int>> for Int"],["impl<'buf> VectorWrite<Precision> for Precision"],["impl VectorWrite<Offset<LargeList>> for LargeList"],["impl VectorWrite<Offset<Binary>> for Binary"],["impl VectorWrite<Offset<Date>> for Date"],["impl VectorWrite<Offset<Schema>> for Schema"],["impl VectorWrite<Offset<DictionaryBatch>> for DictionaryBatch"],["impl VectorWrite<Offset<FloatingPoint>> for FloatingPoint"],["impl VectorWrite<Offset<DictionaryEncoding>> for DictionaryEncoding"],["impl<'buf> VectorWrite<CompressionType> for CompressionType"],["impl VectorWrite<Offset<Field>> for Field"],["impl VectorWrite<Offset<Struct>> for Struct"],["impl VectorWrite<Offset<Union>> for Union"],["impl<'buf> VectorWrite<TimeUnit> for TimeUnit"],["impl VectorWrite<Offset<Null>> for Null"],["impl VectorWrite<Offset<BodyCompression>> for BodyCompression"],["impl VectorWrite<Offset<KeyValue>> for KeyValue"],["impl VectorWrite<Offset<LargeBinary>> for LargeBinary"],["impl<'buf> VectorWrite<UnionMode> for UnionMode"],["impl VectorWrite<Offset<Decimal>> for Decimal"],["impl VectorWrite<Offset<Time>> for Time"],["impl<'buf> VectorWrite<MetadataVersion> for MetadataVersion"],["impl<'buf> VectorWrite<IntervalUnit> for IntervalUnit"],["impl VectorWrite<Offset<List>> for List"],["impl VectorWrite<Block> for Block"],["impl<'buf> VectorWrite<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"],["impl VectorWrite<Offset<SparseMatrixIndexCsx>> for SparseMatrixIndexCsx"],["impl VectorWrite<Offset<Duration>> for Duration"],["impl<'buf> VectorWrite<DateUnit> for DateUnit"],["impl VectorWrite<Buffer> for Buffer"],["impl VectorWrite<Offset<Utf8>> for Utf8"],["impl VectorWrite<Offset<Message>> for Message"],["impl VectorWrite<Offset<Map>> for Map"],["impl<'buf> VectorWrite<Feature> for Feature"],["impl VectorWrite<Offset<Timestamp>> for Timestamp"],["impl VectorWrite<Offset<Footer>> for Footer"],["impl<'buf> VectorWrite<Endianness> for Endianness"],["impl VectorWrite<Offset<RecordBatch>> for RecordBatch"],["impl VectorWrite<Offset<Interval>> for Interval"],["impl VectorWrite<Offset<FixedSizeBinary>> for FixedSizeBinary"],["impl VectorWrite<FieldNode> for FieldNode"],["impl VectorWrite<Offset<SparseTensorIndexCoo>> for SparseTensorIndexCoo"],["impl VectorWrite<Offset<LargeUtf8>> for LargeUtf8"],["impl<'buf> VectorWrite<DictionaryKind> for DictionaryKind"],["impl VectorWrite<Offset<SparseTensorIndexCsf>> for SparseTensorIndexCsf"],["impl VectorWrite<Offset<Tensor>> for Tensor"],["impl VectorWrite<Offset<TensorDim>> for TensorDim"],["impl VectorWrite<Offset<FixedSizeList>> for FixedSizeList"],["impl<'buf> VectorWrite<BodyCompressionMethod> for BodyCompressionMethod"],["impl VectorWrite<Offset<SparseTensor>> for SparseTensor"],["impl VectorWrite<Offset<Bool>> for Bool"]], "planus":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/planus/traits/trait.WriteAs.js b/implementors/planus/traits/trait.WriteAs.js index 104122a69325..014f5a72d588 100644 --- a/implementors/planus/traits/trait.WriteAs.js +++ b/implementors/planus/traits/trait.WriteAs.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow_format":[["impl WriteAs<BodyCompressionMethod> for BodyCompressionMethod"],["impl WriteAs<Offset<LargeBinary>> for LargeBinary"],["impl WriteAs<FieldNode> for FieldNode"],["impl WriteAs<Offset<Union>> for Union"],["impl WriteAs<IntervalUnit> for IntervalUnit"],["impl WriteAs<UnionMode> for UnionMode"],["impl WriteAs<Offset<KeyValue>> for KeyValue"],["impl WriteAs<Precision> for Precision"],["impl WriteAs<Offset<BodyCompression>> for BodyCompression"],["impl WriteAs<Offset<Time>> for Time"],["impl WriteAs<Offset<LargeList>> for LargeList"],["impl WriteAs<Offset<Schema>> for Schema"],["impl WriteAs<Offset<FixedSizeList>> for FixedSizeList"],["impl WriteAs<Offset<Duration>> for Duration"],["impl WriteAs<Offset<FixedSizeBinary>> for FixedSizeBinary"],["impl WriteAs<Feature> for Feature"],["impl WriteAs<Offset<DictionaryEncoding>> for DictionaryEncoding"],["impl WriteAs<Offset<LargeUtf8>> for LargeUtf8"],["impl WriteAs<Offset<SparseTensorIndexCoo>> for SparseTensorIndexCoo"],["impl WriteAs<Offset<Message>> for Message"],["impl WriteAs<DateUnit> for DateUnit"],["impl WriteAs<Offset<Timestamp>> for Timestamp"],["impl WriteAs<Offset<DictionaryBatch>> for DictionaryBatch"],["impl WriteAs<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"],["impl WriteAs<Offset<SparseTensorIndexCsf>> for SparseTensorIndexCsf"],["impl WriteAs<DictionaryKind> for DictionaryKind"],["impl WriteAs<Buffer> for Buffer"],["impl WriteAs<Offset<Date>> for Date"],["impl WriteAs<Offset<Footer>> for Footer"],["impl WriteAs<Offset<Map>> for Map"],["impl WriteAs<Offset<Bool>> for Bool"],["impl WriteAs<Offset<RecordBatch>> for RecordBatch"],["impl WriteAs<Offset<Binary>> for Binary"],["impl WriteAs<MetadataVersion> for MetadataVersion"],["impl WriteAs<Offset<Decimal>> for Decimal"],["impl WriteAs<Offset<Null>> for Null"],["impl WriteAs<Endianness> for Endianness"],["impl WriteAs<Offset<Struct>> for Struct"],["impl WriteAs<Offset<Utf8>> for Utf8"],["impl WriteAs<Offset<Field>> for Field"],["impl WriteAs<Block> for Block"],["impl WriteAs<Offset<Tensor>> for Tensor"],["impl WriteAs<CompressionType> for CompressionType"],["impl WriteAs<TimeUnit> for TimeUnit"],["impl WriteAs<Offset<Int>> for Int"],["impl WriteAs<Offset<TensorDim>> for TensorDim"],["impl WriteAs<Offset<List>> for List"],["impl WriteAs<Offset<Interval>> for Interval"],["impl WriteAs<Offset<FloatingPoint>> for FloatingPoint"],["impl WriteAs<Offset<SparseTensor>> for SparseTensor"],["impl WriteAs<Offset<SparseMatrixIndexCsx>> for SparseMatrixIndexCsx"]], +"arrow_format":[["impl WriteAs<Offset<Interval>> for Interval"],["impl WriteAs<Offset<FixedSizeList>> for FixedSizeList"],["impl WriteAs<Offset<LargeList>> for LargeList"],["impl WriteAs<CompressionType> for CompressionType"],["impl WriteAs<Offset<DictionaryEncoding>> for DictionaryEncoding"],["impl WriteAs<Offset<LargeUtf8>> for LargeUtf8"],["impl WriteAs<Offset<Schema>> for Schema"],["impl WriteAs<FieldNode> for FieldNode"],["impl WriteAs<Offset<SparseTensor>> for SparseTensor"],["impl WriteAs<Feature> for Feature"],["impl WriteAs<DictionaryKind> for DictionaryKind"],["impl WriteAs<Offset<Time>> for Time"],["impl WriteAs<UnionMode> for UnionMode"],["impl WriteAs<Offset<SparseTensorIndexCoo>> for SparseTensorIndexCoo"],["impl WriteAs<Offset<KeyValue>> for KeyValue"],["impl WriteAs<Offset<Binary>> for Binary"],["impl WriteAs<Offset<Union>> for Union"],["impl WriteAs<Offset<RecordBatch>> for RecordBatch"],["impl WriteAs<Offset<Footer>> for Footer"],["impl WriteAs<Offset<DictionaryBatch>> for DictionaryBatch"],["impl WriteAs<Offset<SparseTensorIndexCsf>> for SparseTensorIndexCsf"],["impl WriteAs<Endianness> for Endianness"],["impl WriteAs<Offset<LargeBinary>> for LargeBinary"],["impl WriteAs<Offset<Timestamp>> for Timestamp"],["impl WriteAs<Buffer> for Buffer"],["impl WriteAs<Offset<TensorDim>> for TensorDim"],["impl WriteAs<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"],["impl WriteAs<Offset<Date>> for Date"],["impl WriteAs<Offset<Null>> for Null"],["impl WriteAs<BodyCompressionMethod> for BodyCompressionMethod"],["impl WriteAs<Offset<Decimal>> for Decimal"],["impl WriteAs<MetadataVersion> for MetadataVersion"],["impl WriteAs<Precision> for Precision"],["impl WriteAs<Offset<Int>> for Int"],["impl WriteAs<DateUnit> for DateUnit"],["impl WriteAs<Offset<Utf8>> for Utf8"],["impl WriteAs<Offset<List>> for List"],["impl WriteAs<Offset<Struct>> for Struct"],["impl WriteAs<Block> for Block"],["impl WriteAs<Offset<FixedSizeBinary>> for FixedSizeBinary"],["impl WriteAs<Offset<Tensor>> for Tensor"],["impl WriteAs<Offset<FloatingPoint>> for FloatingPoint"],["impl WriteAs<Offset<Duration>> for Duration"],["impl WriteAs<Offset<BodyCompression>> for BodyCompression"],["impl WriteAs<Offset<Field>> for Field"],["impl WriteAs<IntervalUnit> for IntervalUnit"],["impl WriteAs<Offset<SparseMatrixIndexCsx>> for SparseMatrixIndexCsx"],["impl WriteAs<Offset<Bool>> for Bool"],["impl WriteAs<Offset<Map>> for Map"],["impl WriteAs<TimeUnit> for TimeUnit"],["impl WriteAs<Offset<Message>> for Message"]], "planus":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/planus/traits/trait.WriteAsDefault.js b/implementors/planus/traits/trait.WriteAsDefault.js index a29e3b6ca5e5..f53c29102e5c 100644 --- a/implementors/planus/traits/trait.WriteAsDefault.js +++ b/implementors/planus/traits/trait.WriteAsDefault.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow_format":[["impl WriteAsDefault<DictionaryKind, DictionaryKind> for DictionaryKind"],["impl WriteAsDefault<DateUnit, DateUnit> for DateUnit"],["impl WriteAsDefault<MetadataVersion, MetadataVersion> for MetadataVersion"],["impl WriteAsDefault<CompressionType, CompressionType> for CompressionType"],["impl WriteAsDefault<Feature, Feature> for Feature"],["impl WriteAsDefault<TimeUnit, TimeUnit> for TimeUnit"],["impl WriteAsDefault<IntervalUnit, IntervalUnit> for IntervalUnit"],["impl WriteAsDefault<BodyCompressionMethod, BodyCompressionMethod> for BodyCompressionMethod"],["impl WriteAsDefault<Precision, Precision> for Precision"],["impl WriteAsDefault<Endianness, Endianness> for Endianness"],["impl WriteAsDefault<UnionMode, UnionMode> for UnionMode"],["impl WriteAsDefault<SparseMatrixCompressedAxis, SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"]], +"arrow_format":[["impl WriteAsDefault<MetadataVersion, MetadataVersion> for MetadataVersion"],["impl WriteAsDefault<DateUnit, DateUnit> for DateUnit"],["impl WriteAsDefault<IntervalUnit, IntervalUnit> for IntervalUnit"],["impl WriteAsDefault<Endianness, Endianness> for Endianness"],["impl WriteAsDefault<CompressionType, CompressionType> for CompressionType"],["impl WriteAsDefault<TimeUnit, TimeUnit> for TimeUnit"],["impl WriteAsDefault<Feature, Feature> for Feature"],["impl WriteAsDefault<DictionaryKind, DictionaryKind> for DictionaryKind"],["impl WriteAsDefault<Precision, Precision> for Precision"],["impl WriteAsDefault<UnionMode, UnionMode> for UnionMode"],["impl WriteAsDefault<SparseMatrixCompressedAxis, SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"],["impl WriteAsDefault<BodyCompressionMethod, BodyCompressionMethod> for BodyCompressionMethod"]], "planus":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/planus/traits/trait.WriteAsOffset.js b/implementors/planus/traits/trait.WriteAsOffset.js index 0f7153f4aba5..ac85863dbea7 100644 --- a/implementors/planus/traits/trait.WriteAsOffset.js +++ b/implementors/planus/traits/trait.WriteAsOffset.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow_format":[["impl WriteAsOffset<Time> for Time"],["impl WriteAsOffset<Struct> for Struct"],["impl WriteAsOffset<Map> for Map"],["impl WriteAsOffset<List> for List"],["impl WriteAsOffset<KeyValue> for KeyValue"],["impl WriteAsOffset<Utf8> for Utf8"],["impl WriteAsOffset<FixedSizeList> for FixedSizeList"],["impl WriteAsOffset<TensorDim> for TensorDim"],["impl WriteAsOffset<FixedSizeBinary> for FixedSizeBinary"],["impl WriteAsOffset<Decimal> for Decimal"],["impl WriteAsOffset<Footer> for Footer"],["impl WriteAsOffset<Message> for Message"],["impl WriteAsOffset<Field> for Field"],["impl WriteAsOffset<SparseTensorIndexCsf> for SparseTensorIndexCsf"],["impl WriteAsOffset<SparseMatrixIndexCsx> for SparseMatrixIndexCsx"],["impl WriteAsOffset<DictionaryBatch> for DictionaryBatch"],["impl WriteAsOffset<Timestamp> for Timestamp"],["impl WriteAsOffset<LargeList> for LargeList"],["impl WriteAsOffset<LargeUtf8> for LargeUtf8"],["impl WriteAsOffset<BodyCompression> for BodyCompression"],["impl WriteAsOffset<DictionaryEncoding> for DictionaryEncoding"],["impl WriteAsOffset<LargeBinary> for LargeBinary"],["impl WriteAsOffset<Tensor> for Tensor"],["impl WriteAsOffset<Int> for Int"],["impl WriteAsOffset<Union> for Union"],["impl WriteAsOffset<SparseTensor> for SparseTensor"],["impl WriteAsOffset<RecordBatch> for RecordBatch"],["impl WriteAsOffset<Null> for Null"],["impl WriteAsOffset<SparseTensorIndexCoo> for SparseTensorIndexCoo"],["impl WriteAsOffset<Date> for Date"],["impl WriteAsOffset<Bool> for Bool"],["impl WriteAsOffset<Interval> for Interval"],["impl WriteAsOffset<FloatingPoint> for FloatingPoint"],["impl WriteAsOffset<Duration> for Duration"],["impl WriteAsOffset<Binary> for Binary"],["impl WriteAsOffset<Schema> for Schema"]], +"arrow_format":[["impl WriteAsOffset<Field> for Field"],["impl WriteAsOffset<SparseTensorIndexCsf> for SparseTensorIndexCsf"],["impl WriteAsOffset<LargeUtf8> for LargeUtf8"],["impl WriteAsOffset<SparseMatrixIndexCsx> for SparseMatrixIndexCsx"],["impl WriteAsOffset<LargeList> for LargeList"],["impl WriteAsOffset<List> for List"],["impl WriteAsOffset<SparseTensor> for SparseTensor"],["impl WriteAsOffset<DictionaryBatch> for DictionaryBatch"],["impl WriteAsOffset<Decimal> for Decimal"],["impl WriteAsOffset<Null> for Null"],["impl WriteAsOffset<TensorDim> for TensorDim"],["impl WriteAsOffset<Interval> for Interval"],["impl WriteAsOffset<Map> for Map"],["impl WriteAsOffset<Utf8> for Utf8"],["impl WriteAsOffset<Bool> for Bool"],["impl WriteAsOffset<Tensor> for Tensor"],["impl WriteAsOffset<KeyValue> for KeyValue"],["impl WriteAsOffset<Date> for Date"],["impl WriteAsOffset<DictionaryEncoding> for DictionaryEncoding"],["impl WriteAsOffset<Binary> for Binary"],["impl WriteAsOffset<Message> for Message"],["impl WriteAsOffset<Time> for Time"],["impl WriteAsOffset<Duration> for Duration"],["impl WriteAsOffset<RecordBatch> for RecordBatch"],["impl WriteAsOffset<FloatingPoint> for FloatingPoint"],["impl WriteAsOffset<Union> for Union"],["impl WriteAsOffset<Struct> for Struct"],["impl WriteAsOffset<Schema> for Schema"],["impl WriteAsOffset<BodyCompression> for BodyCompression"],["impl WriteAsOffset<FixedSizeBinary> for FixedSizeBinary"],["impl WriteAsOffset<SparseTensorIndexCoo> for SparseTensorIndexCoo"],["impl WriteAsOffset<Timestamp> for Timestamp"],["impl WriteAsOffset<FixedSizeList> for FixedSizeList"],["impl WriteAsOffset<Int> for Int"],["impl WriteAsOffset<Footer> for Footer"],["impl WriteAsOffset<LargeBinary> for LargeBinary"]], "planus":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/planus/traits/trait.WriteAsOptional.js b/implementors/planus/traits/trait.WriteAsOptional.js index eb2680942cf8..9f019dc287b3 100644 --- a/implementors/planus/traits/trait.WriteAsOptional.js +++ b/implementors/planus/traits/trait.WriteAsOptional.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow_format":[["impl WriteAsOptional<Offset<Utf8>> for Utf8"],["impl WriteAsOptional<Offset<RecordBatch>> for RecordBatch"],["impl WriteAsOptional<Offset<Null>> for Null"],["impl WriteAsOptional<Offset<Timestamp>> for Timestamp"],["impl WriteAsOptional<Offset<Map>> for Map"],["impl WriteAsOptional<Offset<Message>> for Message"],["impl WriteAsOptional<Offset<Bool>> for Bool"],["impl WriteAsOptional<Buffer> for Buffer"],["impl WriteAsOptional<Offset<Duration>> for Duration"],["impl WriteAsOptional<Offset<Time>> for Time"],["impl WriteAsOptional<Offset<TensorDim>> for TensorDim"],["impl WriteAsOptional<Offset<BodyCompression>> for BodyCompression"],["impl WriteAsOptional<Offset<Union>> for Union"],["impl WriteAsOptional<Offset<LargeUtf8>> for LargeUtf8"],["impl WriteAsOptional<Offset<SparseTensorIndexCoo>> for SparseTensorIndexCoo"],["impl WriteAsOptional<Offset<Schema>> for Schema"],["impl WriteAsOptional<Offset<Int>> for Int"],["impl WriteAsOptional<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"],["impl WriteAsOptional<BodyCompressionMethod> for BodyCompressionMethod"],["impl WriteAsOptional<DictionaryKind> for DictionaryKind"],["impl WriteAsOptional<IntervalUnit> for IntervalUnit"],["impl WriteAsOptional<UnionMode> for UnionMode"],["impl WriteAsOptional<Block> for Block"],["impl WriteAsOptional<Offset<Struct>> for Struct"],["impl WriteAsOptional<Offset<KeyValue>> for KeyValue"],["impl WriteAsOptional<Offset<Footer>> for Footer"],["impl WriteAsOptional<Precision> for Precision"],["impl WriteAsOptional<Offset<FloatingPoint>> for FloatingPoint"],["impl WriteAsOptional<Endianness> for Endianness"],["impl WriteAsOptional<Offset<DictionaryEncoding>> for DictionaryEncoding"],["impl WriteAsOptional<Offset<List>> for List"],["impl WriteAsOptional<Feature> for Feature"],["impl WriteAsOptional<Offset<LargeList>> for LargeList"],["impl WriteAsOptional<Offset<Interval>> for Interval"],["impl WriteAsOptional<Offset<Field>> for Field"],["impl WriteAsOptional<FieldNode> for FieldNode"],["impl WriteAsOptional<MetadataVersion> for MetadataVersion"],["impl WriteAsOptional<CompressionType> for CompressionType"],["impl WriteAsOptional<DateUnit> for DateUnit"],["impl WriteAsOptional<TimeUnit> for TimeUnit"],["impl WriteAsOptional<Offset<Date>> for Date"],["impl WriteAsOptional<Offset<SparseTensor>> for SparseTensor"],["impl WriteAsOptional<Offset<FixedSizeList>> for FixedSizeList"],["impl WriteAsOptional<Offset<Decimal>> for Decimal"],["impl WriteAsOptional<Offset<SparseMatrixIndexCsx>> for SparseMatrixIndexCsx"],["impl WriteAsOptional<Offset<DictionaryBatch>> for DictionaryBatch"],["impl WriteAsOptional<Offset<SparseTensorIndexCsf>> for SparseTensorIndexCsf"],["impl WriteAsOptional<Offset<LargeBinary>> for LargeBinary"],["impl WriteAsOptional<Offset<FixedSizeBinary>> for FixedSizeBinary"],["impl WriteAsOptional<Offset<Tensor>> for Tensor"],["impl WriteAsOptional<Offset<Binary>> for Binary"]], +"arrow_format":[["impl WriteAsOptional<Offset<SparseMatrixIndexCsx>> for SparseMatrixIndexCsx"],["impl WriteAsOptional<Offset<KeyValue>> for KeyValue"],["impl WriteAsOptional<DateUnit> for DateUnit"],["impl WriteAsOptional<Offset<SparseTensorIndexCoo>> for SparseTensorIndexCoo"],["impl WriteAsOptional<Offset<SparseTensor>> for SparseTensor"],["impl WriteAsOptional<Offset<Date>> for Date"],["impl WriteAsOptional<Offset<Struct>> for Struct"],["impl WriteAsOptional<Offset<BodyCompression>> for BodyCompression"],["impl WriteAsOptional<Buffer> for Buffer"],["impl WriteAsOptional<DictionaryKind> for DictionaryKind"],["impl WriteAsOptional<Offset<Union>> for Union"],["impl WriteAsOptional<UnionMode> for UnionMode"],["impl WriteAsOptional<Offset<Map>> for Map"],["impl WriteAsOptional<Offset<Duration>> for Duration"],["impl WriteAsOptional<Offset<Field>> for Field"],["impl WriteAsOptional<Offset<RecordBatch>> for RecordBatch"],["impl WriteAsOptional<Offset<FixedSizeBinary>> for FixedSizeBinary"],["impl WriteAsOptional<Offset<DictionaryEncoding>> for DictionaryEncoding"],["impl WriteAsOptional<Offset<Tensor>> for Tensor"],["impl WriteAsOptional<Offset<List>> for List"],["impl WriteAsOptional<Offset<Binary>> for Binary"],["impl WriteAsOptional<Offset<Null>> for Null"],["impl WriteAsOptional<Offset<Decimal>> for Decimal"],["impl WriteAsOptional<Offset<Int>> for Int"],["impl WriteAsOptional<Offset<LargeUtf8>> for LargeUtf8"],["impl WriteAsOptional<Offset<LargeBinary>> for LargeBinary"],["impl WriteAsOptional<Feature> for Feature"],["impl WriteAsOptional<Endianness> for Endianness"],["impl WriteAsOptional<Offset<Utf8>> for Utf8"],["impl WriteAsOptional<Offset<Bool>> for Bool"],["impl WriteAsOptional<Offset<SparseTensorIndexCsf>> for SparseTensorIndexCsf"],["impl WriteAsOptional<CompressionType> for CompressionType"],["impl WriteAsOptional<Offset<Interval>> for Interval"],["impl WriteAsOptional<Offset<LargeList>> for LargeList"],["impl WriteAsOptional<TimeUnit> for TimeUnit"],["impl WriteAsOptional<Offset<FloatingPoint>> for FloatingPoint"],["impl WriteAsOptional<Offset<Timestamp>> for Timestamp"],["impl WriteAsOptional<Offset<Message>> for Message"],["impl WriteAsOptional<MetadataVersion> for MetadataVersion"],["impl WriteAsOptional<Offset<TensorDim>> for TensorDim"],["impl WriteAsOptional<Block> for Block"],["impl WriteAsOptional<IntervalUnit> for IntervalUnit"],["impl WriteAsOptional<Offset<Schema>> for Schema"],["impl WriteAsOptional<Offset<FixedSizeList>> for FixedSizeList"],["impl WriteAsOptional<FieldNode> for FieldNode"],["impl WriteAsOptional<BodyCompressionMethod> for BodyCompressionMethod"],["impl WriteAsOptional<Offset<Footer>> for Footer"],["impl WriteAsOptional<Precision> for Precision"],["impl WriteAsOptional<Offset<DictionaryBatch>> for DictionaryBatch"],["impl WriteAsOptional<Offset<Time>> for Time"],["impl WriteAsOptional<SparseMatrixCompressedAxis> for SparseMatrixCompressedAxis"]], "planus":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/planus/traits/trait.WriteAsOptionalUnion.js b/implementors/planus/traits/trait.WriteAsOptionalUnion.js index f6ade619ec0e..136d68b8d588 100644 --- a/implementors/planus/traits/trait.WriteAsOptionalUnion.js +++ b/implementors/planus/traits/trait.WriteAsOptionalUnion.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow_format":[["impl WriteAsOptionalUnion<SparseTensorIndex> for SparseTensorIndex"],["impl WriteAsOptionalUnion<Type> for Type"],["impl WriteAsOptionalUnion<MessageHeader> for MessageHeader"]], +"arrow_format":[["impl WriteAsOptionalUnion<MessageHeader> for MessageHeader"],["impl WriteAsOptionalUnion<Type> for Type"],["impl WriteAsOptionalUnion<SparseTensorIndex> for SparseTensorIndex"]], "planus":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/planus/traits/trait.WriteAsUnion.js b/implementors/planus/traits/trait.WriteAsUnion.js index 9ec9d34153a3..43c04cde10ff 100644 --- a/implementors/planus/traits/trait.WriteAsUnion.js +++ b/implementors/planus/traits/trait.WriteAsUnion.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"arrow_format":[["impl WriteAsUnion<SparseTensorIndex> for SparseTensorIndex"],["impl WriteAsUnion<Type> for Type"],["impl WriteAsUnion<MessageHeader> for MessageHeader"]], +"arrow_format":[["impl WriteAsUnion<Type> for Type"],["impl WriteAsUnion<SparseTensorIndex> for SparseTensorIndex"],["impl WriteAsUnion<MessageHeader> for MessageHeader"]], "planus":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/polars_arrow/array/trait.ValueSize.js b/implementors/polars_arrow/array/trait.ValueSize.js index 2c048df6ac5c..c4611ede3b93 100644 --- a/implementors/polars_arrow/array/trait.ValueSize.js +++ b/implementors/polars_arrow/array/trait.ValueSize.js @@ -1,5 +1,5 @@ (function() {var implementors = { "polars":[], "polars_arrow":[], -"polars_core":[["impl ValueSize for ListChunked"],["impl ValueSize for BinaryChunked"],["impl ValueSize for Utf8Chunked"]] +"polars_core":[["impl ValueSize for BinaryChunked"],["impl ValueSize for Utf8Chunked"],["impl ValueSize for ListChunked"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/polars_arrow/trusted_len/rev/trait.FromIteratorReversed.js b/implementors/polars_arrow/trusted_len/rev/trait.FromIteratorReversed.js index 26560b984f76..c04d945e4ebb 100644 --- a/implementors/polars_arrow/trusted_len/rev/trait.FromIteratorReversed.js +++ b/implementors/polars_arrow/trusted_len/rev/trait.FromIteratorReversed.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"polars_core":[["impl FromIteratorReversed<Option<bool>> for BooleanChunked"],["impl<T> FromIteratorReversed<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>>where\n T: PolarsNumericType,"],["impl<T> FromIteratorReversed<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where\n T: PolarsNumericType,"]] +"polars_core":[["impl<T> FromIteratorReversed<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl FromIteratorReversed<Option<bool>> for BooleanChunked"],["impl<T> FromIteratorReversed<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>>where\n T: PolarsNumericType,"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/polars_arrow/trusted_len/trait.TrustedLen.js b/implementors/polars_arrow/trusted_len/trait.TrustedLen.js index b5b5a39291ce..e7e360c57bd7 100644 --- a/implementors/polars_arrow/trusted_len/trait.TrustedLen.js +++ b/implementors/polars_arrow/trusted_len/trait.TrustedLen.js @@ -1,4 +1,4 @@ (function() {var implementors = { "polars_arrow":[], -"polars_core":[["impl TrustedLen for &mut dyn TakeIterator"],["impl TrustedLen for GroupsProxyIter<'_>"],["impl TrustedLen for &mut dyn TakeIteratorNulls"],["impl<'a, I> TrustedLen for Box<dyn PolarsIterator<Item = I> + 'a>"]] +"polars_core":[["impl<'a, I> TrustedLen for Box<dyn PolarsIterator<Item = I> + 'a>"],["impl TrustedLen for &mut dyn TakeIteratorNulls"],["impl TrustedLen for &mut dyn TakeIterator"],["impl TrustedLen for GroupsProxyIter<'_>"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/polars_arrow/utils/trait.FromTrustedLenIterator.js b/implementors/polars_arrow/utils/trait.FromTrustedLenIterator.js index f8be51198243..583a1e8d6fe1 100644 --- a/implementors/polars_arrow/utils/trait.FromTrustedLenIterator.js +++ b/implementors/polars_arrow/utils/trait.FromTrustedLenIterator.js @@ -1,4 +1,4 @@ (function() {var implementors = { "polars_arrow":[], -"polars_core":[["impl FromTrustedLenIterator<bool> for NoNull<BooleanChunked>"],["impl<T> FromTrustedLenIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl FromTrustedLenIterator<Option<Series>> for ListChunked"],["impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for Utf8Chunkedwhere\n Ptr: AsRef<str>,"],["impl FromTrustedLenIterator<Option<bool>> for ChunkedArray<BooleanType>"],["impl<T> FromTrustedLenIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>>where\n T: PolarsNumericType,"],["impl<Ptr> FromTrustedLenIterator<Ptr> for BinaryChunkedwhere\n Ptr: PolarsAsRef<[u8]>,"],["impl FromTrustedLenIterator<bool> for BooleanChunked"],["impl<Ptr> FromTrustedLenIterator<Ptr> for Utf8Chunkedwhere\n Ptr: PolarsAsRef<str>,"],["impl<Ptr> FromTrustedLenIterator<Ptr> for ListChunkedwhere\n Ptr: Borrow<Series>,"],["impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for BinaryChunkedwhere\n Ptr: AsRef<[u8]>,"]] +"polars_core":[["impl<Ptr> FromTrustedLenIterator<Ptr> for Utf8Chunkedwhere\n Ptr: PolarsAsRef<str>,"],["impl<Ptr> FromTrustedLenIterator<Ptr> for ListChunkedwhere\n Ptr: Borrow<Series>,"],["impl<T> FromTrustedLenIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl FromTrustedLenIterator<Option<Series>> for ListChunked"],["impl FromTrustedLenIterator<bool> for NoNull<BooleanChunked>"],["impl<T> FromTrustedLenIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>>where\n T: PolarsNumericType,"],["impl<Ptr> FromTrustedLenIterator<Ptr> for BinaryChunkedwhere\n Ptr: PolarsAsRef<[u8]>,"],["impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for Utf8Chunkedwhere\n Ptr: AsRef<str>,"],["impl FromTrustedLenIterator<Option<bool>> for ChunkedArray<BooleanType>"],["impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for BinaryChunkedwhere\n Ptr: AsRef<[u8]>,"],["impl FromTrustedLenIterator<bool> for BooleanChunked"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/rayon/iter/trait.FromParallelIterator.js b/implementors/rayon/iter/trait.FromParallelIterator.js index ae99978ea139..114065f13d93 100644 --- a/implementors/rayon/iter/trait.FromParallelIterator.js +++ b/implementors/rayon/iter/trait.FromParallelIterator.js @@ -1,6 +1,6 @@ (function() {var implementors = { "hashbrown":[["impl<T, S> FromParallelIterator<T> for HashSet<T, S, Global>where\n T: Eq + Hash + Send,\n S: BuildHasher + Default,"],["impl<K, V, S> FromParallelIterator<(K, V)> for HashMap<K, V, S, Global>where\n K: Eq + Hash + Send,\n V: Send,\n S: BuildHasher + Default,"]], "polars":[], -"polars_core":[["impl<Ptr> FromParallelIterator<Ptr> for Utf8Chunkedwhere\n Ptr: PolarsAsRef<str> + Send + Sync,"],["impl<Ptr> FromParallelIterator<Option<Ptr>> for Utf8Chunkedwhere\n Ptr: AsRef<str> + Send + Sync,"],["impl FromParallelIterator<bool> for BooleanChunked"],["impl<T> FromParallelIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl FromParallelIterator<Option<bool>> for BooleanChunked"],["impl FromParallelIterator<(u32, Vec<u32, Global>)> for GroupsIdx"],["impl FromParallelIterator<Option<Series>> for ListChunked"],["impl<T> FromParallelIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>>where\n T: PolarsNumericType,"]], +"polars_core":[["impl FromParallelIterator<Option<bool>> for BooleanChunked"],["impl<Ptr> FromParallelIterator<Option<Ptr>> for Utf8Chunkedwhere\n Ptr: AsRef<str> + Send + Sync,"],["impl<Ptr> FromParallelIterator<Ptr> for Utf8Chunkedwhere\n Ptr: PolarsAsRef<str> + Send + Sync,"],["impl<T> FromParallelIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>>where\n T: PolarsNumericType,"],["impl FromParallelIterator<Option<Series>> for ListChunked"],["impl<T> FromParallelIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where\n T: PolarsNumericType,"],["impl FromParallelIterator<(u32, Vec<u32, Global>)> for GroupsIdx"],["impl FromParallelIterator<bool> for BooleanChunked"]], "rayon":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/serde/de/trait.Deserialize.js b/implementors/serde/de/trait.Deserialize.js index 89a617cfc8ea..c48bc6267d24 100644 --- a/implementors/serde/de/trait.Deserialize.js +++ b/implementors/serde/de/trait.Deserialize.js @@ -1,19 +1,19 @@ (function() {var implementors = { -"arrow_format":[["impl<'de> Deserialize<'de> for Message"],["impl<'de> Deserialize<'de> for Field"],["impl<'de> Deserialize<'de> for KeyValue"],["impl<'de> Deserialize<'de> for Duration"],["impl<'de> Deserialize<'de> for SparseMatrixIndexCsx"],["impl<'de> Deserialize<'de> for DateUnit"],["impl<'de> Deserialize<'de> for FieldNode"],["impl<'de> Deserialize<'de> for BodyCompression"],["impl<'de> Deserialize<'de> for Bool"],["impl<'de> Deserialize<'de> for Null"],["impl<'de> Deserialize<'de> for Footer"],["impl<'de> Deserialize<'de> for RecordBatch"],["impl<'de> Deserialize<'de> for LargeBinary"],["impl<'de> Deserialize<'de> for Schema"],["impl<'de> Deserialize<'de> for LargeList"],["impl<'de> Deserialize<'de> for Utf8"],["impl<'de> Deserialize<'de> for Interval"],["impl<'de> Deserialize<'de> for Int"],["impl<'de> Deserialize<'de> for Decimal"],["impl<'de> Deserialize<'de> for FixedSizeBinary"],["impl<'de> Deserialize<'de> for Struct"],["impl<'de> Deserialize<'de> for Timestamp"],["impl<'de> Deserialize<'de> for CompressionType"],["impl<'de> Deserialize<'de> for Precision"],["impl<'de> Deserialize<'de> for Feature"],["impl<'de> Deserialize<'de> for Endianness"],["impl<'de> Deserialize<'de> for Buffer"],["impl<'de> Deserialize<'de> for FloatingPoint"],["impl<'de> Deserialize<'de> for Type"],["impl<'de> Deserialize<'de> for Binary"],["impl<'de> Deserialize<'de> for SparseMatrixCompressedAxis"],["impl<'de> Deserialize<'de> for SparseTensorIndexCsf"],["impl<'de> Deserialize<'de> for TimeUnit"],["impl<'de> Deserialize<'de> for SparseTensor"],["impl<'de> Deserialize<'de> for IntervalUnit"],["impl<'de> Deserialize<'de> for DictionaryBatch"],["impl<'de> Deserialize<'de> for SparseTensorIndexCoo"],["impl<'de> Deserialize<'de> for List"],["impl<'de> Deserialize<'de> for DictionaryKind"],["impl<'de> Deserialize<'de> for Date"],["impl<'de> Deserialize<'de> for TensorDim"],["impl<'de> Deserialize<'de> for MetadataVersion"],["impl<'de> Deserialize<'de> for DictionaryEncoding"],["impl<'de> Deserialize<'de> for Tensor"],["impl<'de> Deserialize<'de> for Map"],["impl<'de> Deserialize<'de> for BodyCompressionMethod"],["impl<'de> Deserialize<'de> for Time"],["impl<'de> Deserialize<'de> for MessageHeader"],["impl<'de> Deserialize<'de> for Union"],["impl<'de> Deserialize<'de> for FixedSizeList"],["impl<'de> Deserialize<'de> for UnionMode"],["impl<'de> Deserialize<'de> for Block"],["impl<'de> Deserialize<'de> for SparseTensorIndex"],["impl<'de> Deserialize<'de> for LargeUtf8"]], +"arrow_format":[["impl<'de> Deserialize<'de> for LargeList"],["impl<'de> Deserialize<'de> for DictionaryEncoding"],["impl<'de> Deserialize<'de> for RecordBatch"],["impl<'de> Deserialize<'de> for TensorDim"],["impl<'de> Deserialize<'de> for KeyValue"],["impl<'de> Deserialize<'de> for MetadataVersion"],["impl<'de> Deserialize<'de> for Null"],["impl<'de> Deserialize<'de> for Struct"],["impl<'de> Deserialize<'de> for Block"],["impl<'de> Deserialize<'de> for UnionMode"],["impl<'de> Deserialize<'de> for BodyCompression"],["impl<'de> Deserialize<'de> for Map"],["impl<'de> Deserialize<'de> for Precision"],["impl<'de> Deserialize<'de> for Interval"],["impl<'de> Deserialize<'de> for Utf8"],["impl<'de> Deserialize<'de> for DateUnit"],["impl<'de> Deserialize<'de> for LargeUtf8"],["impl<'de> Deserialize<'de> for Time"],["impl<'de> Deserialize<'de> for TimeUnit"],["impl<'de> Deserialize<'de> for SparseMatrixCompressedAxis"],["impl<'de> Deserialize<'de> for Bool"],["impl<'de> Deserialize<'de> for Tensor"],["impl<'de> Deserialize<'de> for IntervalUnit"],["impl<'de> Deserialize<'de> for Message"],["impl<'de> Deserialize<'de> for FixedSizeBinary"],["impl<'de> Deserialize<'de> for FloatingPoint"],["impl<'de> Deserialize<'de> for SparseTensor"],["impl<'de> Deserialize<'de> for DictionaryKind"],["impl<'de> Deserialize<'de> for FieldNode"],["impl<'de> Deserialize<'de> for Date"],["impl<'de> Deserialize<'de> for FixedSizeList"],["impl<'de> Deserialize<'de> for List"],["impl<'de> Deserialize<'de> for Int"],["impl<'de> Deserialize<'de> for SparseMatrixIndexCsx"],["impl<'de> Deserialize<'de> for CompressionType"],["impl<'de> Deserialize<'de> for Binary"],["impl<'de> Deserialize<'de> for DictionaryBatch"],["impl<'de> Deserialize<'de> for Buffer"],["impl<'de> Deserialize<'de> for LargeBinary"],["impl<'de> Deserialize<'de> for Footer"],["impl<'de> Deserialize<'de> for SparseTensorIndex"],["impl<'de> Deserialize<'de> for Decimal"],["impl<'de> Deserialize<'de> for Field"],["impl<'de> Deserialize<'de> for Schema"],["impl<'de> Deserialize<'de> for BodyCompressionMethod"],["impl<'de> Deserialize<'de> for Feature"],["impl<'de> Deserialize<'de> for SparseTensorIndexCoo"],["impl<'de> Deserialize<'de> for Duration"],["impl<'de> Deserialize<'de> for SparseTensorIndexCsf"],["impl<'de> Deserialize<'de> for Endianness"],["impl<'de> Deserialize<'de> for Type"],["impl<'de> Deserialize<'de> for Timestamp"],["impl<'de> Deserialize<'de> for Union"],["impl<'de> Deserialize<'de> for MessageHeader"]], "avro_schema":[["impl<'de> Deserialize<'de> for Schema"],["impl<'de> Deserialize<'de> for Field"]], -"chrono":[["impl<'de> Deserialize<'de> for NaiveDate"],["impl<'de> Deserialize<'de> for DateTime<FixedOffset>"],["impl<'de> Deserialize<'de> for DateTime<Utc>"],["impl<'de> Deserialize<'de> for Month"],["impl<'de> Deserialize<'de> for NaiveDateTime"],["impl<'de> Deserialize<'de> for NaiveTime"],["impl<'de> Deserialize<'de> for DateTime<Local>"],["impl<'de> Deserialize<'de> for Weekday"]], -"ciborium":[["impl<'de> Deserialize<'de> for CanonicalValue"],["impl<'de> Deserialize<'de> for Value"],["impl<'de, V: Deserialize<'de>> Deserialize<'de> for Captured<V>"],["impl<'de, V: Deserialize<'de>, const TAG: u64> Deserialize<'de> for Required<V, TAG>"],["impl<'de, V: Deserialize<'de>, const TAG: u64> Deserialize<'de> for Accepted<V, TAG>"]], +"chrono":[["impl<'de> Deserialize<'de> for DateTime<Utc>"],["impl<'de> Deserialize<'de> for NaiveDate"],["impl<'de> Deserialize<'de> for NaiveDateTime"],["impl<'de> Deserialize<'de> for Weekday"],["impl<'de> Deserialize<'de> for DateTime<FixedOffset>"],["impl<'de> Deserialize<'de> for Month"],["impl<'de> Deserialize<'de> for NaiveTime"],["impl<'de> Deserialize<'de> for DateTime<Local>"]], +"ciborium":[["impl<'de, V: Deserialize<'de>, const TAG: u64> Deserialize<'de> for Required<V, TAG>"],["impl<'de> Deserialize<'de> for Value"],["impl<'de, V: Deserialize<'de>, const TAG: u64> Deserialize<'de> for Accepted<V, TAG>"],["impl<'de> Deserialize<'de> for CanonicalValue"],["impl<'de, V: Deserialize<'de>> Deserialize<'de> for Captured<V>"]], "halfbrown":[["impl<'de, K, V, H, const N: usize> Deserialize<'de> for SizedHashMap<K, V, H, N>where\n K: Eq + Hash + Deserialize<'de>,\n V: Deserialize<'de>,\n H: Default + BuildHasher,"]], -"indexmap":[["impl<'de, K, V, S> Deserialize<'de> for IndexMap<K, V, S>where\n K: Deserialize<'de> + Eq + Hash,\n V: Deserialize<'de>,\n S: Default + BuildHasher,"],["impl<'de, T, S> Deserialize<'de> for IndexSet<T, S>where\n T: Deserialize<'de> + Eq + Hash,\n S: Default + BuildHasher,"]], -"object_store":[["impl<'de> Deserialize<'de> for AzureConfigKey"],["impl<'de> Deserialize<'de> for AmazonS3ConfigKey"],["impl<'de> Deserialize<'de> for GoogleConfigKey"]], +"indexmap":[["impl<'de, T, S> Deserialize<'de> for IndexSet<T, S>where\n T: Deserialize<'de> + Eq + Hash,\n S: Default + BuildHasher,"],["impl<'de, K, V, S> Deserialize<'de> for IndexMap<K, V, S>where\n K: Deserialize<'de> + Eq + Hash,\n V: Deserialize<'de>,\n S: Default + BuildHasher,"]], +"object_store":[["impl<'de> Deserialize<'de> for GoogleConfigKey"],["impl<'de> Deserialize<'de> for AmazonS3ConfigKey"],["impl<'de> Deserialize<'de> for AzureConfigKey"]], "polars_arrow":[["impl<'de> Deserialize<'de> for QuantileInterpolOptions"]], -"polars_core":[["impl<'de> Deserialize<'de> for CloudOptions"],["impl<'de> Deserialize<'de> for IsSorted"],["impl<'de> Deserialize<'de> for AsOfOptions"],["impl<'de> Deserialize<'de> for UniqueKeepStrategy"],["impl<'de> Deserialize<'de> for DataFrame"],["impl<'de> Deserialize<'de> for JoinValidation"],["impl<'de> Deserialize<'de> for Series"],["impl<'de> Deserialize<'de> for AsofStrategy"],["impl<'de> Deserialize<'de> for Field"],["impl<'de> Deserialize<'de> for Schema"],["impl<'a> Deserialize<'a> for DataType"],["impl<'de> Deserialize<'de> for MeltArgs"],["impl<'de> Deserialize<'de> for NullBehavior"],["impl<'de> Deserialize<'de> for SortOptions"],["impl<'de> Deserialize<'de> for TimeUnit"],["impl<'de> Deserialize<'de> for JoinType"],["impl<'a> Deserialize<'a> for AnyValue<'static>"],["impl<'de> Deserialize<'de> for ListType"],["impl<'de> Deserialize<'de> for JoinArgs"],["impl<'de> Deserialize<'de> for SortMultipleOptions"]], -"polars_io":[["impl<'de> Deserialize<'de> for ZstdLevel"],["impl<'de> Deserialize<'de> for BrotliLevel"],["impl<'de> Deserialize<'de> for NullValues"],["impl<'de> Deserialize<'de> for GzipLevel"],["impl<'de> Deserialize<'de> for CsvEncoding"],["impl<'de> Deserialize<'de> for RowCount"],["impl<'de> Deserialize<'de> for IpcCompression"],["impl<'de> Deserialize<'de> for ParallelStrategy"],["impl<'de> Deserialize<'de> for ParquetCompression"]], -"polars_ops":[["impl<'de> Deserialize<'de> for SetOperation"],["impl<'de> Deserialize<'de> for InterpolationMethod"],["impl<'de> Deserialize<'de> for SearchSortedSide"]], -"polars_plan":[["impl<'de> Deserialize<'de> for Operator"],["impl<'de> Deserialize<'de> for FileScanOptions"],["impl<'de> Deserialize<'de> for RollingCovOptions"],["impl<'de> Deserialize<'de> for FileScan"],["impl<'de> Deserialize<'de> for WindowOptions"],["impl<'a> Deserialize<'a> for SpecialEq<Series>"],["impl<'de> Deserialize<'de> for FunctionExpr"],["impl<'de> Deserialize<'de> for Excluded"],["impl<'de> Deserialize<'de> for UnionOptions"],["impl<'de> Deserialize<'de> for ParquetOptions"],["impl<'a> Deserialize<'a> for PythonFunction"],["impl<'de> Deserialize<'de> for FileType"],["impl<'a> Deserialize<'a> for SpecialEq<Arc<dyn SeriesUdf>>"],["impl<'de> Deserialize<'de> for FunctionNode"],["impl<'de> Deserialize<'de> for IpcScanOptions"],["impl<'de> Deserialize<'de> for IpcWriterOptions"],["impl<'de> Deserialize<'de> for WindowMapping"],["impl<'de> Deserialize<'de> for GroupbyOptions"],["impl<'de> Deserialize<'de> for SortArguments"],["impl<'de> Deserialize<'de> for FileInfo"],["impl<'de> Deserialize<'de> for Expr"],["impl<'de> Deserialize<'de> for CsvParserOptions"],["impl<'de> Deserialize<'de> for StrptimeOptions"],["impl<'de> Deserialize<'de> for AggExpr"],["impl<'de> Deserialize<'de> for UnsafeBool"],["impl<'de> Deserialize<'de> for FileSinkOptions"],["impl<'de> Deserialize<'de> for LiteralValue"],["impl<'de> Deserialize<'de> for JoinOptions"],["impl<'de> Deserialize<'de> for LogicalPlan"],["impl Deserialize<'static> for AnonymousScanOptions"],["impl<'de> Deserialize<'de> for BooleanFunction"],["impl<'de> Deserialize<'de> for ParquetWriteOptions"],["impl<'de> Deserialize<'de> for DistinctOptions"],["impl<'de> Deserialize<'de> for PythonOptions"],["impl<'de> Deserialize<'de> for ApplyOptions"],["impl<'de> Deserialize<'de> for FunctionOptions"]], -"polars_time":[["impl<'de> Deserialize<'de> for StartBy"],["impl<'de> Deserialize<'de> for TruncateOptions"],["impl<'de> Deserialize<'de> for DynamicGroupOptions"],["impl<'de> Deserialize<'de> for RollingGroupOptions"],["impl<'de> Deserialize<'de> for ClosedWindow"],["impl<'de> Deserialize<'de> for Duration"]], +"polars_core":[["impl<'de> Deserialize<'de> for CloudOptions"],["impl<'de> Deserialize<'de> for JoinArgs"],["impl<'a> Deserialize<'a> for AnyValue<'static>"],["impl<'de> Deserialize<'de> for AsofStrategy"],["impl<'de> Deserialize<'de> for JoinValidation"],["impl<'a> Deserialize<'a> for DataType"],["impl<'de> Deserialize<'de> for JoinType"],["impl<'de> Deserialize<'de> for TimeUnit"],["impl<'de> Deserialize<'de> for SortMultipleOptions"],["impl<'de> Deserialize<'de> for ListType"],["impl<'de> Deserialize<'de> for SortOptions"],["impl<'de> Deserialize<'de> for Series"],["impl<'de> Deserialize<'de> for UniqueKeepStrategy"],["impl<'de> Deserialize<'de> for Schema"],["impl<'de> Deserialize<'de> for DataFrame"],["impl<'de> Deserialize<'de> for IsSorted"],["impl<'de> Deserialize<'de> for AsOfOptions"],["impl<'de> Deserialize<'de> for NullBehavior"],["impl<'de> Deserialize<'de> for MeltArgs"],["impl<'de> Deserialize<'de> for Field"]], +"polars_io":[["impl<'de> Deserialize<'de> for ZstdLevel"],["impl<'de> Deserialize<'de> for RowCount"],["impl<'de> Deserialize<'de> for IpcCompression"],["impl<'de> Deserialize<'de> for BrotliLevel"],["impl<'de> Deserialize<'de> for ParquetCompression"],["impl<'de> Deserialize<'de> for CsvEncoding"],["impl<'de> Deserialize<'de> for ParallelStrategy"],["impl<'de> Deserialize<'de> for GzipLevel"],["impl<'de> Deserialize<'de> for NullValues"]], +"polars_ops":[["impl<'de> Deserialize<'de> for SearchSortedSide"],["impl<'de> Deserialize<'de> for SetOperation"],["impl<'de> Deserialize<'de> for InterpolationMethod"]], +"polars_plan":[["impl<'de> Deserialize<'de> for WindowMapping"],["impl<'de> Deserialize<'de> for UnionOptions"],["impl<'de> Deserialize<'de> for RollingCovOptions"],["impl<'de> Deserialize<'de> for FileType"],["impl<'de> Deserialize<'de> for FileSinkOptions"],["impl<'de> Deserialize<'de> for FunctionNode"],["impl<'de> Deserialize<'de> for LogicalPlan"],["impl<'de> Deserialize<'de> for FileInfo"],["impl<'de> Deserialize<'de> for CsvParserOptions"],["impl Deserialize<'static> for AnonymousScanOptions"],["impl<'de> Deserialize<'de> for SortArguments"],["impl<'de> Deserialize<'de> for FunctionExpr"],["impl<'de> Deserialize<'de> for ApplyOptions"],["impl<'de> Deserialize<'de> for GroupbyOptions"],["impl<'de> Deserialize<'de> for PythonOptions"],["impl<'a> Deserialize<'a> for SpecialEq<Arc<dyn SeriesUdf>>"],["impl<'de> Deserialize<'de> for LiteralValue"],["impl<'de> Deserialize<'de> for FileScan"],["impl<'de> Deserialize<'de> for FileScanOptions"],["impl<'de> Deserialize<'de> for IpcWriterOptions"],["impl<'de> Deserialize<'de> for UnsafeBool"],["impl<'a> Deserialize<'a> for SpecialEq<Series>"],["impl<'de> Deserialize<'de> for ParquetOptions"],["impl<'de> Deserialize<'de> for ParquetWriteOptions"],["impl<'de> Deserialize<'de> for WindowOptions"],["impl<'de> Deserialize<'de> for Operator"],["impl<'de> Deserialize<'de> for Expr"],["impl<'de> Deserialize<'de> for Excluded"],["impl<'de> Deserialize<'de> for StrptimeOptions"],["impl<'de> Deserialize<'de> for DistinctOptions"],["impl<'de> Deserialize<'de> for IpcScanOptions"],["impl<'de> Deserialize<'de> for BooleanFunction"],["impl<'de> Deserialize<'de> for AggExpr"],["impl<'a> Deserialize<'a> for PythonFunction"],["impl<'de> Deserialize<'de> for FunctionOptions"],["impl<'de> Deserialize<'de> for JoinOptions"]], +"polars_time":[["impl<'de> Deserialize<'de> for TruncateOptions"],["impl<'de> Deserialize<'de> for ClosedWindow"],["impl<'de> Deserialize<'de> for StartBy"],["impl<'de> Deserialize<'de> for Duration"],["impl<'de> Deserialize<'de> for DynamicGroupOptions"],["impl<'de> Deserialize<'de> for RollingGroupOptions"]], "serde":[], -"serde_json":[["impl<'de> Deserialize<'de> for Number"],["impl<'de> Deserialize<'de> for Map<String, Value>"],["impl<'de: 'a, 'a> Deserialize<'de> for &'a RawValue"],["impl<'de> Deserialize<'de> for Value"],["impl<'de> Deserialize<'de> for Box<RawValue>"]], -"simd_json":[["impl<'de> Deserialize<'de> for Value<'de>"],["impl<'de> Deserialize<'de> for Value"]], +"serde_json":[["impl<'de> Deserialize<'de> for Value"],["impl<'de> Deserialize<'de> for Map<String, Value>"],["impl<'de> Deserialize<'de> for Number"],["impl<'de> Deserialize<'de> for Box<RawValue>"],["impl<'de: 'a, 'a> Deserialize<'de> for &'a RawValue"]], +"simd_json":[["impl<'de> Deserialize<'de> for Value"],["impl<'de> Deserialize<'de> for Value<'de>"]], "smartstring":[["impl<'de, T: SmartStringMode> Deserialize<'de> for SmartString<T>"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/serde/de/trait.Deserializer.js b/implementors/serde/de/trait.Deserializer.js index 12badbdb1366..168136067ea5 100644 --- a/implementors/serde/de/trait.Deserializer.js +++ b/implementors/serde/de/trait.Deserializer.js @@ -1,7 +1,7 @@ (function() {var implementors = { "quick_xml":[["impl<'de, 'a, R, E> Deserializer<'de> for &'a mut Deserializer<'de, R, E>where\n R: XmlRead<'de>,\n E: EntityResolver,"]], "serde":[], -"serde_json":[["impl<'de> Deserializer<'de> for Number"],["impl<'de, 'a, R: Read<'de>> Deserializer<'de> for &'a mut Deserializer<R>"],["impl<'de> Deserializer<'de> for Value"],["impl<'de> Deserializer<'de> for &'de Value"],["impl<'de, 'a> Deserializer<'de> for &'a Number"]], +"serde_json":[["impl<'de> Deserializer<'de> for Value"],["impl<'de> Deserializer<'de> for &'de Value"],["impl<'de> Deserializer<'de> for Number"],["impl<'de, 'a, R: Read<'de>> Deserializer<'de> for &'a mut Deserializer<R>"],["impl<'de, 'a> Deserializer<'de> for &'a Number"]], "serde_urlencoded":[["impl<'de> Deserializer<'de> for Deserializer<'de>"]], -"simd_json":[["impl<'de> Deserializer<'de> for Value<'de>"],["impl<'de> Deserializer<'de> for &'de Value"],["impl<'de> Deserializer<'de> for &'de Value<'de>"],["impl<'de> Deserializer<'de> for Value"],["impl<'a, 'de> Deserializer<'de> for &'a mut Deserializer<'de>where\n 'de: 'a,"]] +"simd_json":[["impl<'a, 'de> Deserializer<'de> for &'a mut Deserializer<'de>where\n 'de: 'a,"],["impl<'de> Deserializer<'de> for &'de Value<'de>"],["impl<'de> Deserializer<'de> for &'de Value"],["impl<'de> Deserializer<'de> for Value<'de>"],["impl<'de> Deserializer<'de> for Value"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/serde/de/trait.IntoDeserializer.js b/implementors/serde/de/trait.IntoDeserializer.js index 5b5499a123c5..4ffc99097957 100644 --- a/implementors/serde/de/trait.IntoDeserializer.js +++ b/implementors/serde/de/trait.IntoDeserializer.js @@ -1,6 +1,6 @@ (function() {var implementors = { -"indexmap":[["impl<'de, T, S, E> IntoDeserializer<'de, E> for IndexSet<T, S>where\n T: IntoDeserializer<'de, E> + Eq + Hash,\n S: BuildHasher,\n E: Error,"],["impl<'de, K, V, S, E> IntoDeserializer<'de, E> for IndexMap<K, V, S>where\n K: IntoDeserializer<'de, E> + Eq + Hash,\n V: IntoDeserializer<'de, E>,\n S: BuildHasher,\n E: Error,"]], +"indexmap":[["impl<'de, K, V, S, E> IntoDeserializer<'de, E> for IndexMap<K, V, S>where\n K: IntoDeserializer<'de, E> + Eq + Hash,\n V: IntoDeserializer<'de, E>,\n S: BuildHasher,\n E: Error,"],["impl<'de, T, S, E> IntoDeserializer<'de, E> for IndexSet<T, S>where\n T: IntoDeserializer<'de, E> + Eq + Hash,\n S: BuildHasher,\n E: Error,"]], "serde":[], -"serde_json":[["impl<'de> IntoDeserializer<'de, Error> for Value"]], -"simd_json":[["impl<'de> IntoDeserializer<'de, Error> for Value"],["impl<'de> IntoDeserializer<'de, Error> for Value<'de>"]] +"serde_json":[["impl<'de> IntoDeserializer<'de, Error> for &'de Value"],["impl<'de> IntoDeserializer<'de, Error> for Value"]], +"simd_json":[["impl<'de> IntoDeserializer<'de, Error> for Value<'de>"],["impl<'de> IntoDeserializer<'de, Error> for Value"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/serde/ser/trait.Serialize.js b/implementors/serde/ser/trait.Serialize.js index b9238cf333cc..f11f7e156286 100644 --- a/implementors/serde/ser/trait.Serialize.js +++ b/implementors/serde/ser/trait.Serialize.js @@ -1,19 +1,19 @@ (function() {var implementors = { -"arrow_format":[["impl Serialize for MessageHeader"],["impl Serialize for UnionMode"],["impl Serialize for LargeBinary"],["impl Serialize for SparseMatrixIndexCsx"],["impl Serialize for Endianness"],["impl Serialize for RecordBatch"],["impl Serialize for Map"],["impl Serialize for Field"],["impl Serialize for FixedSizeBinary"],["impl Serialize for SparseTensor"],["impl Serialize for BodyCompression"],["impl Serialize for Precision"],["impl Serialize for Decimal"],["impl Serialize for DateUnit"],["impl Serialize for SparseTensorIndexCsf"],["impl Serialize for LargeUtf8"],["impl Serialize for TensorDim"],["impl Serialize for LargeList"],["impl Serialize for Interval"],["impl Serialize for FixedSizeList"],["impl Serialize for Footer"],["impl Serialize for Time"],["impl Serialize for SparseTensorIndex"],["impl Serialize for Message"],["impl Serialize for DictionaryEncoding"],["impl Serialize for SparseMatrixCompressedAxis"],["impl Serialize for Null"],["impl Serialize for SparseTensorIndexCoo"],["impl Serialize for CompressionType"],["impl Serialize for TimeUnit"],["impl Serialize for Int"],["impl Serialize for List"],["impl Serialize for Union"],["impl Serialize for DictionaryBatch"],["impl Serialize for Type"],["impl Serialize for Block"],["impl Serialize for Duration"],["impl Serialize for Struct"],["impl Serialize for Feature"],["impl Serialize for FloatingPoint"],["impl Serialize for Binary"],["impl Serialize for Buffer"],["impl Serialize for Timestamp"],["impl Serialize for DictionaryKind"],["impl Serialize for Schema"],["impl Serialize for MetadataVersion"],["impl Serialize for BodyCompressionMethod"],["impl Serialize for IntervalUnit"],["impl Serialize for KeyValue"],["impl Serialize for Utf8"],["impl Serialize for Tensor"],["impl Serialize for FieldNode"],["impl Serialize for Bool"],["impl Serialize for Date"]], -"avro_schema":[["impl Serialize for Field"],["impl Serialize for Schema"]], -"chrono":[["impl Serialize for Month"],["impl Serialize for NaiveTime"],["impl Serialize for Weekday"],["impl Serialize for NaiveDateTime"],["impl Serialize for NaiveDate"],["impl<Tz: TimeZone> Serialize for DateTime<Tz>"]], -"ciborium":[["impl<V: Serialize> Serialize for Captured<V>"],["impl<V: Serialize, const TAG: u64> Serialize for Accepted<V, TAG>"],["impl Serialize for CanonicalValue"],["impl<V: Serialize, const TAG: u64> Serialize for Required<V, TAG>"],["impl Serialize for Value"]], +"arrow_format":[["impl Serialize for Timestamp"],["impl Serialize for SparseMatrixIndexCsx"],["impl Serialize for IntervalUnit"],["impl Serialize for FloatingPoint"],["impl Serialize for SparseTensorIndexCoo"],["impl Serialize for CompressionType"],["impl Serialize for Bool"],["impl Serialize for FixedSizeList"],["impl Serialize for Feature"],["impl Serialize for Message"],["impl Serialize for Null"],["impl Serialize for KeyValue"],["impl Serialize for Precision"],["impl Serialize for LargeUtf8"],["impl Serialize for Endianness"],["impl Serialize for Schema"],["impl Serialize for List"],["impl Serialize for DateUnit"],["impl Serialize for Footer"],["impl Serialize for Block"],["impl Serialize for DictionaryKind"],["impl Serialize for MetadataVersion"],["impl Serialize for DictionaryBatch"],["impl Serialize for LargeList"],["impl Serialize for Buffer"],["impl Serialize for FixedSizeBinary"],["impl Serialize for Type"],["impl Serialize for Utf8"],["impl Serialize for Decimal"],["impl Serialize for TimeUnit"],["impl Serialize for Time"],["impl Serialize for Tensor"],["impl Serialize for SparseMatrixCompressedAxis"],["impl Serialize for DictionaryEncoding"],["impl Serialize for Date"],["impl Serialize for Map"],["impl Serialize for Int"],["impl Serialize for FieldNode"],["impl Serialize for MessageHeader"],["impl Serialize for Union"],["impl Serialize for Binary"],["impl Serialize for Struct"],["impl Serialize for LargeBinary"],["impl Serialize for TensorDim"],["impl Serialize for SparseTensor"],["impl Serialize for Duration"],["impl Serialize for Field"],["impl Serialize for BodyCompressionMethod"],["impl Serialize for UnionMode"],["impl Serialize for SparseTensorIndex"],["impl Serialize for SparseTensorIndexCsf"],["impl Serialize for Interval"],["impl Serialize for BodyCompression"],["impl Serialize for RecordBatch"]], +"avro_schema":[["impl Serialize for Schema"],["impl Serialize for Field"]], +"chrono":[["impl Serialize for Weekday"],["impl Serialize for Month"],["impl<Tz: TimeZone> Serialize for DateTime<Tz>"],["impl Serialize for NaiveDate"],["impl Serialize for NaiveTime"],["impl Serialize for NaiveDateTime"]], +"ciborium":[["impl<V: Serialize> Serialize for Captured<V>"],["impl Serialize for Value"],["impl<V: Serialize, const TAG: u64> Serialize for Accepted<V, TAG>"],["impl Serialize for CanonicalValue"],["impl<V: Serialize, const TAG: u64> Serialize for Required<V, TAG>"]], "halfbrown":[["impl<K, V, H, const N: usize> Serialize for SizedHashMap<K, V, H, N>where\n K: Eq + Hash + Serialize,\n V: Serialize,"]], -"indexmap":[["impl<T> Serialize for SetSlice<T>where\n T: Serialize,"],["impl<K, V> Serialize for MapSlice<K, V>where\n K: Serialize,\n V: Serialize,"],["impl<K, V, S> Serialize for IndexMap<K, V, S>where\n K: Serialize + Hash + Eq,\n V: Serialize,\n S: BuildHasher,"],["impl<T, S> Serialize for IndexSet<T, S>where\n T: Serialize + Hash + Eq,\n S: BuildHasher,"]], -"object_store":[["impl Serialize for AmazonS3ConfigKey"],["impl Serialize for AzureConfigKey"],["impl Serialize for GoogleConfigKey"]], +"indexmap":[["impl<K, V, S> Serialize for IndexMap<K, V, S>where\n K: Serialize + Hash + Eq,\n V: Serialize,\n S: BuildHasher,"],["impl<T, S> Serialize for IndexSet<T, S>where\n T: Serialize + Hash + Eq,\n S: BuildHasher,"],["impl<K, V> Serialize for MapSlice<K, V>where\n K: Serialize,\n V: Serialize,"],["impl<T> Serialize for SetSlice<T>where\n T: Serialize,"]], +"object_store":[["impl Serialize for GoogleConfigKey"],["impl Serialize for AmazonS3ConfigKey"],["impl Serialize for AzureConfigKey"]], "polars_arrow":[["impl Serialize for QuantileInterpolOptions"]], -"polars_core":[["impl Serialize for UniqueKeepStrategy"],["impl Serialize for StructChunked"],["impl Serialize for NullBehavior"],["impl<K: PolarsDataType, T: PolarsNumericType> Serialize for Logical<K, T>where\n Self: LogicalType,\n ChunkedArray<T>: Serialize,\n T::Native: Serialize,"],["impl Serialize for ListChunked"],["impl Serialize for TimeUnit"],["impl Serialize for AsofStrategy"],["impl Serialize for BooleanChunked"],["impl Serialize for BinaryChunked"],["impl Serialize for Utf8Chunked"],["impl Serialize for AsOfOptions"],["impl Serialize for Field"],["impl Serialize for CategoricalChunked"],["impl Serialize for CloudOptions"],["impl Serialize for Schema"],["impl Serialize for IsSorted"],["impl<I> Serialize for IterSer<I>where\n I: IntoIterator,\n <I as IntoIterator>::Item: Serialize,"],["impl Serialize for MeltArgs"],["impl Serialize for SortOptions"],["impl Serialize for SortMultipleOptions"],["impl Serialize for JoinValidation"],["impl Serialize for Series"],["impl Serialize for DataFrame"],["impl<T> Serialize for ChunkedArray<T>where\n T: PolarsNumericType,\n T::Native: Serialize,"],["impl Serialize for JoinType"],["impl Serialize for ListType"],["impl Serialize for AnyValue<'_>"],["impl Serialize for JoinArgs"],["impl Serialize for DataType"]], -"polars_io":[["impl Serialize for ParquetCompression"],["impl Serialize for RowCount"],["impl Serialize for ParallelStrategy"],["impl Serialize for BrotliLevel"],["impl Serialize for IpcCompression"],["impl Serialize for NullValues"],["impl Serialize for GzipLevel"],["impl Serialize for CsvEncoding"],["impl Serialize for ZstdLevel"]], -"polars_ops":[["impl Serialize for InterpolationMethod"],["impl Serialize for SearchSortedSide"],["impl Serialize for SetOperation"]], -"polars_plan":[["impl Serialize for IpcWriterOptions"],["impl Serialize for PythonOptions"],["impl Serialize for BooleanFunction"],["impl Serialize for FileInfo"],["impl Serialize for RollingCovOptions"],["impl Serialize for IpcScanOptions"],["impl Serialize for PythonFunction"],["impl Serialize for ApplyOptions"],["impl Serialize for UnionOptions"],["impl Serialize for FunctionExpr"],["impl Serialize for StrptimeOptions"],["impl Serialize for WindowOptions"],["impl Serialize for FunctionOptions"],["impl Serialize for FileType"],["impl Serialize for FileScanOptions"],["impl Serialize for GroupbyOptions"],["impl Serialize for ParquetWriteOptions"],["impl Serialize for SpecialEq<Series>"],["impl Serialize for SpecialEq<Arc<dyn SeriesUdf>>"],["impl Serialize for FunctionNode"],["impl Serialize for SortArguments"],["impl Serialize for CsvParserOptions"],["impl Serialize for FileSinkOptions"],["impl Serialize for AggExpr"],["impl Serialize for LiteralValue"],["impl Serialize for FileScan"],["impl Serialize for UnsafeBool"],["impl Serialize for ParquetOptions"],["impl Serialize for DistinctOptions"],["impl Serialize for LogicalPlan"],["impl Serialize for JoinOptions"],["impl Serialize for Expr"],["impl Serialize for AnonymousScanOptions"],["impl Serialize for WindowMapping"],["impl Serialize for Operator"],["impl Serialize for Excluded"]], -"polars_time":[["impl Serialize for DynamicGroupOptions"],["impl Serialize for Duration"],["impl Serialize for ClosedWindow"],["impl Serialize for TruncateOptions"],["impl Serialize for StartBy"],["impl Serialize for RollingGroupOptions"]], +"polars_core":[["impl Serialize for UniqueKeepStrategy"],["impl Serialize for SortMultipleOptions"],["impl Serialize for CategoricalChunked"],["impl Serialize for Field"],["impl Serialize for IsSorted"],["impl Serialize for ListType"],["impl Serialize for AsOfOptions"],["impl Serialize for TimeUnit"],["impl Serialize for CloudOptions"],["impl<T> Serialize for ChunkedArray<T>where\n T: PolarsNumericType,\n T::Native: Serialize,"],["impl Serialize for Utf8Chunked"],["impl Serialize for BooleanChunked"],["impl<K: PolarsDataType, T: PolarsNumericType> Serialize for Logical<K, T>where\n Self: LogicalType,\n ChunkedArray<T>: Serialize,\n T::Native: Serialize,"],["impl Serialize for DataFrame"],["impl Serialize for JoinArgs"],["impl Serialize for Schema"],["impl Serialize for DataType"],["impl Serialize for AsofStrategy"],["impl Serialize for JoinValidation"],["impl Serialize for Series"],["impl<I> Serialize for IterSer<I>where\n I: IntoIterator,\n <I as IntoIterator>::Item: Serialize,"],["impl Serialize for MeltArgs"],["impl Serialize for AnyValue<'_>"],["impl Serialize for JoinType"],["impl Serialize for NullBehavior"],["impl Serialize for StructChunked"],["impl Serialize for ListChunked"],["impl Serialize for BinaryChunked"],["impl Serialize for SortOptions"]], +"polars_io":[["impl Serialize for IpcCompression"],["impl Serialize for ParquetCompression"],["impl Serialize for NullValues"],["impl Serialize for CsvEncoding"],["impl Serialize for ZstdLevel"],["impl Serialize for ParallelStrategy"],["impl Serialize for BrotliLevel"],["impl Serialize for GzipLevel"],["impl Serialize for RowCount"]], +"polars_ops":[["impl Serialize for SearchSortedSide"],["impl Serialize for SetOperation"],["impl Serialize for InterpolationMethod"]], +"polars_plan":[["impl Serialize for UnsafeBool"],["impl Serialize for ParquetWriteOptions"],["impl Serialize for SpecialEq<Arc<dyn SeriesUdf>>"],["impl Serialize for FunctionExpr"],["impl Serialize for AnonymousScanOptions"],["impl Serialize for PythonOptions"],["impl Serialize for LiteralValue"],["impl Serialize for FileScanOptions"],["impl Serialize for StrptimeOptions"],["impl Serialize for UnionOptions"],["impl Serialize for FunctionOptions"],["impl Serialize for Expr"],["impl Serialize for DistinctOptions"],["impl Serialize for WindowMapping"],["impl Serialize for Excluded"],["impl Serialize for JoinOptions"],["impl Serialize for SortArguments"],["impl Serialize for ParquetOptions"],["impl Serialize for GroupbyOptions"],["impl Serialize for ApplyOptions"],["impl Serialize for FileSinkOptions"],["impl Serialize for IpcWriterOptions"],["impl Serialize for WindowOptions"],["impl Serialize for FunctionNode"],["impl Serialize for IpcScanOptions"],["impl Serialize for FileScan"],["impl Serialize for PythonFunction"],["impl Serialize for CsvParserOptions"],["impl Serialize for SpecialEq<Series>"],["impl Serialize for Operator"],["impl Serialize for RollingCovOptions"],["impl Serialize for FileInfo"],["impl Serialize for BooleanFunction"],["impl Serialize for FileType"],["impl Serialize for LogicalPlan"],["impl Serialize for AggExpr"]], +"polars_time":[["impl Serialize for StartBy"],["impl Serialize for DynamicGroupOptions"],["impl Serialize for TruncateOptions"],["impl Serialize for RollingGroupOptions"],["impl Serialize for Duration"],["impl Serialize for ClosedWindow"]], "serde":[], -"serde_json":[["impl Serialize for Number"],["impl Serialize for RawValue"],["impl Serialize for Map<String, Value>"],["impl Serialize for Value"]], +"serde_json":[["impl Serialize for Map<String, Value>"],["impl Serialize for RawValue"],["impl Serialize for Value"],["impl Serialize for Number"]], "simd_json":[["impl<'value> Serialize for Value<'value>"],["impl Serialize for Value"]], "smartstring":[["impl<T: SmartStringMode> Serialize for SmartString<T>"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/serde/ser/trait.Serializer.js b/implementors/serde/ser/trait.Serializer.js index 1372dccf1f31..96583cfd22ba 100644 --- a/implementors/serde/ser/trait.Serializer.js +++ b/implementors/serde/ser/trait.Serializer.js @@ -1,6 +1,6 @@ (function() {var implementors = { "quick_xml":[["impl<'w, 'r, W: Write> Serializer for Serializer<'w, 'r, W>"]], "serde":[], -"serde_json":[["impl Serializer for Serializer"],["impl<'a, W, F> Serializer for &'a mut Serializer<W, F>where\n W: Write,\n F: Formatter,"]], +"serde_json":[["impl<'a, W, F> Serializer for &'a mut Serializer<W, F>where\n W: Write,\n F: Formatter,"],["impl Serializer for Serializer"]], "serde_urlencoded":[["impl<'input, 'output, Target> Serializer for Serializer<'input, 'output, Target>where\n Target: 'output + UrlEncodedTarget,"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/snafu/trait.ErrorCompat.js b/implementors/snafu/trait.ErrorCompat.js index 18def8aeccdc..85621fd5e3d8 100644 --- a/implementors/snafu/trait.ErrorCompat.js +++ b/implementors/snafu/trait.ErrorCompat.js @@ -1,4 +1,4 @@ (function() {var implementors = { -"object_store":[["impl ErrorCompat for Error"],["impl ErrorCompat for InvalidPart"],["impl ErrorCompat for Error"]], +"object_store":[["impl ErrorCompat for Error"],["impl ErrorCompat for Error"],["impl ErrorCompat for InvalidPart"]], "snafu":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/tower_service/trait.Service.js b/implementors/tower_service/trait.Service.js index 7cefc726527f..7e2a33e543e7 100644 --- a/implementors/tower_service/trait.Service.js +++ b/implementors/tower_service/trait.Service.js @@ -1,6 +1,6 @@ (function() {var implementors = { "hyper":[["impl<C, B> Service<Request<B>> for &Client<C, B>where\n C: Connect + Clone + Send + Sync + 'static,\n B: HttpBody + Send + 'static,\n B::Data: Send,\n B::Error: Into<Box<dyn StdError + Send + Sync>>,"],["impl<B> Service<Request<B>> for SendRequest<B>where\n B: HttpBody + 'static,"],["impl<C, B> Service<Request<B>> for Client<C, B>where\n C: Connect + Clone + Send + Sync + 'static,\n B: HttpBody + Send + 'static,\n B::Data: Send,\n B::Error: Into<Box<dyn StdError + Send + Sync>>,"],["impl<C, B, T> Service<T> for Connect<C, B, T>where\n C: MakeConnection<T>,\n C::Connection: Unpin + Send + 'static,\n C::Future: Send + 'static,\n C::Error: Into<Box<dyn StdError + Send + Sync>> + Send,\n B: HttpBody + Unpin + Send + 'static,\n B::Data: Send + Unpin,\n B::Error: Into<Box<dyn StdError + Send + Sync>>,"],["impl Service<Name> for GaiResolver"],["impl<R> Service<Uri> for HttpConnector<R>where\n R: Resolve + Clone + Send + Sync + 'static,\n R::Future: Send,"]], "hyper_rustls":[["impl<T> Service<Uri> for HttpsConnector<T>where\n T: Service<Uri>,\n T::Response: Connection + AsyncRead + AsyncWrite + Send + Unpin + 'static,\n T::Future: Send + 'static,\n T::Error: Into<Box<dyn Error + Send + Sync>>,"]], -"reqwest":[["impl Service<Request> for Client"],["impl Service<Request> for &Client"]], +"reqwest":[["impl Service<Request> for &Client"],["impl Service<Request> for Client"]], "tower_service":[] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/implementors/value_trait/trait.Writable.js b/implementors/value_trait/trait.Writable.js index 2d450e158ce2..f085724acc15 100644 --- a/implementors/value_trait/trait.Writable.js +++ b/implementors/value_trait/trait.Writable.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"simd_json":[["impl Writable for Value"],["impl<'value> Writable for Value<'value>"]] +"simd_json":[["impl<'value> Writable for Value<'value>"],["impl Writable for Value"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/object_store/chunked/struct.ChunkedStore.html b/object_store/chunked/struct.ChunkedStore.html index f844c79f542c..15853650bd07 100644 --- a/object_store/chunked/struct.ChunkedStore.html +++ b/object_store/chunked/struct.ChunkedStore.html @@ -6,7 +6,7 @@ example, it is used to verify the delimiting logic in newline_delimited_stream.

Implementations§

source§

impl ChunkedStore

source

pub fn new(inner: Arc<dyn ObjectStore>, chunk_size: usize) -> Self

Creates a new ChunkedStore with the specified chunk_size

-

Trait Implementations§

source§

impl Debug for ChunkedStore

source§

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

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

impl Display for ChunkedStore

source§

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

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

impl ObjectStore for ChunkedStore

source§

fn put<'life0, 'life1, 'async_trait>( +

Trait Implementations§

source§

impl Debug for ChunkedStore

source§

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

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

impl Display for ChunkedStore

source§

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

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

impl ObjectStore for ChunkedStore

source§

fn put<'life0, 'life1, 'async_trait>( &'life0 self, location: &'life1 Path, bytes: Bytes diff --git a/object_store/enum.Error.html b/object_store/enum.Error.html index 22751b354f00..8dd729026bae 100644 --- a/object_store/enum.Error.html +++ b/object_store/enum.Error.html @@ -34,11 +34,11 @@ key: String, }, }
Expand description

A specialized Error for object store-related errors

-

Variants§

§

Generic

Fields

§store: &'static str
§source: Box<dyn Error + Send + Sync + 'static>
§

NotFound

Fields

§path: String
§source: Box<dyn Error + Send + Sync + 'static>
§

InvalidPath

Fields

§source: Error
§

JoinError

Fields

§source: JoinError
§

NotSupported

Fields

§source: Box<dyn Error + Send + Sync + 'static>
§

AlreadyExists

Fields

§path: String
§source: Box<dyn Error + Send + Sync + 'static>
§

Precondition

Fields

§path: String
§source: Box<dyn Error + Send + Sync + 'static>
§

NotModified

Fields

§path: String
§source: Box<dyn Error + Send + Sync + 'static>
§

NotImplemented

§

UnknownConfigurationKey

Fields

§store: &'static str

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Errorwhere +

Variants§

§

Generic

Fields

§store: &'static str
§source: Box<dyn Error + Send + Sync + 'static>
§

NotFound

Fields

§path: String
§source: Box<dyn Error + Send + Sync + 'static>
§

InvalidPath

Fields

§source: Error
§

JoinError

Fields

§source: JoinError
§

NotSupported

Fields

§source: Box<dyn Error + Send + Sync + 'static>
§

AlreadyExists

Fields

§path: String
§source: Box<dyn Error + Send + Sync + 'static>
§

Precondition

Fields

§path: String
§source: Box<dyn Error + Send + Sync + 'static>
§

NotModified

Fields

§path: String
§source: Box<dyn Error + Send + Sync + 'static>
§

NotImplemented

§

UnknownConfigurationKey

Fields

§store: &'static str

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Errorwhere Self: Debug + Display,

source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl ErrorCompat for Error

source§

fn backtrace(&self) -> Option<&Backtrace>

Returns a Backtrace that may be printed.
source§

fn iter_chain(&self) -> ChainCompat<'_>where Self: AsErrorSource,

Returns an iterator for traversing the chain of errors, starting with the current error -and continuing with recursive calls to Error::source. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<JoinError> for Error

source§

fn from(error: JoinError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +and continuing with recursive calls to Error::source. Read more

source§

impl From<Error> for Error

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<JoinError> for Error

source§

fn from(error: JoinError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AsErrorSource for Twhere T: Error + 'static,

source§

fn as_error_source(&self) -> &(dyn Error + 'static)

For maximum effectiveness, this needs to be called as a method to benefit from Rust’s automatic dereferencing of method diff --git a/object_store/local/struct.LocalFileSystem.html b/object_store/local/struct.LocalFileSystem.html index a804135b1728..a3b289ce0335 100644 --- a/object_store/local/struct.LocalFileSystem.html +++ b/object_store/local/struct.LocalFileSystem.html @@ -22,7 +22,7 @@

Implementations§

source§

impl LocalFileSystem

source

pub fn new() -> Self

Create new filesystem storage with no prefix

source

pub fn new_with_prefix(prefix: impl AsRef<Path>) -> Result<Self>

Create new filesystem storage with prefix applied to all paths

Returns an error if the path does not exist

-

Trait Implementations§

source§

impl Debug for LocalFileSystem

source§

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

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

impl Default for LocalFileSystem

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for LocalFileSystem

source§

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

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

impl ObjectStore for LocalFileSystem

source§

fn put<'life0, 'life1, 'async_trait>( +

Trait Implementations§

source§

impl Debug for LocalFileSystem

source§

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

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

impl Default for LocalFileSystem

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for LocalFileSystem

source§

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

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

impl ObjectStore for LocalFileSystem

source§

fn put<'life0, 'life1, 'async_trait>( &'life0 self, location: &'life1 Path, bytes: Bytes diff --git a/object_store/memory/struct.InMemory.html b/object_store/memory/struct.InMemory.html index b726f3e3a196..7dfc61c9f814 100644 --- a/object_store/memory/struct.InMemory.html +++ b/object_store/memory/struct.InMemory.html @@ -2,7 +2,7 @@ storage provider.

Implementations§

source§

impl InMemory

source

pub fn new() -> Self

Create new in-memory storage.

source

pub async fn clone(&self) -> Self

Creates a clone of the store

-

Trait Implementations§

source§

impl Debug for InMemory

source§

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

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

impl Default for InMemory

source§

fn default() -> InMemory

Returns the “default value” for a type. Read more
source§

impl Display for InMemory

source§

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

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

impl ObjectStore for InMemory

source§

fn list_with_delimiter<'life0, 'life1, 'async_trait>( +

Trait Implementations§

source§

impl Debug for InMemory

source§

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

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

impl Default for InMemory

source§

fn default() -> InMemory

Returns the “default value” for a type. Read more
source§

impl Display for InMemory

source§

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

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

impl ObjectStore for InMemory

source§

fn list_with_delimiter<'life0, 'life1, 'async_trait>( &'life0 self, prefix: Option<&'life1 Path> ) -> Pin<Box<dyn Future<Output = Result<ListResult>> + Send + 'async_trait>>where diff --git a/object_store/path/enum.Error.html b/object_store/path/enum.Error.html index 2e8d9244bc67..4629b43f6e76 100644 --- a/object_store/path/enum.Error.html +++ b/object_store/path/enum.Error.html @@ -22,7 +22,7 @@ prefix: String, }, }
Expand description

Error returned by Path::parse

-

Variants§

§

EmptySegment

Fields

§path: String
§

BadSegment

Fields

§path: String
§

Canonicalize

Fields

§path: PathBuf
§source: Error
§

InvalidPath

Fields

§path: PathBuf
§

NonUnicode

Fields

§path: String
§source: Utf8Error
§

PrefixMismatch

Fields

§path: String
§prefix: String

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Errorwhere +

Variants§

§

EmptySegment

Fields

§path: String
§

BadSegment

Fields

§path: String
§

Canonicalize

Fields

§path: PathBuf
§source: Error
§

InvalidPath

Fields

§path: PathBuf
§

NonUnicode

Fields

§path: String
§source: Utf8Error
§

PrefixMismatch

Fields

§path: String
§prefix: String

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Errorwhere Self: Debug + Display,

source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl ErrorCompat for Error

source§

fn backtrace(&self) -> Option<&Backtrace>

Returns a Backtrace that may be printed.
source§

fn iter_chain(&self) -> ChainCompat<'_>where Self: AsErrorSource,

Returns an iterator for traversing the chain of errors, starting with the current error diff --git a/object_store/path/struct.InvalidPart.html b/object_store/path/struct.InvalidPart.html index 3c27a9fb0be4..07925a03f089 100644 --- a/object_store/path/struct.InvalidPart.html +++ b/object_store/path/struct.InvalidPart.html @@ -1,5 +1,5 @@ InvalidPart in object_store::path - Rust
pub struct InvalidPart { /* private fields */ }
Expand description

Error returned by PathPart::parse

-

Trait Implementations§

source§

impl Debug for InvalidPart

source§

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

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

impl Display for InvalidPart

source§

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

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

impl Error for InvalidPartwhere +

Trait Implementations§

source§

impl Debug for InvalidPart

source§

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

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

impl Display for InvalidPart

source§

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

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

impl Error for InvalidPartwhere Self: Debug + Display,

source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl ErrorCompat for InvalidPart

source§

fn backtrace(&self) -> Option<&Backtrace>

Returns a Backtrace that may be printed.
source§

fn iter_chain(&self) -> ChainCompat<'_>where Self: AsErrorSource,

Returns an iterator for traversing the chain of errors, starting with the current error diff --git a/object_store/path/struct.Path.html b/object_store/path/struct.Path.html index ba4b61c1a2cc..1933e71d311a 100644 --- a/object_store/path/struct.Path.html +++ b/object_store/path/struct.Path.html @@ -65,7 +65,7 @@

Parse

Returns None if the prefix does not match

source

pub fn prefix_matches(&self, prefix: &Self) -> bool

Returns true if this Path starts with prefix

source

pub fn child<'a>(&self, child: impl Into<PathPart<'a>>) -> Self

Creates a new child of this Path

-

Trait Implementations§

source§

impl AsRef<str> for Path

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Path

source§

fn clone(&self) -> Path

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 Path

source§

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

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

impl Default for Path

source§

fn default() -> Path

Returns the “default value” for a type. Read more
source§

impl Display for Path

source§

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

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

impl From<&str> for Path

source§

fn from(path: &str) -> Self

Converts to this type from the input type.
source§

impl From<Path> for String

source§

fn from(path: Path) -> Self

Converts to this type from the input type.
source§

impl From<String> for Path

source§

fn from(path: String) -> Self

Converts to this type from the input type.
source§

impl<'a, I> FromIterator<I> for Pathwhere +

Trait Implementations§

source§

impl AsRef<str> for Path

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Path

source§

fn clone(&self) -> Path

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 Path

source§

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

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

impl Default for Path

source§

fn default() -> Path

Returns the “default value” for a type. Read more
source§

impl Display for Path

source§

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

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

impl From<&str> for Path

source§

fn from(path: &str) -> Self

Converts to this type from the input type.
source§

impl From<Path> for String

source§

fn from(path: Path) -> Self

Converts to this type from the input type.
source§

impl From<String> for Path

source§

fn from(path: String) -> Self

Converts to this type from the input type.
source§

impl<'a, I> FromIterator<I> for Pathwhere I: Into<PathPart<'a>>,

source§

fn from_iter<T: IntoIterator<Item = I>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl Hash for Path

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Path

source§

fn cmp(&self, other: &Path) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere diff --git a/object_store/path/struct.PathPart.html b/object_store/path/struct.PathPart.html index 211db03ead94..c663db531bbb 100644 --- a/object_store/path/struct.PathPart.html +++ b/object_store/path/struct.PathPart.html @@ -3,7 +3,7 @@

A PathPart instance is guaranteed to to contain no illegal characters (e.g. /) as it can only be constructed by going through the from impl.

Implementations§

source§

impl<'a> PathPart<'a>

source

pub fn parse(segment: &'a str) -> Result<Self, InvalidPart>

Parse the provided path segment as a PathPart returning an error if invalid

-

Trait Implementations§

source§

impl<'a> AsRef<str> for PathPart<'a>

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> Clone for PathPart<'a>

source§

fn clone(&self) -> PathPart<'a>

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<'a> Debug for PathPart<'a>

source§

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

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

impl<'a> Default for PathPart<'a>

source§

fn default() -> PathPart<'a>

Returns the “default value” for a type. Read more
source§

impl<'a> From<&'a [u8]> for PathPart<'a>

source§

fn from(v: &'a [u8]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a str> for PathPart<'a>

source§

fn from(v: &'a str) -> Self

Converts to this type from the input type.
source§

impl From<String> for PathPart<'static>

source§

fn from(s: String) -> Self

Converts to this type from the input type.
source§

impl<'a> Hash for PathPart<'a>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

Trait Implementations§

source§

impl<'a> AsRef<str> for PathPart<'a>

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> Clone for PathPart<'a>

source§

fn clone(&self) -> PathPart<'a>

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<'a> Debug for PathPart<'a>

source§

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

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

impl<'a> Default for PathPart<'a>

source§

fn default() -> PathPart<'a>

Returns the “default value” for a type. Read more
source§

impl<'a> From<&'a [u8]> for PathPart<'a>

source§

fn from(v: &'a [u8]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a str> for PathPart<'a>

source§

fn from(v: &'a str) -> Self

Converts to this type from the input type.
source§

impl From<String> for PathPart<'static>

source§

fn from(s: String) -> Self

Converts to this type from the input type.
source§

impl<'a> Hash for PathPart<'a>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> Ord for PathPart<'a>

source§

fn cmp(&self, other: &PathPart<'a>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere diff --git a/object_store/prefix/struct.PrefixStore.html b/object_store/prefix/struct.PrefixStore.html index b0584283616e..40d3024d11dd 100644 --- a/object_store/prefix/struct.PrefixStore.html +++ b/object_store/prefix/struct.PrefixStore.html @@ -1,6 +1,6 @@ PrefixStore in object_store::prefix - Rust
pub struct PrefixStore<T: ObjectStore> { /* private fields */ }
Expand description

Store wrapper that applies a constant prefix to all paths handled by the store.

Implementations§

source§

impl<T: ObjectStore> PrefixStore<T>

source

pub fn new(store: T, prefix: impl Into<Path>) -> Self

Create a new instance of PrefixStore

-

Trait Implementations§

source§

impl<T: Clone + ObjectStore> Clone for PrefixStore<T>

source§

fn clone(&self) -> PrefixStore<T>

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<T: Debug + ObjectStore> Debug for PrefixStore<T>

source§

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

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

impl<T: ObjectStore> Display for PrefixStore<T>

source§

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

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

impl<T: ObjectStore> ObjectStore for PrefixStore<T>

source§

fn put<'life0, 'life1, 'async_trait>( +

Trait Implementations§

source§

impl<T: Clone + ObjectStore> Clone for PrefixStore<T>

source§

fn clone(&self) -> PrefixStore<T>

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<T: Debug + ObjectStore> Debug for PrefixStore<T>

source§

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

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

impl<T: ObjectStore> Display for PrefixStore<T>

source§

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

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

impl<T: ObjectStore> ObjectStore for PrefixStore<T>

source§

fn put<'life0, 'life1, 'async_trait>( &'life0 self, location: &'life1 Path, bytes: Bytes diff --git a/polars/chunked_array/arithmetic/trait.ArrayArithmetics.html b/polars/chunked_array/arithmetic/trait.ArrayArithmetics.html index 0718eda69b39..b0001f17c14b 100644 --- a/polars/chunked_array/arithmetic/trait.ArrayArithmetics.html +++ b/polars/chunked_array/arithmetic/trait.ArrayArithmetics.html @@ -43,139 +43,139 @@ ) -> PrimitiveArray<Self>

source

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

Implementations on Foreign Types§

source§

impl ArrayArithmetics for i128

source§

fn add( +) -> PrimitiveArray<Self>

source

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

Implementations on Foreign Types§

source§

impl ArrayArithmetics for i16

source§

impl ArrayArithmetics for f32

source§

impl ArrayArithmetics for i32

source§

impl ArrayArithmetics for i128

source§

impl ArrayArithmetics for u16

source§

impl ArrayArithmetics for f64

source§

impl ArrayArithmetics for i8

source§

impl ArrayArithmetics for f64

source§

impl ArrayArithmetics for u64

source§

impl ArrayArithmetics for i32

source§

impl ArrayArithmetics for u8

source§

impl ArrayArithmetics for i64

source§

impl ArrayArithmetics for u32

source§

impl ArrayArithmetics for u32

source§

impl ArrayArithmetics for i16

source§

impl ArrayArithmetics for i8

source§

impl ArrayArithmetics for f32

Implementors§

\ No newline at end of file +) -> PrimitiveArray<u32>
source§

fn rem_scalar(lhs: &PrimitiveArray<u32>, rhs: &u32) -> PrimitiveArray<u32>

source§

impl ArrayArithmetics for u8

source§

fn add(lhs: &PrimitiveArray<u8>, rhs: &PrimitiveArray<u8>) -> PrimitiveArray<u8>

source§

fn sub(lhs: &PrimitiveArray<u8>, rhs: &PrimitiveArray<u8>) -> PrimitiveArray<u8>

source§

fn mul(lhs: &PrimitiveArray<u8>, rhs: &PrimitiveArray<u8>) -> PrimitiveArray<u8>

source§

fn div(lhs: &PrimitiveArray<u8>, rhs: &PrimitiveArray<u8>) -> PrimitiveArray<u8>

source§

fn div_scalar(lhs: &PrimitiveArray<u8>, rhs: &u8) -> PrimitiveArray<u8>

source§

fn rem(lhs: &PrimitiveArray<u8>, rhs: &PrimitiveArray<u8>) -> PrimitiveArray<u8>

source§

fn rem_scalar(lhs: &PrimitiveArray<u8>, rhs: &u8) -> PrimitiveArray<u8>

source§

impl ArrayArithmetics for i64

source§

fn add( + lhs: &PrimitiveArray<i64>, + rhs: &PrimitiveArray<i64> +) -> PrimitiveArray<i64>

source§

fn sub( + lhs: &PrimitiveArray<i64>, + rhs: &PrimitiveArray<i64> +) -> PrimitiveArray<i64>

source§

fn mul( + lhs: &PrimitiveArray<i64>, + rhs: &PrimitiveArray<i64> +) -> PrimitiveArray<i64>

source§

fn div( + lhs: &PrimitiveArray<i64>, + rhs: &PrimitiveArray<i64> +) -> PrimitiveArray<i64>

source§

fn div_scalar(lhs: &PrimitiveArray<i64>, rhs: &i64) -> PrimitiveArray<i64>

source§

fn rem( + lhs: &PrimitiveArray<i64>, + rhs: &PrimitiveArray<i64> +) -> PrimitiveArray<i64>

source§

fn rem_scalar(lhs: &PrimitiveArray<i64>, rhs: &i64) -> PrimitiveArray<i64>

source§

impl ArrayArithmetics for u16

source§

fn add( + lhs: &PrimitiveArray<u16>, + rhs: &PrimitiveArray<u16> +) -> PrimitiveArray<u16>

source§

fn sub( + lhs: &PrimitiveArray<u16>, + rhs: &PrimitiveArray<u16> +) -> PrimitiveArray<u16>

source§

fn mul( + lhs: &PrimitiveArray<u16>, + rhs: &PrimitiveArray<u16> +) -> PrimitiveArray<u16>

source§

fn div( + lhs: &PrimitiveArray<u16>, + rhs: &PrimitiveArray<u16> +) -> PrimitiveArray<u16>

source§

fn div_scalar(lhs: &PrimitiveArray<u16>, rhs: &u16) -> PrimitiveArray<u16>

source§

fn rem( + lhs: &PrimitiveArray<u16>, + rhs: &PrimitiveArray<u16> +) -> PrimitiveArray<u16>

source§

fn rem_scalar(lhs: &PrimitiveArray<u16>, rhs: &u16) -> PrimitiveArray<u16>

source§

impl ArrayArithmetics for u64

source§

fn add( + lhs: &PrimitiveArray<u64>, + rhs: &PrimitiveArray<u64> +) -> PrimitiveArray<u64>

source§

fn sub( + lhs: &PrimitiveArray<u64>, + rhs: &PrimitiveArray<u64> +) -> PrimitiveArray<u64>

source§

fn mul( + lhs: &PrimitiveArray<u64>, + rhs: &PrimitiveArray<u64> +) -> PrimitiveArray<u64>

source§

fn div( + lhs: &PrimitiveArray<u64>, + rhs: &PrimitiveArray<u64> +) -> PrimitiveArray<u64>

source§

fn div_scalar(lhs: &PrimitiveArray<u64>, rhs: &u64) -> PrimitiveArray<u64>

source§

fn rem( + lhs: &PrimitiveArray<u64>, + rhs: &PrimitiveArray<u64> +) -> PrimitiveArray<u64>

source§

fn rem_scalar(lhs: &PrimitiveArray<u64>, rhs: &u64) -> PrimitiveArray<u64>

Implementors§

\ No newline at end of file diff --git a/polars/chunked_array/object/categorical/struct.CategoricalChunked.html b/polars/chunked_array/object/categorical/struct.CategoricalChunked.html index 0c1b8adb30b0..5f26a3605e48 100644 --- a/polars/chunked_array/object/categorical/struct.CategoricalChunked.html +++ b/polars/chunked_array/object/categorical/struct.CategoricalChunked.html @@ -15,7 +15,7 @@
Safety

Invariant in v < rev_map.len() for v in idx must be hold.

source

pub fn get_rev_map(&self) -> &Arc<RevMapping>

Get a reference to the mapping of categorical types to the string values.

source

pub fn iter_str(&self) -> CatIter<'_>

Create an [Iterator] that iterates over the &str values of the [CategoricalChunked].

-

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/chunked_array/object/datatypes/enum.AnyValue.html b/polars/chunked_array/object/datatypes/enum.AnyValue.html index f0429eaea968..30c0fa5c17a4 100644 --- a/polars/chunked_array/object/datatypes/enum.AnyValue.html +++ b/polars/chunked_array/object/datatypes/enum.AnyValue.html @@ -52,9 +52,9 @@ T: NumCast,

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn cast(&self, dtype: &'a DataType) -> Result<AnyValue<'a>, PolarsError>

source§

impl<'a> AnyValue<'a>

source

pub fn add(&self, rhs: &AnyValue<'_>) -> AnyValue<'a>

source

pub fn as_borrowed(&self) -> AnyValue<'_>

source

pub fn into_static(self) -> Result<AnyValue<'static>, PolarsError>

Try to coerce to an AnyValue with static lifetime. This can be done if it does not borrow any values.

source

pub fn get_str(&self) -> Option<&str>

Get a reference to the &str contained within AnyValue.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where - K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where - T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where + K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where + T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<AnyValue<'_>> for AnyValue<'_>

source§

fn eq(&self, other: &AnyValue<'_>) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars/chunked_array/object/datatypes/enum.ArrowDataType.html b/polars/chunked_array/object/datatypes/enum.ArrowDataType.html index dfd06123b68f..56273b332760 100644 --- a/polars/chunked_array/object/datatypes/enum.ArrowDataType.html +++ b/polars/chunked_array/object/datatypes/enum.ArrowDataType.html @@ -128,7 +128,7 @@ (recursively) returns the inner DataType. Never returns the variant DataType::Extension.

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl<T> From<DataType> for MutablePrimitiveArray<T>where - T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where + T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/chunked_array/object/datatypes/enum.DataType.html b/polars/chunked_array/object/datatypes/enum.DataType.html index d768faebcfc3..bcc879688e24 100644 --- a/polars/chunked_array/object/datatypes/enum.DataType.html +++ b/polars/chunked_array/object/datatypes/enum.DataType.html @@ -43,7 +43,7 @@ it is not a container type.

source

pub fn is_numeric(&self) -> bool

Check if this DataType is a numeric type.

source

pub fn is_float(&self) -> bool

source

pub fn is_integer(&self) -> bool

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn to_arrow(&self) -> DataType

Convert to an Arrow data type.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

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

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

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

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

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

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/chunked_array/object/datatypes/struct.CategoricalChunked.html b/polars/chunked_array/object/datatypes/struct.CategoricalChunked.html index dd66623a5068..bf2406acaf0f 100644 --- a/polars/chunked_array/object/datatypes/struct.CategoricalChunked.html +++ b/polars/chunked_array/object/datatypes/struct.CategoricalChunked.html @@ -15,7 +15,7 @@
Safety

Invariant in v < rev_map.len() for v in idx must be hold.

source

pub fn get_rev_map(&self) -> &Arc<RevMapping>

Available on crate feature dtype-categorical only.

Get a reference to the mapping of categorical types to the string values.

source

pub fn iter_str(&self) -> CatIter<'_>

Available on crate feature dtype-categorical only.

Create an [Iterator] that iterates over the &str values of the [CategoricalChunked].

-

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/chunked_array/object/datatypes/struct.Field.html b/polars/chunked_array/object/datatypes/struct.Field.html index e8b2588a8805..ec071eb113e5 100644 --- a/polars/chunked_array/object/datatypes/struct.Field.html +++ b/polars/chunked_array/object/datatypes/struct.Field.html @@ -35,7 +35,7 @@
Example
let af = arrow::datatypes::Field::new("Value", arrow::datatypes::DataType::Int64, true); assert_eq!(f.to_arrow(), af);

-

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

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

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

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

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

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

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Field

source§

impl StructuralEq for Field

source§

impl StructuralPartialEq for Field

Auto Trait Implementations§

§

impl RefUnwindSafe for Field

§

impl Send for Field

§

impl Sync for Field

§

impl Unpin for Field

§

impl UnwindSafe for Field

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/chunked_array/object/datatypes/struct.Int32Type.html b/polars/chunked_array/object/datatypes/struct.Int32Type.html index debcf95d0e87..86f81b228210 100644 --- a/polars/chunked_array/object/datatypes/struct.Int32Type.html +++ b/polars/chunked_array/object/datatypes/struct.Int32Type.html @@ -1,4 +1,4 @@ -Int32Type in polars::chunked_array::object::datatypes - Rust
pub struct Int32Type {}
Available on crate feature object only.

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +Int32Type in polars::chunked_array::object::datatypes - Rust
pub struct Int32Type {}
Available on crate feature object only.

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/chunked_array/object/datatypes/struct.Logical.html b/polars/chunked_array/object/datatypes/struct.Logical.html index 202d9e834485..fe080b4d1bd6 100644 --- a/polars/chunked_array/object/datatypes/struct.Logical.html +++ b/polars/chunked_array/object/datatypes/struct.Logical.html @@ -329,27 +329,27 @@
Safety

source§

fn milliseconds(&self) -> ChunkedArray<Int64Type>

Extract the milliseconds from a Duration

source§

fn microseconds(&self) -> ChunkedArray<Int64Type>

Extract the microseconds from a Duration

source§

fn nanoseconds(&self) -> ChunkedArray<Int64Type>

Extract the nanoseconds from a Duration

-

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( +

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( self, rhs: &Logical<DecimalType, Int128Type> ) -> <&Logical<DecimalType, Int128Type> as Mul<&Logical<DecimalType, Int128Type>>>::Output

Performs the * operation. Read more
source§

impl<T> NamedFrom<T, [Duration]> for Logical<DurationType, Int64Type>where T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Logical<DateType, Int32Type>where - T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Logical<TimeType, Int64Type>where - T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where + T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Logical<DateType, Int32Type>where - T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where - T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where - T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

fn month_end( + T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where + T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

fn month_end( &self, _time_zone: Option<&Tz> -) -> Result<Logical<DateType, Int32Type>, PolarsError>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

fn month_end( +) -> Result<Logical<DateType, Int32Type>, PolarsError>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

fn month_end( &self, time_zone: Option<&Tz> -) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

fn month_start( +) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

fn month_start( &self, _tz: Option<&Tz> -) -> Result<Logical<DateType, Int32Type>, PolarsError>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

fn month_start( +) -> Result<Logical<DateType, Int32Type>, PolarsError>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

fn month_start( &self, tz: Option<&Tz> ) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>

source§

impl PolarsRound for Logical<DateType, Int32Type>

Available on crate feature dtype-date only.
source§

fn round( diff --git a/polars/chunked_array/object/datatypes/trait.InitHashMaps.html b/polars/chunked_array/object/datatypes/trait.InitHashMaps.html index 2df54ce30f4f..eb9cd69d2d15 100644 --- a/polars/chunked_array/object/datatypes/trait.InitHashMaps.html +++ b/polars/chunked_array/object/datatypes/trait.InitHashMaps.html @@ -4,12 +4,12 @@ // Required methods fn new() -> Self::HashMap; fn with_capacity(capacity: usize) -> Self::HashMap; -}
Available on crate feature object only.

Required Associated Types§

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

§

type HashMap = HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

fn new( - -) -> <HashMap<K, V, BuildHasherDefault<IdHasher>, Global> as InitHashMaps>::HashMap

source§

fn with_capacity( +}
Available on crate feature object only.

Required Associated Types§

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

Implementors§

\ No newline at end of file +) -> HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

Implementors§

\ No newline at end of file diff --git a/polars/chunked_array/object/datatypes/trait.NumericNative.html b/polars/chunked_array/object/datatypes/trait.NumericNative.html index 03ba0633acdd..44bc98b2c558 100644 --- a/polars/chunked_array/object/datatypes/trait.NumericNative.html +++ b/polars/chunked_array/object/datatypes/trait.NumericNative.html @@ -1,3 +1,3 @@ NumericNative in polars::chunked_array::object::datatypes - Rust
pub trait NumericNative: PartialOrd<Self> + NativeType + Num<Output = Self, Output = Self, Output = Self, Output = Self, Output = Self> + NumCast + Zero + Simd + Simd8 + Sum<Self> + Add<Self> + Sub<Self> + Mul<Self> + Div<Self> + Rem<Self> + AddAssign<Self> + SubAssign<Self> + Bounded + FromPrimitive + IsFloat + ArrayArithmetics {
     type POLARSTYPE: PolarsNumericType;
-}
Available on crate feature object only.

Required Associated Types§

Implementations on Foreign Types§

source§

impl NumericNative for i8

source§

impl NumericNative for f64

source§

impl NumericNative for i16

source§

impl NumericNative for u64

source§

impl NumericNative for i64

source§

impl NumericNative for u32

source§

impl NumericNative for f32

source§

impl NumericNative for i32

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.
source§

impl NumericNative for u16

source§

impl NumericNative for u8

Implementors§

\ No newline at end of file +}
Available on crate feature object only.

Required Associated Types§

source

type POLARSTYPE: PolarsNumericType

Implementations on Foreign Types§

source§

impl NumericNative for u8

§

type POLARSTYPE = UInt8Type

source§

impl NumericNative for u64

§

type POLARSTYPE = UInt64Type

source§

impl NumericNative for i32

§

type POLARSTYPE = Int32Type

source§

impl NumericNative for i16

§

type POLARSTYPE = Int16Type

source§

impl NumericNative for f32

§

type POLARSTYPE = Float32Type

source§

impl NumericNative for i64

§

type POLARSTYPE = Int64Type

source§

impl NumericNative for u16

§

type POLARSTYPE = UInt16Type

source§

impl NumericNative for i8

§

type POLARSTYPE = Int8Type

source§

impl NumericNative for u32

§

type POLARSTYPE = UInt32Type

source§

impl NumericNative for f64

§

type POLARSTYPE = Float64Type

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.
§

type POLARSTYPE = Int128Type

Implementors§

\ No newline at end of file diff --git a/polars/chunked_array/object/enum.AnyValue.html b/polars/chunked_array/object/enum.AnyValue.html index a5c8e32c7bec..fa6753cc3d7b 100644 --- a/polars/chunked_array/object/enum.AnyValue.html +++ b/polars/chunked_array/object/enum.AnyValue.html @@ -52,9 +52,9 @@ T: NumCast,
source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn cast(&self, dtype: &'a DataType) -> Result<AnyValue<'a>, PolarsError>

source§

impl<'a> AnyValue<'a>

source

pub fn add(&self, rhs: &AnyValue<'_>) -> AnyValue<'a>

source

pub fn as_borrowed(&self) -> AnyValue<'_>

source

pub fn into_static(self) -> Result<AnyValue<'static>, PolarsError>

Try to coerce to an AnyValue with static lifetime. This can be done if it does not borrow any values.

source

pub fn get_str(&self) -> Option<&str>

Get a reference to the &str contained within AnyValue.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where - K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where - T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where + K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where + T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<AnyValue<'_>> for AnyValue<'_>

source§

fn eq(&self, other: &AnyValue<'_>) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars/chunked_array/object/enum.ArrowDataType.html b/polars/chunked_array/object/enum.ArrowDataType.html index d321409c5d56..1cb0c18e136c 100644 --- a/polars/chunked_array/object/enum.ArrowDataType.html +++ b/polars/chunked_array/object/enum.ArrowDataType.html @@ -128,7 +128,7 @@ (recursively) returns the inner DataType. Never returns the variant DataType::Extension.

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl<T> From<DataType> for MutablePrimitiveArray<T>where - T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where + T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/chunked_array/object/enum.DataType.html b/polars/chunked_array/object/enum.DataType.html index f9b9a8494618..7bca1923936c 100644 --- a/polars/chunked_array/object/enum.DataType.html +++ b/polars/chunked_array/object/enum.DataType.html @@ -43,7 +43,7 @@ it is not a container type.

source

pub fn is_numeric(&self) -> bool

Check if this DataType is a numeric type.

source

pub fn is_float(&self) -> bool

source

pub fn is_integer(&self) -> bool

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn to_arrow(&self) -> DataType

Convert to an Arrow data type.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

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

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

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

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

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

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/chunked_array/object/enum.PolarsError.html b/polars/chunked_array/object/enum.PolarsError.html index a0039e9f53bd..37de2eb17598 100644 --- a/polars/chunked_array/object/enum.PolarsError.html +++ b/polars/chunked_array/object/enum.PolarsError.html @@ -11,7 +11,7 @@ ShapeMismatch(ErrString), StringCacheMismatch(ErrString), StructFieldNotFound(ErrString), -}
Available on crate feature object only.

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

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

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

impl Display for PolarsError

source§

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

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

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +}
Available on crate feature object only.

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

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

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

impl Display for PolarsError

source§

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

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

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars/chunked_array/object/enum.TakeIdx.html b/polars/chunked_array/object/enum.TakeIdx.html index 4463c77014a3..5e3b4b2ecf71 100644 --- a/polars/chunked_array/object/enum.TakeIdx.html +++ b/polars/chunked_array/object/enum.TakeIdx.html @@ -9,16 +9,16 @@
source§

fn from( slice: &'a [u32] ) -> TakeIdx<'a, Map<Iter<'a, u32>, fn(_: &u32) -> usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

-
source§

fn from( ca: &'a ChunkedArray<UInt32Type> ) -> TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, u32>, fn(_: &u32) -> usize>, Once<Option<usize>>>

Conversion from &[IdxSize] to Unchecked TakeIdx

-
source§

fn from( slice: &'a Vec<u32, Global> ) -> TakeIdx<'a, Map<Iter<'a, u32>, fn(_: &u32) -> usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, I, Once<Option<usize>>>where I: TakeIterator,

Conversion from Iterator<Item=usize> to Unchecked TakeIdx

-
source§

fn from(iter: I) -> TakeIdx<'a, I, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, Once<usize>, I>where +

source§

fn from(iter: I) -> TakeIdx<'a, I, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, Once<usize>, I>where I: TakeIteratorNulls,

Conversion from [Iterator<Item=Option<usize>>] to Unchecked TakeIdx

-
source§

fn from(iter: I) -> TakeIdx<'a, Once<usize>, I>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls>where +

source§

fn from(iter: I) -> TakeIdx<'a, Once<usize>, I>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls>where I: RefUnwindSafe, INulls: RefUnwindSafe,

§

impl<'a, I, INulls> Send for TakeIdx<'a, I, INulls>where I: Send, diff --git a/polars/chunked_array/object/struct.Arc.html b/polars/chunked_array/object/struct.Arc.html index 934c91bf9a84..fd6e817150bf 100644 --- a/polars/chunked_array/object/struct.Arc.html +++ b/polars/chunked_array/object/struct.Arc.html @@ -883,10 +883,10 @@
Examples
let five = Arc::new(5); assert!(five != Arc::new(6));

-
source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>

source§

fn eq(&self, that: &(dyn Scalar + 'static)) -> bool

This method tests for self and other values to be equal, and is used +
source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>

source§

fn eq(&self, that: &(dyn Scalar + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialOrd<Arc<T>> for Arc<T>where T: PartialOrd<T> + ?Sized,

source§

fn partial_cmp(&self, other: &Arc<T>) -> Option<Ordering>

Partial comparison for two Arcs.

The two are compared by calling partial_cmp() on their inner values.

diff --git a/polars/chunked_array/object/struct.CategoricalChunked.html b/polars/chunked_array/object/struct.CategoricalChunked.html index 7ae43db36cda..1235e77f706b 100644 --- a/polars/chunked_array/object/struct.CategoricalChunked.html +++ b/polars/chunked_array/object/struct.CategoricalChunked.html @@ -15,7 +15,7 @@
Safety

Invariant in v < rev_map.len() for v in idx must be hold.

source

pub fn get_rev_map(&self) -> &Arc<RevMapping>

Available on crate feature dtype-categorical only.

Get a reference to the mapping of categorical types to the string values.

source

pub fn iter_str(&self) -> CatIter<'_>

Available on crate feature dtype-categorical only.

Create an [Iterator] that iterates over the &str values of the [CategoricalChunked].

-

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/chunked_array/object/struct.ChunkedArray.html b/polars/chunked_array/object/struct.ChunkedArray.html index cb3fa0deb3e5..165a4d972ba3 100644 --- a/polars/chunked_array/object/struct.ChunkedArray.html +++ b/polars/chunked_array/object/struct.ChunkedArray.html @@ -397,70 +397,70 @@
Safety
self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as Add<&ChunkedArray<BooleanType>>>::Output

Performs the + operation. Read more
source§

impl<T> Add<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as Add<&ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<Utf8Type>> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( +) -> <&ChunkedArray<T> as Add<&ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<Utf8Type>> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( self, rhs: &ChunkedArray<Utf8Type> -) -> <&ChunkedArray<Utf8Type> as Add<&ChunkedArray<Utf8Type>>>::Output

Performs the + operation. Read more
source§

impl Add<&str> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &str) -> <&ChunkedArray<Utf8Type> as Add<&str>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add( +) -> <&ChunkedArray<Utf8Type> as Add<&ChunkedArray<Utf8Type>>>::Output

Performs the + operation. Read more
source§

impl Add<&str> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &str) -> <&ChunkedArray<Utf8Type> as Add<&str>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<BinaryType> -) -> <ChunkedArray<BinaryType> as Add<ChunkedArray<BinaryType>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add( +) -> <ChunkedArray<BinaryType> as Add<ChunkedArray<BinaryType>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<BooleanType> ) -> <ChunkedArray<BooleanType> as Add<ChunkedArray<BooleanType>>>::Output

Performs the + operation. Read more
source§

impl<T> Add<ChunkedArray<T>> for ChunkedArray<T>where T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<T> -) -> <ChunkedArray<T> as Add<ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( +) -> <ChunkedArray<T> as Add<ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<Utf8Type> ) -> <ChunkedArray<Utf8Type> as Add<ChunkedArray<Utf8Type>>>::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <&ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <&ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl AggList for ChunkedArray<BinaryType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<BooleanType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<ListType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<T> AggList for ChunkedArray<ObjectType<T>>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl AggList for ChunkedArray<BinaryType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<BooleanType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<ListType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<T> AggList for ChunkedArray<ObjectType<T>>where T: PolarsObject,

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<T> AggList for ChunkedArray<T>where T: PolarsNumericType, - ChunkedArray<T>: IntoSeries,

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<Utf8Type>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ArrayNameSpace for ChunkedArray<FixedSizeListType>

source§

impl AsArray for ChunkedArray<FixedSizeListType>

source§

impl AsBinary for ChunkedArray<BinaryType>

source§

impl AsList for ChunkedArray<ListType>

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere + ChunkedArray<T>: IntoSeries,

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<Utf8Type>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ArrayNameSpace for ChunkedArray<FixedSizeListType>

source§

impl AsArray for ChunkedArray<FixedSizeListType>

source§

impl AsBinary for ChunkedArray<BinaryType>

source§

impl AsList for ChunkedArray<ListType>

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere T: 'static + PolarsDataType,

source§

fn as_mut(&mut self) -> &mut ChunkedArray<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T> AsRef<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere - T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> AsRefDataType for ChunkedArray<T>where + T: PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere + T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> AsRefDataType for ChunkedArray<T>where T: PolarsDataType,

source§

impl AsUtf8 for ChunkedArray<Utf8Type>

source§

impl AsUtf8 for ChunkedArray<Utf8Type>

source§

impl BinaryNameSpaceImpl for ChunkedArray<BinaryType>

source§

fn contains(&self, lit: &[u8]) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if binary contains given literal
source§

fn contains_literal( &self, lit: &[u8] -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if strings contain a given literal
source§

fn ends_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings ends with a substring
source§

fn starts_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings starts with a substring
source§

impl BitAnd<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if strings contain a given literal
source§

fn ends_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings ends with a substring
source§

fn starts_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings starts with a substring
source§

impl BitAnd<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as BitAnd<&ChunkedArray<BooleanType>>>::Output

Performs the & operation. Read more
source§

impl<T> BitAnd<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: BitAnd<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the & operator.
source§

fn bitand( + <T as PolarsNumericType>::Native: BitAnd<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as BitAnd<&ChunkedArray<T>>>::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( +) -> <&ChunkedArray<T> as BitAnd<&ChunkedArray<T>>>::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: ChunkedArray<BooleanType> -) -> <ChunkedArray<BooleanType> as BitAnd<ChunkedArray<BooleanType>>>::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( +) -> <ChunkedArray<BooleanType> as BitAnd<ChunkedArray<BooleanType>>>::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as BitOr<&ChunkedArray<BooleanType>>>::Output

Performs the | operation. Read more
source§

impl<T> BitOr<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: BitOr<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the | operator.
source§

fn bitor( + <T as PolarsNumericType>::Native: BitOr<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as BitOr<&ChunkedArray<T>>>::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( +) -> <&ChunkedArray<T> as BitOr<&ChunkedArray<T>>>::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: ChunkedArray<BooleanType> -) -> <ChunkedArray<BooleanType> as BitOr<ChunkedArray<BooleanType>>>::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( +) -> <ChunkedArray<BooleanType> as BitOr<ChunkedArray<BooleanType>>>::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as BitXor<&ChunkedArray<BooleanType>>>::Output

Performs the ^ operation. Read more
source§

impl<T> BitXor<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: BitXor<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the ^ operator.
source§

fn bitxor( + <T as PolarsNumericType>::Native: BitXor<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as BitXor<&ChunkedArray<T>>>::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( +) -> <&ChunkedArray<T> as BitXor<&ChunkedArray<T>>>::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: ChunkedArray<BooleanType> ) -> <ChunkedArray<BooleanType> as BitXor<ChunkedArray<BooleanType>>>::Output

Performs the ^ operation. Read more
source§

impl<T> ChunkAgg<<T as PolarsNumericType>::Native> for ChunkedArray<T>where @@ -469,47 +469,47 @@
Safety
Returns None if not implemented for T. If the array is empty, 0 is returned

source§

fn min(&self) -> Option<<T as PolarsNumericType>::Native>

source§

fn max(&self) -> Option<<T as PolarsNumericType>::Native>

Returns the maximum value in the array, according to the natural order. Returns None if the array is empty or only contains null values.
source§

fn mean(&self) -> Option<f64>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

impl ChunkAggSeries for ChunkedArray<BinaryType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<BooleanType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<ListType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl<T> ChunkAggSeries for ChunkedArray<ObjectType<T>>where +Returns None if the array is empty or only contains null values.

source§

impl ChunkAggSeries for ChunkedArray<BinaryType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<BooleanType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<ListType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl<T> ChunkAggSeries for ChunkedArray<ObjectType<T>>where T: PolarsObject,

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl<T> ChunkAggSeries for ChunkedArray<T>where T: PolarsNumericType, <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>, - ChunkedArray<T>: IntoSeries,

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<Utf8Type>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for ChunkedArray<BinaryType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<BooleanType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. + ChunkedArray<T>: IntoSeries,
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<Utf8Type>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for ChunkedArray<BinaryType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<BooleanType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<ListType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<T>where - T: PolarsNumericType,

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<Utf8Type>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<'a> ChunkApply<'a, &'a [u8], Cow<'a, [u8]>> for ChunkedArray<BinaryType>

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where +If you need to use this slightly performant, cast Categorical to UInt32 Read more

source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<ListType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<T>where + T: PolarsNumericType,

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<Utf8Type>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<'a> ChunkApply<'a, &'a [u8], Cow<'a, [u8]>> for ChunkedArray<BinaryType>

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(&'a [u8]) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(Option<&'a [u8]>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where F: Fn(&'a [u8]) -> Cow<'a, [u8]> + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<BinaryType>, PolarsError>where - F: Fn(&'a [u8]) -> Result<Cow<'a, [u8]>, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where - F: Fn(Option<&'a [u8]>) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where - F: Fn((usize, &'a [u8])) -> Cow<'a, [u8]> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where - F: Fn((usize, Option<&'a [u8]>)) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where +than the closure application. Often it is. Read more

source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<BinaryType>, PolarsError>where + F: Fn(&'a [u8]) -> Result<Cow<'a, [u8]>, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + F: Fn(Option<&'a [u8]>) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + F: Fn((usize, &'a [u8])) -> Cow<'a, [u8]> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + F: Fn((usize, Option<&'a [u8]>)) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where F: Fn(Option<&'a [u8]>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a, T> ChunkApply<'a, &'a T, T> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn apply_cast_numeric<F, S>(&'a self, _f: F) -> ChunkedArray<S>where + T: PolarsObject,

source§

fn apply_cast_numeric<F, S>(&'a self, _f: F) -> ChunkedArray<S>where F: Fn(&'a T) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, _f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, _f: F) -> ChunkedArray<S>where F: Fn(Option<&'a T>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where F: Fn(&'a T) -> T + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>( +than the closure application. Often it is. Read more

source§

fn try_apply<F>( &'a self, _f: F ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>where - F: Fn(&'a T) -> Result<T, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where - F: Fn(Option<&'a T>) -> Option<T> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where - F: Fn((usize, &'a T)) -> T + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where - F: Fn((usize, Option<&'a T>)) -> Option<T> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where + F: Fn(&'a T) -> Result<T, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where + F: Fn(Option<&'a T>) -> Option<T> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where + F: Fn((usize, &'a T)) -> T + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where + F: Fn((usize, Option<&'a T>)) -> Option<T> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where F: Fn(Option<&'a T>, &V) -> V,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, &'a str, Cow<'a, str>> for ChunkedArray<Utf8Type>

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(&'a str) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive @@ -523,48 +523,48 @@
Safety
F: Fn((usize, &'a str)) -> Cow<'a, str> + Copy,
Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<Utf8Type>where F: Fn((usize, Option<&'a str>)) -> Option<Cow<'a, str>> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where F: Fn(Option<&'a str>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a, T> ChunkApply<'a, <T as PolarsNumericType>::Native, <T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where + T: PolarsNumericType,

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(<T as PolarsNumericType>::Native) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Option<<T as PolarsNumericType>::Native>) -> <S as PolarsNumericType>::Native, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<T>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<T>where F: Fn(<T as PolarsNumericType>::Native) -> <T as PolarsNumericType>::Native + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<T>, PolarsError>where - F: Fn(<T as PolarsNumericType>::Native) -> Result<<T as PolarsNumericType>::Native, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where - F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<T>where - F: Fn((usize, <T as PolarsNumericType>::Native)) -> <T as PolarsNumericType>::Native + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where - F: Fn((usize, Option<<T as PolarsNumericType>::Native>)) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where - F: Fn(Option<<T as PolarsNumericType>::Native>, &V) -> V,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, Series, Series> for ChunkedArray<ListType>

source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ListType>where +than the closure application. Often it is. Read more

source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<T>, PolarsError>where + F: Fn(<T as PolarsNumericType>::Native) -> Result<<T as PolarsNumericType>::Native, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where + F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<T>where + F: Fn((usize, <T as PolarsNumericType>::Native)) -> <T as PolarsNumericType>::Native + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where + F: Fn((usize, Option<<T as PolarsNumericType>::Native>)) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where + F: Fn(Option<<T as PolarsNumericType>::Native>, &V) -> V,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, Series, Series> for ChunkedArray<ListType>

source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn(Series) -> Series + Copy,

Apply a closure F elementwise.

-
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<ListType>where +

source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn((usize, Series)) -> Series + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.

-
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where +

source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn((usize, Option<Series>)) -> Option<Series> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.

-
source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where +

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Series) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Option<Series>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<ListType>, PolarsError>where - F: Fn(Series) -> Result<Series, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where - F: Fn(Option<Series>) -> Option<Series> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where - F: Fn(Option<Series>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<ListType>, PolarsError>where + F: Fn(Series) -> Result<Series, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where + F: Fn(Option<Series>) -> Option<Series> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where + F: Fn(Option<Series>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(bool) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Option<bool>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&self, f: F) -> ChunkedArray<BooleanType>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&self, f: F) -> ChunkedArray<BooleanType>where F: Fn(bool) -> bool + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>(&self, f: F) -> Result<ChunkedArray<BooleanType>, PolarsError>where - F: Fn(bool) -> Result<bool, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where - F: Fn(Option<bool>) -> Option<bool> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where - F: Fn((usize, bool)) -> bool + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where - F: Fn((usize, Option<bool>)) -> Option<bool> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where - F: Fn(Option<bool>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl ChunkApplyKernel<BinaryArray<i64>> for ChunkedArray<BinaryType>

source§

fn apply_kernel( +than the closure application. Often it is. Read more

source§

fn try_apply<F>(&self, f: F) -> Result<ChunkedArray<BooleanType>, PolarsError>where + F: Fn(bool) -> Result<bool, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where + F: Fn(Option<bool>) -> Option<bool> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where + F: Fn((usize, bool)) -> bool + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where + F: Fn((usize, Option<bool>)) -> Option<bool> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where + F: Fn(Option<bool>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl ChunkApplyKernel<BinaryArray<i64>> for ChunkedArray<BinaryType>

source§

fn apply_kernel( &self, f: &dyn Fn(&BinaryArray<i64>) -> Box<dyn Array, Global> -) -> ChunkedArray<BinaryType>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( +) -> ChunkedArray<BinaryType>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( &self, f: &dyn Fn(&BinaryArray<i64>) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where @@ -576,59 +576,59 @@
Safety
f: &dyn Fn(&BooleanArray) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl<T> ChunkApplyKernel<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn apply_kernel( + T: PolarsNumericType,

source§

fn apply_kernel( &self, f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array, Global> -) -> ChunkedArray<T>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( +) -> ChunkedArray<T>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( &self, f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where - S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkApplyKernel<Utf8Array<i64>> for ChunkedArray<Utf8Type>

source§

fn apply_kernel( + S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkApplyKernel<Utf8Array<i64>> for ChunkedArray<Utf8Type>

source§

fn apply_kernel( &self, f: &dyn Fn(&Utf8Array<i64>) -> Box<dyn Array, Global> -) -> ChunkedArray<Utf8Type>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( +) -> ChunkedArray<Utf8Type>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( &self, f: &dyn Fn(&Utf8Array<i64>) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where - S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for ChunkedArray<BinaryType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( + S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for ChunkedArray<BinaryType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType -) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<BooleanType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<BooleanType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType ) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.

We cannot cast anything to or from List/LargeList So this implementation casts the inner type

-
source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType ) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<ListType>

We cannot cast anything to or from List/LargeList So this implementation casts the inner type

-
source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType ) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl<T> ChunkCast for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( + T: PolarsNumericType,

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType -) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<Utf8Type>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<Utf8Type>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType -) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&[u8]> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( +) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&[u8]> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<BinaryType> -) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( +) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<BinaryType> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<BooleanType> -) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal( +) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal( &self, rhs: &ChunkedArray<BooleanType> -) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( +) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<BooleanType> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<FixedSizeListType>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = ChunkedArray<BooleanType>

source§

fn equal( +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<FixedSizeListType>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = ChunkedArray<BooleanType>

source§

fn equal( &self, rhs: &ChunkedArray<FixedSizeListType> ) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( @@ -652,28 +652,28 @@

Safety
) -> ChunkedArray<BooleanType>
Less than comparison.
source§

fn lt_eq( &self, _rhs: &ChunkedArray<FixedSizeListType> -) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ChunkedArray<ListType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( +) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ChunkedArray<ListType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<ListType> -) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( +) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<ListType> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCompare<&ChunkedArray<T>> for ChunkedArray<T>where +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCompare<&ChunkedArray<T>> for ChunkedArray<T>where T: PolarsNumericType,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<Utf8Type>> for ChunkedArray<Utf8Type>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<Utf8Type> ) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<Utf8Type> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&str> for ChunkedArray<Utf8Type>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T, Rhs> ChunkCompare<Rhs> for ChunkedArray<T>where +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&str> for ChunkedArray<Utf8Type>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T, Rhs> ChunkCompare<Rhs> for ChunkedArray<T>where T: PolarsNumericType, - Rhs: ToPrimitive,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCumAgg<T> for ChunkedArray<T>where + Rhs: ToPrimitive,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCumAgg<T> for ChunkedArray<T>where T: PolarsNumericType, - ChunkedArray<T>: FromIterator<Option<<T as PolarsNumericType>::Native>>,

source§

fn cummax(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative max computed at every element
source§

fn cummin(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative min computed at every element
source§

fn cumsum(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative sum computed at every element
source§

fn cumprod(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative product computed at every element
source§

impl ChunkExpandAtIndex<BinaryType> for ChunkedArray<BinaryType>

source§

fn new_from_index( + ChunkedArray<T>: FromIterator<Option<<T as PolarsNumericType>::Native>>,

source§

fn cummax(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative max computed at every element
source§

fn cummin(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative min computed at every element
source§

fn cumsum(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative sum computed at every element
source§

fn cumprod(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative product computed at every element
source§

impl ChunkExpandAtIndex<BinaryType> for ChunkedArray<BinaryType>

source§

fn new_from_index( &self, index: usize, length: usize -) -> ChunkedArray<BinaryType>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<BooleanType> for ChunkedArray<BooleanType>

source§

fn new_from_index( +) -> ChunkedArray<BinaryType>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<BooleanType> for ChunkedArray<BooleanType>

source§

fn new_from_index( &self, index: usize, length: usize @@ -681,90 +681,90 @@

Safety
&self, index: usize, length: usize -) -> ChunkedArray<FixedSizeListType>
Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>

Create a new ChunkedArray filled with values at that index.
source§

impl<T> ChunkExpandAtIndex<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn new_from_index( +) -> ChunkedArray<FixedSizeListType>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>

Create a new ChunkedArray filled with values at that index.
source§

impl<T> ChunkExpandAtIndex<ObjectType<T>> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

source§

fn new_from_index( &self, index: usize, length: usize ) -> ChunkedArray<ObjectType<T>>

Create a new ChunkedArray filled with values at that index.
source§

impl<T> ChunkExpandAtIndex<T> for ChunkedArray<T>where T: PolarsDataType + PolarsNumericType, - ChunkedArray<T>: ChunkFull<<T as PolarsNumericType>::Native> + TakeRandom<Item = <T as PolarsNumericType>::Native>,

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<T>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn explode(&self) -> Result<Series, PolarsError>

source§

fn explode_and_offsets( + ChunkedArray<T>: ChunkFull<<T as PolarsNumericType>::Native> + TakeRandom<Item = <T as PolarsNumericType>::Native>,

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<T>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkExplode for ChunkedArray<ListType>

source§

impl ChunkExplode for ChunkedArray<Utf8Type>

source§

impl ChunkExplode for ChunkedArray<Utf8Type>

source§

impl ChunkFillNullValue<&[u8]> for ChunkedArray<BinaryType>

source§

impl ChunkFillNullValue<&[u8]> for ChunkedArray<BinaryType>

source§

fn fill_null_with_values( &self, value: &[u8] ) -> Result<ChunkedArray<BinaryType>, PolarsError>

Replace None values with a give value T.
source§

impl<T> ChunkFillNullValue<<T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn fill_null_with_values( + T: PolarsNumericType,

source§

fn fill_null_with_values( &self, value: <T as PolarsNumericType>::Native -) -> Result<ChunkedArray<T>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFillNullValue<bool> for ChunkedArray<BooleanType>

source§

fn fill_null_with_values( +) -> Result<ChunkedArray<T>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFillNullValue<bool> for ChunkedArray<BooleanType>

source§

fn fill_null_with_values( &self, value: bool -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFilter<BinaryType> for ChunkedArray<BinaryType>

source§

fn filter( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFilter<BinaryType> for ChunkedArray<BinaryType>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<BinaryType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<BooleanType> for ChunkedArray<BooleanType>

source§

fn filter( +) -> Result<ChunkedArray<BinaryType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<BooleanType> for ChunkedArray<BooleanType>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn filter( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<ListType> for ChunkedArray<ListType>

source§

fn filter( +) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<ListType> for ChunkedArray<ListType>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<ListType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<T> ChunkFilter<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn filter( + T: PolarsObject,

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>where ChunkedArray<ObjectType<T>>: Sized,

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<T> ChunkFilter<T> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn filter( + T: PolarsNumericType,

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<T>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<'a> ChunkFull<&'a [u8]> for ChunkedArray<BinaryType>

source§

fn full(name: &str, value: &'a [u8], length: usize) -> ChunkedArray<BinaryType>

Create a ChunkedArray with a single value.
source§

impl<'a> ChunkFull<&'a str> for ChunkedArray<Utf8Type>

source§

fn full(name: &str, value: &'a str, length: usize) -> ChunkedArray<Utf8Type>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn full( +) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<'a> ChunkFull<&'a [u8]> for ChunkedArray<BinaryType>

source§

fn full(name: &str, value: &'a [u8], length: usize) -> ChunkedArray<BinaryType>

Create a ChunkedArray with a single value.
source§

impl<'a> ChunkFull<&'a str> for ChunkedArray<Utf8Type>

source§

fn full(name: &str, value: &'a str, length: usize) -> ChunkedArray<Utf8Type>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn full( name: &str, value: &Series, length: usize -) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl<T> ChunkFull<<T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn full( +) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl<T> ChunkFull<<T as PolarsNumericType>::Native> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn full( name: &str, value: <T as PolarsNumericType>::Native, length: usize ) -> ChunkedArray<T>

Create a ChunkedArray with a single value.
source§

impl<T> ChunkFull<T> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn full(name: &str, value: T, length: usize) -> ChunkedArray<ObjectType<T>>where - ChunkedArray<ObjectType<T>>: Sized,

Create a ChunkedArray with a single value.
source§

impl ChunkFull<bool> for ChunkedArray<BooleanType>

source§

fn full(name: &str, value: bool, length: usize) -> ChunkedArray<BooleanType>

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for ChunkedArray<BinaryType>

source§

impl ChunkFullNull for ChunkedArray<BooleanType>

source§

impl ChunkFullNull for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkFullNull for ChunkedArray<ListType>

source§

impl<T> ChunkFullNull for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

impl<T> ChunkFullNull for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn full_null(name: &str, length: usize) -> ChunkedArray<T>

source§

impl ChunkFullNull for ChunkedArray<Utf8Type>

source§

impl<T> ChunkPeaks for ChunkedArray<T>where + T: PolarsObject,

source§

fn full(name: &str, value: T, length: usize) -> ChunkedArray<ObjectType<T>>where + ChunkedArray<ObjectType<T>>: Sized,

Create a ChunkedArray with a single value.
source§

impl ChunkFull<bool> for ChunkedArray<BooleanType>

source§

fn full(name: &str, value: bool, length: usize) -> ChunkedArray<BooleanType>

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for ChunkedArray<BinaryType>

source§

impl ChunkFullNull for ChunkedArray<BooleanType>

source§

impl ChunkFullNull for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkFullNull for ChunkedArray<ListType>

source§

impl<T> ChunkFullNull for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

source§

impl<T> ChunkFullNull for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn full_null(name: &str, length: usize) -> ChunkedArray<T>

source§

impl ChunkFullNull for ChunkedArray<Utf8Type>

source§

impl<T> ChunkPeaks for ChunkedArray<T>where T: PolarsNumericType,

source§

fn peak_max(&self) -> ChunkedArray<BooleanType>

Get a boolean mask of the local maximum peaks.

source§

fn peak_min(&self) -> ChunkedArray<BooleanType>

Get a boolean mask of the local minimum peaks.

-
source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +

source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. Returns None if the array is empty or only contains null values.
source§

impl<T> ChunkQuantile<Series> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( + T: PolarsObject,

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<String> for ChunkedArray<Utf8Type>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<String> for ChunkedArray<Utf8Type>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions @@ -775,29 +775,29 @@

Safety
_quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>
Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<f32> for ChunkedArray<Float32Type>

source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<f32> for ChunkedArray<Float32Type>

source§

fn quantile( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Option<f32>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f32>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<f64> for ChunkedArray<Float64Type>

source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

fn median(&self) -> Option<f32>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<f64> for ChunkedArray<Float64Type>

source§

fn quantile( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Option<f64>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. Returns None if the array is empty or only contains null values.
source§

impl<T> ChunkQuantile<f64> for ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: Ord,

source§

fn quantile( + <T as PolarsNumericType>::Native: Ord,

source§

fn quantile( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Option<f64>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

impl ChunkReverse for ChunkedArray<BinaryType>

source§

fn reverse(&self) -> ChunkedArray<BinaryType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<BooleanType>

source§

fn reverse(&self) -> ChunkedArray<BooleanType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn reverse(&self) -> ChunkedArray<FixedSizeListType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<ListType>

source§

fn reverse(&self) -> ChunkedArray<ListType>

Return a reversed version of this array.
source§

impl<T> ChunkReverse for ChunkedArray<ObjectType<T>>where +Returns None if the array is empty or only contains null values.

source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

impl ChunkReverse for ChunkedArray<BinaryType>

source§

fn reverse(&self) -> ChunkedArray<BinaryType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<BooleanType>

source§

fn reverse(&self) -> ChunkedArray<BooleanType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn reverse(&self) -> ChunkedArray<FixedSizeListType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<ListType>

source§

fn reverse(&self) -> ChunkedArray<ListType>

Return a reversed version of this array.
source§

impl<T> ChunkReverse for ChunkedArray<ObjectType<T>>where T: PolarsObject,

source§

fn reverse(&self) -> ChunkedArray<ObjectType<T>>

Return a reversed version of this array.
source§

impl<T> ChunkReverse for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn reverse(&self) -> ChunkedArray<T>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<Utf8Type>

source§

fn reverse(&self) -> ChunkedArray<Utf8Type>

Return a reversed version of this array.
source§

impl<T> ChunkRollApply for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn reverse(&self) -> ChunkedArray<T>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<Utf8Type>

source§

fn reverse(&self) -> ChunkedArray<Utf8Type>

Return a reversed version of this array.
source§

impl<T> ChunkRollApply for ChunkedArray<T>where T: PolarsNumericType, ChunkedArray<T>: IntoSeries,

source§

fn rolling_apply( &self, @@ -822,79 +822,79 @@

Safety
mask: &ChunkedArray<BooleanType>, value: Option<&'a [u8]> ) -> Result<ChunkedArray<BinaryType>, PolarsError>where - ChunkedArray<BinaryType>: Sized,
Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, &'a str, String> for ChunkedArray<Utf8Type>

source§

fn set_at_idx<I>( + ChunkedArray<BinaryType>: Sized,

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, &'a str, String> for ChunkedArray<Utf8Type>

source§

fn set_at_idx<I>( &'a self, idx: I, opt_value: Option<&'a str> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where I: IntoIterator<Item = u32>, - ChunkedArray<Utf8Type>: Sized,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( + ChunkedArray<Utf8Type>: Sized,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( &'a self, idx: I, f: F ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where I: IntoIterator<Item = u32>, ChunkedArray<Utf8Type>: Sized, - F: Fn(Option<&'a str>) -> Option<String>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( + F: Fn(Option<&'a str>) -> Option<String>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<&'a str> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where ChunkedArray<Utf8Type>: Sized,

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a, T> ChunkSet<'a, <T as PolarsNumericType>::Native, <T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn set_at_idx<I>( + T: PolarsNumericType,

source§

fn set_at_idx<I>( &'a self, idx: I, value: Option<<T as PolarsNumericType>::Native> ) -> Result<ChunkedArray<T>, PolarsError>where - I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( + I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( &'a self, idx: I, f: F ) -> Result<ChunkedArray<T>, PolarsError>where I: IntoIterator<Item = u32>, - F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( + F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<<T as PolarsNumericType>::Native> -) -> Result<ChunkedArray<T>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn set_at_idx<I>( +) -> Result<ChunkedArray<T>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn set_at_idx<I>( &'a self, idx: I, value: Option<bool> ) -> Result<ChunkedArray<BooleanType>, PolarsError>where - I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( + I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( &'a self, idx: I, f: F ) -> Result<ChunkedArray<BooleanType>, PolarsError>where I: IntoIterator<Item = u32>, - F: Fn(Option<bool>) -> Option<bool>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( + F: Fn(Option<bool>) -> Option<bool>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<bool> -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl ChunkShift<BinaryType> for ChunkedArray<BinaryType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BinaryType>

source§

impl ChunkShift<BooleanType> for ChunkedArray<BooleanType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BooleanType>

source§

impl ChunkShift<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkShift<ListType> for ChunkedArray<ListType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<ListType>

source§

impl<T> ChunkShift<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn shift(&self, periods: i64) -> ChunkedArray<ObjectType<T>>

source§

impl<T> ChunkShift<T> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn shift(&self, periods: i64) -> ChunkedArray<T>

source§

impl ChunkShift<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn shift(&self, periods: i64) -> ChunkedArray<Utf8Type>

source§

impl ChunkShiftFill<BinaryType, Option<&[u8]>> for ChunkedArray<BinaryType>

source§

fn shift_and_fill( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl ChunkShift<BinaryType> for ChunkedArray<BinaryType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BinaryType>

source§

impl ChunkShift<BooleanType> for ChunkedArray<BooleanType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BooleanType>

source§

impl ChunkShift<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkShift<ListType> for ChunkedArray<ListType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<ListType>

source§

impl<T> ChunkShift<ObjectType<T>> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

source§

fn shift(&self, periods: i64) -> ChunkedArray<ObjectType<T>>

source§

impl<T> ChunkShift<T> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn shift(&self, periods: i64) -> ChunkedArray<T>

source§

impl ChunkShift<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn shift(&self, periods: i64) -> ChunkedArray<Utf8Type>

source§

impl ChunkShiftFill<BinaryType, Option<&[u8]>> for ChunkedArray<BinaryType>

source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<&[u8]> ) -> ChunkedArray<BinaryType>

Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkShiftFill<BooleanType, Option<bool>> for ChunkedArray<BooleanType>

source§

fn shift_and_fill( +with fill_value.

source§

impl ChunkShiftFill<BooleanType, Option<bool>> for ChunkedArray<BooleanType>

source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<bool> ) -> ChunkedArray<BooleanType>

Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn shift_and_fill( +with fill_value.

source§

impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<&Series> ) -> ChunkedArray<FixedSizeListType>

Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkShiftFill<ListType, Option<&Series>> for ChunkedArray<ListType>

source§

fn shift_and_fill( +with fill_value.

source§

impl ChunkShiftFill<ListType, Option<&Series>> for ChunkedArray<ListType>

source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<&Series> ) -> ChunkedArray<ListType>

Shift the values by a given period and fill the parts that will be empty due to this operation with fill_value.
source§

impl<T> ChunkShiftFill<ObjectType<T>, Option<ObjectType<T>>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn shift_and_fill( + T: PolarsObject,

source§

fn shift_and_fill( &self, _periods: i64, _fill_value: Option<ObjectType<T>> @@ -910,52 +910,52 @@

Safety
periods: i64, fill_value: Option<&str> ) -> ChunkedArray<Utf8Type>
Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkSort<BinaryType> for ChunkedArray<BinaryType>

source§

fn arg_sort_multiple( +with fill_value.

source§

impl ChunkSort<BinaryType> for ChunkedArray<BinaryType>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. On the implementation of ChunkedArray<T> for numeric types, we assume that all numeric Series are of the same type.

In this case we assume that all numeric Series are f64 types. The caller needs to uphold this contract. If not, it will panic.

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BinaryType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BinaryType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<BooleanType> for ChunkedArray<BooleanType>

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BooleanType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BooleanType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

fn arg_sort_multiple( +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BinaryType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BinaryType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<BooleanType> for ChunkedArray<BooleanType>

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BooleanType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BooleanType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Retrieve the indexes need to sort this and the other arrays.
source§

impl ChunkSort<Float32Type> for ChunkedArray<Float32Type>

source§

fn arg_sort_multiple( +) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Retrieve the indexes need to sort this and the other arrays.
source§

impl ChunkSort<Float32Type> for ChunkedArray<Float32Type>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions ) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float32Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float32Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Float64Type> for ChunkedArray<Float64Type>

source§

fn arg_sort_multiple( +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float32Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float32Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Float64Type> for ChunkedArray<Float64Type>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float64Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float64Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl<T> ChunkSort<T> for ChunkedArray<T>where +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float64Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float64Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl<T> ChunkSort<T> for ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: Default + Ord,

source§

fn arg_sort_multiple( + <T as PolarsNumericType>::Native: Default + Ord,

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<T>

source§

fn sort(&self, descending: bool) -> ChunkedArray<T>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<T>

source§

fn sort(&self, descending: bool) -> ChunkedArray<T>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. On the implementation of ChunkedArray<T> for numeric types, we assume that all numeric Series are of the same type.

In this case we assume that all numeric Series are f64 types. The caller needs to uphold this contract. If not, it will panic.

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Utf8Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Utf8Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkTake for ChunkedArray<BinaryType>

source§

unsafe fn take_unchecked<I, INulls>( +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Utf8Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Utf8Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkTake for ChunkedArray<BinaryType>

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<BinaryType>where ChunkedArray<BinaryType>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<BinaryType>, PolarsError>where @@ -963,13 +963,13 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkTake for ChunkedArray<BooleanType>

source§

unsafe fn take_unchecked<I, INulls>( +by reference.

source§

impl ChunkTake for ChunkedArray<BooleanType>

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<BooleanType>where ChunkedArray<BooleanType>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<BooleanType>, PolarsError>where @@ -977,13 +977,13 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkTake for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn take_unchecked<I, INulls>( +by reference.

source§

impl ChunkTake for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<FixedSizeListType>where ChunkedArray<FixedSizeListType>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>where @@ -1006,13 +1006,13 @@
Safety
INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory by reference.
source§

impl<T> ChunkTake for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

unsafe fn take_unchecked<I, INulls>( + T: PolarsObject,

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<ObjectType<T>>where ChunkedArray<ObjectType<T>>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>where @@ -1021,13 +1021,13 @@
Safety
INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory by reference.
source§

impl<T> ChunkTake for ChunkedArray<T>where - T: PolarsNumericType,

source§

unsafe fn take_unchecked<I, INulls>( + T: PolarsNumericType,

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<T>where ChunkedArray<T>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<T>, PolarsError>where @@ -1035,13 +1035,13 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkTake for ChunkedArray<Utf8Type>

source§

unsafe fn take_unchecked<I, INulls>( +by reference.

source§

impl ChunkTake for ChunkedArray<Utf8Type>

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<Utf8Type>where ChunkedArray<Utf8Type>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where @@ -1049,171 +1049,171 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkUnique<BinaryType> for ChunkedArray<BinaryType>

source§

fn unique(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<BooleanType> for ChunkedArray<BooleanType>

source§

fn unique(&self) -> Result<ChunkedArray<BooleanType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Float32Type> for ChunkedArray<Float32Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl ChunkUnique<Float64Type> for ChunkedArray<Float64Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl<T> ChunkUnique<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn unique(&self) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl<T> ChunkUnique<T> for ChunkedArray<T>where +by reference.

source§

impl ChunkUnique<BinaryType> for ChunkedArray<BinaryType>

source§

fn unique(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<BooleanType> for ChunkedArray<BooleanType>

source§

fn unique(&self) -> Result<ChunkedArray<BooleanType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Float32Type> for ChunkedArray<Float32Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl ChunkUnique<Float64Type> for ChunkedArray<Float64Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl<T> ChunkUnique<ObjectType<T>> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

source§

fn unique(&self) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl<T> ChunkUnique<T> for ChunkedArray<T>where T: PolarsIntegerType, <T as PolarsNumericType>::Native: Hash + Eq + Ord, - ChunkedArray<T>: IntoSeries,

source§

fn unique(&self) -> Result<ChunkedArray<T>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn unique(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<String> for ChunkedArray<Utf8Type>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<bool> for ChunkedArray<BooleanType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f32> for ChunkedArray<Float32Type>

source§

fn var(&self, ddof: u8) -> Option<f32>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f32>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f64> for ChunkedArray<Float64Type>

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<f64> for ChunkedArray<T>where + ChunkedArray<T>: IntoSeries,

source§

fn unique(&self) -> Result<ChunkedArray<T>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn unique(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<String> for ChunkedArray<Utf8Type>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<bool> for ChunkedArray<BooleanType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f32> for ChunkedArray<Float32Type>

source§

fn var(&self, ddof: u8) -> Option<f32>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f32>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f64> for ChunkedArray<Float64Type>

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<f64> for ChunkedArray<T>where T: PolarsIntegerType, - <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkZip<BinaryType> for ChunkedArray<BinaryType>

source§

fn zip_with( + <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkZip<BinaryType> for ChunkedArray<BinaryType>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<BinaryType> ) -> Result<ChunkedArray<BinaryType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<BooleanType> for ChunkedArray<BooleanType>

source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<BooleanType> for ChunkedArray<BooleanType>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<FixedSizeListType> ) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<ListType> for ChunkedArray<ListType>

source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<ListType> for ChunkedArray<ListType>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<ListType> ) -> Result<ChunkedArray<ListType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values from other where the mask evaluates false
source§

impl<T> ChunkZip<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn zip_with( + T: PolarsObject,

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<ObjectType<T>> ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values from other where the mask evaluates false
source§

impl<T> ChunkZip<T> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn zip_with( + T: PolarsNumericType,

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<T> ) -> Result<ChunkedArray<T>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<Utf8Type> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl<'a> ChunkedSet<&'a str> for &'a ChunkedArray<Utf8Type>

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where +from other where the mask evaluates false

source§

impl<'a> ChunkedSet<&'a str> for &'a ChunkedArray<Utf8Type>

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where V: IntoIterator<Item = Option<&'a str>>,

source§

impl<T> ChunkedSet<<T as PolarsNumericType>::Native> for ChunkedArray<T>where T: PolarsOpsNumericType, - ChunkedArray<T>: IntoSeries,

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where + ChunkedArray<T>: IntoSeries,

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where V: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,

source§

impl ChunkedSet<bool> for &ChunkedArray<BooleanType>

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where V: IntoIterator<Item = Option<bool>>,

source§

impl<T> Clone for ChunkedArray<T>where - T: PolarsDataType,

source§

fn clone(&self) -> ChunkedArray<T>

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 ChunkedArray<BinaryType>

source§

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

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

impl Debug for ChunkedArray<BooleanType>

source§

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

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

impl Debug for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

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

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

impl Debug for ChunkedArray<ListType>

source§

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

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

impl<T> Debug for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

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

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

impl<T> Debug for ChunkedArray<T>where - T: PolarsNumericType,

source§

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

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

impl Debug for ChunkedArray<Utf8Type>

source§

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

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

impl<T> Default for ChunkedArray<T>where + T: PolarsDataType,

source§

fn clone(&self) -> ChunkedArray<T>

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 ChunkedArray<BinaryType>

source§

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

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

impl Debug for ChunkedArray<BooleanType>

source§

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

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

impl Debug for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

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

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

impl Debug for ChunkedArray<ListType>

source§

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

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

impl<T> Debug for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

source§

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

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

impl<T> Debug for ChunkedArray<T>where + T: PolarsNumericType,

source§

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

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

impl Debug for ChunkedArray<Utf8Type>

source§

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

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

impl<T> Default for ChunkedArray<T>where T: PolarsDataType,

source§

fn default() -> ChunkedArray<T>

Returns the “default value” for a type. Read more
source§

impl<T> Div<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( self, rhs: &ChunkedArray<T> ) -> <&ChunkedArray<T> as Div<&ChunkedArray<T>>>::Output

Performs the / operation. Read more
source§

impl<T> Div<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( self, rhs: ChunkedArray<T> ) -> <ChunkedArray<T> as Div<ChunkedArray<T>>>::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for &ChunkedArray<T>where T: PolarsNumericType, N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> <&ChunkedArray<T> as Div<N>>::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> <ChunkedArray<T> as Div<N>>::Output

Performs the / operation. Read more
source§

impl<T> Drop for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> <ChunkedArray<T> as Div<N>>::Output

Performs the / operation. Read more
source§

impl<T> Drop for ChunkedArray<T>where T: PolarsDataType,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T> From<&[<T as PolarsNumericType>::Native]> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from(slice: &[<T as PolarsNumericType>::Native]) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: &'a ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<<T as PolarsNumericType>::Native>, Global>where - T: PolarsNumericType,

source§

fn from( + T: PolarsNumericType,

source§

fn from(slice: &[<T as PolarsNumericType>::Native]) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: &'a ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<<T as PolarsNumericType>::Native>, Global>where + T: PolarsNumericType,

source§

fn from( ca: &'a ChunkedArray<T> ) -> Vec<Option<<T as PolarsNumericType>::Native>, Global>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

-
source§

fn from( ca: &'a ChunkedArray<UInt32Type> ) -> TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<Utf8Type>> for Vec<Option<&'a str>, Global>

From trait

-
source§

fn from(ca: &'a ChunkedArray<Utf8Type>) -> Vec<Option<&'a str>, Global>

Converts to this type from the input type.
source§

impl From<(&str, BinaryArray<i64>)> for ChunkedArray<BinaryType>

source§

fn from(tpl: (&str, BinaryArray<i64>)) -> ChunkedArray<BinaryType>

Converts to this type from the input type.
source§

impl From<(&str, BooleanArray)> for ChunkedArray<BooleanType>

source§

fn from(tpl: (&str, BooleanArray)) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl<T> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from(ca: &'a ChunkedArray<Utf8Type>) -> Vec<Option<&'a str>, Global>

Converts to this type from the input type.
source§

impl From<(&str, BinaryArray<i64>)> for ChunkedArray<BinaryType>

source§

fn from(tpl: (&str, BinaryArray<i64>)) -> ChunkedArray<BinaryType>

Converts to this type from the input type.
source§

impl From<(&str, BooleanArray)> for ChunkedArray<BooleanType>

source§

fn from(tpl: (&str, BooleanArray)) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl<T> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from( tpl: (&str, PrimitiveArray<<T as PolarsNumericType>::Native>) -) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl From<(&str, Utf8Array<i64>)> for ChunkedArray<Utf8Type>

source§

fn from(tpl: (&str, Utf8Array<i64>)) -> ChunkedArray<Utf8Type>

Converts to this type from the input type.
source§

impl From<BooleanArray> for ChunkedArray<BooleanType>

source§

fn from(arr: BooleanArray) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl<T> From<ChunkedArray<T>> for Serieswhere +) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl From<(&str, Utf8Array<i64>)> for ChunkedArray<Utf8Type>

source§

fn from(tpl: (&str, Utf8Array<i64>)) -> ChunkedArray<Utf8Type>

Converts to this type from the input type.
source§

impl From<BooleanArray> for ChunkedArray<BooleanType>

source§

fn from(arr: BooleanArray) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl<T> From<ChunkedArray<T>> for Serieswhere T: PolarsDataType, - ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>, Global>

source§

fn from(ca: ChunkedArray<Utf8Type>) -> Vec<Option<String>, Global>

Converts to this type from the input type.
source§

impl<T> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from(a: PrimitiveArray<<T as PolarsNumericType>::Native>) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where + ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>, Global>

source§

fn from(ca: ChunkedArray<Utf8Type>) -> Vec<Option<String>, Global>

Converts to this type from the input type.
source§

impl<T> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from(a: PrimitiveArray<<T as PolarsNumericType>::Native>) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where I: IntoIterator<Item = (Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)>,

Creates a value from an iterator. Read more
source§

impl<T> FromIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where T: PolarsNumericType,

FromIterator trait

-
source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where - I: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Box<dyn Array, Global>>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where +

source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where + I: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Box<dyn Array, Global>>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where I: IntoIterator<Item = Option<Box<dyn Array, Global>>>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Option<Ptr>> for ChunkedArray<BinaryType>where Ptr: AsRef<[u8]>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BinaryType>where I: IntoIterator<Item = Option<Ptr>>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Option<Ptr>> for ChunkedArray<Utf8Type>where - Ptr: AsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Option<Ptr>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where + Ptr: AsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoIterator<Item = Option<Ptr>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where I: IntoIterator<Item = Option<Series>>,

Creates a value from an iterator. Read more
source§

impl<T> FromIterator<Option<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ObjectType<T>>where - I: IntoIterator<Item = Option<T>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + T: PolarsObject,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ObjectType<T>>where + I: IntoIterator<Item = Option<T>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoIterator<Item = Option<bool>>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ChunkedArray<BinaryType>where - Ptr: PolarsAsRef<[u8]>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BinaryType>where + Ptr: PolarsAsRef<[u8]>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BinaryType>where I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ChunkedArray<ListType>where - Ptr: Borrow<Series>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where + Ptr: Borrow<Series>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ChunkedArray<Utf8Type>where - Ptr: PolarsAsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + Ptr: PolarsAsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl<T> FromIteratorReversed<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where T: PolarsNumericType,

source§

impl FromIteratorReversed<Option<bool>> for ChunkedArray<BooleanType>

source§

impl<T> FromParallelIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<T>where I: IntoParallelIterator<Item = Option<<T as PolarsNumericType>::Native>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromParallelIterator<Option<Ptr>> for ChunkedArray<Utf8Type>where - Ptr: AsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoParallelIterator<Item = Option<Ptr>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<ListType>where - I: IntoParallelIterator<Item = Option<Series>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + Ptr: AsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoParallelIterator<Item = Option<Ptr>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<ListType>where + I: IntoParallelIterator<Item = Option<Series>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoParallelIterator<Item = Option<bool>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromParallelIterator<Ptr> for ChunkedArray<Utf8Type>where - Ptr: PolarsAsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoParallelIterator<Item = Ptr>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + Ptr: PolarsAsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoParallelIterator<Item = Ptr>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoParallelIterator<Item = bool>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<T> FromTrustedLenIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for ChunkedArray<BinaryType>where Ptr: AsRef<[u8]>,

source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for ChunkedArray<Utf8Type>where Ptr: AsRef<str>,

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Option<Ptr>>,

source§

impl FromTrustedLenIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<ListType>where + I: IntoIterator<Item = Option<Ptr>>,

source§

impl FromTrustedLenIterator<Option<Series>> for ChunkedArray<ListType>

source§

impl<T> FromTrustedLenIterator<Option<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<ObjectType<T>>where - I: IntoIterator<Item = Option<T>>,

source§

impl FromTrustedLenIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

impl FromTrustedLenIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<BinaryType>where - Ptr: PolarsAsRef<[u8]>,

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<ListType>where - Ptr: Borrow<Series>,

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<Utf8Type>where - Ptr: PolarsAsRef<str>,

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Ptr>,

source§

impl FromTrustedLenIterator<bool> for ChunkedArray<BooleanType>

source§

impl FromTrustedLenIterator<bool> for ChunkedArray<BooleanType>

source§

impl IntoGroupsProxy for ChunkedArray<BinaryType>

source§

impl IntoGroupsProxy for ChunkedArray<BinaryType>

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<BooleanType>

source§

fn group_tuples( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<BooleanType>

source§

fn group_tuples( &self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn group_tuples<'a>( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn group_tuples<'a>( &'a self, _multithreaded: bool, _sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<ListType>

source§

fn group_tuples<'a>( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<ListType>

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. * The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<T> IntoGroupsProxy for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn group_tuples( + T: PolarsObject,

source§

fn group_tuples( &self, _multithreaded: bool, sorted: bool @@ -1221,53 +1221,53 @@

Safety
* The first value in the tuple is the first index of the group. * The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<T> IntoGroupsProxy for ChunkedArray<T>where T: PolarsNumericType, - <T as PolarsNumericType>::Native: NumCast,

source§

fn group_tuples( + <T as PolarsNumericType>::Native: NumCast,

source§

fn group_tuples( &self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<Utf8Type>

source§

fn group_tuples<'a>( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<Utf8Type>

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<'a> IntoIterator for &'a ChunkedArray<BinaryType>

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BinaryType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BinaryType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<BooleanType>

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BooleanType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BooleanType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl<'a> IntoIterator for &'a ChunkedArray<BinaryType>

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BinaryType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BinaryType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<BooleanType>

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BooleanType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BooleanType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( self -) -> <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<ListType>

§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<ListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<ObjectType<T>>where - T: PolarsObject,

§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ObjectType<T>> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( +) -> <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<ListType>

§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<ListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<ObjectType<T>>where + T: PolarsObject,

§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ObjectType<T>> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( self ) -> <&'a ChunkedArray<ObjectType<T>> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = Option<<T as PolarsNumericType>::Native>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<T> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<Utf8Type>

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<Utf8Type> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<Utf8Type> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoSeries for ChunkedArray<Int128Type>

source§

impl<T> IntoSeries for ChunkedArray<T>where + T: PolarsNumericType,

§

type Item = Option<<T as PolarsNumericType>::Native>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<T> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<Utf8Type>

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<Utf8Type> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<Utf8Type> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoSeries for ChunkedArray<Int128Type>

source§

impl<T> IntoSeries for ChunkedArray<T>where T: PolarsDataType + 'static, - SeriesWrap<ChunkedArray<T>>: SeriesTrait,

source§

impl<T> IntoSeriesOps for &ChunkedArray<T>where + SeriesWrap<ChunkedArray<T>>: SeriesTrait,

source§

impl<T> IntoSeriesOps for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: NumericNative,

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<BooleanType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<ListType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Utf8Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

§

type TakeRandom = TakeRandBranch2<BinaryTakeRandomSingleChunk<'a>, BinaryTakeRandom<'a>>

source§

fn take_rand( + <T as PolarsNumericType>::Native: NumericNative,

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<BooleanType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<ListType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Utf8Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

§

type TakeRandom = TakeRandBranch2<BinaryTakeRandomSingleChunk<'a>, BinaryTakeRandom<'a>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<BinaryType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<BooleanType>

§

type Item = bool

§

type TakeRandom = TakeRandBranch2<BoolTakeRandomSingleChunk<'a>, BoolTakeRandom<'a>>

source§

fn take_rand( &self -) -> <&'a ChunkedArray<BooleanType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<ListType>

§

type Item = Series

§

type TakeRandom = TakeRandBranch2<ListTakeRandomSingleChunk<'a>, ListTakeRandom<'a>>

source§

fn take_rand( +) -> <&'a ChunkedArray<BooleanType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<ListType>

§

type Item = Series

§

type TakeRandom = TakeRandBranch2<ListTakeRandomSingleChunk<'a>, ListTakeRandom<'a>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<ListType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a, T> IntoTakeRandom<'a> for &'a ChunkedArray<ObjectType<T>>where - T: PolarsObject,

§

type Item = &'a T

§

type TakeRandom = TakeRandBranch2<ObjectTakeRandomSingleChunk<'a, T>, ObjectTakeRandom<'a, T>>

source§

fn take_rand( + T: PolarsObject,

§

type Item = &'a T

§

type TakeRandom = TakeRandBranch2<ObjectTakeRandomSingleChunk<'a, T>, ObjectTakeRandom<'a, T>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<ObjectType<T>> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a, T> IntoTakeRandom<'a> for &'a ChunkedArray<T>where - T: PolarsNumericType,

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

§

type TakeRandom = TakeRandBranch2<Utf8TakeRandomSingleChunk<'a>, Utf8TakeRandom<'a>>

source§

fn take_rand( + T: PolarsNumericType,

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

§

type TakeRandom = TakeRandBranch2<Utf8TakeRandomSingleChunk<'a>, Utf8TakeRandom<'a>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<Utf8Type> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl IsIn for ChunkedArray<BinaryType>

source§

fn is_in( &self, other: &Series -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<BooleanType>

source§

fn is_in( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<BooleanType>

source§

fn is_in( &self, other: &Series ) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl<T> IsIn for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn is_in( + T: PolarsNumericType,

source§

fn is_in( &self, other: &Series -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<Utf8Type>

source§

fn is_in( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<Utf8Type>

source§

fn is_in( &self, other: &Series ) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl ListNameSpaceImpl for ChunkedArray<ListType>

source§

fn lst_join( @@ -1297,51 +1297,51 @@

Safety
N: Num + ToPrimitive,
§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> <&ChunkedArray<T> as Mul<N>>::Output

Performs the * operation. Read more
source§

impl<T, N> Mul<N> for ChunkedArray<T>where T: PolarsNumericType, N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> <ChunkedArray<T> as Mul<N>>::Output

Performs the * operation. Read more
source§

impl<T> NamedFrom<&[T], &[T]> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn new(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, range: Range<u32>) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, range: Range<u64>) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T, S> NamedFrom<S, [Option<T>]> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

source§

fn new(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, range: Range<u32>) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, range: Range<u64>) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T, S> NamedFrom<S, [Option<T>]> for ChunkedArray<ObjectType<T>>where T: PolarsObject, - S: AsRef<[Option<T>]>,

source§

fn new(name: &str, v: S) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for ChunkedArray<BinaryType>where - T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for ChunkedArray<Utf8Type>where - T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for ChunkedArray<BinaryType>where - T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for ChunkedArray<Utf8Type>where - T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for ChunkedArray<BinaryType>where - T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for ChunkedArray<Utf8Type>where - T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for ChunkedArray<BinaryType>where + S: AsRef<[Option<T>]>,

source§

fn new(name: &str, v: S) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for ChunkedArray<BinaryType>where + T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for ChunkedArray<Utf8Type>where + T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for ChunkedArray<BinaryType>where + T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for ChunkedArray<Utf8Type>where + T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for ChunkedArray<BinaryType>where + T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for ChunkedArray<Utf8Type>where + T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for ChunkedArray<BinaryType>where T: AsRef<[Option<Cow<'a, [u8]>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for ChunkedArray<Utf8Type>where - T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for ChunkedArray<Utf8Type>where + T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for ChunkedArray<Utf8Type>where T: AsRef<[Option<String>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Vec<u8, Global>>]> for ChunkedArray<BinaryType>where - T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for ChunkedArray<BooleanType>where - T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for ChunkedArray<Float32Type>where - T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for ChunkedArray<Float64Type>where - T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for ChunkedArray<Int16Type>where - T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for ChunkedArray<Int32Type>where - T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for ChunkedArray<Int64Type>where - T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for ChunkedArray<Int8Type>where - T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for ChunkedArray<UInt16Type>where - T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for ChunkedArray<UInt32Type>where - T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for ChunkedArray<UInt64Type>where - T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for ChunkedArray<UInt8Type>where - T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for ChunkedArray<Utf8Type>where - T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for ChunkedArray<BinaryType>where - T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for ChunkedArray<BooleanType>where - T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for ChunkedArray<Float32Type>where - T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for ChunkedArray<Float64Type>where - T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for ChunkedArray<Int16Type>where - T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for ChunkedArray<Int32Type>where - T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for ChunkedArray<Int64Type>where - T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for ChunkedArray<Int8Type>where - T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for ChunkedArray<UInt16Type>where - T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for ChunkedArray<UInt32Type>where - T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for ChunkedArray<UInt64Type>where - T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for ChunkedArray<UInt8Type>where - T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<B> NewChunkedArray<BinaryType, B> for ChunkedArray<BinaryType>where - B: AsRef<[u8]>,

source§

fn from_iter_values( + T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for ChunkedArray<BooleanType>where + T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for ChunkedArray<Float32Type>where + T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for ChunkedArray<Float64Type>where + T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for ChunkedArray<Int16Type>where + T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for ChunkedArray<Int32Type>where + T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for ChunkedArray<Int64Type>where + T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for ChunkedArray<Int8Type>where + T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for ChunkedArray<UInt16Type>where + T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for ChunkedArray<UInt32Type>where + T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for ChunkedArray<UInt64Type>where + T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for ChunkedArray<UInt8Type>where + T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for ChunkedArray<Utf8Type>where + T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for ChunkedArray<BinaryType>where + T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for ChunkedArray<BooleanType>where + T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for ChunkedArray<Float32Type>where + T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for ChunkedArray<Float64Type>where + T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for ChunkedArray<Int16Type>where + T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for ChunkedArray<Int32Type>where + T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for ChunkedArray<Int64Type>where + T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for ChunkedArray<Int8Type>where + T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for ChunkedArray<UInt16Type>where + T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for ChunkedArray<UInt32Type>where + T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for ChunkedArray<UInt64Type>where + T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for ChunkedArray<UInt8Type>where + T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<B> NewChunkedArray<BinaryType, B> for ChunkedArray<BinaryType>where + B: AsRef<[u8]>,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = B> ) -> ChunkedArray<BinaryType>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[B]) -> ChunkedArray<BinaryType>

source§

fn from_slice_options( +

source§

fn from_slice(name: &str, v: &[B]) -> ChunkedArray<BinaryType>

source§

fn from_slice_options( name: &str, opt_v: &[Option<B>] -) -> ChunkedArray<BinaryType>

source§

fn from_iter_options( +) -> ChunkedArray<BinaryType>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<B>> ) -> ChunkedArray<BinaryType>

Create a new ChunkedArray from an iterator.
source§

impl NewChunkedArray<BooleanType, bool> for ChunkedArray<BooleanType>

source§

fn from_iter_values( @@ -1355,57 +1355,57 @@

Safety
name: &str, it: impl Iterator<Item = Option<bool>> ) -> ChunkedArray<BooleanType>
Create a new ChunkedArray from an iterator.
source§

impl<T> NewChunkedArray<ObjectType<T>, T> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn from_iter_values( + T: PolarsObject,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = T> ) -> ChunkedArray<ObjectType<T>>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

source§

fn from_slice_options( +

source§

fn from_slice(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

source§

fn from_slice_options( name: &str, opt_v: &[Option<T>] -) -> ChunkedArray<ObjectType<T>>

source§

fn from_iter_options( +) -> ChunkedArray<ObjectType<T>>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<T>> ) -> ChunkedArray<ObjectType<T>>

Create a new ChunkedArray from an iterator.
source§

impl<T> NewChunkedArray<T, <T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from_iter_values( + T: PolarsNumericType,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = <T as PolarsNumericType>::Native> ) -> ChunkedArray<T>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice( +

source§

fn from_slice( name: &str, v: &[<T as PolarsNumericType>::Native] -) -> ChunkedArray<T>

source§

fn from_slice_options( +) -> ChunkedArray<T>

source§

fn from_slice_options( name: &str, opt_v: &[Option<<T as PolarsNumericType>::Native>] -) -> ChunkedArray<T>

source§

fn from_iter_options( +) -> ChunkedArray<T>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<<T as PolarsNumericType>::Native>> ) -> ChunkedArray<T>

Create a new ChunkedArray from an iterator.
source§

impl<S> NewChunkedArray<Utf8Type, S> for ChunkedArray<Utf8Type>where - S: AsRef<str>,

source§

fn from_iter_values( + S: AsRef<str>,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = S> ) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[S]) -> ChunkedArray<Utf8Type>

source§

fn from_slice_options(name: &str, opt_v: &[Option<S>]) -> ChunkedArray<Utf8Type>

source§

fn from_iter_options( +

source§

fn from_slice(name: &str, v: &[S]) -> ChunkedArray<Utf8Type>

source§

fn from_slice_options(name: &str, opt_v: &[Option<S>]) -> ChunkedArray<Utf8Type>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<S>> ) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray from an iterator.
source§

impl Not for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> <&ChunkedArray<BooleanType> as Not>::Output

Performs the unary ! operation. Read more
source§

impl Not for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> <ChunkedArray<BooleanType> as Not>::Output

Performs the unary ! operation. Read more
source§

impl<T> NumOpsDispatch for ChunkedArray<T>where T: NumOpsDispatchInner,

source§

impl<S> NumOpsDispatchChecked for ChunkedArray<S>where S: NumOpsDispatchCheckedInner,

source§

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
source§

fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where - T: ToPrimitive,

source§

impl QuantileAggSeries for ChunkedArray<Float32Type>

source§

impl QuantileAggSeries for ChunkedArray<Float32Type>

source§

fn quantile_as_series( &self, quantile: f64, interpol: QuantileInterpolOptions -) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl QuantileAggSeries for ChunkedArray<Float64Type>

source§

fn quantile_as_series( +) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl QuantileAggSeries for ChunkedArray<Float64Type>

source§

fn quantile_as_series( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> QuantileAggSeries for ChunkedArray<T>where T: PolarsIntegerType, <T as PolarsNumericType>::Native: Ord, - <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn quantile_as_series( + <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn quantile_as_series( &self, quantile: f64, interpol: QuantileInterpolOptions -) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> Rem<&ChunkedArray<T>> for &ChunkedArray<T>where +) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> Rem<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem( self, rhs: &ChunkedArray<T> @@ -1420,34 +1420,34 @@

Safety
N: Num + ToPrimitive,
§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: N) -> <ChunkedArray<T> as Rem<N>>::Output

Performs the % operation. Read more
source§

impl RepeatBy for ChunkedArray<BinaryType>

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> -) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<BooleanType>

source§

fn repeat_by( +) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<BooleanType>

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> ) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl<T> RepeatBy for ChunkedArray<T>where T: PolarsNumericType,

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> -) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<Utf8Type>

source§

fn repeat_by( +) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<Utf8Type>

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> ) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl<T> StrConcat for ChunkedArray<T>where T: PolarsNumericType, - <T as PolarsNumericType>::Native: Display,

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl StrConcat for ChunkedArray<Utf8Type>

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( + <T as PolarsNumericType>::Native: Display,

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl StrConcat for ChunkedArray<Utf8Type>

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( self, rhs: &ChunkedArray<T> ) -> <&ChunkedArray<T> as Sub<&ChunkedArray<T>>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( self, rhs: ChunkedArray<T> ) -> <ChunkedArray<T> as Sub<ChunkedArray<T>>>::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <&ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <&ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

source§

fn get( + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

source§

fn get( &self, index: usize -) -> Option<<&'a ChunkedArray<BinaryType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where +) -> Option<<&'a ChunkedArray<BinaryType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<BooleanType>

§

type Item = bool

source§

fn get( &self, index: usize @@ -1455,40 +1455,40 @@

Safety
&self, index: usize ) -> Option<<&'a ChunkedArray<BooleanType> as TakeRandom>::Item>
Get a value by index and ignore the null bit. Read more
source§

impl<'a, T> TakeRandom for &'a ChunkedArray<ObjectType<T>>where - T: PolarsObject,

§

type Item = &'a T

source§

fn get( + T: PolarsObject,

§

type Item = &'a T

source§

fn get( &self, index: usize -) -> Option<<&'a ChunkedArray<ObjectType<T>> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<&'a ChunkedArray<ObjectType<T>> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize ) -> Option<<&'a ChunkedArray<ObjectType<T>> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a, T> TakeRandom for &'a ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( + T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize -) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

source§

fn get( +) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

source§

fn get( &self, index: usize -) -> Option<<&'a ChunkedArray<Utf8Type> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where - Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<BooleanType>

§

type Item = bool

source§

fn get( +) -> Option<<&'a ChunkedArray<Utf8Type> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where + Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<BooleanType>

§

type Item = bool

source§

fn get( &self, index: usize -) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize -) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Series

source§

fn get( +) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Series

source§

fn get( &self, index: usize -) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize -) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<ListType>

§

type Item = Series

source§

fn get( +) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<ListType>

§

type Item = Series

source§

fn get( &self, index: usize -) -> Option<<ChunkedArray<ListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<ChunkedArray<ListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize ) -> Option<<ChunkedArray<ListType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<T> TakeRandom for ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( + T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize ) -> Option<<ChunkedArray<T> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandomUtf8 for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

source§

fn get( @@ -1569,14 +1569,14 @@

Safety
length: Option<u64> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>
Slice the string values Determines a substring starting from start and with optional length length of each of the elements in array. -start can be negative, in which case the start counts from the end of the string.
source§

impl ValueSize for ChunkedArray<BinaryType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<ListType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<Utf8Type>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl VarAggSeries for ChunkedArray<Float32Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VarAggSeries for ChunkedArray<Float64Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl<T> VarAggSeries for ChunkedArray<T>where +start can be negative, in which case the start counts from the end of the string.

source§

impl ValueSize for ChunkedArray<BinaryType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<ListType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<Utf8Type>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl VarAggSeries for ChunkedArray<Float32Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VarAggSeries for ChunkedArray<Float64Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl<T> VarAggSeries for ChunkedArray<T>where T: PolarsIntegerType, - <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VecHash for ChunkedArray<BinaryType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<BooleanType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl<T> VecHash for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Utf8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ChunkedArray<T>

§

impl<T> Send for ChunkedArray<T>

§

impl<T> Sync for ChunkedArray<T>

§

impl<T> Unpin for ChunkedArray<T>where + <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VecHash for ChunkedArray<BinaryType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<BooleanType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl<T> VecHash for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Utf8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ChunkedArray<T>

§

impl<T> Send for ChunkedArray<T>

§

impl<T> Sync for ChunkedArray<T>

§

impl<T> Unpin for ChunkedArray<T>where T: Unpin,

§

impl<T> !UnwindSafe for ChunkedArray<T>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars/chunked_array/object/struct.DataFrame.html b/polars/chunked_array/object/struct.DataFrame.html index c291de2ed37c..aa6ae14383bb 100644 --- a/polars/chunked_array/object/struct.DataFrame.html +++ b/polars/chunked_array/object/struct.DataFrame.html @@ -1403,22 +1403,22 @@
Example
S: AsRef<str>,

Perform an outer join on two DataFrames Read more
source§

impl Debug for DataFrame

source§

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

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

impl Default for DataFrame

source§

fn default() -> DataFrame

Returns the “default value” for a type. Read more
source§

impl Display for DataFrame

source§

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

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

impl From<&Schema> for DataFrame

source§

fn from(schema: &Schema) -> DataFrame

Converts to this type from the input type.
source§

impl From<DataFrame> for Vec<Series, Global>

source§

fn from(df: DataFrame) -> Vec<Series, Global>

Converts to this type from the input type.
source§

impl From<StructChunked> for DataFrame

source§

fn from(ca: StructChunked) -> DataFrame

Converts to this type from the input type.
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T>(iter: T) -> DataFramewhere T: IntoIterator<Item = Series>,

Panics

Panics if Series have different lengths.

-
source§

impl Index<&str> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: &str) -> &<DataFrame as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Range<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +

source§

impl Index<&str> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: &str) -> &<DataFrame as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Range<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: Range<usize> -) -> &<DataFrame as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFrom<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFrom<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeFrom<usize> -) -> &<DataFrame as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFull> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFull) -> &<DataFrame as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFull> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFull) -> &<DataFrame as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeInclusive<usize> -) -> &<DataFrame as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeTo<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeTo<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeTo<usize> -) -> &<DataFrame as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeToInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeToInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeToInclusive<usize> -) -> &<DataFrame as Index<RangeToInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: usize) -> &<DataFrame as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IntoLazy for DataFrame

source§

fn lazy(self) -> LazyFrame

Convert the DataFrame into a lazy DataFrame

+) -> &<DataFrame as Index<RangeToInclusive<usize>>>::Output
Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: usize) -> &<DataFrame as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IntoLazy for DataFrame

source§

fn lazy(self) -> LazyFrame

Convert the DataFrame into a lazy DataFrame

source§

impl PartialEq<DataFrame> for DataFrame

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PolarsTemporalGroupby for DataFrame

source§

fn groupby_rolling( @@ -1443,9 +1443,9 @@

Example
every: Duration, offset: Duration ) -> Result<DataFrame, PolarsError>where - I: IntoVec<String>,
Upsample a DataFrame at a regular frequency. Read more
source§

impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( + I: IntoVec<String>,

Upsample a DataFrame at a regular frequency. Read more
source§

impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( arg: (Chunk<Box<dyn Array, Global>>, &[Field]) -) -> Result<DataFrame, PolarsError>

Performs the conversion.
source§

impl TryFrom<StructArray> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arr: StructArray) -> Result<DataFrame, PolarsError>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +) -> Result<DataFrame, PolarsError>

Performs the conversion.
source§

impl TryFrom<StructArray> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arr: StructArray) -> Result<DataFrame, PolarsError>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DataFrameOps for Twhere diff --git a/polars/chunked_array/object/struct.Field.html b/polars/chunked_array/object/struct.Field.html index 0fad44f6a267..c3413f189488 100644 --- a/polars/chunked_array/object/struct.Field.html +++ b/polars/chunked_array/object/struct.Field.html @@ -35,7 +35,7 @@
Example
let af = arrow::datatypes::Field::new("Value", arrow::datatypes::DataType::Int64, true); assert_eq!(f.to_arrow(), af);

-

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

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

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

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

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

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

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Field

source§

impl StructuralEq for Field

source§

impl StructuralPartialEq for Field

Auto Trait Implementations§

§

impl RefUnwindSafe for Field

§

impl Send for Field

§

impl Sync for Field

§

impl Unpin for Field

§

impl UnwindSafe for Field

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/chunked_array/object/struct.GroupsIdx.html b/polars/chunked_array/object/struct.GroupsIdx.html index b752d0d35e5f..a038e61bbb8d 100644 --- a/polars/chunked_array/object/struct.GroupsIdx.html +++ b/polars/chunked_array/object/struct.GroupsIdx.html @@ -4,11 +4,11 @@ first: Vec<u32, Global>, all: Vec<Vec<u32, Global>, Global>, sorted: bool -) -> GroupsIdx

source

pub fn sort(&mut self)

source

pub fn is_sorted_flag(&self) -> bool

source

pub fn iter(&self) -> Zip<Copied<Iter<'_, u32>>, Iter<'_, Vec<u32, Global>>>

source

pub fn all(&self) -> &[Vec<u32, Global>]

source

pub fn first(&self) -> &[u32]

source

pub fn first_mut(&mut self) -> &mut Vec<u32, Global>

Trait Implementations§

source§

impl Clone for GroupsIdx

source§

fn clone(&self) -> GroupsIdx

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 GroupsIdx

source§

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

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

impl Default for GroupsIdx

source§

fn default() -> GroupsIdx

Returns the “default value” for a type. Read more
source§

impl Drop for GroupsIdx

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<GroupsIdx> for GroupsProxy

source§

fn from(groups: GroupsIdx) -> GroupsProxy

Converts to this type from the input type.
source§

impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx

source§

fn from( +) -> GroupsIdx

source

pub fn sort(&mut self)

source

pub fn is_sorted_flag(&self) -> bool

source

pub fn iter(&self) -> Zip<Copied<Iter<'_, u32>>, Iter<'_, Vec<u32, Global>>>

source

pub fn all(&self) -> &[Vec<u32, Global>]

source

pub fn first(&self) -> &[u32]

source

pub fn first_mut(&mut self) -> &mut Vec<u32, Global>

Trait Implementations§

source§

impl Clone for GroupsIdx

source§

fn clone(&self) -> GroupsIdx

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 GroupsIdx

source§

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

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

impl Default for GroupsIdx

source§

fn default() -> GroupsIdx

Returns the “default value” for a type. Read more
source§

impl Drop for GroupsIdx

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<GroupsIdx> for GroupsProxy

source§

fn from(groups: GroupsIdx) -> GroupsProxy

Converts to this type from the input type.
source§

impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx

source§

fn from( v: Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global> -) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<(u32, Vec<u32, Global>), Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx

source§

fn from(v: Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_iter<T>(iter: T) -> GroupsIdxwhere +) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<(u32, Vec<u32, Global>), Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx

source§

fn from(v: Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_iter<T>(iter: T) -> GroupsIdxwhere T: IntoIterator<Item = (u32, Vec<u32, Global>)>,

Creates a value from an iterator. Read more
source§

impl FromParallelIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_par_iter<I>(par_iter: I) -> GroupsIdxwhere - I: IntoParallelIterator<Item = (u32, Vec<u32, Global>)>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<'a> IntoIterator for &'a GroupsIdx

§

type Item = (u32, &'a Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for GroupsIdx

§

type Item = (u32, Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<IntoIter<u32, Global>, IntoIter<Vec<u32, Global>, Global>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoParallelIterator for &'a GroupsIdx

§

type Iter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, &'a Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <&'a GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl IntoParallelIterator for GroupsIdx

§

type Iter = Zip<IntoIter<u32>, IntoIter<Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl PartialEq<GroupsIdx> for GroupsIdx

source§

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

This method tests for self and other values to be equal, and is used + I: IntoParallelIterator<Item = (u32, Vec<u32, Global>)>,
Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<'a> IntoIterator for &'a GroupsIdx

§

type Item = (u32, &'a Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for GroupsIdx

§

type Item = (u32, Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<IntoIter<u32, Global>, IntoIter<Vec<u32, Global>, Global>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoParallelIterator for &'a GroupsIdx

§

type Iter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, &'a Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <&'a GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl IntoParallelIterator for GroupsIdx

§

type Iter = Zip<IntoIter<u32>, IntoIter<Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl PartialEq<GroupsIdx> for GroupsIdx

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for GroupsIdx

source§

impl StructuralEq for GroupsIdx

source§

impl StructuralPartialEq for GroupsIdx

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/chunked_array/object/struct.Int32Type.html b/polars/chunked_array/object/struct.Int32Type.html index cf140b748bc4..8cd674b9cf57 100644 --- a/polars/chunked_array/object/struct.Int32Type.html +++ b/polars/chunked_array/object/struct.Int32Type.html @@ -1,4 +1,4 @@ -Int32Type in polars::chunked_array::object - Rust
pub struct Int32Type {}
Available on crate feature object only.

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +Int32Type in polars::chunked_array::object - Rust
pub struct Int32Type {}
Available on crate feature object only.

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/chunked_array/object/struct.Logical.html b/polars/chunked_array/object/struct.Logical.html index 0b1f560d1387..aac0ecd683a4 100644 --- a/polars/chunked_array/object/struct.Logical.html +++ b/polars/chunked_array/object/struct.Logical.html @@ -329,27 +329,27 @@
Safety

source§

fn milliseconds(&self) -> ChunkedArray<Int64Type>

Extract the milliseconds from a Duration

source§

fn microseconds(&self) -> ChunkedArray<Int64Type>

Extract the microseconds from a Duration

source§

fn nanoseconds(&self) -> ChunkedArray<Int64Type>

Extract the nanoseconds from a Duration

-

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( +

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( self, rhs: &Logical<DecimalType, Int128Type> ) -> <&Logical<DecimalType, Int128Type> as Mul<&Logical<DecimalType, Int128Type>>>::Output

Performs the * operation. Read more
source§

impl<T> NamedFrom<T, [Duration]> for Logical<DurationType, Int64Type>where T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Logical<DateType, Int32Type>where - T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Logical<TimeType, Int64Type>where - T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where + T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Logical<DateType, Int32Type>where - T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where - T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where - T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

fn month_end( + T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where + T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

impl PolarsRound for Logical<DateType, Int32Type>

Available on crate feature dtype-date only.
source§

fn round( diff --git a/polars/chunked_array/object/struct.RollingOptionsFixedWindow.html b/polars/chunked_array/object/struct.RollingOptionsFixedWindow.html index 739328802a36..d8fb9ca72663 100644 --- a/polars/chunked_array/object/struct.RollingOptionsFixedWindow.html +++ b/polars/chunked_array/object/struct.RollingOptionsFixedWindow.html @@ -9,7 +9,7 @@

§weights: Option<Vec<f64, Global>>

An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.

§center: bool

Set the labels at the center of the window.

-
§fn_params: Option<Arc<dyn Any + Send + Sync>>

Trait Implementations§

source§

impl Clone for RollingOptionsFixedWindow

source§

fn clone(&self) -> RollingOptionsFixedWindow

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 Default for RollingOptionsFixedWindow

source§

fn default() -> RollingOptionsFixedWindow

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

Available on crate feature rolling_window only.
source§

fn from(options: RollingOptions) -> RollingOptionsFixedWindow

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

Available on crate feature rolling_window only.
source§

fn from(options: RollingOptionsImpl<'a>) -> RollingOptionsFixedWindow

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

§fn_params: Option<Arc<dyn Any + Send + Sync>>

Trait Implementations§

source§

impl Clone for RollingOptionsFixedWindow

source§

fn clone(&self) -> RollingOptionsFixedWindow

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 Default for RollingOptionsFixedWindow

source§

fn default() -> RollingOptionsFixedWindow

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

Available on crate feature rolling_window only.
source§

fn from(options: RollingOptions) -> RollingOptionsFixedWindow

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

Available on crate feature rolling_window only.
source§

fn from(options: RollingOptionsImpl<'a>) -> RollingOptionsFixedWindow

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/chunked_array/object/struct.Series.html b/polars/chunked_array/object/struct.Series.html index d7ca8c37ac58..7b5742a91f5d 100644 --- a/polars/chunked_array/object/struct.Series.html +++ b/polars/chunked_array/object/struct.Series.html @@ -321,8 +321,8 @@
Implementation

source

pub fn get_data_ptr(&self) -> usize

Get a pointer to the underlying data of this Series. Can be useful for fast comparisons.

Methods from Deref<Target = dyn SeriesTrait>§

source

pub fn unpack<N>(&self) -> Result<&ChunkedArray<N>, PolarsError>where - N: 'static + PolarsDataType,

Trait Implementations§

source§

impl Add<&Series> for &Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Series) -> <&Series as Add<&Series>>::Output

Performs the + operation. Read more
source§

impl Add<Series> for Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Series) -> <Series as Add<Series>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <&Series as Add<T>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for Serieswhere + N: 'static + PolarsDataType,

Trait Implementations§

source§

impl Add<&Series> for &Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Series) -> <&Series as Add<&Series>>::Output

Performs the + operation. Read more
source§

impl Add<Series> for Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Series) -> <Series as Add<Series>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <&Series as Add<T>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for Serieswhere T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <Series as Add<T>>::Output

Performs the + operation. Read more
source§

impl ArgAgg for Series

source§

fn arg_min(&self) -> Option<usize>

Get the index of the minimal value
source§

fn arg_max(&self) -> Option<usize>

Get the index of the maximal value
source§

impl AsMut<Series> for UnstableSeries<'_>

source§

fn as_mut(&mut self) -> &mut Series

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<Series> for UnstableSeries<'_>

We don’t implement Deref so that the caller is aware of converting to Series

source§

fn as_ref(&self) -> &Series

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsSeries for Series

source§

impl<'a> ChunkApply<'a, Series, Series> for ChunkedArray<ListType>

source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn(Series) -> Series + Copy,

Apply a closure F elementwise.

@@ -355,138 +355,138 @@
Implementation
source§

fn gt_eq(&self, rhs: &Series) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a boolean mask by checking if self >= rhs.

source§

fn lt(&self, rhs: &Series) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a boolean mask by checking if self < rhs.

source§

fn lt_eq(&self, rhs: &Series) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a boolean mask by checking if self <= rhs.

-
§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

impl ChunkCompare<&str> for Series

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl<Rhs> ChunkCompare<Rhs> for Serieswhere - Rhs: NumericNative,

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

impl ChunkCompare<&str> for Series

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl<Rhs> ChunkCompare<Rhs> for Serieswhere + Rhs: NumericNative,

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn full( name: &str, value: &Series, length: usize -) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. Returns None if the array is empty or only contains null values.
source§

impl<T> ChunkQuantile<Series> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( + T: PolarsObject,

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where +Returns None if the array is empty or only contains null values.

source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where T: PolarsObject,

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl Clone for Series

source§

fn clone(&self) -> Series

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 Series

source§

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

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

impl Default for Series

source§

fn default() -> Series

Returns the “default value” for a type. Read more
source§

impl Deref for Series

§

type Target = dyn SeriesTrait

The resulting type after dereferencing.
source§

fn deref(&self) -> &<Series as Deref>::Target

Dereferences the value.
source§

impl Display for Series

source§

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

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

impl Div<&Series> for &Series

source§

fn div(self, rhs: &Series) -> <&Series as Div<&Series>>::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s / &s;
-
§

type Output = Series

The resulting type after applying the / operator.
source§

impl Div<Series> for Series

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: Series) -> <Series as Div<Series>>::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for &Serieswhere +

§

type Output = Series

The resulting type after applying the / operator.
source§

impl Div<Series> for Series

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: Series) -> <Series as Div<Series>>::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for &Serieswhere T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <&Series as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <Series as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T> From<ChunkedArray<T>> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <Series as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T> From<ChunkedArray<T>> for Serieswhere T: PolarsDataType, - ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl<'a> FromIterator<&'a bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a bool>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a f32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a f64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i8>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a str> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a str>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<bool>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<f32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<f64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T>(iter: T) -> DataFramewhere + ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl<'a> FromIterator<&'a bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a bool>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a f32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a f64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i8>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a str> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a str>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<bool>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<f32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<f64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T>(iter: T) -> DataFramewhere T: IntoIterator<Item = Series>,

Panics

Panics if Series have different lengths.

-
source§

impl FromIterator<String> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = String>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = f32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = f64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = u16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere +

source§

impl FromIterator<String> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = String>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = f32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = f64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = u16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere I: IntoIterator<Item = u32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = u64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = u64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere I: IntoIterator<Item = u8>,

Creates a value from an iterator. Read more
source§

impl IntoSeries for Series

source§

impl IntoSeriesOps for Series

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl Literal for Series

source§

fn lit(self) -> Expr

Literal expression.
source§

impl LogSeries for Series

source§

fn log(&self, base: f64) -> Series

Compute the logarithm to a given base
source§

fn log1p(&self) -> Series

Compute the natural logarithm of all elements plus one in the input array
source§

fn exp(&self) -> Series

Calculate the exponential of all elements in the input array.
source§

fn entropy(&self, base: f64, normalize: bool) -> Option<f64>

Compute the entropy as -sum(pk * log(pk). -where pk are discrete probabilities.
source§

impl Mul<&Series> for &Series

source§

fn mul(self, rhs: &Series) -> <&Series as Mul<&Series>>::Output

+where pk are discrete probabilities.
source§

impl Mul<&Series> for &Series

source§

fn mul(self, rhs: &Series) -> <&Series as Mul<&Series>>::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s * &s;
-
§

type Output = Series

The resulting type after applying the * operator.
source§

impl Mul<Series> for Series

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Series) -> <Series as Mul<Series>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <&Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl NamedFrom<&Series, str> for Series

source§

fn new(name: &str, s: &Series) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for Series

source§

fn new(name: &str, range: Range<u32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for Series

source§

fn new(name: &str, range: Range<u64>) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for Serieswhere - T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for Serieswhere - T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [AnyValue<'a>]> for Serieswhere - T: AsRef<[AnyValue<'a>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for Serieswhere - T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for Serieswhere - T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Duration]> for Serieswhere - T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Serieswhere - T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Serieswhere - T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Serieswhere - T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for Serieswhere - T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for Serieswhere - T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for Serieswhere - T: AsRef<[Option<Cow<'a, [u8]>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for Serieswhere - T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Serieswhere - T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Serieswhere - T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Serieswhere - T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Serieswhere - T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Series>]> for Serieswhere - T: AsRef<[Option<Series>]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for Serieswhere - T: AsRef<[Option<String>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Vec<u8, Global>>]> for Serieswhere - T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for Serieswhere - T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for Serieswhere - T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for Serieswhere - T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for Serieswhere - T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for Serieswhere - T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for Serieswhere - T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for Serieswhere - T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for Serieswhere - T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for Serieswhere - T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for Serieswhere - T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for Serieswhere - T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for Serieswhere - T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for Serieswhere - T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for Serieswhere - T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for Serieswhere - T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for Serieswhere - T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for Serieswhere - T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for Serieswhere - T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for Serieswhere - T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for Serieswhere - T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for Serieswhere - T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for Serieswhere - T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for Serieswhere - T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for Serieswhere - T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, ListType> for Serieswhere - T: AsRef<[Series]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, T> for Serieswhere +

§

type Output = Series

The resulting type after applying the * operator.
source§

impl Mul<Series> for Series

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Series) -> <Series as Mul<Series>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <&Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl NamedFrom<&Series, str> for Series

source§

fn new(name: &str, s: &Series) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for Series

source§

fn new(name: &str, range: Range<u32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for Series

source§

fn new(name: &str, range: Range<u64>) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for Serieswhere + T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for Serieswhere + T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [AnyValue<'a>]> for Serieswhere + T: AsRef<[AnyValue<'a>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for Serieswhere + T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for Serieswhere + T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Duration]> for Serieswhere + T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Serieswhere + T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Serieswhere + T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Serieswhere + T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for Serieswhere + T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for Serieswhere + T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for Serieswhere + T: AsRef<[Option<Cow<'a, [u8]>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for Serieswhere + T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Serieswhere + T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Serieswhere + T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Serieswhere + T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Serieswhere + T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Series>]> for Serieswhere + T: AsRef<[Option<Series>]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for Serieswhere + T: AsRef<[Option<String>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Vec<u8, Global>>]> for Serieswhere + T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for Serieswhere + T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for Serieswhere + T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for Serieswhere + T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for Serieswhere + T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for Serieswhere + T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for Serieswhere + T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for Serieswhere + T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for Serieswhere + T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for Serieswhere + T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for Serieswhere + T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for Serieswhere + T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for Serieswhere + T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for Serieswhere + T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for Serieswhere + T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for Serieswhere + T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for Serieswhere + T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for Serieswhere + T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for Serieswhere + T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for Serieswhere + T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for Serieswhere + T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for Serieswhere + T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for Serieswhere + T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for Serieswhere + T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for Serieswhere + T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, ListType> for Serieswhere + T: AsRef<[Series]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, T> for Serieswhere T: IntoSeries,

For any ChunkedArray and Series

-
source§

fn new(name: &str, t: T) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i8, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u8, Global>) -> Series

Initialize by name and values.
source§

impl NumOpsDispatchChecked for Series

source§

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
source§

fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where +

source§

fn new(name: &str, t: T) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i8, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u8, Global>) -> Series

Initialize by name and values.
source§

impl NumOpsDispatchChecked for Series

source§

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
source§

fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where T: ToPrimitive,

source§

impl PartialEq<Series> for Series

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Rem<&Series> for &Series

source§

fn rem(self, rhs: &Series) -> <&Series as Rem<&Series>>::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s / &s;
§

type Output = Series

The resulting type after applying the % operator.
source§

impl<T> Rem<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <&Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl<T> Rem<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl SeriesMethods for Series

source§

fn value_counts( + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <&Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl<T> Rem<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl SeriesMethods for Series

source§

fn value_counts( &self, multithreaded: bool, sorted: bool @@ -519,15 +519,15 @@

Implementation
) -> Result<Series, PolarsError>
Available on crate feature rolling_window only.
Apply a rolling median to a Series.
source§

fn rolling_min( &self, options: RollingOptionsImpl<'_> -) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.
Apply a rolling min to a Series.
source§

impl SeriesSealed for Series

source§

impl Sub<&Series> for &Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Series) -> <&Series as Sub<&Series>>::Output

Performs the - operation. Read more
source§

impl Sub<Series> for Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Series) -> <Series as Sub<Series>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <&Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl ToDummies for Series

source§

fn to_dummies( +) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.
Apply a rolling min to a Series.
source§

impl SeriesSealed for Series

source§

fn as_series(&self) -> &Series

source§

impl Sub<&Series> for &Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Series) -> <&Series as Sub<&Series>>::Output

Performs the - operation. Read more
source§

impl Sub<Series> for Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Series) -> <Series as Sub<Series>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <&Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl ToDummies for Series

source§

fn to_dummies( &self, separator: Option<&str>, drop_first: bool -) -> Result<DataFrame, PolarsError>

source§

impl TryFrom<(&str, Box<dyn Array, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( +) -> Result<DataFrame, PolarsError>

source§

impl TryFrom<(&str, Box<dyn Array, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( name_arr: (&str, Box<dyn Array, Global>) -) -> Result<Series, PolarsError>

Performs the conversion.
source§

impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( +) -> Result<Series, PolarsError>

Performs the conversion.
source§

impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( name_arr: (&str, Vec<Box<dyn Array, Global>, Global>) ) -> Result<Series, PolarsError>

Performs the conversion.
source§

impl RollingSeries for Series

Auto Trait Implementations§

§

impl !RefUnwindSafe for Series

§

impl Send for Series

§

impl Sync for Series

§

impl Unpin for Series

§

impl !UnwindSafe for Series

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/chunked_array/object/trait.FxHash.html b/polars/chunked_array/object/trait.FxHash.html index 2ba2848f9aed..cdea9f0ecf39 100644 --- a/polars/chunked_array/object/trait.FxHash.html +++ b/polars/chunked_array/object/trait.FxHash.html @@ -5,4 +5,4 @@ // Provided method fn get_k(random_state: RandomState) -> u64 { ... } }
Available on crate feature object only.
Expand description

Ensure that the same hash is used as with VecHash.

-

Required Methods§

source

fn _fx_hash(self, k: u64) -> u64

Provided Methods§

source

fn get_k(random_state: RandomState) -> u64

Implementations on Foreign Types§

source§

impl FxHash for u16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u8

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i8

source§

fn _fx_hash(self, k: u64) -> u64

Implementors§

\ No newline at end of file +

Required Methods§

source

fn _fx_hash(self, k: u64) -> u64

Provided Methods§

source

fn get_k(random_state: RandomState) -> u64

Implementations on Foreign Types§

source§

impl FxHash for u64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u8

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i8

source§

fn _fx_hash(self, k: u64) -> u64

Implementors§

\ No newline at end of file diff --git a/polars/chunked_array/object/trait.IndexOfSchema.html b/polars/chunked_array/object/trait.IndexOfSchema.html index 946742d4c4ff..38324959c6f8 100644 --- a/polars/chunked_array/object/trait.IndexOfSchema.html +++ b/polars/chunked_array/object/trait.IndexOfSchema.html @@ -8,4 +8,4 @@ }
Available on crate feature object only.
Expand description

This trait exists to be unify the API of polars Schema and arrows Schema

Required Methods§

source

fn index_of(&self, name: &str) -> Option<usize>

Get the index of a column by name.

source

fn get_names(&self) -> Vec<&str, Global>

Get a vector of all column names.

-

Provided Methods§

source

fn try_index_of(&self, name: &str) -> Result<usize, PolarsError>

Implementors§

source§

impl IndexOfSchema for polars::chunked_array::object::ArrowSchema

source§

impl IndexOfSchema for polars::chunked_array::object::Schema

\ No newline at end of file +

Provided Methods§

source

fn try_index_of(&self, name: &str) -> Result<usize, PolarsError>

Implementors§

source§

impl IndexOfSchema for polars::chunked_array::object::ArrowSchema

source§

impl IndexOfSchema for polars::chunked_array::object::Schema

\ No newline at end of file diff --git a/polars/chunked_array/object/trait.InitHashMaps.html b/polars/chunked_array/object/trait.InitHashMaps.html index e0662418d8d6..e2df5c16e61f 100644 --- a/polars/chunked_array/object/trait.InitHashMaps.html +++ b/polars/chunked_array/object/trait.InitHashMaps.html @@ -4,12 +4,12 @@ // Required methods fn new() -> Self::HashMap; fn with_capacity(capacity: usize) -> Self::HashMap; -}
Available on crate feature object only.

Required Associated Types§

source

type HashMap

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

§

type HashMap = HashSet<K, RandomState, Global>

source§

fn new() -> <HashSet<K, RandomState, Global> as InitHashMaps>::HashMap

source§

fn with_capacity(capacity: usize) -> HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

§

type HashMap = HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

fn new( - -) -> <HashMap<K, V, BuildHasherDefault<IdHasher>, Global> as InitHashMaps>::HashMap

source§

fn with_capacity( +}
Available on crate feature object only.

Required Associated Types§

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

Implementors§

\ No newline at end of file +) -> HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

Implementors§

\ No newline at end of file diff --git a/polars/chunked_array/object/trait.IsFloat.html b/polars/chunked_array/object/trait.IsFloat.html index bd524d4a677e..51c3c001219b 100644 --- a/polars/chunked_array/object/trait.IsFloat.html +++ b/polars/chunked_array/object/trait.IsFloat.html @@ -6,5 +6,5 @@ }
Available on crate feature object only.
Expand description

Safety

unsafe code downstream relies on the correct is_float call

Provided Methods§

source

fn is_float() -> bool

source

fn is_nan(&self) -> boolwhere - Self: Sized,

Implementations on Foreign Types§

source§

impl IsFloat for i8

source§

impl IsFloat for f64

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for bool

source§

impl IsFloat for i16

source§

impl IsFloat for &[u8]

source§

impl IsFloat for f32

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for u32

source§

impl IsFloat for i128

source§

impl IsFloat for u8

source§

impl IsFloat for u64

source§

impl<T> IsFloat for Option<T>where - T: IsFloat,

source§

impl IsFloat for &str

source§

impl IsFloat for i32

source§

impl IsFloat for i64

source§

impl IsFloat for u16

Implementors§

\ No newline at end of file + Self: Sized,

Implementations on Foreign Types§

source§

impl IsFloat for i8

source§

impl IsFloat for u16

source§

impl IsFloat for i16

source§

impl<T> IsFloat for Option<T>where + T: IsFloat,

source§

impl IsFloat for u32

source§

impl IsFloat for u8

source§

impl IsFloat for f32

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for &[u8]

source§

impl IsFloat for &str

source§

impl IsFloat for i64

source§

impl IsFloat for u64

source§

impl IsFloat for i128

source§

impl IsFloat for bool

source§

impl IsFloat for i32

source§

impl IsFloat for f64

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

Implementors§

\ No newline at end of file diff --git a/polars/chunked_array/object/trait.NumericNative.html b/polars/chunked_array/object/trait.NumericNative.html index 274779300e69..1cc556189b54 100644 --- a/polars/chunked_array/object/trait.NumericNative.html +++ b/polars/chunked_array/object/trait.NumericNative.html @@ -1,3 +1,3 @@ NumericNative in polars::chunked_array::object - Rust
pub trait NumericNative: PartialOrd<Self> + NativeType + Num<Output = Self, Output = Self, Output = Self, Output = Self, Output = Self> + NumCast + Zero + Simd + Simd8 + Sum<Self> + Add<Self> + Sub<Self> + Mul<Self> + Div<Self> + Rem<Self> + AddAssign<Self> + SubAssign<Self> + Bounded + FromPrimitive + IsFloat + ArrayArithmetics {
     type POLARSTYPE: PolarsNumericType;
-}
Available on crate feature object only.

Required Associated Types§

Implementations on Foreign Types§

source§

impl NumericNative for i8

source§

impl NumericNative for f64

source§

impl NumericNative for i16

source§

impl NumericNative for u64

source§

impl NumericNative for i64

source§

impl NumericNative for u32

source§

impl NumericNative for f32

source§

impl NumericNative for i32

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.
source§

impl NumericNative for u16

source§

impl NumericNative for u8

Implementors§

\ No newline at end of file +}
Available on crate feature object only.

Required Associated Types§

source

type POLARSTYPE: PolarsNumericType

Implementations on Foreign Types§

source§

impl NumericNative for u8

§

type POLARSTYPE = UInt8Type

source§

impl NumericNative for u64

§

type POLARSTYPE = UInt64Type

source§

impl NumericNative for i32

§

type POLARSTYPE = Int32Type

source§

impl NumericNative for i16

§

type POLARSTYPE = Int16Type

source§

impl NumericNative for f32

§

type POLARSTYPE = Float32Type

source§

impl NumericNative for i64

§

type POLARSTYPE = Int64Type

source§

impl NumericNative for u16

§

type POLARSTYPE = UInt16Type

source§

impl NumericNative for i8

§

type POLARSTYPE = Int8Type

source§

impl NumericNative for u32

§

type POLARSTYPE = UInt32Type

source§

impl NumericNative for f64

§

type POLARSTYPE = Float64Type

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.
§

type POLARSTYPE = Int128Type

Implementors§

\ No newline at end of file diff --git a/polars/chunked_array/object/trait.SeriesTrait.html b/polars/chunked_array/object/trait.SeriesTrait.html index 89befca233ec..5dd7713309bd 100644 --- a/polars/chunked_array/object/trait.SeriesTrait.html +++ b/polars/chunked_array/object/trait.SeriesTrait.html @@ -257,4 +257,4 @@
Arguments
source

fn tile(&self, _n: usize) -> Series

Implementations§

source§

impl<'a> dyn SeriesTrait + 'a

source

pub fn unpack<N>(&self) -> Result<&ChunkedArray<N>, PolarsError>where N: 'static + PolarsDataType,

Trait Implementations§

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere T: 'static + PolarsDataType,

source§

fn as_mut(&mut self) -> &mut ChunkedArray<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere - T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.

Implementors§

\ No newline at end of file + T: 'static + PolarsDataType,
source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.

Implementors§

\ No newline at end of file diff --git a/polars/chunked_array/object/trait.ValueSize.html b/polars/chunked_array/object/trait.ValueSize.html index 393ec74eb260..851b3eaa5469 100644 --- a/polars/chunked_array/object/trait.ValueSize.html +++ b/polars/chunked_array/object/trait.ValueSize.html @@ -3,4 +3,4 @@ fn get_values_size(&self) -> usize; }
Available on crate feature object only.

Required Methods§

source

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy

-

Implementations on Foreign Types§

source§

impl ValueSize for Box<dyn Array, Global>

source§

fn get_values_size(&self) -> usize

Implementors§

source§

impl ValueSize for BinaryArray<i64>

source§

impl ValueSize for FixedSizeListArray

source§

impl ValueSize for ListArray<i64>

source§

impl ValueSize for Utf8Array<i64>

source§

impl ValueSize for ChunkedArray<BinaryType>

source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ValueSize for ChunkedArray<ListType>

source§

impl ValueSize for ChunkedArray<Utf8Type>

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl ValueSize for Box<dyn Array, Global>

source§

fn get_values_size(&self) -> usize

Implementors§

source§

impl ValueSize for BinaryArray<i64>

source§

impl ValueSize for FixedSizeListArray

source§

impl ValueSize for ListArray<i64>

source§

impl ValueSize for Utf8Array<i64>

source§

impl ValueSize for ChunkedArray<BinaryType>

source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ValueSize for ChunkedArray<ListType>

source§

impl ValueSize for ChunkedArray<Utf8Type>

\ No newline at end of file diff --git a/polars/chunked_array/ops/enum.TakeIdx.html b/polars/chunked_array/ops/enum.TakeIdx.html index a307593c80fb..7e7db20c3f4f 100644 --- a/polars/chunked_array/ops/enum.TakeIdx.html +++ b/polars/chunked_array/ops/enum.TakeIdx.html @@ -9,16 +9,16 @@
source§

fn from( slice: &'a [u32] ) -> TakeIdx<'a, Map<Iter<'a, u32>, fn(_: &u32) -> usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

-
source§

fn from( +

source§

fn from( ca: &'a ChunkedArray<UInt32Type> ) -> TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, u32>, fn(_: &u32) -> usize>, Once<Option<usize>>>

Conversion from &[IdxSize] to Unchecked TakeIdx

-
source§

fn from( +

source§

fn from( slice: &'a Vec<u32, Global> ) -> TakeIdx<'a, Map<Iter<'a, u32>, fn(_: &u32) -> usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, I, Once<Option<usize>>>where I: TakeIterator,

Conversion from Iterator<Item=usize> to Unchecked TakeIdx

-
source§

fn from(iter: I) -> TakeIdx<'a, I, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, Once<usize>, I>where +
source§

fn from(iter: I) -> TakeIdx<'a, I, Once<Option<usize>>>

Converts to this type from the input type.

source§

impl<'a, I> From<I> for TakeIdx<'a, Once<usize>, I>where I: TakeIteratorNulls,

Conversion from [Iterator<Item=Option<usize>>] to Unchecked TakeIdx

-
source§

fn from(iter: I) -> TakeIdx<'a, Once<usize>, I>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls>where +

source§

fn from(iter: I) -> TakeIdx<'a, Once<usize>, I>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls>where I: RefUnwindSafe, INulls: RefUnwindSafe,

§

impl<'a, I, INulls> Send for TakeIdx<'a, I, INulls>where I: Send, diff --git a/polars/chunked_array/struct.ChunkedArray.html b/polars/chunked_array/struct.ChunkedArray.html index 667382d61ddc..854f1d1bf5f3 100644 --- a/polars/chunked_array/struct.ChunkedArray.html +++ b/polars/chunked_array/struct.ChunkedArray.html @@ -397,70 +397,70 @@
Safety
self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as Add<&ChunkedArray<BooleanType>>>::Output

Performs the + operation. Read more
source§

impl<T> Add<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as Add<&ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<Utf8Type>> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( +) -> <&ChunkedArray<T> as Add<&ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<Utf8Type>> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( self, rhs: &ChunkedArray<Utf8Type> -) -> <&ChunkedArray<Utf8Type> as Add<&ChunkedArray<Utf8Type>>>::Output

Performs the + operation. Read more
source§

impl Add<&str> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &str) -> <&ChunkedArray<Utf8Type> as Add<&str>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add( +) -> <&ChunkedArray<Utf8Type> as Add<&ChunkedArray<Utf8Type>>>::Output

Performs the + operation. Read more
source§

impl Add<&str> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &str) -> <&ChunkedArray<Utf8Type> as Add<&str>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<BinaryType> -) -> <ChunkedArray<BinaryType> as Add<ChunkedArray<BinaryType>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add( +) -> <ChunkedArray<BinaryType> as Add<ChunkedArray<BinaryType>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<BooleanType> ) -> <ChunkedArray<BooleanType> as Add<ChunkedArray<BooleanType>>>::Output

Performs the + operation. Read more
source§

impl<T> Add<ChunkedArray<T>> for ChunkedArray<T>where T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<T> -) -> <ChunkedArray<T> as Add<ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( +) -> <ChunkedArray<T> as Add<ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<Utf8Type> ) -> <ChunkedArray<Utf8Type> as Add<ChunkedArray<Utf8Type>>>::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <&ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <&ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl AggList for ChunkedArray<BinaryType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<BooleanType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<ListType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<T> AggList for ChunkedArray<ObjectType<T>>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl AggList for ChunkedArray<BinaryType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<BooleanType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<ListType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<T> AggList for ChunkedArray<ObjectType<T>>where T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<T> AggList for ChunkedArray<T>where T: PolarsNumericType, - ChunkedArray<T>: IntoSeries,

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<Utf8Type>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ArrayNameSpace for ChunkedArray<FixedSizeListType>

source§

impl AsArray for ChunkedArray<FixedSizeListType>

source§

impl AsBinary for ChunkedArray<BinaryType>

source§

impl AsList for ChunkedArray<ListType>

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere + ChunkedArray<T>: IntoSeries,

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<Utf8Type>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ArrayNameSpace for ChunkedArray<FixedSizeListType>

source§

impl AsArray for ChunkedArray<FixedSizeListType>

source§

impl AsBinary for ChunkedArray<BinaryType>

source§

impl AsList for ChunkedArray<ListType>

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere T: 'static + PolarsDataType,

source§

fn as_mut(&mut self) -> &mut ChunkedArray<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T> AsRef<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere - T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> AsRefDataType for ChunkedArray<T>where + T: PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere + T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> AsRefDataType for ChunkedArray<T>where T: PolarsDataType,

source§

impl AsUtf8 for ChunkedArray<Utf8Type>

source§

impl AsUtf8 for ChunkedArray<Utf8Type>

source§

impl BinaryNameSpaceImpl for ChunkedArray<BinaryType>

source§

fn contains(&self, lit: &[u8]) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if binary contains given literal
source§

fn contains_literal( &self, lit: &[u8] -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if strings contain a given literal
source§

fn ends_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings ends with a substring
source§

fn starts_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings starts with a substring
source§

impl BitAnd<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if strings contain a given literal
source§

fn ends_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings ends with a substring
source§

fn starts_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings starts with a substring
source§

impl BitAnd<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as BitAnd<&ChunkedArray<BooleanType>>>::Output

Performs the & operation. Read more
source§

impl<T> BitAnd<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: BitAnd<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the & operator.
source§

fn bitand( + <T as PolarsNumericType>::Native: BitAnd<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as BitAnd<&ChunkedArray<T>>>::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( +) -> <&ChunkedArray<T> as BitAnd<&ChunkedArray<T>>>::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: ChunkedArray<BooleanType> -) -> <ChunkedArray<BooleanType> as BitAnd<ChunkedArray<BooleanType>>>::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( +) -> <ChunkedArray<BooleanType> as BitAnd<ChunkedArray<BooleanType>>>::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as BitOr<&ChunkedArray<BooleanType>>>::Output

Performs the | operation. Read more
source§

impl<T> BitOr<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: BitOr<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the | operator.
source§

fn bitor( + <T as PolarsNumericType>::Native: BitOr<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as BitOr<&ChunkedArray<T>>>::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( +) -> <&ChunkedArray<T> as BitOr<&ChunkedArray<T>>>::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: ChunkedArray<BooleanType> -) -> <ChunkedArray<BooleanType> as BitOr<ChunkedArray<BooleanType>>>::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( +) -> <ChunkedArray<BooleanType> as BitOr<ChunkedArray<BooleanType>>>::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as BitXor<&ChunkedArray<BooleanType>>>::Output

Performs the ^ operation. Read more
source§

impl<T> BitXor<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: BitXor<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the ^ operator.
source§

fn bitxor( + <T as PolarsNumericType>::Native: BitXor<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as BitXor<&ChunkedArray<T>>>::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( +) -> <&ChunkedArray<T> as BitXor<&ChunkedArray<T>>>::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: ChunkedArray<BooleanType> ) -> <ChunkedArray<BooleanType> as BitXor<ChunkedArray<BooleanType>>>::Output

Performs the ^ operation. Read more
source§

impl<T> ChunkAgg<<T as PolarsNumericType>::Native> for ChunkedArray<T>where @@ -469,47 +469,47 @@
Safety
Returns None if not implemented for T. If the array is empty, 0 is returned

source§

fn min(&self) -> Option<<T as PolarsNumericType>::Native>

source§

fn max(&self) -> Option<<T as PolarsNumericType>::Native>

Returns the maximum value in the array, according to the natural order. Returns None if the array is empty or only contains null values.
source§

fn mean(&self) -> Option<f64>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

impl ChunkAggSeries for ChunkedArray<BinaryType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<BooleanType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<ListType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl<T> ChunkAggSeries for ChunkedArray<ObjectType<T>>where +Returns None if the array is empty or only contains null values.

source§

impl ChunkAggSeries for ChunkedArray<BinaryType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<BooleanType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<ListType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl<T> ChunkAggSeries for ChunkedArray<ObjectType<T>>where T: PolarsObject,

Available on crate feature object only.
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl<T> ChunkAggSeries for ChunkedArray<T>where T: PolarsNumericType, <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>, - ChunkedArray<T>: IntoSeries,

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<Utf8Type>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for ChunkedArray<BinaryType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<BooleanType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. + ChunkedArray<T>: IntoSeries,
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<Utf8Type>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for ChunkedArray<BinaryType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<BooleanType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<ListType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<T>where - T: PolarsNumericType,

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<Utf8Type>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<'a> ChunkApply<'a, &'a [u8], Cow<'a, [u8]>> for ChunkedArray<BinaryType>

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where +If you need to use this slightly performant, cast Categorical to UInt32 Read more

source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<ListType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<T>where + T: PolarsNumericType,

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<Utf8Type>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<'a> ChunkApply<'a, &'a [u8], Cow<'a, [u8]>> for ChunkedArray<BinaryType>

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(&'a [u8]) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(Option<&'a [u8]>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where F: Fn(&'a [u8]) -> Cow<'a, [u8]> + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<BinaryType>, PolarsError>where - F: Fn(&'a [u8]) -> Result<Cow<'a, [u8]>, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where - F: Fn(Option<&'a [u8]>) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where - F: Fn((usize, &'a [u8])) -> Cow<'a, [u8]> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where - F: Fn((usize, Option<&'a [u8]>)) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where +than the closure application. Often it is. Read more

source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<BinaryType>, PolarsError>where + F: Fn(&'a [u8]) -> Result<Cow<'a, [u8]>, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + F: Fn(Option<&'a [u8]>) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + F: Fn((usize, &'a [u8])) -> Cow<'a, [u8]> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + F: Fn((usize, Option<&'a [u8]>)) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where F: Fn(Option<&'a [u8]>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a, T> ChunkApply<'a, &'a T, T> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn apply_cast_numeric<F, S>(&'a self, _f: F) -> ChunkedArray<S>where + T: PolarsObject,

Available on crate feature object only.
source§

fn apply_cast_numeric<F, S>(&'a self, _f: F) -> ChunkedArray<S>where F: Fn(&'a T) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, _f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, _f: F) -> ChunkedArray<S>where F: Fn(Option<&'a T>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where F: Fn(&'a T) -> T + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>( +than the closure application. Often it is. Read more

source§

fn try_apply<F>( &'a self, _f: F ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>where - F: Fn(&'a T) -> Result<T, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where - F: Fn(Option<&'a T>) -> Option<T> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where - F: Fn((usize, &'a T)) -> T + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where - F: Fn((usize, Option<&'a T>)) -> Option<T> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where + F: Fn(&'a T) -> Result<T, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where + F: Fn(Option<&'a T>) -> Option<T> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where + F: Fn((usize, &'a T)) -> T + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where + F: Fn((usize, Option<&'a T>)) -> Option<T> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where F: Fn(Option<&'a T>, &V) -> V,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, &'a str, Cow<'a, str>> for ChunkedArray<Utf8Type>

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(&'a str) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive @@ -523,48 +523,48 @@
Safety
F: Fn((usize, &'a str)) -> Cow<'a, str> + Copy,
Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<Utf8Type>where F: Fn((usize, Option<&'a str>)) -> Option<Cow<'a, str>> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where F: Fn(Option<&'a str>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a, T> ChunkApply<'a, <T as PolarsNumericType>::Native, <T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where + T: PolarsNumericType,

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(<T as PolarsNumericType>::Native) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Option<<T as PolarsNumericType>::Native>) -> <S as PolarsNumericType>::Native, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<T>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<T>where F: Fn(<T as PolarsNumericType>::Native) -> <T as PolarsNumericType>::Native + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<T>, PolarsError>where - F: Fn(<T as PolarsNumericType>::Native) -> Result<<T as PolarsNumericType>::Native, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where - F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<T>where - F: Fn((usize, <T as PolarsNumericType>::Native)) -> <T as PolarsNumericType>::Native + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where - F: Fn((usize, Option<<T as PolarsNumericType>::Native>)) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where - F: Fn(Option<<T as PolarsNumericType>::Native>, &V) -> V,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, Series, Series> for ChunkedArray<ListType>

source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ListType>where +than the closure application. Often it is. Read more

source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<T>, PolarsError>where + F: Fn(<T as PolarsNumericType>::Native) -> Result<<T as PolarsNumericType>::Native, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where + F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<T>where + F: Fn((usize, <T as PolarsNumericType>::Native)) -> <T as PolarsNumericType>::Native + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where + F: Fn((usize, Option<<T as PolarsNumericType>::Native>)) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where + F: Fn(Option<<T as PolarsNumericType>::Native>, &V) -> V,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, Series, Series> for ChunkedArray<ListType>

source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn(Series) -> Series + Copy,

Apply a closure F elementwise.

-
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<ListType>where +

source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn((usize, Series)) -> Series + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.

-
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where +

source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn((usize, Option<Series>)) -> Option<Series> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.

-
source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where +

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Series) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Option<Series>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<ListType>, PolarsError>where - F: Fn(Series) -> Result<Series, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where - F: Fn(Option<Series>) -> Option<Series> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where - F: Fn(Option<Series>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<ListType>, PolarsError>where + F: Fn(Series) -> Result<Series, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where + F: Fn(Option<Series>) -> Option<Series> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where + F: Fn(Option<Series>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(bool) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Option<bool>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&self, f: F) -> ChunkedArray<BooleanType>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&self, f: F) -> ChunkedArray<BooleanType>where F: Fn(bool) -> bool + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>(&self, f: F) -> Result<ChunkedArray<BooleanType>, PolarsError>where - F: Fn(bool) -> Result<bool, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where - F: Fn(Option<bool>) -> Option<bool> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where - F: Fn((usize, bool)) -> bool + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where - F: Fn((usize, Option<bool>)) -> Option<bool> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where - F: Fn(Option<bool>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl ChunkApplyKernel<BinaryArray<i64>> for ChunkedArray<BinaryType>

source§

fn apply_kernel( +than the closure application. Often it is. Read more

source§

fn try_apply<F>(&self, f: F) -> Result<ChunkedArray<BooleanType>, PolarsError>where + F: Fn(bool) -> Result<bool, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where + F: Fn(Option<bool>) -> Option<bool> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where + F: Fn((usize, bool)) -> bool + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where + F: Fn((usize, Option<bool>)) -> Option<bool> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where + F: Fn(Option<bool>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl ChunkApplyKernel<BinaryArray<i64>> for ChunkedArray<BinaryType>

source§

fn apply_kernel( &self, f: &dyn Fn(&BinaryArray<i64>) -> Box<dyn Array, Global> -) -> ChunkedArray<BinaryType>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( +) -> ChunkedArray<BinaryType>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( &self, f: &dyn Fn(&BinaryArray<i64>) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where @@ -576,59 +576,59 @@
Safety
f: &dyn Fn(&BooleanArray) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl<T> ChunkApplyKernel<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn apply_kernel( + T: PolarsNumericType,

source§

fn apply_kernel( &self, f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array, Global> -) -> ChunkedArray<T>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( +) -> ChunkedArray<T>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( &self, f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where - S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkApplyKernel<Utf8Array<i64>> for ChunkedArray<Utf8Type>

source§

fn apply_kernel( + S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkApplyKernel<Utf8Array<i64>> for ChunkedArray<Utf8Type>

source§

fn apply_kernel( &self, f: &dyn Fn(&Utf8Array<i64>) -> Box<dyn Array, Global> -) -> ChunkedArray<Utf8Type>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( +) -> ChunkedArray<Utf8Type>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( &self, f: &dyn Fn(&Utf8Array<i64>) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where - S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for ChunkedArray<BinaryType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( + S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for ChunkedArray<BinaryType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType -) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<BooleanType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<BooleanType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType ) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.

We cannot cast anything to or from List/LargeList So this implementation casts the inner type

-
source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType ) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<ListType>

We cannot cast anything to or from List/LargeList So this implementation casts the inner type

-
source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType ) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl<T> ChunkCast for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( + T: PolarsNumericType,

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType -) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<Utf8Type>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<Utf8Type>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType -) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&[u8]> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( +) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&[u8]> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<BinaryType> -) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( +) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<BinaryType> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<BooleanType> -) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal( +) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal( &self, rhs: &ChunkedArray<BooleanType> -) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( +) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<BooleanType> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<FixedSizeListType>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = ChunkedArray<BooleanType>

source§

fn equal( +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<FixedSizeListType>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = ChunkedArray<BooleanType>

source§

fn equal( &self, rhs: &ChunkedArray<FixedSizeListType> ) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( @@ -652,28 +652,28 @@

Safety
) -> ChunkedArray<BooleanType>
Less than comparison.
source§

fn lt_eq( &self, _rhs: &ChunkedArray<FixedSizeListType> -) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ChunkedArray<ListType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( +) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ChunkedArray<ListType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<ListType> -) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( +) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<ListType> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCompare<&ChunkedArray<T>> for ChunkedArray<T>where +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCompare<&ChunkedArray<T>> for ChunkedArray<T>where T: PolarsNumericType,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<Utf8Type>> for ChunkedArray<Utf8Type>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<Utf8Type> ) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<Utf8Type> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&str> for ChunkedArray<Utf8Type>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T, Rhs> ChunkCompare<Rhs> for ChunkedArray<T>where +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&str> for ChunkedArray<Utf8Type>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T, Rhs> ChunkCompare<Rhs> for ChunkedArray<T>where T: PolarsNumericType, - Rhs: ToPrimitive,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCumAgg<T> for ChunkedArray<T>where + Rhs: ToPrimitive,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCumAgg<T> for ChunkedArray<T>where T: PolarsNumericType, - ChunkedArray<T>: FromIterator<Option<<T as PolarsNumericType>::Native>>,

source§

fn cummax(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative max computed at every element
source§

fn cummin(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative min computed at every element
source§

fn cumsum(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative sum computed at every element
source§

fn cumprod(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative product computed at every element
source§

impl ChunkExpandAtIndex<BinaryType> for ChunkedArray<BinaryType>

source§

fn new_from_index( + ChunkedArray<T>: FromIterator<Option<<T as PolarsNumericType>::Native>>,

source§

fn cummax(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative max computed at every element
source§

fn cummin(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative min computed at every element
source§

fn cumsum(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative sum computed at every element
source§

fn cumprod(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative product computed at every element
source§

impl ChunkExpandAtIndex<BinaryType> for ChunkedArray<BinaryType>

source§

fn new_from_index( &self, index: usize, length: usize -) -> ChunkedArray<BinaryType>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<BooleanType> for ChunkedArray<BooleanType>

source§

fn new_from_index( +) -> ChunkedArray<BinaryType>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<BooleanType> for ChunkedArray<BooleanType>

source§

fn new_from_index( &self, index: usize, length: usize @@ -681,90 +681,90 @@

Safety
&self, index: usize, length: usize -) -> ChunkedArray<FixedSizeListType>
Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>

Create a new ChunkedArray filled with values at that index.
source§

impl<T> ChunkExpandAtIndex<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn new_from_index( +) -> ChunkedArray<FixedSizeListType>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>

Create a new ChunkedArray filled with values at that index.
source§

impl<T> ChunkExpandAtIndex<ObjectType<T>> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn new_from_index( &self, index: usize, length: usize ) -> ChunkedArray<ObjectType<T>>

Create a new ChunkedArray filled with values at that index.
source§

impl<T> ChunkExpandAtIndex<T> for ChunkedArray<T>where T: PolarsDataType + PolarsNumericType, - ChunkedArray<T>: ChunkFull<<T as PolarsNumericType>::Native> + TakeRandom<Item = <T as PolarsNumericType>::Native>,

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<T>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn explode(&self) -> Result<Series, PolarsError>

source§

fn explode_and_offsets( + ChunkedArray<T>: ChunkFull<<T as PolarsNumericType>::Native> + TakeRandom<Item = <T as PolarsNumericType>::Native>,

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<T>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkExplode for ChunkedArray<ListType>

source§

impl ChunkExplode for ChunkedArray<Utf8Type>

source§

impl ChunkExplode for ChunkedArray<Utf8Type>

source§

impl ChunkFillNullValue<&[u8]> for ChunkedArray<BinaryType>

source§

impl ChunkFillNullValue<&[u8]> for ChunkedArray<BinaryType>

source§

fn fill_null_with_values( &self, value: &[u8] ) -> Result<ChunkedArray<BinaryType>, PolarsError>

Replace None values with a give value T.
source§

impl<T> ChunkFillNullValue<<T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn fill_null_with_values( + T: PolarsNumericType,

source§

fn fill_null_with_values( &self, value: <T as PolarsNumericType>::Native -) -> Result<ChunkedArray<T>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFillNullValue<bool> for ChunkedArray<BooleanType>

source§

fn fill_null_with_values( +) -> Result<ChunkedArray<T>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFillNullValue<bool> for ChunkedArray<BooleanType>

source§

fn fill_null_with_values( &self, value: bool -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFilter<BinaryType> for ChunkedArray<BinaryType>

source§

fn filter( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFilter<BinaryType> for ChunkedArray<BinaryType>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<BinaryType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<BooleanType> for ChunkedArray<BooleanType>

source§

fn filter( +) -> Result<ChunkedArray<BinaryType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<BooleanType> for ChunkedArray<BooleanType>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn filter( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<ListType> for ChunkedArray<ListType>

source§

fn filter( +) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<ListType> for ChunkedArray<ListType>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<ListType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<T> ChunkFilter<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn filter( + T: PolarsObject,

Available on crate feature object only.
source§

fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>where ChunkedArray<ObjectType<T>>: Sized,

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<T> ChunkFilter<T> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn filter( + T: PolarsNumericType,

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<T>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<'a> ChunkFull<&'a [u8]> for ChunkedArray<BinaryType>

source§

fn full(name: &str, value: &'a [u8], length: usize) -> ChunkedArray<BinaryType>

Create a ChunkedArray with a single value.
source§

impl<'a> ChunkFull<&'a str> for ChunkedArray<Utf8Type>

source§

fn full(name: &str, value: &'a str, length: usize) -> ChunkedArray<Utf8Type>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn full( +) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<'a> ChunkFull<&'a [u8]> for ChunkedArray<BinaryType>

source§

fn full(name: &str, value: &'a [u8], length: usize) -> ChunkedArray<BinaryType>

Create a ChunkedArray with a single value.
source§

impl<'a> ChunkFull<&'a str> for ChunkedArray<Utf8Type>

source§

fn full(name: &str, value: &'a str, length: usize) -> ChunkedArray<Utf8Type>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn full( name: &str, value: &Series, length: usize -) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl<T> ChunkFull<<T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn full( +) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl<T> ChunkFull<<T as PolarsNumericType>::Native> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn full( name: &str, value: <T as PolarsNumericType>::Native, length: usize ) -> ChunkedArray<T>

Create a ChunkedArray with a single value.
source§

impl<T> ChunkFull<T> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn full(name: &str, value: T, length: usize) -> ChunkedArray<ObjectType<T>>where - ChunkedArray<ObjectType<T>>: Sized,

Create a ChunkedArray with a single value.
source§

impl ChunkFull<bool> for ChunkedArray<BooleanType>

source§

fn full(name: &str, value: bool, length: usize) -> ChunkedArray<BooleanType>

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for ChunkedArray<BinaryType>

source§

impl ChunkFullNull for ChunkedArray<BooleanType>

source§

impl ChunkFullNull for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkFullNull for ChunkedArray<ListType>

source§

impl<T> ChunkFullNull for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

impl<T> ChunkFullNull for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn full_null(name: &str, length: usize) -> ChunkedArray<T>

source§

impl ChunkFullNull for ChunkedArray<Utf8Type>

source§

impl<T> ChunkPeaks for ChunkedArray<T>where + T: PolarsObject,

Available on crate feature object only.
source§

fn full(name: &str, value: T, length: usize) -> ChunkedArray<ObjectType<T>>where + ChunkedArray<ObjectType<T>>: Sized,

Create a ChunkedArray with a single value.
source§

impl ChunkFull<bool> for ChunkedArray<BooleanType>

source§

fn full(name: &str, value: bool, length: usize) -> ChunkedArray<BooleanType>

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for ChunkedArray<BinaryType>

source§

impl ChunkFullNull for ChunkedArray<BooleanType>

source§

impl ChunkFullNull for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkFullNull for ChunkedArray<ListType>

source§

impl<T> ChunkFullNull for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

impl<T> ChunkFullNull for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn full_null(name: &str, length: usize) -> ChunkedArray<T>

source§

impl ChunkFullNull for ChunkedArray<Utf8Type>

source§

impl<T> ChunkPeaks for ChunkedArray<T>where T: PolarsNumericType,

source§

fn peak_max(&self) -> ChunkedArray<BooleanType>

Get a boolean mask of the local maximum peaks.

source§

fn peak_min(&self) -> ChunkedArray<BooleanType>

Get a boolean mask of the local minimum peaks.

-
source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +

source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. Returns None if the array is empty or only contains null values.
source§

impl<T> ChunkQuantile<Series> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( + T: PolarsObject,

Available on crate feature object only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<String> for ChunkedArray<Utf8Type>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<String> for ChunkedArray<Utf8Type>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions @@ -775,29 +775,29 @@

Safety
_quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>
Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<f32> for ChunkedArray<Float32Type>

source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<f32> for ChunkedArray<Float32Type>

source§

fn quantile( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Option<f32>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f32>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<f64> for ChunkedArray<Float64Type>

source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

fn median(&self) -> Option<f32>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<f64> for ChunkedArray<Float64Type>

source§

fn quantile( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Option<f64>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. Returns None if the array is empty or only contains null values.
source§

impl<T> ChunkQuantile<f64> for ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: Ord,

source§

fn quantile( + <T as PolarsNumericType>::Native: Ord,

source§

fn quantile( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Option<f64>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

impl ChunkReverse for ChunkedArray<BinaryType>

source§

fn reverse(&self) -> ChunkedArray<BinaryType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<BooleanType>

source§

fn reverse(&self) -> ChunkedArray<BooleanType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn reverse(&self) -> ChunkedArray<FixedSizeListType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<ListType>

source§

fn reverse(&self) -> ChunkedArray<ListType>

Return a reversed version of this array.
source§

impl<T> ChunkReverse for ChunkedArray<ObjectType<T>>where +Returns None if the array is empty or only contains null values.

source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

impl ChunkReverse for ChunkedArray<BinaryType>

source§

fn reverse(&self) -> ChunkedArray<BinaryType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<BooleanType>

source§

fn reverse(&self) -> ChunkedArray<BooleanType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn reverse(&self) -> ChunkedArray<FixedSizeListType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<ListType>

source§

fn reverse(&self) -> ChunkedArray<ListType>

Return a reversed version of this array.
source§

impl<T> ChunkReverse for ChunkedArray<ObjectType<T>>where T: PolarsObject,

Available on crate feature object only.
source§

fn reverse(&self) -> ChunkedArray<ObjectType<T>>

Return a reversed version of this array.
source§

impl<T> ChunkReverse for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn reverse(&self) -> ChunkedArray<T>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<Utf8Type>

source§

fn reverse(&self) -> ChunkedArray<Utf8Type>

Return a reversed version of this array.
source§

impl<T> ChunkRollApply for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn reverse(&self) -> ChunkedArray<T>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<Utf8Type>

source§

fn reverse(&self) -> ChunkedArray<Utf8Type>

Return a reversed version of this array.
source§

impl<T> ChunkRollApply for ChunkedArray<T>where T: PolarsNumericType, ChunkedArray<T>: IntoSeries,

source§

fn rolling_apply( &self, @@ -822,79 +822,79 @@

Safety
mask: &ChunkedArray<BooleanType>, value: Option<&'a [u8]> ) -> Result<ChunkedArray<BinaryType>, PolarsError>where - ChunkedArray<BinaryType>: Sized,
Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, &'a str, String> for ChunkedArray<Utf8Type>

source§

fn set_at_idx<I>( + ChunkedArray<BinaryType>: Sized,

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, &'a str, String> for ChunkedArray<Utf8Type>

source§

fn set_at_idx<I>( &'a self, idx: I, opt_value: Option<&'a str> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where I: IntoIterator<Item = u32>, - ChunkedArray<Utf8Type>: Sized,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( + ChunkedArray<Utf8Type>: Sized,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( &'a self, idx: I, f: F ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where I: IntoIterator<Item = u32>, ChunkedArray<Utf8Type>: Sized, - F: Fn(Option<&'a str>) -> Option<String>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( + F: Fn(Option<&'a str>) -> Option<String>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<&'a str> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where ChunkedArray<Utf8Type>: Sized,

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a, T> ChunkSet<'a, <T as PolarsNumericType>::Native, <T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn set_at_idx<I>( + T: PolarsNumericType,

source§

fn set_at_idx<I>( &'a self, idx: I, value: Option<<T as PolarsNumericType>::Native> ) -> Result<ChunkedArray<T>, PolarsError>where - I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( + I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( &'a self, idx: I, f: F ) -> Result<ChunkedArray<T>, PolarsError>where I: IntoIterator<Item = u32>, - F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( + F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<<T as PolarsNumericType>::Native> -) -> Result<ChunkedArray<T>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn set_at_idx<I>( +) -> Result<ChunkedArray<T>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn set_at_idx<I>( &'a self, idx: I, value: Option<bool> ) -> Result<ChunkedArray<BooleanType>, PolarsError>where - I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( + I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( &'a self, idx: I, f: F ) -> Result<ChunkedArray<BooleanType>, PolarsError>where I: IntoIterator<Item = u32>, - F: Fn(Option<bool>) -> Option<bool>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( + F: Fn(Option<bool>) -> Option<bool>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<bool> -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl ChunkShift<BinaryType> for ChunkedArray<BinaryType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BinaryType>

source§

impl ChunkShift<BooleanType> for ChunkedArray<BooleanType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BooleanType>

source§

impl ChunkShift<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkShift<ListType> for ChunkedArray<ListType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<ListType>

source§

impl<T> ChunkShift<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn shift(&self, periods: i64) -> ChunkedArray<ObjectType<T>>

source§

impl<T> ChunkShift<T> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn shift(&self, periods: i64) -> ChunkedArray<T>

source§

impl ChunkShift<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn shift(&self, periods: i64) -> ChunkedArray<Utf8Type>

source§

impl ChunkShiftFill<BinaryType, Option<&[u8]>> for ChunkedArray<BinaryType>

source§

fn shift_and_fill( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl ChunkShift<BinaryType> for ChunkedArray<BinaryType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BinaryType>

source§

impl ChunkShift<BooleanType> for ChunkedArray<BooleanType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BooleanType>

source§

impl ChunkShift<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkShift<ListType> for ChunkedArray<ListType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<ListType>

source§

impl<T> ChunkShift<ObjectType<T>> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn shift(&self, periods: i64) -> ChunkedArray<ObjectType<T>>

source§

impl<T> ChunkShift<T> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn shift(&self, periods: i64) -> ChunkedArray<T>

source§

impl ChunkShift<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn shift(&self, periods: i64) -> ChunkedArray<Utf8Type>

source§

impl ChunkShiftFill<BinaryType, Option<&[u8]>> for ChunkedArray<BinaryType>

source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<&[u8]> ) -> ChunkedArray<BinaryType>

Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkShiftFill<BooleanType, Option<bool>> for ChunkedArray<BooleanType>

source§

fn shift_and_fill( +with fill_value.

source§

impl ChunkShiftFill<BooleanType, Option<bool>> for ChunkedArray<BooleanType>

source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<bool> ) -> ChunkedArray<BooleanType>

Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn shift_and_fill( +with fill_value.

source§

impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<&Series> ) -> ChunkedArray<FixedSizeListType>

Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkShiftFill<ListType, Option<&Series>> for ChunkedArray<ListType>

source§

fn shift_and_fill( +with fill_value.

source§

impl ChunkShiftFill<ListType, Option<&Series>> for ChunkedArray<ListType>

source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<&Series> ) -> ChunkedArray<ListType>

Shift the values by a given period and fill the parts that will be empty due to this operation with fill_value.
source§

impl<T> ChunkShiftFill<ObjectType<T>, Option<ObjectType<T>>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn shift_and_fill( + T: PolarsObject,

Available on crate feature object only.
source§

fn shift_and_fill( &self, _periods: i64, _fill_value: Option<ObjectType<T>> @@ -910,52 +910,52 @@

Safety
periods: i64, fill_value: Option<&str> ) -> ChunkedArray<Utf8Type>
Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkSort<BinaryType> for ChunkedArray<BinaryType>

source§

fn arg_sort_multiple( +with fill_value.

source§

impl ChunkSort<BinaryType> for ChunkedArray<BinaryType>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. On the implementation of ChunkedArray<T> for numeric types, we assume that all numeric Series are of the same type.

In this case we assume that all numeric Series are f64 types. The caller needs to uphold this contract. If not, it will panic.

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BinaryType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BinaryType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<BooleanType> for ChunkedArray<BooleanType>

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BooleanType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BooleanType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

fn arg_sort_multiple( +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BinaryType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BinaryType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<BooleanType> for ChunkedArray<BooleanType>

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BooleanType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BooleanType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Retrieve the indexes need to sort this and the other arrays.
source§

impl ChunkSort<Float32Type> for ChunkedArray<Float32Type>

source§

fn arg_sort_multiple( +) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Retrieve the indexes need to sort this and the other arrays.
source§

impl ChunkSort<Float32Type> for ChunkedArray<Float32Type>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions ) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float32Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float32Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Float64Type> for ChunkedArray<Float64Type>

source§

fn arg_sort_multiple( +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float32Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float32Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Float64Type> for ChunkedArray<Float64Type>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float64Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float64Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl<T> ChunkSort<T> for ChunkedArray<T>where +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float64Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float64Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl<T> ChunkSort<T> for ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: Default + Ord,

source§

fn arg_sort_multiple( + <T as PolarsNumericType>::Native: Default + Ord,

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<T>

source§

fn sort(&self, descending: bool) -> ChunkedArray<T>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<T>

source§

fn sort(&self, descending: bool) -> ChunkedArray<T>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. On the implementation of ChunkedArray<T> for numeric types, we assume that all numeric Series are of the same type.

In this case we assume that all numeric Series are f64 types. The caller needs to uphold this contract. If not, it will panic.

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Utf8Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Utf8Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkTake for ChunkedArray<BinaryType>

source§

unsafe fn take_unchecked<I, INulls>( +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Utf8Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Utf8Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkTake for ChunkedArray<BinaryType>

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<BinaryType>where ChunkedArray<BinaryType>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<BinaryType>, PolarsError>where @@ -963,13 +963,13 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkTake for ChunkedArray<BooleanType>

source§

unsafe fn take_unchecked<I, INulls>( +by reference.

source§

impl ChunkTake for ChunkedArray<BooleanType>

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<BooleanType>where ChunkedArray<BooleanType>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<BooleanType>, PolarsError>where @@ -977,13 +977,13 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkTake for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn take_unchecked<I, INulls>( +by reference.

source§

impl ChunkTake for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<FixedSizeListType>where ChunkedArray<FixedSizeListType>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>where @@ -1006,13 +1006,13 @@
Safety
INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory by reference.
source§

impl<T> ChunkTake for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn take_unchecked<I, INulls>( + T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<ObjectType<T>>where ChunkedArray<ObjectType<T>>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>where @@ -1021,13 +1021,13 @@
Safety
INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory by reference.
source§

impl<T> ChunkTake for ChunkedArray<T>where - T: PolarsNumericType,

source§

unsafe fn take_unchecked<I, INulls>( + T: PolarsNumericType,

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<T>where ChunkedArray<T>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<T>, PolarsError>where @@ -1035,13 +1035,13 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkTake for ChunkedArray<Utf8Type>

source§

unsafe fn take_unchecked<I, INulls>( +by reference.

source§

impl ChunkTake for ChunkedArray<Utf8Type>

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<Utf8Type>where ChunkedArray<Utf8Type>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where @@ -1049,171 +1049,171 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkUnique<BinaryType> for ChunkedArray<BinaryType>

source§

fn unique(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<BooleanType> for ChunkedArray<BooleanType>

source§

fn unique(&self) -> Result<ChunkedArray<BooleanType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Float32Type> for ChunkedArray<Float32Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl ChunkUnique<Float64Type> for ChunkedArray<Float64Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl<T> ChunkUnique<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn unique(&self) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl<T> ChunkUnique<T> for ChunkedArray<T>where +by reference.

source§

impl ChunkUnique<BinaryType> for ChunkedArray<BinaryType>

source§

fn unique(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<BooleanType> for ChunkedArray<BooleanType>

source§

fn unique(&self) -> Result<ChunkedArray<BooleanType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Float32Type> for ChunkedArray<Float32Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl ChunkUnique<Float64Type> for ChunkedArray<Float64Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl<T> ChunkUnique<ObjectType<T>> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn unique(&self) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl<T> ChunkUnique<T> for ChunkedArray<T>where T: PolarsIntegerType, <T as PolarsNumericType>::Native: Hash + Eq + Ord, - ChunkedArray<T>: IntoSeries,

source§

fn unique(&self) -> Result<ChunkedArray<T>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn unique(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<String> for ChunkedArray<Utf8Type>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<bool> for ChunkedArray<BooleanType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f32> for ChunkedArray<Float32Type>

source§

fn var(&self, ddof: u8) -> Option<f32>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f32>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f64> for ChunkedArray<Float64Type>

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<f64> for ChunkedArray<T>where + ChunkedArray<T>: IntoSeries,

source§

fn unique(&self) -> Result<ChunkedArray<T>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn unique(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<String> for ChunkedArray<Utf8Type>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<bool> for ChunkedArray<BooleanType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f32> for ChunkedArray<Float32Type>

source§

fn var(&self, ddof: u8) -> Option<f32>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f32>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f64> for ChunkedArray<Float64Type>

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<f64> for ChunkedArray<T>where T: PolarsIntegerType, - <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkZip<BinaryType> for ChunkedArray<BinaryType>

source§

fn zip_with( + <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkZip<BinaryType> for ChunkedArray<BinaryType>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<BinaryType> ) -> Result<ChunkedArray<BinaryType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<BooleanType> for ChunkedArray<BooleanType>

source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<BooleanType> for ChunkedArray<BooleanType>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<FixedSizeListType> ) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<ListType> for ChunkedArray<ListType>

source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<ListType> for ChunkedArray<ListType>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<ListType> ) -> Result<ChunkedArray<ListType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values from other where the mask evaluates false
source§

impl<T> ChunkZip<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn zip_with( + T: PolarsObject,

Available on crate feature object only.
source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<ObjectType<T>> ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values from other where the mask evaluates false
source§

impl<T> ChunkZip<T> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn zip_with( + T: PolarsNumericType,

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<T> ) -> Result<ChunkedArray<T>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<Utf8Type> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl<'a> ChunkedSet<&'a str> for &'a ChunkedArray<Utf8Type>

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where +from other where the mask evaluates false

source§

impl<'a> ChunkedSet<&'a str> for &'a ChunkedArray<Utf8Type>

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where V: IntoIterator<Item = Option<&'a str>>,

source§

impl<T> ChunkedSet<<T as PolarsNumericType>::Native> for ChunkedArray<T>where T: PolarsOpsNumericType, - ChunkedArray<T>: IntoSeries,

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where + ChunkedArray<T>: IntoSeries,

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where V: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,

source§

impl ChunkedSet<bool> for &ChunkedArray<BooleanType>

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where V: IntoIterator<Item = Option<bool>>,

source§

impl<T> Clone for ChunkedArray<T>where - T: PolarsDataType,

source§

fn clone(&self) -> ChunkedArray<T>

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 ChunkedArray<BinaryType>

source§

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

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

impl Debug for ChunkedArray<BooleanType>

source§

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

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

impl Debug for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

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

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

impl Debug for ChunkedArray<ListType>

source§

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

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

impl<T> Debug for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

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

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

impl<T> Debug for ChunkedArray<T>where - T: PolarsNumericType,

source§

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

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

impl Debug for ChunkedArray<Utf8Type>

source§

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

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

impl<T> Default for ChunkedArray<T>where + T: PolarsDataType,

source§

fn clone(&self) -> ChunkedArray<T>

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 ChunkedArray<BinaryType>

source§

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

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

impl Debug for ChunkedArray<BooleanType>

source§

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

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

impl Debug for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

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

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

impl Debug for ChunkedArray<ListType>

source§

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

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

impl<T> Debug for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

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

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

impl<T> Debug for ChunkedArray<T>where + T: PolarsNumericType,

source§

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

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

impl Debug for ChunkedArray<Utf8Type>

source§

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

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

impl<T> Default for ChunkedArray<T>where T: PolarsDataType,

source§

fn default() -> ChunkedArray<T>

Returns the “default value” for a type. Read more
source§

impl<T> Div<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( self, rhs: &ChunkedArray<T> ) -> <&ChunkedArray<T> as Div<&ChunkedArray<T>>>::Output

Performs the / operation. Read more
source§

impl<T> Div<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( self, rhs: ChunkedArray<T> ) -> <ChunkedArray<T> as Div<ChunkedArray<T>>>::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for &ChunkedArray<T>where T: PolarsNumericType, N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> <&ChunkedArray<T> as Div<N>>::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> <ChunkedArray<T> as Div<N>>::Output

Performs the / operation. Read more
source§

impl<T> Drop for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> <ChunkedArray<T> as Div<N>>::Output

Performs the / operation. Read more
source§

impl<T> Drop for ChunkedArray<T>where T: PolarsDataType,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T> From<&[<T as PolarsNumericType>::Native]> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from(slice: &[<T as PolarsNumericType>::Native]) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: &'a ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<<T as PolarsNumericType>::Native>, Global>where - T: PolarsNumericType,

source§

fn from( + T: PolarsNumericType,

source§

fn from(slice: &[<T as PolarsNumericType>::Native]) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: &'a ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<<T as PolarsNumericType>::Native>, Global>where + T: PolarsNumericType,

source§

fn from( ca: &'a ChunkedArray<T> ) -> Vec<Option<<T as PolarsNumericType>::Native>, Global>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

-
source§

fn from( ca: &'a ChunkedArray<UInt32Type> ) -> TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<Utf8Type>> for Vec<Option<&'a str>, Global>

From trait

-
source§

fn from(ca: &'a ChunkedArray<Utf8Type>) -> Vec<Option<&'a str>, Global>

Converts to this type from the input type.
source§

impl From<(&str, BinaryArray<i64>)> for ChunkedArray<BinaryType>

source§

fn from(tpl: (&str, BinaryArray<i64>)) -> ChunkedArray<BinaryType>

Converts to this type from the input type.
source§

impl From<(&str, BooleanArray)> for ChunkedArray<BooleanType>

source§

fn from(tpl: (&str, BooleanArray)) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl<T> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from(ca: &'a ChunkedArray<Utf8Type>) -> Vec<Option<&'a str>, Global>

Converts to this type from the input type.
source§

impl From<(&str, BinaryArray<i64>)> for ChunkedArray<BinaryType>

source§

fn from(tpl: (&str, BinaryArray<i64>)) -> ChunkedArray<BinaryType>

Converts to this type from the input type.
source§

impl From<(&str, BooleanArray)> for ChunkedArray<BooleanType>

source§

fn from(tpl: (&str, BooleanArray)) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl<T> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from( tpl: (&str, PrimitiveArray<<T as PolarsNumericType>::Native>) -) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl From<(&str, Utf8Array<i64>)> for ChunkedArray<Utf8Type>

source§

fn from(tpl: (&str, Utf8Array<i64>)) -> ChunkedArray<Utf8Type>

Converts to this type from the input type.
source§

impl From<BooleanArray> for ChunkedArray<BooleanType>

source§

fn from(arr: BooleanArray) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl<T> From<ChunkedArray<T>> for Serieswhere +) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl From<(&str, Utf8Array<i64>)> for ChunkedArray<Utf8Type>

source§

fn from(tpl: (&str, Utf8Array<i64>)) -> ChunkedArray<Utf8Type>

Converts to this type from the input type.
source§

impl From<BooleanArray> for ChunkedArray<BooleanType>

source§

fn from(arr: BooleanArray) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl<T> From<ChunkedArray<T>> for Serieswhere T: PolarsDataType, - ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>, Global>

source§

fn from(ca: ChunkedArray<Utf8Type>) -> Vec<Option<String>, Global>

Converts to this type from the input type.
source§

impl<T> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from(a: PrimitiveArray<<T as PolarsNumericType>::Native>) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where + ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>, Global>

source§

fn from(ca: ChunkedArray<Utf8Type>) -> Vec<Option<String>, Global>

Converts to this type from the input type.
source§

impl<T> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from(a: PrimitiveArray<<T as PolarsNumericType>::Native>) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where I: IntoIterator<Item = (Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)>,

Creates a value from an iterator. Read more
source§

impl<T> FromIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where T: PolarsNumericType,

FromIterator trait

-
source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where - I: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Box<dyn Array, Global>>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where +

source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where + I: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Box<dyn Array, Global>>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where I: IntoIterator<Item = Option<Box<dyn Array, Global>>>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Option<Ptr>> for ChunkedArray<BinaryType>where Ptr: AsRef<[u8]>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BinaryType>where I: IntoIterator<Item = Option<Ptr>>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Option<Ptr>> for ChunkedArray<Utf8Type>where - Ptr: AsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Option<Ptr>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where + Ptr: AsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoIterator<Item = Option<Ptr>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where I: IntoIterator<Item = Option<Series>>,

Creates a value from an iterator. Read more
source§

impl<T> FromIterator<Option<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn from_iter<I>(iter: I) -> ChunkedArray<ObjectType<T>>where - I: IntoIterator<Item = Option<T>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + T: PolarsObject,

Available on crate feature object only.
source§

fn from_iter<I>(iter: I) -> ChunkedArray<ObjectType<T>>where + I: IntoIterator<Item = Option<T>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoIterator<Item = Option<bool>>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ChunkedArray<BinaryType>where - Ptr: PolarsAsRef<[u8]>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BinaryType>where + Ptr: PolarsAsRef<[u8]>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BinaryType>where I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ChunkedArray<ListType>where - Ptr: Borrow<Series>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where + Ptr: Borrow<Series>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ChunkedArray<Utf8Type>where - Ptr: PolarsAsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + Ptr: PolarsAsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl<T> FromIteratorReversed<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where T: PolarsNumericType,

source§

impl FromIteratorReversed<Option<bool>> for ChunkedArray<BooleanType>

source§

impl<T> FromParallelIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<T>where I: IntoParallelIterator<Item = Option<<T as PolarsNumericType>::Native>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromParallelIterator<Option<Ptr>> for ChunkedArray<Utf8Type>where - Ptr: AsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoParallelIterator<Item = Option<Ptr>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<ListType>where - I: IntoParallelIterator<Item = Option<Series>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + Ptr: AsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoParallelIterator<Item = Option<Ptr>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<ListType>where + I: IntoParallelIterator<Item = Option<Series>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoParallelIterator<Item = Option<bool>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromParallelIterator<Ptr> for ChunkedArray<Utf8Type>where - Ptr: PolarsAsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoParallelIterator<Item = Ptr>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + Ptr: PolarsAsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoParallelIterator<Item = Ptr>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoParallelIterator<Item = bool>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<T> FromTrustedLenIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for ChunkedArray<BinaryType>where Ptr: AsRef<[u8]>,

source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for ChunkedArray<Utf8Type>where Ptr: AsRef<str>,

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Option<Ptr>>,

source§

impl FromTrustedLenIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<ListType>where + I: IntoIterator<Item = Option<Ptr>>,

source§

impl FromTrustedLenIterator<Option<Series>> for ChunkedArray<ListType>

source§

impl<T> FromTrustedLenIterator<Option<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<ObjectType<T>>where - I: IntoIterator<Item = Option<T>>,

source§

impl FromTrustedLenIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<BooleanType>where + T: PolarsObject,

Available on crate feature object only.
source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<ObjectType<T>>where + I: IntoIterator<Item = Option<T>>,

source§

impl FromTrustedLenIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<BinaryType>where - Ptr: PolarsAsRef<[u8]>,

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<ListType>where - Ptr: Borrow<Series>,

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<Utf8Type>where - Ptr: PolarsAsRef<str>,

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Ptr>,

source§

impl FromTrustedLenIterator<bool> for ChunkedArray<BooleanType>

source§

impl FromTrustedLenIterator<bool> for ChunkedArray<BooleanType>

source§

impl IntoGroupsProxy for ChunkedArray<BinaryType>

source§

impl IntoGroupsProxy for ChunkedArray<BinaryType>

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<BooleanType>

source§

fn group_tuples( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<BooleanType>

source§

fn group_tuples( &self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn group_tuples<'a>( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn group_tuples<'a>( &'a self, _multithreaded: bool, _sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<ListType>

source§

fn group_tuples<'a>( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<ListType>

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. * The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<T> IntoGroupsProxy for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn group_tuples( + T: PolarsObject,

Available on crate feature object only.
source§

fn group_tuples( &self, _multithreaded: bool, sorted: bool @@ -1221,53 +1221,53 @@

Safety
* The first value in the tuple is the first index of the group. * The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<T> IntoGroupsProxy for ChunkedArray<T>where T: PolarsNumericType, - <T as PolarsNumericType>::Native: NumCast,

source§

fn group_tuples( + <T as PolarsNumericType>::Native: NumCast,

source§

fn group_tuples( &self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<Utf8Type>

source§

fn group_tuples<'a>( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<Utf8Type>

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<'a> IntoIterator for &'a ChunkedArray<BinaryType>

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BinaryType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BinaryType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<BooleanType>

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BooleanType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BooleanType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl<'a> IntoIterator for &'a ChunkedArray<BinaryType>

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BinaryType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BinaryType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<BooleanType>

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BooleanType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BooleanType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( self -) -> <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<ListType>

§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<ListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ObjectType<T>> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( +) -> <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<ListType>

§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<ListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ObjectType<T>> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( self ) -> <&'a ChunkedArray<ObjectType<T>> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = Option<<T as PolarsNumericType>::Native>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<T> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<Utf8Type>

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<Utf8Type> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<Utf8Type> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoSeries for ChunkedArray<Int128Type>

source§

impl<T> IntoSeries for ChunkedArray<T>where + T: PolarsNumericType,

§

type Item = Option<<T as PolarsNumericType>::Native>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<T> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<Utf8Type>

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<Utf8Type> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<Utf8Type> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoSeries for ChunkedArray<Int128Type>

source§

impl<T> IntoSeries for ChunkedArray<T>where T: PolarsDataType + 'static, - SeriesWrap<ChunkedArray<T>>: SeriesTrait,

source§

impl<T> IntoSeriesOps for &ChunkedArray<T>where + SeriesWrap<ChunkedArray<T>>: SeriesTrait,

source§

impl<T> IntoSeriesOps for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: NumericNative,

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<BooleanType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<ListType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Utf8Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

§

type TakeRandom = TakeRandBranch2<BinaryTakeRandomSingleChunk<'a>, BinaryTakeRandom<'a>>

source§

fn take_rand( + <T as PolarsNumericType>::Native: NumericNative,

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<BooleanType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<ListType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Utf8Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

§

type TakeRandom = TakeRandBranch2<BinaryTakeRandomSingleChunk<'a>, BinaryTakeRandom<'a>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<BinaryType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<BooleanType>

§

type Item = bool

§

type TakeRandom = TakeRandBranch2<BoolTakeRandomSingleChunk<'a>, BoolTakeRandom<'a>>

source§

fn take_rand( &self -) -> <&'a ChunkedArray<BooleanType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<ListType>

§

type Item = Series

§

type TakeRandom = TakeRandBranch2<ListTakeRandomSingleChunk<'a>, ListTakeRandom<'a>>

source§

fn take_rand( +) -> <&'a ChunkedArray<BooleanType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<ListType>

§

type Item = Series

§

type TakeRandom = TakeRandBranch2<ListTakeRandomSingleChunk<'a>, ListTakeRandom<'a>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<ListType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a, T> IntoTakeRandom<'a> for &'a ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
§

type Item = &'a T

§

type TakeRandom = TakeRandBranch2<ObjectTakeRandomSingleChunk<'a, T>, ObjectTakeRandom<'a, T>>

source§

fn take_rand( + T: PolarsObject,

Available on crate feature object only.
§

type Item = &'a T

§

type TakeRandom = TakeRandBranch2<ObjectTakeRandomSingleChunk<'a, T>, ObjectTakeRandom<'a, T>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<ObjectType<T>> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a, T> IntoTakeRandom<'a> for &'a ChunkedArray<T>where - T: PolarsNumericType,

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

§

type TakeRandom = TakeRandBranch2<Utf8TakeRandomSingleChunk<'a>, Utf8TakeRandom<'a>>

source§

fn take_rand( + T: PolarsNumericType,

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

§

type TakeRandom = TakeRandBranch2<Utf8TakeRandomSingleChunk<'a>, Utf8TakeRandom<'a>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<Utf8Type> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl IsIn for ChunkedArray<BinaryType>

source§

fn is_in( &self, other: &Series -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<BooleanType>

source§

fn is_in( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<BooleanType>

source§

fn is_in( &self, other: &Series ) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl<T> IsIn for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn is_in( + T: PolarsNumericType,

source§

fn is_in( &self, other: &Series -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<Utf8Type>

source§

fn is_in( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<Utf8Type>

source§

fn is_in( &self, other: &Series ) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl ListNameSpaceImpl for ChunkedArray<ListType>

source§

fn lst_join( @@ -1297,51 +1297,51 @@

Safety
N: Num + ToPrimitive,
§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> <&ChunkedArray<T> as Mul<N>>::Output

Performs the * operation. Read more
source§

impl<T, N> Mul<N> for ChunkedArray<T>where T: PolarsNumericType, N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> <ChunkedArray<T> as Mul<N>>::Output

Performs the * operation. Read more
source§

impl<T> NamedFrom<&[T], &[T]> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn new(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, range: Range<u32>) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, range: Range<u64>) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T, S> NamedFrom<S, [Option<T>]> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn new(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, range: Range<u32>) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, range: Range<u64>) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T, S> NamedFrom<S, [Option<T>]> for ChunkedArray<ObjectType<T>>where T: PolarsObject, - S: AsRef<[Option<T>]>,

Available on crate feature object only.
source§

fn new(name: &str, v: S) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for ChunkedArray<BinaryType>where - T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for ChunkedArray<Utf8Type>where - T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for ChunkedArray<BinaryType>where - T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for ChunkedArray<Utf8Type>where - T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for ChunkedArray<BinaryType>where - T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for ChunkedArray<Utf8Type>where - T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for ChunkedArray<BinaryType>where + S: AsRef<[Option<T>]>,

Available on crate feature object only.
source§

fn new(name: &str, v: S) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for ChunkedArray<BinaryType>where + T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for ChunkedArray<Utf8Type>where + T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for ChunkedArray<BinaryType>where + T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for ChunkedArray<Utf8Type>where + T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for ChunkedArray<BinaryType>where + T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for ChunkedArray<Utf8Type>where + T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for ChunkedArray<BinaryType>where T: AsRef<[Option<Cow<'a, [u8]>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for ChunkedArray<Utf8Type>where - T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for ChunkedArray<Utf8Type>where + T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for ChunkedArray<Utf8Type>where T: AsRef<[Option<String>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Vec<u8, Global>>]> for ChunkedArray<BinaryType>where - T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for ChunkedArray<BooleanType>where - T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for ChunkedArray<Float32Type>where - T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for ChunkedArray<Float64Type>where - T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for ChunkedArray<Int16Type>where - T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for ChunkedArray<Int32Type>where - T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for ChunkedArray<Int64Type>where - T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for ChunkedArray<Int8Type>where - T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for ChunkedArray<UInt16Type>where - T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for ChunkedArray<UInt32Type>where - T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for ChunkedArray<UInt64Type>where - T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for ChunkedArray<UInt8Type>where - T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for ChunkedArray<Utf8Type>where - T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for ChunkedArray<BinaryType>where - T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for ChunkedArray<BooleanType>where - T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for ChunkedArray<Float32Type>where - T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for ChunkedArray<Float64Type>where - T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for ChunkedArray<Int16Type>where - T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for ChunkedArray<Int32Type>where - T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for ChunkedArray<Int64Type>where - T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for ChunkedArray<Int8Type>where - T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for ChunkedArray<UInt16Type>where - T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for ChunkedArray<UInt32Type>where - T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for ChunkedArray<UInt64Type>where - T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for ChunkedArray<UInt8Type>where - T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<B> NewChunkedArray<BinaryType, B> for ChunkedArray<BinaryType>where - B: AsRef<[u8]>,

source§

fn from_iter_values( + T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for ChunkedArray<BooleanType>where + T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for ChunkedArray<Float32Type>where + T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for ChunkedArray<Float64Type>where + T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for ChunkedArray<Int16Type>where + T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for ChunkedArray<Int32Type>where + T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for ChunkedArray<Int64Type>where + T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for ChunkedArray<Int8Type>where + T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for ChunkedArray<UInt16Type>where + T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for ChunkedArray<UInt32Type>where + T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for ChunkedArray<UInt64Type>where + T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for ChunkedArray<UInt8Type>where + T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for ChunkedArray<Utf8Type>where + T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for ChunkedArray<BinaryType>where + T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for ChunkedArray<BooleanType>where + T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for ChunkedArray<Float32Type>where + T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for ChunkedArray<Float64Type>where + T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for ChunkedArray<Int16Type>where + T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for ChunkedArray<Int32Type>where + T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for ChunkedArray<Int64Type>where + T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for ChunkedArray<Int8Type>where + T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for ChunkedArray<UInt16Type>where + T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for ChunkedArray<UInt32Type>where + T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for ChunkedArray<UInt64Type>where + T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for ChunkedArray<UInt8Type>where + T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<B> NewChunkedArray<BinaryType, B> for ChunkedArray<BinaryType>where + B: AsRef<[u8]>,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = B> ) -> ChunkedArray<BinaryType>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[B]) -> ChunkedArray<BinaryType>

source§

fn from_slice_options( +

source§

fn from_slice(name: &str, v: &[B]) -> ChunkedArray<BinaryType>

source§

fn from_slice_options( name: &str, opt_v: &[Option<B>] -) -> ChunkedArray<BinaryType>

source§

fn from_iter_options( +) -> ChunkedArray<BinaryType>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<B>> ) -> ChunkedArray<BinaryType>

Create a new ChunkedArray from an iterator.
source§

impl NewChunkedArray<BooleanType, bool> for ChunkedArray<BooleanType>

source§

fn from_iter_values( @@ -1355,57 +1355,57 @@

Safety
name: &str, it: impl Iterator<Item = Option<bool>> ) -> ChunkedArray<BooleanType>
Create a new ChunkedArray from an iterator.
source§

impl<T> NewChunkedArray<ObjectType<T>, T> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn from_iter_values( + T: PolarsObject,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = T> ) -> ChunkedArray<ObjectType<T>>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

source§

fn from_slice_options( +

source§

fn from_slice(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

source§

fn from_slice_options( name: &str, opt_v: &[Option<T>] -) -> ChunkedArray<ObjectType<T>>

source§

fn from_iter_options( +) -> ChunkedArray<ObjectType<T>>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<T>> ) -> ChunkedArray<ObjectType<T>>

Create a new ChunkedArray from an iterator.
source§

impl<T> NewChunkedArray<T, <T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from_iter_values( + T: PolarsNumericType,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = <T as PolarsNumericType>::Native> ) -> ChunkedArray<T>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice( +

source§

fn from_slice( name: &str, v: &[<T as PolarsNumericType>::Native] -) -> ChunkedArray<T>

source§

fn from_slice_options( +) -> ChunkedArray<T>

source§

fn from_slice_options( name: &str, opt_v: &[Option<<T as PolarsNumericType>::Native>] -) -> ChunkedArray<T>

source§

fn from_iter_options( +) -> ChunkedArray<T>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<<T as PolarsNumericType>::Native>> ) -> ChunkedArray<T>

Create a new ChunkedArray from an iterator.
source§

impl<S> NewChunkedArray<Utf8Type, S> for ChunkedArray<Utf8Type>where - S: AsRef<str>,

source§

fn from_iter_values( + S: AsRef<str>,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = S> ) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[S]) -> ChunkedArray<Utf8Type>

source§

fn from_slice_options(name: &str, opt_v: &[Option<S>]) -> ChunkedArray<Utf8Type>

source§

fn from_iter_options( +

source§

fn from_slice(name: &str, v: &[S]) -> ChunkedArray<Utf8Type>

source§

fn from_slice_options(name: &str, opt_v: &[Option<S>]) -> ChunkedArray<Utf8Type>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<S>> ) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray from an iterator.
source§

impl Not for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> <&ChunkedArray<BooleanType> as Not>::Output

Performs the unary ! operation. Read more
source§

impl Not for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> <ChunkedArray<BooleanType> as Not>::Output

Performs the unary ! operation. Read more
source§

impl<T> NumOpsDispatch for ChunkedArray<T>where T: NumOpsDispatchInner,

source§

impl<S> NumOpsDispatchChecked for ChunkedArray<S>where S: NumOpsDispatchCheckedInner,

source§

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
source§

fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where - T: ToPrimitive,

source§

impl QuantileAggSeries for ChunkedArray<Float32Type>

source§

impl QuantileAggSeries for ChunkedArray<Float32Type>

source§

fn quantile_as_series( &self, quantile: f64, interpol: QuantileInterpolOptions -) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl QuantileAggSeries for ChunkedArray<Float64Type>

source§

fn quantile_as_series( +) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl QuantileAggSeries for ChunkedArray<Float64Type>

source§

fn quantile_as_series( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> QuantileAggSeries for ChunkedArray<T>where T: PolarsIntegerType, <T as PolarsNumericType>::Native: Ord, - <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn quantile_as_series( + <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn quantile_as_series( &self, quantile: f64, interpol: QuantileInterpolOptions -) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> Rem<&ChunkedArray<T>> for &ChunkedArray<T>where +) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> Rem<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem( self, rhs: &ChunkedArray<T> @@ -1420,34 +1420,34 @@

Safety
N: Num + ToPrimitive,
§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: N) -> <ChunkedArray<T> as Rem<N>>::Output

Performs the % operation. Read more
source§

impl RepeatBy for ChunkedArray<BinaryType>

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> -) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<BooleanType>

source§

fn repeat_by( +) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<BooleanType>

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> ) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl<T> RepeatBy for ChunkedArray<T>where T: PolarsNumericType,

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> -) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<Utf8Type>

source§

fn repeat_by( +) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<Utf8Type>

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> ) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl<T> StrConcat for ChunkedArray<T>where T: PolarsNumericType, - <T as PolarsNumericType>::Native: Display,

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl StrConcat for ChunkedArray<Utf8Type>

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( + <T as PolarsNumericType>::Native: Display,

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl StrConcat for ChunkedArray<Utf8Type>

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( self, rhs: &ChunkedArray<T> ) -> <&ChunkedArray<T> as Sub<&ChunkedArray<T>>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( self, rhs: ChunkedArray<T> ) -> <ChunkedArray<T> as Sub<ChunkedArray<T>>>::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <&ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <&ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

source§

fn get( + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

source§

fn get( &self, index: usize -) -> Option<<&'a ChunkedArray<BinaryType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where +) -> Option<<&'a ChunkedArray<BinaryType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<BooleanType>

§

type Item = bool

source§

fn get( &self, index: usize @@ -1455,40 +1455,40 @@

Safety
&self, index: usize ) -> Option<<&'a ChunkedArray<BooleanType> as TakeRandom>::Item>
Get a value by index and ignore the null bit. Read more
source§

impl<'a, T> TakeRandom for &'a ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
§

type Item = &'a T

source§

fn get( + T: PolarsObject,

Available on crate feature object only.
§

type Item = &'a T

source§

fn get( &self, index: usize -) -> Option<<&'a ChunkedArray<ObjectType<T>> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<&'a ChunkedArray<ObjectType<T>> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize ) -> Option<<&'a ChunkedArray<ObjectType<T>> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a, T> TakeRandom for &'a ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( + T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize -) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

source§

fn get( +) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

source§

fn get( &self, index: usize -) -> Option<<&'a ChunkedArray<Utf8Type> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where - Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<BooleanType>

§

type Item = bool

source§

fn get( +) -> Option<<&'a ChunkedArray<Utf8Type> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where + Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<BooleanType>

§

type Item = bool

source§

fn get( &self, index: usize -) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize -) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Series

source§

fn get( +) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Series

source§

fn get( &self, index: usize -) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize -) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<ListType>

§

type Item = Series

source§

fn get( +) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<ListType>

§

type Item = Series

source§

fn get( &self, index: usize -) -> Option<<ChunkedArray<ListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<ChunkedArray<ListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize ) -> Option<<ChunkedArray<ListType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<T> TakeRandom for ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( + T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize ) -> Option<<ChunkedArray<T> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandomUtf8 for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

source§

fn get( @@ -1569,14 +1569,14 @@

Safety
length: Option<u64> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>
Slice the string values Determines a substring starting from start and with optional length length of each of the elements in array. -start can be negative, in which case the start counts from the end of the string.
source§

impl ValueSize for ChunkedArray<BinaryType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<ListType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<Utf8Type>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl VarAggSeries for ChunkedArray<Float32Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VarAggSeries for ChunkedArray<Float64Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl<T> VarAggSeries for ChunkedArray<T>where +start can be negative, in which case the start counts from the end of the string.

source§

impl ValueSize for ChunkedArray<BinaryType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<ListType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<Utf8Type>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl VarAggSeries for ChunkedArray<Float32Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VarAggSeries for ChunkedArray<Float64Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl<T> VarAggSeries for ChunkedArray<T>where T: PolarsIntegerType, - <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VecHash for ChunkedArray<BinaryType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<BooleanType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl<T> VecHash for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Utf8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ChunkedArray<T>

§

impl<T> Send for ChunkedArray<T>

§

impl<T> Sync for ChunkedArray<T>

§

impl<T> Unpin for ChunkedArray<T>where + <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VecHash for ChunkedArray<BinaryType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<BooleanType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl<T> VecHash for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Utf8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ChunkedArray<T>

§

impl<T> Send for ChunkedArray<T>

§

impl<T> Sync for ChunkedArray<T>

§

impl<T> Unpin for ChunkedArray<T>where T: Unpin,

§

impl<T> !UnwindSafe for ChunkedArray<T>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars/chunked_array/upstream_traits/trait.PolarsAsRef.html b/polars/chunked_array/upstream_traits/trait.PolarsAsRef.html index 39f46ea040e8..927227908bb9 100644 --- a/polars/chunked_array/upstream_traits/trait.PolarsAsRef.html +++ b/polars/chunked_array/upstream_traits/trait.PolarsAsRef.html @@ -1,3 +1,3 @@ PolarsAsRef in polars::chunked_array::upstream_traits - Rust
pub trait PolarsAsRef<T>: AsRef<T>where
     T: ?Sized,{ }
Expand description

Local AsRef<T> trait to circumvent the orphan rule.

-

Implementations on Foreign Types§

source§

impl PolarsAsRef<[u8]> for &&[u8]

source§

impl<'a> PolarsAsRef<str> for Cow<'a, str>

source§

impl PolarsAsRef<[u8]> for &[u8]

source§

impl PolarsAsRef<str> for &str

source§

impl PolarsAsRef<[u8]> for Vec<u8, Global>

source§

impl PolarsAsRef<str> for String

source§

impl<'a> PolarsAsRef<[u8]> for Cow<'a, [u8]>

source§

impl PolarsAsRef<str> for &&str

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl PolarsAsRef<str> for &&str

source§

impl PolarsAsRef<[u8]> for Vec<u8, Global>

source§

impl PolarsAsRef<[u8]> for &&[u8]

source§

impl PolarsAsRef<str> for &str

source§

impl<'a> PolarsAsRef<str> for Cow<'a, str>

source§

impl PolarsAsRef<[u8]> for &[u8]

source§

impl PolarsAsRef<str> for String

source§

impl<'a> PolarsAsRef<[u8]> for Cow<'a, [u8]>

Implementors§

\ No newline at end of file diff --git a/polars/datatypes/categorical/struct.CategoricalChunked.html b/polars/datatypes/categorical/struct.CategoricalChunked.html index adc2fe7f26cf..faf7cb3370c1 100644 --- a/polars/datatypes/categorical/struct.CategoricalChunked.html +++ b/polars/datatypes/categorical/struct.CategoricalChunked.html @@ -15,7 +15,7 @@
Safety

Invariant in v < rev_map.len() for v in idx must be hold.

source

pub fn get_rev_map(&self) -> &Arc<RevMapping>

Get a reference to the mapping of categorical types to the string values.

source

pub fn iter_str(&self) -> CatIter<'_>

Create an [Iterator] that iterates over the &str values of the [CategoricalChunked].

-

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/datatypes/enum.AnyValue.html b/polars/datatypes/enum.AnyValue.html index 4dac760cbe82..525cd3584fed 100644 --- a/polars/datatypes/enum.AnyValue.html +++ b/polars/datatypes/enum.AnyValue.html @@ -52,9 +52,9 @@ T: NumCast,

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn cast(&self, dtype: &'a DataType) -> Result<AnyValue<'a>, PolarsError>

source§

impl<'a> AnyValue<'a>

source

pub fn add(&self, rhs: &AnyValue<'_>) -> AnyValue<'a>

source

pub fn as_borrowed(&self) -> AnyValue<'_>

source

pub fn into_static(self) -> Result<AnyValue<'static>, PolarsError>

Try to coerce to an AnyValue with static lifetime. This can be done if it does not borrow any values.

source

pub fn get_str(&self) -> Option<&str>

Get a reference to the &str contained within AnyValue.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where - K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where - T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where + K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where + T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<AnyValue<'_>> for AnyValue<'_>

source§

fn eq(&self, other: &AnyValue<'_>) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars/datatypes/enum.ArrowDataType.html b/polars/datatypes/enum.ArrowDataType.html index 8e5cca12628e..953378ddb9f1 100644 --- a/polars/datatypes/enum.ArrowDataType.html +++ b/polars/datatypes/enum.ArrowDataType.html @@ -128,7 +128,7 @@ (recursively) returns the inner DataType. Never returns the variant DataType::Extension.

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl<T> From<DataType> for MutablePrimitiveArray<T>where - T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where + T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/datatypes/enum.DataType.html b/polars/datatypes/enum.DataType.html index b8f6774a10c8..f2613f703fdd 100644 --- a/polars/datatypes/enum.DataType.html +++ b/polars/datatypes/enum.DataType.html @@ -43,7 +43,7 @@ it is not a container type.

source

pub fn is_numeric(&self) -> bool

Check if this DataType is a numeric type.

source

pub fn is_float(&self) -> bool

source

pub fn is_integer(&self) -> bool

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn to_arrow(&self) -> DataType

Convert to an Arrow data type.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

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

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

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

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

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

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/datatypes/struct.CategoricalChunked.html b/polars/datatypes/struct.CategoricalChunked.html index 5f97aeefb98c..431802d95460 100644 --- a/polars/datatypes/struct.CategoricalChunked.html +++ b/polars/datatypes/struct.CategoricalChunked.html @@ -15,7 +15,7 @@
Safety

Invariant in v < rev_map.len() for v in idx must be hold.

source

pub fn get_rev_map(&self) -> &Arc<RevMapping>

Available on crate feature dtype-categorical only.

Get a reference to the mapping of categorical types to the string values.

source

pub fn iter_str(&self) -> CatIter<'_>

Available on crate feature dtype-categorical only.

Create an [Iterator] that iterates over the &str values of the [CategoricalChunked].

-

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/datatypes/struct.Field.html b/polars/datatypes/struct.Field.html index 480f2dd46895..0bb9e1625198 100644 --- a/polars/datatypes/struct.Field.html +++ b/polars/datatypes/struct.Field.html @@ -35,7 +35,7 @@
Example
let af = arrow::datatypes::Field::new("Value", arrow::datatypes::DataType::Int64, true); assert_eq!(f.to_arrow(), af);

-

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

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

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

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

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

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

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Field

source§

impl StructuralEq for Field

source§

impl StructuralPartialEq for Field

Auto Trait Implementations§

§

impl RefUnwindSafe for Field

§

impl Send for Field

§

impl Sync for Field

§

impl Unpin for Field

§

impl UnwindSafe for Field

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/datatypes/struct.Int32Type.html b/polars/datatypes/struct.Int32Type.html index 1399ce3b6450..1ab78cff6d69 100644 --- a/polars/datatypes/struct.Int32Type.html +++ b/polars/datatypes/struct.Int32Type.html @@ -1,4 +1,4 @@ -Int32Type in polars::datatypes - Rust

Struct polars::datatypes::Int32Type

source ·
pub struct Int32Type {}

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +Int32Type in polars::datatypes - Rust

Struct polars::datatypes::Int32Type

source ·
pub struct Int32Type {}

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/datatypes/struct.Logical.html b/polars/datatypes/struct.Logical.html index 70b83e7d45bf..8ef7e4385e6c 100644 --- a/polars/datatypes/struct.Logical.html +++ b/polars/datatypes/struct.Logical.html @@ -329,27 +329,27 @@
Safety

source§

fn milliseconds(&self) -> ChunkedArray<Int64Type>

Extract the milliseconds from a Duration

source§

fn microseconds(&self) -> ChunkedArray<Int64Type>

Extract the microseconds from a Duration

source§

fn nanoseconds(&self) -> ChunkedArray<Int64Type>

Extract the nanoseconds from a Duration

-

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( +

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( self, rhs: &Logical<DecimalType, Int128Type> ) -> <&Logical<DecimalType, Int128Type> as Mul<&Logical<DecimalType, Int128Type>>>::Output

Performs the * operation. Read more
source§

impl<T> NamedFrom<T, [Duration]> for Logical<DurationType, Int64Type>where T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Logical<DateType, Int32Type>where - T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Logical<TimeType, Int64Type>where - T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where + T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Logical<DateType, Int32Type>where - T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where - T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where - T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

fn month_end( + T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where + T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

impl PolarsRound for Logical<DateType, Int32Type>

Available on crate feature dtype-date only.
source§

fn round( diff --git a/polars/datatypes/trait.InitHashMaps.html b/polars/datatypes/trait.InitHashMaps.html index ada9a6a334b9..1f36ebeaf372 100644 --- a/polars/datatypes/trait.InitHashMaps.html +++ b/polars/datatypes/trait.InitHashMaps.html @@ -4,12 +4,12 @@ // Required methods fn new() -> Self::HashMap; fn with_capacity(capacity: usize) -> Self::HashMap; -}

Required Associated Types§

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

§

type HashMap = HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

fn new( - -) -> <HashMap<K, V, BuildHasherDefault<IdHasher>, Global> as InitHashMaps>::HashMap

source§

fn with_capacity( +}

Required Associated Types§

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

Implementors§

\ No newline at end of file +) -> HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

Implementors§

\ No newline at end of file diff --git a/polars/datatypes/trait.NumericNative.html b/polars/datatypes/trait.NumericNative.html index 3c49e5c7bfa8..431432b8b8c9 100644 --- a/polars/datatypes/trait.NumericNative.html +++ b/polars/datatypes/trait.NumericNative.html @@ -1,3 +1,3 @@ NumericNative in polars::datatypes - Rust
pub trait NumericNative: PartialOrd<Self> + NativeType + Num<Output = Self, Output = Self, Output = Self, Output = Self, Output = Self> + NumCast + Zero + Simd + Simd8 + Sum<Self> + Add<Self> + Sub<Self> + Mul<Self> + Div<Self> + Rem<Self> + AddAssign<Self> + SubAssign<Self> + Bounded + FromPrimitive + IsFloat + ArrayArithmetics {
     type POLARSTYPE: PolarsNumericType;
-}

Required Associated Types§

Implementations on Foreign Types§

source§

impl NumericNative for i8

source§

impl NumericNative for f64

source§

impl NumericNative for i16

source§

impl NumericNative for u64

source§

impl NumericNative for i64

source§

impl NumericNative for u32

source§

impl NumericNative for f32

source§

impl NumericNative for i32

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.
source§

impl NumericNative for u16

source§

impl NumericNative for u8

Implementors§

\ No newline at end of file +}

Required Associated Types§

Implementations on Foreign Types§

source§

impl NumericNative for u8

source§

impl NumericNative for u64

source§

impl NumericNative for i32

source§

impl NumericNative for i16

source§

impl NumericNative for f32

source§

impl NumericNative for i64

source§

impl NumericNative for u16

source§

impl NumericNative for i8

source§

impl NumericNative for u32

source§

impl NumericNative for f64

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.

Implementors§

\ No newline at end of file diff --git a/polars/error/enum.ArrowError.html b/polars/error/enum.ArrowError.html index a71c55c5a7bc..195a35992b90 100644 --- a/polars/error/enum.ArrowError.html +++ b/polars/error/enum.ArrowError.html @@ -16,7 +16,7 @@ The solution is usually to use a higher-capacity container-backing type.

§

OutOfSpec(String)

Whenever incoming data from the C data interface, IPC or Flight does not fulfil the Arrow specification.

Implementations§

source§

impl Error

source

pub fn from_external_error(error: impl Error + Send + Sync + 'static) -> Error

Wraps an external error in an Error.

-

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars/error/enum.PolarsError.html b/polars/error/enum.PolarsError.html index 48c1870dda66..cb635717b43a 100644 --- a/polars/error/enum.PolarsError.html +++ b/polars/error/enum.PolarsError.html @@ -11,7 +11,7 @@ ShapeMismatch(ErrString), StringCacheMismatch(ErrString), StructFieldNotFound(ErrString), -}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

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

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

impl Display for PolarsError

source§

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

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

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

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

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

impl Display for PolarsError

source§

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

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

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars/export/arrow/array/struct.BinaryArray.html b/polars/export/arrow/array/struct.BinaryArray.html index 4ec730b90912..b0d36655faf4 100644 --- a/polars/export/arrow/array/struct.BinaryArray.html +++ b/polars/export/arrow/array/struct.BinaryArray.html @@ -174,8 +174,8 @@
Safety
S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl<O> Clone for BinaryArray<O>where O: Clone + Offset,

source§

fn clone(&self) -> BinaryArray<O>

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<O> Debug for BinaryArray<O>where O: Offset,

source§

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

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

impl<'a, O> From<GrowableBinary<'a, O>> for BinaryArray<O>where - O: Offset,

source§

fn from(val: GrowableBinary<'a, O>) -> BinaryArray<O>

Converts to this type from the input type.
source§

impl<O> From<MutableBinaryArray<O>> for BinaryArray<O>where - O: Offset,

source§

fn from(other: MutableBinaryArray<O>) -> BinaryArray<O>

Converts to this type from the input type.
source§

impl<O> From<MutableBinaryValuesArray<O>> for BinaryArray<O>where + O: Offset,

source§

fn from(val: GrowableBinary<'a, O>) -> BinaryArray<O>

Converts to this type from the input type.
source§

impl<O> From<MutableBinaryArray<O>> for BinaryArray<O>where + O: Offset,

source§

fn from(other: MutableBinaryArray<O>) -> BinaryArray<O>

Converts to this type from the input type.
source§

impl<O> From<MutableBinaryValuesArray<O>> for BinaryArray<O>where O: Offset,

source§

fn from(other: MutableBinaryValuesArray<O>) -> BinaryArray<O>

Converts to this type from the input type.
source§

impl FromDataBinary for BinaryArray<i64>

source§

unsafe fn from_data_unchecked_default( offsets: Buffer<i64>, values: Buffer<u8>, diff --git a/polars/export/arrow/array/struct.BooleanArray.html b/polars/export/arrow/array/struct.BooleanArray.html index f25a714033d4..89df4aa1751a 100644 --- a/polars/export/arrow/array/struct.BooleanArray.html +++ b/polars/export/arrow/array/struct.BooleanArray.html @@ -170,14 +170,14 @@

Safety
S: PolarsDataType,
Apply a kernel that outputs an array of different type.
source§

impl Clone for BooleanArray

source§

fn clone(&self) -> BooleanArray

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 BooleanArray

source§

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

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

impl From<BooleanArray> for ChunkedArray<BooleanType>

source§

fn from(arr: BooleanArray) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl<'a> From<GrowableBoolean<'a>> for BooleanArray

source§

fn from(val: GrowableBoolean<'a>) -> BooleanArray

Converts to this type from the input type.
source§

impl From<MutableBooleanArray> for BooleanArray

source§

fn from(other: MutableBooleanArray) -> BooleanArray

Converts to this type from the input type.
source§

impl<P> From<P> for BooleanArraywhere P: AsRef<[Option<bool>]>,

source§

fn from(slice: P) -> BooleanArray

Converts to this type from the input type.
source§

impl FromData<Bitmap> for BooleanArray

source§

impl<Ptr> FromIterator<Ptr> for BooleanArraywhere Ptr: Borrow<Option<bool>>,

source§

fn from_iter<I>(iter: I) -> BooleanArraywhere - I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl FromTrustedLenIterator<Option<bool>> for BooleanArray

source§

fn from_iter_trusted_length<I>(iter: I) -> BooleanArraywhere + I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl FromTrustedLenIterator<Option<bool>> for BooleanArray

source§

impl FromTrustedLenIterator<bool> for BooleanArray

source§

impl FromTrustedLenIterator<bool> for BooleanArray

source§

impl<'a> IntoIterator for &'a BooleanArray

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<bool, BitmapIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a BooleanArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for BooleanArray

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<bool, IntoIter, IntoIter>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <BooleanArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for BooleanArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<BooleanArray> for BooleanArray

source§

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

This method tests for self and other values to be equal, and is used + <I as IntoIterator>::IntoIter: TrustedLen,
source§

impl<'a> IntoIterator for &'a BooleanArray

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<bool, BitmapIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a BooleanArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for BooleanArray

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<bool, IntoIter, IntoIter>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <BooleanArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for BooleanArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<BooleanArray> for BooleanArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ArrowArray for BooleanArray

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars/export/arrow/array/struct.DictionaryArray.html b/polars/export/arrow/array/struct.DictionaryArray.html index f04593916d20..2f3f7ab2b2ab 100644 --- a/polars/export/arrow/array/struct.DictionaryArray.html +++ b/polars/export/arrow/array/struct.DictionaryArray.html @@ -128,16 +128,16 @@
Panic
length: usize ) -> Box<dyn Array, Global>

Returns a slice of this Array. Read more
source§

impl<K> Clone for DictionaryArray<K>where K: Clone + DictionaryKey,

source§

fn clone(&self) -> DictionaryArray<K>

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<K> Debug for DictionaryArray<K>where - K: DictionaryKey,

source§

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

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

impl From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl<'a, T> From<GrowableDictionary<'a, T>> for DictionaryArray<T>where + K: DictionaryKey,

source§

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

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

impl From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl<'a, T> From<GrowableDictionary<'a, T>> for DictionaryArray<T>where T: DictionaryKey,

source§

fn from(val: GrowableDictionary<'a, T>) -> DictionaryArray<T>

Converts to this type from the input type.
source§

impl<K, M> From<MutableDictionaryArray<K, M>> for DictionaryArray<K>where K: DictionaryKey, M: MutableArray,

source§

fn from(other: MutableDictionaryArray<K, M>) -> DictionaryArray<K>

Converts to this type from the input type.
source§

impl<'a, K> IntoIterator for &'a DictionaryArray<K>where K: DictionaryKey,

§

type Item = Option<Box<dyn Scalar, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Scalar, Global>, DictionaryValuesIter<'a, K>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a DictionaryArray<K> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<K> PartialEq<&(dyn Array + 'static)> for DictionaryArray<K>where - K: DictionaryKey,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<K> PartialEq<DictionaryArray<K>> for DictionaryArray<K>where - K: DictionaryKey,

source§

fn eq(&self, other: &DictionaryArray<K>) -> bool

This method tests for self and other values to be equal, and is used + K: DictionaryKey,
source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<K> PartialEq<DictionaryArray<K>> for DictionaryArray<K>where + K: DictionaryKey,

source§

fn eq(&self, other: &DictionaryArray<K>) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl<K> !RefUnwindSafe for DictionaryArray<K>

§

impl<K> Send for DictionaryArray<K>

§

impl<K> Sync for DictionaryArray<K>

§

impl<K> Unpin for DictionaryArray<K>

§

impl<K> !UnwindSafe for DictionaryArray<K>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars/export/arrow/array/struct.FixedSizeBinaryArray.html b/polars/export/arrow/array/struct.FixedSizeBinaryArray.html index d46d8115344a..2e2b4fcdd354 100644 --- a/polars/export/arrow/array/struct.FixedSizeBinaryArray.html +++ b/polars/export/arrow/array/struct.FixedSizeBinaryArray.html @@ -100,10 +100,10 @@
Panics
&self, offset: usize, length: usize -) -> Box<dyn Array, Global>

Returns a slice of this Array. Read more
source§

impl Clone for FixedSizeBinaryArray

source§

fn clone(&self) -> FixedSizeBinaryArray

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 FixedSizeBinaryArray

source§

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

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

impl<'a> From<GrowableFixedSizeBinary<'a>> for FixedSizeBinaryArray

source§

fn from(val: GrowableFixedSizeBinary<'a>) -> FixedSizeBinaryArray

Converts to this type from the input type.
source§

impl From<MutableFixedSizeBinaryArray> for FixedSizeBinaryArray

source§

fn from(other: MutableFixedSizeBinaryArray) -> FixedSizeBinaryArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a FixedSizeBinaryArray

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a [u8], ChunksExact<'a, u8>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a FixedSizeBinaryArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<FixedSizeBinaryArray> for FixedSizeBinaryArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array, Global>
Returns a slice of this Array. Read more
source§

impl Clone for FixedSizeBinaryArray

source§

fn clone(&self) -> FixedSizeBinaryArray

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 FixedSizeBinaryArray

source§

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

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

impl<'a> From<GrowableFixedSizeBinary<'a>> for FixedSizeBinaryArray

source§

fn from(val: GrowableFixedSizeBinary<'a>) -> FixedSizeBinaryArray

Converts to this type from the input type.
source§

impl From<MutableFixedSizeBinaryArray> for FixedSizeBinaryArray

source§

fn from(other: MutableFixedSizeBinaryArray) -> FixedSizeBinaryArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a FixedSizeBinaryArray

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a [u8], ChunksExact<'a, u8>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a FixedSizeBinaryArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<FixedSizeBinaryArray> for FixedSizeBinaryArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl RefUnwindSafe for FixedSizeBinaryArray

§

impl Send for FixedSizeBinaryArray

§

impl Sync for FixedSizeBinaryArray

§

impl Unpin for FixedSizeBinaryArray

§

impl UnwindSafe for FixedSizeBinaryArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars/export/arrow/array/struct.FixedSizeListArray.html b/polars/export/arrow/array/struct.FixedSizeListArray.html index dd6e5c100ff5..86ca5ec6c57d 100644 --- a/polars/export/arrow/array/struct.FixedSizeListArray.html +++ b/polars/export/arrow/array/struct.FixedSizeListArray.html @@ -81,11 +81,11 @@
Panics
) -> Box<dyn Array, Global>

Returns a slice of this Array. Read more
source§

impl ArrowGetItem for FixedSizeListArray

§

type Item = Box<dyn Array, Global>

source§

fn get(&self, item: usize) -> Option<<FixedSizeListArray as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( &self, item: usize -) -> Option<<FixedSizeListArray as ArrowGetItem>::Item>

Safety Read more
source§

impl Clone for FixedSizeListArray

source§

fn clone(&self) -> FixedSizeListArray

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 FixedSizeListArray

source§

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

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

impl<'a> From<GrowableFixedSizeList<'a>> for FixedSizeListArray

source§

fn from(val: GrowableFixedSizeList<'a>) -> FixedSizeListArray

Converts to this type from the input type.
source§

impl<M> From<MutableFixedSizeListArray<M>> for FixedSizeListArraywhere - M: MutableArray,

source§

fn from(other: MutableFixedSizeListArray<M>) -> FixedSizeListArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a FixedSizeListArray

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, ArrayValuesIter<'a, FixedSizeListArray>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a FixedSizeListArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<FixedSizeListArray> for FixedSizeListArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Option<<FixedSizeListArray as ArrowGetItem>::Item>
Safety Read more
source§

impl Clone for FixedSizeListArray

source§

fn clone(&self) -> FixedSizeListArray

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 FixedSizeListArray

source§

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

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

impl<'a> From<GrowableFixedSizeList<'a>> for FixedSizeListArray

source§

fn from(val: GrowableFixedSizeList<'a>) -> FixedSizeListArray

Converts to this type from the input type.
source§

impl<M> From<MutableFixedSizeListArray<M>> for FixedSizeListArraywhere + M: MutableArray,

source§

fn from(other: MutableFixedSizeListArray<M>) -> FixedSizeListArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a FixedSizeListArray

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, ArrayValuesIter<'a, FixedSizeListArray>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a FixedSizeListArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<FixedSizeListArray> for FixedSizeListArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ValueSize for FixedSizeListArray

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy
source§

impl ArrowArray for FixedSizeListArray

Auto Trait Implementations§

§

impl !RefUnwindSafe for FixedSizeListArray

§

impl Send for FixedSizeListArray

§

impl Sync for FixedSizeListArray

§

impl Unpin for FixedSizeListArray

§

impl !UnwindSafe for FixedSizeListArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/export/arrow/array/struct.ListArray.html b/polars/export/arrow/array/struct.ListArray.html index 839be160bcf1..b1788267d59f 100644 --- a/polars/export/arrow/array/struct.ListArray.html +++ b/polars/export/arrow/array/struct.ListArray.html @@ -106,9 +106,9 @@
Panics
) -> Option<<ListArray<i64> as ArrowGetItem>::Item>

Safety Read more
source§

impl<O> Clone for ListArray<O>where O: Clone + Offset,

source§

fn clone(&self) -> ListArray<O>

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<O> Debug for ListArray<O>where O: Offset,

source§

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

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

impl<'a, O> From<GrowableList<'a, O>> for ListArray<O>where - O: Offset,

source§

fn from(val: GrowableList<'a, O>) -> ListArray<O>

Converts to this type from the input type.
source§

impl<O, M> From<MutableListArray<O, M>> for ListArray<O>where + O: Offset,

source§

fn from(val: GrowableList<'a, O>) -> ListArray<O>

Converts to this type from the input type.
source§

impl<O, M> From<MutableListArray<O, M>> for ListArray<O>where O: Offset, - M: MutableArray,

source§

fn from(other: MutableListArray<O, M>) -> ListArray<O>

Converts to this type from the input type.
source§

impl<'a, O> IntoIterator for &'a ListArray<O>where + M: MutableArray,

source§

fn from(other: MutableListArray<O, M>) -> ListArray<O>

Converts to this type from the input type.
source§

impl<'a, O> IntoIterator for &'a ListArray<O>where O: Offset,

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, ArrayValuesIter<'a, ListArray<O>>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ListArray<O> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl ListFromIter for ListArray<i64>

source§

unsafe fn from_iter_primitive_trusted_len<T, P, I>( iter: I, data_type: DataType diff --git a/polars/export/arrow/array/struct.MapArray.html b/polars/export/arrow/array/struct.MapArray.html index bb359a98f65d..6a19d2beb132 100644 --- a/polars/export/arrow/array/struct.MapArray.html +++ b/polars/export/arrow/array/struct.MapArray.html @@ -70,10 +70,10 @@

Safety
&self, offset: usize, length: usize -) -> Box<dyn Array, Global>
Returns a slice of this Array. Read more
source§

impl Clone for MapArray

source§

fn clone(&self) -> MapArray

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 MapArray

source§

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

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

impl<'a> From<GrowableMap<'a>> for MapArray

source§

fn from(val: GrowableMap<'a>) -> MapArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a MapArray

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, MapValuesIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a MapArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for MapArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<MapArray> for MapArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array, Global>
Returns a slice of this Array. Read more
source§

impl Clone for MapArray

source§

fn clone(&self) -> MapArray

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 MapArray

source§

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

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

impl<'a> From<GrowableMap<'a>> for MapArray

source§

fn from(val: GrowableMap<'a>) -> MapArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a MapArray

§

type Item = Option<Box<dyn Array, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Box<dyn Array, Global>, MapValuesIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a MapArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for MapArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<MapArray> for MapArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl !RefUnwindSafe for MapArray

§

impl Send for MapArray

§

impl Sync for MapArray

§

impl Unpin for MapArray

§

impl !UnwindSafe for MapArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars/export/arrow/array/struct.MutableBooleanArray.html b/polars/export/arrow/array/struct.MutableBooleanArray.html index af6853914948..73cc28a8959e 100644 --- a/polars/export/arrow/array/struct.MutableBooleanArray.html +++ b/polars/export/arrow/array/struct.MutableBooleanArray.html @@ -88,8 +88,8 @@
Safety
I: TrustedLen<Item = Result<Option<P>, E>>,

Creates a BooleanArray from a TrustedLen.

source

pub fn shrink_to_fit(&mut self)

Shrinks the capacity of the MutableBooleanArray to fit its current length.

Trait Implementations§

source§

impl Clone for MutableBooleanArray

source§

fn clone(&self) -> MutableBooleanArray

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 MutableBooleanArray

source§

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

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

impl Default for MutableBooleanArray

source§

fn default() -> MutableBooleanArray

Returns the “default value” for a type. Read more
source§

impl Extend<Option<bool>> for MutableBooleanArray

source§

fn extend<I>(&mut self, iter: I)where - I: IntoIterator<Item = Option<bool>>,

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl From<MutableBooleanArray> for BooleanArray

source§

fn from(other: MutableBooleanArray) -> BooleanArray

Converts to this type from the input type.
source§

impl<P> From<P> for MutableBooleanArraywhere - P: AsRef<[Option<bool>]>,

source§

fn from(slice: P) -> MutableBooleanArray

Creates a new MutableBooleanArray out of a slice of Optional bool.

+ I: IntoIterator<Item = Option<bool>>,
Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl From<MutableBooleanArray> for BooleanArray

source§

fn from(other: MutableBooleanArray) -> BooleanArray

Converts to this type from the input type.
source§

impl<P> From<P> for MutableBooleanArraywhere + P: AsRef<[Option<bool>]>,

source§

fn from(slice: P) -> MutableBooleanArray

Creates a new MutableBooleanArray out of a slice of Optional bool.

source§

impl<Ptr> FromIterator<Ptr> for MutableBooleanArraywhere Ptr: Borrow<Option<bool>>,

source§

fn from_iter<I>(iter: I) -> MutableBooleanArraywhere I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl<'a> IntoIterator for &'a MutableBooleanArray

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<bool, BitmapIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a MutableBooleanArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl MutableArray for MutableBooleanArray

source§

fn len(&self) -> usize

The length of the array.
source§

fn validity(&self) -> Option<&MutableBitmap>

The optional validity of the array.
source§

fn as_box(&mut self) -> Box<dyn Array, Global>

Convert itself to an (immutable) Array.
source§

fn as_arc(&mut self) -> Arc<dyn Array>

Convert itself to an (immutable) atomically reference counted Array.
source§

fn data_type(&self) -> &DataType

The DataType of the array.
source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert to Any, to enable dynamic casting.
source§

fn as_mut_any(&mut self) -> &mut (dyn Any + 'static)

Convert to mutable Any, to enable dynamic casting.
source§

fn push_null(&mut self)

Adds a new null element to the array.
source§

fn reserve(&mut self, additional: usize)

Reserves additional slots to its capacity.
source§

fn shrink_to_fit(&mut self)

Shrink the array to fit its length.
source§

fn is_empty(&self) -> bool

Whether the array is empty.
source§

fn is_valid(&self, index: usize) -> bool

Whether index is valid / set. Read more
source§

impl PartialEq<MutableBooleanArray> for MutableBooleanArray

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/export/arrow/array/struct.MutablePrimitiveArray.html b/polars/export/arrow/array/struct.MutablePrimitiveArray.html index d06702ae4212..6692f4a2aadd 100644 --- a/polars/export/arrow/array/struct.MutablePrimitiveArray.html +++ b/polars/export/arrow/array/struct.MutablePrimitiveArray.html @@ -131,9 +131,9 @@
Safety
T: NativeType,
source§

fn extend<I>(&mut self, iter: I)where I: IntoIterator<Item = Option<T>>,

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<T> From<DataType> for MutablePrimitiveArray<T>where T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeType,

source§

fn from(other: MutablePrimitiveArray<T>) -> PrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T, P> From<P> for MutablePrimitiveArray<T>where + T: NativeType,

source§

fn from(other: MutablePrimitiveArray<T>) -> PrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T, P> From<P> for MutablePrimitiveArray<T>where T: NativeType, - P: AsRef<[Option<T>]>,

source§

fn from(slice: P) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T, Ptr> FromIterator<Ptr> for MutablePrimitiveArray<T>where + P: AsRef<[Option<T>]>,

source§

fn from(slice: P) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T, Ptr> FromIterator<Ptr> for MutablePrimitiveArray<T>where T: NativeType, Ptr: Borrow<Option<T>>,

source§

fn from_iter<I>(iter: I) -> MutablePrimitiveArray<T>where I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl<T> MutableArray for MutablePrimitiveArray<T>where diff --git a/polars/export/arrow/array/struct.MutableUtf8ValuesArray.html b/polars/export/arrow/array/struct.MutableUtf8ValuesArray.html index 3af25bcb8e5a..3286de02fb08 100644 --- a/polars/export/arrow/array/struct.MutableUtf8ValuesArray.html +++ b/polars/export/arrow/array/struct.MutableUtf8ValuesArray.html @@ -96,8 +96,8 @@
Error
O: Offset, T: AsRef<str>,

source§

fn extend<I>(&mut self, iter: I)where I: IntoIterator<Item = T>,

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<O> From<MutableUtf8ValuesArray<O>> for MutableUtf8Array<O>where - O: Offset,

source§

fn from(other: MutableUtf8ValuesArray<O>) -> MutableUtf8Array<O>

Converts to this type from the input type.
source§

impl<O> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>where - O: Offset,

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Utf8Array<O>

Converts to this type from the input type.
source§

impl<O, P> FromIterator<P> for MutableUtf8ValuesArray<O>where + O: Offset,

source§

fn from(other: MutableUtf8ValuesArray<O>) -> MutableUtf8Array<O>

Converts to this type from the input type.
source§

impl<O> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>where + O: Offset,

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Utf8Array<O>

Converts to this type from the input type.
source§

impl<O, P> FromIterator<P> for MutableUtf8ValuesArray<O>where O: Offset, P: AsRef<str>,

source§

fn from_iter<I>(iter: I) -> MutableUtf8ValuesArray<O>where I: IntoIterator<Item = P>,

Creates a value from an iterator. Read more
source§

impl<'a, O> IntoIterator for &'a MutableUtf8ValuesArray<O>where diff --git a/polars/export/arrow/array/struct.NullArray.html b/polars/export/arrow/array/struct.NullArray.html index 9d9d02e9232f..a7af0c18b5ad 100644 --- a/polars/export/arrow/array/struct.NullArray.html +++ b/polars/export/arrow/array/struct.NullArray.html @@ -39,7 +39,7 @@
Safety
&self, offset: usize, length: usize -) -> Box<dyn Array, Global>

Returns a slice of this Array. Read more
source§

impl Clone for NullArray

source§

fn clone(&self) -> NullArray

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 NullArray

source§

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

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

impl From<GrowableNull> for NullArray

source§

fn from(val: GrowableNull) -> NullArray

Converts to this type from the input type.
source§

impl From<MutableNullArray> for NullArray

source§

fn from(value: MutableNullArray) -> NullArray

Converts to this type from the input type.
source§

impl PartialEq<&(dyn Array + 'static)> for NullArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array, Global>
Returns a slice of this Array. Read more
source§

impl Clone for NullArray

source§

fn clone(&self) -> NullArray

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 NullArray

source§

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

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

impl From<GrowableNull> for NullArray

source§

fn from(val: GrowableNull) -> NullArray

Converts to this type from the input type.
source§

impl From<MutableNullArray> for NullArray

source§

fn from(value: MutableNullArray) -> NullArray

Converts to this type from the input type.
source§

impl PartialEq<&(dyn Array + 'static)> for NullArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<NullArray> for NullArray

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always diff --git a/polars/export/arrow/array/struct.PrimitiveArray.html b/polars/export/arrow/array/struct.PrimitiveArray.html index 08a21c6d6709..6c71e00ee16e 100644 --- a/polars/export/arrow/array/struct.PrimitiveArray.html +++ b/polars/export/arrow/array/struct.PrimitiveArray.html @@ -188,30 +188,30 @@
Panics
) -> Box<dyn Array, Global>
Returns a slice of this Array. Read more
source§

impl<T> ArrayAdd<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + Add<T, Output = T>,

source§

fn add(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

Adds itself to rhs
source§

impl ArrayAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn add(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

Adds itself to rhs
source§

impl<T> ArrayAdd<T> for PrimitiveArray<T>where T: NativeArithmetics + Add<T, Output = T>,

source§

fn add(&self, rhs: &T) -> PrimitiveArray<T>

Adds itself to rhs
source§

impl<T> ArrayCheckedAdd<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedAdd<Output = T>,

source§

fn checked_add(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

Checked add
source§

impl ArrayCheckedAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn checked_add(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

Checked add
source§

impl<T> ArrayCheckedAdd<T> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedAdd<Output = T>,

source§

fn checked_add(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

Checked add
source§

impl ArrayCheckedAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn checked_add(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

Checked add
source§

impl<T> ArrayCheckedAdd<T> for PrimitiveArray<T>where T: NativeArithmetics + CheckedAdd<Output = T>,

source§

fn checked_add(&self, rhs: &T) -> PrimitiveArray<T>

Checked add
source§

impl<T> ArrayCheckedDiv<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedDiv<Output = T>,

source§

fn checked_div(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

checked division
source§

impl ArrayCheckedDiv<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn checked_div(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

checked division
source§

impl<T> ArrayCheckedDiv<T> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedDiv<Output = T>,

source§

fn checked_div(&self, rhs: &T) -> PrimitiveArray<T>

checked division
source§

impl<T> ArrayCheckedMul<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedDiv<Output = T>,

source§

fn checked_div(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

checked division
source§

impl ArrayCheckedDiv<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn checked_div(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

checked division
source§

impl<T> ArrayCheckedDiv<T> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedDiv<Output = T>,

source§

fn checked_div(&self, rhs: &T) -> PrimitiveArray<T>

checked division
source§

impl<T> ArrayCheckedMul<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + CheckedMul<Output = T>,

source§

fn checked_mul(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

checked multiplication
source§

impl ArrayCheckedMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn checked_mul(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

checked multiplication
source§

impl<T> ArrayCheckedMul<T> for PrimitiveArray<T>where T: NativeArithmetics + CheckedMul<Output = T>,

source§

fn checked_mul(&self, rhs: &T) -> PrimitiveArray<T>

checked multiplication
source§

impl<T> ArrayCheckedRem<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + CheckedRem<Output = T>,

source§

fn checked_rem(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

checked remainder
source§

impl<T> ArrayCheckedRem<T> for PrimitiveArray<T>where T: NativeArithmetics + CheckedRem<Output = T>,

source§

fn checked_rem(&self, rhs: &T) -> PrimitiveArray<T>

checked remainder
source§

impl<T> ArrayCheckedSub<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedSub<Output = T>,

source§

fn checked_sub(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

checked subtraction
source§

impl ArrayCheckedSub<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn checked_sub(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

checked subtraction
source§

impl<T> ArrayCheckedSub<T> for PrimitiveArray<T>where - T: NativeArithmetics + CheckedSub<Output = T>,

source§

fn checked_sub(&self, rhs: &T) -> PrimitiveArray<T>

checked subtraction
source§

impl<T> ArrayDiv<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedSub<Output = T>,

source§

fn checked_sub(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

checked subtraction
source§

impl ArrayCheckedSub<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn checked_sub(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

checked subtraction
source§

impl<T> ArrayCheckedSub<T> for PrimitiveArray<T>where + T: NativeArithmetics + CheckedSub<Output = T>,

source§

fn checked_sub(&self, rhs: &T) -> PrimitiveArray<T>

checked subtraction
source§

impl<T> ArrayDiv<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + Div<T, Output = T>,

source§

fn div(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

division
source§

impl ArrayDiv<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn div(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

division
source§

impl<T> ArrayDiv<T> for PrimitiveArray<T>where T: NativeArithmetics + Div<T, Output = T> + NumCast,

source§

fn div(&self, rhs: &T) -> PrimitiveArray<T>

division
source§

impl<T> ArrayMul<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + Mul<T, Output = T>,

source§

fn mul(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

multiplication
source§

impl ArrayMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn mul(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

multiplication
source§

impl<T> ArrayMul<T> for PrimitiveArray<T>where + T: NativeArithmetics + Mul<T, Output = T>,

source§

fn mul(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

multiplication
source§

impl ArrayMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn mul(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

multiplication
source§

impl<T> ArrayMul<T> for PrimitiveArray<T>where T: NativeArithmetics + Mul<T, Output = T>,

source§

fn mul(&self, rhs: &T) -> PrimitiveArray<T>

multiplication
source§

impl<T> ArrayOverflowingAdd<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + OverflowingAdd<Output = T>,

source§

fn overflowing_add( + T: NativeArithmetics + OverflowingAdd<Output = T>,

source§

fn overflowing_add( &self, rhs: &PrimitiveArray<T> ) -> (PrimitiveArray<T>, Bitmap)

Overflowing add
source§

impl<T> ArrayOverflowingAdd<T> for PrimitiveArray<T>where - T: NativeArithmetics + OverflowingAdd<Output = T>,

source§

fn overflowing_add(&self, rhs: &T) -> (PrimitiveArray<T>, Bitmap)

Overflowing add
source§

impl<T> ArrayOverflowingMul<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + OverflowingMul<Output = T>,

source§

fn overflowing_mul( + T: NativeArithmetics + OverflowingAdd<Output = T>,

source§

fn overflowing_add(&self, rhs: &T) -> (PrimitiveArray<T>, Bitmap)

Overflowing add
source§

impl<T> ArrayOverflowingMul<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + OverflowingMul<Output = T>,

source§

fn overflowing_mul( &self, rhs: &PrimitiveArray<T> ) -> (PrimitiveArray<T>, Bitmap)

overflowing multiplication
source§

impl<T> ArrayOverflowingMul<T> for PrimitiveArray<T>where - T: NativeArithmetics + OverflowingMul<Output = T>,

source§

fn overflowing_mul(&self, rhs: &T) -> (PrimitiveArray<T>, Bitmap)

overflowing multiplication
source§

impl<T> ArrayOverflowingSub<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + OverflowingMul<Output = T>,

source§

fn overflowing_mul(&self, rhs: &T) -> (PrimitiveArray<T>, Bitmap)

overflowing multiplication
source§

impl<T> ArrayOverflowingSub<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + OverflowingSub<Output = T>,

source§

fn overflowing_sub( &self, rhs: &PrimitiveArray<T> @@ -219,14 +219,14 @@

Panics
T: NativeArithmetics + OverflowingSub<Output = T>,
source§

fn overflowing_sub(&self, rhs: &T) -> (PrimitiveArray<T>, Bitmap)

overflowing subtraction
source§

impl<T> ArrayRem<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + Rem<T, Output = T>,

source§

fn rem(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

remainder
source§

impl<T> ArrayRem<T> for PrimitiveArray<T>where T: NativeArithmetics + Rem<T, Output = T> + NumCast,

source§

fn rem(&self, rhs: &T) -> PrimitiveArray<T>

remainder
source§

impl<T> ArraySaturatingAdd<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + SaturatingAdd<Output = T>,

source§

fn saturating_add(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

Saturating add
source§

impl ArraySaturatingAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn saturating_add(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

Saturating add
source§

impl<T> ArraySaturatingAdd<T> for PrimitiveArray<T>where + T: NativeArithmetics + SaturatingAdd<Output = T>,

source§

fn saturating_add(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

Saturating add
source§

impl ArraySaturatingAdd<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn saturating_add(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

Saturating add
source§

impl<T> ArraySaturatingAdd<T> for PrimitiveArray<T>where T: NativeArithmetics + SaturatingAdd<Output = T>,

source§

fn saturating_add(&self, rhs: &T) -> PrimitiveArray<T>

Saturating add
source§

impl<T> ArraySaturatingMul<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + SaturatingMul<Output = T>,

source§

fn saturating_mul(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

saturating multiplication
source§

impl ArraySaturatingMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn saturating_mul(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

saturating multiplication
source§

impl<T> ArraySaturatingMul<T> for PrimitiveArray<T>where - T: NativeArithmetics + SaturatingMul<Output = T>,

source§

fn saturating_mul(&self, rhs: &T) -> PrimitiveArray<T>

saturating multiplication
source§

impl<T> ArraySaturatingSub<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + SaturatingMul<Output = T>,

source§

fn saturating_mul(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

saturating multiplication
source§

impl ArraySaturatingMul<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn saturating_mul(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

saturating multiplication
source§

impl<T> ArraySaturatingMul<T> for PrimitiveArray<T>where + T: NativeArithmetics + SaturatingMul<Output = T>,

source§

fn saturating_mul(&self, rhs: &T) -> PrimitiveArray<T>

saturating multiplication
source§

impl<T> ArraySaturatingSub<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + SaturatingSub<Output = T>,

source§

fn saturating_sub(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

saturarting subtraction
source§

impl ArraySaturatingSub<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn saturating_sub(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

saturarting subtraction
source§

impl<T> ArraySaturatingSub<T> for PrimitiveArray<T>where T: NativeArithmetics + SaturatingSub<Output = T>,

source§

fn saturating_sub(&self, rhs: &T) -> PrimitiveArray<T>

saturarting subtraction
source§

impl<T> ArraySub<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeArithmetics + Sub<T, Output = T>,

source§

fn sub(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

subtraction
source§

impl ArraySub<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn sub(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

subtraction
source§

impl<T> ArraySub<T> for PrimitiveArray<T>where - T: NativeArithmetics + Sub<T, Output = T>,

source§

fn sub(&self, rhs: &T) -> PrimitiveArray<T>

subtraction
source§

impl<T> ArrayWrappingAdd<PrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeArithmetics + Sub<T, Output = T>,

source§

fn sub(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

subtraction
source§

impl ArraySub<PrimitiveArray<i128>> for PrimitiveArray<i128>

source§

fn sub(&self, rhs: &PrimitiveArray<i128>) -> PrimitiveArray<i128>

subtraction
source§

impl<T> ArraySub<T> for PrimitiveArray<T>where + T: NativeArithmetics + Sub<T, Output = T>,

source§

fn sub(&self, rhs: &T) -> PrimitiveArray<T>

subtraction
source§

impl<T> ArrayWrappingAdd<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + WrappingAdd<Output = T>,

source§

fn wrapping_add(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

Adds itself to rhs using wrapping addition
source§

impl<T> ArrayWrappingMul<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + WrappingMul<Output = T>,

source§

fn wrapping_mul(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

wrapping multiplication
source§

impl<T> ArrayWrappingSub<PrimitiveArray<T>> for PrimitiveArray<T>where T: NativeArithmetics + WrappingSub<Output = T>,

source§

fn wrapping_sub(&self, rhs: &PrimitiveArray<T>) -> PrimitiveArray<T>

wrapping subtraction
source§

impl<T> ArrowGetItem for PrimitiveArray<T>where @@ -245,10 +245,10 @@
Panics
T: Clone + NativeType,

source§

fn clone(&self) -> PrimitiveArray<T>

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<T> Debug for PrimitiveArray<T>where T: NativeType,

source§

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

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

impl<T> Default for PrimitiveArray<T>where T: NativeType,

source§

fn default() -> PrimitiveArray<T>

Returns the “default value” for a type. Read more
source§

impl<'a, T> From<GrowablePrimitive<'a, T>> for PrimitiveArray<T>where - T: NativeType,

source§

fn from(val: GrowablePrimitive<'a, T>) -> PrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeType,

source§

fn from(other: MutablePrimitiveArray<T>) -> PrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T, P> From<P> for PrimitiveArray<T>where + T: NativeType,

source§

fn from(val: GrowablePrimitive<'a, T>) -> PrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T> From<MutablePrimitiveArray<T>> for PrimitiveArray<T>where + T: NativeType,

source§

fn from(other: MutablePrimitiveArray<T>) -> PrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T, P> From<P> for PrimitiveArray<T>where T: NativeType, - P: AsRef<[Option<T>]>,

source§

fn from(slice: P) -> PrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where + P: AsRef<[Option<T>]>,

source§

fn from(slice: P) -> PrimitiveArray<T>

Converts to this type from the input type.
source§

impl<T> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where T: PolarsNumericType,

source§

fn from(a: PrimitiveArray<<T as PolarsNumericType>::Native>) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<T> FromData<Buffer<T>> for PrimitiveArray<T>where T: NativeType,

source§

fn from_data_default( values: Buffer<T>, @@ -263,16 +263,16 @@

Panics
T: NativeType,
source§

impl<'a, T> IntoIterator for &'a PrimitiveArray<T>where - T: NativeType,

§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a T, Iter<'a, T>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a PrimitiveArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<T> IntoIterator for PrimitiveArray<T>where - T: NativeType,

§

type Item = Option<T>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<T, IntoIter<T>, IntoIter>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <PrimitiveArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<T> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>where - T: NativeType,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always + T: NativeType,
§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<&'a T, Iter<'a, T>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a PrimitiveArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<T> IntoIterator for PrimitiveArray<T>where + T: NativeType,

§

type Item = Option<T>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<T, IntoIter<T>, IntoIter>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <PrimitiveArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<T> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>where + T: NativeType,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialEq<PrimitiveArray<T>> for &(dyn Array + 'static)where T: NativeType,

source§

fn eq(&self, other: &PrimitiveArray<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialEq<PrimitiveArray<T>> for PrimitiveArray<T>where - T: NativeType,

source§

fn eq(&self, other: &PrimitiveArray<T>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always + T: NativeType,
source§

fn eq(&self, other: &PrimitiveArray<T>) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> ArrowArray for PrimitiveArray<T>where T: NativeType,

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for PrimitiveArray<T>

§

impl<T> Send for PrimitiveArray<T>

§

impl<T> Sync for PrimitiveArray<T>

§

impl<T> Unpin for PrimitiveArray<T>

§

impl<T> UnwindSafe for PrimitiveArray<T>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/export/arrow/array/struct.UnionArray.html b/polars/export/arrow/array/struct.UnionArray.html index 1e7e64ed048e..2e78d159dd8a 100644 --- a/polars/export/arrow/array/struct.UnionArray.html +++ b/polars/export/arrow/array/struct.UnionArray.html @@ -80,10 +80,10 @@
Panic
&self, offset: usize, length: usize -) -> Box<dyn Array, Global>

Returns a slice of this Array. Read more
source§

impl Clone for UnionArray

source§

fn clone(&self) -> UnionArray

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 UnionArray

source§

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

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

impl<'a> From<GrowableUnion<'a>> for UnionArray

source§

fn from(val: GrowableUnion<'a>) -> UnionArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a UnionArray

§

type Item = Box<dyn Scalar, Global>

The type of the elements being iterated over.
§

type IntoIter = UnionIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a UnionArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for UnionArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<UnionArray> for UnionArray

source§

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

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array, Global>
Returns a slice of this Array. Read more
source§

impl Clone for UnionArray

source§

fn clone(&self) -> UnionArray

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 UnionArray

source§

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

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

impl<'a> From<GrowableUnion<'a>> for UnionArray

source§

fn from(val: GrowableUnion<'a>) -> UnionArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a UnionArray

§

type Item = Box<dyn Scalar, Global>

The type of the elements being iterated over.
§

type IntoIter = UnionIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a UnionArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for UnionArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<UnionArray> for UnionArray

source§

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

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars/export/arrow/array/struct.Utf8Array.html b/polars/export/arrow/array/struct.Utf8Array.html index 67a9b526088e..2e212bfd46bd 100644 --- a/polars/export/arrow/array/struct.Utf8Array.html +++ b/polars/export/arrow/array/struct.Utf8Array.html @@ -223,9 +223,9 @@
Panics
O: Clone + Offset,

source§

fn clone(&self) -> Utf8Array<O>

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<O> Debug for Utf8Array<O>where O: Offset,

source§

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

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

impl<O> Default for Utf8Array<O>where O: Offset,

source§

fn default() -> Utf8Array<O>

Returns the “default value” for a type. Read more
source§

impl<'a, O> From<GrowableUtf8<'a, O>> for Utf8Array<O>where - O: Offset,

source§

fn from(val: GrowableUtf8<'a, O>) -> Utf8Array<O>

Converts to this type from the input type.
source§

impl<O> From<MutableUtf8Array<O>> for Utf8Array<O>where - O: Offset,

source§

fn from(other: MutableUtf8Array<O>) -> Utf8Array<O>

Converts to this type from the input type.
source§

impl<O> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>where - O: Offset,

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Utf8Array<O>

Converts to this type from the input type.
source§

impl FromDataUtf8 for Utf8Array<i64>

source§

unsafe fn from_data_unchecked_default( + O: Offset,

source§

fn from(val: GrowableUtf8<'a, O>) -> Utf8Array<O>

Converts to this type from the input type.
source§

impl<O> From<MutableUtf8Array<O>> for Utf8Array<O>where + O: Offset,

source§

fn from(other: MutableUtf8Array<O>) -> Utf8Array<O>

Converts to this type from the input type.
source§

impl<O> From<MutableUtf8ValuesArray<O>> for Utf8Array<O>where + O: Offset,

source§

fn from(other: MutableUtf8ValuesArray<O>) -> Utf8Array<O>

Converts to this type from the input type.
source§

impl FromDataUtf8 for Utf8Array<i64>

source§

unsafe fn from_data_unchecked_default( offsets: Buffer<i64>, values: Buffer<u8>, validity: Option<Bitmap> diff --git a/polars/export/arrow/array/trait.Array.html b/polars/export/arrow/array/trait.Array.html index fc8482cbbc67..9fce625f20db 100644 --- a/polars/export/arrow/array/trait.Array.html +++ b/polars/export/arrow/array/trait.Array.html @@ -72,47 +72,47 @@

Implementation
Safety

The caller must ensure that offset + length <= self.len()

Trait Implementations§

source§

impl<'a> AsRef<dyn Array + 'a> for dyn Array

source§

fn as_ref(&self) -> &(dyn Array + 'a)

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Debug for dyn Array + '_

source§

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

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

impl GetAnyValue for Box<dyn Array, Global>

source§

unsafe fn get_unchecked(&self, index: usize) -> AnyValue<'_>

Safety Read more
source§

impl<O> PartialEq<&(dyn Array + 'static)> for BinaryArray<O>where - O: Offset,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used + O: Offset,
source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for BooleanArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<K> PartialEq<&(dyn Array + 'static)> for DictionaryArray<K>where + K: DictionaryKey,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for BooleanArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<K> PartialEq<&(dyn Array + 'static)> for DictionaryArray<K>where - K: DictionaryKey,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeBinaryArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for FixedSizeListArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<O> PartialEq<&(dyn Array + 'static)> for ListArray<O>where - O: Offset,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used + O: Offset,
source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for MapArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for MapArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for NullArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>where + T: NativeType,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for StructArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for NullArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for UnionArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialEq<&(dyn Array + 'static)> for PrimitiveArray<T>where - T: NativeType,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for StructArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&(dyn Array + 'static)> for UnionArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<O> PartialEq<&(dyn Array + 'static)> for Utf8Array<O>where - O: Offset,

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always + O: Offset,
source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<O> PartialEq<BinaryArray<O>> for &(dyn Array + 'static)where - O: Offset,

source§

fn eq(&self, other: &BinaryArray<O>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always + O: Offset,
source§

fn eq(&self, other: &BinaryArray<O>) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialEq<PrimitiveArray<T>> for &(dyn Array + 'static)where - T: NativeType,

source§

fn eq(&self, other: &PrimitiveArray<T>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always + T: NativeType,
source§

fn eq(&self, other: &PrimitiveArray<T>) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<O> PartialEq<Utf8Array<O>> for &(dyn Array + 'static)where - O: Offset,

source§

fn eq(&self, other: &Utf8Array<O>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used + O: Offset,
source§

fn eq(&self, other: &Utf8Array<O>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array + '_> for dyn Array + '_

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Array + '_> for dyn Array + '_

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ValueSize for Box<dyn Array, Global>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy

Implementors§

source§

impl Array for StructArray

source§

impl Array for BooleanArray

source§

impl Array for FixedSizeBinaryArray

source§

impl Array for FixedSizeListArray

source§

impl Array for MapArray

source§

impl Array for NullArray

source§

impl Array for UnionArray

source§

impl<K> Array for DictionaryArray<K>where K: DictionaryKey,

source§

impl<O> Array for BinaryArray<O>where diff --git a/polars/export/arrow/array/trait.DictionaryKey.html b/polars/export/arrow/array/trait.DictionaryKey.html index 3db722f5c65a..a0b265886884 100644 --- a/polars/export/arrow/array/trait.DictionaryKey.html +++ b/polars/export/arrow/array/trait.DictionaryKey.html @@ -13,4 +13,4 @@

Safety

Safety

The caller must have checked that the value can be casted to usize.

source

fn always_fits_usize() -> bool

If the key type always can be converted to usize.

-

Implementations on Foreign Types§

source§

impl DictionaryKey for i64

source§

const KEY_TYPE: IntegerType = IntegerType::Int64

source§

impl DictionaryKey for u8

source§

const KEY_TYPE: IntegerType = IntegerType::UInt8

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for i16

source§

const KEY_TYPE: IntegerType = IntegerType::Int16

source§

impl DictionaryKey for i32

source§

const KEY_TYPE: IntegerType = IntegerType::Int32

source§

impl DictionaryKey for u32

source§

const KEY_TYPE: IntegerType = IntegerType::UInt32

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for u16

source§

const KEY_TYPE: IntegerType = IntegerType::UInt16

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for i8

source§

const KEY_TYPE: IntegerType = IntegerType::Int8

source§

impl DictionaryKey for u64

source§

const KEY_TYPE: IntegerType = IntegerType::UInt64

source§

fn always_fits_usize() -> bool

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl DictionaryKey for i8

source§

const KEY_TYPE: IntegerType = IntegerType::Int8

source§

impl DictionaryKey for i64

source§

const KEY_TYPE: IntegerType = IntegerType::Int64

source§

impl DictionaryKey for u16

source§

const KEY_TYPE: IntegerType = IntegerType::UInt16

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for i16

source§

const KEY_TYPE: IntegerType = IntegerType::Int16

source§

impl DictionaryKey for i32

source§

const KEY_TYPE: IntegerType = IntegerType::Int32

source§

impl DictionaryKey for u32

source§

const KEY_TYPE: IntegerType = IntegerType::UInt32

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for u8

source§

const KEY_TYPE: IntegerType = IntegerType::UInt8

source§

fn always_fits_usize() -> bool

source§

impl DictionaryKey for u64

source§

const KEY_TYPE: IntegerType = IntegerType::UInt64

source§

fn always_fits_usize() -> bool

Implementors§

\ No newline at end of file diff --git a/polars/export/arrow/bitmap/struct.Bitmap.html b/polars/export/arrow/bitmap/struct.Bitmap.html index 0e9eb9c70d76..1229461250bd 100644 --- a/polars/export/arrow/bitmap/struct.Bitmap.html +++ b/polars/export/arrow/bitmap/struct.Bitmap.html @@ -125,8 +125,8 @@
Safety
I: Iterator<Item = Result<bool, E>>,

Creates a new Bitmap from a fallible iterator of booleans.

Safety

The iterator must report an accurate length.

-

Trait Implementations§

source§

impl<'a> BitAnd<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'a Bitmap) -> MutableBitmap

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b Bitmap) -> Bitmap

Performs the & operation. Read more
source§

impl<'a> BitAndAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitand_assign(&mut self, rhs: &'a Bitmap)

Performs the &= operation. Read more
source§

impl<'a> BitOr<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'a Bitmap) -> MutableBitmap

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b Bitmap) -> Bitmap

Performs the | operation. Read more
source§

impl<'a> BitOrAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitor_assign(&mut self, rhs: &'a Bitmap)

Performs the |= operation. Read more
source§

impl<'a> BitXor<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'a Bitmap) -> MutableBitmap

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b Bitmap) -> Bitmap

Performs the ^ operation. Read more
source§

impl<'a> BitXorAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitxor_assign(&mut self, rhs: &'a Bitmap)

Performs the ^= operation. Read more
source§

impl Clone for Bitmap

source§

fn clone(&self) -> Bitmap

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 Bitmap

source§

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

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

impl Default for Bitmap

source§

fn default() -> Bitmap

Returns the “default value” for a type. Read more
source§

impl From<MutableBitmap> for Bitmap

source§

fn from(buffer: MutableBitmap) -> Bitmap

Converts to this type from the input type.
source§

impl<P> From<P> for Bitmapwhere - P: AsRef<[bool]>,

source§

fn from(slice: P) -> Bitmap

Converts to this type from the input type.
source§

impl FromData<Bitmap> for BooleanArray

source§

impl FromIterator<bool> for Bitmap

source§

fn from_iter<I>(iter: I) -> Bitmapwhere +

Trait Implementations§

source§

impl<'a> BitAnd<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'a Bitmap) -> MutableBitmap

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b Bitmap) -> Bitmap

Performs the & operation. Read more
source§

impl<'a> BitAndAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitand_assign(&mut self, rhs: &'a Bitmap)

Performs the &= operation. Read more
source§

impl<'a> BitOr<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'a Bitmap) -> MutableBitmap

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b Bitmap) -> Bitmap

Performs the | operation. Read more
source§

impl<'a> BitOrAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitor_assign(&mut self, rhs: &'a Bitmap)

Performs the |= operation. Read more
source§

impl<'a> BitXor<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'a Bitmap) -> MutableBitmap

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b Bitmap> for &'a Bitmap

§

type Output = Bitmap

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b Bitmap) -> Bitmap

Performs the ^ operation. Read more
source§

impl<'a> BitXorAssign<&'a Bitmap> for &mut MutableBitmap

source§

fn bitxor_assign(&mut self, rhs: &'a Bitmap)

Performs the ^= operation. Read more
source§

impl Clone for Bitmap

source§

fn clone(&self) -> Bitmap

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 Bitmap

source§

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

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

impl Default for Bitmap

source§

fn default() -> Bitmap

Returns the “default value” for a type. Read more
source§

impl From<MutableBitmap> for Bitmap

source§

fn from(buffer: MutableBitmap) -> Bitmap

Converts to this type from the input type.
source§

impl<P> From<P> for Bitmapwhere + P: AsRef<[bool]>,

source§

fn from(slice: P) -> Bitmap

Converts to this type from the input type.
source§

impl FromData<Bitmap> for BooleanArray

source§

impl FromIterator<bool> for Bitmap

source§

fn from_iter<I>(iter: I) -> Bitmapwhere I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl<'a> IntoIterator for &'a Bitmap

§

type Item = bool

The type of the elements being iterated over.
§

type IntoIter = BitmapIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a Bitmap as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for Bitmap

§

type Item = bool

The type of the elements being iterated over.
§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <Bitmap as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl Not for &Bitmap

§

type Output = Bitmap

The resulting type after applying the ! operator.
source§

fn not(self) -> Bitmap

Performs the unary ! operation. Read more
source§

impl PartialEq<Bitmap> for Bitmap

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/polars/export/arrow/bitmap/utils/trait.BitChunk.html b/polars/export/arrow/bitmap/utils/trait.BitChunk.html index 67c64d4521fe..f1535af7bc73 100644 --- a/polars/export/arrow/bitmap/utils/trait.BitChunk.html +++ b/polars/export/arrow/bitmap/utils/trait.BitChunk.html @@ -7,4 +7,4 @@

This (sealed) trait is implemented for u8, u16, u32 and u64.

Required Methods§

source

fn to_ne_bytes(self) -> Self::Bytes

convert itself into bytes.

source

fn from_ne_bytes(v: Self::Bytes) -> Self

convert itself from bytes.

-

Implementations on Foreign Types§

source§

impl BitChunk for u32

source§

impl BitChunk for u64

source§

impl BitChunk for u16

source§

impl BitChunk for u8

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl BitChunk for u64

source§

fn to_ne_bytes(self) -> <u64 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u64 as NativeType>::Bytes) -> u64

source§

impl BitChunk for u16

source§

fn to_ne_bytes(self) -> <u16 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u16 as NativeType>::Bytes) -> u16

source§

impl BitChunk for u8

source§

fn to_ne_bytes(self) -> <u8 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u8 as NativeType>::Bytes) -> u8

source§

impl BitChunk for u32

source§

fn to_ne_bytes(self) -> <u32 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u32 as NativeType>::Bytes) -> u32

Implementors§

\ No newline at end of file diff --git a/polars/export/arrow/buffer/struct.Bytes.html b/polars/export/arrow/buffer/struct.Bytes.html index 3e1972ba7281..d5721e5d3bdb 100644 --- a/polars/export/arrow/buffer/struct.Bytes.html +++ b/polars/export/arrow/buffer/struct.Bytes.html @@ -1057,7 +1057,7 @@
Examples
Examples
assert_eq!(["hello", "world"].connect(" "), "hello world");
 assert_eq!([[1, 2], [3, 4]].connect(&0), [1, 2, 0, 3, 4]);
-

Trait Implementations§

source§

impl<T> Deref for Bytes<T>

§

type Target = [T]

The resulting type after dereferencing.
source§

fn deref(&self) -> &<Bytes<T> as Deref>::Target

Dereferences the value.
source§

impl<T> From<ForeignVec<BytesAllocator, T>> for Bytes<T>

source§

fn from(value: ForeignVec<BytesAllocator, T>) -> Bytes<T>

Converts to this type from the input type.
source§

impl<T> From<Vec<T, Global>> for Bytes<T>

source§

fn from(data: Vec<T, Global>) -> Bytes<T>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Bytes<T>where +

Trait Implementations§

source§

impl<T> Deref for Bytes<T>

§

type Target = [T]

The resulting type after dereferencing.
source§

fn deref(&self) -> &<Bytes<T> as Deref>::Target

Dereferences the value.
source§

impl<T> From<ForeignVec<BytesAllocator, T>> for Bytes<T>

source§

fn from(value: ForeignVec<BytesAllocator, T>) -> Bytes<T>

Converts to this type from the input type.
source§

impl<T> From<Vec<T, Global>> for Bytes<T>

source§

fn from(data: Vec<T, Global>) -> Bytes<T>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Bytes<T>where T: RefUnwindSafe,

§

impl<T> Send for Bytes<T>where T: Send,

§

impl<T> Sync for Bytes<T>where T: Sync,

§

impl<T> Unpin for Bytes<T>where diff --git a/polars/export/arrow/chunk/struct.Chunk.html b/polars/export/arrow/chunk/struct.Chunk.html index a62588827343..721d84943dc0 100644 --- a/polars/export/arrow/chunk/struct.Chunk.html +++ b/polars/export/arrow/chunk/struct.Chunk.html @@ -1076,7 +1076,7 @@
Examples
A: Clone + AsRef<dyn Array>,

source§

fn clone(&self) -> Chunk<A>

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<A> Debug for Chunk<A>where A: Debug + AsRef<dyn Array>,

source§

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

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

impl<A> Deref for Chunk<A>where A: AsRef<dyn Array>,

§

type Target = [A]

The resulting type after dereferencing.
source§

fn deref(&self) -> &[A]

Dereferences the value.
source§

impl<A> From<Chunk<A>> for Vec<A, Global>where - A: AsRef<dyn Array>,

source§

fn from(c: Chunk<A>) -> Vec<A, Global>

Converts to this type from the input type.
source§

impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>

source§

fn from(columns: Chunk<Box<dyn Array, Global>>) -> Record<'static>

Converts to this type from the input type.
source§

impl<A> PartialEq<Chunk<A>> for Chunk<A>where + A: AsRef<dyn Array>,

source§

fn from(c: Chunk<A>) -> Vec<A, Global>

Converts to this type from the input type.
source§

impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>

source§

fn from(columns: Chunk<Box<dyn Array, Global>>) -> Record<'static>

Converts to this type from the input type.
source§

impl<A> PartialEq<Chunk<A>> for Chunk<A>where A: PartialEq<A> + AsRef<dyn Array>,

source§

fn eq(&self, other: &Chunk<A>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, W> Sink<Chunk<Box<dyn Array, Global>>> for FileSink<'a, W>where diff --git a/polars/export/arrow/compute/arithmetics/basic/trait.NativeArithmetics.html b/polars/export/arrow/compute/arithmetics/basic/trait.NativeArithmetics.html index a9ccdaf6fc08..d00553920227 100644 --- a/polars/export/arrow/compute/arithmetics/basic/trait.NativeArithmetics.html +++ b/polars/export/arrow/compute/arithmetics/basic/trait.NativeArithmetics.html @@ -2,4 +2,4 @@ the semantics in Rust. A counter example is i128, that in arrow represents a decimal while in rust represents a signed integer.

-

Implementations on Foreign Types§

source§

impl NativeArithmetics for u32

source§

impl NativeArithmetics for u8

source§

impl NativeArithmetics for u64

source§

impl NativeArithmetics for f64

source§

impl NativeArithmetics for i32

source§

impl NativeArithmetics for f32

source§

impl NativeArithmetics for i16

source§

impl NativeArithmetics for u16

source§

impl NativeArithmetics for i8

source§

impl NativeArithmetics for i64

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl NativeArithmetics for f64

source§

impl NativeArithmetics for u64

source§

impl NativeArithmetics for u16

source§

impl NativeArithmetics for u32

source§

impl NativeArithmetics for i16

source§

impl NativeArithmetics for i32

source§

impl NativeArithmetics for i8

source§

impl NativeArithmetics for f32

source§

impl NativeArithmetics for u8

source§

impl NativeArithmetics for i64

Implementors§

\ No newline at end of file diff --git a/polars/export/arrow/compute/comparison/trait.Simd8.html b/polars/export/arrow/compute/comparison/trait.Simd8.html index e1673e30807e..24399e60e4f5 100644 --- a/polars/export/arrow/compute/comparison/trait.Simd8.html +++ b/polars/export/arrow/compute/comparison/trait.Simd8.html @@ -2,4 +2,4 @@ type Simd: Simd8Lanes<Self>; }
Available on crate feature compute_comparison only.
Expand description

NativeType that supports a representation of 8 lanes

Required Associated Types§

source

type Simd: Simd8Lanes<Self>

The 8 lane representation of Self

-

Implementations on Foreign Types§

source§

impl Simd8 for i32

§

type Simd = [i32; 8]

source§

impl Simd8 for i64

§

type Simd = [i64; 8]

source§

impl Simd8 for i16

§

type Simd = [i16; 8]

source§

impl Simd8 for f32

§

type Simd = [f32; 8]

source§

impl Simd8 for f64

§

type Simd = [f64; 8]

source§

impl Simd8 for u16

§

type Simd = [u16; 8]

source§

impl Simd8 for u8

§

type Simd = [u8; 8]

source§

impl Simd8 for u32

§

type Simd = [u32; 8]

source§

impl Simd8 for u64

§

type Simd = [u64; 8]

source§

impl Simd8 for i8

§

type Simd = [i8; 8]

source§

impl Simd8 for i128

§

type Simd = [i128; 8]

Implementors§

source§

impl Simd8 for days_ms

§

type Simd = [days_ms; 8]

source§

impl Simd8 for f16

§

type Simd = [f16; 8]

source§

impl Simd8 for i256

§

type Simd = [i256; 8]

source§

impl Simd8 for months_days_ns

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Simd8 for i64

§

type Simd = [i64; 8]

source§

impl Simd8 for i128

§

type Simd = [i128; 8]

source§

impl Simd8 for u32

§

type Simd = [u32; 8]

source§

impl Simd8 for u16

§

type Simd = [u16; 8]

source§

impl Simd8 for u8

§

type Simd = [u8; 8]

source§

impl Simd8 for u64

§

type Simd = [u64; 8]

source§

impl Simd8 for i8

§

type Simd = [i8; 8]

source§

impl Simd8 for i16

§

type Simd = [i16; 8]

source§

impl Simd8 for i32

§

type Simd = [i32; 8]

source§

impl Simd8 for f64

§

type Simd = [f64; 8]

source§

impl Simd8 for f32

§

type Simd = [f32; 8]

Implementors§

source§

impl Simd8 for days_ms

§

type Simd = [days_ms; 8]

source§

impl Simd8 for f16

§

type Simd = [f16; 8]

source§

impl Simd8 for i256

§

type Simd = [i256; 8]

source§

impl Simd8 for months_days_ns

\ No newline at end of file diff --git a/polars/export/arrow/compute/comparison/trait.Simd8Lanes.html b/polars/export/arrow/compute/comparison/trait.Simd8Lanes.html index decf1c6b14f2..af181ecb2eda 100644 --- a/polars/export/arrow/compute/comparison/trait.Simd8Lanes.html +++ b/polars/export/arrow/compute/comparison/trait.Simd8Lanes.html @@ -5,7 +5,7 @@ }
Available on crate feature compute_comparison only.
Expand description

Trait declaring an 8-lane multi-data.

Required Methods§

source

fn from_chunk(v: &[T]) -> Self

loads a complete chunk

source

fn from_incomplete_chunk(v: &[T], remaining: T) -> Self

loads an incomplete chunk, filling the remaining items with remaining.

-

Implementations on Foreign Types§

source§

impl Simd8Lanes<f64> for [f64; 8]

source§

fn from_chunk(v: &[f64]) -> [f64; 8]

source§

fn from_incomplete_chunk(v: &[f64], remaining: f64) -> [f64; 8]

source§

impl Simd8Lanes<i256> for [i256; 8]

source§

fn from_chunk(v: &[i256]) -> [i256; 8]

source§

fn from_incomplete_chunk(v: &[i256], remaining: i256) -> [i256; 8]

source§

impl Simd8Lanes<days_ms> for [days_ms; 8]

source§

fn from_chunk(v: &[days_ms]) -> [days_ms; 8]

source§

fn from_incomplete_chunk(v: &[days_ms], remaining: days_ms) -> [days_ms; 8]

source§

impl Simd8Lanes<i8> for [i8; 8]

source§

fn from_chunk(v: &[i8]) -> [i8; 8]

source§

fn from_incomplete_chunk(v: &[i8], remaining: i8) -> [i8; 8]

source§

impl Simd8Lanes<f16> for [f16; 8]

source§

fn from_chunk(v: &[f16]) -> [f16; 8]

source§

fn from_incomplete_chunk(v: &[f16], remaining: f16) -> [f16; 8]

source§

impl Simd8Lanes<i16> for [i16; 8]

source§

fn from_chunk(v: &[i16]) -> [i16; 8]

source§

fn from_incomplete_chunk(v: &[i16], remaining: i16) -> [i16; 8]

source§

impl Simd8Lanes<u8> for [u8; 8]

source§

fn from_chunk(v: &[u8]) -> [u8; 8]

source§

fn from_incomplete_chunk(v: &[u8], remaining: u8) -> [u8; 8]

source§

impl Simd8Lanes<u16> for [u16; 8]

source§

fn from_chunk(v: &[u16]) -> [u16; 8]

source§

fn from_incomplete_chunk(v: &[u16], remaining: u16) -> [u16; 8]

source§

impl Simd8Lanes<u64> for [u64; 8]

source§

fn from_chunk(v: &[u64]) -> [u64; 8]

source§

fn from_incomplete_chunk(v: &[u64], remaining: u64) -> [u64; 8]

source§

impl Simd8Lanes<i128> for [i128; 8]

source§

fn from_chunk(v: &[i128]) -> [i128; 8]

source§

fn from_incomplete_chunk(v: &[i128], remaining: i128) -> [i128; 8]

source§

impl Simd8Lanes<f32> for [f32; 8]

source§

fn from_chunk(v: &[f32]) -> [f32; 8]

source§

fn from_incomplete_chunk(v: &[f32], remaining: f32) -> [f32; 8]

source§

impl Simd8Lanes<i32> for [i32; 8]

source§

fn from_chunk(v: &[i32]) -> [i32; 8]

source§

fn from_incomplete_chunk(v: &[i32], remaining: i32) -> [i32; 8]

source§

impl Simd8Lanes<months_days_ns> for [months_days_ns; 8]

source§

fn from_chunk(v: &[months_days_ns]) -> [months_days_ns; 8]

source§

fn from_incomplete_chunk( +

Implementations on Foreign Types§

source§

impl Simd8Lanes<f64> for [f64; 8]

source§

fn from_chunk(v: &[f64]) -> [f64; 8]

source§

fn from_incomplete_chunk(v: &[f64], remaining: f64) -> [f64; 8]

source§

impl Simd8Lanes<i32> for [i32; 8]

source§

fn from_chunk(v: &[i32]) -> [i32; 8]

source§

fn from_incomplete_chunk(v: &[i32], remaining: i32) -> [i32; 8]

source§

impl Simd8Lanes<u16> for [u16; 8]

source§

fn from_chunk(v: &[u16]) -> [u16; 8]

source§

fn from_incomplete_chunk(v: &[u16], remaining: u16) -> [u16; 8]

source§

impl Simd8Lanes<i8> for [i8; 8]

source§

fn from_chunk(v: &[i8]) -> [i8; 8]

source§

fn from_incomplete_chunk(v: &[i8], remaining: i8) -> [i8; 8]

source§

impl Simd8Lanes<u8> for [u8; 8]

source§

fn from_chunk(v: &[u8]) -> [u8; 8]

source§

fn from_incomplete_chunk(v: &[u8], remaining: u8) -> [u8; 8]

source§

impl Simd8Lanes<u64> for [u64; 8]

source§

fn from_chunk(v: &[u64]) -> [u64; 8]

source§

fn from_incomplete_chunk(v: &[u64], remaining: u64) -> [u64; 8]

source§

impl Simd8Lanes<i128> for [i128; 8]

source§

fn from_chunk(v: &[i128]) -> [i128; 8]

source§

fn from_incomplete_chunk(v: &[i128], remaining: i128) -> [i128; 8]

source§

impl Simd8Lanes<f32> for [f32; 8]

source§

fn from_chunk(v: &[f32]) -> [f32; 8]

source§

fn from_incomplete_chunk(v: &[f32], remaining: f32) -> [f32; 8]

source§

impl Simd8Lanes<u32> for [u32; 8]

source§

fn from_chunk(v: &[u32]) -> [u32; 8]

source§

fn from_incomplete_chunk(v: &[u32], remaining: u32) -> [u32; 8]

source§

impl Simd8Lanes<i16> for [i16; 8]

source§

fn from_chunk(v: &[i16]) -> [i16; 8]

source§

fn from_incomplete_chunk(v: &[i16], remaining: i16) -> [i16; 8]

source§

impl Simd8Lanes<months_days_ns> for [months_days_ns; 8]

source§

fn from_chunk(v: &[months_days_ns]) -> [months_days_ns; 8]

source§

fn from_incomplete_chunk( v: &[months_days_ns], remaining: months_days_ns -) -> [months_days_ns; 8]

source§

impl Simd8Lanes<i64> for [i64; 8]

source§

fn from_chunk(v: &[i64]) -> [i64; 8]

source§

fn from_incomplete_chunk(v: &[i64], remaining: i64) -> [i64; 8]

source§

impl Simd8Lanes<u32> for [u32; 8]

source§

fn from_chunk(v: &[u32]) -> [u32; 8]

source§

fn from_incomplete_chunk(v: &[u32], remaining: u32) -> [u32; 8]

Implementors§

\ No newline at end of file +) -> [months_days_ns; 8]
source§

impl Simd8Lanes<days_ms> for [days_ms; 8]

source§

fn from_chunk(v: &[days_ms]) -> [days_ms; 8]

source§

fn from_incomplete_chunk(v: &[days_ms], remaining: days_ms) -> [days_ms; 8]

source§

impl Simd8Lanes<i256> for [i256; 8]

source§

fn from_chunk(v: &[i256]) -> [i256; 8]

source§

fn from_incomplete_chunk(v: &[i256], remaining: i256) -> [i256; 8]

source§

impl Simd8Lanes<i64> for [i64; 8]

source§

fn from_chunk(v: &[i64]) -> [i64; 8]

source§

fn from_incomplete_chunk(v: &[i64], remaining: i64) -> [i64; 8]

source§

impl Simd8Lanes<f16> for [f16; 8]

source§

fn from_chunk(v: &[f16]) -> [f16; 8]

source§

fn from_incomplete_chunk(v: &[f16], remaining: f16) -> [f16; 8]

Implementors§

\ No newline at end of file diff --git a/polars/export/arrow/compute/comparison/trait.Simd8PartialEq.html b/polars/export/arrow/compute/comparison/trait.Simd8PartialEq.html index 1f61acbb0250..9e551848aa6d 100644 --- a/polars/export/arrow/compute/comparison/trait.Simd8PartialEq.html +++ b/polars/export/arrow/compute/comparison/trait.Simd8PartialEq.html @@ -5,4 +5,4 @@ }
Available on crate feature compute_comparison only.
Expand description

Trait implemented by implementors of Simd8Lanes whose Simd8 implements PartialEq.

Required Methods§

source

fn eq(self, other: Self) -> u8

Equal

source

fn neq(self, other: Self) -> u8

Not equal

-

Implementations on Foreign Types§

source§

impl Simd8PartialEq for [u16; 8]

source§

fn eq(self, other: [u16; 8]) -> u8

source§

fn neq(self, other: [u16; 8]) -> u8

source§

impl Simd8PartialEq for [f32; 8]

source§

fn eq(self, other: [f32; 8]) -> u8

source§

fn neq(self, other: [f32; 8]) -> u8

source§

impl Simd8PartialEq for [i128; 8]

source§

fn eq(self, other: [i128; 8]) -> u8

source§

fn neq(self, other: [i128; 8]) -> u8

source§

impl Simd8PartialEq for [u8; 8]

source§

fn eq(self, other: [u8; 8]) -> u8

source§

fn neq(self, other: [u8; 8]) -> u8

source§

impl Simd8PartialEq for [months_days_ns; 8]

source§

fn eq(self, other: [months_days_ns; 8]) -> u8

source§

fn neq(self, other: [months_days_ns; 8]) -> u8

source§

impl Simd8PartialEq for [i32; 8]

source§

fn eq(self, other: [i32; 8]) -> u8

source§

fn neq(self, other: [i32; 8]) -> u8

source§

impl Simd8PartialEq for [f16; 8]

source§

fn eq(self, other: [f16; 8]) -> u8

source§

fn neq(self, other: [f16; 8]) -> u8

source§

impl Simd8PartialEq for [i256; 8]

source§

fn eq(self, other: [i256; 8]) -> u8

source§

fn neq(self, other: [i256; 8]) -> u8

source§

impl Simd8PartialEq for [i64; 8]

source§

fn eq(self, other: [i64; 8]) -> u8

source§

fn neq(self, other: [i64; 8]) -> u8

source§

impl Simd8PartialEq for [i16; 8]

source§

fn eq(self, other: [i16; 8]) -> u8

source§

fn neq(self, other: [i16; 8]) -> u8

source§

impl Simd8PartialEq for [u64; 8]

source§

fn eq(self, other: [u64; 8]) -> u8

source§

fn neq(self, other: [u64; 8]) -> u8

source§

impl Simd8PartialEq for [f64; 8]

source§

fn eq(self, other: [f64; 8]) -> u8

source§

fn neq(self, other: [f64; 8]) -> u8

source§

impl Simd8PartialEq for [i8; 8]

source§

fn eq(self, other: [i8; 8]) -> u8

source§

fn neq(self, other: [i8; 8]) -> u8

source§

impl Simd8PartialEq for [days_ms; 8]

source§

fn eq(self, other: [days_ms; 8]) -> u8

source§

fn neq(self, other: [days_ms; 8]) -> u8

source§

impl Simd8PartialEq for [u32; 8]

source§

fn eq(self, other: [u32; 8]) -> u8

source§

fn neq(self, other: [u32; 8]) -> u8

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Simd8PartialEq for [u8; 8]

source§

fn eq(self, other: [u8; 8]) -> u8

source§

fn neq(self, other: [u8; 8]) -> u8

source§

impl Simd8PartialEq for [days_ms; 8]

source§

fn eq(self, other: [days_ms; 8]) -> u8

source§

fn neq(self, other: [days_ms; 8]) -> u8

source§

impl Simd8PartialEq for [u32; 8]

source§

fn eq(self, other: [u32; 8]) -> u8

source§

fn neq(self, other: [u32; 8]) -> u8

source§

impl Simd8PartialEq for [i256; 8]

source§

fn eq(self, other: [i256; 8]) -> u8

source§

fn neq(self, other: [i256; 8]) -> u8

source§

impl Simd8PartialEq for [f32; 8]

source§

fn eq(self, other: [f32; 8]) -> u8

source§

fn neq(self, other: [f32; 8]) -> u8

source§

impl Simd8PartialEq for [f64; 8]

source§

fn eq(self, other: [f64; 8]) -> u8

source§

fn neq(self, other: [f64; 8]) -> u8

source§

impl Simd8PartialEq for [i16; 8]

source§

fn eq(self, other: [i16; 8]) -> u8

source§

fn neq(self, other: [i16; 8]) -> u8

source§

impl Simd8PartialEq for [f16; 8]

source§

fn eq(self, other: [f16; 8]) -> u8

source§

fn neq(self, other: [f16; 8]) -> u8

source§

impl Simd8PartialEq for [u16; 8]

source§

fn eq(self, other: [u16; 8]) -> u8

source§

fn neq(self, other: [u16; 8]) -> u8

source§

impl Simd8PartialEq for [i32; 8]

source§

fn eq(self, other: [i32; 8]) -> u8

source§

fn neq(self, other: [i32; 8]) -> u8

source§

impl Simd8PartialEq for [i8; 8]

source§

fn eq(self, other: [i8; 8]) -> u8

source§

fn neq(self, other: [i8; 8]) -> u8

source§

impl Simd8PartialEq for [months_days_ns; 8]

source§

fn eq(self, other: [months_days_ns; 8]) -> u8

source§

fn neq(self, other: [months_days_ns; 8]) -> u8

source§

impl Simd8PartialEq for [u64; 8]

source§

fn eq(self, other: [u64; 8]) -> u8

source§

fn neq(self, other: [u64; 8]) -> u8

source§

impl Simd8PartialEq for [i64; 8]

source§

fn eq(self, other: [i64; 8]) -> u8

source§

fn neq(self, other: [i64; 8]) -> u8

source§

impl Simd8PartialEq for [i128; 8]

source§

fn eq(self, other: [i128; 8]) -> u8

source§

fn neq(self, other: [i128; 8]) -> u8

Implementors§

\ No newline at end of file diff --git a/polars/export/arrow/compute/comparison/trait.Simd8PartialOrd.html b/polars/export/arrow/compute/comparison/trait.Simd8PartialOrd.html index 86af1d00e914..b6cbf38edec4 100644 --- a/polars/export/arrow/compute/comparison/trait.Simd8PartialOrd.html +++ b/polars/export/arrow/compute/comparison/trait.Simd8PartialOrd.html @@ -9,4 +9,4 @@
source

fn lt(self, other: Self) -> u8

Less than

source

fn gt(self, other: Self) -> u8

Greater than

source

fn gt_eq(self, other: Self) -> u8

Greater than or equal to

-

Implementations on Foreign Types§

source§

impl Simd8PartialOrd for [i128; 8]

source§

fn lt_eq(self, other: [i128; 8]) -> u8

source§

fn lt(self, other: [i128; 8]) -> u8

source§

fn gt_eq(self, other: [i128; 8]) -> u8

source§

fn gt(self, other: [i128; 8]) -> u8

source§

impl Simd8PartialOrd for [u32; 8]

source§

fn lt_eq(self, other: [u32; 8]) -> u8

source§

fn lt(self, other: [u32; 8]) -> u8

source§

fn gt_eq(self, other: [u32; 8]) -> u8

source§

fn gt(self, other: [u32; 8]) -> u8

source§

impl Simd8PartialOrd for [u8; 8]

source§

fn lt_eq(self, other: [u8; 8]) -> u8

source§

fn lt(self, other: [u8; 8]) -> u8

source§

fn gt_eq(self, other: [u8; 8]) -> u8

source§

fn gt(self, other: [u8; 8]) -> u8

source§

impl Simd8PartialOrd for [f64; 8]

source§

fn lt_eq(self, other: [f64; 8]) -> u8

source§

fn lt(self, other: [f64; 8]) -> u8

source§

fn gt_eq(self, other: [f64; 8]) -> u8

source§

fn gt(self, other: [f64; 8]) -> u8

source§

impl Simd8PartialOrd for [i256; 8]

source§

fn lt_eq(self, other: [i256; 8]) -> u8

source§

fn lt(self, other: [i256; 8]) -> u8

source§

fn gt_eq(self, other: [i256; 8]) -> u8

source§

fn gt(self, other: [i256; 8]) -> u8

source§

impl Simd8PartialOrd for [i16; 8]

source§

fn lt_eq(self, other: [i16; 8]) -> u8

source§

fn lt(self, other: [i16; 8]) -> u8

source§

fn gt_eq(self, other: [i16; 8]) -> u8

source§

fn gt(self, other: [i16; 8]) -> u8

source§

impl Simd8PartialOrd for [i8; 8]

source§

fn lt_eq(self, other: [i8; 8]) -> u8

source§

fn lt(self, other: [i8; 8]) -> u8

source§

fn gt_eq(self, other: [i8; 8]) -> u8

source§

fn gt(self, other: [i8; 8]) -> u8

source§

impl Simd8PartialOrd for [i64; 8]

source§

fn lt_eq(self, other: [i64; 8]) -> u8

source§

fn lt(self, other: [i64; 8]) -> u8

source§

fn gt_eq(self, other: [i64; 8]) -> u8

source§

fn gt(self, other: [i64; 8]) -> u8

source§

impl Simd8PartialOrd for [i32; 8]

source§

fn lt_eq(self, other: [i32; 8]) -> u8

source§

fn lt(self, other: [i32; 8]) -> u8

source§

fn gt_eq(self, other: [i32; 8]) -> u8

source§

fn gt(self, other: [i32; 8]) -> u8

source§

impl Simd8PartialOrd for [u64; 8]

source§

fn lt_eq(self, other: [u64; 8]) -> u8

source§

fn lt(self, other: [u64; 8]) -> u8

source§

fn gt_eq(self, other: [u64; 8]) -> u8

source§

fn gt(self, other: [u64; 8]) -> u8

source§

impl Simd8PartialOrd for [u16; 8]

source§

fn lt_eq(self, other: [u16; 8]) -> u8

source§

fn lt(self, other: [u16; 8]) -> u8

source§

fn gt_eq(self, other: [u16; 8]) -> u8

source§

fn gt(self, other: [u16; 8]) -> u8

source§

impl Simd8PartialOrd for [f32; 8]

source§

fn lt_eq(self, other: [f32; 8]) -> u8

source§

fn lt(self, other: [f32; 8]) -> u8

source§

fn gt_eq(self, other: [f32; 8]) -> u8

source§

fn gt(self, other: [f32; 8]) -> u8

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Simd8PartialOrd for [u32; 8]

source§

fn lt_eq(self, other: [u32; 8]) -> u8

source§

fn lt(self, other: [u32; 8]) -> u8

source§

fn gt_eq(self, other: [u32; 8]) -> u8

source§

fn gt(self, other: [u32; 8]) -> u8

source§

impl Simd8PartialOrd for [i8; 8]

source§

fn lt_eq(self, other: [i8; 8]) -> u8

source§

fn lt(self, other: [i8; 8]) -> u8

source§

fn gt_eq(self, other: [i8; 8]) -> u8

source§

fn gt(self, other: [i8; 8]) -> u8

source§

impl Simd8PartialOrd for [i128; 8]

source§

fn lt_eq(self, other: [i128; 8]) -> u8

source§

fn lt(self, other: [i128; 8]) -> u8

source§

fn gt_eq(self, other: [i128; 8]) -> u8

source§

fn gt(self, other: [i128; 8]) -> u8

source§

impl Simd8PartialOrd for [u16; 8]

source§

fn lt_eq(self, other: [u16; 8]) -> u8

source§

fn lt(self, other: [u16; 8]) -> u8

source§

fn gt_eq(self, other: [u16; 8]) -> u8

source§

fn gt(self, other: [u16; 8]) -> u8

source§

impl Simd8PartialOrd for [i32; 8]

source§

fn lt_eq(self, other: [i32; 8]) -> u8

source§

fn lt(self, other: [i32; 8]) -> u8

source§

fn gt_eq(self, other: [i32; 8]) -> u8

source§

fn gt(self, other: [i32; 8]) -> u8

source§

impl Simd8PartialOrd for [u8; 8]

source§

fn lt_eq(self, other: [u8; 8]) -> u8

source§

fn lt(self, other: [u8; 8]) -> u8

source§

fn gt_eq(self, other: [u8; 8]) -> u8

source§

fn gt(self, other: [u8; 8]) -> u8

source§

impl Simd8PartialOrd for [f64; 8]

source§

fn lt_eq(self, other: [f64; 8]) -> u8

source§

fn lt(self, other: [f64; 8]) -> u8

source§

fn gt_eq(self, other: [f64; 8]) -> u8

source§

fn gt(self, other: [f64; 8]) -> u8

source§

impl Simd8PartialOrd for [f32; 8]

source§

fn lt_eq(self, other: [f32; 8]) -> u8

source§

fn lt(self, other: [f32; 8]) -> u8

source§

fn gt_eq(self, other: [f32; 8]) -> u8

source§

fn gt(self, other: [f32; 8]) -> u8

source§

impl Simd8PartialOrd for [i64; 8]

source§

fn lt_eq(self, other: [i64; 8]) -> u8

source§

fn lt(self, other: [i64; 8]) -> u8

source§

fn gt_eq(self, other: [i64; 8]) -> u8

source§

fn gt(self, other: [i64; 8]) -> u8

source§

impl Simd8PartialOrd for [i256; 8]

source§

fn lt_eq(self, other: [i256; 8]) -> u8

source§

fn lt(self, other: [i256; 8]) -> u8

source§

fn gt_eq(self, other: [i256; 8]) -> u8

source§

fn gt(self, other: [i256; 8]) -> u8

source§

impl Simd8PartialOrd for [u64; 8]

source§

fn lt_eq(self, other: [u64; 8]) -> u8

source§

fn lt(self, other: [u64; 8]) -> u8

source§

fn gt_eq(self, other: [u64; 8]) -> u8

source§

fn gt(self, other: [u64; 8]) -> u8

source§

impl Simd8PartialOrd for [i16; 8]

source§

fn lt_eq(self, other: [i16; 8]) -> u8

source§

fn lt(self, other: [i16; 8]) -> u8

source§

fn gt_eq(self, other: [i16; 8]) -> u8

source§

fn gt(self, other: [i16; 8]) -> u8

Implementors§

\ No newline at end of file diff --git a/polars/export/arrow/datatypes/enum.DataType.html b/polars/export/arrow/datatypes/enum.DataType.html index 1072f50cae86..d03ed6179b68 100644 --- a/polars/export/arrow/datatypes/enum.DataType.html +++ b/polars/export/arrow/datatypes/enum.DataType.html @@ -128,7 +128,7 @@ (recursively) returns the inner DataType. Never returns the variant DataType::Extension.

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl<T> From<DataType> for MutablePrimitiveArray<T>where - T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where + T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/export/arrow/error/enum.Error.html b/polars/export/arrow/error/enum.Error.html index 058b0903304b..16f31a62b626 100644 --- a/polars/export/arrow/error/enum.Error.html +++ b/polars/export/arrow/error/enum.Error.html @@ -16,7 +16,7 @@ The solution is usually to use a higher-capacity container-backing type.

§

OutOfSpec(String)

Whenever incoming data from the C data interface, IPC or Flight does not fulfil the Arrow specification.

Implementations§

source§

impl Error

source

pub fn from_external_error(error: impl Error + Send + Sync + 'static) -> Error

Wraps an external error in an Error.

-

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars/export/arrow/io/ipc/write/struct.Record.html b/polars/export/arrow/io/ipc/write/struct.Record.html index 477f7639f184..a010eae951f0 100644 --- a/polars/export/arrow/io/ipc/write/struct.Record.html +++ b/polars/export/arrow/io/ipc/write/struct.Record.html @@ -2,8 +2,8 @@

Implementations§

source§

impl<'a> Record<'a>

source

pub fn fields(&self) -> Option<&[IpcField]>

Get the IPC fields for this record.

source

pub fn columns(&self) -> &Chunk<Box<dyn Array, Global>>

Get the Arrow columns in this record.

Trait Implementations§

source§

impl<'a> Clone for Record<'a>

source§

fn clone(&self) -> Record<'a>

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<'a> Debug for Record<'a>

source§

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

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

impl<'a, F> From<(&'a Chunk<Box<dyn Array, Global>>, Option<F>)> for Record<'a>where - F: Into<Cow<'a, [IpcField]>>,

source§

fn from(_: (&'a Chunk<Box<dyn Array, Global>>, Option<F>)) -> Record<'a>

Converts to this type from the input type.
source§

impl<'a, F> From<(Chunk<Box<dyn Array, Global>>, Option<F>)> for Record<'a>where - F: Into<Cow<'a, [IpcField]>>,

source§

fn from(_: (Chunk<Box<dyn Array, Global>>, Option<F>)) -> Record<'a>

Converts to this type from the input type.
source§

impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>

source§

fn from(columns: Chunk<Box<dyn Array, Global>>) -> Record<'static>

Converts to this type from the input type.
source§

impl<'a> PartialEq<Record<'a>> for Record<'a>

source§

fn eq(&self, other: &Record<'a>) -> bool

This method tests for self and other values to be equal, and is used + F: Into<Cow<'a, [IpcField]>>,
source§

fn from(_: (&'a Chunk<Box<dyn Array, Global>>, Option<F>)) -> Record<'a>

Converts to this type from the input type.
source§

impl<'a, F> From<(Chunk<Box<dyn Array, Global>>, Option<F>)> for Record<'a>where + F: Into<Cow<'a, [IpcField]>>,

source§

fn from(_: (Chunk<Box<dyn Array, Global>>, Option<F>)) -> Record<'a>

Converts to this type from the input type.
source§

impl From<Chunk<Box<dyn Array, Global>>> for Record<'static>

source§

fn from(columns: Chunk<Box<dyn Array, Global>>) -> Record<'static>

Converts to this type from the input type.
source§

impl<'a> PartialEq<Record<'a>> for Record<'a>

source§

fn eq(&self, other: &Record<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, W> Sink<Record<'_>> for FileSink<'a, W>where W: AsyncWrite + Unpin + Send + 'a,

§

type Error = Error

The type of value produced by the sink when an error occurs.
source§

fn poll_ready( diff --git a/polars/export/arrow/io/parquet/read/enum.ParquetError.html b/polars/export/arrow/io/parquet/read/enum.ParquetError.html index f4a88c029360..4d6560cbac5f 100644 --- a/polars/export/arrow/io/parquet/read/enum.ParquetError.html +++ b/polars/export/arrow/io/parquet/read/enum.ParquetError.html @@ -10,7 +10,7 @@

§

FeatureNotSupported(String)

Error presented when trying to use a feature from parquet that is not yet supported

§

InvalidParameter(String)

When encoding, the user passed an invalid parameter

§

WouldOverAllocate

When decoding or decompressing, the page would allocate more memory than allowed

-

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

Available on crate feature snappy only.
source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<TryFromIntError> for Error

source§

fn from(e: TryFromIntError) -> Error

Converts to this type from the input type.
source§

impl From<TryFromSliceError> for Error

source§

fn from(e: TryFromSliceError) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(e: TryReserveError) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

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

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

impl Display for Error

source§

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

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

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

Available on crate feature snappy only.
source§

fn from(e: Error) -> Error

Converts to this type from the input type.
source§

impl From<TryFromIntError> for Error

source§

fn from(e: TryFromIntError) -> Error

Converts to this type from the input type.
source§

impl From<TryFromSliceError> for Error

source§

fn from(e: TryFromSliceError) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(e: TryReserveError) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/export/arrow/offset/struct.Offsets.html b/polars/export/arrow/offset/struct.Offsets.html index 956ffeb6d5bc..3b3ca8e8ecd1 100644 --- a/polars/export/arrow/offset/struct.Offsets.html +++ b/polars/export/arrow/offset/struct.Offsets.html @@ -68,13 +68,13 @@
Errors
O: Clone + Offset,

source§

fn clone(&self) -> Offsets<O>

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<O> Debug for Offsets<O>where O: Debug + Offset,

source§

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

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

impl<O> Default for Offsets<O>where O: Offset,

source§

fn default() -> Offsets<O>

Returns the “default value” for a type. Read more
source§

impl<O> From<Offsets<O>> for OffsetsBuffer<O>where - O: Offset,

source§

fn from(offsets: Offsets<O>) -> OffsetsBuffer<O>

Converts to this type from the input type.
source§

impl From<Offsets<i32>> for Offsets<i64>

source§

fn from(offsets: Offsets<i32>) -> Offsets<i64>

Converts to this type from the input type.
source§

impl<O> PartialEq<Offsets<O>> for Offsets<O>where + O: Offset,

source§

fn from(offsets: Offsets<O>) -> OffsetsBuffer<O>

Converts to this type from the input type.
source§

impl From<Offsets<i32>> for Offsets<i64>

source§

fn from(offsets: Offsets<i32>) -> Offsets<i64>

Converts to this type from the input type.
source§

impl<O> PartialEq<Offsets<O>> for Offsets<O>where O: PartialEq<O> + Offset,

source§

fn eq(&self, other: &Offsets<O>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Offsets<i64>> for Offsets<i32>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( +sufficient, and should not be overridden without very good reason.

source§

impl TryFrom<Offsets<i64>> for Offsets<i32>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( offsets: Offsets<i64> ) -> Result<Offsets<i32>, <Offsets<i32> as TryFrom<Offsets<i64>>>::Error>

Performs the conversion.
source§

impl<O> TryFrom<Vec<O, Global>> for Offsets<O>where - O: Offset,

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( + O: Offset,

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( offsets: Vec<O, Global> ) -> Result<Offsets<O>, <Offsets<O> as TryFrom<Vec<O, Global>>>::Error>

Performs the conversion.
source§

impl<O> Eq for Offsets<O>where O: Eq + Offset,

source§

impl<O> StructuralEq for Offsets<O>where diff --git a/polars/export/arrow/offset/struct.OffsetsBuffer.html b/polars/export/arrow/offset/struct.OffsetsBuffer.html index 02ad1b211da3..245f07f27a7b 100644 --- a/polars/export/arrow/offset/struct.OffsetsBuffer.html +++ b/polars/export/arrow/offset/struct.OffsetsBuffer.html @@ -1099,13 +1099,13 @@
Examples
O: Offset,

source§

fn from(offsets: Offsets<O>) -> OffsetsBuffer<O>

Converts to this type from the input type.
source§

impl<O> PartialEq<OffsetsBuffer<O>> for OffsetsBuffer<O>where O: PartialEq<O> + Offset,

source§

fn eq(&self, other: &OffsetsBuffer<O>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<&OffsetsBuffer<i64>> for OffsetsBuffer<i32>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( +sufficient, and should not be overridden without very good reason.

source§

impl TryFrom<&OffsetsBuffer<i64>> for OffsetsBuffer<i32>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( offsets: &OffsetsBuffer<i64> ) -> Result<OffsetsBuffer<i32>, <OffsetsBuffer<i32> as TryFrom<&OffsetsBuffer<i64>>>::Error>

Performs the conversion.
source§

impl<O> TryFrom<Buffer<O>> for OffsetsBuffer<O>where O: Offset,

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( offsets: Buffer<O> ) -> Result<OffsetsBuffer<O>, <OffsetsBuffer<O> as TryFrom<Buffer<O>>>::Error>

Performs the conversion.
source§

impl<O> TryFrom<Vec<O, Global>> for OffsetsBuffer<O>where - O: Offset,

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( + O: Offset,

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( offsets: Vec<O, Global> ) -> Result<OffsetsBuffer<O>, <OffsetsBuffer<O> as TryFrom<Vec<O, Global>>>::Error>

Performs the conversion.
source§

impl<O> StructuralPartialEq for OffsetsBuffer<O>where O: Offset,

Auto Trait Implementations§

§

impl<O> RefUnwindSafe for OffsetsBuffer<O>

§

impl<O> Send for OffsetsBuffer<O>

§

impl<O> Sync for OffsetsBuffer<O>

§

impl<O> Unpin for OffsetsBuffer<O>

§

impl<O> UnwindSafe for OffsetsBuffer<O>

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/polars/export/arrow/trusted_len/trait.TrustedLen.html b/polars/export/arrow/trusted_len/trait.TrustedLen.html index 3b662ccb9a16..d41f0307048c 100644 --- a/polars/export/arrow/trusted_len/trait.TrustedLen.html +++ b/polars/export/arrow/trusted_len/trait.TrustedLen.html @@ -5,21 +5,21 @@

Safety

This trait must only be implemented when the contract is upheld. Consumers of this trait must inspect Iterator::size_hint()’s upper bound.

-

Implementations on Foreign Types§

source§

impl<B, I, T> TrustedLen for Map<I, T>where - I: TrustedLen, - T: FnMut(<I as Iterator>::Item) -> B,

source§

impl<I> TrustedLen for Enumerate<I>where - I: TrustedLen,

source§

impl<'a, I, T> TrustedLen for Cloned<I>where +

Implementations on Foreign Types§

source§

impl<'a, I, T> TrustedLen for Cloned<I>where T: 'a + Clone, - I: TrustedLen<Item = &'a T>,

source§

impl<T> TrustedLen for Windows<'_, T>

source§

impl<A> TrustedLen for Take<A>where - A: TrustedLen,

source§

impl<A, F> TrustedLen for RepeatWith<F>where - F: FnMut() -> A,

source§

impl<T> TrustedLen for Once<T>

source§

impl<A, B> TrustedLen for Zip<A, B>where - A: TrustedLen, - B: TrustedLen,

source§

impl<T> TrustedLen for Iter<'_, T>

source§

impl<T> TrustedLen for IntoIter<T, Global>

source§

impl<A, B> TrustedLen for Chain<A, B>where + I: TrustedLen<Item = &'a T>,

source§

impl<T> TrustedLen for Windows<'_, T>

source§

impl<A, B> TrustedLen for Zip<A, B>where A: TrustedLen, - B: TrustedLen<Item = <A as Iterator>::Item>,

source§

impl<A> TrustedLen for Repeat<A>where - A: Clone,

source§

impl<'a, I, T> TrustedLen for Copied<I>where + B: TrustedLen,

source§

impl<T> TrustedLen for Iter<'_, T>

source§

impl<A, F> TrustedLen for RepeatWith<F>where + F: FnMut() -> A,

source§

impl<T> TrustedLen for IntoIter<T, Global>

source§

impl<A> TrustedLen for Repeat<A>where + A: Clone,

source§

impl<A> TrustedLen for Take<A>where + A: TrustedLen,

source§

impl<I> TrustedLen for Enumerate<I>where + I: TrustedLen,

source§

impl<T> TrustedLen for ChunksExact<'_, T>

source§

impl<'a, I, T> TrustedLen for Copied<I>where T: 'a + Copy, - I: TrustedLen<Item = &'a T>,

source§

impl<T> TrustedLen for ChunksExact<'_, T>

source§

impl<I, J> TrustedLen for TrustMyLength<I, J>where + I: TrustedLen<Item = &'a T>,

source§

impl<B, I, T> TrustedLen for Map<I, T>where + I: TrustedLen, + T: FnMut(<I as Iterator>::Item) -> B,

source§

impl<T> TrustedLen for Once<T>

source§

impl<A, B> TrustedLen for Chain<A, B>where + A: TrustedLen, + B: TrustedLen<Item = <A as Iterator>::Item>,

source§

impl<I, J> TrustedLen for TrustMyLength<I, J>where I: Iterator<Item = J>,

Implementors§

source§

impl TrustedLen for polars::export::arrow::bitmap::IntoIter

source§

impl TrustedLen for BitmapIter<'_>

source§

impl<'a, A> TrustedLen for ArrayValuesIter<'a, A>where A: ArrayAccessor<'a>,

source§

impl<I> TrustedLen for IndexRange<I>where I: Index,

Safety: a range is always of known length

diff --git a/polars/export/arrow/types/simd/trait.Simd.html b/polars/export/arrow/types/simd/trait.Simd.html index ffc952e30416..5b18c16e3cfc 100644 --- a/polars/export/arrow/types/simd/trait.Simd.html +++ b/polars/export/arrow/types/simd/trait.Simd.html @@ -3,4 +3,4 @@ }
Expand description

Trait implemented by some NativeType that have a SIMD representation.

Required Associated Types§

source

type Simd: NativeSimd<Native = Self>

The SIMD type associated with this trait. This type supports SIMD operations

-

Implementations on Foreign Types§

source§

impl Simd for f32

§

type Simd = f32x16

source§

impl Simd for u16

§

type Simd = u16x32

source§

impl Simd for f64

§

type Simd = f64x8

source§

impl Simd for i16

§

type Simd = i16x32

source§

impl Simd for i64

§

type Simd = i64x8

source§

impl Simd for u8

§

type Simd = u8x64

source§

impl Simd for u32

§

type Simd = u32x16

source§

impl Simd for i128

§

type Simd = i128x8

source§

impl Simd for i32

§

type Simd = i32x16

source§

impl Simd for u64

§

type Simd = u64x8

source§

impl Simd for i8

§

type Simd = i8x64

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Simd for i16

§

type Simd = i16x32

source§

impl Simd for f32

§

type Simd = f32x16

source§

impl Simd for i32

§

type Simd = i32x16

source§

impl Simd for u16

§

type Simd = u16x32

source§

impl Simd for u8

§

type Simd = u8x64

source§

impl Simd for i64

§

type Simd = i64x8

source§

impl Simd for u32

§

type Simd = u32x16

source§

impl Simd for i8

§

type Simd = i8x64

source§

impl Simd for f64

§

type Simd = f64x8

source§

impl Simd for u64

§

type Simd = u64x8

source§

impl Simd for i128

§

type Simd = i128x8

Implementors§

source§

impl Simd for days_ms

source§

impl Simd for f16

§

type Simd = f16x32

source§

impl Simd for i256

§

type Simd = i256x8

source§

impl Simd for months_days_ns

\ No newline at end of file diff --git a/polars/export/arrow/types/trait.BitChunk.html b/polars/export/arrow/types/trait.BitChunk.html index 708cd7caae9b..6c8f928c8ea2 100644 --- a/polars/export/arrow/types/trait.BitChunk.html +++ b/polars/export/arrow/types/trait.BitChunk.html @@ -7,4 +7,4 @@

This (sealed) trait is implemented for u8, u16, u32 and u64.

Required Methods§

source

fn to_ne_bytes(self) -> Self::Bytes

convert itself into bytes.

source

fn from_ne_bytes(v: Self::Bytes) -> Self

convert itself from bytes.

-

Implementations on Foreign Types§

source§

impl BitChunk for u32

source§

fn to_ne_bytes(self) -> <u32 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u32 as NativeType>::Bytes) -> u32

source§

impl BitChunk for u64

source§

fn to_ne_bytes(self) -> <u64 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u64 as NativeType>::Bytes) -> u64

source§

impl BitChunk for u16

source§

fn to_ne_bytes(self) -> <u16 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u16 as NativeType>::Bytes) -> u16

source§

impl BitChunk for u8

source§

fn to_ne_bytes(self) -> <u8 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u8 as NativeType>::Bytes) -> u8

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl BitChunk for u64

source§

fn to_ne_bytes(self) -> <u64 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u64 as NativeType>::Bytes) -> u64

source§

impl BitChunk for u16

source§

fn to_ne_bytes(self) -> <u16 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u16 as NativeType>::Bytes) -> u16

source§

impl BitChunk for u8

source§

fn to_ne_bytes(self) -> <u8 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u8 as NativeType>::Bytes) -> u8

source§

impl BitChunk for u32

source§

fn to_ne_bytes(self) -> <u32 as NativeType>::Bytes

source§

fn from_ne_bytes(v: <u32 as NativeType>::Bytes) -> u32

Implementors§

\ No newline at end of file diff --git a/polars/export/arrow/types/trait.Index.html b/polars/export/arrow/types/trait.Index.html index 839859748617..96735002be1e 100644 --- a/polars/export/arrow/types/trait.Index.html +++ b/polars/export/arrow/types/trait.Index.html @@ -12,4 +12,4 @@
source

fn from_usize(index: usize) -> Option<Self>

Convert itself from usize.

source

fn from_as_usize(index: usize) -> Self

Convert itself from usize.

Provided Methods§

source

fn range(start: usize, end: usize) -> Option<IndexRange<Self>>

An iterator from (inclusive) start to (exclusive) end.

-

Implementations on Foreign Types§

source§

impl Index for i16

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<i16>

source§

fn from_as_usize(value: usize) -> i16

source§

impl Index for u16

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<u16>

source§

fn from_as_usize(value: usize) -> u16

source§

impl Index for u8

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<u8>

source§

fn from_as_usize(value: usize) -> u8

source§

impl Index for u64

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<u64>

source§

fn from_as_usize(value: usize) -> u64

source§

impl Index for i64

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<i64>

source§

fn from_as_usize(value: usize) -> i64

source§

impl Index for u32

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<u32>

source§

fn from_as_usize(value: usize) -> u32

source§

impl Index for i8

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<i8>

source§

fn from_as_usize(value: usize) -> i8

source§

impl Index for i32

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<i32>

source§

fn from_as_usize(value: usize) -> i32

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Index for i64

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<i64>

source§

fn from_as_usize(value: usize) -> i64

source§

impl Index for u64

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<u64>

source§

fn from_as_usize(value: usize) -> u64

source§

impl Index for i16

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<i16>

source§

fn from_as_usize(value: usize) -> i16

source§

impl Index for u8

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<u8>

source§

fn from_as_usize(value: usize) -> u8

source§

impl Index for u16

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<u16>

source§

fn from_as_usize(value: usize) -> u16

source§

impl Index for i8

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<i8>

source§

fn from_as_usize(value: usize) -> i8

source§

impl Index for i32

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<i32>

source§

fn from_as_usize(value: usize) -> i32

source§

impl Index for u32

source§

fn to_usize(&self) -> usize

source§

fn from_usize(value: usize) -> Option<u32>

source§

fn from_as_usize(value: usize) -> u32

Implementors§

\ No newline at end of file diff --git a/polars/export/arrow/types/trait.NativeType.html b/polars/export/arrow/types/trait.NativeType.html index 210476c7f6c9..afd35f76f14f 100644 --- a/polars/export/arrow/types/trait.NativeType.html +++ b/polars/export/arrow/types/trait.NativeType.html @@ -18,4 +18,4 @@
source

fn to_be_bytes(&self) -> Self::Bytes

To bytes in big endian

source

fn from_le_bytes(bytes: Self::Bytes) -> Self

From bytes in little endian

source

fn from_be_bytes(bytes: Self::Bytes) -> Self

From bytes in big endian

-

Implementations on Foreign Types§

source§

impl NativeType for u64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> <u64 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <u64 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <u64 as NativeType>::Bytes) -> u64

source§

fn from_be_bytes(bytes: <u64 as NativeType>::Bytes) -> u64

source§

impl NativeType for i64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> <i64 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i64 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i64 as NativeType>::Bytes) -> i64

source§

fn from_be_bytes(bytes: <i64 as NativeType>::Bytes) -> i64

source§

impl NativeType for u16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt16

§

type Bytes = [u8; 2]

source§

fn to_le_bytes(&self) -> <u16 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <u16 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <u16 as NativeType>::Bytes) -> u16

source§

fn from_be_bytes(bytes: <u16 as NativeType>::Bytes) -> u16

source§

impl NativeType for f64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> <f64 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <f64 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <f64 as NativeType>::Bytes) -> f64

source§

fn from_be_bytes(bytes: <f64 as NativeType>::Bytes) -> f64

source§

impl NativeType for i32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> <i32 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i32 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i32 as NativeType>::Bytes) -> i32

source§

fn from_be_bytes(bytes: <i32 as NativeType>::Bytes) -> i32

source§

impl NativeType for i8

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int8

§

type Bytes = [u8; 1]

source§

fn to_le_bytes(&self) -> <i8 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i8 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i8 as NativeType>::Bytes) -> i8

source§

fn from_be_bytes(bytes: <i8 as NativeType>::Bytes) -> i8

source§

impl NativeType for i16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int16

§

type Bytes = [u8; 2]

source§

fn to_le_bytes(&self) -> <i16 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i16 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i16 as NativeType>::Bytes) -> i16

source§

fn from_be_bytes(bytes: <i16 as NativeType>::Bytes) -> i16

source§

impl NativeType for i128

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int128

§

type Bytes = [u8; 16]

source§

fn to_le_bytes(&self) -> <i128 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i128 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i128 as NativeType>::Bytes) -> i128

source§

fn from_be_bytes(bytes: <i128 as NativeType>::Bytes) -> i128

source§

impl NativeType for u32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> <u32 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <u32 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <u32 as NativeType>::Bytes) -> u32

source§

fn from_be_bytes(bytes: <u32 as NativeType>::Bytes) -> u32

source§

impl NativeType for u8

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt8

§

type Bytes = [u8; 1]

source§

fn to_le_bytes(&self) -> <u8 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <u8 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <u8 as NativeType>::Bytes) -> u8

source§

fn from_be_bytes(bytes: <u8 as NativeType>::Bytes) -> u8

source§

impl NativeType for f32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> <f32 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <f32 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <f32 as NativeType>::Bytes) -> f32

source§

fn from_be_bytes(bytes: <f32 as NativeType>::Bytes) -> f32

Implementors§

source§

impl NativeType for days_ms

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::DaysMs

§

type Bytes = [u8; 8]

source§

impl NativeType for f16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float16

§

type Bytes = [u8; 2]

source§

impl NativeType for i256

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int256

§

type Bytes = [u8; 32]

source§

impl NativeType for months_days_ns

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::MonthDayNano

§

type Bytes = [u8; 16]

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl NativeType for i64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> <i64 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i64 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i64 as NativeType>::Bytes) -> i64

source§

fn from_be_bytes(bytes: <i64 as NativeType>::Bytes) -> i64

source§

impl NativeType for f32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> <f32 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <f32 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <f32 as NativeType>::Bytes) -> f32

source§

fn from_be_bytes(bytes: <f32 as NativeType>::Bytes) -> f32

source§

impl NativeType for i16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int16

§

type Bytes = [u8; 2]

source§

fn to_le_bytes(&self) -> <i16 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i16 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i16 as NativeType>::Bytes) -> i16

source§

fn from_be_bytes(bytes: <i16 as NativeType>::Bytes) -> i16

source§

impl NativeType for u16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt16

§

type Bytes = [u8; 2]

source§

fn to_le_bytes(&self) -> <u16 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <u16 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <u16 as NativeType>::Bytes) -> u16

source§

fn from_be_bytes(bytes: <u16 as NativeType>::Bytes) -> u16

source§

impl NativeType for f64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> <f64 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <f64 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <f64 as NativeType>::Bytes) -> f64

source§

fn from_be_bytes(bytes: <f64 as NativeType>::Bytes) -> f64

source§

impl NativeType for u64

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt64

§

type Bytes = [u8; 8]

source§

fn to_le_bytes(&self) -> <u64 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <u64 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <u64 as NativeType>::Bytes) -> u64

source§

fn from_be_bytes(bytes: <u64 as NativeType>::Bytes) -> u64

source§

impl NativeType for i8

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int8

§

type Bytes = [u8; 1]

source§

fn to_le_bytes(&self) -> <i8 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i8 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i8 as NativeType>::Bytes) -> i8

source§

fn from_be_bytes(bytes: <i8 as NativeType>::Bytes) -> i8

source§

impl NativeType for i32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> <i32 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i32 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i32 as NativeType>::Bytes) -> i32

source§

fn from_be_bytes(bytes: <i32 as NativeType>::Bytes) -> i32

source§

impl NativeType for i128

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int128

§

type Bytes = [u8; 16]

source§

fn to_le_bytes(&self) -> <i128 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <i128 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <i128 as NativeType>::Bytes) -> i128

source§

fn from_be_bytes(bytes: <i128 as NativeType>::Bytes) -> i128

source§

impl NativeType for u8

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt8

§

type Bytes = [u8; 1]

source§

fn to_le_bytes(&self) -> <u8 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <u8 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <u8 as NativeType>::Bytes) -> u8

source§

fn from_be_bytes(bytes: <u8 as NativeType>::Bytes) -> u8

source§

impl NativeType for u32

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::UInt32

§

type Bytes = [u8; 4]

source§

fn to_le_bytes(&self) -> <u32 as NativeType>::Bytes

source§

fn to_be_bytes(&self) -> <u32 as NativeType>::Bytes

source§

fn from_le_bytes(bytes: <u32 as NativeType>::Bytes) -> u32

source§

fn from_be_bytes(bytes: <u32 as NativeType>::Bytes) -> u32

Implementors§

source§

impl NativeType for days_ms

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::DaysMs

§

type Bytes = [u8; 8]

source§

impl NativeType for f16

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Float16

§

type Bytes = [u8; 2]

source§

impl NativeType for i256

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::Int256

§

type Bytes = [u8; 32]

source§

impl NativeType for months_days_ns

source§

const PRIMITIVE: PrimitiveType = PrimitiveType::MonthDayNano

§

type Bytes = [u8; 16]

\ No newline at end of file diff --git a/polars/frame/groupby/struct.GroupsIdx.html b/polars/frame/groupby/struct.GroupsIdx.html index 7fca91fc6e44..efb6488bf6f7 100644 --- a/polars/frame/groupby/struct.GroupsIdx.html +++ b/polars/frame/groupby/struct.GroupsIdx.html @@ -4,11 +4,11 @@ first: Vec<u32, Global>, all: Vec<Vec<u32, Global>, Global>, sorted: bool -) -> GroupsIdx
source

pub fn sort(&mut self)

source

pub fn is_sorted_flag(&self) -> bool

source

pub fn iter(&self) -> Zip<Copied<Iter<'_, u32>>, Iter<'_, Vec<u32, Global>>>

source

pub fn all(&self) -> &[Vec<u32, Global>]

source

pub fn first(&self) -> &[u32]

source

pub fn first_mut(&mut self) -> &mut Vec<u32, Global>

Trait Implementations§

source§

impl Clone for GroupsIdx

source§

fn clone(&self) -> GroupsIdx

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 GroupsIdx

source§

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

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

impl Default for GroupsIdx

source§

fn default() -> GroupsIdx

Returns the “default value” for a type. Read more
source§

impl Drop for GroupsIdx

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<GroupsIdx> for GroupsProxy

source§

fn from(groups: GroupsIdx) -> GroupsProxy

Converts to this type from the input type.
source§

impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx

source§

fn from( +) -> GroupsIdx

source

pub fn sort(&mut self)

source

pub fn is_sorted_flag(&self) -> bool

source

pub fn iter(&self) -> Zip<Copied<Iter<'_, u32>>, Iter<'_, Vec<u32, Global>>>

source

pub fn all(&self) -> &[Vec<u32, Global>]

source

pub fn first(&self) -> &[u32]

source

pub fn first_mut(&mut self) -> &mut Vec<u32, Global>

Trait Implementations§

source§

impl Clone for GroupsIdx

source§

fn clone(&self) -> GroupsIdx

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 GroupsIdx

source§

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

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

impl Default for GroupsIdx

source§

fn default() -> GroupsIdx

Returns the “default value” for a type. Read more
source§

impl Drop for GroupsIdx

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<GroupsIdx> for GroupsProxy

source§

fn from(groups: GroupsIdx) -> GroupsProxy

Converts to this type from the input type.
source§

impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx

source§

fn from( v: Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global> -) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<(u32, Vec<u32, Global>), Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx

source§

fn from(v: Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_iter<T>(iter: T) -> GroupsIdxwhere +) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<(u32, Vec<u32, Global>), Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx

source§

fn from(v: Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_iter<T>(iter: T) -> GroupsIdxwhere T: IntoIterator<Item = (u32, Vec<u32, Global>)>,

Creates a value from an iterator. Read more
source§

impl FromParallelIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_par_iter<I>(par_iter: I) -> GroupsIdxwhere - I: IntoParallelIterator<Item = (u32, Vec<u32, Global>)>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<'a> IntoIterator for &'a GroupsIdx

§

type Item = (u32, &'a Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for GroupsIdx

§

type Item = (u32, Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<IntoIter<u32, Global>, IntoIter<Vec<u32, Global>, Global>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoParallelIterator for &'a GroupsIdx

§

type Iter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, &'a Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <&'a GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl IntoParallelIterator for GroupsIdx

§

type Iter = Zip<IntoIter<u32>, IntoIter<Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl PartialEq<GroupsIdx> for GroupsIdx

source§

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

This method tests for self and other values to be equal, and is used + I: IntoParallelIterator<Item = (u32, Vec<u32, Global>)>,
Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<'a> IntoIterator for &'a GroupsIdx

§

type Item = (u32, &'a Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for GroupsIdx

§

type Item = (u32, Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<IntoIter<u32, Global>, IntoIter<Vec<u32, Global>, Global>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoParallelIterator for &'a GroupsIdx

§

type Iter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, &'a Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <&'a GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl IntoParallelIterator for GroupsIdx

§

type Iter = Zip<IntoIter<u32>, IntoIter<Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl PartialEq<GroupsIdx> for GroupsIdx

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for GroupsIdx

source§

impl StructuralEq for GroupsIdx

source§

impl StructuralPartialEq for GroupsIdx

Auto Trait Implementations§

§

impl RefUnwindSafe for GroupsIdx

§

impl Send for GroupsIdx

§

impl Sync for GroupsIdx

§

impl Unpin for GroupsIdx

§

impl UnwindSafe for GroupsIdx

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/frame/struct.DataFrame.html b/polars/frame/struct.DataFrame.html index 9b1c8c44cd7c..a8e6fa55d653 100644 --- a/polars/frame/struct.DataFrame.html +++ b/polars/frame/struct.DataFrame.html @@ -1403,22 +1403,22 @@
Example
S: AsRef<str>,

Perform an outer join on two DataFrames Read more
source§

impl Debug for DataFrame

source§

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

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

impl Default for DataFrame

source§

fn default() -> DataFrame

Returns the “default value” for a type. Read more
source§

impl Display for DataFrame

source§

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

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

impl From<&Schema> for DataFrame

source§

fn from(schema: &Schema) -> DataFrame

Converts to this type from the input type.
source§

impl From<DataFrame> for Vec<Series, Global>

source§

fn from(df: DataFrame) -> Vec<Series, Global>

Converts to this type from the input type.
source§

impl From<StructChunked> for DataFrame

source§

fn from(ca: StructChunked) -> DataFrame

Converts to this type from the input type.
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T>(iter: T) -> DataFramewhere T: IntoIterator<Item = Series>,

Panics

Panics if Series have different lengths.

-
source§

impl Index<&str> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: &str) -> &<DataFrame as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Range<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +

source§

impl Index<&str> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: &str) -> &<DataFrame as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Range<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: Range<usize> -) -> &<DataFrame as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFrom<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFrom<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeFrom<usize> -) -> &<DataFrame as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFull> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFull) -> &<DataFrame as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFull> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFull) -> &<DataFrame as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeInclusive<usize> -) -> &<DataFrame as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeTo<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeTo<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeTo<usize> -) -> &<DataFrame as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeToInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeToInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeToInclusive<usize> -) -> &<DataFrame as Index<RangeToInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: usize) -> &<DataFrame as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IntoLazy for DataFrame

source§

fn lazy(self) -> LazyFrame

Convert the DataFrame into a lazy DataFrame

+) -> &<DataFrame as Index<RangeToInclusive<usize>>>::Output
Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: usize) -> &<DataFrame as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IntoLazy for DataFrame

source§

fn lazy(self) -> LazyFrame

Convert the DataFrame into a lazy DataFrame

source§

impl PartialEq<DataFrame> for DataFrame

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PolarsTemporalGroupby for DataFrame

source§

fn groupby_rolling( @@ -1443,9 +1443,9 @@

Example
every: Duration, offset: Duration ) -> Result<DataFrame, PolarsError>where - I: IntoVec<String>,
Upsample a DataFrame at a regular frequency. Read more
source§

impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( + I: IntoVec<String>,

Upsample a DataFrame at a regular frequency. Read more
source§

impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( arg: (Chunk<Box<dyn Array, Global>>, &[Field]) -) -> Result<DataFrame, PolarsError>

Performs the conversion.
source§

impl TryFrom<StructArray> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arr: StructArray) -> Result<DataFrame, PolarsError>

Performs the conversion.

Auto Trait Implementations§

§

impl !RefUnwindSafe for DataFrame

§

impl Send for DataFrame

§

impl Sync for DataFrame

§

impl Unpin for DataFrame

§

impl !UnwindSafe for DataFrame

Blanket Implementations§

source§

impl<T> Any for Twhere +) -> Result<DataFrame, PolarsError>

Performs the conversion.
source§

impl TryFrom<StructArray> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arr: StructArray) -> Result<DataFrame, PolarsError>

Performs the conversion.

Auto Trait Implementations§

§

impl !RefUnwindSafe for DataFrame

§

impl Send for DataFrame

§

impl Sync for DataFrame

§

impl Unpin for DataFrame

§

impl !UnwindSafe for DataFrame

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DataFrameOps for Twhere diff --git a/polars/prelude/chunkedarray/struct.RollingOptions.html b/polars/prelude/chunkedarray/struct.RollingOptions.html index 5aa35078cf83..96841a5b75ee 100644 --- a/polars/prelude/chunkedarray/struct.RollingOptions.html +++ b/polars/prelude/chunkedarray/struct.RollingOptions.html @@ -14,7 +14,7 @@

§by: Option<String>

Compute the rolling aggregates with a window defined by a time column

§closed_window: Option<ClosedWindow>

The closed window of that time window if given

§fn_params: Option<Arc<dyn Any + Send + Sync>>

Optional parameters for the rolling function

-

Trait Implementations§

source§

impl Clone for RollingOptions

source§

fn clone(&self) -> RollingOptions

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 Default for RollingOptions

source§

fn default() -> RollingOptions

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptions) -> RollingOptionsFixedWindow

Converts to this type from the input type.
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> RollingOptionsImpl<'static>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for RollingOptions

§

impl Send for RollingOptions

§

impl Sync for RollingOptions

§

impl Unpin for RollingOptions

§

impl !UnwindSafe for RollingOptions

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for RollingOptions

source§

fn clone(&self) -> RollingOptions

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 Default for RollingOptions

source§

fn default() -> RollingOptions

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptions) -> RollingOptionsFixedWindow

Converts to this type from the input type.
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> RollingOptionsImpl<'static>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for RollingOptions

§

impl Send for RollingOptions

§

impl Sync for RollingOptions

§

impl Unpin for RollingOptions

§

impl !UnwindSafe for RollingOptions

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/chunkedarray/struct.RollingOptionsImpl.html b/polars/prelude/chunkedarray/struct.RollingOptionsImpl.html index d43e27343a6b..387b84090ffb 100644 --- a/polars/prelude/chunkedarray/struct.RollingOptionsImpl.html +++ b/polars/prelude/chunkedarray/struct.RollingOptionsImpl.html @@ -13,7 +13,7 @@

§weights: Option<Vec<f64, Global>>

An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.

§center: bool

Set the labels at the center of the window.

-
§by: Option<&'a [i64]>§tu: Option<TimeUnit>§tz: Option<&'a String>§closed_window: Option<ClosedWindow>§fn_params: Option<Arc<dyn Any + Send + Sync>>

Trait Implementations§

source§

impl<'a> Clone for RollingOptionsImpl<'a>

source§

fn clone(&self) -> RollingOptionsImpl<'a>

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 Default for RollingOptionsImpl<'static>

source§

fn default() -> RollingOptionsImpl<'static>

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> RollingOptionsImpl<'static>

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptionsImpl<'a>) -> RollingOptionsFixedWindow

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for RollingOptionsImpl<'a>

§

impl<'a> Send for RollingOptionsImpl<'a>

§

impl<'a> Sync for RollingOptionsImpl<'a>

§

impl<'a> Unpin for RollingOptionsImpl<'a>

§

impl<'a> !UnwindSafe for RollingOptionsImpl<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere +

§by: Option<&'a [i64]>§tu: Option<TimeUnit>§tz: Option<&'a String>§closed_window: Option<ClosedWindow>§fn_params: Option<Arc<dyn Any + Send + Sync>>

Trait Implementations§

source§

impl<'a> Clone for RollingOptionsImpl<'a>

source§

fn clone(&self) -> RollingOptionsImpl<'a>

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 Default for RollingOptionsImpl<'static>

source§

fn default() -> RollingOptionsImpl<'static>

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> RollingOptionsImpl<'static>

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptionsImpl<'a>) -> RollingOptionsFixedWindow

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for RollingOptionsImpl<'a>

§

impl<'a> Send for RollingOptionsImpl<'a>

§

impl<'a> Sync for RollingOptionsImpl<'a>

§

impl<'a> Unpin for RollingOptionsImpl<'a>

§

impl<'a> !UnwindSafe for RollingOptionsImpl<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/chunkedarray/utf8/enum.Pattern.html b/polars/prelude/chunkedarray/utf8/enum.Pattern.html index 3ae27c4034e9..e870b909d000 100644 --- a/polars/prelude/chunkedarray/utf8/enum.Pattern.html +++ b/polars/prelude/chunkedarray/utf8/enum.Pattern.html @@ -9,10 +9,10 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<Pattern> for Pattern

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i32>

Available on crate feature dtype-date only.
§

type Error = PolarsError

source§

fn try_from_with_unit( +sufficient, and should not be overridden without very good reason.

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i32>

Available on crate feature dtype-date only.
§

type Error = PolarsError

source§

fn try_from_with_unit( value: Pattern, _time_unit: Option<TimeUnit> -) -> Result<DatetimeInfer<i32>, PolarsError>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i64>

Available on crate feature dtype-datetime only.
§

type Error = PolarsError

source§

fn try_from_with_unit( +) -> Result<DatetimeInfer<i32>, PolarsError>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i64>

Available on crate feature dtype-datetime only.
§

type Error = PolarsError

source§

fn try_from_with_unit( value: Pattern, time_unit: Option<TimeUnit> ) -> Result<DatetimeInfer<i64>, PolarsError>

source§

impl Copy for Pattern

source§

impl Eq for Pattern

source§

impl StructuralEq for Pattern

source§

impl StructuralPartialEq for Pattern

Auto Trait Implementations§

§

impl RefUnwindSafe for Pattern

§

impl Send for Pattern

§

impl Sync for Pattern

§

impl Unpin for Pattern

§

impl UnwindSafe for Pattern

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/polars/prelude/chunkedarray/utf8/infer/struct.DatetimeInfer.html b/polars/prelude/chunkedarray/utf8/infer/struct.DatetimeInfer.html index cd791f89997a..fe42db51854f 100644 --- a/polars/prelude/chunkedarray/utf8/infer/struct.DatetimeInfer.html +++ b/polars/prelude/chunkedarray/utf8/infer/struct.DatetimeInfer.html @@ -12,10 +12,10 @@ &mut self, val: &[u8], time_unit: Option<TimeUnit> -) -> Option<i64>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i32>

Available on crate feature dtype-date only.
§

type Error = PolarsError

source§

fn try_from_with_unit( +) -> Option<i64>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i32>

Available on crate feature dtype-date only.
§

type Error = PolarsError

source§

fn try_from_with_unit( value: Pattern, _time_unit: Option<TimeUnit> -) -> Result<DatetimeInfer<i32>, PolarsError>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i64>

Available on crate feature dtype-datetime only.
§

type Error = PolarsError

source§

fn try_from_with_unit( +) -> Result<DatetimeInfer<i32>, PolarsError>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i64>

Available on crate feature dtype-datetime only.
§

type Error = PolarsError

source§

fn try_from_with_unit( value: Pattern, time_unit: Option<TimeUnit> ) -> Result<DatetimeInfer<i64>, PolarsError>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for DatetimeInfer<T>

§

impl<T> Send for DatetimeInfer<T>

§

impl<T> Sync for DatetimeInfer<T>

§

impl<T> Unpin for DatetimeInfer<T>

§

impl<T> UnwindSafe for DatetimeInfer<T>

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/polars/prelude/datatypes/categorical/struct.CategoricalChunked.html b/polars/prelude/datatypes/categorical/struct.CategoricalChunked.html index dba60dc2a86f..adc6ca0321ab 100644 --- a/polars/prelude/datatypes/categorical/struct.CategoricalChunked.html +++ b/polars/prelude/datatypes/categorical/struct.CategoricalChunked.html @@ -15,7 +15,7 @@
Safety

Invariant in v < rev_map.len() for v in idx must be hold.

source

pub fn get_rev_map(&self) -> &Arc<RevMapping>

Get a reference to the mapping of categorical types to the string values.

source

pub fn iter_str(&self) -> CatIter<'_>

Create an [Iterator] that iterates over the &str values of the [CategoricalChunked].

-

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/datatypes/enum.AnyValue.html b/polars/prelude/datatypes/enum.AnyValue.html index af562fbc03ce..641996fe0c44 100644 --- a/polars/prelude/datatypes/enum.AnyValue.html +++ b/polars/prelude/datatypes/enum.AnyValue.html @@ -52,9 +52,9 @@ T: NumCast,

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn cast(&self, dtype: &'a DataType) -> Result<AnyValue<'a>, PolarsError>

source§

impl<'a> AnyValue<'a>

source

pub fn add(&self, rhs: &AnyValue<'_>) -> AnyValue<'a>

source

pub fn as_borrowed(&self) -> AnyValue<'_>

source

pub fn into_static(self) -> Result<AnyValue<'static>, PolarsError>

Try to coerce to an AnyValue with static lifetime. This can be done if it does not borrow any values.

source

pub fn get_str(&self) -> Option<&str>

Get a reference to the &str contained within AnyValue.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where - K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where - T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where + K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where + T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<AnyValue<'_>> for AnyValue<'_>

source§

fn eq(&self, other: &AnyValue<'_>) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars/prelude/datatypes/enum.ArrowDataType.html b/polars/prelude/datatypes/enum.ArrowDataType.html index 89d4b04d0e28..1492e3a80067 100644 --- a/polars/prelude/datatypes/enum.ArrowDataType.html +++ b/polars/prelude/datatypes/enum.ArrowDataType.html @@ -128,7 +128,7 @@ (recursively) returns the inner DataType. Never returns the variant DataType::Extension.

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl<T> From<DataType> for MutablePrimitiveArray<T>where - T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where + T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/prelude/datatypes/enum.DataType.html b/polars/prelude/datatypes/enum.DataType.html index 378025e1e2b8..2ca1d6b00bdd 100644 --- a/polars/prelude/datatypes/enum.DataType.html +++ b/polars/prelude/datatypes/enum.DataType.html @@ -43,7 +43,7 @@ it is not a container type.

source

pub fn is_numeric(&self) -> bool

Check if this DataType is a numeric type.

source

pub fn is_float(&self) -> bool

source

pub fn is_integer(&self) -> bool

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn to_arrow(&self) -> DataType

Convert to an Arrow data type.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

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

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

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

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

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

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/prelude/datatypes/struct.CategoricalChunked.html b/polars/prelude/datatypes/struct.CategoricalChunked.html index b4de75e48a39..69d28f0a6a7e 100644 --- a/polars/prelude/datatypes/struct.CategoricalChunked.html +++ b/polars/prelude/datatypes/struct.CategoricalChunked.html @@ -15,7 +15,7 @@
Safety

Invariant in v < rev_map.len() for v in idx must be hold.

source

pub fn get_rev_map(&self) -> &Arc<RevMapping>

Available on crate feature dtype-categorical only.

Get a reference to the mapping of categorical types to the string values.

source

pub fn iter_str(&self) -> CatIter<'_>

Available on crate feature dtype-categorical only.

Create an [Iterator] that iterates over the &str values of the [CategoricalChunked].

-

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/datatypes/struct.Field.html b/polars/prelude/datatypes/struct.Field.html index eea6eab9ad3c..48f92e9516c5 100644 --- a/polars/prelude/datatypes/struct.Field.html +++ b/polars/prelude/datatypes/struct.Field.html @@ -35,7 +35,7 @@
Example
let af = arrow::datatypes::Field::new("Value", arrow::datatypes::DataType::Int64, true); assert_eq!(f.to_arrow(), af);

-

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

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

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

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

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

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

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

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

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Field

source§

impl StructuralEq for Field

source§

impl StructuralPartialEq for Field

Auto Trait Implementations§

§

impl RefUnwindSafe for Field

§

impl Send for Field

§

impl Sync for Field

§

impl Unpin for Field

§

impl UnwindSafe for Field

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/prelude/datatypes/struct.Int32Type.html b/polars/prelude/datatypes/struct.Int32Type.html index be1c22255f15..5512268270db 100644 --- a/polars/prelude/datatypes/struct.Int32Type.html +++ b/polars/prelude/datatypes/struct.Int32Type.html @@ -1,4 +1,4 @@ -Int32Type in polars::prelude::datatypes - Rust
pub struct Int32Type {}

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +Int32Type in polars::prelude::datatypes - Rust
pub struct Int32Type {}

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/datatypes/struct.Logical.html b/polars/prelude/datatypes/struct.Logical.html index e668966e33bf..1b339dc799b1 100644 --- a/polars/prelude/datatypes/struct.Logical.html +++ b/polars/prelude/datatypes/struct.Logical.html @@ -329,27 +329,27 @@
Safety

source§

fn milliseconds(&self) -> ChunkedArray<Int64Type>

Extract the milliseconds from a Duration

source§

fn microseconds(&self) -> ChunkedArray<Int64Type>

Extract the microseconds from a Duration

source§

fn nanoseconds(&self) -> ChunkedArray<Int64Type>

Extract the nanoseconds from a Duration

-

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( +

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

fn into_series(self) -> Series

source§

fn is_series() -> bool

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( self, rhs: &Logical<DecimalType, Int128Type> ) -> <&Logical<DecimalType, Int128Type> as Mul<&Logical<DecimalType, Int128Type>>>::Output

Performs the * operation. Read more
source§

impl<T> NamedFrom<T, [Duration]> for Logical<DurationType, Int64Type>where T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Logical<DateType, Int32Type>where - T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Logical<TimeType, Int64Type>where - T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where + T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Logical<DateType, Int32Type>where - T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where - T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where - T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

fn month_end( + T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where + T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

fn month_end( &self, _time_zone: Option<&Tz> -) -> Result<Logical<DateType, Int32Type>, PolarsError>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

fn month_end( +) -> Result<Logical<DateType, Int32Type>, PolarsError>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

fn month_end( &self, time_zone: Option<&Tz> -) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

fn month_start( +) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

fn month_start( &self, _tz: Option<&Tz> -) -> Result<Logical<DateType, Int32Type>, PolarsError>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

fn month_start( +) -> Result<Logical<DateType, Int32Type>, PolarsError>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

fn month_start( &self, tz: Option<&Tz> ) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>

source§

impl PolarsRound for Logical<DateType, Int32Type>

Available on crate feature dtype-date only.
source§

fn round( diff --git a/polars/prelude/datatypes/trait.InitHashMaps.html b/polars/prelude/datatypes/trait.InitHashMaps.html index ee995901832e..3af3f291151f 100644 --- a/polars/prelude/datatypes/trait.InitHashMaps.html +++ b/polars/prelude/datatypes/trait.InitHashMaps.html @@ -4,12 +4,12 @@ // Required methods fn new() -> Self::HashMap; fn with_capacity(capacity: usize) -> Self::HashMap; -}

Required Associated Types§

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

§

type HashMap = HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

fn new( - -) -> <HashMap<K, V, BuildHasherDefault<IdHasher>, Global> as InitHashMaps>::HashMap

source§

fn with_capacity( +}

Required Associated Types§

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

Implementors§

\ No newline at end of file +) -> HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

Implementors§

\ No newline at end of file diff --git a/polars/prelude/datatypes/trait.NumericNative.html b/polars/prelude/datatypes/trait.NumericNative.html index 14784c713271..67018dd6ad4e 100644 --- a/polars/prelude/datatypes/trait.NumericNative.html +++ b/polars/prelude/datatypes/trait.NumericNative.html @@ -1,3 +1,3 @@ NumericNative in polars::prelude::datatypes - Rust
pub trait NumericNative: PartialOrd<Self> + NativeType + Num<Output = Self, Output = Self, Output = Self, Output = Self, Output = Self> + NumCast + Zero + Simd + Simd8 + Sum<Self> + Add<Self> + Sub<Self> + Mul<Self> + Div<Self> + Rem<Self> + AddAssign<Self> + SubAssign<Self> + Bounded + FromPrimitive + IsFloat + ArrayArithmetics {
     type POLARSTYPE: PolarsNumericType;
-}

Required Associated Types§

Implementations on Foreign Types§

source§

impl NumericNative for i8

source§

impl NumericNative for f64

source§

impl NumericNative for i16

source§

impl NumericNative for u64

source§

impl NumericNative for i64

source§

impl NumericNative for u32

source§

impl NumericNative for f32

source§

impl NumericNative for i32

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.
source§

impl NumericNative for u16

source§

impl NumericNative for u8

Implementors§

\ No newline at end of file +}

Required Associated Types§

source

type POLARSTYPE: PolarsNumericType

Implementations on Foreign Types§

source§

impl NumericNative for u8

§

type POLARSTYPE = UInt8Type

source§

impl NumericNative for u64

§

type POLARSTYPE = UInt64Type

source§

impl NumericNative for i32

§

type POLARSTYPE = Int32Type

source§

impl NumericNative for i16

§

type POLARSTYPE = Int16Type

source§

impl NumericNative for f32

§

type POLARSTYPE = Float32Type

source§

impl NumericNative for i64

§

type POLARSTYPE = Int64Type

source§

impl NumericNative for u16

§

type POLARSTYPE = UInt16Type

source§

impl NumericNative for i8

§

type POLARSTYPE = Int8Type

source§

impl NumericNative for u32

§

type POLARSTYPE = UInt32Type

source§

impl NumericNative for f64

§

type POLARSTYPE = Float64Type

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.
§

type POLARSTYPE = Int128Type

Implementors§

\ No newline at end of file diff --git a/polars/prelude/enum.AnyValue.html b/polars/prelude/enum.AnyValue.html index 25d4a45dfd69..7af82bf13372 100644 --- a/polars/prelude/enum.AnyValue.html +++ b/polars/prelude/enum.AnyValue.html @@ -52,9 +52,9 @@ T: NumCast,
source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn cast(&self, dtype: &'a DataType) -> Result<AnyValue<'a>, PolarsError>

source§

impl<'a> AnyValue<'a>

source

pub fn add(&self, rhs: &AnyValue<'_>) -> AnyValue<'a>

source

pub fn as_borrowed(&self) -> AnyValue<'_>

source

pub fn into_static(self) -> Result<AnyValue<'static>, PolarsError>

Try to coerce to an AnyValue with static lifetime. This can be done if it does not borrow any values.

source

pub fn get_str(&self) -> Option<&str>

Get a reference to the &str contained within AnyValue.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where - K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where - T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

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

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

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

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

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

impl From<&AnyValue<'_>> for NaiveDateTime

source§

fn from(v: &AnyValue<'_>) -> NaiveDateTime

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

source§

fn from(v: &AnyValue<'_>) -> NaiveTime

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl<K> From<K> for AnyValue<'_>where + K: NumericNative,

source§

fn from(value: K) -> AnyValue<'_>

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where + T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> AnyValue<'a>

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<AnyValue<'_>> for AnyValue<'_>

source§

fn eq(&self, other: &AnyValue<'_>) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars/prelude/enum.ArrowDataType.html b/polars/prelude/enum.ArrowDataType.html index 718d0663bbc9..4604be187c5c 100644 --- a/polars/prelude/enum.ArrowDataType.html +++ b/polars/prelude/enum.ArrowDataType.html @@ -128,7 +128,7 @@ (recursively) returns the inner DataType. Never returns the variant DataType::Extension.

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

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

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

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl<T> From<DataType> for MutablePrimitiveArray<T>where - T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where + T: NativeType,

source§

fn from(data_type: DataType) -> MutablePrimitiveArray<T>

Converts to this type from the input type.
source§

impl From<IntegerType> for DataType

source§

fn from(item: IntegerType) -> DataType

Converts to this type from the input type.
source§

impl From<PrimitiveType> for DataType

source§

fn from(item: PrimitiveType) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

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

This method tests for self and other values to be equal, and is used diff --git a/polars/prelude/enum.BooleanFunction.html b/polars/prelude/enum.BooleanFunction.html index 2e2db6b08715..aaa33a488044 100644 --- a/polars/prelude/enum.BooleanFunction.html +++ b/polars/prelude/enum.BooleanFunction.html @@ -14,7 +14,7 @@ IsNotNan, IsFirst, IsIn, -}

Variants§

§

All

Fields

§drop_nulls: bool
§

Any

Fields

§drop_nulls: bool
§

IsNot

§

IsNull

§

IsNotNull

§

IsFinite

§

IsInfinite

§

IsNan

§

IsNotNan

§

IsFirst

Available on crate feature is_first only.
§

IsIn

Available on crate feature is_in only.

Trait Implementations§

source§

impl Clone for BooleanFunction

source§

fn clone(&self) -> BooleanFunction

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 BooleanFunction

source§

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

Formats the value using the given formatter. Read more
source§

impl Display for BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl Hash for BooleanFunction

source§

fn hash<__H>(&self, state: &mut __H)where +}

Variants§

§

All

Fields

§drop_nulls: bool
§

Any

Fields

§drop_nulls: bool
§

IsNot

§

IsNull

§

IsNotNull

§

IsFinite

§

IsInfinite

§

IsNan

§

IsNotNan

§

IsFirst

Available on crate feature is_first only.
§

IsIn

Available on crate feature is_in only.

Trait Implementations§

source§

impl Clone for BooleanFunction

source§

fn clone(&self) -> BooleanFunction

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 BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl Hash for BooleanFunction

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<BooleanFunction> for BooleanFunction

source§

fn eq(&self, other: &BooleanFunction) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars/prelude/enum.DataType.html b/polars/prelude/enum.DataType.html index 2ae348747fd6..eb6457a06ec5 100644 --- a/polars/prelude/enum.DataType.html +++ b/polars/prelude/enum.DataType.html @@ -43,7 +43,7 @@ it is not a container type.

source

pub fn is_numeric(&self) -> bool

Check if this DataType is a numeric type.

source

pub fn is_float(&self) -> bool

source

pub fn is_integer(&self) -> bool

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn to_arrow(&self) -> DataType

Convert to an Arrow data type.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> DataType

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &DataType) -> DataType

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> DataType

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

fn eq(&self, other: &DataType) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars/prelude/enum.Expr.html b/polars/prelude/enum.Expr.html index af8c56e8b61d..3590a592da10 100644 --- a/polars/prelude/enum.Expr.html +++ b/polars/prelude/enum.Expr.html @@ -447,7 +447,7 @@
Warning
source

pub fn struct_(self) -> StructNameSpace

Available on crate feature dtype-struct only.
source

pub fn meta(self) -> MetaNameSpace

Available on crate feature meta only.
source§

impl Expr

source

pub fn mutate(&mut self) -> ExprMut<'_>

Expr::mutate().apply(fn())

-
source§

impl Expr

source

pub fn nodes<'a>(&'a self, container: &mut Vec<&'a Expr, Global>)

source

pub fn nodes_mut<'a>(&'a mut self, container: &mut Vec<&'a mut Expr, Global>)

Trait Implementations§

source§

impl Add<Expr> for Expr

§

type Output = Expr

The resulting type after applying the + operator.
source§

fn add(self, rhs: Expr) -> <Expr as Add<Expr>>::Output

Performs the + operation. Read more
source§

impl AsRef<Expr> for AggExpr

source§

fn as_ref(&self) -> &Expr

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Expr

source§

fn clone(&self) -> Expr

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 Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Expr

source§

fn default() -> Expr

Returns the “default value” for a type. Read more
source§

impl Display for Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Div<Expr> for Expr

§

type Output = Expr

The resulting type after applying the / operator.
source§

fn div(self, rhs: Expr) -> <Expr as Div<Expr>>::Output

Performs the / operation. Read more
source§

impl ExprEvalExtension for Expr

source§

fn cumulative_eval(self, expr: Expr, min_periods: usize, parallel: bool) -> Expr

Run an expression over a sliding window that increases 1 slot every iteration. Read more
source§

impl From<&str> for Expr

source§

fn from(s: &str) -> Expr

Converts to this type from the input type.
source§

impl From<AggExpr> for Expr

source§

fn from(agg: AggExpr) -> Expr

Converts to this type from the input type.
source§

impl From<bool> for Expr

source§

fn from(val: bool) -> Expr

Converts to this type from the input type.
source§

impl From<f32> for Expr

source§

fn from(val: f32) -> Expr

Converts to this type from the input type.
source§

impl From<f64> for Expr

source§

fn from(val: f64) -> Expr

Converts to this type from the input type.
source§

impl From<i16> for Expr

source§

fn from(val: i16) -> Expr

Converts to this type from the input type.
source§

impl From<i32> for Expr

source§

fn from(val: i32) -> Expr

Converts to this type from the input type.
source§

impl From<i64> for Expr

source§

fn from(val: i64) -> Expr

Converts to this type from the input type.
source§

impl From<i8> for Expr

source§

fn from(val: i8) -> Expr

Converts to this type from the input type.
source§

impl From<u16> for Expr

source§

fn from(val: u16) -> Expr

Converts to this type from the input type.
source§

impl From<u32> for Expr

source§

fn from(val: u32) -> Expr

Converts to this type from the input type.
source§

impl From<u64> for Expr

source§

fn from(val: u64) -> Expr

Converts to this type from the input type.
source§

impl From<u8> for Expr

source§

fn from(val: u8) -> Expr

Converts to this type from the input type.
source§

impl Hash for Expr

source§

fn hash<H>(&self, state: &mut H)where +

source§

impl Expr

source

pub fn nodes<'a>(&'a self, container: &mut Vec<&'a Expr, Global>)

source

pub fn nodes_mut<'a>(&'a mut self, container: &mut Vec<&'a mut Expr, Global>)

Trait Implementations§

source§

impl Add<Expr> for Expr

§

type Output = Expr

The resulting type after applying the + operator.
source§

fn add(self, rhs: Expr) -> <Expr as Add<Expr>>::Output

Performs the + operation. Read more
source§

impl AsRef<Expr> for AggExpr

source§

fn as_ref(&self) -> &Expr

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Expr

source§

fn clone(&self) -> Expr

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 Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Expr

source§

fn default() -> Expr

Returns the “default value” for a type. Read more
source§

impl Display for Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Div<Expr> for Expr

§

type Output = Expr

The resulting type after applying the / operator.
source§

fn div(self, rhs: Expr) -> <Expr as Div<Expr>>::Output

Performs the / operation. Read more
source§

impl ExprEvalExtension for Expr

source§

fn cumulative_eval(self, expr: Expr, min_periods: usize, parallel: bool) -> Expr

Run an expression over a sliding window that increases 1 slot every iteration. Read more
source§

impl From<&str> for Expr

source§

fn from(s: &str) -> Expr

Converts to this type from the input type.
source§

impl From<AggExpr> for Expr

source§

fn from(agg: AggExpr) -> Expr

Converts to this type from the input type.
source§

impl From<bool> for Expr

source§

fn from(val: bool) -> Expr

Converts to this type from the input type.
source§

impl From<f32> for Expr

source§

fn from(val: f32) -> Expr

Converts to this type from the input type.
source§

impl From<f64> for Expr

source§

fn from(val: f64) -> Expr

Converts to this type from the input type.
source§

impl From<i16> for Expr

source§

fn from(val: i16) -> Expr

Converts to this type from the input type.
source§

impl From<i32> for Expr

source§

fn from(val: i32) -> Expr

Converts to this type from the input type.
source§

impl From<i64> for Expr

source§

fn from(val: i64) -> Expr

Converts to this type from the input type.
source§

impl From<i8> for Expr

source§

fn from(val: i8) -> Expr

Converts to this type from the input type.
source§

impl From<u16> for Expr

source§

fn from(val: u16) -> Expr

Converts to this type from the input type.
source§

impl From<u32> for Expr

source§

fn from(val: u32) -> Expr

Converts to this type from the input type.
source§

impl From<u64> for Expr

source§

fn from(val: u64) -> Expr

Converts to this type from the input type.
source§

impl From<u8> for Expr

source§

fn from(val: u8) -> Expr

Converts to this type from the input type.
source§

impl Hash for Expr

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> IntoIterator for &'a Expr

§

type Item = &'a Expr

The type of the elements being iterated over.
§

type IntoIter = ExprIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a Expr as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl Mul<Expr> for Expr

§

type Output = Expr

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Expr) -> <Expr as Mul<Expr>>::Output

Performs the * operation. Read more
source§

impl PartialEq<Expr> for Expr

source§

fn eq(&self, other: &Expr) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars/prelude/enum.FunctionExpr.html b/polars/prelude/enum.FunctionExpr.html index dcb0ccf866bd..0155ade626b5 100644 --- a/polars/prelude/enum.FunctionExpr.html +++ b/polars/prelude/enum.FunctionExpr.html @@ -76,7 +76,7 @@ fixed_seed: bool, }, SetSortedFlag(IsSorted), -
}

Variants§

§

Abs

Available on crate feature abs only.
§

NullCount

§

Pow(PowFunction)

§

ArgWhere

Available on crate feature arg_where only.
§

StringExpr(StringFunction)

Available on crate feature strings only.
§

BinaryExpr(BinaryFunction)

§

TemporalExpr(TemporalFunction)

Available on crate feature temporal only.
§

Range(RangeFunction)

Available on crate feature range only.
§

Trigonometry(TrigonometricFunction)

Available on crate feature trigonometry only.
§

Atan2

Available on crate feature trigonometry only.
§

FillNull

Fields

§super_type: DataType
§

ShiftAndFill

Fields

§periods: i64
§

DropNans

§

Clip

Fields

§min: Option<AnyValue<'static>>
§max: Option<AnyValue<'static>>
Available on crate feature round_series only.
§

ListExpr(ListFunction)

§

ArrayExpr(ArrayFunction)

Available on crate feature dtype-array only.
§

StructExpr(StructFunction)

Available on crate feature dtype-struct only.
§

Shift(i64)

§

Cumcount

Fields

§reverse: bool
§

Cumsum

Fields

§reverse: bool
§

Cumprod

Fields

§reverse: bool
§

Cummin

Fields

§reverse: bool
§

Cummax

Fields

§reverse: bool
§

Reverse

§

Boolean(BooleanFunction)

§

Categorical(CategoricalFunction)

Available on crate feature dtype-categorical only.
§

Coalesce

§

ShrinkType

§

Diff(i64, NullBehavior)

Available on crate feature diff only.
§

Interpolate(InterpolationMethod)

Available on crate feature interpolate only.
§

Entropy

Fields

§base: f64
§normalize: bool
Available on crate feature log only.
§

Log

Fields

§base: f64
Available on crate feature log only.
§

Log1p

Available on crate feature log only.
§

Exp

Available on crate feature log only.
§

Unique(bool)

§

Round

Fields

§decimals: u32
Available on crate feature round_series only.
§

Floor

Available on crate feature round_series only.
§

Ceil

Available on crate feature round_series only.
§

UpperBound

§

LowerBound

§

ConcatExpr(bool)

§

Correlation

Fields

§method: CorrelationMethod
§ddof: u8
§

ToPhysical

§

Random

Fields

§method: RandomMethod
§seed: Option<u64>
§fixed_seed: bool
Available on crate feature random only.
§

SetSortedFlag(IsSorted)

Trait Implementations§

source§

impl Clone for FunctionExpr

source§

fn clone(&self) -> FunctionExpr

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 FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<BinaryFunction> for FunctionExpr

source§

fn from(b: BinaryFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<CategoricalFunction> for FunctionExpr

source§

fn from(func: CategoricalFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<StringFunction> for FunctionExpr

source§

fn from(str: StringFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl PartialEq<FunctionExpr> for FunctionExpr

source§

fn eq(&self, other: &FunctionExpr) -> bool

This method tests for self and other values to be equal, and is used +
}

Variants§

§

Abs

Available on crate feature abs only.
§

NullCount

§

Pow(PowFunction)

§

ArgWhere

Available on crate feature arg_where only.
§

StringExpr(StringFunction)

Available on crate feature strings only.
§

BinaryExpr(BinaryFunction)

§

TemporalExpr(TemporalFunction)

Available on crate feature temporal only.
§

Range(RangeFunction)

Available on crate feature range only.
§

Trigonometry(TrigonometricFunction)

Available on crate feature trigonometry only.
§

Atan2

Available on crate feature trigonometry only.
§

FillNull

Fields

§super_type: DataType
§

ShiftAndFill

Fields

§periods: i64
§

DropNans

§

Clip

Fields

§min: Option<AnyValue<'static>>
§max: Option<AnyValue<'static>>
Available on crate feature round_series only.
§

ListExpr(ListFunction)

§

ArrayExpr(ArrayFunction)

Available on crate feature dtype-array only.
§

StructExpr(StructFunction)

Available on crate feature dtype-struct only.
§

Shift(i64)

§

Cumcount

Fields

§reverse: bool
§

Cumsum

Fields

§reverse: bool
§

Cumprod

Fields

§reverse: bool
§

Cummin

Fields

§reverse: bool
§

Cummax

Fields

§reverse: bool
§

Reverse

§

Boolean(BooleanFunction)

§

Categorical(CategoricalFunction)

Available on crate feature dtype-categorical only.
§

Coalesce

§

ShrinkType

§

Diff(i64, NullBehavior)

Available on crate feature diff only.
§

Interpolate(InterpolationMethod)

Available on crate feature interpolate only.
§

Entropy

Fields

§base: f64
§normalize: bool
Available on crate feature log only.
§

Log

Fields

§base: f64
Available on crate feature log only.
§

Log1p

Available on crate feature log only.
§

Exp

Available on crate feature log only.
§

Unique(bool)

§

Round

Fields

§decimals: u32
Available on crate feature round_series only.
§

Floor

Available on crate feature round_series only.
§

Ceil

Available on crate feature round_series only.
§

UpperBound

§

LowerBound

§

ConcatExpr(bool)

§

Correlation

Fields

§method: CorrelationMethod
§ddof: u8
§

ToPhysical

§

Random

Fields

§method: RandomMethod
§seed: Option<u64>
§fixed_seed: bool
Available on crate feature random only.
§

SetSortedFlag(IsSorted)

Trait Implementations§

source§

impl Clone for FunctionExpr

source§

fn clone(&self) -> FunctionExpr

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 FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<BinaryFunction> for FunctionExpr

source§

fn from(b: BinaryFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<CategoricalFunction> for FunctionExpr

source§

fn from(func: CategoricalFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<StringFunction> for FunctionExpr

source§

fn from(str: StringFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl PartialEq<FunctionExpr> for FunctionExpr

source§

fn eq(&self, other: &FunctionExpr) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for FunctionExpr

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/prelude/enum.PolarsError.html b/polars/prelude/enum.PolarsError.html index c397434b5bde..30b9ab080c02 100644 --- a/polars/prelude/enum.PolarsError.html +++ b/polars/prelude/enum.PolarsError.html @@ -11,7 +11,7 @@ ShapeMismatch(ErrString), StringCacheMismatch(ErrString), StructFieldNotFound(ErrString), -}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars/prelude/enum.TakeIdx.html b/polars/prelude/enum.TakeIdx.html index 01223deefdd8..d8f627166f7e 100644 --- a/polars/prelude/enum.TakeIdx.html +++ b/polars/prelude/enum.TakeIdx.html @@ -9,16 +9,16 @@
source§

fn from( slice: &'a [u32] ) -> TakeIdx<'a, Map<Iter<'a, u32>, fn(_: &u32) -> usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

-
source§

fn from( ca: &'a ChunkedArray<UInt32Type> ) -> TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, u32>, fn(_: &u32) -> usize>, Once<Option<usize>>>

Conversion from &[IdxSize] to Unchecked TakeIdx

-
source§

fn from( slice: &'a Vec<u32, Global> ) -> TakeIdx<'a, Map<Iter<'a, u32>, fn(_: &u32) -> usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, I, Once<Option<usize>>>where I: TakeIterator,

Conversion from Iterator<Item=usize> to Unchecked TakeIdx

-
source§

fn from(iter: I) -> TakeIdx<'a, I, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, Once<usize>, I>where +

source§

fn from(iter: I) -> TakeIdx<'a, I, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, Once<usize>, I>where I: TakeIteratorNulls,

Conversion from [Iterator<Item=Option<usize>>] to Unchecked TakeIdx

-
source§

fn from(iter: I) -> TakeIdx<'a, Once<usize>, I>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls>where +

source§

fn from(iter: I) -> TakeIdx<'a, Once<usize>, I>

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls>where I: RefUnwindSafe, INulls: RefUnwindSafe,

§

impl<'a, I, INulls> Send for TakeIdx<'a, I, INulls>where I: Send, diff --git a/polars/prelude/series/trait.SeriesOpsTime.html b/polars/prelude/series/trait.SeriesOpsTime.html index c7dfe2a4a531..f6a5b2f18a25 100644 --- a/polars/prelude/series/trait.SeriesOpsTime.html +++ b/polars/prelude/series/trait.SeriesOpsTime.html @@ -68,4 +68,4 @@ &self, _options: RollingOptionsImpl<'_> ) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.

Apply a rolling std_dev to a Series.

-

Implementations on Foreign Types§

source§

impl SeriesOpsTime for Wrap<Logical<DateType, Int32Type>>

source§

impl SeriesOpsTime for Wrap<Logical<DurationType, Int64Type>>

source§

impl SeriesOpsTime for Wrap<ChunkedArray<BooleanType>>

source§

impl SeriesOpsTime for Wrap<Logical<TimeType, Int64Type>>

source§

impl SeriesOpsTime for Wrap<ChunkedArray<ListType>>

source§

impl SeriesOpsTime for Wrap<ChunkedArray<Utf8Type>>

source§

impl SeriesOpsTime for Wrap<Logical<DatetimeType, Int64Type>>

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl SeriesOpsTime for Wrap<Logical<DurationType, Int64Type>>

source§

impl SeriesOpsTime for Wrap<Logical<TimeType, Int64Type>>

source§

impl SeriesOpsTime for Wrap<Logical<DatetimeType, Int64Type>>

source§

impl SeriesOpsTime for Wrap<ChunkedArray<BooleanType>>

source§

impl SeriesOpsTime for Wrap<ChunkedArray<Utf8Type>>

source§

impl SeriesOpsTime for Wrap<ChunkedArray<ListType>>

source§

impl SeriesOpsTime for Wrap<Logical<DateType, Int32Type>>

Implementors§

\ No newline at end of file diff --git a/polars/prelude/struct.Arc.html b/polars/prelude/struct.Arc.html index ed193a2997ca..5d4626f56445 100644 --- a/polars/prelude/struct.Arc.html +++ b/polars/prelude/struct.Arc.html @@ -883,10 +883,10 @@
Examples
let five = Arc::new(5); assert!(five != Arc::new(6));
-
source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>

source§

fn eq(&self, that: &(dyn Scalar + 'static)) -> bool

This method tests for self and other values to be equal, and is used +
source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>

source§

fn eq(&self, that: &(dyn Scalar + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialOrd<Arc<T>> for Arc<T>where T: PartialOrd<T> + ?Sized,

source§

fn partial_cmp(&self, other: &Arc<T>) -> Option<Ordering>

Partial comparison for two Arcs.

The two are compared by calling partial_cmp() on their inner values.

diff --git a/polars/prelude/struct.CategoricalChunked.html b/polars/prelude/struct.CategoricalChunked.html index f36d304ab763..23e15bf09c57 100644 --- a/polars/prelude/struct.CategoricalChunked.html +++ b/polars/prelude/struct.CategoricalChunked.html @@ -15,7 +15,7 @@
Safety

Invariant in v < rev_map.len() for v in idx must be hold.

source

pub fn get_rev_map(&self) -> &Arc<RevMapping>

Available on crate feature dtype-categorical only.

Get a reference to the mapping of categorical types to the string values.

source

pub fn iter_str(&self) -> CatIter<'_>

Available on crate feature dtype-categorical only.

Create an [Iterator] that iterates over the &str values of the [CategoricalChunked].

-

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for CategoricalChunked

source§

fn clone(&self) -> CategoricalChunked

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 From<&CategoricalChunked> for DictionaryArray<i64>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<i64>

Converts to this type from the input type.
source§

impl From<&CategoricalChunked> for DictionaryArray<u32>

source§

fn from(ca: &CategoricalChunked) -> DictionaryArray<u32>

Converts to this type from the input type.
source§

impl IntoSeries for CategoricalChunked

source§

impl LogicalType for CategoricalChunked

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

Auto Trait Implementations§

§

impl !RefUnwindSafe for CategoricalChunked

§

impl Send for CategoricalChunked

§

impl Sync for CategoricalChunked

§

impl Unpin for CategoricalChunked

§

impl !UnwindSafe for CategoricalChunked

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/struct.ChunkedArray.html b/polars/prelude/struct.ChunkedArray.html index c11a263ba0ab..d73e13372d68 100644 --- a/polars/prelude/struct.ChunkedArray.html +++ b/polars/prelude/struct.ChunkedArray.html @@ -397,70 +397,70 @@
Safety
self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as Add<&ChunkedArray<BooleanType>>>::Output

Performs the + operation. Read more
source§

impl<T> Add<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as Add<&ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<Utf8Type>> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( +) -> <&ChunkedArray<T> as Add<&ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<Utf8Type>> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( self, rhs: &ChunkedArray<Utf8Type> -) -> <&ChunkedArray<Utf8Type> as Add<&ChunkedArray<Utf8Type>>>::Output

Performs the + operation. Read more
source§

impl Add<&str> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &str) -> <&ChunkedArray<Utf8Type> as Add<&str>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add( +) -> <&ChunkedArray<Utf8Type> as Add<&ChunkedArray<Utf8Type>>>::Output

Performs the + operation. Read more
source§

impl Add<&str> for &ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &str) -> <&ChunkedArray<Utf8Type> as Add<&str>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<BinaryType> -) -> <ChunkedArray<BinaryType> as Add<ChunkedArray<BinaryType>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add( +) -> <ChunkedArray<BinaryType> as Add<ChunkedArray<BinaryType>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<BooleanType> ) -> <ChunkedArray<BooleanType> as Add<ChunkedArray<BooleanType>>>::Output

Performs the + operation. Read more
source§

impl<T> Add<ChunkedArray<T>> for ChunkedArray<T>where T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<T> -) -> <ChunkedArray<T> as Add<ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( +) -> <ChunkedArray<T> as Add<ChunkedArray<T>>>::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for ChunkedArray<Utf8Type>

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add( self, rhs: ChunkedArray<Utf8Type> ) -> <ChunkedArray<Utf8Type> as Add<ChunkedArray<Utf8Type>>>::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <&ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <&ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl AggList for ChunkedArray<BinaryType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<BooleanType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<ListType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<T> AggList for ChunkedArray<ObjectType<T>>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> <ChunkedArray<T> as Add<N>>::Output

Performs the + operation. Read more
source§

impl AggList for ChunkedArray<BinaryType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<BooleanType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<ListType>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<T> AggList for ChunkedArray<ObjectType<T>>where T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<T> AggList for ChunkedArray<T>where T: PolarsNumericType, - ChunkedArray<T>: IntoSeries,

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<Utf8Type>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ArrayNameSpace for ChunkedArray<FixedSizeListType>

source§

impl AsArray for ChunkedArray<FixedSizeListType>

source§

impl AsBinary for ChunkedArray<BinaryType>

source§

impl AsList for ChunkedArray<ListType>

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere + ChunkedArray<T>: IntoSeries,

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl AggList for ChunkedArray<Utf8Type>

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ArrayNameSpace for ChunkedArray<FixedSizeListType>

source§

impl AsArray for ChunkedArray<FixedSizeListType>

source§

impl AsBinary for ChunkedArray<BinaryType>

source§

impl AsList for ChunkedArray<ListType>

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere T: 'static + PolarsDataType,

source§

fn as_mut(&mut self) -> &mut ChunkedArray<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T> AsRef<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere - T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> AsRefDataType for ChunkedArray<T>where + T: PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere + T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> AsRefDataType for ChunkedArray<T>where T: PolarsDataType,

source§

impl AsUtf8 for ChunkedArray<Utf8Type>

source§

impl AsUtf8 for ChunkedArray<Utf8Type>

source§

impl BinaryNameSpaceImpl for ChunkedArray<BinaryType>

source§

fn contains(&self, lit: &[u8]) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if binary contains given literal
source§

fn contains_literal( &self, lit: &[u8] -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if strings contain a given literal
source§

fn ends_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings ends with a substring
source§

fn starts_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings starts with a substring
source§

impl BitAnd<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if strings contain a given literal
source§

fn ends_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings ends with a substring
source§

fn starts_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings starts with a substring
source§

impl BitAnd<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as BitAnd<&ChunkedArray<BooleanType>>>::Output

Performs the & operation. Read more
source§

impl<T> BitAnd<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: BitAnd<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the & operator.
source§

fn bitand( + <T as PolarsNumericType>::Native: BitAnd<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as BitAnd<&ChunkedArray<T>>>::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( +) -> <&ChunkedArray<T> as BitAnd<&ChunkedArray<T>>>::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand( self, rhs: ChunkedArray<BooleanType> -) -> <ChunkedArray<BooleanType> as BitAnd<ChunkedArray<BooleanType>>>::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( +) -> <ChunkedArray<BooleanType> as BitAnd<ChunkedArray<BooleanType>>>::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as BitOr<&ChunkedArray<BooleanType>>>::Output

Performs the | operation. Read more
source§

impl<T> BitOr<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: BitOr<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the | operator.
source§

fn bitor( + <T as PolarsNumericType>::Native: BitOr<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as BitOr<&ChunkedArray<T>>>::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( +) -> <&ChunkedArray<T> as BitOr<&ChunkedArray<T>>>::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor( self, rhs: ChunkedArray<BooleanType> -) -> <ChunkedArray<BooleanType> as BitOr<ChunkedArray<BooleanType>>>::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( +) -> <ChunkedArray<BooleanType> as BitOr<ChunkedArray<BooleanType>>>::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: &ChunkedArray<BooleanType> ) -> <&ChunkedArray<BooleanType> as BitXor<&ChunkedArray<BooleanType>>>::Output

Performs the ^ operation. Read more
source§

impl<T> BitXor<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: BitXor<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the ^ operator.
source§

fn bitxor( + <T as PolarsNumericType>::Native: BitXor<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: &ChunkedArray<T> -) -> <&ChunkedArray<T> as BitXor<&ChunkedArray<T>>>::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( +) -> <&ChunkedArray<T> as BitXor<&ChunkedArray<T>>>::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor( self, rhs: ChunkedArray<BooleanType> ) -> <ChunkedArray<BooleanType> as BitXor<ChunkedArray<BooleanType>>>::Output

Performs the ^ operation. Read more
source§

impl<T> ChunkAgg<<T as PolarsNumericType>::Native> for ChunkedArray<T>where @@ -469,47 +469,47 @@
Safety
Returns None if not implemented for T. If the array is empty, 0 is returned

source§

fn min(&self) -> Option<<T as PolarsNumericType>::Native>

source§

fn max(&self) -> Option<<T as PolarsNumericType>::Native>

Returns the maximum value in the array, according to the natural order. Returns None if the array is empty or only contains null values.
source§

fn mean(&self) -> Option<f64>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

impl ChunkAggSeries for ChunkedArray<BinaryType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<BooleanType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<ListType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl<T> ChunkAggSeries for ChunkedArray<ObjectType<T>>where +Returns None if the array is empty or only contains null values.

source§

impl ChunkAggSeries for ChunkedArray<BinaryType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<BooleanType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<ListType>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl<T> ChunkAggSeries for ChunkedArray<ObjectType<T>>where T: PolarsObject,

Available on crate feature object only.
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl<T> ChunkAggSeries for ChunkedArray<T>where T: PolarsNumericType, <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>, - ChunkedArray<T>: IntoSeries,

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<Utf8Type>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for ChunkedArray<BinaryType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<BooleanType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. + ChunkedArray<T>: IntoSeries,
source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAggSeries for ChunkedArray<Utf8Type>

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for ChunkedArray<BinaryType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<BooleanType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<ListType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<T>where - T: PolarsNumericType,

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<Utf8Type>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. -If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<'a> ChunkApply<'a, &'a [u8], Cow<'a, [u8]>> for ChunkedArray<BinaryType>

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where +If you need to use this slightly performant, cast Categorical to UInt32 Read more

source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<ListType>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<T> ChunkAnyValue for ChunkedArray<T>where + T: PolarsNumericType,

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl ChunkAnyValue for ChunkedArray<Utf8Type>

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>

Get a single value. Beware this is slow.
source§

impl<'a> ChunkApply<'a, &'a [u8], Cow<'a, [u8]>> for ChunkedArray<BinaryType>

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(&'a [u8]) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(Option<&'a [u8]>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where F: Fn(&'a [u8]) -> Cow<'a, [u8]> + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<BinaryType>, PolarsError>where - F: Fn(&'a [u8]) -> Result<Cow<'a, [u8]>, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where - F: Fn(Option<&'a [u8]>) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where - F: Fn((usize, &'a [u8])) -> Cow<'a, [u8]> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where - F: Fn((usize, Option<&'a [u8]>)) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where +than the closure application. Often it is. Read more

source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<BinaryType>, PolarsError>where + F: Fn(&'a [u8]) -> Result<Cow<'a, [u8]>, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + F: Fn(Option<&'a [u8]>) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + F: Fn((usize, &'a [u8])) -> Cow<'a, [u8]> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BinaryType>where + F: Fn((usize, Option<&'a [u8]>)) -> Option<Cow<'a, [u8]>> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where F: Fn(Option<&'a [u8]>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a, T> ChunkApply<'a, &'a T, T> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn apply_cast_numeric<F, S>(&'a self, _f: F) -> ChunkedArray<S>where + T: PolarsObject,

Available on crate feature object only.
source§

fn apply_cast_numeric<F, S>(&'a self, _f: F) -> ChunkedArray<S>where F: Fn(&'a T) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, _f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&'a self, _f: F) -> ChunkedArray<S>where F: Fn(Option<&'a T>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where F: Fn(&'a T) -> T + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>( +than the closure application. Often it is. Read more

source§

fn try_apply<F>( &'a self, _f: F ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>where - F: Fn(&'a T) -> Result<T, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where - F: Fn(Option<&'a T>) -> Option<T> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where - F: Fn((usize, &'a T)) -> T + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where - F: Fn((usize, Option<&'a T>)) -> Option<T> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where + F: Fn(&'a T) -> Result<T, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ObjectType<T>>where + F: Fn(Option<&'a T>) -> Option<T> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where + F: Fn((usize, &'a T)) -> T + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, _f: F) -> ChunkedArray<ObjectType<T>>where + F: Fn((usize, Option<&'a T>)) -> Option<T> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where F: Fn(Option<&'a T>, &V) -> V,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, &'a str, Cow<'a, str>> for ChunkedArray<Utf8Type>

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(&'a str) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive @@ -523,48 +523,48 @@
Safety
F: Fn((usize, &'a str)) -> Cow<'a, str> + Copy,
Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<Utf8Type>where F: Fn((usize, Option<&'a str>)) -> Option<Cow<'a, str>> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where F: Fn(Option<&'a str>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a, T> ChunkApply<'a, <T as PolarsNumericType>::Native, <T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where + T: PolarsNumericType,

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(<T as PolarsNumericType>::Native) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Option<<T as PolarsNumericType>::Native>) -> <S as PolarsNumericType>::Native, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<T>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<T>where F: Fn(<T as PolarsNumericType>::Native) -> <T as PolarsNumericType>::Native + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<T>, PolarsError>where - F: Fn(<T as PolarsNumericType>::Native) -> Result<<T as PolarsNumericType>::Native, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where - F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<T>where - F: Fn((usize, <T as PolarsNumericType>::Native)) -> <T as PolarsNumericType>::Native + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where - F: Fn((usize, Option<<T as PolarsNumericType>::Native>)) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where - F: Fn(Option<<T as PolarsNumericType>::Native>, &V) -> V,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, Series, Series> for ChunkedArray<ListType>

source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ListType>where +than the closure application. Often it is. Read more

source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<T>, PolarsError>where + F: Fn(<T as PolarsNumericType>::Native) -> Result<<T as PolarsNumericType>::Native, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where + F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<T>where + F: Fn((usize, <T as PolarsNumericType>::Native)) -> <T as PolarsNumericType>::Native + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<T>where + F: Fn((usize, Option<<T as PolarsNumericType>::Native>)) -> Option<<T as PolarsNumericType>::Native> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])where + F: Fn(Option<<T as PolarsNumericType>::Native>, &V) -> V,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, Series, Series> for ChunkedArray<ListType>

source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn(Series) -> Series + Copy,

Apply a closure F elementwise.

-
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<ListType>where +

source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn((usize, Series)) -> Series + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.

-
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where +

source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn((usize, Option<Series>)) -> Option<Series> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.

-
source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where +

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Series) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Option<Series>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<ListType>, PolarsError>where - F: Fn(Series) -> Result<Series, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where - F: Fn(Option<Series>) -> Option<Series> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where - F: Fn(Option<Series>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn try_apply<F>(&'a self, f: F) -> Result<ChunkedArray<ListType>, PolarsError>where + F: Fn(Series) -> Result<Series, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<ListType>where + F: Fn(Option<Series>) -> Option<Series> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where + F: Fn(Option<Series>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl<'a> ChunkApply<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(bool) -> <S as PolarsNumericType>::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive -than the closure application. Read more
source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where +than the closure application. Read more

source§

fn branch_apply_cast_numeric_no_null<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(Option<bool>) -> <S as PolarsNumericType>::Native + Copy, - S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&self, f: F) -> ChunkedArray<BooleanType>where + S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn apply<F>(&self, f: F) -> ChunkedArray<BooleanType>where F: Fn(bool) -> bool + Copy,

Apply a closure elementwise. This is fastest when the null check branching is more expensive -than the closure application. Often it is. Read more
source§

fn try_apply<F>(&self, f: F) -> Result<ChunkedArray<BooleanType>, PolarsError>where - F: Fn(bool) -> Result<bool, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where - F: Fn(Option<bool>) -> Option<bool> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where - F: Fn((usize, bool)) -> bool + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where - F: Fn((usize, Option<bool>)) -> Option<bool> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where - F: Fn(Option<bool>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl ChunkApplyKernel<BinaryArray<i64>> for ChunkedArray<BinaryType>

source§

fn apply_kernel( +than the closure application. Often it is. Read more

source§

fn try_apply<F>(&self, f: F) -> Result<ChunkedArray<BooleanType>, PolarsError>where + F: Fn(bool) -> Result<bool, PolarsError> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where + F: Fn(Option<bool>) -> Option<bool> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_with_idx<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where + F: Fn((usize, bool)) -> bool + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_with_idx_on_opt<F>(&'a self, f: F) -> ChunkedArray<BooleanType>where + F: Fn((usize, Option<bool>)) -> Option<bool> + Copy,

Apply a closure elementwise. The closure gets the index of the element as first argument.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where + F: Fn(Option<bool>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl ChunkApplyKernel<BinaryArray<i64>> for ChunkedArray<BinaryType>

source§

fn apply_kernel( &self, f: &dyn Fn(&BinaryArray<i64>) -> Box<dyn Array, Global> -) -> ChunkedArray<BinaryType>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( +) -> ChunkedArray<BinaryType>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( &self, f: &dyn Fn(&BinaryArray<i64>) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where @@ -576,59 +576,59 @@
Safety
f: &dyn Fn(&BooleanArray) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl<T> ChunkApplyKernel<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn apply_kernel( + T: PolarsNumericType,

source§

fn apply_kernel( &self, f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array, Global> -) -> ChunkedArray<T>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( +) -> ChunkedArray<T>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( &self, f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where - S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkApplyKernel<Utf8Array<i64>> for ChunkedArray<Utf8Type>

source§

fn apply_kernel( + S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkApplyKernel<Utf8Array<i64>> for ChunkedArray<Utf8Type>

source§

fn apply_kernel( &self, f: &dyn Fn(&Utf8Array<i64>) -> Box<dyn Array, Global> -) -> ChunkedArray<Utf8Type>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( +) -> ChunkedArray<Utf8Type>

Apply kernel and return result as a new ChunkedArray.
source§

fn apply_kernel_cast<S>( &self, f: &dyn Fn(&Utf8Array<i64>) -> Box<dyn Array, Global> ) -> ChunkedArray<S>where - S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for ChunkedArray<BinaryType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( + S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for ChunkedArray<BinaryType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType -) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<BooleanType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<BooleanType>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType ) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.

We cannot cast anything to or from List/LargeList So this implementation casts the inner type

-
source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType ) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<ListType>

We cannot cast anything to or from List/LargeList So this implementation casts the inner type

-
source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType ) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl<T> ChunkCast for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( + T: PolarsNumericType,

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType -) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<Utf8Type>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( +) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCast for ChunkedArray<Utf8Type>

source§

fn cast(&self, data_type: &DataType) -> Result<Series, PolarsError>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked( &self, data_type: &DataType -) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&[u8]> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( +) -> Result<Series, PolarsError>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&[u8]> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &[u8]) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for ChunkedArray<BinaryType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<BinaryType> -) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( +) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<BinaryType> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BinaryType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for ChunkedArray<BooleanType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<BooleanType> -) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal( +) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal( &self, rhs: &ChunkedArray<BooleanType> -) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( +) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<BooleanType> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<FixedSizeListType>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = ChunkedArray<BooleanType>

source§

fn equal( +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<BooleanType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<FixedSizeListType>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = ChunkedArray<BooleanType>

source§

fn equal( &self, rhs: &ChunkedArray<FixedSizeListType> ) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( @@ -652,28 +652,28 @@

Safety
) -> ChunkedArray<BooleanType>
Less than comparison.
source§

fn lt_eq( &self, _rhs: &ChunkedArray<FixedSizeListType> -) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ChunkedArray<ListType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( +) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ChunkedArray<ListType>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<ListType> -) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( +) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<ListType> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCompare<&ChunkedArray<T>> for ChunkedArray<T>where +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ChunkedArray<ListType>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCompare<&ChunkedArray<T>> for ChunkedArray<T>where T: PolarsNumericType,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<Utf8Type>> for ChunkedArray<Utf8Type>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing( &self, rhs: &ChunkedArray<Utf8Type> ) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing( &self, rhs: &ChunkedArray<Utf8Type> -) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&str> for ChunkedArray<Utf8Type>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T, Rhs> ChunkCompare<Rhs> for ChunkedArray<T>where +) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<Utf8Type>) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl ChunkCompare<&str> for ChunkedArray<Utf8Type>

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T, Rhs> ChunkCompare<Rhs> for ChunkedArray<T>where T: PolarsNumericType, - Rhs: ToPrimitive,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCumAgg<T> for ChunkedArray<T>where + Rhs: ToPrimitive,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>

Less than or equal comparison
source§

impl<T> ChunkCumAgg<T> for ChunkedArray<T>where T: PolarsNumericType, - ChunkedArray<T>: FromIterator<Option<<T as PolarsNumericType>::Native>>,

source§

fn cummax(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative max computed at every element
source§

fn cummin(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative min computed at every element
source§

fn cumsum(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative sum computed at every element
source§

fn cumprod(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative product computed at every element
source§

impl ChunkExpandAtIndex<BinaryType> for ChunkedArray<BinaryType>

source§

fn new_from_index( + ChunkedArray<T>: FromIterator<Option<<T as PolarsNumericType>::Native>>,

source§

fn cummax(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative max computed at every element
source§

fn cummin(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative min computed at every element
source§

fn cumsum(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative sum computed at every element
source§

fn cumprod(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative product computed at every element
source§

impl ChunkExpandAtIndex<BinaryType> for ChunkedArray<BinaryType>

source§

fn new_from_index( &self, index: usize, length: usize -) -> ChunkedArray<BinaryType>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<BooleanType> for ChunkedArray<BooleanType>

source§

fn new_from_index( +) -> ChunkedArray<BinaryType>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<BooleanType> for ChunkedArray<BooleanType>

source§

fn new_from_index( &self, index: usize, length: usize @@ -681,90 +681,90 @@

Safety
&self, index: usize, length: usize -) -> ChunkedArray<FixedSizeListType>
Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>

Create a new ChunkedArray filled with values at that index.
source§

impl<T> ChunkExpandAtIndex<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn new_from_index( +) -> ChunkedArray<FixedSizeListType>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<ListType> for ChunkedArray<ListType>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<ListType>

Create a new ChunkedArray filled with values at that index.
source§

impl<T> ChunkExpandAtIndex<ObjectType<T>> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn new_from_index( &self, index: usize, length: usize ) -> ChunkedArray<ObjectType<T>>

Create a new ChunkedArray filled with values at that index.
source§

impl<T> ChunkExpandAtIndex<T> for ChunkedArray<T>where T: PolarsDataType + PolarsNumericType, - ChunkedArray<T>: ChunkFull<<T as PolarsNumericType>::Native> + TakeRandom<Item = <T as PolarsNumericType>::Native>,

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<T>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn explode(&self) -> Result<Series, PolarsError>

source§

fn explode_and_offsets( + ChunkedArray<T>: ChunkFull<<T as PolarsNumericType>::Native> + TakeRandom<Item = <T as PolarsNumericType>::Native>,

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<T>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExpandAtIndex<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkExplode for ChunkedArray<ListType>

source§

impl ChunkExplode for ChunkedArray<Utf8Type>

source§

impl ChunkExplode for ChunkedArray<Utf8Type>

source§

impl ChunkFillNullValue<&[u8]> for ChunkedArray<BinaryType>

source§

impl ChunkFillNullValue<&[u8]> for ChunkedArray<BinaryType>

source§

fn fill_null_with_values( &self, value: &[u8] ) -> Result<ChunkedArray<BinaryType>, PolarsError>

Replace None values with a give value T.
source§

impl<T> ChunkFillNullValue<<T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn fill_null_with_values( + T: PolarsNumericType,

source§

fn fill_null_with_values( &self, value: <T as PolarsNumericType>::Native -) -> Result<ChunkedArray<T>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFillNullValue<bool> for ChunkedArray<BooleanType>

source§

fn fill_null_with_values( +) -> Result<ChunkedArray<T>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFillNullValue<bool> for ChunkedArray<BooleanType>

source§

fn fill_null_with_values( &self, value: bool -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFilter<BinaryType> for ChunkedArray<BinaryType>

source§

fn filter( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Replace None values with a give value T.
source§

impl ChunkFilter<BinaryType> for ChunkedArray<BinaryType>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<BinaryType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<BooleanType> for ChunkedArray<BooleanType>

source§

fn filter( +) -> Result<ChunkedArray<BinaryType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<BooleanType> for ChunkedArray<BooleanType>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn filter( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<ListType> for ChunkedArray<ListType>

source§

fn filter( +) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<ListType> for ChunkedArray<ListType>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<ListType>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<T> ChunkFilter<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn filter( + T: PolarsObject,

Available on crate feature object only.
source§

fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>where ChunkedArray<ObjectType<T>>: Sized,

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<T> ChunkFilter<T> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn filter( + T: PolarsNumericType,

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<T>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFilter<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn filter( &self, filter: &ChunkedArray<BooleanType> -) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<'a> ChunkFull<&'a [u8]> for ChunkedArray<BinaryType>

source§

fn full(name: &str, value: &'a [u8], length: usize) -> ChunkedArray<BinaryType>

Create a ChunkedArray with a single value.
source§

impl<'a> ChunkFull<&'a str> for ChunkedArray<Utf8Type>

source§

fn full(name: &str, value: &'a str, length: usize) -> ChunkedArray<Utf8Type>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn full( +) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<'a> ChunkFull<&'a [u8]> for ChunkedArray<BinaryType>

source§

fn full(name: &str, value: &'a [u8], length: usize) -> ChunkedArray<BinaryType>

Create a ChunkedArray with a single value.
source§

impl<'a> ChunkFull<&'a str> for ChunkedArray<Utf8Type>

source§

fn full(name: &str, value: &'a str, length: usize) -> ChunkedArray<Utf8Type>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn full( name: &str, value: &Series, length: usize -) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl<T> ChunkFull<<T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn full( +) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl<T> ChunkFull<<T as PolarsNumericType>::Native> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn full( name: &str, value: <T as PolarsNumericType>::Native, length: usize ) -> ChunkedArray<T>

Create a ChunkedArray with a single value.
source§

impl<T> ChunkFull<T> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn full(name: &str, value: T, length: usize) -> ChunkedArray<ObjectType<T>>where - ChunkedArray<ObjectType<T>>: Sized,

Create a ChunkedArray with a single value.
source§

impl ChunkFull<bool> for ChunkedArray<BooleanType>

source§

fn full(name: &str, value: bool, length: usize) -> ChunkedArray<BooleanType>

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for ChunkedArray<BinaryType>

source§

impl ChunkFullNull for ChunkedArray<BooleanType>

source§

impl ChunkFullNull for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkFullNull for ChunkedArray<ListType>

source§

impl<T> ChunkFullNull for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

impl<T> ChunkFullNull for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn full_null(name: &str, length: usize) -> ChunkedArray<T>

source§

impl ChunkFullNull for ChunkedArray<Utf8Type>

source§

impl<T> ChunkPeaks for ChunkedArray<T>where + T: PolarsObject,

Available on crate feature object only.
source§

fn full(name: &str, value: T, length: usize) -> ChunkedArray<ObjectType<T>>where + ChunkedArray<ObjectType<T>>: Sized,

Create a ChunkedArray with a single value.
source§

impl ChunkFull<bool> for ChunkedArray<BooleanType>

source§

fn full(name: &str, value: bool, length: usize) -> ChunkedArray<BooleanType>

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for ChunkedArray<BinaryType>

source§

impl ChunkFullNull for ChunkedArray<BooleanType>

source§

impl ChunkFullNull for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkFullNull for ChunkedArray<ListType>

source§

impl<T> ChunkFullNull for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

impl<T> ChunkFullNull for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn full_null(name: &str, length: usize) -> ChunkedArray<T>

source§

impl ChunkFullNull for ChunkedArray<Utf8Type>

source§

impl<T> ChunkPeaks for ChunkedArray<T>where T: PolarsNumericType,

source§

fn peak_max(&self) -> ChunkedArray<BooleanType>

Get a boolean mask of the local maximum peaks.

source§

fn peak_min(&self) -> ChunkedArray<BooleanType>

Get a boolean mask of the local minimum peaks.

-
source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +

source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. Returns None if the array is empty or only contains null values.
source§

impl<T> ChunkQuantile<Series> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( + T: PolarsObject,

Available on crate feature object only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<String> for ChunkedArray<Utf8Type>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<String> for ChunkedArray<Utf8Type>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions @@ -775,29 +775,29 @@

Safety
_quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>
Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<f32> for ChunkedArray<Float32Type>

source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<f32> for ChunkedArray<Float32Type>

source§

fn quantile( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Option<f32>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f32>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<f64> for ChunkedArray<Float64Type>

source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

fn median(&self) -> Option<f32>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<f64> for ChunkedArray<Float64Type>

source§

fn quantile( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Option<f64>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. Returns None if the array is empty or only contains null values.
source§

impl<T> ChunkQuantile<f64> for ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: Ord,

source§

fn quantile( + <T as PolarsNumericType>::Native: Ord,

source§

fn quantile( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Option<f64>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

impl ChunkReverse for ChunkedArray<BinaryType>

source§

fn reverse(&self) -> ChunkedArray<BinaryType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<BooleanType>

source§

fn reverse(&self) -> ChunkedArray<BooleanType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn reverse(&self) -> ChunkedArray<FixedSizeListType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<ListType>

source§

fn reverse(&self) -> ChunkedArray<ListType>

Return a reversed version of this array.
source§

impl<T> ChunkReverse for ChunkedArray<ObjectType<T>>where +Returns None if the array is empty or only contains null values.

source§

fn median(&self) -> Option<f64>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

impl ChunkReverse for ChunkedArray<BinaryType>

source§

fn reverse(&self) -> ChunkedArray<BinaryType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<BooleanType>

source§

fn reverse(&self) -> ChunkedArray<BooleanType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn reverse(&self) -> ChunkedArray<FixedSizeListType>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<ListType>

source§

fn reverse(&self) -> ChunkedArray<ListType>

Return a reversed version of this array.
source§

impl<T> ChunkReverse for ChunkedArray<ObjectType<T>>where T: PolarsObject,

Available on crate feature object only.
source§

fn reverse(&self) -> ChunkedArray<ObjectType<T>>

Return a reversed version of this array.
source§

impl<T> ChunkReverse for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn reverse(&self) -> ChunkedArray<T>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<Utf8Type>

source§

fn reverse(&self) -> ChunkedArray<Utf8Type>

Return a reversed version of this array.
source§

impl<T> ChunkRollApply for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn reverse(&self) -> ChunkedArray<T>

Return a reversed version of this array.
source§

impl ChunkReverse for ChunkedArray<Utf8Type>

source§

fn reverse(&self) -> ChunkedArray<Utf8Type>

Return a reversed version of this array.
source§

impl<T> ChunkRollApply for ChunkedArray<T>where T: PolarsNumericType, ChunkedArray<T>: IntoSeries,

source§

fn rolling_apply( &self, @@ -822,79 +822,79 @@

Safety
mask: &ChunkedArray<BooleanType>, value: Option<&'a [u8]> ) -> Result<ChunkedArray<BinaryType>, PolarsError>where - ChunkedArray<BinaryType>: Sized,
Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, &'a str, String> for ChunkedArray<Utf8Type>

source§

fn set_at_idx<I>( + ChunkedArray<BinaryType>: Sized,

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, &'a str, String> for ChunkedArray<Utf8Type>

source§

fn set_at_idx<I>( &'a self, idx: I, opt_value: Option<&'a str> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where I: IntoIterator<Item = u32>, - ChunkedArray<Utf8Type>: Sized,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( + ChunkedArray<Utf8Type>: Sized,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( &'a self, idx: I, f: F ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where I: IntoIterator<Item = u32>, ChunkedArray<Utf8Type>: Sized, - F: Fn(Option<&'a str>) -> Option<String>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( + F: Fn(Option<&'a str>) -> Option<String>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<&'a str> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where ChunkedArray<Utf8Type>: Sized,

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a, T> ChunkSet<'a, <T as PolarsNumericType>::Native, <T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn set_at_idx<I>( + T: PolarsNumericType,

source§

fn set_at_idx<I>( &'a self, idx: I, value: Option<<T as PolarsNumericType>::Native> ) -> Result<ChunkedArray<T>, PolarsError>where - I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( + I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( &'a self, idx: I, f: F ) -> Result<ChunkedArray<T>, PolarsError>where I: IntoIterator<Item = u32>, - F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( + F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<<T as PolarsNumericType>::Native> -) -> Result<ChunkedArray<T>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn set_at_idx<I>( +) -> Result<ChunkedArray<T>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl<'a> ChunkSet<'a, bool, bool> for ChunkedArray<BooleanType>

source§

fn set_at_idx<I>( &'a self, idx: I, value: Option<bool> ) -> Result<ChunkedArray<BooleanType>, PolarsError>where - I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( + I: IntoIterator<Item = u32>,

Set the values at indexes idx to some optional value Option<T>. Read more
source§

fn set_at_idx_with<I, F>( &'a self, idx: I, f: F ) -> Result<ChunkedArray<BooleanType>, PolarsError>where I: IntoIterator<Item = u32>, - F: Fn(Option<bool>) -> Option<bool>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( + F: Fn(Option<bool>) -> Option<bool>,

Set the values at indexes idx by applying a closure to these values. Read more
source§

fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<bool> -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl ChunkShift<BinaryType> for ChunkedArray<BinaryType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BinaryType>

source§

impl ChunkShift<BooleanType> for ChunkedArray<BooleanType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BooleanType>

source§

impl ChunkShift<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkShift<ListType> for ChunkedArray<ListType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<ListType>

source§

impl<T> ChunkShift<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn shift(&self, periods: i64) -> ChunkedArray<ObjectType<T>>

source§

impl<T> ChunkShift<T> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn shift(&self, periods: i64) -> ChunkedArray<T>

source§

impl ChunkShift<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn shift(&self, periods: i64) -> ChunkedArray<Utf8Type>

source§

impl ChunkShiftFill<BinaryType, Option<&[u8]>> for ChunkedArray<BinaryType>

source§

fn shift_and_fill( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Set the values where the mask evaluates to true to some optional value Option<T>. Read more
source§

impl ChunkShift<BinaryType> for ChunkedArray<BinaryType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BinaryType>

source§

impl ChunkShift<BooleanType> for ChunkedArray<BooleanType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<BooleanType>

source§

impl ChunkShift<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkShift<ListType> for ChunkedArray<ListType>

source§

fn shift(&self, periods: i64) -> ChunkedArray<ListType>

source§

impl<T> ChunkShift<ObjectType<T>> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn shift(&self, periods: i64) -> ChunkedArray<ObjectType<T>>

source§

impl<T> ChunkShift<T> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn shift(&self, periods: i64) -> ChunkedArray<T>

source§

impl ChunkShift<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn shift(&self, periods: i64) -> ChunkedArray<Utf8Type>

source§

impl ChunkShiftFill<BinaryType, Option<&[u8]>> for ChunkedArray<BinaryType>

source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<&[u8]> ) -> ChunkedArray<BinaryType>

Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkShiftFill<BooleanType, Option<bool>> for ChunkedArray<BooleanType>

source§

fn shift_and_fill( +with fill_value.

source§

impl ChunkShiftFill<BooleanType, Option<bool>> for ChunkedArray<BooleanType>

source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<bool> ) -> ChunkedArray<BooleanType>

Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn shift_and_fill( +with fill_value.

source§

impl ChunkShiftFill<FixedSizeListType, Option<&Series>> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<&Series> ) -> ChunkedArray<FixedSizeListType>

Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkShiftFill<ListType, Option<&Series>> for ChunkedArray<ListType>

source§

fn shift_and_fill( +with fill_value.

source§

impl ChunkShiftFill<ListType, Option<&Series>> for ChunkedArray<ListType>

source§

fn shift_and_fill( &self, periods: i64, fill_value: Option<&Series> ) -> ChunkedArray<ListType>

Shift the values by a given period and fill the parts that will be empty due to this operation with fill_value.
source§

impl<T> ChunkShiftFill<ObjectType<T>, Option<ObjectType<T>>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn shift_and_fill( + T: PolarsObject,

Available on crate feature object only.
source§

fn shift_and_fill( &self, _periods: i64, _fill_value: Option<ObjectType<T>> @@ -910,52 +910,52 @@

Safety
periods: i64, fill_value: Option<&str> ) -> ChunkedArray<Utf8Type>
Shift the values by a given period and fill the parts that will be empty due to this operation -with fill_value.
source§

impl ChunkSort<BinaryType> for ChunkedArray<BinaryType>

source§

fn arg_sort_multiple( +with fill_value.

source§

impl ChunkSort<BinaryType> for ChunkedArray<BinaryType>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. On the implementation of ChunkedArray<T> for numeric types, we assume that all numeric Series are of the same type.

In this case we assume that all numeric Series are f64 types. The caller needs to uphold this contract. If not, it will panic.

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BinaryType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BinaryType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<BooleanType> for ChunkedArray<BooleanType>

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BooleanType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BooleanType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

fn arg_sort_multiple( +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BinaryType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BinaryType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<BooleanType> for ChunkedArray<BooleanType>

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<BooleanType>

source§

fn sort(&self, descending: bool) -> ChunkedArray<BooleanType>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Retrieve the indexes need to sort this and the other arrays.
source§

impl ChunkSort<Float32Type> for ChunkedArray<Float32Type>

source§

fn arg_sort_multiple( +) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Retrieve the indexes need to sort this and the other arrays.
source§

impl ChunkSort<Float32Type> for ChunkedArray<Float32Type>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions ) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float32Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float32Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Float64Type> for ChunkedArray<Float64Type>

source§

fn arg_sort_multiple( +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float32Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float32Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Float64Type> for ChunkedArray<Float64Type>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float64Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float64Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl<T> ChunkSort<T> for ChunkedArray<T>where +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Float64Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Float64Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl<T> ChunkSort<T> for ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: Default + Ord,

source§

fn arg_sort_multiple( + <T as PolarsNumericType>::Native: Default + Ord,

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. We assume that all numeric Series are of the same type, if not it will panic

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<T>

source§

fn sort(&self, descending: bool) -> ChunkedArray<T>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<T>

source§

fn sort(&self, descending: bool) -> ChunkedArray<T>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkSort<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn arg_sort_multiple( &self, options: &SortMultipleOptions -) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Panics
+) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Panics

This function is very opinionated. On the implementation of ChunkedArray<T> for numeric types, we assume that all numeric Series are of the same type.

In this case we assume that all numeric Series are f64 types. The caller needs to uphold this contract. If not, it will panic.

-
source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Utf8Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Utf8Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkTake for ChunkedArray<BinaryType>

source§

unsafe fn take_unchecked<I, INulls>( +

source§

fn sort_with(&self, options: SortOptions) -> ChunkedArray<Utf8Type>

source§

fn sort(&self, descending: bool) -> ChunkedArray<Utf8Type>

Returned a sorted ChunkedArray.
source§

fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>

Retrieve the indexes needed to sort this array.
source§

impl ChunkTake for ChunkedArray<BinaryType>

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<BinaryType>where ChunkedArray<BinaryType>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<BinaryType>, PolarsError>where @@ -963,13 +963,13 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkTake for ChunkedArray<BooleanType>

source§

unsafe fn take_unchecked<I, INulls>( +by reference.

source§

impl ChunkTake for ChunkedArray<BooleanType>

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<BooleanType>where ChunkedArray<BooleanType>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<BooleanType>, PolarsError>where @@ -977,13 +977,13 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkTake for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn take_unchecked<I, INulls>( +by reference.

source§

impl ChunkTake for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<FixedSizeListType>where ChunkedArray<FixedSizeListType>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>where @@ -1006,13 +1006,13 @@
Safety
INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory by reference.
source§

impl<T> ChunkTake for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn take_unchecked<I, INulls>( + T: PolarsObject,

Available on crate feature object only.
source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<ObjectType<T>>where ChunkedArray<ObjectType<T>>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>where @@ -1021,13 +1021,13 @@
Safety
INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory by reference.
source§

impl<T> ChunkTake for ChunkedArray<T>where - T: PolarsNumericType,

source§

unsafe fn take_unchecked<I, INulls>( + T: PolarsNumericType,

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<T>where ChunkedArray<T>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<T>, PolarsError>where @@ -1035,13 +1035,13 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkTake for ChunkedArray<Utf8Type>

source§

unsafe fn take_unchecked<I, INulls>( +by reference.

source§

impl ChunkTake for ChunkedArray<Utf8Type>

source§

unsafe fn take_unchecked<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> ChunkedArray<Utf8Type>where ChunkedArray<Utf8Type>: Sized, I: TakeIterator, - INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( + INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Read more
source§

fn take<I, INulls>( &self, indices: TakeIdx<'_, I, INulls> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>where @@ -1049,171 +1049,171 @@
Safety
I: TakeIterator, INulls: TakeIteratorNulls,

Take values from ChunkedArray by index. Note that the iterator will be cloned, so prefer an iterator that takes the owned memory -by reference.
source§

impl ChunkUnique<BinaryType> for ChunkedArray<BinaryType>

source§

fn unique(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<BooleanType> for ChunkedArray<BooleanType>

source§

fn unique(&self) -> Result<ChunkedArray<BooleanType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Float32Type> for ChunkedArray<Float32Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl ChunkUnique<Float64Type> for ChunkedArray<Float64Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl<T> ChunkUnique<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn unique(&self) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl<T> ChunkUnique<T> for ChunkedArray<T>where +by reference.

source§

impl ChunkUnique<BinaryType> for ChunkedArray<BinaryType>

source§

fn unique(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<BinaryType>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<BooleanType> for ChunkedArray<BooleanType>

source§

fn unique(&self) -> Result<ChunkedArray<BooleanType>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Float32Type> for ChunkedArray<Float32Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float32Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl ChunkUnique<Float64Type> for ChunkedArray<Float64Type>

source§

fn unique(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn mode(&self) -> Result<ChunkedArray<Float64Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

impl<T> ChunkUnique<ObjectType<T>> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn unique(&self) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl<T> ChunkUnique<T> for ChunkedArray<T>where T: PolarsIntegerType, <T as PolarsNumericType>::Native: Hash + Eq + Ord, - ChunkedArray<T>: IntoSeries,

source§

fn unique(&self) -> Result<ChunkedArray<T>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn unique(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. -This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<String> for ChunkedArray<Utf8Type>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<bool> for ChunkedArray<BooleanType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f32> for ChunkedArray<Float32Type>

source§

fn var(&self, ddof: u8) -> Option<f32>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f32>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f64> for ChunkedArray<Float64Type>

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<f64> for ChunkedArray<T>where + ChunkedArray<T>: IntoSeries,

source§

fn unique(&self) -> Result<ChunkedArray<T>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<T>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkUnique<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn unique(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Get unique values of a ChunkedArray
source§

fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>

Get first index of the unique values in a ChunkedArray. +This Vec is sorted.
source§

fn n_unique(&self) -> Result<usize, PolarsError>

Number of unique values in the ChunkedArray
source§

fn mode(&self) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Available on crate feature mode only.
The most occurring value(s). Can return multiple Values
source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<String> for ChunkedArray<Utf8Type>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<bool> for ChunkedArray<BooleanType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f32> for ChunkedArray<Float32Type>

source§

fn var(&self, ddof: u8) -> Option<f32>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f32>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<f64> for ChunkedArray<Float64Type>

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<f64> for ChunkedArray<T>where T: PolarsIntegerType, - <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkZip<BinaryType> for ChunkedArray<BinaryType>

source§

fn zip_with( + <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var(&self, ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkZip<BinaryType> for ChunkedArray<BinaryType>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<BinaryType> ) -> Result<ChunkedArray<BinaryType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<BooleanType> for ChunkedArray<BooleanType>

source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<BooleanType> for ChunkedArray<BooleanType>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<BooleanType> ) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<FixedSizeListType> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<FixedSizeListType> ) -> Result<ChunkedArray<FixedSizeListType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<ListType> for ChunkedArray<ListType>

source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<ListType> for ChunkedArray<ListType>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<ListType> ) -> Result<ChunkedArray<ListType>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values from other where the mask evaluates false
source§

impl<T> ChunkZip<ObjectType<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn zip_with( + T: PolarsObject,

Available on crate feature object only.
source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<ObjectType<T>> ) -> Result<ChunkedArray<ObjectType<T>>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values from other where the mask evaluates false
source§

impl<T> ChunkZip<T> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn zip_with( + T: PolarsNumericType,

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<T> ) -> Result<ChunkedArray<T>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl ChunkZip<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn zip_with( +from other where the mask evaluates false

source§

impl ChunkZip<Utf8Type> for ChunkedArray<Utf8Type>

source§

fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<Utf8Type> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl<'a> ChunkedSet<&'a str> for &'a ChunkedArray<Utf8Type>

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where +from other where the mask evaluates false

source§

impl<'a> ChunkedSet<&'a str> for &'a ChunkedArray<Utf8Type>

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where V: IntoIterator<Item = Option<&'a str>>,

source§

impl<T> ChunkedSet<<T as PolarsNumericType>::Native> for ChunkedArray<T>where T: PolarsOpsNumericType, - ChunkedArray<T>: IntoSeries,

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where + ChunkedArray<T>: IntoSeries,

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where V: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,

source§

impl ChunkedSet<bool> for &ChunkedArray<BooleanType>

source§

fn set_at_idx2<V>(self, idx: &[u32], values: V) -> Result<Series, PolarsError>where V: IntoIterator<Item = Option<bool>>,

source§

impl<T> Clone for ChunkedArray<T>where - T: PolarsDataType,

source§

fn clone(&self) -> ChunkedArray<T>

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 ChunkedArray<BinaryType>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Debug for ChunkedArray<BooleanType>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Debug for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Debug for ChunkedArray<ListType>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T> Debug for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T> Debug for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Debug for ChunkedArray<Utf8Type>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T> Default for ChunkedArray<T>where + T: PolarsDataType,

source§

fn clone(&self) -> ChunkedArray<T>

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 ChunkedArray<BinaryType>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Debug for ChunkedArray<BooleanType>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Debug for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Debug for ChunkedArray<ListType>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T> Debug for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T> Debug for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Debug for ChunkedArray<Utf8Type>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T> Default for ChunkedArray<T>where T: PolarsDataType,

source§

fn default() -> ChunkedArray<T>

Returns the “default value” for a type. Read more
source§

impl<T> Div<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( self, rhs: &ChunkedArray<T> ) -> <&ChunkedArray<T> as Div<&ChunkedArray<T>>>::Output

Performs the / operation. Read more
source§

impl<T> Div<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div( self, rhs: ChunkedArray<T> ) -> <ChunkedArray<T> as Div<ChunkedArray<T>>>::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for &ChunkedArray<T>where T: PolarsNumericType, N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> <&ChunkedArray<T> as Div<N>>::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> <ChunkedArray<T> as Div<N>>::Output

Performs the / operation. Read more
source§

impl<T> Drop for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> <ChunkedArray<T> as Div<N>>::Output

Performs the / operation. Read more
source§

impl<T> Drop for ChunkedArray<T>where T: PolarsDataType,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T> From<&[<T as PolarsNumericType>::Native]> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from(slice: &[<T as PolarsNumericType>::Native]) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: &'a ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<<T as PolarsNumericType>::Native>, Global>where - T: PolarsNumericType,

source§

fn from( + T: PolarsNumericType,

source§

fn from(slice: &[<T as PolarsNumericType>::Native]) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: &'a ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<<T as PolarsNumericType>::Native>, Global>where + T: PolarsNumericType,

source§

fn from( ca: &'a ChunkedArray<T> ) -> Vec<Option<<T as PolarsNumericType>::Native>, Global>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

-
source§

fn from( ca: &'a ChunkedArray<UInt32Type> ) -> TakeIdx<'a, Once<usize>, Once<Option<usize>>>

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<Utf8Type>> for Vec<Option<&'a str>, Global>

From trait

-
source§

fn from(ca: &'a ChunkedArray<Utf8Type>) -> Vec<Option<&'a str>, Global>

Converts to this type from the input type.
source§

impl From<(&str, BinaryArray<i64>)> for ChunkedArray<BinaryType>

source§

fn from(tpl: (&str, BinaryArray<i64>)) -> ChunkedArray<BinaryType>

Converts to this type from the input type.
source§

impl From<(&str, BooleanArray)> for ChunkedArray<BooleanType>

source§

fn from(tpl: (&str, BooleanArray)) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl<T> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from(ca: &'a ChunkedArray<Utf8Type>) -> Vec<Option<&'a str>, Global>

Converts to this type from the input type.
source§

impl From<(&str, BinaryArray<i64>)> for ChunkedArray<BinaryType>

source§

fn from(tpl: (&str, BinaryArray<i64>)) -> ChunkedArray<BinaryType>

Converts to this type from the input type.
source§

impl From<(&str, BooleanArray)> for ChunkedArray<BooleanType>

source§

fn from(tpl: (&str, BooleanArray)) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl<T> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from( tpl: (&str, PrimitiveArray<<T as PolarsNumericType>::Native>) -) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl From<(&str, Utf8Array<i64>)> for ChunkedArray<Utf8Type>

source§

fn from(tpl: (&str, Utf8Array<i64>)) -> ChunkedArray<Utf8Type>

Converts to this type from the input type.
source§

impl From<BooleanArray> for ChunkedArray<BooleanType>

source§

fn from(arr: BooleanArray) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl<T> From<ChunkedArray<T>> for Serieswhere +) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl From<(&str, Utf8Array<i64>)> for ChunkedArray<Utf8Type>

source§

fn from(tpl: (&str, Utf8Array<i64>)) -> ChunkedArray<Utf8Type>

Converts to this type from the input type.
source§

impl From<BooleanArray> for ChunkedArray<BooleanType>

source§

fn from(arr: BooleanArray) -> ChunkedArray<BooleanType>

Converts to this type from the input type.
source§

impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>, Global>

source§

fn from(ca: ChunkedArray<BooleanType>) -> Vec<Option<bool>, Global>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl<T> From<ChunkedArray<T>> for Serieswhere T: PolarsDataType, - ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>, Global>

source§

fn from(ca: ChunkedArray<Utf8Type>) -> Vec<Option<String>, Global>

Converts to this type from the input type.
source§

impl<T> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from(a: PrimitiveArray<<T as PolarsNumericType>::Native>) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where + ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>, Global>

source§

fn from(ca: ChunkedArray<Utf8Type>) -> Vec<Option<String>, Global>

Converts to this type from the input type.
source§

impl<T> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from(a: PrimitiveArray<<T as PolarsNumericType>::Native>) -> ChunkedArray<T>

Converts to this type from the input type.
source§

impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where I: IntoIterator<Item = (Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)>,

Creates a value from an iterator. Read more
source§

impl<T> FromIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where T: PolarsNumericType,

FromIterator trait

-
source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where - I: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Box<dyn Array, Global>>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where +

source§

fn from_iter<I>(iter: I) -> ChunkedArray<T>where + I: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Box<dyn Array, Global>>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where I: IntoIterator<Item = Option<Box<dyn Array, Global>>>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Option<Ptr>> for ChunkedArray<BinaryType>where Ptr: AsRef<[u8]>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BinaryType>where I: IntoIterator<Item = Option<Ptr>>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Option<Ptr>> for ChunkedArray<Utf8Type>where - Ptr: AsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Option<Ptr>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where + Ptr: AsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoIterator<Item = Option<Ptr>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where I: IntoIterator<Item = Option<Series>>,

Creates a value from an iterator. Read more
source§

impl<T> FromIterator<Option<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn from_iter<I>(iter: I) -> ChunkedArray<ObjectType<T>>where - I: IntoIterator<Item = Option<T>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + T: PolarsObject,

Available on crate feature object only.
source§

fn from_iter<I>(iter: I) -> ChunkedArray<ObjectType<T>>where + I: IntoIterator<Item = Option<T>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoIterator<Item = Option<bool>>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ChunkedArray<BinaryType>where - Ptr: PolarsAsRef<[u8]>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BinaryType>where + Ptr: PolarsAsRef<[u8]>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BinaryType>where I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ChunkedArray<ListType>where - Ptr: Borrow<Series>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where + Ptr: Borrow<Series>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<ListType>where I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ChunkedArray<Utf8Type>where - Ptr: PolarsAsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + Ptr: PolarsAsRef<str>,

source§

fn from_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoIterator<Item = Ptr>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl<T> FromIteratorReversed<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where T: PolarsNumericType,

source§

impl FromIteratorReversed<Option<bool>> for ChunkedArray<BooleanType>

source§

impl<T> FromParallelIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<T>where + T: PolarsNumericType,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<T>where I: IntoParallelIterator<Item = Option<<T as PolarsNumericType>::Native>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromParallelIterator<Option<Ptr>> for ChunkedArray<Utf8Type>where - Ptr: AsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoParallelIterator<Item = Option<Ptr>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<ListType>where - I: IntoParallelIterator<Item = Option<Series>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + Ptr: AsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoParallelIterator<Item = Option<Ptr>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<ListType>where + I: IntoParallelIterator<Item = Option<Series>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoParallelIterator<Item = Option<bool>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromParallelIterator<Ptr> for ChunkedArray<Utf8Type>where - Ptr: PolarsAsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoParallelIterator<Item = Ptr>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where + Ptr: PolarsAsRef<str> + Send + Sync,

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<Utf8Type>where + I: IntoParallelIterator<Item = Ptr>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<bool> for ChunkedArray<BooleanType>

source§

fn from_par_iter<I>(iter: I) -> ChunkedArray<BooleanType>where I: IntoParallelIterator<Item = bool>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<T> FromTrustedLenIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where - T: PolarsNumericType,

source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for ChunkedArray<BinaryType>where Ptr: AsRef<[u8]>,

source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for ChunkedArray<Utf8Type>where Ptr: AsRef<str>,

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Option<Ptr>>,

source§

impl FromTrustedLenIterator<Option<Series>> for ChunkedArray<ListType>

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<ListType>where + I: IntoIterator<Item = Option<Ptr>>,

source§

impl FromTrustedLenIterator<Option<Series>> for ChunkedArray<ListType>

source§

impl<T> FromTrustedLenIterator<Option<T>> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<ObjectType<T>>where - I: IntoIterator<Item = Option<T>>,

source§

impl FromTrustedLenIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<BooleanType>where + T: PolarsObject,

Available on crate feature object only.
source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<ObjectType<T>>where + I: IntoIterator<Item = Option<T>>,

source§

impl FromTrustedLenIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<BinaryType>where - Ptr: PolarsAsRef<[u8]>,

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<ListType>where - Ptr: Borrow<Series>,

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<Utf8Type>where - Ptr: PolarsAsRef<str>,

source§

fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<Utf8Type>where - I: IntoIterator<Item = Ptr>,

source§

impl FromTrustedLenIterator<bool> for ChunkedArray<BooleanType>

source§

impl FromTrustedLenIterator<bool> for ChunkedArray<BooleanType>

source§

impl IntoGroupsProxy for ChunkedArray<BinaryType>

source§

impl IntoGroupsProxy for ChunkedArray<BinaryType>

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<BooleanType>

source§

fn group_tuples( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<BooleanType>

source§

fn group_tuples( &self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn group_tuples<'a>( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn group_tuples<'a>( &'a self, _multithreaded: bool, _sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<ListType>

source§

fn group_tuples<'a>( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<ListType>

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. * The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<T> IntoGroupsProxy for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn group_tuples( + T: PolarsObject,

Available on crate feature object only.
source§

fn group_tuples( &self, _multithreaded: bool, sorted: bool @@ -1221,53 +1221,53 @@

Safety
* The first value in the tuple is the first index of the group. * The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<T> IntoGroupsProxy for ChunkedArray<T>where T: PolarsNumericType, - <T as PolarsNumericType>::Native: NumCast,

source§

fn group_tuples( + <T as PolarsNumericType>::Native: NumCast,

source§

fn group_tuples( &self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl IntoGroupsProxy for ChunkedArray<Utf8Type>

source§

fn group_tuples<'a>( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl IntoGroupsProxy for ChunkedArray<Utf8Type>

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> Result<GroupsProxy, PolarsError>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<'a> IntoIterator for &'a ChunkedArray<BinaryType>

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BinaryType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BinaryType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<BooleanType>

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BooleanType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BooleanType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl<'a> IntoIterator for &'a ChunkedArray<BinaryType>

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BinaryType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BinaryType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<BooleanType>

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BooleanType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<BooleanType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( self -) -> <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<ListType>

§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<ListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ObjectType<T>> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( +) -> <&'a ChunkedArray<FixedSizeListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<ListType>

§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<ListType> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
§

type Item = Option<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ObjectType<T>> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter( self ) -> <&'a ChunkedArray<ObjectType<T>> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = Option<<T as PolarsNumericType>::Native>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<T> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<Utf8Type>

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<Utf8Type> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<Utf8Type> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoSeries for ChunkedArray<Int128Type>

source§

impl<T> IntoSeries for ChunkedArray<T>where + T: PolarsNumericType,

§

type Item = Option<<T as PolarsNumericType>::Native>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<T> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a ChunkedArray<Utf8Type>

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<Utf8Type> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a ChunkedArray<Utf8Type> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoSeries for ChunkedArray<Int128Type>

source§

impl<T> IntoSeries for ChunkedArray<T>where T: PolarsDataType + 'static, - SeriesWrap<ChunkedArray<T>>: SeriesTrait,

source§

impl<T> IntoSeriesOps for &ChunkedArray<T>where + SeriesWrap<ChunkedArray<T>>: SeriesTrait,

source§

impl<T> IntoSeriesOps for &ChunkedArray<T>where T: PolarsIntegerType, - <T as PolarsNumericType>::Native: NumericNative,

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<BooleanType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<ListType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Utf8Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

§

type TakeRandom = TakeRandBranch2<BinaryTakeRandomSingleChunk<'a>, BinaryTakeRandom<'a>>

source§

fn take_rand( + <T as PolarsNumericType>::Native: NumericNative,

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<BooleanType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Float64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<ListType>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ChunkedArray<Utf8Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

§

type TakeRandom = TakeRandBranch2<BinaryTakeRandomSingleChunk<'a>, BinaryTakeRandom<'a>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<BinaryType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<BooleanType>

§

type Item = bool

§

type TakeRandom = TakeRandBranch2<BoolTakeRandomSingleChunk<'a>, BoolTakeRandom<'a>>

source§

fn take_rand( &self -) -> <&'a ChunkedArray<BooleanType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<ListType>

§

type Item = Series

§

type TakeRandom = TakeRandBranch2<ListTakeRandomSingleChunk<'a>, ListTakeRandom<'a>>

source§

fn take_rand( +) -> <&'a ChunkedArray<BooleanType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<ListType>

§

type Item = Series

§

type TakeRandom = TakeRandBranch2<ListTakeRandomSingleChunk<'a>, ListTakeRandom<'a>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<ListType> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a, T> IntoTakeRandom<'a> for &'a ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
§

type Item = &'a T

§

type TakeRandom = TakeRandBranch2<ObjectTakeRandomSingleChunk<'a, T>, ObjectTakeRandom<'a, T>>

source§

fn take_rand( + T: PolarsObject,

Available on crate feature object only.
§

type Item = &'a T

§

type TakeRandom = TakeRandBranch2<ObjectTakeRandomSingleChunk<'a, T>, ObjectTakeRandom<'a, T>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<ObjectType<T>> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl<'a, T> IntoTakeRandom<'a> for &'a ChunkedArray<T>where - T: PolarsNumericType,

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

§

type TakeRandom = TakeRandBranch2<Utf8TakeRandomSingleChunk<'a>, Utf8TakeRandom<'a>>

source§

fn take_rand( + T: PolarsNumericType,

source§

impl<'a> IntoTakeRandom<'a> for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

§

type TakeRandom = TakeRandBranch2<Utf8TakeRandomSingleChunk<'a>, Utf8TakeRandom<'a>>

source§

fn take_rand( &self ) -> <&'a ChunkedArray<Utf8Type> as IntoTakeRandom<'a>>::TakeRandom

Create a type that implements TakeRandom.
source§

impl IsIn for ChunkedArray<BinaryType>

source§

fn is_in( &self, other: &Series -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<BooleanType>

source§

fn is_in( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<BooleanType>

source§

fn is_in( &self, other: &Series ) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl<T> IsIn for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn is_in( + T: PolarsNumericType,

source§

fn is_in( &self, other: &Series -) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<Utf8Type>

source§

fn is_in( +) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl IsIn for ChunkedArray<Utf8Type>

source§

fn is_in( &self, other: &Series ) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl ListNameSpaceImpl for ChunkedArray<ListType>

source§

fn lst_join( @@ -1297,51 +1297,51 @@

Safety
N: Num + ToPrimitive,
§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> <&ChunkedArray<T> as Mul<N>>::Output

Performs the * operation. Read more
source§

impl<T, N> Mul<N> for ChunkedArray<T>where T: PolarsNumericType, N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> <ChunkedArray<T> as Mul<N>>::Output

Performs the * operation. Read more
source§

impl<T> NamedFrom<&[T], &[T]> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn new(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, range: Range<u32>) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, range: Range<u64>) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T, S> NamedFrom<S, [Option<T>]> for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn new(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, range: Range<u32>) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, range: Range<u64>) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T, S> NamedFrom<S, [Option<T>]> for ChunkedArray<ObjectType<T>>where T: PolarsObject, - S: AsRef<[Option<T>]>,

Available on crate feature object only.
source§

fn new(name: &str, v: S) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for ChunkedArray<BinaryType>where - T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for ChunkedArray<Utf8Type>where - T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for ChunkedArray<BinaryType>where - T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for ChunkedArray<Utf8Type>where - T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for ChunkedArray<BinaryType>where - T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for ChunkedArray<Utf8Type>where - T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for ChunkedArray<BinaryType>where + S: AsRef<[Option<T>]>,

Available on crate feature object only.
source§

fn new(name: &str, v: S) -> ChunkedArray<ObjectType<T>>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for ChunkedArray<BinaryType>where + T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for ChunkedArray<Utf8Type>where + T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for ChunkedArray<BinaryType>where + T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for ChunkedArray<Utf8Type>where + T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for ChunkedArray<BinaryType>where + T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for ChunkedArray<Utf8Type>where + T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for ChunkedArray<BinaryType>where T: AsRef<[Option<Cow<'a, [u8]>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for ChunkedArray<Utf8Type>where - T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for ChunkedArray<Utf8Type>where + T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for ChunkedArray<Utf8Type>where T: AsRef<[Option<String>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Vec<u8, Global>>]> for ChunkedArray<BinaryType>where - T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for ChunkedArray<BooleanType>where - T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for ChunkedArray<Float32Type>where - T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for ChunkedArray<Float64Type>where - T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for ChunkedArray<Int16Type>where - T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for ChunkedArray<Int32Type>where - T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for ChunkedArray<Int64Type>where - T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for ChunkedArray<Int8Type>where - T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for ChunkedArray<UInt16Type>where - T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for ChunkedArray<UInt32Type>where - T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for ChunkedArray<UInt64Type>where - T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for ChunkedArray<UInt8Type>where - T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for ChunkedArray<Utf8Type>where - T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for ChunkedArray<BinaryType>where - T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for ChunkedArray<BooleanType>where - T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for ChunkedArray<Float32Type>where - T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for ChunkedArray<Float64Type>where - T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for ChunkedArray<Int16Type>where - T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for ChunkedArray<Int32Type>where - T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for ChunkedArray<Int64Type>where - T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for ChunkedArray<Int8Type>where - T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for ChunkedArray<UInt16Type>where - T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for ChunkedArray<UInt32Type>where - T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for ChunkedArray<UInt64Type>where - T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for ChunkedArray<UInt8Type>where - T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<B> NewChunkedArray<BinaryType, B> for ChunkedArray<BinaryType>where - B: AsRef<[u8]>,

source§

fn from_iter_values( + T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for ChunkedArray<BooleanType>where + T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for ChunkedArray<Float32Type>where + T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for ChunkedArray<Float64Type>where + T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for ChunkedArray<Int16Type>where + T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for ChunkedArray<Int32Type>where + T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for ChunkedArray<Int64Type>where + T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for ChunkedArray<Int8Type>where + T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for ChunkedArray<UInt16Type>where + T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for ChunkedArray<UInt32Type>where + T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for ChunkedArray<UInt64Type>where + T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for ChunkedArray<UInt8Type>where + T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for ChunkedArray<Utf8Type>where + T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Utf8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for ChunkedArray<BinaryType>where + T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BinaryType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for ChunkedArray<BooleanType>where + T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<BooleanType>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for ChunkedArray<Float32Type>where + T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for ChunkedArray<Float64Type>where + T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Float64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for ChunkedArray<Int16Type>where + T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for ChunkedArray<Int32Type>where + T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for ChunkedArray<Int64Type>where + T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for ChunkedArray<Int8Type>where + T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<Int8Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for ChunkedArray<UInt16Type>where + T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt16Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for ChunkedArray<UInt32Type>where + T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for ChunkedArray<UInt64Type>where + T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for ChunkedArray<UInt8Type>where + T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> ChunkedArray<UInt8Type>

Initialize by name and values.
source§

impl<B> NewChunkedArray<BinaryType, B> for ChunkedArray<BinaryType>where + B: AsRef<[u8]>,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = B> ) -> ChunkedArray<BinaryType>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[B]) -> ChunkedArray<BinaryType>

source§

fn from_slice_options( +

source§

fn from_slice(name: &str, v: &[B]) -> ChunkedArray<BinaryType>

source§

fn from_slice_options( name: &str, opt_v: &[Option<B>] -) -> ChunkedArray<BinaryType>

source§

fn from_iter_options( +) -> ChunkedArray<BinaryType>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<B>> ) -> ChunkedArray<BinaryType>

Create a new ChunkedArray from an iterator.
source§

impl NewChunkedArray<BooleanType, bool> for ChunkedArray<BooleanType>

source§

fn from_iter_values( @@ -1355,57 +1355,57 @@

Safety
name: &str, it: impl Iterator<Item = Option<bool>> ) -> ChunkedArray<BooleanType>
Create a new ChunkedArray from an iterator.
source§

impl<T> NewChunkedArray<ObjectType<T>, T> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

source§

fn from_iter_values( + T: PolarsObject,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = T> ) -> ChunkedArray<ObjectType<T>>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

source§

fn from_slice_options( +

source§

fn from_slice(name: &str, v: &[T]) -> ChunkedArray<ObjectType<T>>

source§

fn from_slice_options( name: &str, opt_v: &[Option<T>] -) -> ChunkedArray<ObjectType<T>>

source§

fn from_iter_options( +) -> ChunkedArray<ObjectType<T>>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<T>> ) -> ChunkedArray<ObjectType<T>>

Create a new ChunkedArray from an iterator.
source§

impl<T> NewChunkedArray<T, <T as PolarsNumericType>::Native> for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn from_iter_values( + T: PolarsNumericType,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = <T as PolarsNumericType>::Native> ) -> ChunkedArray<T>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice( +

source§

fn from_slice( name: &str, v: &[<T as PolarsNumericType>::Native] -) -> ChunkedArray<T>

source§

fn from_slice_options( +) -> ChunkedArray<T>

source§

fn from_slice_options( name: &str, opt_v: &[Option<<T as PolarsNumericType>::Native>] -) -> ChunkedArray<T>

source§

fn from_iter_options( +) -> ChunkedArray<T>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<<T as PolarsNumericType>::Native>> ) -> ChunkedArray<T>

Create a new ChunkedArray from an iterator.
source§

impl<S> NewChunkedArray<Utf8Type, S> for ChunkedArray<Utf8Type>where - S: AsRef<str>,

source§

fn from_iter_values( + S: AsRef<str>,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = S> ) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[S]) -> ChunkedArray<Utf8Type>

source§

fn from_slice_options(name: &str, opt_v: &[Option<S>]) -> ChunkedArray<Utf8Type>

source§

fn from_iter_options( +

source§

fn from_slice(name: &str, v: &[S]) -> ChunkedArray<Utf8Type>

source§

fn from_slice_options(name: &str, opt_v: &[Option<S>]) -> ChunkedArray<Utf8Type>

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<S>> ) -> ChunkedArray<Utf8Type>

Create a new ChunkedArray from an iterator.
source§

impl Not for &ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> <&ChunkedArray<BooleanType> as Not>::Output

Performs the unary ! operation. Read more
source§

impl Not for ChunkedArray<BooleanType>

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> <ChunkedArray<BooleanType> as Not>::Output

Performs the unary ! operation. Read more
source§

impl<T> NumOpsDispatch for ChunkedArray<T>where T: NumOpsDispatchInner,

source§

impl<S> NumOpsDispatchChecked for ChunkedArray<S>where S: NumOpsDispatchCheckedInner,

source§

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
source§

fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where - T: ToPrimitive,

source§

impl QuantileAggSeries for ChunkedArray<Float32Type>

source§

impl QuantileAggSeries for ChunkedArray<Float32Type>

source§

fn quantile_as_series( &self, quantile: f64, interpol: QuantileInterpolOptions -) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl QuantileAggSeries for ChunkedArray<Float64Type>

source§

fn quantile_as_series( +) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl QuantileAggSeries for ChunkedArray<Float64Type>

source§

fn quantile_as_series( &self, quantile: f64, interpol: QuantileInterpolOptions ) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> QuantileAggSeries for ChunkedArray<T>where T: PolarsIntegerType, <T as PolarsNumericType>::Native: Ord, - <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn quantile_as_series( + <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn quantile_as_series( &self, quantile: f64, interpol: QuantileInterpolOptions -) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> Rem<&ChunkedArray<T>> for &ChunkedArray<T>where +) -> Result<Series, PolarsError>

Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> Rem<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem( self, rhs: &ChunkedArray<T> @@ -1420,34 +1420,34 @@

Safety
N: Num + ToPrimitive,
§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: N) -> <ChunkedArray<T> as Rem<N>>::Output

Performs the % operation. Read more
source§

impl RepeatBy for ChunkedArray<BinaryType>

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> -) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<BooleanType>

source§

fn repeat_by( +) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<BooleanType>

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> ) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl<T> RepeatBy for ChunkedArray<T>where T: PolarsNumericType,

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> -) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<Utf8Type>

source§

fn repeat_by( +) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl RepeatBy for ChunkedArray<Utf8Type>

source§

fn repeat_by( &self, by: &ChunkedArray<UInt32Type> ) -> Result<ChunkedArray<ListType>, PolarsError>

Repeat the values n times, where n is determined by the values in by.
source§

impl<T> StrConcat for ChunkedArray<T>where T: PolarsNumericType, - <T as PolarsNumericType>::Native: Display,

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl StrConcat for ChunkedArray<Utf8Type>

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( + <T as PolarsNumericType>::Native: Display,

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl StrConcat for ChunkedArray<Utf8Type>

source§

fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>

Concat the values into a string array. Read more
source§

impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( self, rhs: &ChunkedArray<T> ) -> <&ChunkedArray<T> as Sub<&ChunkedArray<T>>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub( self, rhs: ChunkedArray<T> ) -> <ChunkedArray<T> as Sub<ChunkedArray<T>>>::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <&ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <&ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

source§

fn get( + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> <ChunkedArray<T> as Sub<N>>::Output

Performs the - operation. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<BinaryType>

§

type Item = &'a [u8]

source§

fn get( &self, index: usize -) -> Option<<&'a ChunkedArray<BinaryType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where +) -> Option<<&'a ChunkedArray<BinaryType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<BooleanType>

§

type Item = bool

source§

fn get( &self, index: usize @@ -1455,40 +1455,40 @@

Safety
&self, index: usize ) -> Option<<&'a ChunkedArray<BooleanType> as TakeRandom>::Item>
Get a value by index and ignore the null bit. Read more
source§

impl<'a, T> TakeRandom for &'a ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
§

type Item = &'a T

source§

fn get( + T: PolarsObject,

Available on crate feature object only.
§

type Item = &'a T

source§

fn get( &self, index: usize -) -> Option<<&'a ChunkedArray<ObjectType<T>> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<&'a ChunkedArray<ObjectType<T>> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize ) -> Option<<&'a ChunkedArray<ObjectType<T>> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a, T> TakeRandom for &'a ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( + T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize -) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

source§

fn get( +) -> Option<<&'a ChunkedArray<T> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandom for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

source§

fn get( &self, index: usize -) -> Option<<&'a ChunkedArray<Utf8Type> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where - Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<BooleanType>

§

type Item = bool

source§

fn get( +) -> Option<<&'a ChunkedArray<Utf8Type> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where + Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<BooleanType>

§

type Item = bool

source§

fn get( &self, index: usize -) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize -) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Series

source§

fn get( +) -> Option<<ChunkedArray<BooleanType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Series

source§

fn get( &self, index: usize -) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize -) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<ListType>

§

type Item = Series

source§

fn get( +) -> Option<<ChunkedArray<FixedSizeListType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for ChunkedArray<ListType>

§

type Item = Series

source§

fn get( &self, index: usize -) -> Option<<ChunkedArray<ListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( +) -> Option<<ChunkedArray<ListType> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize ) -> Option<<ChunkedArray<ListType> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<T> TakeRandom for ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( + T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<<ChunkedArray<T> as TakeRandom>::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked( &self, index: usize ) -> Option<<ChunkedArray<T> as TakeRandom>::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandomUtf8 for &'a ChunkedArray<Utf8Type>

§

type Item = &'a str

source§

fn get( @@ -1569,14 +1569,14 @@

Safety
length: Option<u64> ) -> Result<ChunkedArray<Utf8Type>, PolarsError>
Slice the string values Determines a substring starting from start and with optional length length of each of the elements in array. -start can be negative, in which case the start counts from the end of the string.
source§

impl ValueSize for ChunkedArray<BinaryType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<ListType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<Utf8Type>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. -During a rechunk this is handy
source§

impl VarAggSeries for ChunkedArray<Float32Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VarAggSeries for ChunkedArray<Float64Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl<T> VarAggSeries for ChunkedArray<T>where +start can be negative, in which case the start counts from the end of the string.

source§

impl ValueSize for ChunkedArray<BinaryType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<ListType>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl ValueSize for ChunkedArray<Utf8Type>

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +During a rechunk this is handy
source§

impl VarAggSeries for ChunkedArray<Float32Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VarAggSeries for ChunkedArray<Float64Type>

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl<T> VarAggSeries for ChunkedArray<T>where T: PolarsIntegerType, - <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VecHash for ChunkedArray<BinaryType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<BooleanType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl<T> VecHash for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Utf8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ChunkedArray<T>

§

impl<T> Send for ChunkedArray<T>

§

impl<T> Sync for ChunkedArray<T>

§

impl<T> Unpin for ChunkedArray<T>where + <<T as PolarsNumericType>::Native as Simd>::Simd: Add<<<T as PolarsNumericType>::Native as Simd>::Simd, Output = <<T as PolarsNumericType>::Native as Simd>::Simd> + Sum<<T as PolarsNumericType>::Native> + SimdOrd<<T as PolarsNumericType>::Native>,

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§

impl VecHash for ChunkedArray<BinaryType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<BooleanType>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Float64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Int8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl<T> VecHash for ChunkedArray<ObjectType<T>>where + T: PolarsObject,

Available on crate feature object only.
source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt16Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt32Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt64Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<UInt8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

source§

impl VecHash for ChunkedArray<Utf8Type>

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64, Global>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ChunkedArray<T>

§

impl<T> Send for ChunkedArray<T>

§

impl<T> Sync for ChunkedArray<T>

§

impl<T> Unpin for ChunkedArray<T>where T: Unpin,

§

impl<T> !UnwindSafe for ChunkedArray<T>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars/prelude/struct.DataFrame.html b/polars/prelude/struct.DataFrame.html index 4543284f0a53..22d0f54a480b 100644 --- a/polars/prelude/struct.DataFrame.html +++ b/polars/prelude/struct.DataFrame.html @@ -1403,22 +1403,22 @@
Example
S: AsRef<str>,

Perform an outer join on two DataFrames Read more
source§

impl Debug for DataFrame

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for DataFrame

source§

fn default() -> DataFrame

Returns the “default value” for a type. Read more
source§

impl Display for DataFrame

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<&Schema> for DataFrame

source§

fn from(schema: &Schema) -> DataFrame

Converts to this type from the input type.
source§

impl From<DataFrame> for Vec<Series, Global>

source§

fn from(df: DataFrame) -> Vec<Series, Global>

Converts to this type from the input type.
source§

impl From<StructChunked> for DataFrame

source§

fn from(ca: StructChunked) -> DataFrame

Converts to this type from the input type.
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T>(iter: T) -> DataFramewhere T: IntoIterator<Item = Series>,

Panics

Panics if Series have different lengths.

-
source§

impl Index<&str> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: &str) -> &<DataFrame as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Range<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +

source§

impl Index<&str> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: &str) -> &<DataFrame as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Range<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: Range<usize> -) -> &<DataFrame as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFrom<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<Range<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFrom<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeFrom<usize> -) -> &<DataFrame as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFull> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFull) -> &<DataFrame as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<RangeFrom<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFull> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFull) -> &<DataFrame as Index<RangeFull>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeInclusive<usize> -) -> &<DataFrame as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeTo<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<RangeInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeTo<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeTo<usize> -) -> &<DataFrame as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeToInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( +) -> &<DataFrame as Index<RangeTo<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeToInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index( &self, index: RangeToInclusive<usize> -) -> &<DataFrame as Index<RangeToInclusive<usize>>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: usize) -> &<DataFrame as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IntoLazy for DataFrame

source§

fn lazy(self) -> LazyFrame

Convert the DataFrame into a lazy DataFrame

+) -> &<DataFrame as Index<RangeToInclusive<usize>>>::Output
Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: usize) -> &<DataFrame as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IntoLazy for DataFrame

source§

fn lazy(self) -> LazyFrame

Convert the DataFrame into a lazy DataFrame

source§

impl PartialEq<DataFrame> for DataFrame

source§

fn eq(&self, other: &DataFrame) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PolarsTemporalGroupby for DataFrame

source§

fn groupby_rolling( @@ -1443,9 +1443,9 @@

Example
every: Duration, offset: Duration ) -> Result<DataFrame, PolarsError>where - I: IntoVec<String>,
Upsample a DataFrame at a regular frequency. Read more
source§

impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( + I: IntoVec<String>,

Upsample a DataFrame at a regular frequency. Read more
source§

impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( arg: (Chunk<Box<dyn Array, Global>>, &[Field]) -) -> Result<DataFrame, PolarsError>

Performs the conversion.
source§

impl TryFrom<StructArray> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arr: StructArray) -> Result<DataFrame, PolarsError>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +) -> Result<DataFrame, PolarsError>

Performs the conversion.
source§

impl TryFrom<StructArray> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arr: StructArray) -> Result<DataFrame, PolarsError>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DataFrameOps for Twhere diff --git a/polars/prelude/struct.Field.html b/polars/prelude/struct.Field.html index e38796096dc6..d4860818d4b6 100644 --- a/polars/prelude/struct.Field.html +++ b/polars/prelude/struct.Field.html @@ -35,7 +35,7 @@
Example
let af = arrow::datatypes::Field::new("Value", arrow::datatypes::DataType::Int64, true); assert_eq!(f.to_arrow(), af);

-

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

fn eq(&self, other: &Field) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Field

source§

fn clone(&self) -> Field

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 Field

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<&AnyValue<'a>> for Field

source§

fn from(val: &AnyValue<'a>) -> Field

Converts to this type from the input type.
source§

impl From<&Field> for Field

source§

fn from(f: &Field) -> Field

Converts to this type from the input type.
source§

impl PartialEq<Field> for Field

source§

fn eq(&self, other: &Field) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Field

source§

impl StructuralEq for Field

source§

impl StructuralPartialEq for Field

Auto Trait Implementations§

§

impl RefUnwindSafe for Field

§

impl Send for Field

§

impl Sync for Field

§

impl Unpin for Field

§

impl UnwindSafe for Field

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/prelude/struct.GroupsIdx.html b/polars/prelude/struct.GroupsIdx.html index cdc3581c7475..0baa661119ef 100644 --- a/polars/prelude/struct.GroupsIdx.html +++ b/polars/prelude/struct.GroupsIdx.html @@ -4,11 +4,11 @@ first: Vec<u32, Global>, all: Vec<Vec<u32, Global>, Global>, sorted: bool -) -> GroupsIdx

source

pub fn sort(&mut self)

source

pub fn is_sorted_flag(&self) -> bool

source

pub fn iter(&self) -> Zip<Copied<Iter<'_, u32>>, Iter<'_, Vec<u32, Global>>>

source

pub fn all(&self) -> &[Vec<u32, Global>]

source

pub fn first(&self) -> &[u32]

source

pub fn first_mut(&mut self) -> &mut Vec<u32, Global>

Trait Implementations§

source§

impl Clone for GroupsIdx

source§

fn clone(&self) -> GroupsIdx

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 GroupsIdx

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for GroupsIdx

source§

fn default() -> GroupsIdx

Returns the “default value” for a type. Read more
source§

impl Drop for GroupsIdx

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<GroupsIdx> for GroupsProxy

source§

fn from(groups: GroupsIdx) -> GroupsProxy

Converts to this type from the input type.
source§

impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx

source§

fn from( +) -> GroupsIdx

source

pub fn sort(&mut self)

source

pub fn is_sorted_flag(&self) -> bool

source

pub fn iter(&self) -> Zip<Copied<Iter<'_, u32>>, Iter<'_, Vec<u32, Global>>>

source

pub fn all(&self) -> &[Vec<u32, Global>]

source

pub fn first(&self) -> &[u32]

source

pub fn first_mut(&mut self) -> &mut Vec<u32, Global>

Trait Implementations§

source§

impl Clone for GroupsIdx

source§

fn clone(&self) -> GroupsIdx

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 GroupsIdx

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for GroupsIdx

source§

fn default() -> GroupsIdx

Returns the “default value” for a type. Read more
source§

impl Drop for GroupsIdx

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<GroupsIdx> for GroupsProxy

source§

fn from(groups: GroupsIdx) -> GroupsProxy

Converts to this type from the input type.
source§

impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx

source§

fn from( v: Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global> -) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<(u32, Vec<u32, Global>), Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx

source§

fn from(v: Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_iter<T>(iter: T) -> GroupsIdxwhere +) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<(u32, Vec<u32, Global>), Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx

source§

fn from(v: Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>) -> GroupsIdx

Converts to this type from the input type.
source§

impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_iter<T>(iter: T) -> GroupsIdxwhere T: IntoIterator<Item = (u32, Vec<u32, Global>)>,

Creates a value from an iterator. Read more
source§

impl FromParallelIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_par_iter<I>(par_iter: I) -> GroupsIdxwhere - I: IntoParallelIterator<Item = (u32, Vec<u32, Global>)>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<'a> IntoIterator for &'a GroupsIdx

§

type Item = (u32, &'a Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for GroupsIdx

§

type Item = (u32, Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<IntoIter<u32, Global>, IntoIter<Vec<u32, Global>, Global>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoParallelIterator for &'a GroupsIdx

§

type Iter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, &'a Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <&'a GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl IntoParallelIterator for GroupsIdx

§

type Iter = Zip<IntoIter<u32>, IntoIter<Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl PartialEq<GroupsIdx> for GroupsIdx

source§

fn eq(&self, other: &GroupsIdx) -> bool

This method tests for self and other values to be equal, and is used + I: IntoParallelIterator<Item = (u32, Vec<u32, Global>)>,
Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<'a> IntoIterator for &'a GroupsIdx

§

type Item = (u32, &'a Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for GroupsIdx

§

type Item = (u32, Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<IntoIter<u32, Global>, IntoIter<Vec<u32, Global>, Global>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <GroupsIdx as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoParallelIterator for &'a GroupsIdx

§

type Iter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, &'a Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <&'a GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl IntoParallelIterator for GroupsIdx

§

type Iter = Zip<IntoIter<u32>, IntoIter<Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> <GroupsIdx as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
source§

impl PartialEq<GroupsIdx> for GroupsIdx

source§

fn eq(&self, other: &GroupsIdx) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for GroupsIdx

source§

impl StructuralEq for GroupsIdx

source§

impl StructuralPartialEq for GroupsIdx

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/prelude/struct.Int32Type.html b/polars/prelude/struct.Int32Type.html index 72287b9d6634..af84540803d3 100644 --- a/polars/prelude/struct.Int32Type.html +++ b/polars/prelude/struct.Int32Type.html @@ -1,4 +1,4 @@ -Int32Type in polars::prelude - Rust

Struct polars::prelude::Int32Type

source ·
pub struct Int32Type {}

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +Int32Type in polars::prelude - Rust

Struct polars::prelude::Int32Type

source ·
pub struct Int32Type {}

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> ChunkedArray<Int32Type>

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/struct.Logical.html b/polars/prelude/struct.Logical.html index 3dbefb363740..f0d64f263e39 100644 --- a/polars/prelude/struct.Logical.html +++ b/polars/prelude/struct.Logical.html @@ -329,27 +329,27 @@
Safety

source§

fn milliseconds(&self) -> ChunkedArray<Int64Type>

Extract the milliseconds from a Duration

source§

fn microseconds(&self) -> ChunkedArray<Int64Type>

Extract the microseconds from a Duration

source§

fn nanoseconds(&self) -> ChunkedArray<Int64Type>

Extract the nanoseconds from a Duration

-

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( +

source§

impl From<ChunkedArray<Int32Type>> for Logical<DateType, Int32Type>

source§

fn from(ca: ChunkedArray<Int32Type>) -> Logical<DateType, Int32Type>

Converts to this type from the input type.
source§

impl From<ChunkedArray<Int64Type>> for Logical<TimeType, Int64Type>

source§

fn from(ca: ChunkedArray<Int64Type>) -> Logical<TimeType, Int64Type>

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl IntoSeries for Logical<DateType, Int32Type>

source§

impl IntoSeries for Logical<DatetimeType, Int64Type>

source§

impl IntoSeries for Logical<DecimalType, Int128Type>

source§

impl IntoSeries for Logical<DurationType, Int64Type>

source§

impl IntoSeries for Logical<TimeType, Int64Type>

source§

impl IntoSeriesOps for Logical<DateType, Int32Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DatetimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<DurationType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Logical<TimeType, Int64Type>

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl LogicalType for Logical<DateType, Int32Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DatetimeType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DecimalType, Int128Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<DurationType, Int64Type>

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl LogicalType for Logical<TimeType, Int64Type>

source§

fn dtype(&self) -> &'static DataType

Get data type of ChunkedArray.
source§

fn get_any_value(&self, i: usize) -> Result<AnyValue<'_>, PolarsError>

Gets AnyValue from LogicalType
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>

source§

impl Mul<&Logical<DecimalType, Int128Type>> for &Logical<DecimalType, Int128Type>

§

type Output = Result<Logical<DecimalType, Int128Type>, PolarsError>

The resulting type after applying the * operator.
source§

fn mul( self, rhs: &Logical<DecimalType, Int128Type> ) -> <&Logical<DecimalType, Int128Type> as Mul<&Logical<DecimalType, Int128Type>>>::Output

Performs the * operation. Read more
source§

impl<T> NamedFrom<T, [Duration]> for Logical<DurationType, Int64Type>where T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Logical<DateType, Int32Type>where - T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Logical<DatetimeType, Int64Type>where T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Logical<TimeType, Int64Type>where - T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where + T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Logical<DurationType, Int64Type>where T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Logical<DurationType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Logical<DateType, Int32Type>where - T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where - T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where - T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

fn month_end( + T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Logical<DateType, Int32Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Logical<DatetimeType, Int64Type>where + T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Logical<DatetimeType, Int64Type>

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Logical<TimeType, Int64Type>where + T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Logical<TimeType, Int64Type>

Initialize by name and values.
source§

impl PolarsMonthEnd for Logical<DateType, Int32Type>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

impl PolarsMonthEnd for Logical<DatetimeType, Int64Type>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

impl PolarsMonthStart for Logical<DateType, Int32Type>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

impl PolarsMonthStart for Logical<DatetimeType, Int64Type>

source§

impl PolarsRound for Logical<DateType, Int32Type>

Available on crate feature dtype-date only.
source§

fn round( diff --git a/polars/prelude/struct.RollingOptions.html b/polars/prelude/struct.RollingOptions.html index 1085917a4e0d..16dbcd747d86 100644 --- a/polars/prelude/struct.RollingOptions.html +++ b/polars/prelude/struct.RollingOptions.html @@ -14,7 +14,7 @@

§by: Option<String>

Compute the rolling aggregates with a window defined by a time column

§closed_window: Option<ClosedWindow>

The closed window of that time window if given

§fn_params: Option<Arc<dyn Any + Send + Sync>>

Optional parameters for the rolling function

-

Trait Implementations§

source§

impl Clone for RollingOptions

source§

fn clone(&self) -> RollingOptions

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 Default for RollingOptions

source§

fn default() -> RollingOptions

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptions) -> RollingOptionsFixedWindow

Converts to this type from the input type.
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> RollingOptionsImpl<'static>

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for RollingOptions

source§

fn clone(&self) -> RollingOptions

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 Default for RollingOptions

source§

fn default() -> RollingOptions

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptions) -> RollingOptionsFixedWindow

Converts to this type from the input type.
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> RollingOptionsImpl<'static>

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/struct.RollingOptionsFixedWindow.html b/polars/prelude/struct.RollingOptionsFixedWindow.html index ca900203a216..ac5f41a6cfaa 100644 --- a/polars/prelude/struct.RollingOptionsFixedWindow.html +++ b/polars/prelude/struct.RollingOptionsFixedWindow.html @@ -9,7 +9,7 @@

§weights: Option<Vec<f64, Global>>

An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.

§center: bool

Set the labels at the center of the window.

-
§fn_params: Option<Arc<dyn Any + Send + Sync>>

Trait Implementations§

source§

impl Clone for RollingOptionsFixedWindow

source§

fn clone(&self) -> RollingOptionsFixedWindow

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 Default for RollingOptionsFixedWindow

source§

fn default() -> RollingOptionsFixedWindow

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

Available on crate feature rolling_window only.
source§

fn from(options: RollingOptions) -> RollingOptionsFixedWindow

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

Available on crate feature rolling_window only.
source§

fn from(options: RollingOptionsImpl<'a>) -> RollingOptionsFixedWindow

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

§fn_params: Option<Arc<dyn Any + Send + Sync>>

Trait Implementations§

source§

impl Clone for RollingOptionsFixedWindow

source§

fn clone(&self) -> RollingOptionsFixedWindow

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 Default for RollingOptionsFixedWindow

source§

fn default() -> RollingOptionsFixedWindow

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

Available on crate feature rolling_window only.
source§

fn from(options: RollingOptions) -> RollingOptionsFixedWindow

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

Available on crate feature rolling_window only.
source§

fn from(options: RollingOptionsImpl<'a>) -> RollingOptionsFixedWindow

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/struct.RollingOptionsImpl.html b/polars/prelude/struct.RollingOptionsImpl.html index 7b5baf885d50..fdddce76b496 100644 --- a/polars/prelude/struct.RollingOptionsImpl.html +++ b/polars/prelude/struct.RollingOptionsImpl.html @@ -13,7 +13,7 @@

§weights: Option<Vec<f64, Global>>

An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.

§center: bool

Set the labels at the center of the window.

-
§by: Option<&'a [i64]>§tu: Option<TimeUnit>§tz: Option<&'a String>§closed_window: Option<ClosedWindow>§fn_params: Option<Arc<dyn Any + Send + Sync>>

Trait Implementations§

source§

impl<'a> Clone for RollingOptionsImpl<'a>

source§

fn clone(&self) -> RollingOptionsImpl<'a>

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 Default for RollingOptionsImpl<'static>

source§

fn default() -> RollingOptionsImpl<'static>

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> RollingOptionsImpl<'static>

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptionsImpl<'a>) -> RollingOptionsFixedWindow

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for RollingOptionsImpl<'a>

§

impl<'a> Send for RollingOptionsImpl<'a>

§

impl<'a> Sync for RollingOptionsImpl<'a>

§

impl<'a> Unpin for RollingOptionsImpl<'a>

§

impl<'a> !UnwindSafe for RollingOptionsImpl<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere +

§by: Option<&'a [i64]>§tu: Option<TimeUnit>§tz: Option<&'a String>§closed_window: Option<ClosedWindow>§fn_params: Option<Arc<dyn Any + Send + Sync>>

Trait Implementations§

source§

impl<'a> Clone for RollingOptionsImpl<'a>

source§

fn clone(&self) -> RollingOptionsImpl<'a>

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 Default for RollingOptionsImpl<'static>

source§

fn default() -> RollingOptionsImpl<'static>

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> RollingOptionsImpl<'static>

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptionsImpl<'a>) -> RollingOptionsFixedWindow

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for RollingOptionsImpl<'a>

§

impl<'a> Send for RollingOptionsImpl<'a>

§

impl<'a> Sync for RollingOptionsImpl<'a>

§

impl<'a> Unpin for RollingOptionsImpl<'a>

§

impl<'a> !UnwindSafe for RollingOptionsImpl<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars/prelude/struct.Series.html b/polars/prelude/struct.Series.html index 9bc5b87e0e36..c7ccc721f18a 100644 --- a/polars/prelude/struct.Series.html +++ b/polars/prelude/struct.Series.html @@ -321,8 +321,8 @@
Implementation

source

pub fn get_data_ptr(&self) -> usize

Get a pointer to the underlying data of this Series. Can be useful for fast comparisons.

Methods from Deref<Target = dyn SeriesTrait>§

source

pub fn unpack<N>(&self) -> Result<&ChunkedArray<N>, PolarsError>where - N: 'static + PolarsDataType,

Trait Implementations§

source§

impl Add<&Series> for &Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Series) -> <&Series as Add<&Series>>::Output

Performs the + operation. Read more
source§

impl Add<Series> for Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Series) -> <Series as Add<Series>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <&Series as Add<T>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for Serieswhere + N: 'static + PolarsDataType,

Trait Implementations§

source§

impl Add<&Series> for &Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Series) -> <&Series as Add<&Series>>::Output

Performs the + operation. Read more
source§

impl Add<Series> for Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Series) -> <Series as Add<Series>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <&Series as Add<T>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for Serieswhere T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <Series as Add<T>>::Output

Performs the + operation. Read more
source§

impl ArgAgg for Series

source§

fn arg_min(&self) -> Option<usize>

Get the index of the minimal value
source§

fn arg_max(&self) -> Option<usize>

Get the index of the maximal value
source§

impl AsMut<Series> for UnstableSeries<'_>

source§

fn as_mut(&mut self) -> &mut Series

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<Series> for UnstableSeries<'_>

We don’t implement Deref so that the caller is aware of converting to Series

source§

fn as_ref(&self) -> &Series

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsSeries for Series

source§

impl<'a> ChunkApply<'a, Series, Series> for ChunkedArray<ListType>

source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn(Series) -> Series + Copy,

Apply a closure F elementwise.

@@ -355,138 +355,138 @@
Implementation
source§

fn gt_eq(&self, rhs: &Series) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a boolean mask by checking if self >= rhs.

source§

fn lt(&self, rhs: &Series) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a boolean mask by checking if self < rhs.

source§

fn lt_eq(&self, rhs: &Series) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a boolean mask by checking if self <= rhs.

-
§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

impl ChunkCompare<&str> for Series

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl<Rhs> ChunkCompare<Rhs> for Serieswhere - Rhs: NumericNative,

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

impl ChunkCompare<&str> for Series

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl<Rhs> ChunkCompare<Rhs> for Serieswhere + Rhs: NumericNative,

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn full( name: &str, value: &Series, length: usize -) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. Returns None if the array is empty or only contains null values.
source§

impl<T> ChunkQuantile<Series> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( + T: PolarsObject,

Available on crate feature object only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where +Returns None if the array is empty or only contains null values.

source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where T: PolarsObject,

Available on crate feature object only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl Clone for Series

source§

fn clone(&self) -> Series

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 Series

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Series

source§

fn default() -> Series

Returns the “default value” for a type. Read more
source§

impl Deref for Series

§

type Target = dyn SeriesTrait

The resulting type after dereferencing.
source§

fn deref(&self) -> &<Series as Deref>::Target

Dereferences the value.
source§

impl Display for Series

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Div<&Series> for &Series

source§

fn div(self, rhs: &Series) -> <&Series as Div<&Series>>::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s / &s;
-
§

type Output = Series

The resulting type after applying the / operator.
source§

impl Div<Series> for Series

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: Series) -> <Series as Div<Series>>::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for &Serieswhere +

§

type Output = Series

The resulting type after applying the / operator.
source§

impl Div<Series> for Series

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: Series) -> <Series as Div<Series>>::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for &Serieswhere T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <&Series as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <Series as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T> From<ChunkedArray<T>> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <Series as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T> From<ChunkedArray<T>> for Serieswhere T: PolarsDataType, - ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl<'a> FromIterator<&'a bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a bool>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a f32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a f64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i8>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a str> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a str>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<bool>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<f32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<f64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T>(iter: T) -> DataFramewhere + ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl<'a> FromIterator<&'a bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a bool>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a f32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a f64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i8>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a str> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a str>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<bool>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<f32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<f64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T>(iter: T) -> DataFramewhere T: IntoIterator<Item = Series>,

Panics

Panics if Series have different lengths.

-
source§

impl FromIterator<String> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = String>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = f32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = f64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = u16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere +

source§

impl FromIterator<String> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = String>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = f32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = f64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = u16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere I: IntoIterator<Item = u32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = u64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = u64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere I: IntoIterator<Item = u8>,

Creates a value from an iterator. Read more
source§

impl IntoSeries for Series

source§

impl IntoSeriesOps for Series

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl Literal for Series

source§

fn lit(self) -> Expr

Literal expression.
source§

impl LogSeries for Series

source§

fn log(&self, base: f64) -> Series

Compute the logarithm to a given base
source§

fn log1p(&self) -> Series

Compute the natural logarithm of all elements plus one in the input array
source§

fn exp(&self) -> Series

Calculate the exponential of all elements in the input array.
source§

fn entropy(&self, base: f64, normalize: bool) -> Option<f64>

Compute the entropy as -sum(pk * log(pk). -where pk are discrete probabilities.
source§

impl Mul<&Series> for &Series

source§

fn mul(self, rhs: &Series) -> <&Series as Mul<&Series>>::Output

+where pk are discrete probabilities.
source§

impl Mul<&Series> for &Series

source§

fn mul(self, rhs: &Series) -> <&Series as Mul<&Series>>::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s * &s;
-
§

type Output = Series

The resulting type after applying the * operator.
source§

impl Mul<Series> for Series

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Series) -> <Series as Mul<Series>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <&Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl NamedFrom<&Series, str> for Series

source§

fn new(name: &str, s: &Series) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for Series

source§

fn new(name: &str, range: Range<u32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for Series

source§

fn new(name: &str, range: Range<u64>) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for Serieswhere - T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for Serieswhere - T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [AnyValue<'a>]> for Serieswhere - T: AsRef<[AnyValue<'a>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for Serieswhere - T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for Serieswhere - T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Duration]> for Serieswhere - T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Serieswhere - T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Serieswhere - T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Serieswhere - T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for Serieswhere - T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for Serieswhere - T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for Serieswhere - T: AsRef<[Option<Cow<'a, [u8]>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for Serieswhere - T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Serieswhere - T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Serieswhere - T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Serieswhere - T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Serieswhere - T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Series>]> for Serieswhere - T: AsRef<[Option<Series>]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for Serieswhere - T: AsRef<[Option<String>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Vec<u8, Global>>]> for Serieswhere - T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for Serieswhere - T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for Serieswhere - T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for Serieswhere - T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for Serieswhere - T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for Serieswhere - T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for Serieswhere - T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for Serieswhere - T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for Serieswhere - T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for Serieswhere - T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for Serieswhere - T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for Serieswhere - T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for Serieswhere - T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for Serieswhere - T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for Serieswhere - T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for Serieswhere - T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for Serieswhere - T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for Serieswhere - T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for Serieswhere - T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for Serieswhere - T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for Serieswhere - T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for Serieswhere - T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for Serieswhere - T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for Serieswhere - T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for Serieswhere - T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, ListType> for Serieswhere - T: AsRef<[Series]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, T> for Serieswhere +

§

type Output = Series

The resulting type after applying the * operator.
source§

impl Mul<Series> for Series

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Series) -> <Series as Mul<Series>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <&Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl NamedFrom<&Series, str> for Series

source§

fn new(name: &str, s: &Series) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for Series

source§

fn new(name: &str, range: Range<u32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for Series

source§

fn new(name: &str, range: Range<u64>) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for Serieswhere + T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for Serieswhere + T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [AnyValue<'a>]> for Serieswhere + T: AsRef<[AnyValue<'a>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for Serieswhere + T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for Serieswhere + T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Duration]> for Serieswhere + T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Serieswhere + T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Serieswhere + T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Serieswhere + T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for Serieswhere + T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for Serieswhere + T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for Serieswhere + T: AsRef<[Option<Cow<'a, [u8]>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for Serieswhere + T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Serieswhere + T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Serieswhere + T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Serieswhere + T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Serieswhere + T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Series>]> for Serieswhere + T: AsRef<[Option<Series>]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for Serieswhere + T: AsRef<[Option<String>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Vec<u8, Global>>]> for Serieswhere + T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for Serieswhere + T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for Serieswhere + T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for Serieswhere + T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for Serieswhere + T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for Serieswhere + T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for Serieswhere + T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for Serieswhere + T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for Serieswhere + T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for Serieswhere + T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for Serieswhere + T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for Serieswhere + T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for Serieswhere + T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for Serieswhere + T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for Serieswhere + T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for Serieswhere + T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for Serieswhere + T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for Serieswhere + T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for Serieswhere + T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for Serieswhere + T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for Serieswhere + T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for Serieswhere + T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for Serieswhere + T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for Serieswhere + T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for Serieswhere + T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, ListType> for Serieswhere + T: AsRef<[Series]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, T> for Serieswhere T: IntoSeries,

For any ChunkedArray and Series

-
source§

fn new(name: &str, t: T) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i8, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u8, Global>) -> Series

Initialize by name and values.
source§

impl NumOpsDispatchChecked for Series

source§

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
source§

fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where +

source§

fn new(name: &str, t: T) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i8, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u8, Global>) -> Series

Initialize by name and values.
source§

impl NumOpsDispatchChecked for Series

source§

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
source§

fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where T: ToPrimitive,

source§

impl PartialEq<Series> for Series

source§

fn eq(&self, other: &Series) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Rem<&Series> for &Series

source§

fn rem(self, rhs: &Series) -> <&Series as Rem<&Series>>::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s / &s;
§

type Output = Series

The resulting type after applying the % operator.
source§

impl<T> Rem<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <&Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl<T> Rem<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl SeriesMethods for Series

source§

fn value_counts( + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <&Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl<T> Rem<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl SeriesMethods for Series

source§

fn value_counts( &self, multithreaded: bool, sorted: bool @@ -519,15 +519,15 @@

Implementation
) -> Result<Series, PolarsError>
Available on crate feature rolling_window only.
Apply a rolling median to a Series.
source§

fn rolling_min( &self, options: RollingOptionsImpl<'_> -) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.
Apply a rolling min to a Series.
source§

impl SeriesSealed for Series

source§

impl Sub<&Series> for &Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Series) -> <&Series as Sub<&Series>>::Output

Performs the - operation. Read more
source§

impl Sub<Series> for Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Series) -> <Series as Sub<Series>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <&Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl ToDummies for Series

source§

fn to_dummies( +) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.
Apply a rolling min to a Series.
source§

impl SeriesSealed for Series

source§

fn as_series(&self) -> &Series

source§

impl Sub<&Series> for &Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Series) -> <&Series as Sub<&Series>>::Output

Performs the - operation. Read more
source§

impl Sub<Series> for Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Series) -> <Series as Sub<Series>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <&Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl ToDummies for Series

source§

fn to_dummies( &self, separator: Option<&str>, drop_first: bool -) -> Result<DataFrame, PolarsError>

source§

impl TryFrom<(&str, Box<dyn Array, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( +) -> Result<DataFrame, PolarsError>

source§

impl TryFrom<(&str, Box<dyn Array, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( name_arr: (&str, Box<dyn Array, Global>) -) -> Result<Series, PolarsError>

Performs the conversion.
source§

impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( +) -> Result<Series, PolarsError>

Performs the conversion.
source§

impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( name_arr: (&str, Vec<Box<dyn Array, Global>, Global>) ) -> Result<Series, PolarsError>

Performs the conversion.
source§

impl RollingSeries for Series

Auto Trait Implementations§

§

impl !RefUnwindSafe for Series

§

impl Send for Series

§

impl Sync for Series

§

impl Unpin for Series

§

impl !UnwindSafe for Series

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/prelude/struct.SpecialEq.html b/polars/prelude/struct.SpecialEq.html index f1bade2211ed..1e3f6f793dfd 100644 --- a/polars/prelude/struct.SpecialEq.html +++ b/polars/prelude/struct.SpecialEq.html @@ -5,11 +5,11 @@ F: 'static + Fn(&[Field]) -> Field + Send + Sync,

source

pub fn map_dtype<F>(f: F) -> SpecialEq<Arc<dyn FunctionOutputField>>where F: 'static + Fn(&DataType) -> DataType + Send + Sync,

source

pub fn float_type() -> SpecialEq<Arc<dyn FunctionOutputField>>

source

pub fn super_type() -> SpecialEq<Arc<dyn FunctionOutputField>>

source

pub fn map_dtypes<F>(f: F) -> SpecialEq<Arc<dyn FunctionOutputField>>where F: 'static + Fn(&[&DataType]) -> DataType + Send + Sync,

Trait Implementations§

source§

impl<T> Clone for SpecialEq<T>where - T: Clone,

source§

fn clone(&self) -> SpecialEq<T>

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<T> Debug for SpecialEq<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for SpecialEq<Arc<dyn BinaryUdfOutputField>>

source§

fn default() -> SpecialEq<Arc<dyn BinaryUdfOutputField>>

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn FunctionOutputField>>

source§

fn default() -> SpecialEq<Arc<dyn FunctionOutputField>>

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn SeriesBinaryUdf>>

source§

fn default() -> SpecialEq<Arc<dyn SeriesBinaryUdf>>

Returns the “default value” for a type. Read more
source§

impl<T> Deref for SpecialEq<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &<SpecialEq<T> as Deref>::Target

Dereferences the value.
source§

impl From<BinaryFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BinaryFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<CategoricalFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: CategoricalFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<RangeFunction> for SpecialEq<Arc<dyn SeriesUdf>>

Available on crate feature range only.
source§

fn from(func: RangeFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<StringFunction> for SpecialEq<Arc<dyn SeriesUdf>>

Available on crate feature strings only.
source§

fn from(func: StringFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<TemporalFunction> for SpecialEq<Arc<dyn SeriesUdf>>

Available on crate feature temporal only.
source§

fn from(func: TemporalFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl<T> PartialEq<SpecialEq<Arc<T>>> for SpecialEq<Arc<T>>where - T: ?Sized,

source§

fn eq(&self, other: &SpecialEq<Arc<T>>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<SpecialEq<Series>> for SpecialEq<Series>

source§

fn eq(&self, other: &SpecialEq<Series>) -> bool

This method tests for self and other values to be equal, and is used + T: Clone,
source§

fn clone(&self) -> SpecialEq<T>

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<T> Debug for SpecialEq<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for SpecialEq<Arc<dyn BinaryUdfOutputField>>

source§

fn default() -> SpecialEq<Arc<dyn BinaryUdfOutputField>>

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn FunctionOutputField>>

source§

fn default() -> SpecialEq<Arc<dyn FunctionOutputField>>

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn SeriesBinaryUdf>>

source§

fn default() -> SpecialEq<Arc<dyn SeriesBinaryUdf>>

Returns the “default value” for a type. Read more
source§

impl<T> Deref for SpecialEq<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &<SpecialEq<T> as Deref>::Target

Dereferences the value.
source§

impl From<BinaryFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BinaryFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<CategoricalFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: CategoricalFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<RangeFunction> for SpecialEq<Arc<dyn SeriesUdf>>

Available on crate feature range only.
source§

fn from(func: RangeFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<StringFunction> for SpecialEq<Arc<dyn SeriesUdf>>

Available on crate feature strings only.
source§

fn from(func: StringFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<TemporalFunction> for SpecialEq<Arc<dyn SeriesUdf>>

Available on crate feature temporal only.
source§

fn from(func: TemporalFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl<T> PartialEq<SpecialEq<Arc<T>>> for SpecialEq<Arc<T>>where + T: ?Sized,

source§

fn eq(&self, other: &SpecialEq<Arc<T>>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<SpecialEq<Series>> for SpecialEq<Series>

source§

fn eq(&self, other: &SpecialEq<Series>) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for SpecialEq<T>where T: RefUnwindSafe,

§

impl<T> Send for SpecialEq<T>where T: Send,

§

impl<T> Sync for SpecialEq<T>where diff --git a/polars/prelude/trait.FxHash.html b/polars/prelude/trait.FxHash.html index 47ab67015e2a..c5253b093479 100644 --- a/polars/prelude/trait.FxHash.html +++ b/polars/prelude/trait.FxHash.html @@ -5,4 +5,4 @@ // Provided method fn get_k(random_state: RandomState) -> u64 { ... } }
Expand description

Ensure that the same hash is used as with VecHash.

-

Required Methods§

source

fn _fx_hash(self, k: u64) -> u64

Provided Methods§

source

fn get_k(random_state: RandomState) -> u64

Implementations on Foreign Types§

source§

impl FxHash for u16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u8

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i8

source§

fn _fx_hash(self, k: u64) -> u64

Implementors§

\ No newline at end of file +

Required Methods§

source

fn _fx_hash(self, k: u64) -> u64

Provided Methods§

source

fn get_k(random_state: RandomState) -> u64

Implementations on Foreign Types§

source§

impl FxHash for u64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u8

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i8

source§

fn _fx_hash(self, k: u64) -> u64

Implementors§

\ No newline at end of file diff --git a/polars/prelude/trait.IndexOfSchema.html b/polars/prelude/trait.IndexOfSchema.html index 16acb319622f..677d2dc8ff65 100644 --- a/polars/prelude/trait.IndexOfSchema.html +++ b/polars/prelude/trait.IndexOfSchema.html @@ -8,4 +8,4 @@ }
Expand description

This trait exists to be unify the API of polars Schema and arrows Schema

Required Methods§

source

fn index_of(&self, name: &str) -> Option<usize>

Get the index of a column by name.

source

fn get_names(&self) -> Vec<&str, Global>

Get a vector of all column names.

-

Provided Methods§

source

fn try_index_of(&self, name: &str) -> Result<usize, PolarsError>

Implementors§

source§

impl IndexOfSchema for polars::chunked_array::object::ArrowSchema

source§

impl IndexOfSchema for polars::chunked_array::object::Schema

\ No newline at end of file +

Provided Methods§

source

fn try_index_of(&self, name: &str) -> Result<usize, PolarsError>

Implementors§

source§

impl IndexOfSchema for polars::chunked_array::object::ArrowSchema

source§

impl IndexOfSchema for polars::chunked_array::object::Schema

\ No newline at end of file diff --git a/polars/prelude/trait.InitHashMaps.html b/polars/prelude/trait.InitHashMaps.html index 6497c12df75e..30b38e77356b 100644 --- a/polars/prelude/trait.InitHashMaps.html +++ b/polars/prelude/trait.InitHashMaps.html @@ -4,12 +4,12 @@ // Required methods fn new() -> Self::HashMap; fn with_capacity(capacity: usize) -> Self::HashMap; -}

Required Associated Types§

source

type HashMap

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

§

type HashMap = HashSet<K, RandomState, Global>

source§

fn new() -> <HashSet<K, RandomState, Global> as InitHashMaps>::HashMap

source§

fn with_capacity(capacity: usize) -> HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

§

type HashMap = HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

fn new( - -) -> <HashMap<K, V, BuildHasherDefault<IdHasher>, Global> as InitHashMaps>::HashMap

source§

fn with_capacity( +}

Required Associated Types§

Required Methods§

source

fn new() -> Self::HashMap

source

fn with_capacity(capacity: usize) -> Self::HashMap

Implementations on Foreign Types§

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

source§

impl<K> InitHashMaps for HashSet<K, RandomState, Global>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K> InitHashMaps for IndexSet<K, RandomState>

source§

impl<K, V> InitHashMaps for IndexMap<K, V, RandomState>

source§

impl<K, V> InitHashMaps for HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

source§

impl<K, V> InitHashMaps for HashMap<K, V, RandomState, Global>

Implementors§

\ No newline at end of file +) -> HashMap<K, V, BuildHasherDefault<IdHasher>, Global>

Implementors§

\ No newline at end of file diff --git a/polars/prelude/trait.IsFloat.html b/polars/prelude/trait.IsFloat.html index a998eed0e349..9e06ecf8ce23 100644 --- a/polars/prelude/trait.IsFloat.html +++ b/polars/prelude/trait.IsFloat.html @@ -6,5 +6,5 @@ }
Expand description

Safety

unsafe code downstream relies on the correct is_float call

Provided Methods§

source

fn is_float() -> bool

source

fn is_nan(&self) -> boolwhere - Self: Sized,

Implementations on Foreign Types§

source§

impl IsFloat for i8

source§

impl IsFloat for f64

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for bool

source§

impl IsFloat for i16

source§

impl IsFloat for &[u8]

source§

impl IsFloat for f32

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for u32

source§

impl IsFloat for i128

source§

impl IsFloat for u8

source§

impl IsFloat for u64

source§

impl<T> IsFloat for Option<T>where - T: IsFloat,

source§

impl IsFloat for &str

source§

impl IsFloat for i32

source§

impl IsFloat for i64

source§

impl IsFloat for u16

Implementors§

\ No newline at end of file + Self: Sized,

Implementations on Foreign Types§

source§

impl IsFloat for i8

source§

impl IsFloat for u16

source§

impl IsFloat for i16

source§

impl<T> IsFloat for Option<T>where + T: IsFloat,

source§

impl IsFloat for u32

source§

impl IsFloat for u8

source§

impl IsFloat for f32

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for &[u8]

source§

impl IsFloat for &str

source§

impl IsFloat for i64

source§

impl IsFloat for u64

source§

impl IsFloat for i128

source§

impl IsFloat for bool

source§

impl IsFloat for i32

source§

impl IsFloat for f64

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

Implementors§

\ No newline at end of file diff --git a/polars/prelude/trait.Literal.html b/polars/prelude/trait.Literal.html index c77bf9de29a8..261d91c335a3 100644 --- a/polars/prelude/trait.Literal.html +++ b/polars/prelude/trait.Literal.html @@ -2,4 +2,4 @@ // Required method fn lit(self) -> Expr; }

Required Methods§

source

fn lit(self) -> Expr

Literal expression.

-

Implementations on Foreign Types§

source§

impl Literal for u32

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a str

source§

fn lit(self) -> Expr

source§

impl Literal for i64

source§

fn lit(self) -> Expr

source§

impl Literal for Vec<u8, Global>

source§

fn lit(self) -> Expr

source§

impl Literal for f64

source§

fn lit(self) -> Expr

source§

impl Literal for bool

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a [u8]

source§

fn lit(self) -> Expr

source§

impl Literal for u8

source§

fn lit(self) -> Expr

source§

impl Literal for u64

source§

fn lit(self) -> Expr

source§

impl Literal for i32

source§

fn lit(self) -> Expr

source§

impl Literal for i16

source§

fn lit(self) -> Expr

source§

impl Literal for u16

source§

fn lit(self) -> Expr

source§

impl Literal for i8

source§

fn lit(self) -> Expr

source§

impl Literal for f32

source§

fn lit(self) -> Expr

source§

impl Literal for String

source§

fn lit(self) -> Expr

Implementors§

source§

impl Literal for LiteralValue

source§

impl Literal for Duration

Available on crate features temporal and dtype-duration only.
source§

impl Literal for NaiveDate

Available on crate features temporal and dtype-datetime only.
source§

impl Literal for NaiveDateTime

Available on crate features temporal and dtype-datetime only.
source§

impl Literal for Series

source§

impl Literal for Null

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl<'a> Literal for &'a str

source§

fn lit(self) -> Expr

source§

impl Literal for i16

source§

fn lit(self) -> Expr

source§

impl Literal for u16

source§

fn lit(self) -> Expr

source§

impl Literal for i8

source§

fn lit(self) -> Expr

source§

impl Literal for bool

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a [u8]

source§

fn lit(self) -> Expr

source§

impl Literal for f64

source§

fn lit(self) -> Expr

source§

impl Literal for u32

source§

fn lit(self) -> Expr

source§

impl Literal for i32

source§

fn lit(self) -> Expr

source§

impl Literal for String

source§

fn lit(self) -> Expr

source§

impl Literal for f32

source§

fn lit(self) -> Expr

source§

impl Literal for u8

source§

fn lit(self) -> Expr

source§

impl Literal for i64

source§

fn lit(self) -> Expr

source§

impl Literal for Vec<u8, Global>

source§

fn lit(self) -> Expr

source§

impl Literal for u64

source§

fn lit(self) -> Expr

Implementors§

source§

impl Literal for LiteralValue

source§

impl Literal for Duration

Available on crate features temporal and dtype-duration only.
source§

impl Literal for NaiveDate

Available on crate features temporal and dtype-datetime only.
source§

impl Literal for NaiveDateTime

Available on crate features temporal and dtype-datetime only.
source§

impl Literal for Series

source§

impl Literal for Null

\ No newline at end of file diff --git a/polars/prelude/trait.NumericNative.html b/polars/prelude/trait.NumericNative.html index 35d0fa42e530..5c915fb46521 100644 --- a/polars/prelude/trait.NumericNative.html +++ b/polars/prelude/trait.NumericNative.html @@ -1,3 +1,3 @@ NumericNative in polars::prelude - Rust
pub trait NumericNative: PartialOrd<Self> + NativeType + Num<Output = Self, Output = Self, Output = Self, Output = Self, Output = Self> + NumCast + Zero + Simd + Simd8 + Sum<Self> + Add<Self> + Sub<Self> + Mul<Self> + Div<Self> + Rem<Self> + AddAssign<Self> + SubAssign<Self> + Bounded + FromPrimitive + IsFloat + ArrayArithmetics {
     type POLARSTYPE: PolarsNumericType;
-}

Required Associated Types§

Implementations on Foreign Types§

source§

impl NumericNative for i8

source§

impl NumericNative for f64

source§

impl NumericNative for i16

source§

impl NumericNative for u64

source§

impl NumericNative for i64

source§

impl NumericNative for u32

source§

impl NumericNative for f32

source§

impl NumericNative for i32

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.
source§

impl NumericNative for u16

source§

impl NumericNative for u8

Implementors§

\ No newline at end of file +}

Required Associated Types§

source

type POLARSTYPE: PolarsNumericType

Implementations on Foreign Types§

source§

impl NumericNative for u8

§

type POLARSTYPE = UInt8Type

source§

impl NumericNative for u64

§

type POLARSTYPE = UInt64Type

source§

impl NumericNative for i32

§

type POLARSTYPE = Int32Type

source§

impl NumericNative for i16

§

type POLARSTYPE = Int16Type

source§

impl NumericNative for f32

§

type POLARSTYPE = Float32Type

source§

impl NumericNative for i64

§

type POLARSTYPE = Int64Type

source§

impl NumericNative for u16

§

type POLARSTYPE = UInt16Type

source§

impl NumericNative for i8

§

type POLARSTYPE = Int8Type

source§

impl NumericNative for u32

§

type POLARSTYPE = UInt32Type

source§

impl NumericNative for f64

§

type POLARSTYPE = Float64Type

source§

impl NumericNative for i128

Available on crate feature dtype-decimal only.
§

type POLARSTYPE = Int128Type

Implementors§

\ No newline at end of file diff --git a/polars/prelude/trait.Range.html b/polars/prelude/trait.Range.html index a76f61c3f4b9..93b4a19ccc87 100644 --- a/polars/prelude/trait.Range.html +++ b/polars/prelude/trait.Range.html @@ -1,4 +1,4 @@ Range in polars::prelude - Rust

Trait polars::prelude::Range

source ·
pub trait Range<T> {
     // Required method
     fn into_range(self, high: T) -> Expr;
-}

Required Methods§

source

fn into_range(self, high: T) -> Expr

Implementations on Foreign Types§

source§

impl Range<i64> for i64

source§

fn into_range(self, high: i64) -> Expr

source§

impl Range<i32> for i32

source§

fn into_range(self, high: i32) -> Expr

source§

impl Range<u32> for u32

source§

fn into_range(self, high: u32) -> Expr

Implementors§

\ No newline at end of file +}

Required Methods§

source

fn into_range(self, high: T) -> Expr

Implementations on Foreign Types§

source§

impl Range<i32> for i32

source§

fn into_range(self, high: i32) -> Expr

source§

impl Range<u32> for u32

source§

fn into_range(self, high: u32) -> Expr

source§

impl Range<i64> for i64

source§

fn into_range(self, high: i64) -> Expr

Implementors§

\ No newline at end of file diff --git a/polars/prelude/trait.SeriesMethods.html b/polars/prelude/trait.SeriesMethods.html index b312e9790730..a2d792a301a7 100644 --- a/polars/prelude/trait.SeriesMethods.html +++ b/polars/prelude/trait.SeriesMethods.html @@ -12,4 +12,4 @@ sorted: bool ) -> Result<DataFrame, PolarsError>

Create a DataFrame with the unique values of this Series and a column "counts" with dtype IdxType

-
source

fn is_sorted(&self, options: SortOptions) -> Result<bool, PolarsError>

Implementors§

source§

impl SeriesMethods for Series

\ No newline at end of file +
source

fn is_sorted(&self, options: SortOptions) -> Result<bool, PolarsError>

Implementors§

source§

impl SeriesMethods for Series

\ No newline at end of file diff --git a/polars/prelude/trait.SeriesOpsTime.html b/polars/prelude/trait.SeriesOpsTime.html index e3c6402be39c..26c84a920ba2 100644 --- a/polars/prelude/trait.SeriesOpsTime.html +++ b/polars/prelude/trait.SeriesOpsTime.html @@ -68,4 +68,4 @@ &self, _options: RollingOptionsImpl<'_> ) -> Result<Series, PolarsError>
Available on crate feature rolling_window only.

Apply a rolling std_dev to a Series.

-

Implementations on Foreign Types§

source§

impl SeriesOpsTime for Wrap<Logical<DateType, Int32Type>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<Logical<DurationType, Int64Type>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<ChunkedArray<BooleanType>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<Logical<TimeType, Int64Type>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<ChunkedArray<ListType>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<ChunkedArray<Utf8Type>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<Logical<DatetimeType, Int64Type>>

source§

fn ops_time_dtype(&self) -> &DataType

Implementors§

source§

impl SeriesOpsTime for Series

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl SeriesOpsTime for Wrap<Logical<DurationType, Int64Type>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<Logical<TimeType, Int64Type>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<Logical<DatetimeType, Int64Type>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<ChunkedArray<BooleanType>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<ChunkedArray<Utf8Type>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<ChunkedArray<ListType>>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<Logical<DateType, Int32Type>>

source§

fn ops_time_dtype(&self) -> &DataType

Implementors§

source§

impl SeriesOpsTime for Series

\ No newline at end of file diff --git a/polars/prelude/trait.SeriesTrait.html b/polars/prelude/trait.SeriesTrait.html index 0864101fc7b3..816269844f1f 100644 --- a/polars/prelude/trait.SeriesTrait.html +++ b/polars/prelude/trait.SeriesTrait.html @@ -257,4 +257,4 @@
Arguments
source

fn tile(&self, _n: usize) -> Series

Implementations§

source§

impl<'a> dyn SeriesTrait + 'a

source

pub fn unpack<N>(&self) -> Result<&ChunkedArray<N>, PolarsError>where N: 'static + PolarsDataType,

Trait Implementations§

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere T: 'static + PolarsDataType,

source§

fn as_mut(&mut self) -> &mut ChunkedArray<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere - T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.

Implementors§

\ No newline at end of file + T: 'static + PolarsDataType,
source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.

Implementors§

\ No newline at end of file diff --git a/polars/prelude/trait.ValueSize.html b/polars/prelude/trait.ValueSize.html index 4039ee374806..42ea66d609e5 100644 --- a/polars/prelude/trait.ValueSize.html +++ b/polars/prelude/trait.ValueSize.html @@ -3,4 +3,4 @@ fn get_values_size(&self) -> usize; }

Required Methods§

source

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy

-

Implementations on Foreign Types§

source§

impl ValueSize for Box<dyn Array, Global>

source§

fn get_values_size(&self) -> usize

Implementors§

source§

impl ValueSize for ChunkedArray<BinaryType>

source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ValueSize for ChunkedArray<ListType>

source§

impl ValueSize for ChunkedArray<Utf8Type>

source§

impl ValueSize for BinaryArray<i64>

source§

impl ValueSize for FixedSizeListArray

source§

impl ValueSize for ListArray<i64>

source§

impl ValueSize for Utf8Array<i64>

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl ValueSize for Box<dyn Array, Global>

source§

fn get_values_size(&self) -> usize

Implementors§

source§

impl ValueSize for ChunkedArray<BinaryType>

source§

impl ValueSize for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ValueSize for ChunkedArray<ListType>

source§

impl ValueSize for ChunkedArray<Utf8Type>

source§

impl ValueSize for BinaryArray<i64>

source§

impl ValueSize for FixedSizeListArray

source§

impl ValueSize for ListArray<i64>

source§

impl ValueSize for Utf8Array<i64>

\ No newline at end of file diff --git a/polars/series/struct.Series.html b/polars/series/struct.Series.html index 9e24ac1fa52b..7c2bc8bf390d 100644 --- a/polars/series/struct.Series.html +++ b/polars/series/struct.Series.html @@ -321,8 +321,8 @@
Implementation
source

pub fn get_data_ptr(&self) -> usize

Get a pointer to the underlying data of this Series. Can be useful for fast comparisons.

Methods from Deref<Target = dyn SeriesTrait>§

source

pub fn unpack<N>(&self) -> Result<&ChunkedArray<N>, PolarsError>where - N: 'static + PolarsDataType,

Trait Implementations§

source§

impl Add<&Series> for &Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Series) -> <&Series as Add<&Series>>::Output

Performs the + operation. Read more
source§

impl Add<Series> for Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Series) -> <Series as Add<Series>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <&Series as Add<T>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for Serieswhere + N: 'static + PolarsDataType,

Trait Implementations§

source§

impl Add<&Series> for &Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Series) -> <&Series as Add<&Series>>::Output

Performs the + operation. Read more
source§

impl Add<Series> for Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Series) -> <Series as Add<Series>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <&Series as Add<T>>::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for Serieswhere T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> <Series as Add<T>>::Output

Performs the + operation. Read more
source§

impl ArgAgg for Series

source§

fn arg_min(&self) -> Option<usize>

Get the index of the minimal value
source§

fn arg_max(&self) -> Option<usize>

Get the index of the maximal value
source§

impl AsMut<Series> for UnstableSeries<'_>

source§

fn as_mut(&mut self) -> &mut Series

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<Series> for UnstableSeries<'_>

We don’t implement Deref so that the caller is aware of converting to Series

source§

fn as_ref(&self) -> &Series

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsSeries for Series

source§

impl<'a> ChunkApply<'a, Series, Series> for ChunkedArray<ListType>

source§

fn apply<F>(&'a self, f: F) -> ChunkedArray<ListType>where F: Fn(Series) -> Series + Copy,

Apply a closure F elementwise.

@@ -355,138 +355,138 @@
Implementation
source§

fn gt_eq(&self, rhs: &Series) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a boolean mask by checking if self >= rhs.

source§

fn lt(&self, rhs: &Series) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a boolean mask by checking if self < rhs.

source§

fn lt_eq(&self, rhs: &Series) -> Result<ChunkedArray<BooleanType>, PolarsError>

Create a boolean mask by checking if self <= rhs.

-
§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

impl ChunkCompare<&str> for Series

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl<Rhs> ChunkCompare<Rhs> for Serieswhere - Rhs: NumericNative,

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

impl ChunkCompare<&str> for Series

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> <Series as ChunkCompare<&str>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl<Rhs> ChunkCompare<Rhs> for Serieswhere + Rhs: NumericNative,

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> <Series as ChunkCompare<Rhs>>::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> Result<ChunkedArray<BooleanType>, PolarsError>

Less than or equal comparison
source§

impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn full( name: &str, value: &Series, length: usize -) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +) -> ChunkedArray<FixedSizeListType>

Create a ChunkedArray with a single value.
source§

impl ChunkFull<&Series> for ChunkedArray<ListType>

source§

fn full(name: &str, value: &Series, length: usize) -> ChunkedArray<ListType>

Create a ChunkedArray with a single value.
source§

impl ChunkQuantile<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( +Returns None if the array is empty or only contains null values.

source§

impl ChunkQuantile<Series> for ChunkedArray<ListType>

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. Returns None if the array is empty or only contains null values.
source§

impl<T> ChunkQuantile<Series> for ChunkedArray<ObjectType<T>>where - T: PolarsObject,

Available on crate feature object only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. -Returns None if the array is empty or only contains null values.
source§

fn quantile( + T: PolarsObject,

Available on crate feature object only.
source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> Result<Option<T>, PolarsError>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where +Returns None if the array is empty or only contains null values.

source§

impl ChunkVar<Series> for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl ChunkVar<Series> for ChunkedArray<ListType>

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl<T> ChunkVar<Series> for ChunkedArray<ObjectType<T>>where T: PolarsObject,

Available on crate feature object only.
source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl Clone for Series

source§

fn clone(&self) -> Series

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 Series

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Series

source§

fn default() -> Series

Returns the “default value” for a type. Read more
source§

impl Deref for Series

§

type Target = dyn SeriesTrait

The resulting type after dereferencing.
source§

fn deref(&self) -> &<Series as Deref>::Target

Dereferences the value.
source§

impl Display for Series

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Div<&Series> for &Series

source§

fn div(self, rhs: &Series) -> <&Series as Div<&Series>>::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s / &s;
-
§

type Output = Series

The resulting type after applying the / operator.
source§

impl Div<Series> for Series

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: Series) -> <Series as Div<Series>>::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for &Serieswhere +

§

type Output = Series

The resulting type after applying the / operator.
source§

impl Div<Series> for Series

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: Series) -> <Series as Div<Series>>::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for &Serieswhere T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <&Series as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <Series as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T> From<ChunkedArray<T>> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> <Series as Div<T>>::Output

Performs the / operation. Read more
source§

impl<T> From<ChunkedArray<T>> for Serieswhere T: PolarsDataType, - ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl<'a> FromIterator<&'a bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a bool>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a f32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a f64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a i8>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a str> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a str>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = &'a u8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<bool>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<f32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<f64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<i8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = Option<u8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T>(iter: T) -> DataFramewhere + ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DateType, Int32Type>> for Series

Available on crate feature dtype-date only.
source§

fn from(a: Logical<DateType, Int32Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DatetimeType, Int64Type>> for Series

Available on crate feature dtype-datetime only.
source§

fn from(a: Logical<DatetimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<DurationType, Int64Type>> for Series

Available on crate feature dtype-duration only.
source§

fn from(a: Logical<DurationType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl From<Logical<TimeType, Int64Type>> for Series

Available on crate feature dtype-time only.
source§

fn from(a: Logical<TimeType, Int64Type>) -> Series

Converts to this type from the input type.
source§

impl<'a> FromIterator<&'a bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a bool>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a f32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a f64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a i8>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a str> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a str>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u16>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u32>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u64>,

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = &'a u8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<bool>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<f32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<f64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<i8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u16>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u16>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u32>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u32>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u64>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u64>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u8>> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = Option<u8>>,

Creates a value from an iterator. Read more
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T>(iter: T) -> DataFramewhere T: IntoIterator<Item = Series>,

Panics

Panics if Series have different lengths.

-
source§

impl FromIterator<String> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = String>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = f32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = f64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = i8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = u16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere +

source§

impl FromIterator<String> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = String>,

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = f32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<f64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = f64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<i8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = i8>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u16> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = u16>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u32> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere I: IntoIterator<Item = u32>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u64> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere - I: IntoIterator<Item = u64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere + I: IntoIterator<Item = u64>,

Creates a value from an iterator. Read more
source§

impl FromIterator<u8> for Series

source§

fn from_iter<I>(iter: I) -> Serieswhere I: IntoIterator<Item = u8>,

Creates a value from an iterator. Read more
source§

impl IntoSeries for Series

source§

fn is_series() -> bool

source§

fn into_series(self) -> Series

source§

impl IntoSeriesOps for Series

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl Literal for Series

source§

fn lit(self) -> Expr

Literal expression.
source§

impl LogSeries for Series

source§

fn log(&self, base: f64) -> Series

Compute the logarithm to a given base
source§

fn log1p(&self) -> Series

Compute the natural logarithm of all elements plus one in the input array
source§

fn exp(&self) -> Series

Calculate the exponential of all elements in the input array.
source§

fn entropy(&self, base: f64, normalize: bool) -> Option<f64>

Compute the entropy as -sum(pk * log(pk). -where pk are discrete probabilities.
source§

impl Mul<&Series> for &Series

source§

fn mul(self, rhs: &Series) -> <&Series as Mul<&Series>>::Output

+where pk are discrete probabilities.
source§

impl Mul<&Series> for &Series

source§

fn mul(self, rhs: &Series) -> <&Series as Mul<&Series>>::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s * &s;
-
§

type Output = Series

The resulting type after applying the * operator.
source§

impl Mul<Series> for Series

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Series) -> <Series as Mul<Series>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <&Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl NamedFrom<&Series, str> for Series

source§

fn new(name: &str, s: &Series) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for Series

source§

fn new(name: &str, range: Range<u32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for Series

source§

fn new(name: &str, range: Range<u64>) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for Serieswhere - T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for Serieswhere - T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [AnyValue<'a>]> for Serieswhere - T: AsRef<[AnyValue<'a>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for Serieswhere - T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for Serieswhere - T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Duration]> for Serieswhere - T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Serieswhere - T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Serieswhere - T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Serieswhere - T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for Serieswhere - T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for Serieswhere - T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for Serieswhere - T: AsRef<[Option<Cow<'a, [u8]>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for Serieswhere - T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Serieswhere - T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Serieswhere - T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Serieswhere - T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Serieswhere - T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Series>]> for Serieswhere - T: AsRef<[Option<Series>]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for Serieswhere - T: AsRef<[Option<String>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Vec<u8, Global>>]> for Serieswhere - T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for Serieswhere - T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for Serieswhere - T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for Serieswhere - T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for Serieswhere - T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for Serieswhere - T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for Serieswhere - T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for Serieswhere - T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for Serieswhere - T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for Serieswhere - T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for Serieswhere - T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for Serieswhere - T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for Serieswhere - T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for Serieswhere - T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for Serieswhere - T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for Serieswhere - T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for Serieswhere - T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for Serieswhere - T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for Serieswhere - T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for Serieswhere - T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for Serieswhere - T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for Serieswhere - T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for Serieswhere - T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for Serieswhere - T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for Serieswhere - T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, ListType> for Serieswhere - T: AsRef<[Series]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, T> for Serieswhere +

§

type Output = Series

The resulting type after applying the * operator.
source§

impl Mul<Series> for Series

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Series) -> <Series as Mul<Series>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <&Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> <Series as Mul<T>>::Output

Performs the * operation. Read more
source§

impl NamedFrom<&Series, str> for Series

source§

fn new(name: &str, s: &Series) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for Series

source§

fn new(name: &str, range: Range<u32>) -> Series

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for Series

source§

fn new(name: &str, range: Range<u64>) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a [u8]]> for Serieswhere + T: AsRef<[&'a [u8]]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [&'a str]> for Serieswhere + T: AsRef<[&'a str]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [AnyValue<'a>]> for Serieswhere + T: AsRef<[AnyValue<'a>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, [u8]>]> for Serieswhere + T: AsRef<[Cow<'a, [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for Serieswhere + T: AsRef<[Cow<'a, str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Duration]> for Serieswhere + T: AsRef<[Duration]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDate]> for Serieswhere + T: AsRef<[NaiveDate]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveDateTime]> for Serieswhere + T: AsRef<[NaiveDateTime]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [NaiveTime]> for Serieswhere + T: AsRef<[NaiveTime]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a [u8]>]> for Serieswhere + T: AsRef<[Option<&'a [u8]>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<&'a str>]> for Serieswhere + T: AsRef<[Option<&'a str>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for Serieswhere + T: AsRef<[Option<Cow<'a, [u8]>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for Serieswhere + T: AsRef<[Option<Cow<'a, str>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Duration>]> for Serieswhere + T: AsRef<[Option<Duration>]>,

Available on crate feature dtype-duration only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDate>]> for Serieswhere + T: AsRef<[Option<NaiveDate>]>,

Available on crate feature dtype-date only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveDateTime>]> for Serieswhere + T: AsRef<[Option<NaiveDateTime>]>,

Available on crate feature dtype-datetime only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<NaiveTime>]> for Serieswhere + T: AsRef<[Option<NaiveTime>]>,

Available on crate feature dtype-time only.
source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Series>]> for Serieswhere + T: AsRef<[Option<Series>]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<String>]> for Serieswhere + T: AsRef<[Option<String>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<Vec<u8, Global>>]> for Serieswhere + T: AsRef<[Option<Vec<u8, Global>>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<bool>]> for Serieswhere + T: AsRef<[Option<bool>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f32>]> for Serieswhere + T: AsRef<[Option<f32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<f64>]> for Serieswhere + T: AsRef<[Option<f64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i16>]> for Serieswhere + T: AsRef<[Option<i16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i32>]> for Serieswhere + T: AsRef<[Option<i32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i64>]> for Serieswhere + T: AsRef<[Option<i64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<i8>]> for Serieswhere + T: AsRef<[Option<i8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u16>]> for Serieswhere + T: AsRef<[Option<u16>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u32>]> for Serieswhere + T: AsRef<[Option<u32>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u64>]> for Serieswhere + T: AsRef<[Option<u64>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Option<u8>]> for Serieswhere + T: AsRef<[Option<u8>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [String]> for Serieswhere + T: AsRef<[String]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [Vec<u8, Global>]> for Serieswhere + T: AsRef<[Vec<u8, Global>]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [bool]> for Serieswhere + T: AsRef<[bool]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f32]> for Serieswhere + T: AsRef<[f32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [f64]> for Serieswhere + T: AsRef<[f64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i16]> for Serieswhere + T: AsRef<[i16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i32]> for Serieswhere + T: AsRef<[i32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i64]> for Serieswhere + T: AsRef<[i64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [i8]> for Serieswhere + T: AsRef<[i8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u16]> for Serieswhere + T: AsRef<[u16]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u32]> for Serieswhere + T: AsRef<[u32]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u64]> for Serieswhere + T: AsRef<[u64]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, [u8]> for Serieswhere + T: AsRef<[u8]>,

source§

fn new(name: &str, v: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, ListType> for Serieswhere + T: AsRef<[Series]>,

source§

fn new(name: &str, s: T) -> Series

Initialize by name and values.
source§

impl<T> NamedFrom<T, T> for Serieswhere T: IntoSeries,

For any ChunkedArray and Series

-
source§

fn new(name: &str, t: T) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i8, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u8, Global>) -> Series

Initialize by name and values.
source§

impl NumOpsDispatchChecked for Series

source§

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
source§

fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where +

source§

fn new(name: &str, t: T) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i8, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u16, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u16, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u32, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u64, Global>) -> Series

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u8, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u8, Global>) -> Series

Initialize by name and values.
source§

impl NumOpsDispatchChecked for Series

source§

fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>

Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
source§

fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where T: ToPrimitive,

source§

impl PartialEq<Series> for Series

source§

fn eq(&self, other: &Series) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Rem<&Series> for &Series

source§

fn rem(self, rhs: &Series) -> <&Series as Rem<&Series>>::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s / &s;
§

type Output = Series

The resulting type after applying the % operator.
source§

impl<T> Rem<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <&Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl<T> Rem<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl SeriesMethods for Series

source§

fn value_counts( + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <&Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl<T> Rem<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> <Series as Rem<T>>::Output

Performs the % operation. Read more
source§

impl SeriesMethods for Series

source§

fn value_counts( &self, multithreaded: bool, sorted: bool @@ -519,15 +519,15 @@

Implementation
) -> Result<Series, PolarsError>
Available on crate feature rolling_window only.
Apply a rolling median to a Series.
source§

fn rolling_min( &self, options: RollingOptionsImpl<'_> -) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.
Apply a rolling min to a Series.
source§

impl SeriesSealed for Series

source§

impl Sub<&Series> for &Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Series) -> <&Series as Sub<&Series>>::Output

Performs the - operation. Read more
source§

impl Sub<Series> for Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Series) -> <Series as Sub<Series>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <&Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl ToDummies for Series

source§

fn to_dummies( +) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.
Apply a rolling min to a Series.
source§

impl SeriesSealed for Series

source§

fn as_series(&self) -> &Series

source§

impl Sub<&Series> for &Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Series) -> <&Series as Sub<&Series>>::Output

Performs the - operation. Read more
source§

impl Sub<Series> for Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Series) -> <Series as Sub<Series>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <&Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> <Series as Sub<T>>::Output

Performs the - operation. Read more
source§

impl ToDummies for Series

source§

fn to_dummies( &self, separator: Option<&str>, drop_first: bool -) -> Result<DataFrame, PolarsError>

source§

impl TryFrom<(&str, Box<dyn Array, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( +) -> Result<DataFrame, PolarsError>

source§

impl TryFrom<(&str, Box<dyn Array, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( name_arr: (&str, Box<dyn Array, Global>) -) -> Result<Series, PolarsError>

Performs the conversion.
source§

impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( +) -> Result<Series, PolarsError>

Performs the conversion.
source§

impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from( name_arr: (&str, Vec<Box<dyn Array, Global>, Global>) ) -> Result<Series, PolarsError>

Performs the conversion.
source§

impl RollingSeries for Series

Auto Trait Implementations§

§

impl !RefUnwindSafe for Series

§

impl Send for Series

§

impl Sync for Series

§

impl Unpin for Series

§

impl !UnwindSafe for Series

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars/series/trait.SeriesTrait.html b/polars/series/trait.SeriesTrait.html index 8fb67610719f..3458dc69cc3a 100644 --- a/polars/series/trait.SeriesTrait.html +++ b/polars/series/trait.SeriesTrait.html @@ -257,4 +257,4 @@
Arguments

source

fn tile(&self, _n: usize) -> Series

Implementations§

source§

impl<'a> dyn SeriesTrait + 'a

source

pub fn unpack<N>(&self) -> Result<&ChunkedArray<N>, PolarsError>where N: 'static + PolarsDataType,

Trait Implementations§

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere T: 'static + PolarsDataType,

source§

fn as_mut(&mut self) -> &mut ChunkedArray<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere - T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.

Implementors§

\ No newline at end of file + T: 'static + PolarsDataType,
source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.

Implementors§

\ No newline at end of file diff --git a/polars_arrow/array/default_arrays/trait.FromData.html b/polars_arrow/array/default_arrays/trait.FromData.html index 122fc63296af..2069cda60312 100644 --- a/polars_arrow/array/default_arrays/trait.FromData.html +++ b/polars_arrow/array/default_arrays/trait.FromData.html @@ -1,4 +1,4 @@ FromData in polars_arrow::array::default_arrays - Rust
pub trait FromData<T> {
     // Required method
     fn from_data_default(values: T, validity: Option<Bitmap>) -> Self;
-}

Required Methods§

source

fn from_data_default(values: T, validity: Option<Bitmap>) -> Self

Implementations on Foreign Types§

source§

impl<T: NativeType> FromData<Buffer<T>> for PrimitiveArray<T>

source§

fn from_data_default(values: Buffer<T>, validity: Option<Bitmap>) -> Self

source§

impl FromData<Bitmap> for BooleanArray

Implementors§

\ No newline at end of file +}

Required Methods§

source

fn from_data_default(values: T, validity: Option<Bitmap>) -> Self

Implementations on Foreign Types§

source§

impl FromData<Bitmap> for BooleanArray

source§

fn from_data_default(values: Bitmap, validity: Option<Bitmap>) -> BooleanArray

source§

impl<T: NativeType> FromData<Buffer<T>> for PrimitiveArray<T>

source§

fn from_data_default(values: Buffer<T>, validity: Option<Bitmap>) -> Self

Implementors§

\ No newline at end of file diff --git a/polars_arrow/array/trait.ArrowGetItem.html b/polars_arrow/array/trait.ArrowGetItem.html index 13fdbf1387d4..8095fe52b531 100644 --- a/polars_arrow/array/trait.ArrowGetItem.html +++ b/polars_arrow/array/trait.ArrowGetItem.html @@ -6,4 +6,4 @@ unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>; }

Required Associated Types§

source

type Item

Required Methods§

source

fn get(&self, item: usize) -> Option<Self::Item>

source

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

Safety

Get item. It is the callers responsibility that the item < self.len()

-

Implementations on Foreign Types§

source§

impl<'a> ArrowGetItem for &'a Utf8Array<i64>

§

type Item = &'a str

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl ArrowGetItem for FixedSizeListArray

§

type Item = Box<dyn Array, Global>

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl<'a> ArrowGetItem for &'a BinaryArray<i64>

§

type Item = &'a [u8]

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl ArrowGetItem for BooleanArray

§

type Item = bool

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl ArrowGetItem for ListArray<i64>

§

type Item = Box<dyn Array, Global>

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl<T: NativeType> ArrowGetItem for PrimitiveArray<T>

§

type Item = T

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl ArrowGetItem for FixedSizeListArray

§

type Item = Box<dyn Array, Global>

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl ArrowGetItem for ListArray<i64>

§

type Item = Box<dyn Array, Global>

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl<'a> ArrowGetItem for &'a Utf8Array<i64>

§

type Item = &'a str

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl ArrowGetItem for BooleanArray

§

type Item = bool

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl<T: NativeType> ArrowGetItem for PrimitiveArray<T>

§

type Item = T

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

source§

impl<'a> ArrowGetItem for &'a BinaryArray<i64>

§

type Item = &'a [u8]

source§

fn get(&self, item: usize) -> Option<Self::Item>

source§

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

Implementors§

\ No newline at end of file diff --git a/polars_arrow/array/trait.ValueSize.html b/polars_arrow/array/trait.ValueSize.html index 3f510c1f43fa..d14ee18d2e86 100644 --- a/polars_arrow/array/trait.ValueSize.html +++ b/polars_arrow/array/trait.ValueSize.html @@ -3,4 +3,4 @@ fn get_values_size(&self) -> usize; }

Required Methods§

source

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy

-

Implementations on Foreign Types§

source§

impl ValueSize for Utf8Array<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for BinaryArray<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for FixedSizeListArray

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for ListArray<i64>

source§

fn get_values_size(&self) -> usize

Implementors§

source§

impl ValueSize for ArrayRef

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl ValueSize for ListArray<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for Utf8Array<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for BinaryArray<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for FixedSizeListArray

source§

fn get_values_size(&self) -> usize

Implementors§

source§

impl ValueSize for ArrayRef

\ No newline at end of file diff --git a/polars_arrow/data_types/trait.IsFloat.html b/polars_arrow/data_types/trait.IsFloat.html index 997baf700327..30569d3bbd34 100644 --- a/polars_arrow/data_types/trait.IsFloat.html +++ b/polars_arrow/data_types/trait.IsFloat.html @@ -6,4 +6,4 @@ }
Expand description

Safety

unsafe code downstream relies on the correct is_float call

Provided Methods§

source

fn is_float() -> bool

source

fn is_nan(&self) -> boolwhere - Self: Sized,

Implementations on Foreign Types§

source§

impl IsFloat for i16

source§

impl IsFloat for f32

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for i8

source§

impl IsFloat for i64

source§

impl IsFloat for u32

source§

impl<T: IsFloat> IsFloat for Option<T>

source§

impl IsFloat for i32

source§

impl IsFloat for u16

source§

impl IsFloat for &str

source§

impl IsFloat for bool

source§

impl IsFloat for &[u8]

source§

impl IsFloat for i128

source§

impl IsFloat for f64

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for u64

source§

impl IsFloat for u8

Implementors§

\ No newline at end of file + Self: Sized,

Implementations on Foreign Types§

source§

impl IsFloat for u32

source§

impl IsFloat for bool

source§

impl IsFloat for f32

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl<T: IsFloat> IsFloat for Option<T>

source§

impl IsFloat for i16

source§

impl IsFloat for i32

source§

impl IsFloat for &[u8]

source§

impl IsFloat for i128

source§

impl IsFloat for u8

source§

impl IsFloat for &str

source§

impl IsFloat for i64

source§

impl IsFloat for u16

source§

impl IsFloat for f64

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for i8

source§

impl IsFloat for u64

Implementors§

\ No newline at end of file diff --git a/polars_arrow/error/enum.ArrowError.html b/polars_arrow/error/enum.ArrowError.html index c13b3fce174d..dd2c6f7032e9 100644 --- a/polars_arrow/error/enum.ArrowError.html +++ b/polars_arrow/error/enum.ArrowError.html @@ -16,7 +16,7 @@ The solution is usually to use a higher-capacity container-backing type.

§

OutOfSpec(String)

Whenever incoming data from the C data interface, IPC or Flight does not fulfil the Arrow specification.

Implementations§

source§

impl Error

source

pub fn from_external_error(error: impl Error + Send + Sync + 'static) -> Error

Wraps an external error in an Error.

-

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars_arrow/error/enum.PolarsError.html b/polars_arrow/error/enum.PolarsError.html index 282dfd16321d..9f1baabe0bc9 100644 --- a/polars_arrow/error/enum.PolarsError.html +++ b/polars_arrow/error/enum.PolarsError.html @@ -11,7 +11,7 @@ ShapeMismatch(ErrString), StringCacheMismatch(ErrString), StructFieldNotFound(ErrString), -}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars_arrow/is_valid/trait.ArrowArray.html b/polars_arrow/is_valid/trait.ArrowArray.html index 8f7b1a87c224..c089dd6fc078 100644 --- a/polars_arrow/is_valid/trait.ArrowArray.html +++ b/polars_arrow/is_valid/trait.ArrowArray.html @@ -1 +1 @@ -ArrowArray in polars_arrow::is_valid - Rust
\ No newline at end of file +ArrowArray in polars_arrow::is_valid - Rust
\ No newline at end of file diff --git a/polars_arrow/trusted_len/trait.TrustedLen.html b/polars_arrow/trusted_len/trait.TrustedLen.html index f341be484bef..3bd9d0de52d6 100644 --- a/polars_arrow/trusted_len/trait.TrustedLen.html +++ b/polars_arrow/trusted_len/trait.TrustedLen.html @@ -5,15 +5,15 @@ *Implementation from Jorge Leitao on Arrow2

Safety

length of the iterator must be correct

-

Trait Implementations§

source§

impl<T> TrustedLen for &mut dyn TrustedLen<Item = T>

source§

impl<T> TrustedLen for Box<dyn TrustedLen<Item = T> + '_>

Implementations on Foreign Types§

source§

impl<I: TrustedLen + DoubleEndedIterator> TrustedLen for Rev<I>

source§

impl<A: TrustedLen> TrustedLen for Take<A>

source§

impl<T> TrustedLen for Range<T>where - Range<T>: Iterator,

source§

impl TrustedLen for Utf8ValuesIter<'_, i64>

source§

impl<T> TrustedLen for Iter<'_, T>

source§

impl<I, St, F, B> TrustedLen for Scan<I, St, F>where - F: FnMut(&mut St, I::Item) -> Option<B>, - I: TrustedLen + Iterator<Item = B>,

source§

impl TrustedLen for BinaryValueIter<'_, i64>

source§

impl<'a, I, T> TrustedLen for Copied<I>where - I: TrustedLen<Item = &'a T>, - T: Copy + 'a,

source§

impl<T> TrustedLen for Once<T>

source§

impl<T, I: TrustedLen + Iterator<Item = T>, V: TrustedLen + Iterator<Item = bool>> TrustedLen for ZipValidity<T, I, V>

source§

impl<I> TrustedLen for Enumerate<I>where - I: TrustedLen,

source§

impl<T> TrustedLen for Windows<'_, T>

source§

impl<T> TrustedLen for Box<dyn TrustedLen<Item = T> + '_>

source§

impl<B, I: TrustedLen, T: FnMut(I::Item) -> B> TrustedLen for Map<I, T>

source§

impl<A: TrustedLen> TrustedLen for StepBy<A>

source§

impl<A, B> TrustedLen for Zip<A, B>where +

Trait Implementations§

source§

impl<T> TrustedLen for &mut dyn TrustedLen<Item = T>

source§

impl<T> TrustedLen for Box<dyn TrustedLen<Item = T> + '_>

Implementations on Foreign Types§

source§

impl<T> TrustedLen for Iter<'_, T>

source§

impl<T, I: TrustedLen + Iterator<Item = T>, V: TrustedLen + Iterator<Item = bool>> TrustedLen for ZipValidity<T, I, V>

source§

impl<B, I: TrustedLen, T: FnMut(I::Item) -> B> TrustedLen for Map<I, T>

source§

impl<A, F: FnMut() -> A> TrustedLen for RepeatWith<F>

source§

impl<T> TrustedLen for RangeInclusive<T>where + RangeInclusive<T>: Iterator,

source§

impl<T> TrustedLen for Windows<'_, T>

source§

impl<I> TrustedLen for Enumerate<I>where + I: TrustedLen,

source§

impl TrustedLen for BinaryValueIter<'_, i64>

source§

impl TrustedLen for Utf8ValuesIter<'_, i64>

source§

impl<T> TrustedLen for IntoIter<T>

source§

impl<A: Clone> TrustedLen for Repeat<A>

source§

impl<A, B> TrustedLen for Zip<A, B>where A: TrustedLen, - B: TrustedLen,

source§

impl<A, F: FnMut() -> A> TrustedLen for RepeatWith<F>

source§

impl<T> TrustedLen for RangeInclusive<T>where - RangeInclusive<T>: Iterator,

source§

impl<T> TrustedLen for IntoIter<T>

source§

impl<T, I: TrustedLen + Iterator<Item = T>, V: TrustedLen + Iterator<Item = bool>> TrustedLen for ZipValidityIter<T, I, V>

source§

impl TrustedLen for BitmapIter<'_>

source§

impl<A, B> TrustedLen for Chain<A, B>where + B: TrustedLen,

source§

impl<A: TrustedLen> TrustedLen for StepBy<A>

source§

impl<A, B> TrustedLen for Chain<A, B>where A: TrustedLen, - B: TrustedLen<Item = A::Item>,

source§

impl<K, V> TrustedLen for IntoIter<K, V>

source§

impl<A: Clone> TrustedLen for Repeat<A>

Implementors§

source§

impl<I: Iterator<Item = J>, J> TrustedLen for TrustMyLength<I, J>

source§

impl<T> TrustedLen for &mut dyn TrustedLen<Item = T>

\ No newline at end of file + B: TrustedLen<Item = A::Item>,
source§

impl<I, St, F, B> TrustedLen for Scan<I, St, F>where + F: FnMut(&mut St, I::Item) -> Option<B>, + I: TrustedLen + Iterator<Item = B>,

source§

impl<'a, I, T> TrustedLen for Copied<I>where + I: TrustedLen<Item = &'a T>, + T: Copy + 'a,

source§

impl<A: TrustedLen> TrustedLen for Take<A>

source§

impl<T, I: TrustedLen + Iterator<Item = T>, V: TrustedLen + Iterator<Item = bool>> TrustedLen for ZipValidityIter<T, I, V>

source§

impl TrustedLen for BitmapIter<'_>

source§

impl<K, V> TrustedLen for IntoIter<K, V>

source§

impl<T> TrustedLen for Range<T>where + Range<T>: Iterator,

source§

impl<I: TrustedLen + DoubleEndedIterator> TrustedLen for Rev<I>

source§

impl<T> TrustedLen for Once<T>

source§

impl<T> TrustedLen for Box<dyn TrustedLen<Item = T> + '_>

Implementors§

source§

impl<I: Iterator<Item = J>, J> TrustedLen for TrustMyLength<I, J>

source§

impl<T> TrustedLen for &mut dyn TrustedLen<Item = T>

\ No newline at end of file diff --git a/polars_arrow/utils/trait.FromTrustedLenIterator.html b/polars_arrow/utils/trait.FromTrustedLenIterator.html index 0afa68c0aaa9..ffbbfad47ba9 100644 --- a/polars_arrow/utils/trait.FromTrustedLenIterator.html +++ b/polars_arrow/utils/trait.FromTrustedLenIterator.html @@ -3,11 +3,11 @@ fn from_iter_trusted_length<T: IntoIterator<Item = A>>(iter: T) -> Self where T::IntoIter: TrustedLen; }

Required Methods§

source

fn from_iter_trusted_length<T: IntoIterator<Item = A>>(iter: T) -> Selfwhere - T::IntoIter: TrustedLen,

Implementations on Foreign Types§

source§

impl FromTrustedLenIterator<Option<bool>> for BooleanArray

Implementations on Foreign Types§

source§

impl FromTrustedLenIterator<bool> for BooleanArray

source§

fn from_iter_trusted_length<I: IntoIterator<Item = bool>>(iter: I) -> Selfwhere + I::IntoIter: TrustedLen,

source§

impl<T: NativeType> FromTrustedLenIterator<T> for PrimitiveArray<T>

source§

fn from_iter_trusted_length<I: IntoIterator<Item = T>>(iter: I) -> Selfwhere + I::IntoIter: TrustedLen,

source§

impl FromTrustedLenIterator<Option<bool>> for BooleanArray

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Option<bool>>>( iter: I ) -> Selfwhere - I::IntoIter: TrustedLen,

source§

impl<T: NativeType> FromTrustedLenIterator<Option<T>> for PrimitiveArray<T>

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Option<T>>>(iter: I) -> Selfwhere - I::IntoIter: TrustedLen,

source§

impl FromTrustedLenIterator<bool> for BooleanArray

source§

fn from_iter_trusted_length<I: IntoIterator<Item = bool>>(iter: I) -> Selfwhere I::IntoIter: TrustedLen,

source§

impl<T> FromTrustedLenIterator<T> for Vec<T>

source§

fn from_iter_trusted_length<I: IntoIterator<Item = T>>(iter: I) -> Selfwhere - I::IntoIter: TrustedLen,

source§

impl<T: NativeType> FromTrustedLenIterator<T> for PrimitiveArray<T>

source§

fn from_iter_trusted_length<I: IntoIterator<Item = T>>(iter: I) -> Selfwhere + I::IntoIter: TrustedLen,

source§

impl<T: NativeType> FromTrustedLenIterator<Option<T>> for PrimitiveArray<T>

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Option<T>>>(iter: I) -> Selfwhere I::IntoIter: TrustedLen,

Implementors§

\ No newline at end of file diff --git a/polars_core/chunked_array/arithmetic/trait.ArrayArithmetics.html b/polars_core/chunked_array/arithmetic/trait.ArrayArithmetics.html index 208f3b09f2ed..c42b3949ad77 100644 --- a/polars_core/chunked_array/arithmetic/trait.ArrayArithmetics.html +++ b/polars_core/chunked_array/arithmetic/trait.ArrayArithmetics.html @@ -44,7 +44,7 @@ ) -> PrimitiveArray<Self>
source

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

Implementations on Foreign Types§

source§

impl ArrayArithmetics for u8

source§

fn add( +) -> PrimitiveArray<Self>

source

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

Implementations on Foreign Types§

source§

impl ArrayArithmetics for f32

source§

fn add( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> ) -> PrimitiveArray<Self>

source§

fn sub( @@ -59,7 +59,7 @@ ) -> PrimitiveArray<Self>

source§

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for f32

source§

fn add( +) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for i16

source§

fn add( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> ) -> PrimitiveArray<Self>

source§

fn sub( @@ -74,7 +74,7 @@ ) -> PrimitiveArray<Self>

source§

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for u64

source§

fn add( +) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for i64

source§

fn add( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> ) -> PrimitiveArray<Self>

source§

fn sub( @@ -89,7 +89,7 @@ ) -> PrimitiveArray<Self>

source§

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for i16

source§

fn add( +) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for u8

source§

fn add( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> ) -> PrimitiveArray<Self>

source§

fn sub( @@ -104,7 +104,7 @@ ) -> PrimitiveArray<Self>

source§

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for i64

source§

fn add( +) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for u64

source§

fn add( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> ) -> PrimitiveArray<Self>

source§

fn sub( @@ -134,7 +134,7 @@ ) -> PrimitiveArray<Self>

source§

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for i32

source§

fn add( +) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for i8

source§

fn add( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> ) -> PrimitiveArray<Self>

source§

fn sub( @@ -149,7 +149,7 @@ ) -> PrimitiveArray<Self>

source§

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for i8

source§

fn add( +) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for i32

source§

fn add( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> ) -> PrimitiveArray<Self>

source§

fn sub( @@ -164,7 +164,7 @@ ) -> PrimitiveArray<Self>

source§

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for u32

source§

fn add( +) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for u16

source§

fn add( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> ) -> PrimitiveArray<Self>

source§

fn sub( @@ -179,7 +179,7 @@ ) -> PrimitiveArray<Self>

source§

fn div_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

fn rem( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> -) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for u16

source§

fn add( +) -> PrimitiveArray<Self>

source§

fn rem_scalar(lhs: &PrimitiveArray<Self>, rhs: &Self) -> PrimitiveArray<Self>

source§

impl ArrayArithmetics for u32

source§

fn add( lhs: &PrimitiveArray<Self>, rhs: &PrimitiveArray<Self> ) -> PrimitiveArray<Self>

source§

fn sub( diff --git a/polars_core/chunked_array/ops/enum.TakeIdx.html b/polars_core/chunked_array/ops/enum.TakeIdx.html index d79bb46ebfff..f5a138ba8ea2 100644 --- a/polars_core/chunked_array/ops/enum.TakeIdx.html +++ b/polars_core/chunked_array/ops/enum.TakeIdx.html @@ -6,11 +6,11 @@ IterNulls(INulls), }
Expand description

One of the three arguments allowed in unchecked_take

Variants§

§

Array(&'a IdxArr)

§

Iter(I)

§

IterNulls(INulls)

Trait Implementations§

source§

impl<'a> From<&'a [u32]> for TakeIdx<'a, Map<Iter<'a, IdxSize>, fn(_: &IdxSize) -> usize>, Dummy<Option<usize>>>

Conversion from &[IdxSize] to Unchecked TakeIdx

-
source§

fn from(slice: &'a [IdxSize]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

-
source§

fn from(ca: &'a IdxCa) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, IdxSize>, fn(_: &IdxSize) -> usize>, Dummy<Option<usize>>>

Conversion from &[IdxSize] to Unchecked TakeIdx

-
source§

fn from(slice: &'a Vec<IdxSize>) -> Self

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, Dummy<usize>, I>where +

source§

fn from(slice: &'a [IdxSize]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

+
source§

fn from(ca: &'a IdxCa) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a Vec<u32, Global>> for TakeIdx<'a, Map<Iter<'a, IdxSize>, fn(_: &IdxSize) -> usize>, Dummy<Option<usize>>>

Conversion from &[IdxSize] to Unchecked TakeIdx

+
source§

fn from(slice: &'a Vec<IdxSize>) -> Self

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, Dummy<usize>, I>where I: TakeIteratorNulls,

Conversion from [Iterator<Item=Option<usize>>] to Unchecked TakeIdx

-
source§

fn from(iter: I) -> Self

Converts to this type from the input type.
source§

impl<'a, I> From<I> for TakeIdx<'a, I, Dummy<Option<usize>>>where +
source§

fn from(iter: I) -> Self

Converts to this type from the input type.

source§

impl<'a, I> From<I> for TakeIdx<'a, I, Dummy<Option<usize>>>where I: TakeIterator,

Conversion from Iterator<Item=usize> to Unchecked TakeIdx

source§

fn from(iter: I) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, I, INulls> RefUnwindSafe for TakeIdx<'a, I, INulls>where I: RefUnwindSafe, diff --git a/polars_core/chunked_array/struct.ChunkedArray.html b/polars_core/chunked_array/struct.ChunkedArray.html index 736a68c34f9f..c8c0a9e4c1da 100644 --- a/polars_core/chunked_array/struct.ChunkedArray.html +++ b/polars_core/chunked_array/struct.ChunkedArray.html @@ -253,23 +253,23 @@
Safety

source

pub fn lhs_sub<N: Num + NumCast>(&self, lhs: N) -> Self

Apply lhs - self

source

pub fn lhs_div<N: Num + NumCast>(&self, lhs: N) -> Self

Apply lhs / self

source

pub fn lhs_rem<N: Num + NumCast>(&self, lhs: N) -> Self

Apply lhs % self

-

Trait Implementations§

source§

impl Add<&ChunkedArray<BinaryType>> for &BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T> Add<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<Utf8Type>> for &Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T> Add<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for &ChunkedArray<T>where +

Trait Implementations§

source§

impl Add<&ChunkedArray<BinaryType>> for &BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T> Add<&ChunkedArray<T>> for &ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<Utf8Type>> for &Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T> Add<ChunkedArray<T>> for ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> Self::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> Self::Output

Performs the + operation. Read more
source§

impl<T, N> Add<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> Self::Output

Performs the + operation. Read more
source§

impl<T> AggList for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: N) -> Self::Output

Performs the + operation. Read more
source§

impl<T> AggList for ChunkedArray<T>where T: PolarsNumericType, ChunkedArray<T>: IntoSeries,

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere T: 'static + PolarsDataType,

source§

fn as_mut(&mut self) -> &mut ChunkedArray<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T: PolarsDataType> AsRef<ChunkedArray<T>> for ChunkedArray<T>

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere - T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T: PolarsDataType> AsRefDataType for ChunkedArray<T>

source§

impl BitAnd<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl<T> BitAnd<&ChunkedArray<T>> for &ChunkedArray<T>where + T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T: PolarsDataType> AsRefDataType for ChunkedArray<T>

source§

impl BitAnd<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl<T> BitAnd<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - T::Native: BitAnd<Output = T::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl<T> BitOr<&ChunkedArray<T>> for &ChunkedArray<T>where + T::Native: BitAnd<Output = T::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl<T> BitOr<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - T::Native: BitOr<Output = T::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl<T> BitXor<&ChunkedArray<T>> for &ChunkedArray<T>where + T::Native: BitOr<Output = T::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl<T> BitXor<&ChunkedArray<T>> for &ChunkedArray<T>where T: PolarsIntegerType, - T::Native: BitXor<Output = T::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl<T> ChunkAgg<<T as PolarsNumericType>::Native> for ChunkedArray<T>where + T::Native: BitXor<Output = T::Native>,

§

type Output = ChunkedArray<T>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl<T> ChunkAgg<<T as PolarsNumericType>::Native> for ChunkedArray<T>where T: PolarsNumericType, <T::Native as Simd>::Simd: Add<Output = <T::Native as Simd>::Simd> + Sum<T::Native> + SimdOrd<T::Native>,

source§

fn sum(&self) -> Option<T::Native>

Aggregate the sum of the ChunkedArray. Returns None if not implemented for T. @@ -302,10 +302,10 @@
Safety
f: &dyn Fn(&PrimitiveArray<T::Native>) -> ArrayRef ) -> ChunkedArray<S>where S: PolarsDataType,
Apply a kernel that outputs an array of different type.
source§

impl<T> ChunkCast for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for BinaryChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &BinaryChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &BinaryChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &BinaryChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &BinaryChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for BooleanChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &BooleanChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &BooleanChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &BooleanChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &BooleanChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ListChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ListChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &ListChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ListChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &ListChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ListChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ListChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ListChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ListChunked) -> BooleanChunked

Less than or equal comparison
source§

impl<T> ChunkCompare<&ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<Utf8Type>> for Utf8Chunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &Utf8Chunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &Utf8Chunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &Utf8Chunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &Utf8Chunked) -> BooleanChunked

Less than or equal comparison
source§

impl<T, Rhs> ChunkCompare<Rhs> for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for BinaryChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &BinaryChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &BinaryChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &BinaryChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &BinaryChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for BooleanChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &BooleanChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &BooleanChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &BooleanChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &BooleanChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ListChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ListChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &ListChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ListChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &ListChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ListChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ListChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ListChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ListChunked) -> BooleanChunked

Less than or equal comparison
source§

impl<T> ChunkCompare<&ChunkedArray<T>> for ChunkedArray<T>where + T: PolarsNumericType,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &ChunkedArray<T>) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<Utf8Type>> for Utf8Chunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &Utf8Chunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &Utf8Chunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &Utf8Chunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &Utf8Chunked) -> BooleanChunked

Less than or equal comparison
source§

impl<T, Rhs> ChunkCompare<Rhs> for ChunkedArray<T>where T: PolarsNumericType, - Rhs: ToPrimitive,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: Rhs) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> BooleanChunked

Less than or equal comparison
source§

impl<T> ChunkCumAgg<T> for ChunkedArray<T>where + Rhs: ToPrimitive,

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: Rhs) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> BooleanChunked

Less than or equal comparison
source§

impl<T> ChunkCumAgg<T> for ChunkedArray<T>where T: PolarsNumericType, ChunkedArray<T>: FromIterator<Option<T::Native>>,

Available on crate feature cum_agg only.
source§

fn cummax(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative max computed at every element
source§

fn cummin(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative min computed at every element
source§

fn cumsum(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative sum computed at every element
source§

fn cumprod(&self, reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative product computed at every element
source§

impl<T> ChunkExpandAtIndex<T> for ChunkedArray<T>where ChunkedArray<T>: ChunkFull<T::Native> + TakeRandom<Item = T::Native>, @@ -378,19 +378,19 @@
Safety
mask: &BooleanChunked, other: &ChunkedArray<T> ) -> PolarsResult<ChunkedArray<T>>

Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl<T: PolarsDataType> Clone for ChunkedArray<T>

source§

fn clone(&self) -> Self

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 ChunkedArray<BooleanType>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Debug for ChunkedArray<T>where - T: PolarsNumericType,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: PolarsDataType> Default for ChunkedArray<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T> Div<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl<T> Div<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for &ChunkedArray<T>where +from other where the mask evaluates false

source§

impl<T: PolarsDataType> Clone for ChunkedArray<T>

source§

fn clone(&self) -> Self

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 ChunkedArray<BooleanType>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Debug for ChunkedArray<T>where + T: PolarsNumericType,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: PolarsDataType> Default for ChunkedArray<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T> Div<&ChunkedArray<T>> for &ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl<T> Div<ChunkedArray<T>> for ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> Self::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> Self::Output

Performs the / operation. Read more
source§

impl<T, N> Div<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> Self::Output

Performs the / operation. Read more
source§

impl<T: PolarsNumericType> From<&[<T as PolarsNumericType>::Native]> for ChunkedArray<T>

source§

fn from(slice: &[T::Native]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>>

source§

fn from(ca: &'a BooleanChunked) -> Self

Converts to this type from the input type.
source§

impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<T::Native>>where - T: PolarsNumericType,

source§

fn from(ca: &'a ChunkedArray<T>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

-
source§

fn from(ca: &'a IdxCa) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<Utf8Type>> for Vec<Option<&'a str>>

From trait

-
source§

fn from(ca: &'a Utf8Chunked) -> Self

Converts to this type from the input type.
source§

impl<T: PolarsNumericType> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>

source§

fn from(tpl: (&str, PrimitiveArray<T::Native>)) -> Self

Converts to this type from the input type.
source§

impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>>

source§

fn from(ca: BooleanChunked) -> Self

Converts to this type from the input type.
source§

impl<T> From<ChunkedArray<T>> for Serieswhere + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: N) -> Self::Output

Performs the / operation. Read more
source§

impl<T: PolarsNumericType> From<&[<T as PolarsNumericType>::Native]> for ChunkedArray<T>

source§

fn from(slice: &[T::Native]) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<BooleanType>> for Vec<Option<bool>>

source§

fn from(ca: &'a BooleanChunked) -> Self

Converts to this type from the input type.
source§

impl<'a, T> From<&'a ChunkedArray<T>> for Vec<Option<T::Native>>where + T: PolarsNumericType,

source§

fn from(ca: &'a ChunkedArray<T>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<UInt32Type>> for TakeIdx<'a, Dummy<usize>, Dummy<Option<usize>>>

Conversion from UInt32Chunked to Unchecked TakeIdx

+
source§

fn from(ca: &'a IdxCa) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a ChunkedArray<Utf8Type>> for Vec<Option<&'a str>>

From trait

+
source§

fn from(ca: &'a Utf8Chunked) -> Self

Converts to this type from the input type.
source§

impl<T: PolarsNumericType> From<(&str, PrimitiveArray<<T as PolarsNumericType>::Native>)> for ChunkedArray<T>

source§

fn from(tpl: (&str, PrimitiveArray<T::Native>)) -> Self

Converts to this type from the input type.
source§

impl From<ChunkedArray<BooleanType>> for Vec<Option<bool>>

source§

fn from(ca: BooleanChunked) -> Self

Converts to this type from the input type.
source§

impl<T> From<ChunkedArray<T>> for Serieswhere T: PolarsDataType, - ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Self

Converts to this type from the input type.
source§

impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>>

source§

fn from(ca: Utf8Chunked) -> Self

Converts to this type from the input type.
source§

impl<T: PolarsNumericType> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>

source§

fn from(a: PrimitiveArray<T::Native>) -> Self

Converts to this type from the input type.
source§

impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where + ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Self

Converts to this type from the input type.
source§

impl From<ChunkedArray<Utf8Type>> for Vec<Option<String>>

source§

fn from(ca: Utf8Chunked) -> Self

Converts to this type from the input type.
source§

impl<T: PolarsNumericType> From<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>

source§

fn from(a: PrimitiveArray<T::Native>) -> Self

Converts to this type from the input type.
source§

impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native, Global>, Option<Bitmap>)> for ChunkedArray<T>where T: PolarsNumericType,

source§

fn from_iter<I: IntoIterator<Item = (Vec<T::Native>, Option<Bitmap>)>>( iter: I ) -> Self

Creates a value from an iterator. Read more
source§

impl<T> FromIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where @@ -416,17 +416,17 @@
Safety
) -> PolarsResult<GroupsProxy>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. * The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<'a, T> IntoIterator for &'a ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = Option<<T as PolarsNumericType>::Native>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<T> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T: PolarsDataType + 'static> IntoSeries for ChunkedArray<T>where + T: PolarsNumericType,

§

type Item = Option<<T as PolarsNumericType>::Native>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<T> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T: PolarsDataType + 'static> IntoSeries for ChunkedArray<T>where SeriesWrap<ChunkedArray<T>>: SeriesTrait,

source§

fn into_series(self) -> Serieswhere Self: Sized,

source§

fn is_series() -> bool

source§

impl<'a, T> IntoTakeRandom<'a> for &'a ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

§

type TakeRandom = TakeRandBranch3<NumTakeRandomCont<'a, <T as PolarsNumericType>::Native>, NumTakeRandomSingleChunk<'a, <T as PolarsNumericType>::Native>, NumTakeRandomChunked<'a, <T as PolarsNumericType>::Native>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl<T> IsIn for ChunkedArray<T>where + T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

§

type TakeRandom = TakeRandBranch3<NumTakeRandomCont<'a, <T as PolarsNumericType>::Native>, NumTakeRandomSingleChunk<'a, <T as PolarsNumericType>::Native>, NumTakeRandomChunked<'a, <T as PolarsNumericType>::Native>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl<T> IsIn for ChunkedArray<T>where T: PolarsNumericType,

Available on crate feature is_in only.
source§

fn is_in(&self, other: &Series) -> PolarsResult<BooleanChunked>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl<T> Mul<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
source§

impl<T> Mul<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
source§

impl<T, N> Mul<N> for &ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
source§

impl<T> Mul<ChunkedArray<T>> for ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
source§

impl<T, N> Mul<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> Self::Output

Performs the * operation. Read more
source§

impl<T, N> Mul<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> Self::Output

Performs the * operation. Read more
source§

impl<T, N> Mul<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> Self::Output

Performs the * operation. Read more
source§

impl NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, range: Range<u32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, range: Range<u64>) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<String>]>> NamedFrom<T, [Option<String>]> for ChunkedArray<Utf8Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<Vec<u8>>]>> NamedFrom<T, [Option<Vec<u8, Global>>]> for ChunkedArray<BinaryType>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<bool>]>> NamedFrom<T, [Option<bool>]> for ChunkedArray<BooleanType>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<f32>]>> NamedFrom<T, [Option<f32>]> for ChunkedArray<Float32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<f64>]>> NamedFrom<T, [Option<f64>]> for ChunkedArray<Float64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<i32>]>> NamedFrom<T, [Option<i32>]> for ChunkedArray<Int32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<i64>]>> NamedFrom<T, [Option<i64>]> for ChunkedArray<Int64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<u32>]>> NamedFrom<T, [Option<u32>]> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<u64>]>> NamedFrom<T, [Option<u64>]> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[String]>> NamedFrom<T, [String]> for ChunkedArray<Utf8Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Vec<u8>]>> NamedFrom<T, [Vec<u8, Global>]> for ChunkedArray<BinaryType>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[bool]>> NamedFrom<T, [bool]> for ChunkedArray<BooleanType>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[f32]>> NamedFrom<T, [f32]> for ChunkedArray<Float32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[f64]>> NamedFrom<T, [f64]> for ChunkedArray<Float64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[i32]>> NamedFrom<T, [i32]> for ChunkedArray<Int32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[i64]>> NamedFrom<T, [i64]> for ChunkedArray<Int64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[u32]>> NamedFrom<T, [u32]> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[u64]>> NamedFrom<T, [u64]> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T> NewChunkedArray<T, <T as PolarsNumericType>::Native> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: N) -> Self::Output

Performs the * operation. Read more
source§

impl NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, range: Range<u32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, range: Range<u64>) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<String>]>> NamedFrom<T, [Option<String>]> for ChunkedArray<Utf8Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<Vec<u8>>]>> NamedFrom<T, [Option<Vec<u8, Global>>]> for ChunkedArray<BinaryType>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<bool>]>> NamedFrom<T, [Option<bool>]> for ChunkedArray<BooleanType>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<f32>]>> NamedFrom<T, [Option<f32>]> for ChunkedArray<Float32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<f64>]>> NamedFrom<T, [Option<f64>]> for ChunkedArray<Float64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<i32>]>> NamedFrom<T, [Option<i32>]> for ChunkedArray<Int32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<i64>]>> NamedFrom<T, [Option<i64>]> for ChunkedArray<Int64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<u32>]>> NamedFrom<T, [Option<u32>]> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<u64>]>> NamedFrom<T, [Option<u64>]> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[String]>> NamedFrom<T, [String]> for ChunkedArray<Utf8Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Vec<u8>]>> NamedFrom<T, [Vec<u8, Global>]> for ChunkedArray<BinaryType>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[bool]>> NamedFrom<T, [bool]> for ChunkedArray<BooleanType>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[f32]>> NamedFrom<T, [f32]> for ChunkedArray<Float32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[f64]>> NamedFrom<T, [f64]> for ChunkedArray<Float64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[i32]>> NamedFrom<T, [i32]> for ChunkedArray<Int32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[i64]>> NamedFrom<T, [i64]> for ChunkedArray<Int64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[u32]>> NamedFrom<T, [u32]> for ChunkedArray<UInt32Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[u64]>> NamedFrom<T, [u64]> for ChunkedArray<UInt64Type>

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T> NewChunkedArray<T, <T as PolarsNumericType>::Native> for ChunkedArray<T>where T: PolarsNumericType,

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = T::Native> @@ -442,20 +442,20 @@

Safety
quantile: f64, interpol: QuantileInterpolOptions ) -> PolarsResult<Series>
Get the quantile of the ChunkedArray as a new Series of length 1.
source§

fn median_as_series(&self) -> Series

Get the median of the ChunkedArray as a new Series of length 1.
source§

impl<T> Rem<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self::Output

Performs the % operation. Read more
source§

impl<T> Rem<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self::Output

Performs the % operation. Read more
source§

impl<T, N> Rem<N> for &ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self::Output

Performs the % operation. Read more
source§

impl<T> Rem<ChunkedArray<T>> for ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self::Output

Performs the % operation. Read more
source§

impl<T, N> Rem<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: N) -> Self::Output

Performs the % operation. Read more
source§

impl<T, N> Rem<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: N) -> Self::Output

Performs the % operation. Read more
source§

impl<T, N> Rem<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: N) -> Self::Output

Performs the % operation. Read more
source§

impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl<T> Sub<ChunkedArray<T>> for ChunkedArray<T>where - T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for &ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: N) -> Self::Output

Performs the % operation. Read more
source§

impl<T> Sub<&ChunkedArray<T>> for &ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl<T> Sub<ChunkedArray<T>> for ChunkedArray<T>where + T: PolarsNumericType,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for &ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> Self::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> Self::Output

Performs the - operation. Read more
source§

impl<T, N> Sub<N> for ChunkedArray<T>where T: PolarsNumericType, - N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> Self::Output

Performs the - operation. Read more
source§

impl<'a, T> TakeRandom for &'a ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<T> TakeRandom for ChunkedArray<T>where - T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<T> VarAggSeries for ChunkedArray<T>where + N: Num + ToPrimitive,

§

type Output = ChunkedArray<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: N) -> Self::Output

Performs the - operation. Read more
source§

impl<'a, T> TakeRandom for &'a ChunkedArray<T>where + T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<T> TakeRandom for ChunkedArray<T>where + T: PolarsNumericType,

§

type Item = <T as PolarsNumericType>::Native

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl<T> VarAggSeries for ChunkedArray<T>where T: PolarsIntegerType, <T::Native as Simd>::Simd: Add<Output = <T::Native as Simd>::Simd> + Sum<T::Native> + SimdOrd<T::Native>,

source§

fn var_as_series(&self, ddof: u8) -> Series

Get the variance of the ChunkedArray as a new Series of length 1.
source§

fn std_as_series(&self, ddof: u8) -> Series

Get the standard deviation of the ChunkedArray as a new Series of length 1.

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ChunkedArray<T>

§

impl<T> Send for ChunkedArray<T>

§

impl<T> Sync for ChunkedArray<T>

§

impl<T> Unpin for ChunkedArray<T>where T: Unpin,

§

impl<T> !UnwindSafe for ChunkedArray<T>

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/polars_core/chunked_array/upstream_traits/trait.PolarsAsRef.html b/polars_core/chunked_array/upstream_traits/trait.PolarsAsRef.html index 12544be7a193..b856233e03fd 100644 --- a/polars_core/chunked_array/upstream_traits/trait.PolarsAsRef.html +++ b/polars_core/chunked_array/upstream_traits/trait.PolarsAsRef.html @@ -1,2 +1,2 @@ PolarsAsRef in polars_core::chunked_array::upstream_traits - Rust
pub trait PolarsAsRef<T: ?Sized>: AsRef<T> { }
Expand description

Local AsRef<T> trait to circumvent the orphan rule.

-

Implementations on Foreign Types§

source§

impl PolarsAsRef<[u8]> for &[u8]

source§

impl PolarsAsRef<str> for String

source§

impl<'a> PolarsAsRef<str> for Cow<'a, str>

source§

impl PolarsAsRef<[u8]> for &&[u8]

source§

impl<'a> PolarsAsRef<[u8]> for Cow<'a, [u8]>

source§

impl PolarsAsRef<str> for &&str

source§

impl PolarsAsRef<[u8]> for Vec<u8>

source§

impl PolarsAsRef<str> for &str

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl PolarsAsRef<str> for String

source§

impl PolarsAsRef<[u8]> for &[u8]

source§

impl PolarsAsRef<str> for &&str

source§

impl<'a> PolarsAsRef<[u8]> for Cow<'a, [u8]>

source§

impl<'a> PolarsAsRef<str> for Cow<'a, str>

source§

impl PolarsAsRef<str> for &str

source§

impl PolarsAsRef<[u8]> for Vec<u8>

source§

impl PolarsAsRef<[u8]> for &&[u8]

Implementors§

\ No newline at end of file diff --git a/polars_core/datatypes/enum.AnyValue.html b/polars_core/datatypes/enum.AnyValue.html index c86ed9bec786..5c0c4b91c011 100644 --- a/polars_core/datatypes/enum.AnyValue.html +++ b/polars_core/datatypes/enum.AnyValue.html @@ -35,8 +35,8 @@
§

Binary(&'a [u8])

§

BinaryOwned(Vec<u8>)

Implementations§

source§

impl<'a> AnyValue<'a>

source

pub fn _iter_struct_av(&self) -> impl Iterator<Item = AnyValue<'_>>

Available on crate feature dtype-struct only.
source

pub fn _materialize_struct_av(&'a self, buf: &mut Vec<AnyValue<'a>>)

Available on crate feature dtype-struct only.
source§

impl<'a> AnyValue<'a>

source

pub fn dtype(&self) -> DataType

source

pub fn try_extract<T: NumCast>(&self) -> PolarsResult<T>

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn cast(&self, dtype: &'a DataType) -> PolarsResult<AnyValue<'a>>

source§

impl<'a> AnyValue<'a>

source

pub fn add(&self, rhs: &AnyValue<'_>) -> Self

source

pub fn as_borrowed(&self) -> AnyValue<'_>

source

pub fn into_static(self) -> PolarsResult<AnyValue<'static>>

Try to coerce to an AnyValue with static lifetime. This can be done if it does not borrow any values.

source

pub fn get_str(&self) -> Option<&str>

Get a reference to the &str contained within AnyValue.

-
source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&AnyValue<'_>> for NaiveDateTime

Available on crate features temporal or dtype-datetime or dtype-date only.
source§

fn from(v: &AnyValue<'_>) -> Self

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

Available on crate features temporal or dtype-datetime or dtype-date only.
source§

fn from(v: &AnyValue<'_>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

Available on crate feature rows only.
source§

fn from(val: &AnyValue<'a>) -> Self

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<AnyValue<'a>> for Option<i64>

source§

fn from(val: AnyValue<'a>) -> Self

Converts to this type from the input type.
source§

impl<K: NumericNative> From<K> for AnyValue<'_>

source§

fn from(value: K) -> Self

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where - T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> Self

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl<'a> Clone for AnyValue<'a>

source§

fn clone(&self) -> AnyValue<'a>

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<'a> Debug for AnyValue<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Default for AnyValue<'a>

source§

fn default() -> AnyValue<'a>

Returns the “default value” for a type. Read more
source§

impl Display for AnyValue<'_>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&AnyValue<'_>> for NaiveDateTime

Available on crate features temporal or dtype-datetime or dtype-date only.
source§

fn from(v: &AnyValue<'_>) -> Self

Converts to this type from the input type.
source§

impl From<&AnyValue<'_>> for NaiveTime

Available on crate features temporal or dtype-datetime or dtype-date only.
source§

fn from(v: &AnyValue<'_>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&AnyValue<'a>> for Field

Available on crate feature rows only.
source§

fn from(val: &AnyValue<'a>) -> Self

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> Self

Converts to this type from the input type.
source§

impl<'a> From<AnyValue<'a>> for Option<i64>

source§

fn from(val: AnyValue<'a>) -> Self

Converts to this type from the input type.
source§

impl<K: NumericNative> From<K> for AnyValue<'_>

source§

fn from(value: K) -> Self

Converts to this type from the input type.
source§

impl<'a, T> From<Option<T>> for AnyValue<'a>where + T: Into<AnyValue<'a>>,

source§

fn from(a: Option<T>) -> Self

Converts to this type from the input type.
source§

impl<'a> Hash for AnyValue<'a>

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<AnyValue<'_>> for AnyValue<'_>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always diff --git a/polars_core/datatypes/enum.DataType.html b/polars_core/datatypes/enum.DataType.html index 9ff1053ba625..98cc2cee7e53 100644 --- a/polars_core/datatypes/enum.DataType.html +++ b/polars_core/datatypes/enum.DataType.html @@ -36,9 +36,9 @@
source

pub fn is_float(&self) -> bool

source

pub fn is_integer(&self) -> bool

source

pub fn is_signed(&self) -> bool

source

pub fn is_unsigned(&self) -> bool

source

pub fn to_arrow(&self) -> ArrowDataType

Convert to an Arrow data type.

source

pub fn is_nested_null(&self) -> bool

Trait Implementations§

source§

impl Clone for DataType

source§

fn clone(&self) -> DataType

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 DataType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for DataType

source§

fn default() -> DataType

Returns the “default value” for a type. Read more
source§

impl Display for DataType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> From<&AnyValue<'a>> for DataType

source§

fn from(val: &AnyValue<'a>) -> Self

Converts to this type from the input type.
source§

impl From<&DataType> for DataType

source§

fn from(dt: &ArrowDataType) -> Self

Converts to this type from the input type.
source§

impl From<AnyValue<'_>> for DataType

source§

fn from(value: AnyValue<'_>) -> Self

Converts to this type from the input type.
source§

impl Hash for DataType

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, - Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

fn eq(&self, other: &ArrowDataType) -> bool

This method tests for self and other values to be equal, and is used + Self: Sized,
Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<DataType> for DataType

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<DataType> for DataType

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<DataType> for DataType

source§

fn eq(&self, other: &ArrowDataType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for DataType

Auto Trait Implementations§

§

impl RefUnwindSafe for DataType

§

impl Send for DataType

§

impl Sync for DataType

§

impl Unpin for DataType

§

impl UnwindSafe for DataType

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars_core/datatypes/enum.TimeUnit.html b/polars_core/datatypes/enum.TimeUnit.html index 4fd281d92b11..e1bc990b37e1 100644 --- a/polars_core/datatypes/enum.TimeUnit.html +++ b/polars_core/datatypes/enum.TimeUnit.html @@ -2,7 +2,7 @@ Nanoseconds, Microseconds, Milliseconds, -}

Variants§

§

Nanoseconds

§

Microseconds

§

Milliseconds

Implementations§

source§

impl TimeUnit

source

pub fn to_ascii(self) -> &'static str

source

pub fn to_arrow(self) -> ArrowTimeUnit

Trait Implementations§

source§

impl Clone for TimeUnit

source§

fn clone(&self) -> TimeUnit

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 TimeUnit

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for TimeUnit

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&TimeUnit> for TimeUnit

source§

fn from(tu: &ArrowTimeUnit) -> Self

Converts to this type from the input type.
source§

impl Hash for TimeUnit

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Variants§

§

Nanoseconds

§

Microseconds

§

Milliseconds

Implementations§

source§

impl TimeUnit

source

pub fn to_ascii(self) -> &'static str

source

pub fn to_arrow(self) -> ArrowTimeUnit

Trait Implementations§

source§

impl Clone for TimeUnit

source§

fn clone(&self) -> TimeUnit

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 TimeUnit

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for TimeUnit

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&TimeUnit> for TimeUnit

source§

fn from(tu: &ArrowTimeUnit) -> Self

Converts to this type from the input type.
source§

impl Hash for TimeUnit

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<TimeUnit> for TimeUnit

source§

fn eq(&self, other: &TimeUnit) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always diff --git a/polars_core/datatypes/struct.Int32Type.html b/polars_core/datatypes/struct.Int32Type.html index 899600346861..a57f6d1c085f 100644 --- a/polars_core/datatypes/struct.Int32Type.html +++ b/polars_core/datatypes/struct.Int32Type.html @@ -1,4 +1,4 @@ -Int32Type in polars_core::datatypes - Rust
pub struct Int32Type {}

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Self

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +Int32Type in polars_core::datatypes - Rust
pub struct Int32Type {}

Trait Implementations§

source§

impl Clone for Int32Type

source§

fn clone(&self) -> Int32Type

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 NamedFrom<Range<i32>, Int32Type> for ChunkedArray<Int32Type>

source§

fn new(name: &str, range: Range<i32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Self

Initialize by name and values.
source§

impl PolarsDataType for Int32Type

source§

impl PolarsNumericType for Int32Type

§

type Native = i32

source§

impl Copy for Int32Type

source§

impl PolarsIntegerType for Int32Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars_core/datatypes/struct.Int64Type.html b/polars_core/datatypes/struct.Int64Type.html index 50c59525e3eb..b4f6be512448 100644 --- a/polars_core/datatypes/struct.Int64Type.html +++ b/polars_core/datatypes/struct.Int64Type.html @@ -1,4 +1,4 @@ -Int64Type in polars_core::datatypes - Rust
pub struct Int64Type {}

Trait Implementations§

source§

impl Clone for Int64Type

source§

fn clone(&self) -> Int64Type

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 NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Self

Initialize by name and values.
source§

impl PolarsDataType for Int64Type

source§

impl PolarsNumericType for Int64Type

§

type Native = i64

source§

impl Copy for Int64Type

source§

impl PolarsIntegerType for Int64Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +Int64Type in polars_core::datatypes - Rust
pub struct Int64Type {}

Trait Implementations§

source§

impl Clone for Int64Type

source§

fn clone(&self) -> Int64Type

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 NamedFrom<Range<i64>, Int64Type> for ChunkedArray<Int64Type>

source§

fn new(name: &str, range: Range<i64>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Self

Initialize by name and values.
source§

impl PolarsDataType for Int64Type

source§

impl PolarsNumericType for Int64Type

§

type Native = i64

source§

impl Copy for Int64Type

source§

impl PolarsIntegerType for Int64Type

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars_core/datatypes/struct.StructChunked.html b/polars_core/datatypes/struct.StructChunked.html index 6618f2529dec..a6dc2597675a 100644 --- a/polars_core/datatypes/struct.StructChunked.html +++ b/polars_core/datatypes/struct.StructChunked.html @@ -6,7 +6,7 @@ fields. However this does save a lot of code and compile times.

Implementations§

source§

impl StructChunked

source

pub fn null_count(&self) -> usize

source

pub fn new(name: &str, fields: &[Series]) -> PolarsResult<Self>

source

pub fn rechunk(&mut self)

source

pub fn field_by_name(&self, name: &str) -> PolarsResult<Series>

Get access to one of this [StructChunked]’s fields

source

pub fn len(&self) -> usize

source

pub fn is_empty(&self) -> bool

source

pub fn ref_field(&self) -> &Field

Get a reference to the Field of array.

-
source

pub fn name(&self) -> &SmartString

source

pub fn fields(&self) -> &[Series]

source

pub fn fields_mut(&mut self) -> &mut Vec<Series>

source

pub fn rename(&mut self, name: &str)

source

pub fn unnest(self) -> DataFrame

Trait Implementations§

source§

impl AggList for StructChunked

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ChunkCompare<&StructChunked> for StructChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &StructChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &StructChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &StructChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &StructChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &StructChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &StructChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &StructChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, _rhs: &StructChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkFullNull for StructChunked

source§

fn full_null(name: &str, length: usize) -> StructChunked

source§

impl Clone for StructChunked

source§

fn clone(&self) -> StructChunked

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 From<StructChunked> for DataFrame

source§

fn from(ca: StructChunked) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a StructChunked

§

type Item = &'a [AnyValue<'a>]

The type of the elements being iterated over.
§

type IntoIter = StructIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoSeries for StructChunked

source§

impl IsIn for StructChunked

Available on crate feature is_in only.
source§

fn is_in(&self, other: &Series) -> PolarsResult<BooleanChunked>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl LogicalType for StructChunked

source§

fn get_any_value(&self, i: usize) -> PolarsResult<AnyValue<'_>>

Gets AnyValue from LogicalType

+
source

pub fn name(&self) -> &SmartString

source

pub fn fields(&self) -> &[Series]

source

pub fn fields_mut(&mut self) -> &mut Vec<Series>

source

pub fn rename(&mut self, name: &str)

source

pub fn unnest(self) -> DataFrame

Trait Implementations§

source§

impl AggList for StructChunked

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ChunkCompare<&StructChunked> for StructChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &StructChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &StructChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &StructChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &StructChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &StructChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &StructChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &StructChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, _rhs: &StructChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkFullNull for StructChunked

source§

fn full_null(name: &str, length: usize) -> StructChunked

source§

impl Clone for StructChunked

source§

fn clone(&self) -> StructChunked

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 From<StructChunked> for DataFrame

source§

fn from(ca: StructChunked) -> Self

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a StructChunked

§

type Item = &'a [AnyValue<'a>]

The type of the elements being iterated over.
§

type IntoIter = StructIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoSeries for StructChunked

source§

impl IsIn for StructChunked

Available on crate feature is_in only.
source§

fn is_in(&self, other: &Series) -> PolarsResult<BooleanChunked>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl LogicalType for StructChunked

source§

fn get_any_value(&self, i: usize) -> PolarsResult<AnyValue<'_>>

Gets AnyValue from LogicalType

source§

fn dtype(&self) -> &DataType

Get data type of ChunkedArray.
source§

unsafe fn get_any_value_unchecked(&self, i: usize) -> AnyValue<'_>

Safety Read more
source§

fn cast(&self, dtype: &DataType) -> PolarsResult<Series>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars_core/datatypes/trait.NumericNative.html b/polars_core/datatypes/trait.NumericNative.html index e679aea2105a..3e9775db9b30 100644 --- a/polars_core/datatypes/trait.NumericNative.html +++ b/polars_core/datatypes/trait.NumericNative.html @@ -1,3 +1,3 @@ NumericNative in polars_core::datatypes - Rust
\ No newline at end of file +}

Required Associated Types§

Implementations on Foreign Types§

source§

impl NumericNative for u16

source§

impl NumericNative for f64

source§

impl NumericNative for i32

source§

impl NumericNative for u64

source§

impl NumericNative for i16

source§

impl NumericNative for f32

source§

impl NumericNative for u8

source§

impl NumericNative for i64

source§

impl NumericNative for i8

source§

impl NumericNative for u32

Implementors§

\ No newline at end of file diff --git a/polars_core/datatypes/type.BinaryChunked.html b/polars_core/datatypes/type.BinaryChunked.html index 83fc73108e42..7ad4c39f06c5 100644 --- a/polars_core/datatypes/type.BinaryChunked.html +++ b/polars_core/datatypes/type.BinaryChunked.html @@ -1,7 +1,7 @@ BinaryChunked in polars_core::datatypes - Rust

Type Definition polars_core::datatypes::BinaryChunked

source ·
pub type BinaryChunked = ChunkedArray<BinaryType>;

Implementations§

source§

impl BinaryChunked

source

pub fn apply_mut<'a, F>(&'a self, f: F) -> Selfwhere F: FnMut(&'a [u8]) -> &'a [u8],

source§

impl BinaryChunked

source

pub unsafe fn to_utf8(&self) -> Utf8Chunked

Safety

Utf8 is not validated

-

Trait Implementations§

source§

impl Add<&[u8]> for &BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &[u8]) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<BinaryType>> for &BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AggList for BinaryChunked

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ChunkAggSeries for BinaryChunked

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for BinaryChunked

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +

Trait Implementations§

source§

impl Add<&[u8]> for &BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &[u8]) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&ChunkedArray<BinaryType>> for &BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BinaryType>> for BinaryChunked

§

type Output = ChunkedArray<BinaryType>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AggList for BinaryChunked

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ChunkAggSeries for BinaryChunked

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for BinaryChunked

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> PolarsResult<AnyValue<'_>>

Get a single value. Beware this is slow.
source§

impl<'a> ChunkApply<'a, &'a [u8], Cow<'a, [u8]>> for BinaryChunked

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(&'a [u8]) -> S::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive @@ -18,7 +18,7 @@ &self, f: &dyn Fn(&LargeBinaryArray) -> ArrayRef ) -> ChunkedArray<S>where - S: PolarsDataType,

Apply a kernel that outputs an array of different type.

source§

impl ChunkCast for BinaryChunked

source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&[u8]> for BinaryChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &[u8]) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &[u8]) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &[u8]) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &[u8]) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &[u8]) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &[u8]) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &[u8]) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &[u8]) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for BinaryChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &BinaryChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &BinaryChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &BinaryChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &BinaryChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkExpandAtIndex<BinaryType> for BinaryChunked

source§

fn new_from_index(&self, index: usize, length: usize) -> BinaryChunked

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkFillNullValue<&[u8]> for BinaryChunked

source§

fn fill_null_with_values(&self, value: &[u8]) -> PolarsResult<Self>

Replace None values with a give value T.
source§

impl ChunkFilter<BinaryType> for BinaryChunked

source§

fn filter( + S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for BinaryChunked

source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&[u8]> for BinaryChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &[u8]) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &[u8]) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &[u8]) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &[u8]) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &[u8]) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &[u8]) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &[u8]) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &[u8]) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&ChunkedArray<BinaryType>> for BinaryChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &BinaryChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &BinaryChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &BinaryChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &BinaryChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &BinaryChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkExpandAtIndex<BinaryType> for BinaryChunked

source§

fn new_from_index(&self, index: usize, length: usize) -> BinaryChunked

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkFillNullValue<&[u8]> for BinaryChunked

source§

fn fill_null_with_values(&self, value: &[u8]) -> PolarsResult<Self>

Replace None values with a give value T.
source§

impl ChunkFilter<BinaryType> for BinaryChunked

source§

fn filter( &self, filter: &BooleanChunked ) -> PolarsResult<ChunkedArray<BinaryType>>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<'a> ChunkFull<&'a [u8]> for BinaryChunked

source§

fn full(name: &str, value: &'a [u8], length: usize) -> Self

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for BinaryChunked

source§

fn full_null(name: &str, length: usize) -> Self

source§

impl ChunkReverse for BinaryChunked

source§

fn reverse(&self) -> Self

Return a reversed version of this array.
source§

impl<'a> ChunkSet<'a, &'a [u8], Vec<u8, Global>> for BinaryChunked

source§

fn set_at_idx<I: IntoIterator<Item = IdxSize>>( @@ -68,8 +68,8 @@ other: &BinaryChunked ) -> PolarsResult<BinaryChunked>

Create a new ChunkedArray with values from self where the mask evaluates true and values from other where the mask evaluates false
source§

impl Debug for BinaryChunked

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<(&str, BinaryArray<i64>)> for BinaryChunked

source§

fn from(tpl: (&str, BinaryArray<i64>)) -> Self

Converts to this type from the input type.
source§

impl<Ptr> FromIterator<Option<Ptr>> for BinaryChunkedwhere - Ptr: AsRef<[u8]>,

source§

fn from_iter<I: IntoIterator<Item = Option<Ptr>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for BinaryChunkedwhere - Ptr: PolarsAsRef<[u8]>,

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for BinaryChunkedwhere + Ptr: AsRef<[u8]>,

source§

fn from_iter<I: IntoIterator<Item = Option<Ptr>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for BinaryChunkedwhere + Ptr: PolarsAsRef<[u8]>,

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for BinaryChunkedwhere Ptr: AsRef<[u8]>,

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Option<Ptr>>>( iter: I ) -> Self

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for BinaryChunkedwhere @@ -79,8 +79,8 @@ sorted: bool ) -> PolarsResult<GroupsProxy>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<'a> IntoIterator for &'a BinaryChunked

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BinaryType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoTakeRandom<'a> for &'a BinaryChunked

§

type Item = &'a [u8]

§

type TakeRandom = TakeRandBranch2<BinaryTakeRandomSingleChunk<'a>, BinaryTakeRandom<'a>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl IsIn for BinaryChunked

Available on crate feature is_in only.
source§

fn is_in(&self, other: &Series) -> PolarsResult<BooleanChunked>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl<'a, T: AsRef<[&'a [u8]]>> NamedFrom<T, [&'a [u8]]> for BinaryChunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Cow<'a, [u8]>]>> NamedFrom<T, [Cow<'a, [u8]>]> for BinaryChunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<&'a [u8]>]>> NamedFrom<T, [Option<&'a [u8]>]> for BinaryChunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<Cow<'a, [u8]>>]>> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for BinaryChunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<B> NewChunkedArray<BinaryType, B> for BinaryChunkedwhere +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl<'a> IntoIterator for &'a BinaryChunked

§

type Item = Option<&'a [u8]>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BinaryType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoTakeRandom<'a> for &'a BinaryChunked

§

type Item = &'a [u8]

§

type TakeRandom = TakeRandBranch2<BinaryTakeRandomSingleChunk<'a>, BinaryTakeRandom<'a>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl IsIn for BinaryChunked

Available on crate feature is_in only.
source§

fn is_in(&self, other: &Series) -> PolarsResult<BooleanChunked>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl<'a, T: AsRef<[&'a [u8]]>> NamedFrom<T, [&'a [u8]]> for BinaryChunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Cow<'a, [u8]>]>> NamedFrom<T, [Cow<'a, [u8]>]> for BinaryChunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<&'a [u8]>]>> NamedFrom<T, [Option<&'a [u8]>]> for BinaryChunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<Cow<'a, [u8]>>]>> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for BinaryChunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<B> NewChunkedArray<BinaryType, B> for BinaryChunkedwhere B: AsRef<[u8]>,

source§

fn from_iter_values(name: &str, it: impl Iterator<Item = B>) -> Self

Create a new ChunkedArray from an iterator.

-
source§

fn from_slice(name: &str, v: &[B]) -> Self

source§

fn from_slice_options(name: &str, opt_v: &[Option<B>]) -> Self

source§

fn from_iter_options(name: &str, it: impl Iterator<Item = Option<B>>) -> Self

Create a new ChunkedArray from an iterator.
source§

impl<'a> TakeRandom for &'a BinaryChunked

§

type Item = &'a [u8]

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where +

source§

fn from_slice(name: &str, v: &[B]) -> Self

source§

fn from_slice_options(name: &str, opt_v: &[Option<B>]) -> Self

source§

fn from_iter_options(name: &str, it: impl Iterator<Item = Option<B>>) -> Self

Create a new ChunkedArray from an iterator.
source§

impl<'a> TakeRandom for &'a BinaryChunked

§

type Item = &'a [u8]

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl ValueSize for BinaryChunked

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy
source§

impl VecHash for BinaryChunked

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

\ No newline at end of file diff --git a/polars_core/datatypes/type.BooleanChunked.html b/polars_core/datatypes/type.BooleanChunked.html index 639bdad24250..0edacfceb25c 100644 --- a/polars_core/datatypes/type.BooleanChunked.html +++ b/polars_core/datatypes/type.BooleanChunked.html @@ -11,7 +11,7 @@
Safety

The lifetime will be bound to the lifetime of the slice. This will not be checked by the borrowchecker.

source§

impl BooleanChunked

source

pub fn rand_bernoulli(name: &str, length: usize, p: f64) -> PolarsResult<Self>

Available on crate feature random only.

Create ChunkedArray with samples from a Bernoulli distribution.

-

Trait Implementations§

source§

impl Add<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AggList for BooleanChunked

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl BitAnd<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl ChunkAggSeries for BooleanChunked

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for BooleanChunked

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +

Trait Implementations§

source§

impl Add<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<UInt32Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AggList for BooleanChunked

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl BitAnd<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitAnd<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitOr<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitOr<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitXor<&ChunkedArray<BooleanType>> for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor<ChunkedArray<BooleanType>> for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl ChunkAggSeries for BooleanChunked

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for BooleanChunked

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> PolarsResult<AnyValue<'_>>

Get a single value. Beware this is slow.
source§

impl<'a> ChunkApply<'a, bool, bool> for BooleanChunked

source§

fn apply_cast_numeric<F, S>(&self, f: F) -> ChunkedArray<S>where F: Fn(bool) -> S::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive @@ -28,7 +28,7 @@
Safety
&self, f: &dyn Fn(&BooleanArray) -> ArrayRef ) -> ChunkedArray<S>where - S: PolarsDataType,
Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for BooleanChunked

source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for BooleanChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &BooleanChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &BooleanChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &BooleanChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &BooleanChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkExpandAtIndex<BooleanType> for BooleanChunked

source§

fn new_from_index(&self, index: usize, length: usize) -> BooleanChunked

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkFillNullValue<bool> for BooleanChunked

source§

fn fill_null_with_values(&self, value: bool) -> PolarsResult<Self>

Replace None values with a give value T.
source§

impl ChunkFilter<BooleanType> for BooleanChunked

source§

fn filter( + S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for BooleanChunked

source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&ChunkedArray<BooleanType>> for BooleanChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &BooleanChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &BooleanChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &BooleanChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &BooleanChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &BooleanChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkExpandAtIndex<BooleanType> for BooleanChunked

source§

fn new_from_index(&self, index: usize, length: usize) -> BooleanChunked

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkFillNullValue<bool> for BooleanChunked

source§

fn fill_null_with_values(&self, value: bool) -> PolarsResult<Self>

Replace None values with a give value T.
source§

impl ChunkFilter<BooleanType> for BooleanChunked

source§

fn filter( &self, filter: &BooleanChunked ) -> PolarsResult<ChunkedArray<BooleanType>>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFull<bool> for BooleanChunked

source§

fn full(name: &str, value: bool, length: usize) -> Self

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for BooleanChunked

source§

fn full_null(name: &str, length: usize) -> Self

source§

impl ChunkQuantile<bool> for BooleanChunked

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. @@ -75,20 +75,20 @@
Safety
mask: &BooleanChunked, other: &BooleanChunked ) -> PolarsResult<BooleanChunked>
Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl From<(&str, BooleanArray)> for BooleanChunked

source§

fn from(tpl: (&str, BooleanArray)) -> Self

Converts to this type from the input type.
source§

impl From<BooleanArray> for BooleanChunked

source§

fn from(arr: BooleanArray) -> Self

Converts to this type from the input type.
source§

impl FromIterator<bool> for BooleanChunked

source§

fn from_iter<I: IntoIterator<Item = bool>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIteratorReversed<Option<bool>> for BooleanChunked

source§

fn from_trusted_len_iter_rev<I: TrustedLen<Item = Option<bool>>>( +from other where the mask evaluates false

source§

impl From<(&str, BooleanArray)> for BooleanChunked

source§

fn from(tpl: (&str, BooleanArray)) -> Self

Converts to this type from the input type.
source§

impl From<BooleanArray> for BooleanChunked

source§

fn from(arr: BooleanArray) -> Self

Converts to this type from the input type.
source§

impl FromIterator<bool> for BooleanChunked

source§

fn from_iter<I: IntoIterator<Item = bool>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIteratorReversed<Option<bool>> for BooleanChunked

source§

fn from_trusted_len_iter_rev<I: TrustedLen<Item = Option<bool>>>( iter: I -) -> Self

source§

impl FromParallelIterator<Option<bool>> for BooleanChunked

source§

fn from_par_iter<I: IntoParallelIterator<Item = Option<bool>>>(iter: I) -> Self

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<bool> for BooleanChunked

source§

fn from_par_iter<I: IntoParallelIterator<Item = bool>>(iter: I) -> Self

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromTrustedLenIterator<bool> for BooleanChunked

source§

fn from_iter_trusted_length<I: IntoIterator<Item = bool>>(iter: I) -> Selfwhere +) -> Self

source§

impl FromParallelIterator<Option<bool>> for BooleanChunked

source§

fn from_par_iter<I: IntoParallelIterator<Item = Option<bool>>>(iter: I) -> Self

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromParallelIterator<bool> for BooleanChunked

source§

fn from_par_iter<I: IntoParallelIterator<Item = bool>>(iter: I) -> Self

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromTrustedLenIterator<bool> for BooleanChunked

source§

fn from_iter_trusted_length<I: IntoIterator<Item = bool>>(iter: I) -> Selfwhere I::IntoIter: TrustedLen,

source§

impl IntoGroupsProxy for BooleanChunked

source§

fn group_tuples( &self, multithreaded: bool, sorted: bool ) -> PolarsResult<GroupsProxy>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<'a> IntoIterator for &'a BooleanChunked

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BooleanType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoTakeRandom<'a> for &'a BooleanChunked

§

type Item = bool

§

type TakeRandom = TakeRandBranch2<BoolTakeRandomSingleChunk<'a>, BoolTakeRandom<'a>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl IsIn for BooleanChunked

Available on crate feature is_in only.
source§

fn is_in(&self, other: &Series) -> PolarsResult<BooleanChunked>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl NewChunkedArray<BooleanType, bool> for BooleanChunked

source§

fn from_iter_values( +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl<'a> IntoIterator for &'a BooleanChunked

§

type Item = Option<bool>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<BooleanType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoTakeRandom<'a> for &'a BooleanChunked

§

type Item = bool

§

type TakeRandom = TakeRandBranch2<BoolTakeRandomSingleChunk<'a>, BoolTakeRandom<'a>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl IsIn for BooleanChunked

Available on crate feature is_in only.
source§

fn is_in(&self, other: &Series) -> PolarsResult<BooleanChunked>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl NewChunkedArray<BooleanType, bool> for BooleanChunked

source§

fn from_iter_values( name: &str, it: impl Iterator<Item = bool> ) -> ChunkedArray<BooleanType>

Create a new ChunkedArray from an iterator.

source§

fn from_slice(name: &str, v: &[bool]) -> Self

source§

fn from_slice_options(name: &str, opt_v: &[Option<bool>]) -> Self

source§

fn from_iter_options( name: &str, it: impl Iterator<Item = Option<bool>> -) -> ChunkedArray<BooleanType>

Create a new ChunkedArray from an iterator.
source§

impl Not for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl Not for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl<'a> TakeRandom for &'a BooleanChunked

§

type Item = bool

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for BooleanChunked

§

type Item = bool

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl VecHash for BooleanChunked

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

\ No newline at end of file +) -> ChunkedArray<BooleanType>
Create a new ChunkedArray from an iterator.
source§

impl Not for &BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl Not for BooleanChunked

§

type Output = ChunkedArray<BooleanType>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl<'a> TakeRandom for &'a BooleanChunked

§

type Item = bool

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl TakeRandom for BooleanChunked

§

type Item = bool

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl VecHash for BooleanChunked

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

\ No newline at end of file diff --git a/polars_core/datatypes/type.ListChunked.html b/polars_core/datatypes/type.ListChunked.html index 0d705d6414d3..520a674f4cc0 100644 --- a/polars_core/datatypes/type.ListChunked.html +++ b/polars_core/datatypes/type.ListChunked.html @@ -51,7 +51,7 @@
Warning
F: Fn(Option<Series>) -> Option<Series> + Copy,
Apply a closure elementwise including null values.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where F: Fn(Option<Series>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl ChunkCast for ListChunked

We cannot cast anything to or from List/LargeList So this implementation casts the inner type

-
source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ListChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ListChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &ListChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ListChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &ListChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ListChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ListChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ListChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ListChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkExpandAtIndex<ListType> for ListChunked

source§

fn new_from_index(&self, index: usize, length: usize) -> ListChunked

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for ListChunked

source§

fn explode_and_offsets(&self) -> PolarsResult<(Series, OffsetsBuffer<i64>)>

source§

fn explode(&self) -> PolarsResult<Series>

source§

impl ChunkFilter<ListType> for ListChunked

source§

fn filter(&self, filter: &BooleanChunked) -> PolarsResult<ListChunked>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFull<&Series> for ListChunked

source§

fn full(name: &str, value: &Series, length: usize) -> ListChunked

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for ListChunked

source§

fn full_null(name: &str, length: usize) -> ListChunked

source§

impl ChunkQuantile<Series> for ListChunked

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. +
source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&ChunkedArray<ListType>> for ListChunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &ListChunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &ListChunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &ListChunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &ListChunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, _rhs: &ListChunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, _rhs: &ListChunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, _rhs: &ListChunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, _rhs: &ListChunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkExpandAtIndex<ListType> for ListChunked

source§

fn new_from_index(&self, index: usize, length: usize) -> ListChunked

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for ListChunked

source§

impl ChunkFilter<ListType> for ListChunked

source§

fn filter(&self, filter: &BooleanChunked) -> PolarsResult<ListChunked>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl ChunkFull<&Series> for ListChunked

source§

fn full(name: &str, value: &Series, length: usize) -> ListChunked

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for ListChunked

source§

fn full_null(name: &str, length: usize) -> ListChunked

source§

impl ChunkQuantile<Series> for ListChunked

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, @@ -78,16 +78,16 @@

Warning
mask: &BooleanChunked, other: &ListChunked ) -> PolarsResult<ListChunked>
Create a new ChunkedArray with values from self where the mask evaluates true and values -from other where the mask evaluates false
source§

impl Debug for ListChunked

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl FromIterator<Option<Box<dyn Array, Global>>> for ListChunked

source§

fn from_iter<I: IntoIterator<Item = Option<Box<dyn Array>>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Series>> for ListChunked

source§

fn from_iter<I: IntoIterator<Item = Option<Series>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ListChunkedwhere +from other where the mask evaluates false

source§

impl Debug for ListChunked

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl FromIterator<Option<Box<dyn Array, Global>>> for ListChunked

source§

fn from_iter<I: IntoIterator<Item = Option<Box<dyn Array>>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<Series>> for ListChunked

source§

fn from_iter<I: IntoIterator<Item = Option<Series>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for ListChunkedwhere Ptr: Borrow<Series>,

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromParallelIterator<Option<Series>> for ListChunked

source§

fn from_par_iter<I>(iter: I) -> Selfwhere - I: IntoParallelIterator<Item = Option<Series>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromTrustedLenIterator<Option<Series>> for ListChunked

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Option<Series>>>( + I: IntoParallelIterator<Item = Option<Series>>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl FromTrustedLenIterator<Option<Series>> for ListChunked

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Option<Series>>>( iter: I ) -> Self

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for ListChunkedwhere - Ptr: Borrow<Series>,

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

source§

impl IntoGroupsProxy for ListChunked

source§

fn group_tuples<'a>( + Ptr: Borrow<Series>,

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

source§

impl IntoGroupsProxy for ListChunked

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> PolarsResult<GroupsProxy>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<'a> IntoIterator for &'a ListChunked

§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoTakeRandom<'a> for &'a ListChunked

§

type Item = Series

§

type TakeRandom = TakeRandBranch2<ListTakeRandomSingleChunk<'a>, ListTakeRandom<'a>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl TakeRandom for ListChunked

§

type Item = Series

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl ValueSize for ListChunked

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. +* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<'a> IntoIterator for &'a ListChunked

§

type Item = Option<Series>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<ListType> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoTakeRandom<'a> for &'a ListChunked

§

type Item = Series

§

type TakeRandom = TakeRandBranch2<ListTakeRandomSingleChunk<'a>, ListTakeRandom<'a>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl TakeRandom for ListChunked

§

type Item = Series

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl ValueSize for ListChunked

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy
\ No newline at end of file diff --git a/polars_core/datatypes/type.Utf8Chunked.html b/polars_core/datatypes/type.Utf8Chunked.html index 500c444cd15d..ab67ad60e479 100644 --- a/polars_core/datatypes/type.Utf8Chunked.html +++ b/polars_core/datatypes/type.Utf8Chunked.html @@ -1,7 +1,7 @@ Utf8Chunked in polars_core::datatypes - Rust

Type Definition polars_core::datatypes::Utf8Chunked

source ·
pub type Utf8Chunked = ChunkedArray<Utf8Type>;

Implementations§

source§

impl Utf8Chunked

source

pub fn apply_mut<'a, F>(&'a self, f: F) -> Selfwhere F: FnMut(&'a str) -> &'a str,

source§

impl Utf8Chunked

source§

impl Utf8Chunked

source

pub fn par_iter_indexed( &self -) -> impl IndexedParallelIterator<Item = Option<&str>>

source

pub fn par_iter(&self) -> impl ParallelIterator<Item = Option<&str>> + '_

Trait Implementations§

source§

impl Add<&ChunkedArray<Utf8Type>> for &Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&str> for &Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &str) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AggList for Utf8Chunked

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ChunkAggSeries for Utf8Chunked

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for Utf8Chunked

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. +) -> impl IndexedParallelIterator<Item = Option<&str>>
source

pub fn par_iter(&self) -> impl ParallelIterator<Item = Option<&str>> + '_

Trait Implementations§

source§

impl Add<&ChunkedArray<Utf8Type>> for &Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&str> for &Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: &str) -> Self::Output

Performs the + operation. Read more
source§

impl Add<ChunkedArray<Utf8Type>> for Utf8Chunked

§

type Output = ChunkedArray<Utf8Type>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AggList for Utf8Chunked

source§

unsafe fn agg_list(&self, groups: &GroupsProxy) -> Series

Safety Read more
source§

impl ChunkAggSeries for Utf8Chunked

source§

fn sum_as_series(&self) -> Series

Get the sum of the ChunkedArray as a new Series of length 1.
source§

fn max_as_series(&self) -> Series

Get the max of the ChunkedArray as a new Series of length 1.
source§

fn min_as_series(&self) -> Series

Get the min of the ChunkedArray as a new Series of length 1.
source§

fn prod_as_series(&self) -> Series

Get the product of the ChunkedArray as a new Series of length 1.
source§

impl ChunkAnyValue for Utf8Chunked

source§

unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>

Get a single value. Beware this is slow. If you need to use this slightly performant, cast Categorical to UInt32 Read more
source§

fn get_any_value(&self, index: usize) -> PolarsResult<AnyValue<'_>>

Get a single value. Beware this is slow.
source§

impl<'a> ChunkApply<'a, &'a str, Cow<'a, str>> for Utf8Chunked

source§

fn apply_cast_numeric<F, S>(&'a self, f: F) -> ChunkedArray<S>where F: Fn(&'a str) -> S::Native + Copy, S: PolarsNumericType,

Apply a closure elementwise and cast to a Numeric ChunkedArray. This is fastest when the null check branching is more expensive @@ -18,7 +18,7 @@ &self, f: &dyn Fn(&LargeStringArray) -> ArrayRef ) -> ChunkedArray<S>where - S: PolarsDataType,
Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for Utf8Chunked

source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&ChunkedArray<Utf8Type>> for Utf8Chunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &Utf8Chunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &Utf8Chunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &Utf8Chunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &Utf8Chunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&str> for Utf8Chunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &str) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkExpandAtIndex<Utf8Type> for Utf8Chunked

source§

fn new_from_index(&self, index: usize, length: usize) -> Utf8Chunked

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for Utf8Chunked

source§

impl ChunkFilter<Utf8Type> for Utf8Chunked

source§

fn filter( + S: PolarsDataType,

Apply a kernel that outputs an array of different type.
source§

impl ChunkCast for Utf8Chunked

source§

fn cast(&self, data_type: &DataType) -> PolarsResult<Series>

Cast a [ChunkedArray] to [DataType]
source§

unsafe fn cast_unchecked(&self, data_type: &DataType) -> PolarsResult<Series>

Does not check if the cast is a valid one and may over/underflow Read more
source§

impl ChunkCompare<&ChunkedArray<Utf8Type>> for Utf8Chunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &Utf8Chunked) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &Utf8Chunked) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &Utf8Chunked) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &Utf8Chunked) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &Utf8Chunked) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkCompare<&str> for Utf8Chunked

§

type Item = ChunkedArray<BooleanType>

source§

fn equal(&self, rhs: &str) -> BooleanChunked

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> BooleanChunked

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> BooleanChunked

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> BooleanChunked

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> BooleanChunked

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> BooleanChunked

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> BooleanChunked

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> BooleanChunked

Less than or equal comparison
source§

impl ChunkExpandAtIndex<Utf8Type> for Utf8Chunked

source§

fn new_from_index(&self, index: usize, length: usize) -> Utf8Chunked

Create a new ChunkedArray filled with values at that index.
source§

impl ChunkExplode for Utf8Chunked

source§

impl ChunkFilter<Utf8Type> for Utf8Chunked

source§

fn filter( &self, filter: &BooleanChunked ) -> PolarsResult<ChunkedArray<Utf8Type>>

Filter values in the ChunkedArray with a boolean mask. Read more
source§

impl<'a> ChunkFull<&'a str> for Utf8Chunked

source§

fn full(name: &str, value: &'a str, length: usize) -> Self

Create a ChunkedArray with a single value.
source§

impl ChunkFullNull for Utf8Chunked

source§

fn full_null(name: &str, length: usize) -> Self

source§

impl ChunkQuantile<String> for Utf8Chunked

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. @@ -72,19 +72,19 @@ from other where the mask evaluates false
source§

impl Debug for Utf8Chunked

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<(&str, Utf8Array<i64>)> for Utf8Chunked

source§

fn from(tpl: (&str, Utf8Array<i64>)) -> Self

Converts to this type from the input type.
source§

impl<Ptr> FromIterator<Option<Ptr>> for Utf8Chunkedwhere Ptr: AsRef<str>,

source§

fn from_iter<I: IntoIterator<Item = Option<Ptr>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<Ptr> FromIterator<Ptr> for Utf8Chunkedwhere Ptr: PolarsAsRef<str>,

source§

fn from_iter<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<Ptr> FromParallelIterator<Option<Ptr>> for Utf8Chunkedwhere - Ptr: AsRef<str> + Send + Sync,

source§

fn from_par_iter<I: IntoParallelIterator<Item = Option<Ptr>>>(iter: I) -> Self

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromParallelIterator<Ptr> for Utf8Chunkedwhere - Ptr: PolarsAsRef<str> + Send + Sync,

source§

fn from_par_iter<I: IntoParallelIterator<Item = Ptr>>(iter: I) -> Self

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for Utf8Chunkedwhere - Ptr: AsRef<str>,

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Option<Ptr>>>( + Ptr: AsRef<str> + Send + Sync,

source§

fn from_par_iter<I: IntoParallelIterator<Item = Option<Ptr>>>(iter: I) -> Self

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromParallelIterator<Ptr> for Utf8Chunkedwhere + Ptr: PolarsAsRef<str> + Send + Sync,

source§

fn from_par_iter<I: IntoParallelIterator<Item = Ptr>>(iter: I) -> Self

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for Utf8Chunkedwhere + Ptr: AsRef<str>,

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Option<Ptr>>>( iter: I ) -> Self

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for Utf8Chunkedwhere - Ptr: PolarsAsRef<str>,

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

source§

impl IntoGroupsProxy for Utf8Chunked

source§

fn group_tuples<'a>( + Ptr: PolarsAsRef<str>,

source§

fn from_iter_trusted_length<I: IntoIterator<Item = Ptr>>(iter: I) -> Self

source§

impl IntoGroupsProxy for Utf8Chunked

source§

fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool ) -> PolarsResult<GroupsProxy>

Create the tuples need for a groupby operation. * The first value in the tuple is the first index of the group. -* The second value in the tuple is are the indexes of the groups including the first value.
source§

impl<'a> IntoIterator for &'a Utf8Chunked

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<Utf8Type> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoTakeRandom<'a> for &'a Utf8Chunked

§

type Item = &'a str

§

type TakeRandom = TakeRandBranch2<Utf8TakeRandomSingleChunk<'a>, Utf8TakeRandom<'a>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl IsIn for Utf8Chunked

Available on crate feature is_in only.
source§

fn is_in(&self, other: &Series) -> PolarsResult<BooleanChunked>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl<'a, T: AsRef<[&'a str]>> NamedFrom<T, [&'a str]> for Utf8Chunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Cow<'a, str>]>> NamedFrom<T, [Cow<'a, str>]> for Utf8Chunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<&'a str>]>> NamedFrom<T, [Option<&'a str>]> for Utf8Chunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<Cow<'a, str>>]>> NamedFrom<T, [Option<Cow<'a, str>>]> for Utf8Chunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<S> NewChunkedArray<Utf8Type, S> for Utf8Chunkedwhere +* The second value in the tuple is are the indexes of the groups including the first value.

source§

impl<'a> IntoIterator for &'a Utf8Chunked

§

type Item = Option<&'a str>

The type of the elements being iterated over.
§

type IntoIter = Box<dyn PolarsIterator<Item = <&'a ChunkedArray<Utf8Type> as IntoIterator>::Item> + 'a, Global>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoTakeRandom<'a> for &'a Utf8Chunked

§

type Item = &'a str

§

type TakeRandom = TakeRandBranch2<Utf8TakeRandomSingleChunk<'a>, Utf8TakeRandom<'a>>

source§

fn take_rand(&self) -> Self::TakeRandom

Create a type that implements TakeRandom.
source§

impl IsIn for Utf8Chunked

Available on crate feature is_in only.
source§

fn is_in(&self, other: &Series) -> PolarsResult<BooleanChunked>

Check if elements of this array are in the right Series, or List values of the right Series.
source§

impl<'a, T: AsRef<[&'a str]>> NamedFrom<T, [&'a str]> for Utf8Chunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Cow<'a, str>]>> NamedFrom<T, [Cow<'a, str>]> for Utf8Chunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<&'a str>]>> NamedFrom<T, [Option<&'a str>]> for Utf8Chunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<Cow<'a, str>>]>> NamedFrom<T, [Option<Cow<'a, str>>]> for Utf8Chunked

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<S> NewChunkedArray<Utf8Type, S> for Utf8Chunkedwhere S: AsRef<str>,

source§

fn from_iter_values(name: &str, it: impl Iterator<Item = S>) -> Self

Create a new ChunkedArray from an iterator.

source§

fn from_slice(name: &str, v: &[S]) -> Self

source§

fn from_slice_options(name: &str, opt_v: &[Option<S>]) -> Self

source§

fn from_iter_options(name: &str, it: impl Iterator<Item = Option<S>>) -> Self

Create a new ChunkedArray from an iterator.
source§

impl<'a> TakeRandom for &'a Utf8Chunked

§

type Item = &'a str

source§

fn get(&self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(&self, index: usize) -> Option<Self::Item>where - Self: Sized,

Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandomUtf8 for &'a Utf8Chunked

§

type Item = &'a str

source§

fn get(self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl ValueSize for Utf8Chunked

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. + Self: Sized,
Get a value by index and ignore the null bit. Read more
source§

impl<'a> TakeRandomUtf8 for &'a Utf8Chunked

§

type Item = &'a str

source§

fn get(self, index: usize) -> Option<Self::Item>

Get a nullable value by index. Read more
source§

unsafe fn get_unchecked(self, index: usize) -> Option<Self::Item>

Get a value by index and ignore the null bit. Read more
source§

impl ValueSize for Utf8Chunked

source§

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy
source§

impl VecHash for Utf8Chunked

source§

fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64>)

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine(&self, random_state: RandomState, hashes: &mut [u64])

\ No newline at end of file diff --git a/polars_core/error/enum.ArrowError.html b/polars_core/error/enum.ArrowError.html index b7d58c59f52d..cba3aef23b81 100644 --- a/polars_core/error/enum.ArrowError.html +++ b/polars_core/error/enum.ArrowError.html @@ -16,7 +16,7 @@ The solution is usually to use a higher-capacity container-backing type.

§

OutOfSpec(String)

Whenever incoming data from the C data interface, IPC or Flight does not fulfil the Arrow specification.

Implementations§

source§

impl Error

source

pub fn from_external_error(error: impl Error + Send + Sync + 'static) -> Error

Wraps an external error in an Error.

-

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars_core/error/enum.PolarsError.html b/polars_core/error/enum.PolarsError.html index 30d637cc21cd..84c93d1a7e91 100644 --- a/polars_core/error/enum.PolarsError.html +++ b/polars_core/error/enum.PolarsError.html @@ -11,7 +11,7 @@ ShapeMismatch(ErrString), StringCacheMismatch(ErrString), StructFieldNotFound(ErrString), -}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars_core/frame/groupby/enum.GroupByMethod.html b/polars_core/frame/groupby/enum.GroupByMethod.html index 2eb032646080..6bbbb32edc7a 100644 --- a/polars_core/frame/groupby/enum.GroupByMethod.html +++ b/polars_core/frame/groupby/enum.GroupByMethod.html @@ -15,7 +15,7 @@ Implode, Std(u8), Var(u8), -
}

Variants§

§

Min

§

NanMin

§

Max

§

NanMax

§

Median

§

Mean

§

First

§

Last

§

Sum

§

Groups

§

NUnique

§

Quantile(f64, QuantileInterpolOptions)

§

Count

§

Implode

§

Std(u8)

§

Var(u8)

Trait Implementations§

source§

impl Clone for GroupByMethod

source§

fn clone(&self) -> GroupByMethod

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 GroupByMethod

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for GroupByMethod

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for GroupByMethod

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

}

Variants§

§

Min

§

NanMin

§

Max

§

NanMax

§

Median

§

Mean

§

First

§

Last

§

Sum

§

Groups

§

NUnique

§

Quantile(f64, QuantileInterpolOptions)

§

Count

§

Implode

§

Std(u8)

§

Var(u8)

Trait Implementations§

source§

impl Clone for GroupByMethod

source§

fn clone(&self) -> GroupByMethod

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 GroupByMethod

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for GroupByMethod

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for GroupByMethod

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars_core/frame/groupby/struct.GroupsIdx.html b/polars_core/frame/groupby/struct.GroupsIdx.html index 26ba4afaddb4..5f895de45580 100644 --- a/polars_core/frame/groupby/struct.GroupsIdx.html +++ b/polars_core/frame/groupby/struct.GroupsIdx.html @@ -1,6 +1,6 @@ GroupsIdx in polars_core::frame::groupby - Rust
pub struct GroupsIdx { /* private fields */ }
Expand description

Indexes of the groups, the first index is stored separately. this make sorting fast.

-

Implementations§

source§

impl GroupsIdx

source

pub fn new(first: Vec<IdxSize>, all: Vec<Vec<IdxSize>>, sorted: bool) -> Self

source

pub fn sort(&mut self)

source

pub fn is_sorted_flag(&self) -> bool

source

pub fn iter(&self) -> Zip<Copied<Iter<'_, IdxSize>>, Iter<'_, Vec<IdxSize>>>

source

pub fn all(&self) -> &[Vec<IdxSize>]

source

pub fn first(&self) -> &[IdxSize]

source

pub fn first_mut(&mut self) -> &mut Vec<IdxSize>

Trait Implementations§

source§

impl Clone for GroupsIdx

source§

fn clone(&self) -> GroupsIdx

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 GroupsIdx

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GroupsIdx

source§

fn default() -> GroupsIdx

Returns the “default value” for a type. Read more
source§

impl Drop for GroupsIdx

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<GroupsIdx> for GroupsProxy

source§

fn from(groups: GroupsIdx) -> Self

Converts to this type from the input type.
source§

impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<(Vec<IdxSize>, Vec<Vec<IdxSize>>)>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<IdxItem>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx

source§

fn from(v: Vec<Vec<IdxItem>>) -> Self

Converts to this type from the input type.
source§

impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_iter<T: IntoIterator<Item = IdxItem>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl FromParallelIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_par_iter<I>(par_iter: I) -> Selfwhere +

Implementations§

source§

impl GroupsIdx

source

pub fn new(first: Vec<IdxSize>, all: Vec<Vec<IdxSize>>, sorted: bool) -> Self

source

pub fn sort(&mut self)

source

pub fn is_sorted_flag(&self) -> bool

source

pub fn iter(&self) -> Zip<Copied<Iter<'_, IdxSize>>, Iter<'_, Vec<IdxSize>>>

source

pub fn all(&self) -> &[Vec<IdxSize>]

source

pub fn first(&self) -> &[IdxSize]

source

pub fn first_mut(&mut self) -> &mut Vec<IdxSize>

Trait Implementations§

source§

impl Clone for GroupsIdx

source§

fn clone(&self) -> GroupsIdx

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 GroupsIdx

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GroupsIdx

source§

fn default() -> GroupsIdx

Returns the “default value” for a type. Read more
source§

impl Drop for GroupsIdx

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl From<GroupsIdx> for GroupsProxy

source§

fn from(groups: GroupsIdx) -> Self

Converts to this type from the input type.
source§

impl From<Vec<(Vec<u32, Global>, Vec<Vec<u32, Global>, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<(Vec<IdxSize>, Vec<Vec<IdxSize>>)>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<(u32, Vec<u32, Global>), Global>> for GroupsIdx

source§

fn from(v: Vec<IdxItem>) -> Self

Converts to this type from the input type.
source§

impl From<Vec<Vec<(u32, Vec<u32, Global>), Global>, Global>> for GroupsIdx

source§

fn from(v: Vec<Vec<IdxItem>>) -> Self

Converts to this type from the input type.
source§

impl FromIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_iter<T: IntoIterator<Item = IdxItem>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl FromParallelIterator<(u32, Vec<u32, Global>)> for GroupsIdx

source§

fn from_par_iter<I>(par_iter: I) -> Selfwhere I: IntoParallelIterator<Item = IdxItem>,

Creates an instance of the collection from the parallel iterator par_iter. Read more
source§

impl<'a> IntoIterator for &'a GroupsIdx

§

type Item = (u32, &'a Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for GroupsIdx

§

type Item = (u32, Vec<u32, Global>)

The type of the elements being iterated over.
§

type IntoIter = Zip<IntoIter<u32, Global>, IntoIter<Vec<u32, Global>, Global>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoParallelIterator for &'a GroupsIdx

§

type Iter = Zip<Copied<Iter<'a, u32>>, Iter<'a, Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, &'a Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> Self::Iter

Converts self into a parallel iterator. Read more
source§

impl IntoParallelIterator for GroupsIdx

§

type Iter = Zip<IntoIter<u32>, IntoIter<Vec<u32, Global>>>

The parallel iterator type that will be created.
§

type Item = (u32, Vec<u32, Global>)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> Self::Iter

Converts self into a parallel iterator. Read more
source§

impl PartialEq<GroupsIdx> for GroupsIdx

source§

fn eq(&self, other: &GroupsIdx) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for GroupsIdx

source§

impl StructuralEq for GroupsIdx

source§

impl StructuralPartialEq for GroupsIdx

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/polars_core/frame/hash_join/enum.JoinType.html b/polars_core/frame/hash_join/enum.JoinType.html index 07e34af28f39..b9b586b88df9 100644 --- a/polars_core/frame/hash_join/enum.JoinType.html +++ b/polars_core/frame/hash_join/enum.JoinType.html @@ -3,7 +3,7 @@ Inner, Outer, Cross, -}

Variants§

§

Left

§

Inner

§

Outer

§

Cross

Trait Implementations§

source§

impl Clone for JoinType

source§

fn clone(&self) -> JoinType

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 JoinType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for JoinType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<JoinType> for JoinArgs

source§

fn from(value: JoinType) -> Self

Converts to this type from the input type.
source§

impl PartialEq<JoinType> for JoinType

source§

fn eq(&self, other: &JoinType) -> bool

This method tests for self and other values to be equal, and is used +}

Variants§

§

Left

§

Inner

§

Outer

§

Cross

Trait Implementations§

source§

impl Clone for JoinType

source§

fn clone(&self) -> JoinType

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 JoinType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for JoinType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<JoinType> for JoinArgs

source§

fn from(value: JoinType) -> Self

Converts to this type from the input type.
source§

impl PartialEq<JoinType> for JoinType

source§

fn eq(&self, other: &JoinType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for JoinType

source§

impl StructuralEq for JoinType

source§

impl StructuralPartialEq for JoinType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars_core/frame/hash_join/enum.JoinValidation.html b/polars_core/frame/hash_join/enum.JoinValidation.html index 65ce20687bdf..199926d6188d 100644 --- a/polars_core/frame/hash_join/enum.JoinValidation.html +++ b/polars_core/frame/hash_join/enum.JoinValidation.html @@ -11,7 +11,7 @@ &self, join_type: &JoinType, n_keys: usize -) -> PolarsResult<()>

Trait Implementations§

source§

impl Clone for JoinValidation

source§

fn clone(&self) -> JoinValidation

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 JoinValidation

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for JoinValidation

source§

fn default() -> JoinValidation

Returns the “default value” for a type. Read more
source§

impl Display for JoinValidation

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<JoinValidation> for JoinValidation

source§

fn eq(&self, other: &JoinValidation) -> bool

This method tests for self and other values to be equal, and is used +) -> PolarsResult<()>

Trait Implementations§

source§

impl Clone for JoinValidation

source§

fn clone(&self) -> JoinValidation

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 JoinValidation

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for JoinValidation

source§

fn default() -> JoinValidation

Returns the “default value” for a type. Read more
source§

impl Display for JoinValidation

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<JoinValidation> for JoinValidation

source§

fn eq(&self, other: &JoinValidation) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for JoinValidation

source§

impl Eq for JoinValidation

source§

impl StructuralEq for JoinValidation

source§

impl StructuralPartialEq for JoinValidation

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars_core/frame/struct.DataFrame.html b/polars_core/frame/struct.DataFrame.html index 3c672ee92aca..07cffba817c9 100644 --- a/polars_core/frame/struct.DataFrame.html +++ b/polars_core/frame/struct.DataFrame.html @@ -1229,11 +1229,11 @@
Example
let df2: &DataFrame = &df1; assert!(df1.ptr_equal(df2));

-

Trait Implementations§

source§

impl Clone for DataFrame

source§

fn clone(&self) -> DataFrame

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 DataFrame

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for DataFrame

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for DataFrame

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&Schema> for DataFrame

source§

fn from(schema: &Schema) -> Self

Converts to this type from the input type.
source§

impl From<DataFrame> for Vec<Series>

source§

fn from(df: DataFrame) -> Self

Converts to this type from the input type.
source§

impl From<StructChunked> for DataFrame

Available on crate feature dtype-struct only.
source§

fn from(ca: StructChunked) -> Self

Converts to this type from the input type.
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T: IntoIterator<Item = Series>>(iter: T) -> Self

Trait Implementations§

source§

impl Clone for DataFrame

source§

fn clone(&self) -> DataFrame

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 DataFrame

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for DataFrame

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for DataFrame

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&Schema> for DataFrame

source§

fn from(schema: &Schema) -> Self

Converts to this type from the input type.
source§

impl From<DataFrame> for Vec<Series>

source§

fn from(df: DataFrame) -> Self

Converts to this type from the input type.
source§

impl From<StructChunked> for DataFrame

Available on crate feature dtype-struct only.
source§

fn from(ca: StructChunked) -> Self

Converts to this type from the input type.
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T: IntoIterator<Item = Series>>(iter: T) -> Self

Panics

Panics if Series have different lengths.

-
source§

impl Index<&str> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: &str) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Range<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: Range<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFrom<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFrom<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFull> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFull) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeInclusive<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeTo<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeTo<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeToInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeToInclusive<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl PartialEq<DataFrame> for DataFrame

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +
source§

impl Index<&str> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: &str) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<Range<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: Range<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFrom<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFrom<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeFull> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeFull) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeInclusive<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeTo<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeTo<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<RangeToInclusive<usize>> for DataFrame

§

type Output = [Series]

The returned type after indexing.
source§

fn index(&self, index: RangeToInclusive<usize>) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for DataFrame

§

type Output = Series

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl PartialEq<DataFrame> for DataFrame

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arg: (ArrowChunk, &[ArrowField])) -> PolarsResult<DataFrame>

Performs the conversion.
source§

impl TryFrom<StructArray> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arr: StructArray) -> PolarsResult<Self>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +sufficient, and should not be overridden without very good reason.

source§

impl TryFrom<(Chunk<Box<dyn Array, Global>>, &[Field])> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arg: (ArrowChunk, &[ArrowField])) -> PolarsResult<DataFrame>

Performs the conversion.
source§

impl TryFrom<StructArray> for DataFrame

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(arr: StructArray) -> PolarsResult<Self>

Performs the conversion.

Auto Trait Implementations§

§

impl !RefUnwindSafe for DataFrame

§

impl Send for DataFrame

§

impl Sync for DataFrame

§

impl Unpin for DataFrame

§

impl !UnwindSafe for DataFrame

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars_core/hashing/partition/trait.AsU64.html b/polars_core/hashing/partition/trait.AsU64.html index 85f674371df8..14f081b1bfc0 100644 --- a/polars_core/hashing/partition/trait.AsU64.html +++ b/polars_core/hashing/partition/trait.AsU64.html @@ -1,4 +1,4 @@ AsU64 in polars_core::hashing::partition - Rust
pub trait AsU64 {
     // Required method
     fn as_u64(self) -> u64;
-}

Required Methods§

source

fn as_u64(self) -> u64

Implementations on Foreign Types§

source§

impl AsU64 for u32

source§

fn as_u64(self) -> u64

source§

impl AsU64 for i64

source§

fn as_u64(self) -> u64

source§

impl AsU64 for i32

source§

fn as_u64(self) -> u64

source§

impl AsU64 for i16

source§

fn as_u64(self) -> u64

source§

impl AsU64 for Option<u32>

source§

fn as_u64(self) -> u64

source§

impl AsU64 for i8

source§

fn as_u64(self) -> u64

source§

impl AsU64 for Option<u64>

source§

fn as_u64(self) -> u64

source§

impl AsU64 for u16

source§

fn as_u64(self) -> u64

source§

impl AsU64 for u64

source§

fn as_u64(self) -> u64

source§

impl<T: AsU64 + Copy> AsU64 for Option<&T>

source§

fn as_u64(self) -> u64

source§

impl AsU64 for u8

source§

fn as_u64(self) -> u64

source§

impl<T: AsU64 + Copy> AsU64 for &T

source§

fn as_u64(self) -> u64

Implementors§

\ No newline at end of file +}

Required Methods§

source

fn as_u64(self) -> u64

Implementations on Foreign Types§

source§

impl AsU64 for i8

source§

fn as_u64(self) -> u64

source§

impl AsU64 for Option<u32>

source§

fn as_u64(self) -> u64

source§

impl<T: AsU64 + Copy> AsU64 for Option<&T>

source§

fn as_u64(self) -> u64

source§

impl AsU64 for i16

source§

fn as_u64(self) -> u64

source§

impl AsU64 for u8

source§

fn as_u64(self) -> u64

source§

impl AsU64 for i64

source§

fn as_u64(self) -> u64

source§

impl AsU64 for Option<u64>

source§

fn as_u64(self) -> u64

source§

impl AsU64 for u64

source§

fn as_u64(self) -> u64

source§

impl AsU64 for i32

source§

fn as_u64(self) -> u64

source§

impl AsU64 for u32

source§

fn as_u64(self) -> u64

source§

impl<T: AsU64 + Copy> AsU64 for &T

source§

fn as_u64(self) -> u64

source§

impl AsU64 for u16

source§

fn as_u64(self) -> u64

Implementors§

\ No newline at end of file diff --git a/polars_core/hashing/trait.FxHash.html b/polars_core/hashing/trait.FxHash.html index 6ad63b28092b..97cfd4a5c271 100644 --- a/polars_core/hashing/trait.FxHash.html +++ b/polars_core/hashing/trait.FxHash.html @@ -5,4 +5,4 @@ // Provided method fn get_k(random_state: RandomState) -> u64 { ... } }
Expand description

Ensure that the same hash is used as with VecHash.

-

Required Methods§

source

fn _fx_hash(self, k: u64) -> u64

Provided Methods§

source

fn get_k(random_state: RandomState) -> u64

Implementations on Foreign Types§

source§

impl FxHash for u64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u8

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i8

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u16

source§

fn _fx_hash(self, k: u64) -> u64

Implementors§

\ No newline at end of file +

Required Methods§

source

fn _fx_hash(self, k: u64) -> u64

Provided Methods§

source

fn get_k(random_state: RandomState) -> u64

Implementations on Foreign Types§

source§

impl FxHash for u16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u8

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i16

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u32

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i8

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for u64

source§

fn _fx_hash(self, k: u64) -> u64

source§

impl FxHash for i64

source§

fn _fx_hash(self, k: u64) -> u64

Implementors§

\ No newline at end of file diff --git a/polars_core/prelude/default_arrays/trait.FromData.html b/polars_core/prelude/default_arrays/trait.FromData.html index faaf922c5c31..6746e21219d7 100644 --- a/polars_core/prelude/default_arrays/trait.FromData.html +++ b/polars_core/prelude/default_arrays/trait.FromData.html @@ -1,8 +1,8 @@ FromData in polars_core::prelude::default_arrays - Rust
pub trait FromData<T> {
     // Required method
     fn from_data_default(values: T, validity: Option<Bitmap>) -> Self;
-}

Required Methods§

source

fn from_data_default(values: T, validity: Option<Bitmap>) -> Self

Implementations on Foreign Types§

source§

impl<T> FromData<Buffer<T>> for PrimitiveArray<T>where - T: NativeType,

source§

fn from_data_default( +}

Required Methods§

source

fn from_data_default(values: T, validity: Option<Bitmap>) -> Self

Implementations on Foreign Types§

source§

impl FromData<Bitmap> for BooleanArray

source§

impl<T> FromData<Buffer<T>> for PrimitiveArray<T>where + T: NativeType,

source§

fn from_data_default( values: Buffer<T>, validity: Option<Bitmap> -) -> PrimitiveArray<T>

source§

impl FromData<Bitmap> for BooleanArray

Implementors§

\ No newline at end of file +) -> PrimitiveArray<T>

Implementors§

\ No newline at end of file diff --git a/polars_core/prelude/enum.PolarsError.html b/polars_core/prelude/enum.PolarsError.html index 7e68603a2f6c..90d547382466 100644 --- a/polars_core/prelude/enum.PolarsError.html +++ b/polars_core/prelude/enum.PolarsError.html @@ -11,7 +11,7 @@ ShapeMismatch(ErrString), StringCacheMismatch(ErrString), StructFieldNotFound(ErrString), -}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for PolarsError

§

impl Send for PolarsError

§

impl Sync for PolarsError

§

impl Unpin for PolarsError

§

impl !UnwindSafe for PolarsError

Blanket Implementations§

source§

impl<T> Any for Twhere +}

Variants§

§

ArrowError(Box<Error, Global>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> PolarsError

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> PolarsError

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

Available on crate feature regex only.
source§

fn from(err: Error) -> PolarsError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars_core/prelude/struct.Arc.html b/polars_core/prelude/struct.Arc.html index 46c3dc5fbf8f..76bc7904ca68 100644 --- a/polars_core/prelude/struct.Arc.html +++ b/polars_core/prelude/struct.Arc.html @@ -883,10 +883,10 @@
Examples
let five = Arc::new(5); assert!(five != Arc::new(6));
-

source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>

source§

fn eq(&self, that: &(dyn Scalar + 'static)) -> bool

This method tests for self and other values to be equal, and is used +
source§

impl PartialEq<dyn Array> for Arc<dyn Array + '_>

source§

fn eq(&self, that: &(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<dyn Scalar> for Arc<dyn Scalar + '_>

source§

fn eq(&self, that: &(dyn Scalar + 'static)) -> bool

This method tests for self and other values to be equal, and is used +by ==.
source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialOrd<Arc<T>> for Arc<T>where T: PartialOrd<T> + ?Sized,

source§

fn partial_cmp(&self, other: &Arc<T>) -> Option<Ordering>

Partial comparison for two Arcs.

The two are compared by calling partial_cmp() on their inner values.

diff --git a/polars_core/prelude/trait.ArrowGetItem.html b/polars_core/prelude/trait.ArrowGetItem.html index 324269f21091..de2825f270c2 100644 --- a/polars_core/prelude/trait.ArrowGetItem.html +++ b/polars_core/prelude/trait.ArrowGetItem.html @@ -6,26 +6,26 @@ unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>; }

Required Associated Types§

Required Methods§

source

fn get(&self, item: usize) -> Option<Self::Item>

source

unsafe fn get_unchecked(&self, item: usize) -> Option<Self::Item>

Safety

Get item. It is the callers responsibility that the item < self.len()

-

Implementations on Foreign Types§

source§

impl<'a> ArrowGetItem for &'a Utf8Array<i64>

§

type Item = &'a str

source§

fn get(&self, item: usize) -> Option<<&'a Utf8Array<i64> as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( +

Implementations on Foreign Types§

source§

impl ArrowGetItem for FixedSizeListArray

§

type Item = Box<dyn Array, Global>

source§

fn get(&self, item: usize) -> Option<<FixedSizeListArray as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( &self, item: usize -) -> Option<<&'a Utf8Array<i64> as ArrowGetItem>::Item>

source§

impl ArrowGetItem for FixedSizeListArray

source§

impl ArrowGetItem for ListArray<i64>

§

type Item = Box<dyn Array, Global>

source§

fn get(&self, item: usize) -> Option<<ListArray<i64> as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( &self, item: usize -) -> Option<<FixedSizeListArray as ArrowGetItem>::Item>

source§

impl<'a> ArrowGetItem for &'a BinaryArray<i64>

§

type Item = &'a [u8]

source§

fn get( +) -> Option<<ListArray<i64> as ArrowGetItem>::Item>

source§

impl<'a> ArrowGetItem for &'a Utf8Array<i64>

§

type Item = &'a str

source§

fn get(&self, item: usize) -> Option<<&'a Utf8Array<i64> as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( &self, item: usize -) -> Option<<&'a BinaryArray<i64> as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( +) -> Option<<&'a Utf8Array<i64> as ArrowGetItem>::Item>

source§

impl ArrowGetItem for BooleanArray

§

type Item = bool

source§

fn get(&self, item: usize) -> Option<<BooleanArray as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( &self, item: usize -) -> Option<<&'a BinaryArray<i64> as ArrowGetItem>::Item>

source§

impl ArrowGetItem for BooleanArray

source§

impl<T> ArrowGetItem for PrimitiveArray<T>where + T: NativeType,

§

type Item = T

source§

fn get(&self, item: usize) -> Option<<PrimitiveArray<T> as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( &self, item: usize -) -> Option<<BooleanArray as ArrowGetItem>::Item>

source§

impl ArrowGetItem for ListArray<i64>

source§

impl<'a> ArrowGetItem for &'a BinaryArray<i64>

§

type Item = &'a [u8]

source§

fn get( &self, item: usize -) -> Option<<ListArray<i64> as ArrowGetItem>::Item>

source§

impl<T> ArrowGetItem for PrimitiveArray<T>where - T: NativeType,

§

type Item = T

source§

fn get(&self, item: usize) -> Option<<PrimitiveArray<T> as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( +) -> Option<<&'a BinaryArray<i64> as ArrowGetItem>::Item>

source§

unsafe fn get_unchecked( &self, item: usize -) -> Option<<PrimitiveArray<T> as ArrowGetItem>::Item>

Implementors§

\ No newline at end of file +) -> Option<<&'a BinaryArray<i64> as ArrowGetItem>::Item>

Implementors§

\ No newline at end of file diff --git a/polars_core/prelude/trait.FromData.html b/polars_core/prelude/trait.FromData.html index 0c9fd8a7b0ff..bc19182377e7 100644 --- a/polars_core/prelude/trait.FromData.html +++ b/polars_core/prelude/trait.FromData.html @@ -1,8 +1,8 @@ FromData in polars_core::prelude - Rust
pub trait FromData<T> {
     // Required method
     fn from_data_default(values: T, validity: Option<Bitmap>) -> Self;
-}

Required Methods§

source

fn from_data_default(values: T, validity: Option<Bitmap>) -> Self

Implementations on Foreign Types§

source§

impl<T> FromData<Buffer<T>> for PrimitiveArray<T>where - T: NativeType,

source§

fn from_data_default( +}

Required Methods§

source

fn from_data_default(values: T, validity: Option<Bitmap>) -> Self

Implementations on Foreign Types§

source§

impl FromData<Bitmap> for BooleanArray

source§

impl<T> FromData<Buffer<T>> for PrimitiveArray<T>where + T: NativeType,

source§

fn from_data_default( values: Buffer<T>, validity: Option<Bitmap> -) -> PrimitiveArray<T>

source§

impl FromData<Bitmap> for BooleanArray

Implementors§

\ No newline at end of file +) -> PrimitiveArray<T>

Implementors§

\ No newline at end of file diff --git a/polars_core/prelude/trait.IsFloat.html b/polars_core/prelude/trait.IsFloat.html index 396e047bb7cc..25a7881f7173 100644 --- a/polars_core/prelude/trait.IsFloat.html +++ b/polars_core/prelude/trait.IsFloat.html @@ -6,5 +6,5 @@ }
Expand description

Safety

unsafe code downstream relies on the correct is_float call

Provided Methods§

source

fn is_float() -> bool

source

fn is_nan(&self) -> boolwhere - Self: Sized,

Implementations on Foreign Types§

source§

impl IsFloat for i16

source§

impl IsFloat for f32

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for i8

source§

impl IsFloat for i64

source§

impl IsFloat for u32

source§

impl<T> IsFloat for Option<T>where - T: IsFloat,

source§

impl IsFloat for i32

source§

impl IsFloat for u16

source§

impl IsFloat for &str

source§

impl IsFloat for bool

source§

impl IsFloat for &[u8]

source§

impl IsFloat for i128

source§

impl IsFloat for f64

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for u64

source§

impl IsFloat for u8

Implementors§

\ No newline at end of file + Self: Sized,

Implementations on Foreign Types§

source§

impl IsFloat for u32

source§

impl IsFloat for bool

source§

impl IsFloat for f32

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl<T> IsFloat for Option<T>where + T: IsFloat,

source§

impl IsFloat for i16

source§

impl IsFloat for i32

source§

impl IsFloat for &[u8]

source§

impl IsFloat for i128

source§

impl IsFloat for u8

source§

impl IsFloat for &str

source§

impl IsFloat for i64

source§

impl IsFloat for u16

source§

impl IsFloat for f64

source§

fn is_float() -> bool

source§

fn is_nan(&self) -> bool

source§

impl IsFloat for i8

source§

impl IsFloat for u64

Implementors§

\ No newline at end of file diff --git a/polars_core/prelude/trait.ValueSize.html b/polars_core/prelude/trait.ValueSize.html index cdfdeb06b036..3155ae84530f 100644 --- a/polars_core/prelude/trait.ValueSize.html +++ b/polars_core/prelude/trait.ValueSize.html @@ -3,4 +3,4 @@ fn get_values_size(&self) -> usize; }

Required Methods§

source

fn get_values_size(&self) -> usize

Useful for a Utf8 or a List to get underlying value size. During a rechunk this is handy

-

Implementations on Foreign Types§

source§

impl ValueSize for Utf8Array<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for BinaryArray<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for FixedSizeListArray

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for Box<dyn Array, Global>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for ListArray<i64>

source§

fn get_values_size(&self) -> usize

Implementors§

source§

impl ValueSize for BinaryChunked

source§

impl ValueSize for ListChunked

source§

impl ValueSize for Utf8Chunked

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl ValueSize for Box<dyn Array, Global>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for ListArray<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for Utf8Array<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for BinaryArray<i64>

source§

fn get_values_size(&self) -> usize

source§

impl ValueSize for FixedSizeListArray

source§

fn get_values_size(&self) -> usize

Implementors§

source§

impl ValueSize for BinaryChunked

source§

impl ValueSize for ListChunked

source§

impl ValueSize for Utf8Chunked

\ No newline at end of file diff --git a/polars_core/schema/struct.Schema.html b/polars_core/schema/struct.Schema.html index 996ee0d33543..19ca3072d24e 100644 --- a/polars_core/schema/struct.Schema.html +++ b/polars_core/schema/struct.Schema.html @@ -134,7 +134,7 @@
source

pub fn iter(&self) -> impl Iterator<Item = (&SmartString, &DataType)> + '_

Iterates over the (&name, &dtype) pairs in this schema

For an owned version, use iter_fields, which clones the data to iterate owned Fields

source

pub fn to_supertype(&mut self, other: &Schema) -> PolarsResult<bool>

Take another Schema and try to find the supertypes between them.

-

Trait Implementations§

source§

impl Clone for Schema

source§

fn clone(&self) -> Schema

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 Schema

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Schema

source§

fn default() -> Schema

Returns the “default value” for a type. Read more
source§

impl From<&Row<'_>> for Schema

Available on crate feature rows only.
source§

fn from(row: &Row<'_>) -> Self

Converts to this type from the input type.
source§

impl From<&Schema> for DataFrame

source§

fn from(schema: &Schema) -> Self

Converts to this type from the input type.
source§

impl<F> FromIterator<F> for Schemawhere +

Trait Implementations§

source§

impl Clone for Schema

source§

fn clone(&self) -> Schema

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 Schema

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Schema

source§

fn default() -> Schema

Returns the “default value” for a type. Read more
source§

impl From<&Row<'_>> for Schema

Available on crate feature rows only.
source§

fn from(row: &Row<'_>) -> Self

Converts to this type from the input type.
source§

impl From<&Schema> for DataFrame

source§

fn from(schema: &Schema) -> Self

Converts to this type from the input type.
source§

impl<F> FromIterator<F> for Schemawhere F: Into<Field>,

source§

fn from_iter<T: IntoIterator<Item = F>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl IndexOfSchema for Schema

source§

fn index_of(&self, name: &str) -> Option<usize>

Get the index of a column by name.
source§

fn get_names(&self) -> Vec<&str>

Get a vector of all column names.
source§

fn try_index_of(&self, name: &str) -> PolarsResult<usize>

source§

impl IntoIterator for Schema

§

type Item = (SmartString<LazyCompact>, DataType)

The type of the elements being iterated over.
§

type IntoIter = <IndexMap<SmartString<LazyCompact>, DataType, RandomState> as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<Schema> for Schema

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Schema

source§

impl StructuralEq for Schema

Auto Trait Implementations§

§

impl RefUnwindSafe for Schema

§

impl Send for Schema

§

impl Sync for Schema

§

impl Unpin for Schema

§

impl UnwindSafe for Schema

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/polars_core/series/struct.Series.html b/polars_core/series/struct.Series.html index c8a599ea1097..ebb52c9e822a 100644 --- a/polars_core/series/struct.Series.html +++ b/polars_core/series/struct.Series.html @@ -294,9 +294,9 @@
Implementation

source

pub fn get_data_ptr(&self) -> usize

Get a pointer to the underlying data of this Series. Can be useful for fast comparisons.

Methods from Deref<Target = dyn SeriesTrait>§

source

pub fn unpack<N>(&self) -> PolarsResult<&ChunkedArray<N>>where - N: PolarsDataType + 'static,

Trait Implementations§

source§

impl Add<&Series> for &Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<Series> for Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> Self::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> Self::Output

Performs the + operation. Read more
source§

impl AsMut<Series> for UnstableSeries<'_>

source§

fn as_mut(&mut self) -> &mut Series

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<Series> for UnstableSeries<'_>

We don’t implement Deref so that the caller is aware of converting to Series

+ N: PolarsDataType + 'static,

Trait Implementations§

source§

impl Add<&Series> for &Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<Series> for Series

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> Self::Output

Performs the + operation. Read more
source§

impl<T> Add<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the + operator.
source§

fn add(self, rhs: T) -> Self::Output

Performs the + operation. Read more
source§

impl AsMut<Series> for UnstableSeries<'_>

source§

fn as_mut(&mut self) -> &mut Series

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<Series> for UnstableSeries<'_>

We don’t implement Deref so that the caller is aware of converting to Series

source§

fn as_ref(&self) -> &Series

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> ChunkApply<'a, Series, Series> for ListChunked

source§

fn apply<F>(&'a self, f: F) -> Selfwhere F: Fn(Series) -> Series + Copy,

Apply a closure F elementwise.

source§

fn apply_with_idx<F>(&'a self, f: F) -> Selfwhere @@ -311,46 +311,46 @@
Implementation
S: PolarsNumericType,

Apply a closure on optional values and cast to Numeric ChunkedArray without null values.
source§

fn try_apply<F>(&'a self, f: F) -> PolarsResult<Self>where F: Fn(Series) -> PolarsResult<Series> + Copy,

source§

fn apply_on_opt<F>(&'a self, f: F) -> Selfwhere F: Fn(Option<Series>) -> Option<Series> + Copy,

Apply a closure elementwise including null values.
source§

fn apply_to_slice<F, T>(&'a self, f: F, slice: &mut [T])where - F: Fn(Option<Series>, &T) -> T,

Apply a closure elementwise and write results to a mutable slice.
source§

impl ChunkCompare<&Series> for Series

source§

fn equal(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking for equality.

-
source§

fn equal_missing(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking for equality.

-
source§

fn not_equal(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking for inequality.

-
source§

fn not_equal_missing(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking for inequality.

-
source§

fn gt(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking if self > rhs.

-
source§

fn gt_eq(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking if self >= rhs.

-
source§

fn lt(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking if self < rhs.

-
source§

fn lt_eq(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking if self <= rhs.

-
§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

impl ChunkCompare<&str> for Series

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> Self::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> Self::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Less than or equal comparison
source§

impl<Rhs> ChunkCompare<Rhs> for Serieswhere - Rhs: NumericNative,

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> Self::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> Self::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Less than or equal comparison
source§

impl ChunkFull<&Series> for ListChunked

source§

fn full(name: &str, value: &Series, length: usize) -> ListChunked

Create a ChunkedArray with a single value.
source§

impl ChunkQuantile<Series> for ListChunked

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. + F: Fn(Option<Series>, &T) -> T,
Apply a closure elementwise and write results to a mutable slice.
source§

impl ChunkCompare<&Series> for Series

source§

fn equal(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking for equality.

+
source§

fn equal_missing(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking for equality.

+
source§

fn not_equal(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking for inequality.

+
source§

fn not_equal_missing(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking for inequality.

+
source§

fn gt(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking if self > rhs.

+
source§

fn gt_eq(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking if self >= rhs.

+
source§

fn lt(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking if self < rhs.

+
source§

fn lt_eq(&self, rhs: &Series) -> PolarsResult<BooleanChunked>

Create a boolean mask by checking if self <= rhs.

+
§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

impl ChunkCompare<&str> for Series

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Check for equality.
source§

fn equal_missing(&self, rhs: &str) -> Self::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: &str) -> Self::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Greater than comparison.
source§

fn gt_eq(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Greater than or equal comparison.
source§

fn lt(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Less than comparison.
source§

fn lt_eq(&self, rhs: &str) -> PolarsResult<BooleanChunked>

Less than or equal comparison
source§

impl<Rhs> ChunkCompare<Rhs> for Serieswhere + Rhs: NumericNative,

§

type Item = Result<ChunkedArray<BooleanType>, PolarsError>

source§

fn equal(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Check for equality.
source§

fn equal_missing(&self, rhs: Rhs) -> Self::Item

Check for equality where None == None.
source§

fn not_equal(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Check for inequality.
source§

fn not_equal_missing(&self, rhs: Rhs) -> Self::Item

Check for inequality where None == None.
source§

fn gt(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Greater than comparison.
source§

fn gt_eq(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Greater than or equal comparison.
source§

fn lt(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Less than comparison.
source§

fn lt_eq(&self, rhs: Rhs) -> PolarsResult<BooleanChunked>

Less than or equal comparison
source§

impl ChunkFull<&Series> for ListChunked

source§

fn full(name: &str, value: &Series, length: usize) -> ListChunked

Create a ChunkedArray with a single value.
source§

impl ChunkQuantile<Series> for ListChunked

source§

fn median(&self) -> Option<T>

Returns the mean value in the array. Returns None if the array is empty or only contains null values.
source§

fn quantile( &self, _quantile: f64, _interpol: QuantileInterpolOptions ) -> PolarsResult<Option<T>>

Aggregate a given quantile of the ChunkedArray. -Returns None if the array is empty or only contains null values.
source§

impl ChunkVar<Series> for ListChunked

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl Clone for Series

source§

fn clone(&self) -> Series

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 Series

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Series

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Deref for Series

§

type Target = dyn SeriesTrait

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Display for Series

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Div<&Series> for &Series

source§

fn div(self, rhs: Self) -> Self::Output

+Returns None if the array is empty or only contains null values.
source§

impl ChunkVar<Series> for ListChunked

source§

fn var(&self, _ddof: u8) -> Option<T>

Compute the variance of this ChunkedArray/Series.
source§

fn std(&self, _ddof: u8) -> Option<T>

Compute the standard deviation of this ChunkedArray/Series.
source§

impl Clone for Series

source§

fn clone(&self) -> Series

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 Series

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Series

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Deref for Series

§

type Target = dyn SeriesTrait

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Display for Series

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Div<&Series> for &Series

source§

fn div(self, rhs: Self) -> Self::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s / &s;
-
§

type Output = Series

The resulting type after applying the / operator.
source§

impl Div<Series> for Series

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> Self::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> Self::Output

Performs the / operation. Read more
source§

impl<T> From<ChunkedArray<T>> for Serieswhere +

§

type Output = Series

The resulting type after applying the / operator.
source§

impl Div<Series> for Series

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> Self::Output

Performs the / operation. Read more
source§

impl<T> Div<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> Self::Output

Performs the / operation. Read more
source§

impl<T> From<ChunkedArray<T>> for Serieswhere T: PolarsDataType, - ChunkedArray<T>: IntoSeries,

source§

fn from(ca: ChunkedArray<T>) -> Self

Converts to this type from the input type.
source§

impl<'a> FromIterator<&'a bool> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a bool>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f32> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a f32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f64> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a f64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i32> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a i32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i64> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a i64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a str> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a str>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u32> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a u32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u64> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a u64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<bool>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f32>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<f32>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f64>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<f64>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i32>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<i32>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i64>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<i64>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u32>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<u32>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u64>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<u64>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T: IntoIterator<Item = Series>>(iter: T) -> Self

Panics
+ ChunkedArray<T>: IntoSeries,
source§

fn from(ca: ChunkedArray<T>) -> Self

Converts to this type from the input type.
source§

impl<'a> FromIterator<&'a bool> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a bool>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f32> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a f32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a f64> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a f64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i32> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a i32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a i64> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a i64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a str> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a str>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u32> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a u32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'a> FromIterator<&'a u64> for Series

source§

fn from_iter<I: IntoIterator<Item = &'a u64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<bool>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<bool>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f32>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<f32>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<f64>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<f64>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i32>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<i32>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<i64>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<i64>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u32>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<u32>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Option<u64>> for Series

source§

fn from_iter<I: IntoIterator<Item = Option<u64>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<Series> for DataFrame

source§

fn from_iter<T: IntoIterator<Item = Series>>(iter: T) -> Self

Panics

Panics if Series have different lengths.

-
source§

impl FromIterator<String> for Series

source§

fn from_iter<I: IntoIterator<Item = String>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for Series

source§

fn from_iter<I: IntoIterator<Item = bool>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<f32> for Series

source§

fn from_iter<I: IntoIterator<Item = f32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<f64> for Series

source§

fn from_iter<I: IntoIterator<Item = f64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<i32> for Series

source§

fn from_iter<I: IntoIterator<Item = i32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<i64> for Series

source§

fn from_iter<I: IntoIterator<Item = i64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<u32> for Series

source§

fn from_iter<I: IntoIterator<Item = u32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<u64> for Series

source§

fn from_iter<I: IntoIterator<Item = u64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl IntoSeries for Series

source§

impl Mul<&Series> for &Series

source§

fn mul(self, rhs: Self) -> Self::Output

+
source§

impl FromIterator<String> for Series

source§

fn from_iter<I: IntoIterator<Item = String>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<bool> for Series

source§

fn from_iter<I: IntoIterator<Item = bool>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<f32> for Series

source§

fn from_iter<I: IntoIterator<Item = f32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<f64> for Series

source§

fn from_iter<I: IntoIterator<Item = f64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<i32> for Series

source§

fn from_iter<I: IntoIterator<Item = i32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<i64> for Series

source§

fn from_iter<I: IntoIterator<Item = i64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<u32> for Series

source§

fn from_iter<I: IntoIterator<Item = u32>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl FromIterator<u64> for Series

source§

fn from_iter<I: IntoIterator<Item = u64>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl IntoSeries for Series

source§

impl Mul<&Series> for &Series

source§

fn mul(self, rhs: Self) -> Self::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s * &s;
-
§

type Output = Series

The resulting type after applying the * operator.
source§

impl Mul<Series> for Series

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> Self::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> Self::Output

Performs the * operation. Read more
source§

impl NamedFrom<&Series, str> for Series

source§

fn new(name: &str, s: &Series) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for Series

source§

fn new(name: &str, range: Range<u32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for Series

source§

fn new(name: &str, range: Range<u64>) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[&'a [u8]]>> NamedFrom<T, [&'a [u8]]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[&'a str]>> NamedFrom<T, [&'a str]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[AnyValue<'a>]>> NamedFrom<T, [AnyValue<'a>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Cow<'a, [u8]>]>> NamedFrom<T, [Cow<'a, [u8]>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Cow<'a, str>]>> NamedFrom<T, [Cow<'a, str>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<&'a [u8]>]>> NamedFrom<T, [Option<&'a [u8]>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<&'a str>]>> NamedFrom<T, [Option<&'a str>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<Cow<'a, [u8]>>]>> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<Cow<'a, str>>]>> NamedFrom<T, [Option<Cow<'a, str>>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<Series>]>> NamedFrom<T, [Option<Series>]> for Series

source§

fn new(name: &str, s: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<String>]>> NamedFrom<T, [Option<String>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<Vec<u8>>]>> NamedFrom<T, [Option<Vec<u8, Global>>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<bool>]>> NamedFrom<T, [Option<bool>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<f32>]>> NamedFrom<T, [Option<f32>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<f64>]>> NamedFrom<T, [Option<f64>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<i32>]>> NamedFrom<T, [Option<i32>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<i64>]>> NamedFrom<T, [Option<i64>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<u32>]>> NamedFrom<T, [Option<u32>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<u64>]>> NamedFrom<T, [Option<u64>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[String]>> NamedFrom<T, [String]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Vec<u8>]>> NamedFrom<T, [Vec<u8, Global>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[bool]>> NamedFrom<T, [bool]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[f32]>> NamedFrom<T, [f32]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[f64]>> NamedFrom<T, [f64]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[i32]>> NamedFrom<T, [i32]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[i64]>> NamedFrom<T, [i64]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[u32]>> NamedFrom<T, [u32]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[u64]>> NamedFrom<T, [u64]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Series]>> NamedFrom<T, ListType> for Series

source§

fn new(name: &str, s: T) -> Self

Initialize by name and values.
source§

impl<T: IntoSeries> NamedFrom<T, T> for Series

For any ChunkedArray and Series

-
source§

fn new(name: &str, t: T) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f32>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f64>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i32>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i64>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u32>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u64>) -> Self

Initialize by name and values.
source§

impl PartialEq<Series> for Series

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +
§

type Output = Series

The resulting type after applying the * operator.
source§

impl Mul<Series> for Series

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> Self::Output

Performs the * operation. Read more
source§

impl<T> Mul<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> Self::Output

Performs the * operation. Read more
source§

impl NamedFrom<&Series, str> for Series

source§

fn new(name: &str, s: &Series) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i32>, Int32Type> for Series

source§

fn new(name: &str, range: Range<i32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<i64>, Int64Type> for Series

source§

fn new(name: &str, range: Range<i64>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<u32>, UInt32Type> for Series

source§

fn new(name: &str, range: Range<u32>) -> Self

Initialize by name and values.
source§

impl NamedFrom<Range<u64>, UInt64Type> for Series

source§

fn new(name: &str, range: Range<u64>) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[&'a [u8]]>> NamedFrom<T, [&'a [u8]]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[&'a str]>> NamedFrom<T, [&'a str]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[AnyValue<'a>]>> NamedFrom<T, [AnyValue<'a>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Cow<'a, [u8]>]>> NamedFrom<T, [Cow<'a, [u8]>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Cow<'a, str>]>> NamedFrom<T, [Cow<'a, str>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<&'a [u8]>]>> NamedFrom<T, [Option<&'a [u8]>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<&'a str>]>> NamedFrom<T, [Option<&'a str>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<Cow<'a, [u8]>>]>> NamedFrom<T, [Option<Cow<'a, [u8]>>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<'a, T: AsRef<[Option<Cow<'a, str>>]>> NamedFrom<T, [Option<Cow<'a, str>>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<Series>]>> NamedFrom<T, [Option<Series>]> for Series

source§

fn new(name: &str, s: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<String>]>> NamedFrom<T, [Option<String>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<Vec<u8>>]>> NamedFrom<T, [Option<Vec<u8, Global>>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<bool>]>> NamedFrom<T, [Option<bool>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<f32>]>> NamedFrom<T, [Option<f32>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<f64>]>> NamedFrom<T, [Option<f64>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<i32>]>> NamedFrom<T, [Option<i32>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<i64>]>> NamedFrom<T, [Option<i64>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<u32>]>> NamedFrom<T, [Option<u32>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Option<u64>]>> NamedFrom<T, [Option<u64>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[String]>> NamedFrom<T, [String]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Vec<u8>]>> NamedFrom<T, [Vec<u8, Global>]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[bool]>> NamedFrom<T, [bool]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[f32]>> NamedFrom<T, [f32]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[f64]>> NamedFrom<T, [f64]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[i32]>> NamedFrom<T, [i32]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[i64]>> NamedFrom<T, [i64]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[u32]>> NamedFrom<T, [u32]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[u64]>> NamedFrom<T, [u64]> for Series

source§

fn new(name: &str, v: T) -> Self

Initialize by name and values.
source§

impl<T: AsRef<[Series]>> NamedFrom<T, ListType> for Series

source§

fn new(name: &str, s: T) -> Self

Initialize by name and values.
source§

impl<T: IntoSeries> NamedFrom<T, T> for Series

For any ChunkedArray and Series

+
source§

fn new(name: &str, t: T) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f32>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<f64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<f64>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i32>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<i64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<i64>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u32, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u32>) -> Self

Initialize by name and values.
source§

impl NamedFromOwned<Vec<u64, Global>> for Series

source§

fn from_vec(name: &str, v: Vec<u64>) -> Self

Initialize by name and values.
source§

impl PartialEq<Series> for Series

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Rem<&Series> for &Series

source§

fn rem(self, rhs: Self) -> Self::Output

+sufficient, and should not be overridden without very good reason.
source§

impl Rem<&Series> for &Series

source§

fn rem(self, rhs: Self) -> Self::Output

let s: Series = [1, 2, 3].iter().collect();
 let out = &s / &s;
-
§

type Output = Series

The resulting type after applying the % operator.
source§

impl<T> Rem<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> Self::Output

Performs the % operation. Read more
source§

impl<T> Rem<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> Self::Output

Performs the % operation. Read more
source§

impl Sub<&Series> for &Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl Sub<Series> for Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for &Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> Self::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for Serieswhere - T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> Self::Output

Performs the - operation. Read more
source§

impl TryFrom<(&str, Box<dyn Array, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(name_arr: (&str, ArrayRef)) -> PolarsResult<Self>

Performs the conversion.
source§

impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(name_arr: (&str, Vec<ArrayRef>)) -> PolarsResult<Self>

Performs the conversion.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Series

§

impl Send for Series

§

impl Sync for Series

§

impl Unpin for Series

§

impl !UnwindSafe for Series

Blanket Implementations§

source§

impl<T> Any for Twhere +

§

type Output = Series

The resulting type after applying the % operator.
source§

impl<T> Rem<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> Self::Output

Performs the % operation. Read more
source§

impl<T> Rem<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the % operator.
source§

fn rem(self, rhs: T) -> Self::Output

Performs the % operation. Read more
source§

impl Sub<&Series> for &Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl Sub<Series> for Series

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for &Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> Self::Output

Performs the - operation. Read more
source§

impl<T> Sub<T> for Serieswhere + T: Num + NumCast,

§

type Output = Series

The resulting type after applying the - operator.
source§

fn sub(self, rhs: T) -> Self::Output

Performs the - operation. Read more
source§

impl TryFrom<(&str, Box<dyn Array, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(name_arr: (&str, ArrayRef)) -> PolarsResult<Self>

Performs the conversion.
source§

impl TryFrom<(&str, Vec<Box<dyn Array, Global>, Global>)> for Series

§

type Error = PolarsError

The type returned in the event of a conversion error.
source§

fn try_from(name_arr: (&str, Vec<ArrayRef>)) -> PolarsResult<Self>

Performs the conversion.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Series

§

impl Send for Series

§

impl Sync for Series

§

impl Unpin for Series

§

impl !UnwindSafe for Series

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars_core/series/trait.SeriesTrait.html b/polars_core/series/trait.SeriesTrait.html index 374e500a92d3..b2f29de3c3cb 100644 --- a/polars_core/series/trait.SeriesTrait.html +++ b/polars_core/series/trait.SeriesTrait.html @@ -176,4 +176,4 @@
Safety

source

fn tile(&self, _n: usize) -> Series

Implementations§

source§

impl<'a> dyn SeriesTrait + 'a

source

pub fn unpack<N>(&self) -> PolarsResult<&ChunkedArray<N>>where N: PolarsDataType + 'static,

Trait Implementations§

source§

impl<'a, T> AsMut<ChunkedArray<T>> for dyn SeriesTrait + 'awhere T: 'static + PolarsDataType,

source§

fn as_mut(&mut self) -> &mut ChunkedArray<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<'a, T> AsRef<ChunkedArray<T>> for dyn SeriesTrait + 'awhere - T: 'static + PolarsDataType,

source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.

Implementors§

\ No newline at end of file + T: 'static + PolarsDataType,
source§

fn as_ref(&self) -> &ChunkedArray<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> AsRef<dyn SeriesTrait + 'a> for Series

source§

fn as_ref(&self) -> &(dyn SeriesTrait + 'a)

Converts this type into a shared reference of the (usually inferred) input type.

Implementors§

\ No newline at end of file diff --git a/polars_core/utils/trait.FromTrustedLenIterator.html b/polars_core/utils/trait.FromTrustedLenIterator.html index e11a9bb20e95..b61ec7a8f3a6 100644 --- a/polars_core/utils/trait.FromTrustedLenIterator.html +++ b/polars_core/utils/trait.FromTrustedLenIterator.html @@ -5,18 +5,18 @@ <T as IntoIterator>::IntoIter: TrustedLen; }

Required Methods§

source

fn from_iter_trusted_length<T>(iter: T) -> Selfwhere T: IntoIterator<Item = A>, - <T as IntoIterator>::IntoIter: TrustedLen,

Implementations on Foreign Types§

source§

impl FromTrustedLenIterator<Option<bool>> for BooleanArray

source§

fn from_iter_trusted_length<I>(iter: I) -> BooleanArraywhere - I: IntoIterator<Item = Option<bool>>, - <I as IntoIterator>::IntoIter: TrustedLen,

source§

impl<T> FromTrustedLenIterator<Option<T>> for PrimitiveArray<T>where - T: NativeType,

source§

fn from_iter_trusted_length<I>(iter: I) -> PrimitiveArray<T>where - I: IntoIterator<Item = Option<T>>, - <I as IntoIterator>::IntoIter: TrustedLen,

source§

impl FromTrustedLenIterator<bool> for BooleanArray

source§

fn from_iter_trusted_length<I>(iter: I) -> BooleanArraywhere + <T as IntoIterator>::IntoIter: TrustedLen,

Implementations on Foreign Types§

source§

impl FromTrustedLenIterator<bool> for BooleanArray

source§

impl<T> FromTrustedLenIterator<T> for Vec<T, Global>

source§

fn from_iter_trusted_length<I>(iter: I) -> Vec<T, Global>where - I: IntoIterator<Item = T>, <I as IntoIterator>::IntoIter: TrustedLen,

source§

impl<T> FromTrustedLenIterator<T> for PrimitiveArray<T>where - T: NativeType,

source§

impl FromTrustedLenIterator<Option<bool>> for BooleanArray

source§

impl<T> FromTrustedLenIterator<T> for Vec<T, Global>

source§

fn from_iter_trusted_length<I>(iter: I) -> Vec<T, Global>where + I: IntoIterator<Item = T>, + <I as IntoIterator>::IntoIter: TrustedLen,

source§

impl<T> FromTrustedLenIterator<Option<T>> for PrimitiveArray<T>where + T: NativeType,

Implementors§

source§

impl FromTrustedLenIterator<Option<bool>> for ChunkedArray<BooleanType>

source§

impl FromTrustedLenIterator<Option<Series>> for ListChunked

source§

impl FromTrustedLenIterator<bool> for NoNull<BooleanChunked>

source§

impl FromTrustedLenIterator<bool> for BooleanChunked

source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for BinaryChunkedwhere Ptr: AsRef<[u8]>,

source§

impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for Utf8Chunkedwhere Ptr: AsRef<str>,

source§

impl<Ptr> FromTrustedLenIterator<Ptr> for BinaryChunkedwhere diff --git a/polars_error/enum.ArrowError.html b/polars_error/enum.ArrowError.html index 713f586a97f7..9d971a2b69a3 100644 --- a/polars_error/enum.ArrowError.html +++ b/polars_error/enum.ArrowError.html @@ -16,7 +16,7 @@ The solution is usually to use a higher-capacity container-backing type.

§

OutOfSpec(String)

Whenever incoming data from the C data interface, IPC or Flight does not fulfil the Arrow specification.

Implementations§

source§

impl Error

source

pub fn from_external_error(error: impl Error + Send + Sync + 'static) -> Error

Wraps an external error in an Error.

-

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: ArrowError) -> Self

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Error

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: ArrowError) -> Self

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Converts to this type from the input type.
source§

impl From<OutOfSpecKind> for Error

source§

fn from(kind: OutOfSpecKind) -> Error

Converts to this type from the input type.
source§

impl From<TryReserveError> for Error

source§

fn from(_: TryReserveError) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars_error/enum.PolarsError.html b/polars_error/enum.PolarsError.html index 7d44b7d02d87..98fd38047af8 100644 --- a/polars_error/enum.PolarsError.html +++ b/polars_error/enum.PolarsError.html @@ -11,7 +11,7 @@ ShapeMismatch(ErrString), StringCacheMismatch(ErrString), StructFieldNotFound(ErrString), -}

Variants§

§

ArrowError(Box<ArrowError>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> Self

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: ArrowError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +}

Variants§

§

ArrowError(Box<ArrowError>)

§

ColumnNotFound(ErrString)

§

ComputeError(ErrString)

§

Duplicate(ErrString)

§

InvalidOperation(ErrString)

§

Io(Error)

§

NoData(ErrString)

§

SchemaFieldNotFound(ErrString)

§

SchemaMismatch(ErrString)

§

ShapeMismatch(ErrString)

§

StringCacheMismatch(ErrString)

§

StructFieldNotFound(ErrString)

Implementations§

source§

impl PolarsError

source

pub fn wrap_msg(&self, func: &dyn Fn(&str) -> String) -> Self

Trait Implementations§

source§

impl Debug for PolarsError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for PolarsError

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for PolarsError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Error> for PolarsError

source§

fn from(err: ArrowError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for PolarsError

source§

fn from(err: Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/polars_error/struct.ErrString.html b/polars_error/struct.ErrString.html index 6915b6ca6e79..4db431a91e34 100644 --- a/polars_error/struct.ErrString.html +++ b/polars_error/struct.ErrString.html @@ -1203,7 +1203,7 @@
Examples
let s = "Grüße, Jürgen ❤";
 
 assert_eq!("grüße, jürgen ❤", s.to_ascii_lowercase());
-

Trait Implementations§

source§

impl Debug for ErrString

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Deref for ErrString

§

type Target = str

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Display for ErrString

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> From<T> for ErrStringwhere +

Trait Implementations§

source§

impl Debug for ErrString

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Deref for ErrString

§

type Target = str

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Display for ErrString

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> From<T> for ErrStringwhere T: Into<Cow<'static, str>>,

source§

fn from(msg: T) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars_io/mmap/trait.MmapBytesReader.html b/polars_io/mmap/trait.MmapBytesReader.html index d5b70c62bc84..2062e663c381 100644 --- a/polars_io/mmap/trait.MmapBytesReader.html +++ b/polars_io/mmap/trait.MmapBytesReader.html @@ -4,5 +4,5 @@ fn to_bytes(&self) -> Option<&[u8]> { ... } }
Available on crate features csv or parquet or ipc or json only.
Expand description

Trait used to get a hold to file handler or to the underlying bytes without performing a Read.

-

Provided Methods§

source

fn to_file(&self) -> Option<&File>

source

fn to_bytes(&self) -> Option<&[u8]>

Implementations on Foreign Types§

source§

impl MmapBytesReader for BufReader<File>

source§

fn to_file(&self) -> Option<&File>

source§

impl MmapBytesReader for File

source§

fn to_file(&self) -> Option<&File>

source§

impl<T: MmapBytesReader> MmapBytesReader for &mut T

source§

fn to_file(&self) -> Option<&File>

source§

fn to_bytes(&self) -> Option<&[u8]>

source§

impl<T> MmapBytesReader for Cursor<T>where - T: AsRef<[u8]> + Send + Sync,

source§

fn to_bytes(&self) -> Option<&[u8]>

source§

impl<T: MmapBytesReader + ?Sized> MmapBytesReader for Box<T>

source§

fn to_file(&self) -> Option<&File>

source§

fn to_bytes(&self) -> Option<&[u8]>

Implementors§

\ No newline at end of file +

Provided Methods§

source

fn to_file(&self) -> Option<&File>

source

fn to_bytes(&self) -> Option<&[u8]>

Implementations on Foreign Types§

source§

impl<T: MmapBytesReader + ?Sized> MmapBytesReader for Box<T>

source§

fn to_file(&self) -> Option<&File>

source§

fn to_bytes(&self) -> Option<&[u8]>

source§

impl<T: MmapBytesReader> MmapBytesReader for &mut T

source§

fn to_file(&self) -> Option<&File>

source§

fn to_bytes(&self) -> Option<&[u8]>

source§

impl MmapBytesReader for BufReader<File>

source§

fn to_file(&self) -> Option<&File>

source§

impl MmapBytesReader for File

source§

fn to_file(&self) -> Option<&File>

source§

impl<T> MmapBytesReader for Cursor<T>where + T: AsRef<[u8]> + Send + Sync,

source§

fn to_bytes(&self) -> Option<&[u8]>

Implementors§

\ No newline at end of file diff --git a/polars_io/ndjson/core/struct.StructArray.html b/polars_io/ndjson/core/struct.StructArray.html index bb33f64d6330..a388cb9393a4 100644 --- a/polars_io/ndjson/core/struct.StructArray.html +++ b/polars_io/ndjson/core/struct.StructArray.html @@ -97,10 +97,10 @@
Panics
&self, offset: usize, length: usize -) -> Box<dyn Array, Global>
Returns a slice of this Array. Read more
source§

impl Clone for StructArray

source§

fn clone(&self) -> StructArray

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 StructArray

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<GrowableStruct<'a>> for StructArray

source§

fn from(val: GrowableStruct<'a>) -> StructArray

Converts to this type from the input type.
source§

impl From<MutableStructArray> for StructArray

source§

fn from(other: MutableStructArray) -> StructArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a StructArray

§

type Item = Option<Vec<Box<dyn Scalar, Global>, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Vec<Box<dyn Scalar, Global>, Global>, StructValueIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a StructArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for StructArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StructArray> for StructArray

source§

fn eq(&self, other: &StructArray) -> bool

This method tests for self and other values to be equal, and is used +) -> Box<dyn Array, Global>
Returns a slice of this Array. Read more
source§

impl Clone for StructArray

source§

fn clone(&self) -> StructArray

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 StructArray

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<GrowableStruct<'a>> for StructArray

source§

fn from(val: GrowableStruct<'a>) -> StructArray

Converts to this type from the input type.
source§

impl From<MutableStructArray> for StructArray

source§

fn from(other: MutableStructArray) -> StructArray

Converts to this type from the input type.
source§

impl<'a> IntoIterator for &'a StructArray

§

type Item = Option<Vec<Box<dyn Scalar, Global>, Global>>

The type of the elements being iterated over.
§

type IntoIter = ZipValidity<Vec<Box<dyn Scalar, Global>, Global>, StructValueIter<'a>, BitmapIter<'a>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a StructArray as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<&(dyn Array + 'static)> for StructArray

source§

fn eq(&self, other: &&(dyn Array + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StructArray> for StructArray

source§

fn eq(&self, other: &StructArray) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl !RefUnwindSafe for StructArray

§

impl Send for StructArray

§

impl Sync for StructArray

§

impl Unpin for StructArray

§

impl !UnwindSafe for StructArray

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/polars_lazy/dsl/enum.BooleanFunction.html b/polars_lazy/dsl/enum.BooleanFunction.html index 8be09a828511..4432eab0efab 100644 --- a/polars_lazy/dsl/enum.BooleanFunction.html +++ b/polars_lazy/dsl/enum.BooleanFunction.html @@ -13,7 +13,7 @@ IsNan, IsNotNan, IsIn, -}

Variants§

§

All

Fields

§drop_nulls: bool
§

Any

Fields

§drop_nulls: bool
§

IsNot

§

IsNull

§

IsNotNull

§

IsFinite

§

IsInfinite

§

IsNan

§

IsNotNan

§

IsIn

Available on crate feature is_in only.

Trait Implementations§

source§

impl Clone for BooleanFunction

source§

fn clone(&self) -> BooleanFunction

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 BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl Hash for BooleanFunction

source§

fn hash<__H>(&self, state: &mut __H)where +}

Variants§

§

All

Fields

§drop_nulls: bool
§

Any

Fields

§drop_nulls: bool
§

IsNot

§

IsNull

§

IsNotNull

§

IsFinite

§

IsInfinite

§

IsNan

§

IsNotNan

§

IsIn

Available on crate feature is_in only.

Trait Implementations§

source§

impl Clone for BooleanFunction

source§

fn clone(&self) -> BooleanFunction

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 BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl Hash for BooleanFunction

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<BooleanFunction> for BooleanFunction

source§

fn eq(&self, other: &BooleanFunction) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars_lazy/dsl/enum.Expr.html b/polars_lazy/dsl/enum.Expr.html index a89f6b7b9ad2..fa8f4fb5e6d8 100644 --- a/polars_lazy/dsl/enum.Expr.html +++ b/polars_lazy/dsl/enum.Expr.html @@ -398,10 +398,10 @@
Warning
Use with care!

source

pub fn to_physical(self) -> Expr

source

pub fn str(self) -> StringNameSpace

Available on crate feature strings only.
source

pub fn binary(self) -> BinaryNameSpace

source

pub fn list(self) -> ListNameSpace

source

pub fn meta(self) -> MetaNameSpace

Available on crate feature meta only.
source§

impl Expr

source

pub fn mutate(&mut self) -> ExprMut<'_>

Expr::mutate().apply(fn())

-
source§

impl Expr

source

pub fn nodes<'a>(&'a self, container: &mut Vec<&'a Expr, Global>)

source

pub fn nodes_mut<'a>(&'a mut self, container: &mut Vec<&'a mut Expr, Global>)

Trait Implementations§

source§

impl Add<Expr> for Expr

§

type Output = Expr

The resulting type after applying the + operator.
source§

fn add(self, rhs: Expr) -> <Expr as Add<Expr>>::Output

Performs the + operation. Read more
source§

impl AsRef<Expr> for AggExpr

source§

fn as_ref(&self) -> &Expr

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Expr

source§

fn clone(&self) -> Expr

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 Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Expr

source§

fn default() -> Expr

Returns the “default value” for a type. Read more
source§

impl Display for Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Div<Expr> for Expr

§

type Output = Expr

The resulting type after applying the / operator.
source§

fn div(self, rhs: Expr) -> <Expr as Div<Expr>>::Output

Performs the / operation. Read more
source§

impl From<&str> for Expr

source§

fn from(s: &str) -> Expr

Converts to this type from the input type.
source§

impl From<AggExpr> for Expr

source§

fn from(agg: AggExpr) -> Expr

Converts to this type from the input type.
source§

impl From<bool> for Expr

source§

fn from(val: bool) -> Expr

Converts to this type from the input type.
source§

impl From<f32> for Expr

source§

fn from(val: f32) -> Expr

Converts to this type from the input type.
source§

impl From<f64> for Expr

source§

fn from(val: f64) -> Expr

Converts to this type from the input type.
source§

impl From<i32> for Expr

source§

fn from(val: i32) -> Expr

Converts to this type from the input type.
source§

impl From<i64> for Expr

source§

fn from(val: i64) -> Expr

Converts to this type from the input type.
source§

impl From<u32> for Expr

source§

fn from(val: u32) -> Expr

Converts to this type from the input type.
source§

impl From<u64> for Expr

source§

fn from(val: u64) -> Expr

Converts to this type from the input type.
source§

impl Hash for Expr

source§

fn hash<H>(&self, state: &mut H)where +

source§

impl Expr

source

pub fn nodes<'a>(&'a self, container: &mut Vec<&'a Expr, Global>)

source

pub fn nodes_mut<'a>(&'a mut self, container: &mut Vec<&'a mut Expr, Global>)

Trait Implementations§

source§

impl Add<Expr> for Expr

§

type Output = Expr

The resulting type after applying the + operator.
source§

fn add(self, rhs: Expr) -> <Expr as Add<Expr>>::Output

Performs the + operation. Read more
source§

impl AsRef<Expr> for AggExpr

source§

fn as_ref(&self) -> &Expr

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Expr

source§

fn clone(&self) -> Expr

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 Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Expr

source§

fn default() -> Expr

Returns the “default value” for a type. Read more
source§

impl Display for Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Div<Expr> for Expr

§

type Output = Expr

The resulting type after applying the / operator.
source§

fn div(self, rhs: Expr) -> <Expr as Div<Expr>>::Output

Performs the / operation. Read more
source§

impl From<&str> for Expr

source§

fn from(s: &str) -> Expr

Converts to this type from the input type.
source§

impl From<AggExpr> for Expr

source§

fn from(agg: AggExpr) -> Expr

Converts to this type from the input type.
source§

impl From<bool> for Expr

source§

fn from(val: bool) -> Expr

Converts to this type from the input type.
source§

impl From<f32> for Expr

source§

fn from(val: f32) -> Expr

Converts to this type from the input type.
source§

impl From<f64> for Expr

source§

fn from(val: f64) -> Expr

Converts to this type from the input type.
source§

impl From<i32> for Expr

source§

fn from(val: i32) -> Expr

Converts to this type from the input type.
source§

impl From<i64> for Expr

source§

fn from(val: i64) -> Expr

Converts to this type from the input type.
source§

impl From<u32> for Expr

source§

fn from(val: u32) -> Expr

Converts to this type from the input type.
source§

impl From<u64> for Expr

source§

fn from(val: u64) -> Expr

Converts to this type from the input type.
source§

impl Hash for Expr

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, - Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> IntoIterator for &'a Expr

§

type Item = &'a Expr

The type of the elements being iterated over.
§

type IntoIter = ExprIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a Expr as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl Mul<Expr> for Expr

§

type Output = Expr

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Expr) -> <Expr as Mul<Expr>>::Output

Performs the * operation. Read more
source§

impl PartialEq<Expr> for Expr

source§

fn eq(&self, other: &Expr) -> bool

This method tests for self and other values to be equal, and is used + Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> IntoIterator for &'a Expr

§

type Item = &'a Expr

The type of the elements being iterated over.
§

type IntoIter = ExprIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> <&'a Expr as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
source§

impl Mul<Expr> for Expr

§

type Output = Expr

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Expr) -> <Expr as Mul<Expr>>::Output

Performs the * operation. Read more
source§

impl PartialEq<Expr> for Expr

source§

fn eq(&self, other: &Expr) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Rem<Expr> for Expr

§

type Output = Expr

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Expr) -> <Expr as Rem<Expr>>::Output

Performs the % operation. Read more
source§

impl Sub<Expr> for Expr

§

type Output = Expr

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Expr) -> <Expr as Sub<Expr>>::Output

Performs the - operation. Read more
source§

impl TreeWalker for Expr

source§

fn apply_children<'a>( &'a self, diff --git a/polars_lazy/dsl/enum.FunctionExpr.html b/polars_lazy/dsl/enum.FunctionExpr.html index 9767ff7625d8..c1dcfd6f3eb4 100644 --- a/polars_lazy/dsl/enum.FunctionExpr.html +++ b/polars_lazy/dsl/enum.FunctionExpr.html @@ -62,7 +62,7 @@ }, ToPhysical, SetSortedFlag(IsSorted), -

}

Variants§

§

Abs

Available on crate feature abs only.
§

NullCount

§

Pow(PowFunction)

§

StringExpr(StringFunction)

Available on crate feature strings only.
§

BinaryExpr(BinaryFunction)

§

Trigonometry(TrigonometricFunction)

Available on crate feature trigonometry only.
§

Atan2

Available on crate feature trigonometry only.
§

FillNull

Fields

§super_type: DataType
§

ShiftAndFill

Fields

§periods: i64
§

DropNans

§

Clip

Fields

§min: Option<AnyValue<'static>>
§max: Option<AnyValue<'static>>
Available on crate feature round_series only.
§

ListExpr(ListFunction)

§

Shift(i64)

§

Cumcount

Fields

§reverse: bool
§

Cumsum

Fields

§reverse: bool
§

Cumprod

Fields

§reverse: bool
§

Cummin

Fields

§reverse: bool
§

Cummax

Fields

§reverse: bool
§

Reverse

§

Boolean(BooleanFunction)

§

Coalesce

§

ShrinkType

§

Entropy

Fields

§base: f64
§normalize: bool
Available on crate feature log only.
§

Log

Fields

§base: f64
Available on crate feature log only.
§

Log1p

Available on crate feature log only.
§

Exp

Available on crate feature log only.
§

Unique(bool)

§

Round

Fields

§decimals: u32
Available on crate feature round_series only.
§

Floor

Available on crate feature round_series only.
§

Ceil

Available on crate feature round_series only.
§

UpperBound

§

LowerBound

§

ConcatExpr(bool)

§

Correlation

Fields

§method: CorrelationMethod
§ddof: u8
§

ToPhysical

§

SetSortedFlag(IsSorted)

Trait Implementations§

source§

impl Clone for FunctionExpr

source§

fn clone(&self) -> FunctionExpr

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 FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<BinaryFunction> for FunctionExpr

source§

fn from(b: BinaryFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<StringFunction> for FunctionExpr

source§

fn from(str: StringFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl PartialEq<FunctionExpr> for FunctionExpr

source§

fn eq(&self, other: &FunctionExpr) -> bool

This method tests for self and other values to be equal, and is used +
}

Variants§

§

Abs

Available on crate feature abs only.
§

NullCount

§

Pow(PowFunction)

§

StringExpr(StringFunction)

Available on crate feature strings only.
§

BinaryExpr(BinaryFunction)

§

Trigonometry(TrigonometricFunction)

Available on crate feature trigonometry only.
§

Atan2

Available on crate feature trigonometry only.
§

FillNull

Fields

§super_type: DataType
§

ShiftAndFill

Fields

§periods: i64
§

DropNans

§

Clip

Fields

§min: Option<AnyValue<'static>>
§max: Option<AnyValue<'static>>
Available on crate feature round_series only.
§

ListExpr(ListFunction)

§

Shift(i64)

§

Cumcount

Fields

§reverse: bool
§

Cumsum

Fields

§reverse: bool
§

Cumprod

Fields

§reverse: bool
§

Cummin

Fields

§reverse: bool
§

Cummax

Fields

§reverse: bool
§

Reverse

§

Boolean(BooleanFunction)

§

Coalesce

§

ShrinkType

§

Entropy

Fields

§base: f64
§normalize: bool
Available on crate feature log only.
§

Log

Fields

§base: f64
Available on crate feature log only.
§

Log1p

Available on crate feature log only.
§

Exp

Available on crate feature log only.
§

Unique(bool)

§

Round

Fields

§decimals: u32
Available on crate feature round_series only.
§

Floor

Available on crate feature round_series only.
§

Ceil

Available on crate feature round_series only.
§

UpperBound

§

LowerBound

§

ConcatExpr(bool)

§

Correlation

Fields

§method: CorrelationMethod
§ddof: u8
§

ToPhysical

§

SetSortedFlag(IsSorted)

Trait Implementations§

source§

impl Clone for FunctionExpr

source§

fn clone(&self) -> FunctionExpr

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 FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<BinaryFunction> for FunctionExpr

source§

fn from(b: BinaryFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<StringFunction> for FunctionExpr

source§

fn from(str: StringFunction) -> FunctionExpr

Converts to this type from the input type.
source§

impl PartialEq<FunctionExpr> for FunctionExpr

source§

fn eq(&self, other: &FunctionExpr) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for FunctionExpr

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars_lazy/dsl/functions/trait.Range.html b/polars_lazy/dsl/functions/trait.Range.html index 0daf2cab03d5..3b72e4a7ff4d 100644 --- a/polars_lazy/dsl/functions/trait.Range.html +++ b/polars_lazy/dsl/functions/trait.Range.html @@ -1,4 +1,4 @@ Range in polars_lazy::dsl::functions - Rust
pub trait Range<T> {
     // Required method
     fn into_range(self, high: T) -> Expr;
-}

Required Methods§

source

fn into_range(self, high: T) -> Expr

Implementations on Foreign Types§

source§

impl Range<i64> for i64

source§

fn into_range(self, high: i64) -> Expr

source§

impl Range<i32> for i32

source§

fn into_range(self, high: i32) -> Expr

source§

impl Range<u32> for u32

source§

fn into_range(self, high: u32) -> Expr

Implementors§

\ No newline at end of file +}

Required Methods§

source

fn into_range(self, high: T) -> Expr

Implementations on Foreign Types§

source§

impl Range<u32> for u32

source§

fn into_range(self, high: u32) -> Expr

source§

impl Range<i64> for i64

source§

fn into_range(self, high: i64) -> Expr

source§

impl Range<i32> for i32

source§

fn into_range(self, high: i32) -> Expr

Implementors§

\ No newline at end of file diff --git a/polars_lazy/dsl/struct.SpecialEq.html b/polars_lazy/dsl/struct.SpecialEq.html index 281ca381fdab..4af0d5ed8793 100644 --- a/polars_lazy/dsl/struct.SpecialEq.html +++ b/polars_lazy/dsl/struct.SpecialEq.html @@ -5,7 +5,7 @@ F: 'static + Fn(&[Field]) -> Field + Send + Sync,
source

pub fn map_dtype<F>(f: F) -> SpecialEq<Arc<dyn FunctionOutputField>>where F: 'static + Fn(&DataType) -> DataType + Send + Sync,

source

pub fn float_type() -> SpecialEq<Arc<dyn FunctionOutputField>>

source

pub fn super_type() -> SpecialEq<Arc<dyn FunctionOutputField>>

source

pub fn map_dtypes<F>(f: F) -> SpecialEq<Arc<dyn FunctionOutputField>>where F: 'static + Fn(&[&DataType]) -> DataType + Send + Sync,

Trait Implementations§

source§

impl<T> Clone for SpecialEq<T>where - T: Clone,

source§

fn clone(&self) -> SpecialEq<T>

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<T> Debug for SpecialEq<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for SpecialEq<Arc<dyn BinaryUdfOutputField>>

source§

fn default() -> SpecialEq<Arc<dyn BinaryUdfOutputField>>

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn FunctionOutputField>>

source§

fn default() -> SpecialEq<Arc<dyn FunctionOutputField>>

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn SeriesBinaryUdf>>

source§

fn default() -> SpecialEq<Arc<dyn SeriesBinaryUdf>>

Returns the “default value” for a type. Read more
source§

impl<T> Deref for SpecialEq<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &<SpecialEq<T> as Deref>::Target

Dereferences the value.
source§

impl From<BinaryFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BinaryFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<StringFunction> for SpecialEq<Arc<dyn SeriesUdf>>

Available on crate feature strings only.
source§

fn from(func: StringFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl<T> PartialEq<SpecialEq<Arc<T>>> for SpecialEq<Arc<T>>where + T: Clone,

source§

fn clone(&self) -> SpecialEq<T>

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<T> Debug for SpecialEq<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for SpecialEq<Arc<dyn BinaryUdfOutputField>>

source§

fn default() -> SpecialEq<Arc<dyn BinaryUdfOutputField>>

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn FunctionOutputField>>

source§

fn default() -> SpecialEq<Arc<dyn FunctionOutputField>>

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn SeriesBinaryUdf>>

source§

fn default() -> SpecialEq<Arc<dyn SeriesBinaryUdf>>

Returns the “default value” for a type. Read more
source§

impl<T> Deref for SpecialEq<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &<SpecialEq<T> as Deref>::Target

Dereferences the value.
source§

impl From<BinaryFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BinaryFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl From<StringFunction> for SpecialEq<Arc<dyn SeriesUdf>>

Available on crate feature strings only.
source§

fn from(func: StringFunction) -> SpecialEq<Arc<dyn SeriesUdf>>

Converts to this type from the input type.
source§

impl<T> PartialEq<SpecialEq<Arc<T>>> for SpecialEq<Arc<T>>where T: ?Sized,

source§

fn eq(&self, other: &SpecialEq<Arc<T>>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<SpecialEq<Series>> for SpecialEq<Series>

source§

fn eq(&self, other: &SpecialEq<Series>) -> bool

This method tests for self and other values to be equal, and is used diff --git a/polars_lazy/dsl/trait.Range.html b/polars_lazy/dsl/trait.Range.html index c71843b07873..1274b4e7beed 100644 --- a/polars_lazy/dsl/trait.Range.html +++ b/polars_lazy/dsl/trait.Range.html @@ -1,4 +1,4 @@ Range in polars_lazy::dsl - Rust

Trait polars_lazy::dsl::Range

source ·
pub trait Range<T> {
     // Required method
     fn into_range(self, high: T) -> Expr;
-}

Required Methods§

source

fn into_range(self, high: T) -> Expr

Implementations on Foreign Types§

source§

impl Range<i64> for i64

source§

fn into_range(self, high: i64) -> Expr

source§

impl Range<i32> for i32

source§

fn into_range(self, high: i32) -> Expr

source§

impl Range<u32> for u32

source§

fn into_range(self, high: u32) -> Expr

Implementors§

\ No newline at end of file +}

Required Methods§

source

fn into_range(self, high: T) -> Expr

Implementations on Foreign Types§

source§

impl Range<u32> for u32

source§

fn into_range(self, high: u32) -> Expr

source§

impl Range<i64> for i64

source§

fn into_range(self, high: i64) -> Expr

source§

impl Range<i32> for i32

source§

fn into_range(self, high: i32) -> Expr

Implementors§

\ No newline at end of file diff --git a/polars_lazy/prelude/trait.Literal.html b/polars_lazy/prelude/trait.Literal.html index 8497793364c2..54657c48d87c 100644 --- a/polars_lazy/prelude/trait.Literal.html +++ b/polars_lazy/prelude/trait.Literal.html @@ -2,4 +2,4 @@ // Required method fn lit(self) -> Expr; }

Required Methods§

source

fn lit(self) -> Expr

Literal expression.

-

Implementations on Foreign Types§

source§

impl Literal for u64

source§

fn lit(self) -> Expr

source§

impl Literal for String

source§

fn lit(self) -> Expr

source§

impl Literal for u32

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a str

source§

fn lit(self) -> Expr

source§

impl Literal for bool

source§

fn lit(self) -> Expr

source§

impl Literal for Vec<u8, Global>

source§

fn lit(self) -> Expr

source§

impl Literal for i32

source§

fn lit(self) -> Expr

source§

impl Literal for Series

source§

fn lit(self) -> Expr

source§

impl Literal for f32

source§

fn lit(self) -> Expr

source§

impl Literal for f64

source§

fn lit(self) -> Expr

source§

impl Literal for i64

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a [u8]

source§

fn lit(self) -> Expr

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Literal for i32

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a str

source§

fn lit(self) -> Expr

source§

impl Literal for f64

source§

fn lit(self) -> Expr

source§

impl Literal for f32

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a [u8]

source§

fn lit(self) -> Expr

source§

impl Literal for u64

source§

fn lit(self) -> Expr

source§

impl Literal for u32

source§

fn lit(self) -> Expr

source§

impl Literal for Vec<u8, Global>

source§

fn lit(self) -> Expr

source§

impl Literal for Series

source§

fn lit(self) -> Expr

source§

impl Literal for String

source§

fn lit(self) -> Expr

source§

impl Literal for bool

source§

fn lit(self) -> Expr

source§

impl Literal for i64

source§

fn lit(self) -> Expr

Implementors§

source§

impl Literal for LiteralValue

source§

impl Literal for Null

\ No newline at end of file diff --git a/polars_ops/chunked_array/trait.ChunkedSet.html b/polars_ops/chunked_array/trait.ChunkedSet.html index 1440e02332d2..7af7985d46bb 100644 --- a/polars_ops/chunked_array/trait.ChunkedSet.html +++ b/polars_ops/chunked_array/trait.ChunkedSet.html @@ -3,8 +3,8 @@ fn set_at_idx2<V>(self, idx: &[IdxSize], values: V) -> PolarsResult<Series> where V: IntoIterator<Item = Option<T>>; }

Required Methods§

source

fn set_at_idx2<V>(self, idx: &[IdxSize], values: V) -> PolarsResult<Series>where - V: IntoIterator<Item = Option<T>>,

Implementations on Foreign Types§

source§

impl<'a> ChunkedSet<&'a str> for &'a Utf8Chunked

source§

fn set_at_idx2<V>(self, idx: &[IdxSize], values: V) -> PolarsResult<Series>where - V: IntoIterator<Item = Option<&'a str>>,

source§

impl ChunkedSet<bool> for &BooleanChunked

source§

fn set_at_idx2<V>(self, idx: &[IdxSize], values: V) -> PolarsResult<Series>where - V: IntoIterator<Item = Option<bool>>,

source§

impl<T: PolarsOpsNumericType> ChunkedSet<<T as PolarsNumericType>::Native> for ChunkedArray<T>where + V: IntoIterator<Item = Option<T>>,

Implementations on Foreign Types§

source§

impl ChunkedSet<bool> for &BooleanChunked

source§

fn set_at_idx2<V>(self, idx: &[IdxSize], values: V) -> PolarsResult<Series>where + V: IntoIterator<Item = Option<bool>>,

source§

impl<'a> ChunkedSet<&'a str> for &'a Utf8Chunked

source§

fn set_at_idx2<V>(self, idx: &[IdxSize], values: V) -> PolarsResult<Series>where + V: IntoIterator<Item = Option<&'a str>>,

source§

impl<T: PolarsOpsNumericType> ChunkedSet<<T as PolarsNumericType>::Native> for ChunkedArray<T>where ChunkedArray<T>: IntoSeries,

source§

fn set_at_idx2<V>(self, idx: &[IdxSize], values: V) -> PolarsResult<Series>where V: IntoIterator<Item = Option<T::Native>>,

Implementors§

\ No newline at end of file diff --git a/polars_ops/prelude/trait.SeriesMethods.html b/polars_ops/prelude/trait.SeriesMethods.html index 926256ba04be..b96ad8c4e1a3 100644 --- a/polars_ops/prelude/trait.SeriesMethods.html +++ b/polars_ops/prelude/trait.SeriesMethods.html @@ -1,4 +1,4 @@ -SeriesMethods in polars_ops::prelude - Rust
pub trait SeriesMethods: SeriesSealed {
+SeriesMethods in polars_ops::prelude - Rust
pub trait SeriesMethods: SeriesSealed {
     // Provided methods
     fn value_counts(
         &self,
@@ -12,4 +12,4 @@
     sorted: bool
 ) -> PolarsResult<DataFrame>

Create a DataFrame with the unique values of this Series and a column "counts" with dtype IdxType

-
source

fn is_sorted(&self, options: SortOptions) -> PolarsResult<bool>

Implementations on Foreign Types§

source§

impl SeriesMethods for Series

Implementors§

\ No newline at end of file +
source

fn is_sorted(&self, options: SortOptions) -> PolarsResult<bool>

Implementations on Foreign Types§

source§

impl SeriesMethods for Series

Implementors§

\ No newline at end of file diff --git a/polars_plan/dsl/enum.BooleanFunction.html b/polars_plan/dsl/enum.BooleanFunction.html index d6a3d8991541..5e6850a0425d 100644 --- a/polars_plan/dsl/enum.BooleanFunction.html +++ b/polars_plan/dsl/enum.BooleanFunction.html @@ -13,7 +13,7 @@ IsNan, IsNotNan, IsIn, -}

Variants§

§

All

Fields

§drop_nulls: bool
§

Any

Fields

§drop_nulls: bool
§

IsNot

§

IsNull

§

IsNotNull

§

IsFinite

§

IsInfinite

§

IsNan

§

IsNotNan

§

IsIn

Available on crate feature is_in only.

Trait Implementations§

source§

impl Clone for BooleanFunction

source§

fn clone(&self) -> BooleanFunction

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 BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> Self

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> Self

Converts to this type from the input type.
source§

impl Hash for BooleanFunction

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +}

Variants§

§

All

Fields

§drop_nulls: bool
§

Any

Fields

§drop_nulls: bool
§

IsNot

§

IsNull

§

IsNotNull

§

IsFinite

§

IsInfinite

§

IsNan

§

IsNotNan

§

IsIn

Available on crate feature is_in only.

Trait Implementations§

source§

impl Clone for BooleanFunction

source§

fn clone(&self) -> BooleanFunction

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 BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for BooleanFunction

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> Self

Converts to this type from the input type.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> Self

Converts to this type from the input type.
source§

impl Hash for BooleanFunction

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<BooleanFunction> for BooleanFunction

source§

fn eq(&self, other: &BooleanFunction) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always diff --git a/polars_plan/dsl/enum.Expr.html b/polars_plan/dsl/enum.Expr.html index 25f70264d08e..5bd5f33e0f16 100644 --- a/polars_plan/dsl/enum.Expr.html +++ b/polars_plan/dsl/enum.Expr.html @@ -359,11 +359,11 @@
Warning
Use with care!

source

pub fn to_physical(self) -> Expr

source

pub fn str(self) -> StringNameSpace

Available on crate feature strings only.
source

pub fn binary(self) -> BinaryNameSpace

source

pub fn list(self) -> ListNameSpace

source

pub fn meta(self) -> MetaNameSpace

Available on crate feature meta only.
source§

impl Expr

source

pub fn mutate(&mut self) -> ExprMut<'_>

Expr::mutate().apply(fn())

-
source§

impl Expr

source

pub fn nodes<'a>(&'a self, container: &mut Vec<&'a Expr>)

source

pub fn nodes_mut<'a>(&'a mut self, container: &mut Vec<&'a mut Expr>)

Trait Implementations§

source§

impl Add<Expr> for Expr

§

type Output = Expr

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AsRef<Expr> for AggExpr

source§

fn as_ref(&self) -> &Expr

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Expr

source§

fn clone(&self) -> Expr

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 Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Expr

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Div<Expr> for Expr

§

type Output = Expr

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl From<&str> for Expr

source§

fn from(s: &str) -> Self

Converts to this type from the input type.
source§

impl From<AggExpr> for Expr

source§

fn from(agg: AggExpr) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Expr

source§

fn from(val: bool) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Expr

source§

fn from(val: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Expr

source§

fn from(val: f64) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Expr

source§

fn from(val: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Expr

source§

fn from(val: i64) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Expr

source§

fn from(val: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Expr

source§

fn from(val: u64) -> Self

Converts to this type from the input type.
source§

impl Hash for Expr

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

source§

impl Expr

source

pub fn nodes<'a>(&'a self, container: &mut Vec<&'a Expr>)

source

pub fn nodes_mut<'a>(&'a mut self, container: &mut Vec<&'a mut Expr>)

Trait Implementations§

source§

impl Add<Expr> for Expr

§

type Output = Expr

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AsRef<Expr> for AggExpr

source§

fn as_ref(&self) -> &Expr

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Expr

source§

fn clone(&self) -> Expr

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 Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Expr

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for Expr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Div<Expr> for Expr

§

type Output = Expr

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl From<&str> for Expr

source§

fn from(s: &str) -> Self

Converts to this type from the input type.
source§

impl From<AggExpr> for Expr

source§

fn from(agg: AggExpr) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Expr

source§

fn from(val: bool) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Expr

source§

fn from(val: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Expr

source§

fn from(val: f64) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Expr

source§

fn from(val: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Expr

source§

fn from(val: i64) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Expr

source§

fn from(val: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Expr

source§

fn from(val: u64) -> Self

Converts to this type from the input type.
source§

impl Hash for Expr

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> IntoIterator for &'a Expr

§

type Item = &'a Expr

The type of the elements being iterated over.
§

type IntoIter = ExprIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl Mul<Expr> for Expr

§

type Output = Expr

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
source§

impl PartialEq<Expr> for Expr

source§

fn eq(&self, other: &Expr) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl Rem<Expr> for Expr

§

type Output = Expr

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self::Output

Performs the % operation. Read more
source§

impl Sub<Expr> for Expr

§

type Output = Expr

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl TreeWalker for Expr

source§

fn apply_children<'a>( +sufficient, and should not be overridden without very good reason.

source§

impl Rem<Expr> for Expr

§

type Output = Expr

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self::Output

Performs the % operation. Read more
source§

impl Sub<Expr> for Expr

§

type Output = Expr

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl TreeWalker for Expr

source§

fn apply_children<'a>( &'a self, op: &mut dyn FnMut(&Self) -> PolarsResult<VisitRecursion> ) -> PolarsResult<VisitRecursion>

source§

fn map_children( diff --git a/polars_plan/dsl/enum.FunctionExpr.html b/polars_plan/dsl/enum.FunctionExpr.html index fd5098982309..f5308d2db3a8 100644 --- a/polars_plan/dsl/enum.FunctionExpr.html +++ b/polars_plan/dsl/enum.FunctionExpr.html @@ -62,7 +62,7 @@ }, ToPhysical, SetSortedFlag(IsSorted), -

}

Variants§

§

Abs

Available on crate feature abs only.
§

NullCount

§

Pow(PowFunction)

§

StringExpr(StringFunction)

Available on crate feature strings only.
§

BinaryExpr(BinaryFunction)

§

Trigonometry(TrigonometricFunction)

Available on crate feature trigonometry only.
§

Atan2

Available on crate feature trigonometry only.
§

FillNull

Fields

§super_type: DataType
§

ShiftAndFill

Fields

§periods: i64
§

DropNans

§

Clip

Fields

§min: Option<AnyValue<'static>>
§max: Option<AnyValue<'static>>
Available on crate feature round_series only.
§

ListExpr(ListFunction)

§

Shift(i64)

§

Cumcount

Fields

§reverse: bool
§

Cumsum

Fields

§reverse: bool
§

Cumprod

Fields

§reverse: bool
§

Cummin

Fields

§reverse: bool
§

Cummax

Fields

§reverse: bool
§

Reverse

§

Boolean(BooleanFunction)

§

Coalesce

§

ShrinkType

§

Entropy

Fields

§base: f64
§normalize: bool
Available on crate feature log only.
§

Log

Fields

§base: f64
Available on crate feature log only.
§

Log1p

Available on crate feature log only.
§

Exp

Available on crate feature log only.
§

Unique(bool)

§

Round

Fields

§decimals: u32
Available on crate feature round_series only.
§

Floor

Available on crate feature round_series only.
§

Ceil

Available on crate feature round_series only.
§

UpperBound

§

LowerBound

§

ConcatExpr(bool)

§

Correlation

Fields

§method: CorrelationMethod
§ddof: u8
§

ToPhysical

§

SetSortedFlag(IsSorted)

Trait Implementations§

source§

impl Clone for FunctionExpr

source§

fn clone(&self) -> FunctionExpr

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 FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> Self

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> Self

Converts to this type from the input type.
source§

impl PartialEq<FunctionExpr> for FunctionExpr

source§

fn eq(&self, other: &FunctionExpr) -> bool

This method tests for self and other values to be equal, and is used +
}

Variants§

§

Abs

Available on crate feature abs only.
§

NullCount

§

Pow(PowFunction)

§

StringExpr(StringFunction)

Available on crate feature strings only.
§

BinaryExpr(BinaryFunction)

§

Trigonometry(TrigonometricFunction)

Available on crate feature trigonometry only.
§

Atan2

Available on crate feature trigonometry only.
§

FillNull

Fields

§super_type: DataType
§

ShiftAndFill

Fields

§periods: i64
§

DropNans

§

Clip

Fields

§min: Option<AnyValue<'static>>
§max: Option<AnyValue<'static>>
Available on crate feature round_series only.
§

ListExpr(ListFunction)

§

Shift(i64)

§

Cumcount

Fields

§reverse: bool
§

Cumsum

Fields

§reverse: bool
§

Cumprod

Fields

§reverse: bool
§

Cummin

Fields

§reverse: bool
§

Cummax

Fields

§reverse: bool
§

Reverse

§

Boolean(BooleanFunction)

§

Coalesce

§

ShrinkType

§

Entropy

Fields

§base: f64
§normalize: bool
Available on crate feature log only.
§

Log

Fields

§base: f64
Available on crate feature log only.
§

Log1p

Available on crate feature log only.
§

Exp

Available on crate feature log only.
§

Unique(bool)

§

Round

Fields

§decimals: u32
Available on crate feature round_series only.
§

Floor

Available on crate feature round_series only.
§

Ceil

Available on crate feature round_series only.
§

UpperBound

§

LowerBound

§

ConcatExpr(bool)

§

Correlation

Fields

§method: CorrelationMethod
§ddof: u8
§

ToPhysical

§

SetSortedFlag(IsSorted)

Trait Implementations§

source§

impl Clone for FunctionExpr

source§

fn clone(&self) -> FunctionExpr

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 FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for FunctionExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<BooleanFunction> for FunctionExpr

source§

fn from(func: BooleanFunction) -> Self

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> Self

Converts to this type from the input type.
source§

impl PartialEq<FunctionExpr> for FunctionExpr

source§

fn eq(&self, other: &FunctionExpr) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for FunctionExpr

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars_plan/dsl/enum.Operator.html b/polars_plan/dsl/enum.Operator.html index a5196a8cb508..45b53440b6a7 100644 --- a/polars_plan/dsl/enum.Operator.html +++ b/polars_plan/dsl/enum.Operator.html @@ -17,7 +17,7 @@ And, Or, Xor, -

}

Variants§

§

Eq

§

EqValidity

§

NotEq

§

NotEqValidity

§

Lt

§

LtEq

§

Gt

§

GtEq

§

Plus

§

Minus

§

Multiply

§

Divide

§

TrueDivide

§

FloorDivide

§

Modulus

§

And

§

Or

§

Xor

Trait Implementations§

source§

impl Clone for Operator

source§

fn clone(&self) -> Operator

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 Operator

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Operator

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<Operator> for Operator

source§

fn eq(&self, other: &Operator) -> bool

This method tests for self and other values to be equal, and is used +
}

Variants§

§

Eq

§

EqValidity

§

NotEq

§

NotEqValidity

§

Lt

§

LtEq

§

Gt

§

GtEq

§

Plus

§

Minus

§

Multiply

§

Divide

§

TrueDivide

§

FloorDivide

§

Modulus

§

And

§

Or

§

Xor

Trait Implementations§

source§

impl Clone for Operator

source§

fn clone(&self) -> Operator

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 Operator

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Operator

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<Operator> for Operator

source§

fn eq(&self, other: &Operator) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Operator

source§

impl Eq for Operator

source§

impl StructuralEq for Operator

source§

impl StructuralPartialEq for Operator

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars_plan/dsl/functions/trait.Range.html b/polars_plan/dsl/functions/trait.Range.html index f3b7de70b557..086c6cc43a41 100644 --- a/polars_plan/dsl/functions/trait.Range.html +++ b/polars_plan/dsl/functions/trait.Range.html @@ -1,4 +1,4 @@ Range in polars_plan::dsl::functions - Rust
pub trait Range<T> {
     // Required method
     fn into_range(self, high: T) -> Expr;
-}
Available on crate feature compile only.

Required Methods§

source

fn into_range(self, high: T) -> Expr

Implementations on Foreign Types§

source§

impl Range<i64> for i64

source§

fn into_range(self, high: i64) -> Expr

source§

impl Range<i32> for i32

source§

fn into_range(self, high: i32) -> Expr

source§

impl Range<u32> for u32

source§

fn into_range(self, high: u32) -> Expr

Implementors§

\ No newline at end of file +}
Available on crate feature compile only.

Required Methods§

source

fn into_range(self, high: T) -> Expr

Implementations on Foreign Types§

source§

impl Range<u32> for u32

source§

fn into_range(self, high: u32) -> Expr

source§

impl Range<i64> for i64

source§

fn into_range(self, high: i64) -> Expr

source§

impl Range<i32> for i32

source§

fn into_range(self, high: i32) -> Expr

Implementors§

\ No newline at end of file diff --git a/polars_plan/dsl/struct.SpecialEq.html b/polars_plan/dsl/struct.SpecialEq.html index 08f7a14f3ed0..433e51b0bf4a 100644 --- a/polars_plan/dsl/struct.SpecialEq.html +++ b/polars_plan/dsl/struct.SpecialEq.html @@ -5,7 +5,7 @@ ) -> Self
source

pub fn map_dtype<F: 'static + Fn(&DataType) -> DataType + Send + Sync>( f: F ) -> Self

source

pub fn float_type() -> Self

source

pub fn super_type() -> Self

source

pub fn map_dtypes<F>(f: F) -> Selfwhere - F: 'static + Fn(&[&DataType]) -> DataType + Send + Sync,

Trait Implementations§

source§

impl<T: Clone> Clone for SpecialEq<T>

source§

fn clone(&self) -> SpecialEq<T>

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<T> Debug for SpecialEq<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for SpecialEq<Arc<dyn BinaryUdfOutputField>>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn SeriesBinaryUdf>>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T> Deref for SpecialEq<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> Self

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> Self

Converts to this type from the input type.
source§

impl<T: ?Sized> PartialEq<SpecialEq<Arc<T>>> for SpecialEq<Arc<T>>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used + F: 'static + Fn(&[&DataType]) -> DataType + Send + Sync,

Trait Implementations§

source§

impl<T: Clone> Clone for SpecialEq<T>

source§

fn clone(&self) -> SpecialEq<T>

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<T> Debug for SpecialEq<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for SpecialEq<Arc<dyn BinaryUdfOutputField>>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Default for SpecialEq<Arc<dyn SeriesBinaryUdf>>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T> Deref for SpecialEq<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl From<BooleanFunction> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: BooleanFunction) -> Self

Converts to this type from the input type.
source§

impl From<FunctionExpr> for SpecialEq<Arc<dyn SeriesUdf>>

source§

fn from(func: FunctionExpr) -> Self

Converts to this type from the input type.
source§

impl<T: ?Sized> PartialEq<SpecialEq<Arc<T>>> for SpecialEq<Arc<T>>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<SpecialEq<Series>> for SpecialEq<Series>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always diff --git a/polars_plan/logical_plan/enum.AAggExpr.html b/polars_plan/logical_plan/enum.AAggExpr.html index 1ffd32af3781..a22273babc2c 100644 --- a/polars_plan/logical_plan/enum.AAggExpr.html +++ b/polars_plan/logical_plan/enum.AAggExpr.html @@ -23,7 +23,7 @@ Std(Node, u8), Var(Node, u8), AggGroups(Node), -
}

Variants§

§

Min

Fields

§input: Node
§propagate_nans: bool
§

Max

Fields

§input: Node
§propagate_nans: bool
§

Median(Node)

§

NUnique(Node)

§

First(Node)

§

Last(Node)

§

Mean(Node)

§

Implode(Node)

§

Quantile

Fields

§expr: Node
§quantile: Node
§

Sum(Node)

§

Count(Node)

§

Std(Node, u8)

§

Var(Node, u8)

§

AggGroups(Node)

Implementations§

source§

impl AAggExpr

source

pub fn get_input(&self) -> NodeInputs

source

pub fn set_input(&mut self, input: Node)

Trait Implementations§

source§

impl Clone for AAggExpr

source§

fn clone(&self) -> AAggExpr

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 AAggExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'_derivative_strum> From<&'_derivative_strum AAggExpr> for &'static str

source§

fn from(x: &'_derivative_strum AAggExpr) -> &'static str

Converts to this type from the input type.
source§

impl From<AAggExpr> for &'static str

source§

fn from(x: AAggExpr) -> &'static str

Converts to this type from the input type.
source§

impl From<AAggExpr> for GroupByMethod

source§

fn from(value: AAggExpr) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

}

Variants§

§

Min

Fields

§input: Node
§propagate_nans: bool
§

Max

Fields

§input: Node
§propagate_nans: bool
§

Median(Node)

§

NUnique(Node)

§

First(Node)

§

Last(Node)

§

Mean(Node)

§

Implode(Node)

§

Quantile

Fields

§expr: Node
§quantile: Node
§

Sum(Node)

§

Count(Node)

§

Std(Node, u8)

§

Var(Node, u8)

§

AggGroups(Node)

Implementations§

source§

impl AAggExpr

source

pub fn get_input(&self) -> NodeInputs

source

pub fn set_input(&mut self, input: Node)

Trait Implementations§

source§

impl Clone for AAggExpr

source§

fn clone(&self) -> AAggExpr

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 AAggExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'_derivative_strum> From<&'_derivative_strum AAggExpr> for &'static str

source§

fn from(x: &'_derivative_strum AAggExpr) -> &'static str

Converts to this type from the input type.
source§

impl From<AAggExpr> for &'static str

source§

fn from(x: AAggExpr) -> &'static str

Converts to this type from the input type.
source§

impl From<AAggExpr> for GroupByMethod

source§

fn from(value: AAggExpr) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars_plan/logical_plan/enum.AExpr.html b/polars_plan/logical_plan/enum.AExpr.html index 5161ed31fcde..db37230a6ee2 100644 --- a/polars_plan/logical_plan/enum.AExpr.html +++ b/polars_plan/logical_plan/enum.AExpr.html @@ -75,9 +75,9 @@ ctxt: Context, arena: &Arena<AExpr> ) -> PolarsResult<DataType>

This should be a 1 on 1 copy of the get_type method of Expr until Expr is completely phased out.

-

Trait Implementations§

source§

impl Clone for AExpr

source§

fn clone(&self) -> AExpr

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 AExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AExpr

source§

fn default() -> AExpr

Returns the “default value” for a type. Read more
source§

impl UpperExp for AExpr

Available on crate features meta or cse only.

Hack UpperExpr trait to get a kind of formatting that doesn’t traverse the nodes. +

Trait Implementations§

source§

impl Clone for AExpr

source§

fn clone(&self) -> AExpr

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 AExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AExpr

source§

fn default() -> AExpr

Returns the “default value” for a type. Read more
source§

impl UpperExp for AExpr

Available on crate features meta or cse only.

Hack UpperExpr trait to get a kind of formatting that doesn’t traverse the nodes. So we can format with {foo:E}

-
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.

Auto Trait Implementations§

§

impl !RefUnwindSafe for AExpr

§

impl Send for AExpr

§

impl Sync for AExpr

§

impl Unpin for AExpr

§

impl !UnwindSafe for AExpr

Blanket Implementations§

source§

impl<T> Any for Twhere +

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.

Auto Trait Implementations§

§

impl !RefUnwindSafe for AExpr

§

impl Send for AExpr

§

impl Sync for AExpr

§

impl Unpin for AExpr

§

impl !UnwindSafe for AExpr

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars_plan/logical_plan/enum.FileScan.html b/polars_plan/logical_plan/enum.FileScan.html index ee0ecabbb0eb..29c4e72ae303 100644 --- a/polars_plan/logical_plan/enum.FileScan.html +++ b/polars_plan/logical_plan/enum.FileScan.html @@ -9,7 +9,7 @@ Ipc { options: IpcScanOptions, }, -}

Variants§

§

Csv

Fields

Available on crate feature csv only.
§

Parquet

Fields

§cloud_options: Option<CloudOptions>
Available on crate feature parquet only.
§

Ipc

Fields

Available on crate feature ipc only.

Implementations§

Trait Implementations§

source§

impl Clone for FileScan

source§

fn clone(&self) -> FileScan

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 FileScan

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'_derivative_strum> From<&'_derivative_strum FileScan> for &'static str

source§

fn from(x: &'_derivative_strum FileScan) -> &'static str

Converts to this type from the input type.
source§

impl From<FileScan> for &'static str

source§

fn from(x: FileScan) -> &'static str

Converts to this type from the input type.
source§

impl PartialEq<FileScan> for FileScan

source§

fn eq(&self, other: &FileScan) -> bool

This method tests for self and other values to be equal, and is used +}

Variants§

§

Csv

Fields

Available on crate feature csv only.
§

Parquet

Fields

§cloud_options: Option<CloudOptions>
Available on crate feature parquet only.
§

Ipc

Fields

Available on crate feature ipc only.

Implementations§

Trait Implementations§

source§

impl Clone for FileScan

source§

fn clone(&self) -> FileScan

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 FileScan

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'_derivative_strum> From<&'_derivative_strum FileScan> for &'static str

source§

fn from(x: &'_derivative_strum FileScan) -> &'static str

Converts to this type from the input type.
source§

impl From<FileScan> for &'static str

source§

fn from(x: FileScan) -> &'static str

Converts to this type from the input type.
source§

impl PartialEq<FileScan> for FileScan

source§

fn eq(&self, other: &FileScan) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for FileScan

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars_plan/logical_plan/enum.FunctionNode.html b/polars_plan/logical_plan/enum.FunctionNode.html index dd9a51f865a0..6b072b491e47 100644 --- a/polars_plan/logical_plan/enum.FunctionNode.html +++ b/polars_plan/logical_plan/enum.FunctionNode.html @@ -47,7 +47,7 @@

§projection_pd: bool

allow projection pushdown optimizations

§streamable: bool
§fmt_str: &'static str
§

Pipeline

Fields

§function: Arc<dyn DataFrameUdfMut>
§schema: SchemaRef
§

Unnest

Fields

§columns: Arc<[Arc<str>]>
§

FastProjection

Fields

§columns: Arc<[Arc<str>]>
§

DropNulls

Fields

§subset: Arc<[Arc<str>]>
§

Rechunk

§

Rename

Fields

§existing: Arc<[SmartString]>
§swapping: bool
§

Drop

Fields

§names: Arc<[SmartString]>
§

Explode

Fields

§columns: Arc<[Arc<str>]>
§schema: SchemaRef
§

Melt

Fields

§schema: SchemaRef
§

RowCount

Fields

§name: Arc<str>
§schema: SchemaRef
§offset: Option<IdxSize>

Implementations§

source§

impl FunctionNode

source

pub fn is_streamable(&self) -> bool

Whether this function can run on batches of data at a time.

source

pub fn expands_rows(&self) -> bool

Whether this function will increase the number of rows

-
source

pub fn evaluate(&mut self, df: DataFrame) -> PolarsResult<DataFrame>

Trait Implementations§

source§

impl Clone for FunctionNode

source§

fn clone(&self) -> FunctionNode

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 FunctionNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for FunctionNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<FunctionNode> for FunctionNode

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +
source

pub fn evaluate(&mut self, df: DataFrame) -> PolarsResult<DataFrame>

Trait Implementations§

source§

impl Clone for FunctionNode

source§

fn clone(&self) -> FunctionNode

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 FunctionNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for FunctionNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<FunctionNode> for FunctionNode

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/polars_plan/logical_plan/trait.Literal.html b/polars_plan/logical_plan/trait.Literal.html index 97b5af3cf688..d595e2905d43 100644 --- a/polars_plan/logical_plan/trait.Literal.html +++ b/polars_plan/logical_plan/trait.Literal.html @@ -2,4 +2,4 @@ // Required method fn lit(self) -> Expr; }

Required Methods§

source

fn lit(self) -> Expr

Literal expression.

-

Implementations on Foreign Types§

source§

impl Literal for u64

source§

fn lit(self) -> Expr

source§

impl Literal for String

source§

fn lit(self) -> Expr

source§

impl Literal for u32

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a str

source§

fn lit(self) -> Expr

source§

impl Literal for bool

source§

fn lit(self) -> Expr

source§

impl Literal for Vec<u8>

source§

fn lit(self) -> Expr

source§

impl Literal for i32

source§

fn lit(self) -> Expr

source§

impl Literal for Series

source§

fn lit(self) -> Expr

source§

impl Literal for f32

source§

fn lit(self) -> Expr

source§

impl Literal for f64

source§

fn lit(self) -> Expr

source§

impl Literal for i64

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a [u8]

source§

fn lit(self) -> Expr

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Literal for i32

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a str

source§

fn lit(self) -> Expr

source§

impl Literal for f64

source§

fn lit(self) -> Expr

source§

impl Literal for f32

source§

fn lit(self) -> Expr

source§

impl<'a> Literal for &'a [u8]

source§

fn lit(self) -> Expr

source§

impl Literal for u64

source§

fn lit(self) -> Expr

source§

impl Literal for u32

source§

fn lit(self) -> Expr

source§

impl Literal for Vec<u8>

source§

fn lit(self) -> Expr

source§

impl Literal for Series

source§

fn lit(self) -> Expr

source§

impl Literal for String

source§

fn lit(self) -> Expr

source§

impl Literal for bool

source§

fn lit(self) -> Expr

source§

impl Literal for i64

source§

fn lit(self) -> Expr

Implementors§

source§

impl Literal for LiteralValue

source§

impl Literal for Null

\ No newline at end of file diff --git a/polars_plan/prelude/struct.Arena.html b/polars_plan/prelude/struct.Arena.html index eea66e914f38..946933e5b70b 100644 --- a/polars_plan/prelude/struct.Arena.html +++ b/polars_plan/prelude/struct.Arena.html @@ -9,7 +9,7 @@ idx: Node, f: F ) -> Result<(), PolarsUtilsError>where - F: FnMut(T) -> Result<T, PolarsUtilsError>,

Trait Implementations§

source§

impl<'a> ArenaExprIter<'a> for &'a Arena<AExpr>

source§

fn iter(&self, root: Node) -> AExprIter<'a>

source§

impl<'a> ArenaLpIter<'a> for &'a Arena<ALogicalPlan>

source§

fn iter(&self, root: Node) -> AlpIter<'a>

source§

impl<T> Clone for Arena<T>where + F: FnMut(T) -> Result<T, PolarsUtilsError>,

Trait Implementations§

source§

impl<'a> ArenaExprIter<'a> for &'a Arena<AExpr>

source§

fn iter(&self, root: Node) -> AExprIter<'a>

source§

impl<'a> ArenaLpIter<'a> for &'a Arena<ALogicalPlan>

source§

fn iter(&self, root: Node) -> AlpIter<'a>

source§

impl<T> Clone for Arena<T>where T: Clone,

source§

fn clone(&self) -> Arena<T>

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<T> Default for Arena<T>

source§

fn default() -> Arena<T>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Arena<T>where T: RefUnwindSafe,

§

impl<T> Send for Arena<T>where T: Send,

§

impl<T> Sync for Arena<T>where diff --git a/polars_plan/utils/trait.PushNode.html b/polars_plan/utils/trait.PushNode.html index 3cf01d3e556c..1b233ea02c28 100644 --- a/polars_plan/utils/trait.PushNode.html +++ b/polars_plan/utils/trait.PushNode.html @@ -1,4 +1,4 @@ PushNode in polars_plan::utils - Rust
pub trait PushNode {
     // Required method
     fn push_node(&mut self, value: Node);
-}

Required Methods§

source

fn push_node(&mut self, value: Node)

Implementations on Foreign Types§

source§

impl PushNode for &mut [Option<Node>]

source§

fn push_node(&mut self, value: Node)

source§

impl PushNode for Vec<Node>

source§

fn push_node(&mut self, value: Node)

source§

impl PushNode for [Option<Node>; 1]

source§

fn push_node(&mut self, value: Node)

source§

impl PushNode for [Option<Node>; 2]

source§

fn push_node(&mut self, value: Node)

Implementors§

\ No newline at end of file +}

Required Methods§

source

fn push_node(&mut self, value: Node)

Implementations on Foreign Types§

source§

impl PushNode for [Option<Node>; 2]

source§

fn push_node(&mut self, value: Node)

source§

impl PushNode for &mut [Option<Node>]

source§

fn push_node(&mut self, value: Node)

source§

impl PushNode for [Option<Node>; 1]

source§

fn push_node(&mut self, value: Node)

source§

impl PushNode for Vec<Node>

source§

fn push_node(&mut self, value: Node)

Implementors§

\ No newline at end of file diff --git a/polars_time/chunkedarray/struct.RollingOptions.html b/polars_time/chunkedarray/struct.RollingOptions.html index b4ab2140706f..8bb2afcadf69 100644 --- a/polars_time/chunkedarray/struct.RollingOptions.html +++ b/polars_time/chunkedarray/struct.RollingOptions.html @@ -14,7 +14,7 @@ §by: Option<String>

Compute the rolling aggregates with a window defined by a time column

§closed_window: Option<ClosedWindow>

The closed window of that time window if given

§fn_params: DynArgs

Optional parameters for the rolling function

-

Trait Implementations§

source§

impl Clone for RollingOptions

source§

fn clone(&self) -> RollingOptions

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 Default for RollingOptions

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptions) -> Self

Converts to this type from the input type.
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for RollingOptions

§

impl Send for RollingOptions

§

impl Sync for RollingOptions

§

impl Unpin for RollingOptions

§

impl !UnwindSafe for RollingOptions

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for RollingOptions

source§

fn clone(&self) -> RollingOptions

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 Default for RollingOptions

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptions) -> Self

Converts to this type from the input type.
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for RollingOptions

§

impl Send for RollingOptions

§

impl Sync for RollingOptions

§

impl Unpin for RollingOptions

§

impl !UnwindSafe for RollingOptions

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars_time/chunkedarray/struct.RollingOptionsImpl.html b/polars_time/chunkedarray/struct.RollingOptionsImpl.html index 231ee9a330a7..c68f4bb588e0 100644 --- a/polars_time/chunkedarray/struct.RollingOptionsImpl.html +++ b/polars_time/chunkedarray/struct.RollingOptionsImpl.html @@ -13,7 +13,7 @@

§weights: Option<Vec<f64>>

An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.

§center: bool

Set the labels at the center of the window.

-
§by: Option<&'a [i64]>§tu: Option<TimeUnit>§tz: Option<&'a TimeZone>§closed_window: Option<ClosedWindow>§fn_params: DynArgs

Trait Implementations§

source§

impl<'a> Clone for RollingOptionsImpl<'a>

source§

fn clone(&self) -> RollingOptionsImpl<'a>

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 Default for RollingOptionsImpl<'static>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> Self

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptionsImpl<'a>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for RollingOptionsImpl<'a>

§

impl<'a> Send for RollingOptionsImpl<'a>

§

impl<'a> Sync for RollingOptionsImpl<'a>

§

impl<'a> Unpin for RollingOptionsImpl<'a>

§

impl<'a> !UnwindSafe for RollingOptionsImpl<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere +

§by: Option<&'a [i64]>§tu: Option<TimeUnit>§tz: Option<&'a TimeZone>§closed_window: Option<ClosedWindow>§fn_params: DynArgs

Trait Implementations§

source§

impl<'a> Clone for RollingOptionsImpl<'a>

source§

fn clone(&self) -> RollingOptionsImpl<'a>

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 Default for RollingOptionsImpl<'static>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<RollingOptions> for RollingOptionsImpl<'static>

source§

fn from(options: RollingOptions) -> Self

Converts to this type from the input type.
source§

impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow

source§

fn from(options: RollingOptionsImpl<'a>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for RollingOptionsImpl<'a>

§

impl<'a> Send for RollingOptionsImpl<'a>

§

impl<'a> Sync for RollingOptionsImpl<'a>

§

impl<'a> Unpin for RollingOptionsImpl<'a>

§

impl<'a> !UnwindSafe for RollingOptionsImpl<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere diff --git a/polars_time/chunkedarray/utf8/enum.Pattern.html b/polars_time/chunkedarray/utf8/enum.Pattern.html index e2b39d62f461..85279c438a63 100644 --- a/polars_time/chunkedarray/utf8/enum.Pattern.html +++ b/polars_time/chunkedarray/utf8/enum.Pattern.html @@ -8,10 +8,10 @@ H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<Pattern> for Pattern

source§

fn eq(&self, other: &Pattern) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i32>

Available on crate feature dtype-date only.
§

type Error = PolarsError

source§

fn try_from_with_unit( +sufficient, and should not be overridden without very good reason.

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i32>

Available on crate feature dtype-date only.
§

type Error = PolarsError

source§

fn try_from_with_unit( value: Pattern, _time_unit: Option<TimeUnit> -) -> PolarsResult<Self>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i64>

Available on crate feature dtype-datetime only.
§

type Error = PolarsError

source§

fn try_from_with_unit( +) -> PolarsResult<Self>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i64>

Available on crate feature dtype-datetime only.
§

type Error = PolarsError

source§

fn try_from_with_unit( value: Pattern, time_unit: Option<TimeUnit> ) -> PolarsResult<Self>

source§

impl Copy for Pattern

source§

impl Eq for Pattern

source§

impl StructuralEq for Pattern

source§

impl StructuralPartialEq for Pattern

Auto Trait Implementations§

§

impl RefUnwindSafe for Pattern

§

impl Send for Pattern

§

impl Sync for Pattern

§

impl Unpin for Pattern

§

impl UnwindSafe for Pattern

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/polars_time/chunkedarray/utf8/infer/struct.DatetimeInfer.html b/polars_time/chunkedarray/utf8/infer/struct.DatetimeInfer.html index bc88f43c5a58..24a454c11121 100644 --- a/polars_time/chunkedarray/utf8/infer/struct.DatetimeInfer.html +++ b/polars_time/chunkedarray/utf8/infer/struct.DatetimeInfer.html @@ -10,10 +10,10 @@ &mut self, val: &[u8], time_unit: Option<TimeUnit> -) -> Option<i64>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i32>

Available on crate feature dtype-date only.
§

type Error = PolarsError

source§

fn try_from_with_unit( +) -> Option<i64>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i32>

Available on crate feature dtype-date only.
§

type Error = PolarsError

source§

fn try_from_with_unit( value: Pattern, _time_unit: Option<TimeUnit> -) -> PolarsResult<Self>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i64>

Available on crate feature dtype-datetime only.
§

type Error = PolarsError

source§

fn try_from_with_unit( +) -> PolarsResult<Self>

source§

impl TryFromWithUnit<Pattern> for DatetimeInfer<i64>

Available on crate feature dtype-datetime only.
§

type Error = PolarsError

source§

fn try_from_with_unit( value: Pattern, time_unit: Option<TimeUnit> ) -> PolarsResult<Self>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for DatetimeInfer<T>

§

impl<T> Send for DatetimeInfer<T>

§

impl<T> Sync for DatetimeInfer<T>

§

impl<T> Unpin for DatetimeInfer<T>

§

impl<T> UnwindSafe for DatetimeInfer<T>

Blanket Implementations§

source§

impl<T> Any for Twhere diff --git a/polars_time/series/trait.IntoSeriesOps.html b/polars_time/series/trait.IntoSeriesOps.html index 06595c354db6..1427b6e6dc94 100644 --- a/polars_time/series/trait.IntoSeriesOps.html +++ b/polars_time/series/trait.IntoSeriesOps.html @@ -1,5 +1,5 @@ IntoSeriesOps in polars_time::series - Rust
\ No newline at end of file +}

Required Methods§

source

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

Implementations on Foreign Types§

source§

impl IntoSeriesOps for DurationChunked

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for DateChunked

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Utf8Chunked

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Series

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl<T: PolarsIntegerType> IntoSeriesOps for &ChunkedArray<T>where + T::Native: NumericNative,

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for ListChunked

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for TimeChunked

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Float32Chunked

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for DatetimeChunked

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for Float64Chunked

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

source§

impl IntoSeriesOps for BooleanChunked

source§

fn to_ops(&self) -> Arc<dyn SeriesOpsTime>

Implementors§

\ No newline at end of file diff --git a/polars_time/series/trait.SeriesOpsTime.html b/polars_time/series/trait.SeriesOpsTime.html index 76a81ddca2ee..4a911c6496a1 100644 --- a/polars_time/series/trait.SeriesOpsTime.html +++ b/polars_time/series/trait.SeriesOpsTime.html @@ -50,14 +50,14 @@
source

fn rolling_max(&self, _options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.

Apply a rolling max to a Series.

source

fn rolling_var(&self, _options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.

Apply a rolling variance to a Series.

source

fn rolling_std(&self, _options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.

Apply a rolling std_dev to a Series.

-

Implementations on Foreign Types§

source§

impl SeriesOpsTime for Wrap<DateChunked>

Available on crate feature dtype-date only.
source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<DurationChunked>

Available on crate feature dtype-duration only.
source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<BooleanChunked>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<TimeChunked>

Available on crate feature dtype-time only.
source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Series

source§

fn rolling_quantile( +

Implementations on Foreign Types§

source§

impl SeriesOpsTime for Wrap<DurationChunked>

Available on crate feature dtype-duration only.
source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<TimeChunked>

Available on crate feature dtype-time only.
source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<DatetimeChunked>

Available on crate feature dtype-datetime only.
source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Series

source§

fn rolling_quantile( &self, options: RollingOptionsImpl<'_> ) -> PolarsResult<Series>

Available on crate feature rolling_window only.

Apply a rolling quantile to a Series.

source§

fn rolling_max(&self, options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.

Apply a rolling max to a Series.

source§

fn rolling_var(&self, options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.

Apply a rolling variance to a Series.

source§

fn rolling_std(&self, options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.

Apply a rolling std_dev to a Series.

-
source§

fn ops_time_dtype(&self) -> &DataType

source§

fn rolling_mean(&self, _options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.
source§

fn rolling_sum(&self, _options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.
source§

fn rolling_median( +

source§

fn ops_time_dtype(&self) -> &DataType

source§

fn rolling_mean(&self, _options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.
source§

fn rolling_sum(&self, _options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.
source§

fn rolling_median( &self, _options: RollingOptionsImpl<'_> -) -> PolarsResult<Series>

Available on crate feature rolling_window only.
source§

fn rolling_min(&self, options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.
source§

impl SeriesOpsTime for Wrap<ListChunked>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<Utf8Chunked>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<DatetimeChunked>

Available on crate feature dtype-datetime only.
source§

fn ops_time_dtype(&self) -> &DataType

Implementors§

\ No newline at end of file +) -> PolarsResult<Series>
Available on crate feature rolling_window only.
source§

fn rolling_min(&self, options: RollingOptionsImpl<'_>) -> PolarsResult<Series>

Available on crate feature rolling_window only.
source§

impl SeriesOpsTime for Wrap<BooleanChunked>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<Utf8Chunked>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<ListChunked>

source§

fn ops_time_dtype(&self) -> &DataType

source§

impl SeriesOpsTime for Wrap<DateChunked>

Available on crate feature dtype-date only.
source§

fn ops_time_dtype(&self) -> &DataType

Implementors§

\ No newline at end of file diff --git a/polars_time/trait.PolarsMonthEnd.html b/polars_time/trait.PolarsMonthEnd.html index 46af9f9975c5..ebc57f9bd636 100644 --- a/polars_time/trait.PolarsMonthEnd.html +++ b/polars_time/trait.PolarsMonthEnd.html @@ -3,4 +3,4 @@ fn month_end(&self, time_zone: Option<&Tz>) -> PolarsResult<Self> where Self: Sized; }

Required Methods§

source

fn month_end(&self, time_zone: Option<&Tz>) -> PolarsResult<Self>where - Self: Sized,

Implementations on Foreign Types§

source§

impl PolarsMonthEnd for DatetimeChunked

source§

fn month_end(&self, time_zone: Option<&Tz>) -> PolarsResult<Self>

source§

impl PolarsMonthEnd for DateChunked

source§

fn month_end(&self, _time_zone: Option<&Tz>) -> PolarsResult<Self>

Implementors§

\ No newline at end of file + Self: Sized,

Implementations on Foreign Types§

source§

impl PolarsMonthEnd for DateChunked

source§

fn month_end(&self, _time_zone: Option<&Tz>) -> PolarsResult<Self>

source§

impl PolarsMonthEnd for DatetimeChunked

source§

fn month_end(&self, time_zone: Option<&Tz>) -> PolarsResult<Self>

Implementors§

\ No newline at end of file diff --git a/polars_time/trait.PolarsMonthStart.html b/polars_time/trait.PolarsMonthStart.html index f1efb0895c1f..557fd5004551 100644 --- a/polars_time/trait.PolarsMonthStart.html +++ b/polars_time/trait.PolarsMonthStart.html @@ -3,4 +3,4 @@ fn month_start(&self, time_zone: Option<&Tz>) -> PolarsResult<Self> where Self: Sized; }

Required Methods§

source

fn month_start(&self, time_zone: Option<&Tz>) -> PolarsResult<Self>where - Self: Sized,

Implementations on Foreign Types§

source§

impl PolarsMonthStart for DatetimeChunked

source§

fn month_start(&self, tz: Option<&Tz>) -> PolarsResult<Self>

source§

impl PolarsMonthStart for DateChunked

source§

fn month_start(&self, _tz: Option<&Tz>) -> PolarsResult<Self>

Implementors§

\ No newline at end of file + Self: Sized,

Implementations on Foreign Types§

source§

impl PolarsMonthStart for DateChunked

source§

fn month_start(&self, _tz: Option<&Tz>) -> PolarsResult<Self>

source§

impl PolarsMonthStart for DatetimeChunked

source§

fn month_start(&self, tz: Option<&Tz>) -> PolarsResult<Self>

Implementors§

\ No newline at end of file diff --git a/quick_xml/de/enum.DeError.html b/quick_xml/de/enum.DeError.html index 01f63566ce85..11176c0f94d3 100644 --- a/quick_xml/de/enum.DeError.html +++ b/quick_xml/de/enum.DeError.html @@ -47,8 +47,7 @@ a primitive type (i.e. string, char, bool, unit struct or unit variant).

§

TooManyEvents(NonZeroUsize)

Too many events were skipped while deserializing a sequence, event limit exceeded. The limit was provided as an argument

-

Trait Implementations§

source§

impl Clone for DeError

source§

fn clone(&self) -> DeError

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 DeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for DeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for DeError

source§

fn custom<T: Display>(msg: T) -> Self

Used when a Serialize implementation encounters any error -while serializing a type. Read more
source§

impl Error for DeError

source§

fn custom<T: Display>(msg: T) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was +

Trait Implementations§

source§

impl Clone for DeError

source§

fn clone(&self) -> DeError

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 DeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for DeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for DeError

source§

fn custom<T: Display>(msg: T) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, exp: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
source§

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize enum type received a variant with an @@ -56,7 +55,8 @@ unrecognized name.
source§

fn missing_field(field: &'static str) -> Self

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input.
source§

fn duplicate_field(field: &'static str) -> Self

Raised when a Deserialize struct type received more than one of the -same field.
source§

impl Error for DeError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<AttrError> for DeError

source§

fn from(e: AttrError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<EscapeError> for DeError

source§

fn from(e: EscapeError) -> Self

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for DeError

source§

fn from(e: FromUtf8Error) -> Self

Converts to this type from the input type.
source§

impl From<ParseFloatError> for DeError

source§

fn from(e: ParseFloatError) -> Self

Converts to this type from the input type.
source§

impl From<ParseIntError> for DeError

source§

fn from(e: ParseIntError) -> Self

Converts to this type from the input type.
source§

impl From<Utf8Error> for DeError

source§

fn from(e: Utf8Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +same field.

source§

impl Error for DeError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for DeError

source§

fn custom<T: Display>(msg: T) -> Self

Used when a Serialize implementation encounters any error +while serializing a type. Read more
source§

impl From<AttrError> for DeError

source§

fn from(e: AttrError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<EscapeError> for DeError

source§

fn from(e: EscapeError) -> Self

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for DeError

source§

fn from(e: FromUtf8Error) -> Self

Converts to this type from the input type.
source§

impl From<ParseFloatError> for DeError

source§

fn from(e: ParseFloatError) -> Self

Converts to this type from the input type.
source§

impl From<ParseIntError> for DeError

source§

fn from(e: ParseIntError) -> Self

Converts to this type from the input type.
source§

impl From<Utf8Error> for DeError

source§

fn from(e: Utf8Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for DeError

§

impl Send for DeError

§

impl Sync for DeError

§

impl Unpin for DeError

§

impl !UnwindSafe for DeError

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/quick_xml/de/struct.Deserializer.html b/quick_xml/de/struct.Deserializer.html index c378aa132ede..a05bef474074 100644 --- a/quick_xml/de/struct.Deserializer.html +++ b/quick_xml/de/struct.Deserializer.html @@ -113,7 +113,7 @@
Events handling
End event will be consumed.

This method returns error if current event is End or Eof.

-
§

type Error = DeError

The error type that can be returned if some error occurs during +
§

type Error = DeError

The error type that can be returned if some error occurs during deserialization.
source§

fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, DeError>where V: Visitor<'de>,

Hint that the Deserialize type is expecting an i8 value.
source§

fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, DeError>where V: Visitor<'de>,

Hint that the Deserialize type is expecting an i16 value.
source§

fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, DeError>where @@ -162,7 +162,7 @@
Events handling

Technically, multiple top-level elements violates XML rule of only one top-level element, but we consider this as several concatenated XML documents.

-
§

type Error = DeError

The error type that can be returned if some error occurs during +
§

type Error = DeError

The error type that can be returned if some error occurs during deserialization.
source§

fn next_element_seed<T>( &mut self, seed: T diff --git a/quick_xml/enum.DeError.html b/quick_xml/enum.DeError.html index 409506383463..5bab7fcae297 100644 --- a/quick_xml/enum.DeError.html +++ b/quick_xml/enum.DeError.html @@ -47,8 +47,7 @@ a primitive type (i.e. string, char, bool, unit struct or unit variant).

§

TooManyEvents(NonZeroUsize)

Too many events were skipped while deserializing a sequence, event limit exceeded. The limit was provided as an argument

-

Trait Implementations§

source§

impl Clone for DeError

source§

fn clone(&self) -> DeError

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 DeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for DeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for DeError

source§

fn custom<T: Display>(msg: T) -> Self

Used when a Serialize implementation encounters any error -while serializing a type. Read more
source§

impl Error for DeError

source§

fn custom<T: Display>(msg: T) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was +

Trait Implementations§

source§

impl Clone for DeError

source§

fn clone(&self) -> DeError

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 DeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for DeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for DeError

source§

fn custom<T: Display>(msg: T) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, exp: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
source§

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize enum type received a variant with an @@ -56,7 +55,8 @@ unrecognized name.
source§

fn missing_field(field: &'static str) -> Self

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input.
source§

fn duplicate_field(field: &'static str) -> Self

Raised when a Deserialize struct type received more than one of the -same field.
source§

impl Error for DeError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<AttrError> for DeError

source§

fn from(e: AttrError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<EscapeError> for DeError

source§

fn from(e: EscapeError) -> Self

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for DeError

source§

fn from(e: FromUtf8Error) -> Self

Converts to this type from the input type.
source§

impl From<ParseFloatError> for DeError

source§

fn from(e: ParseFloatError) -> Self

Converts to this type from the input type.
source§

impl From<ParseIntError> for DeError

source§

fn from(e: ParseIntError) -> Self

Converts to this type from the input type.
source§

impl From<Utf8Error> for DeError

source§

fn from(e: Utf8Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +same field.

source§

impl Error for DeError

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for DeError

source§

fn custom<T: Display>(msg: T) -> Self

Used when a Serialize implementation encounters any error +while serializing a type. Read more
source§

impl From<AttrError> for DeError

source§

fn from(e: AttrError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<EscapeError> for DeError

source§

fn from(e: EscapeError) -> Self

Converts to this type from the input type.
source§

impl From<FromUtf8Error> for DeError

source§

fn from(e: FromUtf8Error) -> Self

Converts to this type from the input type.
source§

impl From<ParseFloatError> for DeError

source§

fn from(e: ParseFloatError) -> Self

Converts to this type from the input type.
source§

impl From<ParseIntError> for DeError

source§

fn from(e: ParseIntError) -> Self

Converts to this type from the input type.
source§

impl From<Utf8Error> for DeError

source§

fn from(e: Utf8Error) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/quick_xml/enum.Error.html b/quick_xml/enum.Error.html index a27ad2976829..eb158375ec70 100644 --- a/quick_xml/enum.Error.html +++ b/quick_xml/enum.Error.html @@ -30,10 +30,10 @@
§

InvalidAttr(AttrError)

Attribute parsing error

§

EscapeError(EscapeError)

Escape error

§

UnknownPrefix(Vec<u8>)

Specified namespace prefix is unknown, cannot resolve namespace for it

-

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<AttrError> for Error

source§

fn from(error: AttrError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: IoError) -> Error

Creates a new Error::Io from the given error

-
source§

impl From<EscapeError> for Error

source§

fn from(error: EscapeError) -> Error

Creates a new Error::EscapeError from the given error

-
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Creates a new Error::Utf8 from the given error

-
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Creates a new Error::NonDecodable from the given error

+

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<AttrError> for Error

source§

fn from(error: AttrError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for DeError

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: IoError) -> Error

Creates a new Error::Io from the given error

+
source§

impl From<EscapeError> for Error

source§

fn from(error: EscapeError) -> Error

Creates a new Error::EscapeError from the given error

+
source§

impl From<FromUtf8Error> for Error

source§

fn from(error: FromUtf8Error) -> Error

Creates a new Error::Utf8 from the given error

+
source§

impl From<Utf8Error> for Error

source§

fn from(error: Utf8Error) -> Error

Creates a new Error::NonDecodable from the given error

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/quick_xml/escape/enum.EscapeError.html b/quick_xml/escape/enum.EscapeError.html index d4e2ae506632..36c8cfa7ca66 100644 --- a/quick_xml/escape/enum.EscapeError.html +++ b/quick_xml/escape/enum.EscapeError.html @@ -16,7 +16,7 @@

§

TooLongDecimal

Cannot convert decimal to hexa

§

InvalidDecimal(char)

Character is not a valid decimal value

§

InvalidCodepoint(u32)

Not a valid unicode codepoint

-

Trait Implementations§

source§

impl Clone for EscapeError

source§

fn clone(&self) -> EscapeError

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 EscapeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for EscapeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for EscapeError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<EscapeError> for DeError

source§

fn from(e: EscapeError) -> Self

Converts to this type from the input type.
source§

impl From<EscapeError> for Error

source§

fn from(error: EscapeError) -> Error

Creates a new Error::EscapeError from the given error

+

Trait Implementations§

source§

impl Clone for EscapeError

source§

fn clone(&self) -> EscapeError

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 EscapeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for EscapeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for EscapeError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<EscapeError> for DeError

source§

fn from(e: EscapeError) -> Self

Converts to this type from the input type.
source§

impl From<EscapeError> for Error

source§

fn from(error: EscapeError) -> Error

Creates a new Error::EscapeError from the given error

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere diff --git a/quick_xml/events/attributes/enum.AttrError.html b/quick_xml/events/attributes/enum.AttrError.html index 5bafcb231e91..b34aa0d3bada 100644 --- a/quick_xml/events/attributes/enum.AttrError.html +++ b/quick_xml/events/attributes/enum.AttrError.html @@ -60,7 +60,7 @@

This error is returned only when Attributes::with_checks() is set to true (that is default behavior).

-

Trait Implementations§

source§

impl Clone for AttrError

source§

fn clone(&self) -> AttrError

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 AttrError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AttrError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for AttrError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<AttrError> for DeError

source§

fn from(e: AttrError) -> Self

Converts to this type from the input type.
source§

impl From<AttrError> for Error

source§

fn from(error: AttrError) -> Self

Converts to this type from the input type.
source§

impl PartialEq<AttrError> for AttrError

source§

fn eq(&self, other: &AttrError) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for AttrError

source§

fn clone(&self) -> AttrError

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 AttrError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for AttrError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for AttrError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<AttrError> for DeError

source§

fn from(e: AttrError) -> Self

Converts to this type from the input type.
source§

impl From<AttrError> for Error

source§

fn from(error: AttrError) -> Self

Converts to this type from the input type.
source§

impl PartialEq<AttrError> for AttrError

source§

fn eq(&self, other: &AttrError) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for AttrError

source§

impl StructuralEq for AttrError

source§

impl StructuralPartialEq for AttrError

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/quick_xml/events/attributes/struct.Attribute.html b/quick_xml/events/attributes/struct.Attribute.html index b879d929f579..25c3d7667617 100644 --- a/quick_xml/events/attributes/struct.Attribute.html +++ b/quick_xml/events/attributes/struct.Attribute.html @@ -38,21 +38,21 @@ ) -> XmlResult<Cow<'a, str>>

Decodes then unescapes the value with custom entities.

This will allocate if the value contains any escape sequences or in non-UTF-8 encoding.

-

Trait Implementations§

source§

impl<'a> Clone for Attribute<'a>

source§

fn clone(&self) -> Attribute<'a>

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<'a> Debug for Attribute<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> From<(&'a [u8], &'a [u8])> for Attribute<'a>

source§

fn from(val: (&'a [u8], &'a [u8])) -> Attribute<'a>

Creates new attribute from raw bytes. +

Trait Implementations§

source§

impl<'a> Clone for Attribute<'a>

source§

fn clone(&self) -> Attribute<'a>

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<'a> Debug for Attribute<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> From<(&'a [u8], &'a [u8])> for Attribute<'a>

source§

fn from(val: (&'a [u8], &'a [u8])) -> Attribute<'a>

Creates new attribute from raw bytes. Does not apply any transformation to both key and value.

-
Examples
+
Examples
use quick_xml::events::attributes::Attribute;
 
 let features = Attribute::from(("features".as_bytes(), "Bells &amp; whistles".as_bytes()));
 assert_eq!(features.value, "Bells &amp; whistles".as_bytes());
source§

impl<'a> From<(&'a str, &'a str)> for Attribute<'a>

source§

fn from(val: (&'a str, &'a str)) -> Attribute<'a>

Creates new attribute from text representation. Key is stored as-is, but the value will be escaped.

-
Examples
+
Examples
use quick_xml::events::attributes::Attribute;
 
 let features = Attribute::from(("features", "Bells & whistles"));
 assert_eq!(features.value, "Bells &amp; whistles".as_bytes());
-
source§

impl<'a> From<Attr<&'a [u8]>> for Attribute<'a>

source§

fn from(attr: Attr<&'a [u8]>) -> Self

Converts to this type from the input type.
source§

impl<'a> PartialEq<Attribute<'a>> for Attribute<'a>

source§

fn eq(&self, other: &Attribute<'a>) -> bool

This method tests for self and other values to be equal, and is used +
source§

impl<'a> From<Attr<&'a [u8]>> for Attribute<'a>

source§

fn from(attr: Attr<&'a [u8]>) -> Self

Converts to this type from the input type.
source§

impl<'a> PartialEq<Attribute<'a>> for Attribute<'a>

source§

fn eq(&self, other: &Attribute<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Eq for Attribute<'a>

source§

impl<'a> StructuralEq for Attribute<'a>

source§

impl<'a> StructuralPartialEq for Attribute<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for Attribute<'a>

§

impl<'a> Send for Attribute<'a>

§

impl<'a> Sync for Attribute<'a>

§

impl<'a> Unpin for Attribute<'a>

§

impl<'a> UnwindSafe for Attribute<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/reqwest/header/struct.HeaderMap.html b/reqwest/header/struct.HeaderMap.html index 0696e07586b1..017aac04e658 100644 --- a/reqwest/header/struct.HeaderMap.html +++ b/reqwest/header/struct.HeaderMap.html @@ -434,9 +434,9 @@

Examples

T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,
source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere diff --git a/reqwest/header/struct.HeaderName.html b/reqwest/header/struct.HeaderName.html index ed611db58ba8..48b7fab317a8 100644 --- a/reqwest/header/struct.HeaderName.html +++ b/reqwest/header/struct.HeaderName.html @@ -114,9 +114,9 @@
Examples
) -> Result<HeaderName, <HeaderName as TryFrom<Vec<u8, Global>>>::Error>

Performs the conversion.
source§

impl<'a> AsHeaderName for &'a HeaderName

source§

impl AsHeaderName for HeaderName

source§

impl Eq for HeaderName

source§

impl<'a> IntoHeaderName for &'a HeaderName

source§

impl IntoHeaderName for HeaderName

source§

impl StructuralEq for HeaderName

source§

impl StructuralPartialEq for HeaderName

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,
source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere diff --git a/reqwest/header/struct.HeaderValue.html b/reqwest/header/struct.HeaderValue.html index aac108ba7213..60c61a96c4bd 100644 --- a/reqwest/header/struct.HeaderValue.html +++ b/reqwest/header/struct.HeaderValue.html @@ -181,9 +181,9 @@
Examples
) -> Result<HeaderValue, <HeaderValue as TryFrom<Vec<u8, Global>>>::Error>

Performs the conversion.
source§

impl Eq for HeaderValue

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,
source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere diff --git a/reqwest/struct.Body.html b/reqwest/struct.Body.html index ffa46ba385e3..1be718497177 100644 --- a/reqwest/struct.Body.html +++ b/reqwest/struct.Body.html @@ -17,8 +17,8 @@
Example
let body = Body::wrap_stream(stream);

Optional

This requires the stream feature to be enabled.

-

Trait Implementations§

source§

impl Debug for Body

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&'static [u8]> for Body

source§

fn from(s: &'static [u8]) -> Body

Converts to this type from the input type.
source§

impl From<&'static str> for Body

source§

fn from(s: &'static str) -> Body

Converts to this type from the input type.
source§

impl From<Body> for Body

source§

fn from(body: Body) -> Body

Converts to this type from the input type.
source§

impl From<Bytes> for Body

source§

fn from(bytes: Bytes) -> Body

Converts to this type from the input type.
source§

impl From<File> for Body

Available on crate feature stream only.
source§

fn from(file: File) -> Body

Converts to this type from the input type.
source§

impl From<Response> for Body

A Response can be piped as the Body of another request.

-
source§

fn from(r: Response) -> Body

Converts to this type from the input type.
source§

impl From<String> for Body

source§

fn from(s: String) -> Body

Converts to this type from the input type.
source§

impl From<Vec<u8, Global>> for Body

source§

fn from(vec: Vec<u8>) -> Body

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Body

§

impl Send for Body

§

impl Sync for Body

§

impl Unpin for Body

§

impl !UnwindSafe for Body

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for Body

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&'static [u8]> for Body

source§

fn from(s: &'static [u8]) -> Body

Converts to this type from the input type.
source§

impl From<&'static str> for Body

source§

fn from(s: &'static str) -> Body

Converts to this type from the input type.
source§

impl From<Body> for Body

source§

fn from(body: Body) -> Body

Converts to this type from the input type.
source§

impl From<Bytes> for Body

source§

fn from(bytes: Bytes) -> Body

Converts to this type from the input type.
source§

impl From<File> for Body

Available on crate feature stream only.
source§

fn from(file: File) -> Body

Converts to this type from the input type.
source§

impl From<Response> for Body

A Response can be piped as the Body of another request.

+
source§

fn from(r: Response) -> Body

Converts to this type from the input type.
source§

impl From<String> for Body

source§

fn from(s: String) -> Body

Converts to this type from the input type.
source§

impl From<Vec<u8, Global>> for Body

source§

fn from(vec: Vec<u8>) -> Body

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Body

§

impl Send for Body

§

impl Sync for Body

§

impl Unpin for Body

§

impl !UnwindSafe for Body

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/reqwest/struct.Client.html b/reqwest/struct.Client.html index 112dfb36b747..6c8eedd3cd6b 100644 --- a/reqwest/struct.Client.html +++ b/reqwest/struct.Client.html @@ -48,7 +48,7 @@
Errors
Errors

This method fails if there was an error while sending request, redirect loop was detected or redirect limit was exhausted.

-

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

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 Client

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Client

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Service<Request> for &Client

§

type Response = Response

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = Pending

The future response value.
source§

fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request) -> Self::Future

Process the request and return the response asynchronously. Read more
source§

impl Service<Request> for Client

§

type Response = Response

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = Pending

The future response value.
source§

fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request) -> Self::Future

Process the request and return the response asynchronously. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

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 Client

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Client

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Service<Request> for &Client

§

type Response = Response

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = Pending

The future response value.
source§

fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request) -> Self::Future

Process the request and return the response asynchronously. Read more
source§

impl Service<Request> for Client

§

type Response = Response

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = Pending

The future response value.
source§

fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request) -> Self::Future

Process the request and return the response asynchronously. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/reqwest/struct.Method.html b/reqwest/struct.Method.html index 2f4fa4877b3c..0667e099378b 100644 --- a/reqwest/struct.Method.html +++ b/reqwest/struct.Method.html @@ -49,9 +49,9 @@

Examples

sufficient, and should not be overridden without very good reason.
source§

impl<'a> TryFrom<&'a [u8]> for Method

§

type Error = InvalidMethod

The type returned in the event of a conversion error.
source§

fn try_from(t: &'a [u8]) -> Result<Method, <Method as TryFrom<&'a [u8]>>::Error>

Performs the conversion.
source§

impl<'a> TryFrom<&'a str> for Method

§

type Error = InvalidMethod

The type returned in the event of a conversion error.
source§

fn try_from(t: &'a str) -> Result<Method, <Method as TryFrom<&'a str>>::Error>

Performs the conversion.
source§

impl Eq for Method

source§

impl StructuralEq for Method

source§

impl StructuralPartialEq for Method

Auto Trait Implementations§

§

impl RefUnwindSafe for Method

§

impl Send for Method

§

impl Sync for Method

§

impl Unpin for Method

§

impl UnwindSafe for Method

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,
source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere diff --git a/reqwest/struct.Request.html b/reqwest/struct.Request.html index 6024f842c92a..91effead5051 100644 --- a/reqwest/struct.Request.html +++ b/reqwest/struct.Request.html @@ -14,8 +14,8 @@

source

pub fn version_mut(&mut self) -> &mut Version

Get a mutable reference to the http version.

source

pub fn try_clone(&self) -> Option<Request>

Attempt to clone the request.

None is returned if the request can not be cloned, i.e. if the body is a stream.

-

Trait Implementations§

source§

impl Debug for Request

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Service<Request> for &Client

§

type Response = Response

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = Pending

The future response value.
source§

fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request) -> Self::Future

Process the request and return the response asynchronously. Read more
source§

impl Service<Request> for Client

§

type Response = Response

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = Pending

The future response value.
source§

fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request) -> Self::Future

Process the request and return the response asynchronously. Read more
source§

impl<T> TryFrom<Request<T>> for Requestwhere - T: Into<Body>,

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(req: HttpRequest<T>) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<Request> for HttpRequest<Body>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(req: Request) -> Result<Self>

Performs the conversion.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Request

§

impl Send for Request

§

impl Sync for Request

§

impl Unpin for Request

§

impl !UnwindSafe for Request

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for Request

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Service<Request> for &Client

§

type Response = Response

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = Pending

The future response value.
source§

fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request) -> Self::Future

Process the request and return the response asynchronously. Read more
source§

impl Service<Request> for Client

§

type Response = Response

Responses given by the service.
§

type Error = Error

Errors produced by the service.
§

type Future = Pending

The future response value.
source§

fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, req: Request) -> Self::Future

Process the request and return the response asynchronously. Read more
source§

impl<T> TryFrom<Request<T>> for Requestwhere + T: Into<Body>,

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(req: HttpRequest<T>) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<Request> for HttpRequest<Body>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(req: Request) -> Result<Self>

Performs the conversion.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Request

§

impl Send for Request

§

impl Sync for Request

§

impl Unpin for Request

§

impl !UnwindSafe for Request

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/reqwest/struct.StatusCode.html b/reqwest/struct.StatusCode.html index af049ca8942d..cc27547636ef 100644 --- a/reqwest/struct.StatusCode.html +++ b/reqwest/struct.StatusCode.html @@ -197,9 +197,9 @@

Example

) -> Result<StatusCode, <StatusCode as TryFrom<&'a str>>::Error>
Performs the conversion.
source§

impl TryFrom<u16> for StatusCode

§

type Error = InvalidStatusCode

The type returned in the event of a conversion error.
source§

fn try_from(t: u16) -> Result<StatusCode, <StatusCode as TryFrom<u16>>::Error>

Performs the conversion.
source§

impl Copy for StatusCode

source§

impl Eq for StatusCode

source§

impl StructuralEq for StatusCode

source§

impl StructuralPartialEq for StatusCode

Auto Trait Implementations§

§

impl RefUnwindSafe for StatusCode

§

impl Send for StatusCode

§

impl Sync for StatusCode

§

impl Unpin for StatusCode

§

impl UnwindSafe for StatusCode

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,
source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere diff --git a/reqwest/struct.Url.html b/reqwest/struct.Url.html index c6408455ddad..2f5687d0f9a0 100644 --- a/reqwest/struct.Url.html +++ b/reqwest/struct.Url.html @@ -770,9 +770,9 @@
Examples

source§

impl IntoUrl for Url

Auto Trait Implementations§

§

impl RefUnwindSafe for Url

§

impl Send for Url

§

impl Sync for Url

§

impl Unpin for Url

§

impl UnwindSafe for Url

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,
source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere diff --git a/reqwest/struct.Version.html b/reqwest/struct.Version.html index 81bf4a3a7439..e6c6c48a82ce 100644 --- a/reqwest/struct.Version.html +++ b/reqwest/struct.Version.html @@ -17,9 +17,9 @@ operator. Read more

source§

impl Copy for Version

source§

impl Eq for Version

source§

impl StructuralEq for Version

source§

impl StructuralPartialEq for Version

Auto Trait Implementations§

§

impl RefUnwindSafe for Version

§

impl Send for Version

§

impl Sync for Version

§

impl Unpin for Version

§

impl UnwindSafe for Version

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,
source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere diff --git a/reqwest/tls/struct.Version.html b/reqwest/tls/struct.Version.html index 5688230d884e..0a098b02ad68 100644 --- a/reqwest/tls/struct.Version.html +++ b/reqwest/tls/struct.Version.html @@ -13,9 +13,9 @@ operator. Read more

source§

impl Copy for Version

source§

impl Eq for Version

source§

impl StructuralEq for Version

source§

impl StructuralPartialEq for Version

Auto Trait Implementations§

§

impl RefUnwindSafe for Version

§

impl Send for Version

§

impl Sync for Version

§

impl Unpin for Version

§

impl UnwindSafe for Version

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, - K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+ K: Borrow<Q> + ?Sized,
source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere diff --git a/reqwest/trait.IntoUrl.html b/reqwest/trait.IntoUrl.html index 380449fc45fc..77b8e059f25c 100644 --- a/reqwest/trait.IntoUrl.html +++ b/reqwest/trait.IntoUrl.html @@ -1,4 +1,4 @@ IntoUrl in reqwest - Rust

Trait reqwest::IntoUrl

source ·
pub trait IntoUrl: IntoUrlSealed { }
Expand description

A trait to try to convert some type into a Url.

This trait is “sealed”, such that only types within reqwest can implement it.

-

Implementations on Foreign Types§

source§

impl IntoUrl for String

source§

impl<'a> IntoUrl for &'a String

source§

impl<'a> IntoUrl for &'a str

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl<'a> IntoUrl for &'a String

source§

impl IntoUrl for String

source§

impl<'a> IntoUrl for &'a str

Implementors§

source§

impl IntoUrl for Url

\ No newline at end of file diff --git a/search-index.js b/search-index.js index 93318c68e1fd..e0bbb686f20d 100644 --- a/search-index.js +++ b/search-index.js @@ -8,13 +8,13 @@ var searchIndex = JSON.parse('{\ "allocator_api2":{"doc":"allocator-api2 crate.","t":"IAAKLLKAODIDIDDLLFKFLLKLLLLLLLLLLLLLLLLLLLLLLLLFKKLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["SliceExt","alloc","boxed","repeat","to_vec","to_vec","to_vec_in","vec","vec","AllocError","Allocator","Global","GlobalAlloc","Layout","LayoutError","align","align_to","alloc","alloc","alloc_zeroed","alloc_zeroed","alloc_zeroed","allocate","allocate","allocate_zeroed","allocate_zeroed","allocate_zeroed","array","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","by_ref","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","dangling","dealloc","dealloc","deallocate","deallocate","default","eq","eq","eq","extend","extend_packed","fmt","fmt","fmt","fmt","fmt","fmt","for_value","for_value_raw","from","from","from","from","from_size_align","from_size_align_unchecked","grow","grow","grow","grow_zeroed","grow_zeroed","grow_zeroed","handle_alloc_error","hash","into","into","into","into","new","pad_to_align","padding_needed_for","provide","realloc","realloc","realloc","repeat","repeat_packed","shrink","shrink","shrink","size","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","Box","allocator","as_mut","as_ref","assume_init","assume_init","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_from","clone_from","clone_into","cmp","default","default","default","deref","deref_mut","downcast","downcast","downcast","downcast_unchecked","downcast_unchecked","downcast_unchecked","drop","eq","finish","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from_iter","from_raw","from_raw_in","ge","gt","hash","into","into_boxed_slice","into_future","into_inner","into_iter","into_non_null","into_pin","into_raw","into_raw_with_allocator","into_vec","into_vec","last","le","len","lt","ne","new","new_in","new_uninit","new_uninit_in","new_uninit_slice","new_uninit_slice_in","new_zeroed","new_zeroed_in","new_zeroed_slice","new_zeroed_slice_in","next","next_back","nth","nth_back","partial_cmp","pin","pin_in","poll","size_hint","slice","to_owned","to_string","try_from","try_from","try_into","try_new","try_new_in","try_new_uninit","try_new_uninit_in","try_new_uninit_slice","try_new_zeroed","try_new_zeroed_in","try_new_zeroed_slice","type_id","write","write","write_i128","write_i16","write_i32","write_i64","write_i8","write_isize","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","Drain","IntoIter","Splice","Vec","allocator","allocator","allocator","append","as_mut","as_mut","as_mut_ptr","as_mut_slice","as_mut_slice","as_ptr","as_ref","as_ref","as_ref","as_ref","as_slice","as_slice","as_slice","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clear","clone","clone","clone_from","clone_into","clone_into","cmp","count","dedup","dedup_by","dedup_by_key","default","deref","deref_mut","drain","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","extend","extend","extend_from_slice","extend_from_within","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from_iter","from_raw_parts","from_raw_parts_in","hash","index","index_mut","insert","into","into","into","into","into_boxed_slice","into_flattened","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_raw_parts","into_raw_parts_with_alloc","is_empty","keep_rest","leak","len","ne","ne","ne","ne","ne","ne","new","new_in","next","next","next","next_back","next_back","next_back","partial_cmp","pop","push","push_within_capacity","remove","reserve","reserve_exact","resize","resize_with","retain","retain_mut","set_len","shrink_to","shrink_to_fit","size_hint","size_hint","size_hint","spare_capacity_mut","splice","split_at_spare_mut","split_off","swap_remove","to_owned","to_owned","truncate","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_reserve","try_reserve_exact","type_id","type_id","type_id","type_id","with_capacity","with_capacity_in"],"q":[[0,"allocator_api2"],[9,"allocator_api2::alloc"],[114,"allocator_api2::boxed"],[228,"allocator_api2::vec"]],"d":["Slice methods that use Box and Vec from this crate.","Memory allocation APIs","The Box<T> type for heap allocation.","Creates a vector by copying a slice n times.","Copies self into a new Vec.","Copies self into a new Vec.","Copies self into a new Vec with an allocator.","A contiguous growable array type with heap-allocated …","Creates a Vec containing the arguments.","The AllocError error indicates an allocation failure that …","An implementation of Allocator can allocate, grow, shrink, …","The global memory allocator.","A memory allocator that can be registered as the standard …","Layout of a block of memory.","The parameters given to Layout::from_size_align or some …","The minimum byte alignment for a memory block of this …","Creates a layout describing the record that can hold a …","Allocate memory with the global allocator.","Allocate memory as described by the given layout.","Allocate zero-initialized memory with the global allocator.","Behaves like alloc, but also ensures that the contents are …","Behaves like alloc, but also ensures that the contents are …","Attempts to allocate a block of memory.","","Behaves like allocate, but also ensures that the returned …","Behaves like allocate, but also ensures that the returned …","","Creates a layout describing the record for a [T; n].","","","","","","","","","Creates a “by reference” adapter for this instance of …","Creates a “by reference” adapter for this instance of …","","","","","","","","","Creates a NonNull that is dangling, but well-aligned for …","Deallocate memory with the global allocator.","Deallocate the block of memory at the given ptr pointer …","Deallocates the memory referenced by ptr.","","","","","","Creates a layout describing the record for self followed by","Creates a layout describing the record for self followed by","","","","","","","Produces layout describing a record that could be used to …","Produces layout describing a record that could be used to …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Constructs a Layout from a given size and align, or …","Creates a layout, bypassing all checks.","Attempts to extend the memory block.","Attempts to extend the memory block.","","Behaves like grow, but also ensures that the new contents …","Behaves like grow, but also ensures that the new contents …","","Abort on memory allocation error or failure.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Constructs a Layout suitable for holding a value of type T.","Creates a layout by rounding the size of this layout up to …","Returns the amount of padding we must insert after self to …","","Reallocate memory with the global allocator.","Shrink or grow a block of memory to the given new_size in …","Shrink or grow a block of memory to the given new_size in …","Creates a layout describing the record for n instances of …","Creates a layout describing the record for n instances of …","Attempts to shrink the memory block.","Attempts to shrink the memory block.","","The minimum size in bytes for a memory block of this …","","","","","","","","","","","","","","","","","","","A pointer type for heap allocation.","Returns a reference to the underlying allocator.","","","Converts to Box<T, A>.","Converts to Box<[T], A>.","","","","","","","Returns a new box with a clone() of this box’s contents.","","","Copies source’s contents into self without creating a …","","","Creates a Box<T>, with the Default value for T.","","","","","Attempt to downcast the box to a concrete type.","Attempt to downcast the box to a concrete type.","Attempt to downcast the box to a concrete type.","Downcasts the box to a concrete type.","Downcasts the box to a concrete type.","Downcasts the box to a concrete type.","","","","","","","Converts a [T; N] into a Box<[T]>","Converts a T into a Box<T>","Converts a &[T] into a Box<[T]>","Converts a &CStr into a Box<CStr>, by copying the contents …","Returns the argument unchanged.","Converts a &str into a Box<str>","Convert a vector into a boxed slice.","Converts a Box<str> into a Box<[u8]>","","","Constructs a box from a raw pointer.","Constructs a box from a raw pointer in the given allocator.","","","","Calls U::from(self).","Converts a Box<T> into a Box<[T]>","","Consumes the Box, returning the wrapped value.","","","Converts a Box<T> into a Pin<Box<T>>. If T does not …","Consumes the Box, returning a wrapped raw pointer.","Consumes the Box, returning a wrapped raw pointer and the …","","","","","","","","Allocates memory on the heap and then places x into it.","Allocates memory in the given allocator then places x into …","Constructs a new box with uninitialized contents.","Constructs a new box with uninitialized contents in the …","Constructs a new boxed slice with uninitialized contents.","Constructs a new boxed slice with uninitialized contents …","Constructs a new Box with uninitialized contents, with the …","Constructs a new Box with uninitialized contents, with the …","Constructs a new boxed slice with uninitialized contents, …","Constructs a new boxed slice with uninitialized contents …","","","","","","Constructs a new Pin<Box<T>>. If T does not implement Unpin…","Constructs a new Pin<Box<T, A>>. If T does not implement …","","","","","","Attempts to convert a Box<[T]> into a Box<[T; N]>.","","","Allocates memory on the heap then places x into it, …","Allocates memory in the given allocator then places x into …","Constructs a new box with uninitialized contents on the …","Constructs a new box with uninitialized contents in the …","Constructs a new boxed slice with uninitialized contents. …","Constructs a new Box with uninitialized contents, with the …","Constructs a new Box with uninitialized contents, with the …","Constructs a new boxed slice with uninitialized contents, …","","","Writes the value and converts to Box<T, A>.","","","","","","","","","","","","","A draining iterator for Vec<T>.","An iterator that moves out of a vector.","A splicing iterator for Vec.","A contiguous growable array type, written as Vec<T>, short …","Returns a reference to the underlying allocator.","Returns a reference to the underlying allocator.","Returns a reference to the underlying allocator.","Moves all the elements of other into self, leaving other …","","","Returns an unsafe mutable pointer to the vector’s …","Returns the remaining items of this iterator as a mutable …","Extracts a mutable slice of the entire vector.","Returns a raw pointer to the vector’s buffer, or a …","","","","","Returns the remaining items of this iterator as a slice.","Returns the remaining items of this iterator as a slice.","Extracts a slice containing the entire vector.","","","","","","","","","Returns the total number of elements the vector can hold …","Clears the vector, removing all values.","","","","","","","","Removes consecutive repeated elements in the vector …","Removes all but the first of consecutive elements in the …","Removes all but the first of consecutive elements in the …","Creates an empty Vec<T>.","","","Removes the specified range from the vector in bulk, …","","","","","","","","","","","","","Clones and appends all elements in a slice to the Vec.","Copies elements from src range to the end of the vector.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Convert a boxed slice into a vector by transferring …","Convert a boxed array into a vector by transferring …","","Allocate a Vec<u8> and fill it with a UTF-8 string.","Returns the argument unchanged.","Allocate a Vec<T> and fill it by cloning s’s items.","Allocate a Vec<T> and fill it by cloning s’s items.","Returns the argument unchanged.","","Creates a Vec<T> directly from a pointer, a capacity, and …","Creates a Vec<T, A> directly from a pointer, a capacity, a …","","","","Inserts an element at position index within the vector, …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts the vector into Box<[T]>.","Takes a Vec<[T; N]> and flattens it into a Vec<T>.","","","Creates a consuming iterator, that is, one that moves each …","","","","Decomposes a Vec<T> into its raw components.","Decomposes a Vec<T> into its raw components.","Returns true if the vector contains no elements.","Keep unyielded elements in the source Vec.","Consumes and leaks the Vec, returning a mutable reference …","Returns the number of elements in the vector, also …","","","","","","","Constructs a new, empty Vec<T>.","Constructs a new, empty Vec<T, A>.","","","","","","","","Removes the last element from a vector and returns it, or …","Appends an element to the back of a collection.","Appends an element if there is sufficient spare capacity, …","Removes and returns the element at position index within …","Reserves capacity for at least additional more elements to …","Reserves the minimum capacity for at least additional more …","Resizes the Vec in-place so that len is equal to new_len.","Resizes the Vec in-place so that len is equal to new_len.","Retains only the elements specified by the predicate.","Retains only the elements specified by the predicate, …","Forces the length of the vector to new_len.","Shrinks the capacity of the vector with a lower bound.","Shrinks the capacity of the vector as much as possible.","","","","Returns the remaining spare capacity of the vector as a …","Creates a splicing iterator that replaces the specified …","Returns vector content as a slice of T, along with the …","Splits the collection into two at the given index.","Removes an element from the vector and returns it.","","","Shortens the vector, keeping the first len elements and …","","","","","","","","","Tries to reserve capacity for at least additional more …","Tries to reserve the minimum capacity for at least …","","","","","Constructs a new, empty Vec<T> with at least the specified …","Constructs a new, empty Vec<T, A> with at least the …"],"i":[0,0,0,64,64,64,64,0,0,0,0,0,0,0,0,7,7,0,65,0,65,65,6,3,6,6,3,7,3,13,7,8,3,13,7,8,6,6,3,13,7,8,3,13,7,8,7,0,65,6,3,3,13,7,8,7,7,3,13,13,7,8,8,7,7,3,13,7,8,7,7,6,6,3,6,6,3,0,7,3,13,7,8,7,7,7,8,0,65,65,7,7,6,6,3,7,3,13,7,8,13,8,3,13,7,8,3,13,7,8,3,13,7,8,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,58,59,4,4,4,4,4,59,4,4,58,59,4,4,58,59,4,58,59,4,62,58,59,4,62,4,4,59,4,4,59,4,4,59,4,4,4,4,4,4,4,58,59,4,62,4,4,4,4,4,4,4,4,4,4,58,59,4,62,58,59,4,4,4,4,4,4,4,62,4,4,4,4,4,4,4,58,59,4,62,4,4,58,59,4,4,4,62,4,4,4,58,4,4,4,4,4,4,4,4,4,4,58,59,62,58,59,62,4,4,4,4,4,4,4,4,4,4,4,4,4,4,58,59,62,4,4,4,4,4,59,4,4,58,59,4,62,58,59,4,62,4,4,58,59,4,62,4,4],"f":[0,0,0,[1,[[4,[2,3]]]],[[],[[4,[5,3]]]],[[],[[4,[5,3]]]],[6,[[4,[5,6]]]],0,0,0,0,0,0,0,0,[7,1],[[7,1],[[9,[7,8]]]],[7,10],[7,10],[7,10],[7,10],[7,10],[7,[[9,[[12,[[11,[10]]]],13]]]],[[3,7],[[9,[[12,[[11,[10]]]],13]]]],[7,[[9,[[12,[[11,[10]]]],13]]]],[7,[[9,[[12,[[11,[10]]]],13]]]],[[3,7],[[9,[[12,[[11,[10]]]],13]]]],[1,[[9,[7,8]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[14,14],[14,14],[3,3],[13,13],[7,7],[8,8],[[]],[[]],[[]],[[]],[7,[[12,[10]]]],[[10,7]],[[10,7]],[[[12,[10]],7]],[[3,[12,[10]],7]],[[],3],[[13,13],15],[[7,7],15],[[8,8],15],[[7,7],[[9,[8]]]],[[7,7],[[9,[7,8]]]],[[3,16],17],[[13,16],17],[[13,16],17],[[7,16],[[9,[18]]]],[[8,16],[[9,[18]]]],[[8,16],[[9,[18]]]],[14,7],[[],7],[[]],[[]],[[]],[[]],[[1,1],[[9,[7,8]]]],[[1,1],7],[[[12,[10]],7,7],[[9,[[12,[[11,[10]]]],13]]]],[[[12,[10]],7,7],[[9,[[12,[[11,[10]]]],13]]]],[[3,[12,[10]],7,7],[[9,[[12,[[11,[10]]]],13]]]],[[[12,[10]],7,7],[[9,[[12,[[11,[10]]]],13]]]],[[[12,[10]],7,7],[[9,[[12,[[11,[10]]]],13]]]],[[3,[12,[10]],7,7],[[9,[[12,[[11,[10]]]],13]]]],[7,19],[[7,20]],[[]],[[]],[[]],[[]],[[],7],[7,7],[[7,1],1],[21],[[10,7,1],10],[[10,7,1],10],[[10,7,1],10],[[7,1],[[9,[8]]]],[[7,1],[[9,[7,8]]]],[[[12,[10]],7,7],[[9,[[12,[[11,[10]]]],13]]]],[[[12,[10]],7,7],[[9,[[12,[[11,[10]]]],13]]]],[[3,[12,[10]],7,7],[[9,[[12,[[11,[10]]]],13]]]],[7,1],[[]],[[]],[[]],[[]],[[],22],[[],22],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],23],[[],23],[[],23],[[],23],0,[[[24,[14,6]]],6],[[[24,[14,6]]],14],[[[24,[14,6]]],14],[[[24,[25,6]]],[[24,[6]]]],[[[24,[[11,[25]],6]]],[[24,[11,6]]]],[[]],[[[24,[14,6]]],14],[[[24,[14,6]]],14],[[]],[[[24,[26]]],[[24,[26]]]],[[[24,[27]]],[[24,[27]]]],[[[24,[5,[0,[6,5]]]]],[[24,[5,[0,[6,5]]]]]],[[[24,[[11,[5]],[0,[6,5]]]]],[[24,[[11,[5]],[0,[6,5]]]]]],[[[24,[[11,[5]],[0,[6,5]]]],[24,[[11,[5]],[0,[6,5]]]]]],[[[24,[5,[0,[6,5]]]],[24,[5,[0,[6,5]]]]]],[[]],[[[24,[[0,[14,28]],6]],[24,[[0,[14,28]],6]]],29],[[],[[24,[30]]]],[[],[[24,[26,[0,[6,30]]]]]],[[],[[24,[11,[0,[6,30]]]]]],[[[24,[14,6]]],14],[[[24,[14,6]]],14],[[[24,[31,6]]],[[9,[[24,[31,6]],[24,[31,6]]]]]],[[[24,[31,6]]],[[9,[[24,[31,6]],[24,[31,6]]]]]],[[[24,[31,6]]],[[9,[[24,[31,6]],[24,[31,6]]]]]],[[[24,[31,6]]],[[24,[31,6]]]],[[[24,[31,6]]],[[24,[31,6]]]],[[[24,[31,6]]],[[24,[31,6]]]],[[[24,[14,6]]]],[[[24,[[0,[14,32]],6]],[24,[[0,[14,32]],6]]],15],[[[24,[[0,[14,20]],6]]],33],[[[24,[[0,[34,14]],6]],16],17],[[[24,[[0,[35,14]],6]],16],17],[[[24,[14,6]],16],17],[36,[[24,[11]]]],[[],24],[[[11,[2]]],[[24,[[11,[2]],[0,[6,30]]]]]],[27,[[24,[27]]]],[[]],[26,[[24,[26,[0,[6,30]]]]]],[[[4,[6]]],[[24,[11,6]]]],[[[24,[26,6]]],[[24,[[11,[10]],6]]]],[19],[37,[[24,[11]]]],[[],[[24,[14]]]],[6,[[24,[14,6]]]],[[[24,[[0,[14,38]],6]],[24,[[0,[14,38]],6]]],15],[[[24,[[0,[14,38]],6]],[24,[[0,[14,38]],6]]],15],[[[24,[[0,[14,39]],6]],20]],[[]],[[[24,[6]]],[[24,[11,6]]]],[[]],[[[24,[6]]]],[[]],[[[24,[14,6]]]],[[[24,[14,6]]],[[40,[[24,[14,6]]]]]],[[[24,[14,6]]]],[[[24,[14,6]]]],[[[24,[36,6,6]]],[[4,[6,6]]]],[[[24,[11,6,6]]],[[4,[6,6]]]],[[[24,[[0,[41,14]],6]]],42],[[[24,[[0,[14,38]],6]],[24,[[0,[14,38]],6]]],15],[[[24,[[0,[43,14]],6]]],1],[[[24,[[0,[14,38]],6]],[24,[[0,[14,38]],6]]],15],[[[24,[[0,[14,32]],6]],[24,[[0,[14,32]],6]]],15],[[],24],[[6,6],[[24,[6,6]]]],[[],[[24,[25]]]],[[6,6],[[24,[25,6,6]]]],[1,[[24,[[11,[25]]]]]],[[1,6],[[24,[[11,[25]],6]]]],[[],[[24,[25]]]],[[6,6],[[24,[25,6,6]]]],[1,[[24,[[11,[25]]]]]],[[1,6],[[24,[[11,[25]],6]]]],[[[24,[[0,[41,14]],6]]],42],[[[24,[[0,[44,14]],6]]],42],[[[24,[[0,[41,14]],6]],1],42],[[[24,[[0,[44,14]],6]],1],42],[[[24,[[0,[14,38]],6]],[24,[[0,[14,38]],6]]],[[42,[29]]]],[[],[[40,[24]]]],[[6,6],[[40,[[24,[6,6]]]]]],[[[40,[[24,[[0,[14,45,46]],6]]]],47],48],[[[24,[[0,[41,14]],6]]]],[[[24,[36,6]]],[[24,[11,6]]]],[[]],[[],22],[[[24,[11,6]]],[[9,[[24,[36,6]]]]]],[[],9],[[],9],[[],[[9,[24,13]]]],[[6,6],[[9,[[24,[6,6]],13]]]],[[],[[9,[[24,[25]],13]]]],[[6,6],[[9,[[24,[25,6,6]],13]]]],[1,[[9,[[24,[[11,[25]]]],13]]]],[[],[[9,[[24,[25]],13]]]],[[6,6],[[9,[[24,[25,6,6]],13]]]],[1,[[9,[[24,[[11,[25]]]],13]]]],[[],23],[[[24,[[0,[14,20]],6]],[11,[10]]]],[[[24,[25,6]]],[[24,[6]]]],[[[24,[[0,[14,20]],6]],49]],[[[24,[[0,[14,20]],6]],50]],[[[24,[[0,[14,20]],6]],51]],[[[24,[[0,[14,20]],6]],52]],[[[24,[[0,[14,20]],6]],53]],[[[24,[[0,[14,20]],6]],54]],[[[24,[[0,[14,20]],6]],55]],[[[24,[[0,[14,20]],6]],56]],[[[24,[[0,[14,20]],6]],57]],[[[24,[[0,[14,20]],6]],33]],[[[24,[[0,[14,20]],6]],10]],[[[24,[[0,[14,20]],6]],1]],0,0,0,0,[[[58,[6]]],6],[[[59,[6]]],6],[[[4,[6]]],6],[[[4,[6]],[4,[6]]]],[[[4,[6]]],[[4,[6]]]],[[[4,[6]]],11],[[[4,[6]]]],[[[59,[6]]],11],[[[4,[6]]],11],[[[4,[6]]]],[[[58,[6]]],11],[[[59,[6]]],11],[[[4,[6]]],[[4,[6]]]],[[[4,[6]]],11],[[[58,[6]]],11],[[[59,[6]]],11],[[[4,[6]]],11],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[4,[6]]],1],[[[4,[6]]]],[[[59,[5,[0,[6,5]]]]],[[59,[5,[0,[6,5]]]]]],[[[4,[5,[0,[6,5]]]]],[[4,[5,[0,[6,5]]]]]],[[[4,[5,[0,[6,5]]]],[4,[5,[0,[6,5]]]]]],[[]],[[]],[[[4,[28,6]],[4,[28,6]]],29],[[[59,[6]]],1],[[[4,[32,6]]]],[[[4,[6]],60]],[[[4,[6]],60]],[[],4],[[[4,[6]]],11],[[[4,[6]]],11],[[[4,[6]],[61,[1]]],[[58,[6]]]],[[[58,[6]]]],[[[59,[6]]]],[[[4,[6]]]],[[[62,[41,6]]]],[[[4,[32,6]],36],15],[[[4,[32,6]],36],15],[[[4,[32,6]],11],15],[[[4,[32,6]],[4,[6]]],15],[[[4,[32,6]],11],15],[[[4,[32,6]],11],15],[[[4,[2,6]],37]],[[[4,[6]],37]],[[[4,[5,6]],[11,[5]]]],[[[4,[5,6]],[61,[1]]]],[[[58,[35,6]],16],17],[[[59,[35,6]],16],17],[[[4,[35,6]],16],17],[[[62,[[0,[35,41]],[0,[35,6]]]],16],17],[[]],[[]],[[[24,[11,6]]],[[4,[6]]]],[[[24,[36,6]]],[[4,[6]]]],[36,4],[26,[[4,[10]]]],[[]],[[[11,[5]]],[[4,[5]]]],[[[11,[5]]],[[4,[5]]]],[[]],[37,4],[[1,1],4],[[1,1,6],[[4,[6]]]],[[[4,[39,6]],20]],[[[4,[6]],[63,[11]]]],[[[4,[6]],[63,[11]]]],[[[4,[6]],1]],[[]],[[]],[[]],[[]],[[[4,[6]]],[[24,[11,6]]]],[[[4,[36,6]]],[[4,[6]]]],[[]],[[]],[[[4,[6]]]],[[[4,[6]]]],[[[4,[6]]]],[[]],[[[4,[6]]]],[[[4,[6]]]],[[[4,[6]]],15],[[[58,[6]]]],[[[4,[6]]],11],[[[4,[6]]],1],[[[4,[32,6]],11],15],[[[4,[32,6]],11],15],[[[4,[32,6]],11],15],[[[4,[32,6]],[4,[6]]],15],[[[4,[32,6]],36],15],[[[4,[32,6]],36],15],[[],4],[6,[[4,[6]]]],[[[58,[6]]],42],[[[59,[6]]],42],[[[62,[41,6]]],42],[[[58,[6]]],42],[[[59,[6]]],42],[[[62,[41,6]]],42],[[[4,[38,6]],[4,[38,6]]],[[42,[29]]]],[[[4,[6]]],42],[[[4,[6]]]],[[[4,[6]]],9],[[[4,[6]],1]],[[[4,[6]],1]],[[[4,[6]],1]],[[[4,[5,6]],1,5]],[[[4,[6]],1,60]],[[[4,[6]],60]],[[[4,[6]],60]],[[[4,[6]],1]],[[[4,[6]],1]],[[[4,[6]]]],[[[58,[6]]]],[[[59,[6]]]],[[[62,[41,6]]]],[[[4,[6]]],[[11,[25]]]],[[[4,[6]],[61,[1]],37],[[62,[6]]]],[[[4,[6]]]],[[[4,[5,6]],1],[[4,[5,6]]]],[[[4,[6]],1]],[[]],[[]],[[[4,[6]],1]],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[[4,[6]],1],[[9,[0]]]],[[[4,[6]],1],[[9,[0]]]],[[],23],[[],23],[[],23],[[],23],[1,4],[[1,6],[[4,[6]]]]],"c":[],"p":[[15,"usize"],[8,"Copy"],[3,"Global"],[3,"Vec"],[8,"Clone"],[8,"Allocator"],[3,"Layout"],[3,"LayoutError"],[4,"Result"],[15,"u8"],[15,"slice"],[3,"NonNull"],[3,"AllocError"],[8,"Sized"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"Error"],[15,"never"],[8,"Hasher"],[3,"Demand"],[3,"String"],[3,"TypeId"],[3,"Box"],[19,"MaybeUninit"],[15,"str"],[3,"CStr"],[8,"Ord"],[4,"Ordering"],[8,"Default"],[8,"Any"],[8,"PartialEq"],[15,"u64"],[8,"Display"],[8,"Debug"],[15,"array"],[8,"IntoIterator"],[8,"PartialOrd"],[8,"Hash"],[3,"Pin"],[8,"Iterator"],[4,"Option"],[8,"ExactSizeIterator"],[8,"DoubleEndedIterator"],[8,"Future"],[8,"Unpin"],[3,"Context"],[4,"Poll"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[15,"isize"],[15,"u128"],[15,"u16"],[15,"u32"],[3,"Drain"],[3,"IntoIter"],[8,"FnMut"],[8,"RangeBounds"],[3,"Splice"],[8,"SliceIndex"],[8,"SliceExt"],[8,"GlobalAlloc"]]},\ "argminmax":{"doc":"A crate for finding the index of the minimum and maximum …","t":"IIKKKAKKKAADDDLLLLLLLLLLLLLLLLLLLLLDIKLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLDDIDKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["ArgMinMax","NaNArgMinMax","argmax","argmin","argminmax","dtype_strategy","nanargmax","nanargmin","nanargminmax","scalar","simd","FloatIgnoreNaN","FloatReturnNaN","Int","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","from","from","from","into","into","into","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","SCALAR","ScalarArgMinMax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","borrow","borrow_mut","from","into","try_from","try_into","type_id","AVX2","NEON","SIMDArgMinMax","SSE","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmax","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argmin","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","argminmax","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","from","from","from","into","into","into","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"argminmax"],[11,"argminmax::dtype_strategy"],[35,"argminmax::scalar"],[83,"argminmax::simd"]],"d":["Trait for finding the minimum and maximum values in an …","Trait for finding the minimum and maximum values in an …","Get the index of the maximum value in the array.","Get the index of the minimum value in the array.","Get the index of the minimum and maximum values in the …","The strategy that is used to handle the data type.","Get the index of the maximum value in the array.","Get the index of the minimum value in the array.","Get the index of the minimum and maximum values in the …","Scalar implementation of the argminmax functions.","SIMD implementations of the argminmax functions.","Strategy for floating point numbers - ignoring NaNs.","Strategy for floating point numbers - returning NaNs.","Strategy for signed and unsigned integers.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","Type that implements the ScalarArgMinMax trait.","A trait providing the scalar implementation of the …","Get the index of the maximum value in the slice.","","","","","","","","","","","","","Get the index of the minimum value in the slice.","","","","","","","","","","","","","Get the index of the minimum and maximum values in the …","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","AVX2 instruction set.","NEON instruction set.","A trait providing the SIMD implementation of the argminmax …","SSE instruction set.","Get the index of the maximum value in the slice.","","","","","","","","","","","","","","","","","","","","","","","","","Get the index of the minimum value in the slice.","","","","","","","","","","","","","","","","","","","","","","","","","Get the index of the minimum and maximum values in the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","",""],"i":[0,0,15,15,15,0,16,16,16,0,0,0,0,0,17,18,19,17,18,19,17,18,19,17,18,19,17,18,19,17,18,19,17,18,19,0,0,20,21,21,21,21,21,21,21,21,21,21,21,21,20,21,21,21,21,21,21,21,21,21,21,21,21,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,0,0,0,0,22,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,22,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,22,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,23,24,25,23,24,25,23,24,25,23,24,25,23,24,25,23,24,25,23,24,25],"f":[0,0,[[],1],[[],1],[[]],0,[[],1],[[],1],[[]],0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],3],[[],3],[[],3],0,0,[4,1],[[[4,[5]]],1],[[[4,[6]]],1],[[[4,[7]]],1],[[[4,[8]]],1],[[[4,[9]]],1],[[[4,[10]]],1],[[[4,[11]]],1],[[[4,[9]]],1],[[[4,[12]]],1],[[[4,[11]]],1],[[[4,[13]]],1],[[[4,[14]]],1],[4,1],[[[4,[7]]],1],[[[4,[12]]],1],[[[4,[9]]],1],[[[4,[11]]],1],[[[4,[8]]],1],[[[4,[9]]],1],[[[4,[10]]],1],[[[4,[6]]],1],[[[4,[14]]],1],[[[4,[5]]],1],[[[4,[13]]],1],[[[4,[11]]],1],[4],[[[4,[6]]]],[[[4,[12]]]],[[[4,[10]]]],[[[4,[9]]]],[[[4,[9]]]],[[[4,[7]]]],[[[4,[13]]]],[[[4,[5]]]],[[[4,[14]]]],[[[4,[11]]]],[[[4,[11]]]],[[[4,[8]]]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],3],0,0,0,0,[4,1],[[[4,[9]]],1],[[[4,[8]]],1],[[[4,[11]]],1],[[[4,[5]]],1],[[[4,[10]]],1],[[[4,[12]]],1],[[[4,[14]]],1],[[[4,[13]]],1],[[[4,[9]]],1],[[[4,[6]]],1],[[[4,[7]]],1],[[[4,[11]]],1],[[[4,[9]]],1],[[[4,[11]]],1],[[[4,[12]]],1],[[[4,[5]]],1],[[[4,[10]]],1],[[[4,[8]]],1],[[[4,[7]]],1],[[[4,[11]]],1],[[[4,[14]]],1],[[[4,[6]]],1],[[[4,[13]]],1],[[[4,[9]]],1],[4,1],[[[4,[10]]],1],[[[4,[14]]],1],[[[4,[8]]],1],[[[4,[9]]],1],[[[4,[6]]],1],[[[4,[11]]],1],[[[4,[13]]],1],[[[4,[5]]],1],[[[4,[7]]],1],[[[4,[12]]],1],[[[4,[11]]],1],[[[4,[9]]],1],[[[4,[13]]],1],[[[4,[7]]],1],[[[4,[10]]],1],[[[4,[5]]],1],[[[4,[8]]],1],[[[4,[11]]],1],[[[4,[6]]],1],[[[4,[9]]],1],[[[4,[14]]],1],[[[4,[12]]],1],[[[4,[11]]],1],[[[4,[9]]],1],[4],[[[4,[13]]]],[[[4,[14]]]],[[[4,[5]]]],[[[4,[8]]]],[[[4,[10]]]],[[[4,[6]]]],[[[4,[9]]]],[[[4,[12]]]],[[[4,[9]]]],[[[4,[7]]]],[[[4,[11]]]],[[[4,[11]]]],[[[4,[9]]]],[[[4,[11]]]],[[[4,[6]]]],[[[4,[5]]]],[[[4,[12]]]],[[[4,[13]]]],[[[4,[9]]]],[[[4,[8]]]],[[[4,[7]]]],[[[4,[11]]]],[[[4,[10]]]],[[[4,[14]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],3],[[],3],[[],3]],"c":[],"p":[[15,"usize"],[4,"Result"],[3,"TypeId"],[15,"slice"],[15,"u16"],[15,"i64"],[15,"u32"],[15,"i16"],[15,"f64"],[15,"i8"],[15,"f32"],[15,"u8"],[15,"i32"],[15,"u64"],[8,"ArgMinMax"],[8,"NaNArgMinMax"],[3,"Int"],[3,"FloatIgnoreNaN"],[3,"FloatReturnNaN"],[8,"ScalarArgMinMax"],[3,"SCALAR"],[8,"SIMDArgMinMax"],[3,"SSE"],[3,"AVX2"],[3,"NEON"]]},\ "array_init_cursor":{"doc":"Small crate for initializing an uninitialized slice","t":"DLLLLLLLLLLLLL","n":["Cursor","assert_size","borrow","borrow_mut","drop","finish","from","into","new","split","try_from","try_into","type_id","write"],"q":[[0,"array_init_cursor"]],"d":["A fixed-size cursor for initializing MaybeUninit arrays","Compile-time assertion that N == M to work-around …","","","Will panic unless cursor has been completely initialized","Finishes the buffer by writing the remaining values.","Returns the argument unchanged.","Calls U::from(self).","Creates a new cursor.","Splits the cursor in two.","","","","Writes L values to the buffer and returns a new cursor for …"],"i":[0,1,1,1,1,1,1,1,1,1,1,1,1,1],"f":[0,[1,1],[[]],[[]],[1],[[1,2]],[[]],[[]],[[[2,[3]]],1],[1],[[],4],[[],4],[[],5],[[1,2],1]],"c":[],"p":[[3,"Cursor"],[15,"array"],[19,"MaybeUninit"],[4,"Result"],[3,"TypeId"]]},\ -"arrow2":{"doc":"Welcome to arrow2’s documentation. Thanks for checking …","t":"DENNLLLLALLLLLLLLLLLLLLLLALLLLALALLLLLLLALLALLLLLLLLLLLLLALLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLALLLLALLLLLLLLLLLLLLLLLLLLALLLALLLALLLLLLLALLALLLLLLLIDDGDGGDIDDGGGGGGIGGGGGGGGGGGGSDGDGGIDDDDDDDDDDDDDDIDIIIGGGGGGGGDDGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLFALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLFLLLLLLLLLLKLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLIDDDDDDDDDDDDLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGFFFFDDDLLLFLLFFLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLFLLLLLLLLLFLLLLLLLLLLLLLLLLLLFFLLALFIIDDDDNNDEDLLLLLLLLLLLLLLLLLLFLLLLLLLLFFLLLLLLLLLLLLLLKFFLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLKLLLLFFFLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLAAAAAAAAAAAAAASSIIFFFFFFFKKFFFFFKKFFKKKFFFIIIIIIIIIIIIIIIIIIIFKFAFFFFFFKKKKKAFKFFKFFKKKFKKKKFKFAKKKIFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDLFFFFFFFFFFLLFFLLFFFFFFLFFFFFFLLFLFFMFFFFFFFFFFFFFFFFFFFLLLLFFFFFFFFFMFFQIIIIAAFFFFFFFFFFFFFKFFFFFKKFKFKFFFKFKFFFKFFFAAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFGFFFFFFFFFFFFFFFFNNNNENNNNNNNNNNDNNNNNNNNNNNNNNNENENNNNNNNNNNGNNNNNNENCDGNNNNNNENNNNNNNNNNNENNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLMLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLENNNNNNNGLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLFFFLLLLLLLLFFLLLLALLLLLLLLLLLLLLFFAAAADDLLALLLLLLLLLMLLMMLLLLLLMALLLLLLLLAGNDDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNENDDENNNLLMLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLMMLLLLLLLFFFFLLMMLMLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMEDNDDDNLLLLLLLLLLLLLLLMFLLLLALLLLLLLLLLLLLLLLLLLLLFLLLALLLLLLLLLLLLLLLLFLLDLLLLLLLLLLLLDDLLLLLLLMLLLLLLLLLLLLLLLLLLLLLADIDQIDDQDDDDDDDDDLKLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLFLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFAQIDQDLKLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLAAGDNNNNDDDNENNNNDNNNNQQINNDDNNNENENNNNNNNNNNQQNNNNNNNINGDNEGDIEEEENEENDDDDNENNDNNNNNNNNNNNNNNNNLLLLLLLLLLFFFKKLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFMLLLLLFFMLFLMLLLLLLLLLLLLCLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLFFFFFLLLLLLACFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLFMLLLLLLLLLLLLLLLLLLLLLLMLLMLLLFFFFFFFMALMLLLLALLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMDEDDNNLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLFLLLLLLMMMMLMMFFMMMLLLLLLLLLLLLLLDNDENDMMFMMMFFMMMMMMMMDLLFMLLLLMMMLLLNNNDNNDEEDNNNNNDNNNDDEQIDDDDNNNNDNNNQDNNNNNEEEENNNNNNGDDNNDNNNEDNDLLLLLLLLLLLLLLLLKLLLLFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLFLLMLLLLMMMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLCLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLFLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMLLLLMMMLLMLLLLLLLLLLLLMMFLLLLLLLLLLLLMLLLLMFMMLLLMMLLLLLLLFFLLLLLLLLFFLLLLLLLLLLLLLLLLFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLFFFMLLLLMMMMFFCDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDIDDDLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLRRRRRRFFFFFFFFFFFFFFFFFFFFFFFFIIDDQNSNNNSIDNNNNNNNIISENNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLKKLLLLLLKLLLLKKLLLLLDLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLALLLKLLLLLLKLLLLKLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLQISQQIIQLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDFFF","n":["AHashMap","Either","Left","Right","__clone_box","__clone_box","all","any","array","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_pin_mut","as_pin_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","bitmap","borrow","borrow","borrow_mut","borrow_mut","buffer","cause","chunk","clone","clone","clone_from","clone_into","clone_into","cmp","collect","compute","consume","count","datatypes","default","deref","deref","deref_mut","deref_mut","description","either","either_into","either_with","eq","eq","equivalent","equivalent","error","expect_left","expect_right","extend","extend","extend","factor_err","factor_first","factor_none","factor_ok","factor_second","ffi","fill_buf","find","find_map","flip","flush","fmt","fmt","fmt","fold","for_each","from","from","from","from","from","from_iter","get","get_key_value","get_mut","hash","index","insert","into","into","into","into","into_future","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_keys","into_values","io","is_left","is_right","last","left","left_and_then","left_or","left_or_default","left_or_else","len","map","map_either","map_either_with","map_left","map_right","mmap","new","next","next_back","nth","offset","partial_cmp","partition","poll","position","provide","read","read_exact","read_line","read_to_end","read_to_string","read_until","read_varint","remove","rfind","rfold","right","right_and_then","right_or","right_or_default","right_or_else","scalar","seek","size_hint","source","temporal_conversions","to_owned","to_owned","to_string","trusted_len","try_from","try_from","try_into","try_into","try_poll","type_id","type_id","types","unwrap_left","unwrap_right","util","with_capacity","with_capacity_and_hasher","with_hasher","write","write_all","write_fmt","write_varint","Array","ArrayValuesIter","BinaryArray","BinaryValueIter","BooleanArray","DaysMsArray","DaysMsVec","DictionaryArray","DictionaryKey","FixedSizeBinaryArray","FixedSizeListArray","Float16Array","Float16Vec","Float32Array","Float32Vec","Float64Array","Float64Vec","GenericBinaryArray","Int128Array","Int128Vec","Int16Array","Int16Vec","Int256Array","Int256Vec","Int32Array","Int32Vec","Int64Array","Int64Vec","Int8Array","Int8Vec","KEY_TYPE","ListArray","ListValuesIter","MapArray","MonthsDaysNsArray","MonthsDaysNsVec","MutableArray","MutableBinaryArray","MutableBinaryValuesArray","MutableBooleanArray","MutableDictionaryArray","MutableFixedSizeBinaryArray","MutableFixedSizeListArray","MutableListArray","MutableNullArray","MutablePrimitiveArray","MutableStructArray","MutableUtf8Array","MutableUtf8ValuesArray","NullArray","PrimitiveArray","PushUnchecked","StructArray","TryExtend","TryExtendFromSelf","TryPush","UInt16Array","UInt16Vec","UInt32Array","UInt32Vec","UInt64Array","UInt64Vec","UInt8Array","UInt8Vec","UnionArray","Utf8Array","Utf8ValuesIter","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","add","add","always_fits_usize","always_fits_usize","apply_validity","apply_validity","apply_validity","apply_validity","apply_values","apply_values_mut","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_ref","as_usize","as_usize","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","capacity","capacity","capacity","capacity","capacity","checked_add","checked_add","checked_add","checked_div","checked_div","checked_div","checked_mul","checked_mul","checked_mul","checked_rem","checked_rem","checked_sub","checked_sub","checked_sub","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","default","default","default","default","default","default","default","default","default","default","default_data_type","default_data_type","default_data_type","default_data_type","default_datatype","default_datatype","div","div","div","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","extend","extend","extend","extend","extend","extend","extend_constant","extend_from_slice","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_values","extend_values","field","fields","fields","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_inner","from_inner_unchecked","from_inner_unchecked","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter_values","from_iter_values","from_iter_values","from_iter_values","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_values","from_vec","from_vec","get","get","get","get","get","get","get_child_field","get_child_type","get_display","get_fields","get_fields","get_mut_values","get_value_display","growable","index","index_unchecked","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_arc","into_arc","into_arc","into_arc","into_arc","into_arc","into_arc","into_box","into_box","into_data","into_data","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_mut","into_mut","into_mut","into_mut","is_empty","is_empty","is_null","is_ordered","is_sparse","is_valid","is_valid","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter_typed","iter_values","key_value","keys","keys","keys_iter","keys_values_iter","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","map","mul","mul","mul","mut_values","mut_values","mut_values","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty_array","new_from","new_from","new_from_mutable","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null_array","new_unchecked","new_unchecked","new_unchecked","new_with_capacity","new_with_field","new_with_field","next","next_back","nth","null_count","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","ord","overflowing_add","overflowing_add","overflowing_mul","overflowing_mul","overflowing_sub","overflowing_sub","pop","pop","pop","pop","pop","pop","pop","push","push","push","push","push","push","push","push","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_unchecked","push_unchecked","push_valid","rem","rem","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","saturating_add","saturating_add","saturating_add","saturating_mul","saturating_mul","saturating_mul","saturating_sub","saturating_sub","saturating_sub","set","set","set_unchecked","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_values","set_values","set_values","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","size","size","size","size","size_hint","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sub","sub","sub","to","to","to","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend_from_lengths","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_iter","try_from_iter","try_from_iter","try_from_iter","try_from_keys","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_get_child","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new_unchecked","try_new_unchecked","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push_valid","try_push_valid","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","value","value","value","value","value","value","value","value","value","value","value","value","value","value","value","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter_typed","values_mut_slice","values_mut_slice","with_capacities","with_capacities","with_capacities","with_capacities","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity_from","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_values","with_values","wrapping_add","wrapping_mul","wrapping_sub","Growable","GrowableBinary","GrowableBoolean","GrowableDictionary","GrowableFixedSizeBinary","GrowableFixedSizeList","GrowableList","GrowableMap","GrowableNull","GrowablePrimitive","GrowableStruct","GrowableUnion","GrowableUtf8","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","default","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","len","len","len","len","len","len","len","len","len","len","len","len","len","make_growable","new","new","new","new","new","new","new","new","new","new","new","new","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","DynComparator","build_compare","total_cmp","total_cmp_f32","total_cmp_f64","Bitmap","IntoIter","MutableBitmap","__clone_box","__clone_box","__clone_box","and","as_slice","as_slice","binary","binary_assign","bitand","bitand","bitand_assign","bitor","bitor","bitor_assign","bitxor","bitxor","bitxor_assign","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","capacity","chunk_iter_to_vec","chunks","clear","clone","clone","clone","clone_into","clone_into","clone_into","default","default","eq","eq","extend_constant","extend_from_bitmap","extend_from_slice","extend_from_slice_unchecked","extend_from_trusted_len_iter","extend_from_trusted_len_iter_unchecked","fmt","fmt","fmt","from","from","from","from","from","from","from_chunk_iter_unchecked","from_inner","from_inner_unchecked","from_iter","from_iter","from_len_set","from_len_zeroed","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_u8_slice","from_u8_vec","from_vec","get","get","get_bit","get_bit_unchecked","into","into","into","into_inner","into_iter","into_iter","into_iter","into_iter","into_mut","is_empty","is_empty","iter","iter","len","len","make_mut","new","new","new","new_zeroed","next","next_back","not","not","nth","null_count","null_count","null_count_range","or","pop","push","push_unchecked","quaternary","reserve","set","set_unchecked","shrink_to_fit","size_hint","slice","slice_unchecked","sliced","sliced_unchecked","ternary","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_into","try_into","try_into","try_new","try_new","type_id","type_id","type_id","unary","unary_assign","unset_bits","unset_bits","utils","with_capacity","xor","BitChunk","BitChunkIterExact","BitChunks","BitChunksExact","BitChunksExactMut","BitmapIter","Optional","Required","SlicesIterator","ZipValidity","ZipValidityIter","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes_for","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","count_zeros","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_ne_bytes","get_bit","get_bit_unchecked","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","is_empty","is_set","len","len","new","new","new","new","new","new","new","new_with_validity","next","next","next","next","next","next","next","next_back","next_back","next_back","nth","nth","nth","remainder","remainder","remainder","remainder","remainder","remainder","remainder_iter","remainder_iter","remainder_len","remainder_len","remainder_len","remainder_len","remainder_len","set","set_bit","set_bit_unchecked","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","slots","to_ne_bytes","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap_optional","unwrap_required","Buffer","Bytes","__clone_box","as_slice","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","eq","fmt","from","from","from","from","from","from_inner_unchecked","from_iter","get_mut","get_mut_slice","into","into","into_inner","into_iter","into_mut","is_empty","is_sliced","len","new","offset","set_len","shared_count_strong","shared_count_weak","slice","slice_unchecked","sliced","sliced_unchecked","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","Chunk","__clone_box","arrays","borrow","borrow_mut","clone","clone_into","columns","deref","eq","equivalent","fmt","from","into","into_arrays","is_empty","len","new","to_owned","try_from","try_into","try_new","type_id","aggregate","arithmetics","arity","arity_assign","boolean","boolean_kleene","cast","comparison","concatenate","filter","if_then_else","like","substring","take","MAX","MIN","SimdOrd","Sum","can_max","can_min","can_sum","estimated_bytes_size","max","max_binary","max_boolean","max_element","max_lane","max_primitive","max_string","min","min_binary","min_boolean","min_element","min_lane","min_primitive","min_string","new_max","new_min","simd_sum","sum","sum_primitive","sum_slice","ArrayAdd","ArrayCheckedAdd","ArrayCheckedDiv","ArrayCheckedMul","ArrayCheckedRem","ArrayCheckedSub","ArrayDiv","ArrayMul","ArrayOverflowingAdd","ArrayOverflowingMul","ArrayOverflowingSub","ArrayRem","ArraySaturatingAdd","ArraySaturatingMul","ArraySaturatingSub","ArraySub","ArrayWrappingAdd","ArrayWrappingMul","ArrayWrappingSub","add","add","add_scalar","basic","can_add","can_div","can_mul","can_neg","can_rem","can_sub","checked_add","checked_div","checked_mul","checked_rem","checked_sub","decimal","div","div","div_scalar","mul","mul","mul_scalar","neg","overflowing_add","overflowing_mul","overflowing_sub","rem","rem","saturating_add","saturating_mul","saturating_sub","sub","sub","sub_scalar","time","wrapping_add","wrapping_mul","wrapping_sub","NativeArithmetics","add","add_scalar","checked_add","checked_add_scalar","checked_div","checked_div_scalar","checked_mul","checked_mul_scalar","checked_negate","checked_powf_scalar","checked_rem","checked_rem_scalar","checked_sub","checked_sub_scalar","div","div_scalar","mul","mul_scalar","negate","overflowing_add","overflowing_add_scalar","overflowing_mul","overflowing_mul_scalar","overflowing_sub","overflowing_sub_scalar","powf_scalar","rem","rem_scalar","saturating_add","saturating_add_scalar","saturating_mul","saturating_mul_scalar","saturating_sub","saturating_sub_scalar","sub","sub_scalar","wrapping_add","wrapping_add_scalar","wrapping_mul","wrapping_mul_scalar","wrapping_negate","wrapping_sub","wrapping_sub_scalar","adaptive_add","adaptive_div","adaptive_mul","adaptive_sub","add","checked_add","checked_div","checked_mul","checked_sub","div","div_scalar","mul","mul_scalar","saturating_add","saturating_div","saturating_mul","saturating_sub","sub","add_duration","add_duration_scalar","add_interval","add_interval_scalar","sub_duration_scalar","sub_timestamps_scalar","subtract_duration","subtract_timestamps","binary","binary_checked","binary_with_bitmap","try_binary","try_unary","unary","unary_checked","unary_with_bitmap","binary","unary","all","and","and_scalar","any","is_not_null","is_null","not","or","or_scalar","all","and","and_scalar","any","or","or_scalar","CastOptions","__clone_box","binary_large_to_binary","binary_to_dictionary","binary_to_large_binary","binary_to_large_utf8","binary_to_list","binary_to_primitive","binary_to_utf8","boolean_to_binary","boolean_to_primitive","boolean_to_utf8","borrow","borrow_mut","can_cast_types","cast","clone","clone_into","date32_to_date64","date64_to_date32","days_ms_to_months_days_ns","decimal_to_decimal","decimal_to_float","decimal_to_integer","default","dictionary_to_dictionary_keys","dictionary_to_dictionary_values","dictionary_to_values","f16_to_f32","fixed_size_binary_binary","float_to_decimal","fmt","from","integer_to_decimal","into","months_to_months_days_ns","naive_timestamp_to_utf8","partial","partial_binary_to_primitive","partial_utf8_to_primitive","primitive_as_primitive","primitive_to_binary","primitive_to_boolean","primitive_to_dictionary","primitive_to_primitive","primitive_to_same_primitive","primitive_to_utf8","time32_to_time64","time32ms_to_time32s","time32s_to_time32ms","time64_to_time32","time64ns_to_time64us","time64us_to_time64ns","timestamp_to_date32","timestamp_to_date64","timestamp_to_timestamp","timestamp_to_utf8","to_owned","try_from","try_into","type_id","utf8_large_to_utf8","utf8_to_binary","utf8_to_date32","utf8_to_date64","utf8_to_dictionary","utf8_to_large_utf8","utf8_to_naive_timestamp_ns","utf8_to_primitive","utf8_to_timestamp_ns","wrapped","wrapping_dictionary_to_dictionary_keys","wrapping_dictionary_to_dictionary_values","Simd","Simd8","Simd8Lanes","Simd8PartialEq","Simd8PartialOrd","binary","boolean","can_eq","can_eq_scalar","can_gt","can_gt_eq","can_gt_eq_scalar","can_gt_scalar","can_lt","can_lt_eq","can_lt_eq_scalar","can_lt_scalar","can_neq","can_neq_scalar","eq","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","finish_eq_validities","finish_neq_validities","from_chunk","from_incomplete_chunk","gt","gt","gt_eq","gt_eq","gt_eq_scalar","gt_scalar","lt","lt","lt_eq","lt_eq","lt_eq_scalar","lt_scalar","neq","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","primitive","utf8","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","compare_op_scalar","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","compare_op_scalar","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","concatenate","Filter","build_filter","filter","filter_chunk","if_then_else","like_binary","like_binary_scalar","like_utf8","like_utf8_scalar","nlike_binary","nlike_binary_scalar","nlike_utf8","nlike_utf8_scalar","can_substring","substring","can_take","take","Binary","Binary","Boolean","Boolean","DataType","Date32","Date64","DayTime","Decimal","Decimal256","Dense","Dictionary","Dictionary","Duration","Extension","Field","FixedSizeBinary","FixedSizeBinary","FixedSizeList","FixedSizeList","Float16","Float32","Float64","Int16","Int16","Int32","Int32","Int64","Int64","Int8","Int8","IntegerType","Interval","IntervalUnit","LargeBinary","LargeBinary","LargeList","LargeList","LargeUtf8","LargeUtf8","List","List","Map","Map","Metadata","Microsecond","Millisecond","MonthDayNano","Nanosecond","Null","Null","PhysicalType","Primitive","PrimitiveType","Schema","SchemaRef","Second","Sparse","Struct","Struct","Time32","Time64","TimeUnit","Timestamp","UInt16","UInt16","UInt32","UInt32","UInt64","UInt64","UInt8","UInt8","Union","Union","UnionMode","Utf8","Utf8","YearMonth","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","default","eq","eq","eq","eq","eq","eq","eq","eq","eq_primitive","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","filter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","get_extension","hash","hash","hash","hash","hash","hash","hash","into","into","into","into","into","into","into","into","is_dense","is_nullable","is_sparse","metadata","metadata","name","new","sparse","to_logical_type","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical_type","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","with_metadata","with_metadata","Error","External","ExternalFormat","InvalidArgumentError","Io","NotYetImplemented","OutOfSpec","Overflow","Result","borrow","borrow_mut","fmt","fmt","from","from","from","from","from","from","from","from","from","from_external_error","into","provide","to_string","try_from","try_into","type_id","ArrowArray","ArrowArrayStream","ArrowArrayStreamReader","ArrowSchema","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","drop","drop","drop","empty","empty","empty","export_array_to_c","export_field_to_c","export_iterator","field","fmt","fmt","fmt","from","from","from","from","import_array_from_c","import_field_from_c","into","into","into","into","mmap","next","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_new","type_id","type_id","type_id","type_id","bitmap","slice","ipc","json","ndjson","parquet","IpcField","IpcSchema","__clone_box","__clone_box","append","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","default","dictionary_id","eq","eq","fields","fields","fmt","fmt","from","from","into","into","is_little_endian","read","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","write","Dictionaries","ExpectedBuffer","FileMetadata","FileReader","InvalidBitmap","InvalidBuffer","InvalidBuffersLength","InvalidDataType","InvalidFlatbufferBlock","InvalidFlatbufferBodyLength","InvalidFlatbufferBuffers","InvalidFlatbufferCompression","InvalidFlatbufferData","InvalidFlatbufferDictionaries","InvalidFlatbufferFooter","InvalidFlatbufferHeader","InvalidFlatbufferId","InvalidFlatbufferIsDelta","InvalidFlatbufferMessage","InvalidFlatbufferNodes","InvalidFlatbufferRecordBatches","InvalidFlatbufferSchema","InvalidFlatbufferVersion","InvalidFooter","InvalidHeader","InvalidId","InvalidIdDataType","MissingData","MissingFields","MissingMessageBuffers","MissingMessageHeader","MissingMessageNodes","MissingRecordBatches","MissingSchema","NegativeFooterLength","OutOfSpecKind","Some","StreamMetadata","StreamReader","StreamState","UnexpectedMessageType","UnexpectedNegativeInteger","Waiting","__clone_box","__clone_box","blocks","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deserialize_schema","fmt","fmt","fmt","from","from","from","from","from","from","get_scratches","into","into","into","into","into","into","into_inner","into_iter","into_iter","ipc_schema","ipc_schema","is_finished","metadata","metadata","new","new","next","next","read_batch","read_file_dictionaries","read_file_metadata","read_stream_metadata","schema","schema","schema","schema","set_scratches","size","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","unwrap","version","buffer_length","buffers_size","file_size","length","length","number_of_bits","requested_id","requested_id","required_number_of_bytes","type_name","Compression","FileWriter","LZ4","Record","StreamWriter","WriteOptions","ZSTD","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","columns","compression","default_ipc_fields","eq","eq","equivalent","fields","file_async","finish","finish","fmt","fmt","from","from","from","from","from","from","from","get_scratches","hash","into","into","into","into","into_inner","into_inner","new","new","schema_to_bytes","set_scratches","start","start","stream_async","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from_file","try_into","try_into","try_into","try_into","try_new","type_id","type_id","type_id","type_id","write","write","write","FileSink","borrow","borrow_mut","from","into","new","poll_close","poll_flush","poll_ready","start_send","try_from","try_into","type_id","StreamSink","WriteOptions","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","compression","default","eq","equivalent","fmt","from","from","hash","into","into","new","poll_close","poll_flush","poll_ready","start_send","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","write","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","RecordSerializer","Serializer","Skip","SkipWhile","Take","TakeWhile","__clone_box","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance_back","advance_back","advance_back","advance_back","advance_back","advance_back","all","any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","clone","clone_into","convert","count","empty","filter","find","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get","get","get","get","get","get","get","get","get","into","into","into","into","into","into","into","into","into","into","into","into","into","map","map_err","map_ref","new","new","next","next","next","next_back","next_back","nth","position","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","write","write","Error","FallibleStreamingIterator","FileWriter","Item","Serializer","__clone_box","advance","advance","all","any","borrow","borrow","borrow_mut","borrow_mut","by_ref","clone","clone_into","count","filter","find","fmt","for_each","from","from","fuse","get","get","into","into","into_inner","into_iter","map","map_err","map_ref","new","new","next","next","nth","position","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","read","write","ArrayIter","BasicDecompressor","Boolean","Bson","Bson","ByteArray","ColumnChunkMetaData","ColumnDescriptor","CompressedDataPage","Data","DataPageHeader","Date","Date","Decimal","Decimal","Decompressor","Dict","Double","Enum","Enum","Error","Error","FallibleStreamingIterator","FeatureNotActive","FeatureNotSupported","FileMetaData","FileReader","Finished","FixedLenByteArray","Float","GroupLogicalType","GroupType","InitNested","Int16","Int32","Int32","Int64","Int64","Int8","Int96","Integer","Interval","InvalidParameter","Item","Item","Json","Json","List","List","Map","Microseconds","Milliseconds","MutStreamingIterator","Nanoseconds","NestedArrayIter","NestedState","OutOfSpec","Page","PageFilter","PageReader","Pages","ParquetError","ParquetTimeUnit","ParquetType","PhysicalType","Primitive","PrimitiveConvertedType","PrimitiveLogicalType","PrimitiveType","ReadColumnIterator","RowGroupDeserializer","RowGroupMetaData","RowGroupReader","Some","State","String","Struct","StructIterator","Time","TimeMicros","TimeMillis","Timestamp","TimestampMicros","TimestampMillis","Uint16","Uint32","Uint64","Uint8","Unknown","Utf8","Uuid","V1","V2","WouldOverAllocate","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_read_columns_indexes","_read_metadata","_read_metadata_async","advance","advance","advance","advance","advance","all","any","base_type","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","byte_range","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","column_chunk","column_encoding","column_iter_to_arrays","column_orders","columns","compressed_size","compressed_size","compression","count","create_list","create_map","created_by","data_page_offset","decompress","descriptor","descriptor","dictionary_page_offset","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","fallible_streaming_iterator","file_offset","file_path","filter","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get_column_iterator","get_field_columns","get_field_pages","get_page_iterator","get_page_stream","has_index_page","hash","hash","hash","hash","index_page_offset","indexes","infer_schema","init_nested","int96_to_i64_ns","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_buffers","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_thrift","key_value_metadata","len","map","map_err","map_ref","metadata","n_columns","nested","new","new","new","new","new","new","new","new","new","new","new","new","new_with_page_meta","next","next","next","next","next","next","nth","num_rows","num_rows","num_rows","num_values","num_values","path_in_schema","physical_type","position","provide","read_columns","read_columns_async","read_columns_many","read_columns_many_async","read_metadata","read_metadata_async","read_pages_locations","row_groups","schema","schema","schema_descr","size_hint","size_hint","skip","skip_while","statistics","statistics","swap_buffer","take","take_while","to_deserializer","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","total_byte_size","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uncompressed_size","version","converted_type","field_info","fields","logical_type","is_adjusted_to_utc","is_adjusted_to_utc","unit","unit","ColumnPageStatistics","FieldPageStatistics","FilteredPage","Interval","Multiple","Single","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","compute_page_row_intervals","eq","eq","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","has_indexes","hash","hash","into","into","into","into","length","length","max","min","new","null_count","num_rows","read_columns_indexes","read_filtered_pages","selected_rows","start","start","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","FileMetaData","GroupType","KeyValue","ParquetType","PrimitiveType","SchemaDescriptor","column_orders","created_by","infer_schema","key","key_value_metadata","num_rows","parquet_to_arrow_schema","read_schema_from_metadata","row_groups","schema_descr","value","version","converted_type","field_info","fields","logical_type","Statistics","borrow","borrow_mut","deserialize","distinct_count","eq","fmt","from","into","max_value","min_value","null_count","try_from","try_into","type_id","BitPacked","Boolean","Brotli","BrotliLevel","ByteArray","ByteStreamSplit","CompressedDataPage","CompressedPage","CompressionOptions","Compressor","Data","Data","DeltaBinaryPacked","DeltaByteArray","DeltaLengthByteArray","Descriptor","Dict","Dict","Double","DynIter","DynStreamingIterator","Encoding","Error","FallibleStreamingIterator","FieldInfo","FileMetaData","FileSink","FileWriter","FixedLenByteArray","Float","GroupType","Gzip","GzipLevel","Int32","Int64","Int96","Item","KeyValue","LargeList","List","Lz4","Lz4Raw","Lzo","Nested","Page","ParquetPhysicalType","ParquetType","Plain","PlainDictionary","Primitive","PrimitiveType","Rle","RleDictionary","RowGroupIter","RowGroupIterator","SchemaDescriptor","Snappy","Struct","ThriftFileMetaData","Uncompressed","V1","V2","Version","WriteOptions","Zstd","ZstdLevel","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","advance","advance","advance","all","any","array_to_columns","array_to_page","array_to_page_simple","array_to_pages","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer_mut","by_ref","can_encode","check_contains","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","column_order","column_orders","column_orders","columns","compress","compressed_size","compression","compression","compression_level","compression_level","compression_level","count","created_by","created_by","data_pagesize_limit","default","default","default","encryption_algorithm","end","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fallible_streaming_iterator","fields","filter","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","footer_signing_key_metadata","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_converted","from_group","from_physical","fuse","get","get","get","get_field_info","get_max_length","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","header","id","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_inner","into_inner","into_inner_and_metadata","into_iter","into_iter","into_thrift","is_compressed","key","key_value_metadata","key_value_metadata","key_value_metadata","len","map","map_err","map_ref","max_def_level","max_rep_level","metadata","name","name","name","new","new","new","new","new","new","new","new_from_vec","next","next","next","nth","num_rows","num_rows","num_values","num_values","options","options","parquet_schema","parquet_schema","parquet_schema","partial_cmp","partial_cmp","poll_close","poll_flush","poll_ready","position","primitive_type","read_from_in_protocol","read_from_in_protocol","read_from_in_protocol","read_from_in_protocol","repetition","row_group_iter","row_groups","row_groups","schema","schema","schema","schema","schema_descr","select_rows","selected_rows","size_hint","size_hint","size_hint","skip","skip_while","slice_nested_leaf","slice_parquet_array","start_send","statistics","stream_from_in_protocol","stream_from_in_protocol","stream_from_in_protocol","stream_from_in_protocol","take","take_while","to_leaves","to_nested","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_parquet_leaves","to_parquet_schema","to_parquet_type","transverse","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_message","try_from_primitive","try_from_thrift","try_from_thrift","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_new","try_new","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uncompressed_size","value","version","version","version","write","write_def_levels","write_metadata_sidecar","write_rep_and_def","write_statistics","write_to_out_protocol","write_to_out_protocol","write_to_out_stream_protocol","write_to_out_stream_protocol","converted_type","field_info","fields","logical_type","mmap_dictionaries_unchecked","mmap_unchecked","Offset","Offsets","OffsetsBuffer","__clone_box","__clone_box","as_slice","as_slice","borrow","borrow","borrow_mut","borrow_mut","buffer","capacity","clone","clone","clone_into","clone_into","default","default","deref","eq","eq","equivalent","extend_constant","first","fmt","fmt","from","from","from","from","from","into","into","into_inner","into_inner","into_mut","last","last","len","len","len_proxy","len_proxy","lengths","new","new","new_unchecked","new_unchecked","new_zeroed","pop","range","reserve","shrink_to_fit","slice","slice_unchecked","start_end","start_end","start_end_unchecked","start_end_unchecked","to_owned","to_owned","try_extend_from_lengths","try_extend_from_self","try_extend_from_slice","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_iter","try_from_lengths","try_into","try_into","try_push","try_push_usize","type_id","type_id","with_capacity","BinaryScalar","BooleanScalar","DictionaryScalar","FixedSizeBinaryScalar","FixedSizeListScalar","ListScalar","MapScalar","NullScalar","PrimitiveScalar","Scalar","StructScalar","UnionScalar","Utf8Scalar","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","default","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","new","new","new","new","new","new","new","new","new","new","new","new","new_scalar","to","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value","value","value","value","value","value","value","values","values","values","values","EPOCH_DAYS_FROM_CE","MICROSECONDS","MILLISECONDS","MILLISECONDS_IN_DAY","NANOSECONDS","SECONDS_IN_DAY","add_interval","add_naive_interval","date32_to_date","date32_to_datetime","date64_to_date","date64_to_datetime","parse_offset","time32ms_to_time","time32s_to_time","time64ns_to_time","time64us_to_time","timestamp_ms_to_datetime","timestamp_ns_to_datetime","timestamp_s_to_datetime","timestamp_to_datetime","timestamp_to_naive_datetime","timestamp_us_to_datetime","timeunit_scale","utf8_to_naive_timestamp_ns","utf8_to_naive_timestamp_ns_scalar","utf8_to_naive_timestamp_scalar","utf8_to_timestamp_ns","utf8_to_timestamp_ns_scalar","utf8_to_timestamp_scalar","TrustedLen","BitChunk","BitChunkIter","BitChunkOnes","Bytes","DaysMs","EPSILON","Float16","Float32","Float64","IS_LARGE","Index","IndexRange","Int128","Int16","Int256","Int32","Int64","Int8","MonthDayNano","NativeType","Offset","PRIMITIVE","PrimitiveType","UInt16","UInt32","UInt64","UInt8","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","days","days","days_ms","default","default","default","default","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","f16","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_as_usize","from_be_bytes","from_be_bytes","from_be_bytes","from_be_bytes","from_be_bytes","from_bits","from_f32","from_le_bytes","from_le_bytes","from_le_bytes","from_le_bytes","from_le_bytes","from_ne_bytes","from_usize","from_words","hash","hash","hash","hash","i256","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","is_valid_bit_pattern","is_valid_bit_pattern","is_valid_bit_pattern","is_valid_bit_pattern","milliseconds","months","months_days_ns","neg","neg","neg","new","new","new","new","new","next","next","next","ns","partial_cmp","range","range","simd","size_hint","size_hint","size_hint","to_be_bytes","to_be_bytes","to_be_bytes","to_be_bytes","to_be_bytes","to_bits","to_f32","to_le_bytes","to_le_bytes","to_le_bytes","to_le_bytes","to_le_bytes","to_ne_bytes","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_usize","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","Chunk","FromMaskChunk","LANES","Mask","Native","NativeSimd","Simd","Simd","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","align","align","align","align","align","align","align","align","align","align","align","align","align","align","align","align","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","days_msx8","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","f16x32","f32x16","f64x8","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","i128x8","i16x32","i256x8","i32x16","i64x8","i8x64","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","months_days_nsx8","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","select","select","select","select","select","select","select","select","select","select","select","select","select","select","select","select","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","u16x32","u32x16","u64x8","u8x64","lexical_to_bytes","lexical_to_bytes_mut","lexical_to_string"],"q":[[0,"arrow2"],[172,"arrow2::array"],[1535,"arrow2::array::growable"],[1711,"arrow2::array::ord"],[1716,"arrow2::bitmap"],[1857,"arrow2::bitmap::utils"],[2004,"arrow2::buffer"],[2052,"arrow2::chunk"],[2075,"arrow2::compute"],[2089,"arrow2::compute::aggregate"],[2117,"arrow2::compute::arithmetics"],[2174,"arrow2::compute::arithmetics::basic"],[2218,"arrow2::compute::arithmetics::decimal"],[2236,"arrow2::compute::arithmetics::time"],[2244,"arrow2::compute::arity"],[2252,"arrow2::compute::arity_assign"],[2254,"arrow2::compute::boolean"],[2263,"arrow2::compute::boolean_kleene"],[2269,"arrow2::compute::cast"],[2342,"arrow2::compute::comparison"],[2389,"arrow2::compute::comparison::binary"],[2405,"arrow2::compute::comparison::boolean"],[2422,"arrow2::compute::comparison::primitive"],[2439,"arrow2::compute::comparison::utf8"],[2455,"arrow2::compute::concatenate"],[2456,"arrow2::compute::filter"],[2460,"arrow2::compute::if_then_else"],[2461,"arrow2::compute::like"],[2469,"arrow2::compute::substring"],[2471,"arrow2::compute::take"],[2473,"arrow2::datatypes"],[2692,"arrow2::error"],[2721,"arrow2::ffi"],[2771,"arrow2::ffi::mmap"],[2773,"arrow2::io"],[2777,"arrow2::io::ipc"],[2813,"arrow2::io::ipc::read"],[2936,"arrow2::io::ipc::read::OutOfSpecKind"],[2946,"arrow2::io::ipc::write"],[3020,"arrow2::io::ipc::write::file_async"],[3033,"arrow2::io::ipc::write::stream_async"],[3064,"arrow2::io::json"],[3065,"arrow2::io::json::write"],[3251,"arrow2::io::ndjson"],[3252,"arrow2::io::ndjson::write"],[3304,"arrow2::io::parquet"],[3306,"arrow2::io::parquet::read"],[3744,"arrow2::io::parquet::read::ParquetType"],[3748,"arrow2::io::parquet::read::PrimitiveLogicalType"],[3752,"arrow2::io::parquet::read::indexes"],[3821,"arrow2::io::parquet::read::schema"],[3839,"arrow2::io::parquet::read::schema::ParquetType"],[3843,"arrow2::io::parquet::read::statistics"],[3858,"arrow2::io::parquet::write"],[4382,"arrow2::io::parquet::write::ParquetType"],[4386,"arrow2::mmap"],[4388,"arrow2::offset"],[4468,"arrow2::scalar"],[4714,"arrow2::temporal_conversions"],[4744,"arrow2::trusted_len"],[4745,"arrow2::types"],[4943,"arrow2::types::simd"],[5340,"arrow2::util"]],"d":["A HashMap using RandomState to hash the items. (Requires …","The enum Either with variants Left and Right is a general …","A value of type L.","A value of type R.","","","","","Contains the Array and MutableArray trait objects …","","","","","","Convert &mut Either<L, R> to Either<&mut L, &mut R>.","","Convert Pin<&mut Either<L, R>> to …","Convert Pin<&Either<L, R>> to Either<Pin<&L>, Pin<&R>>, …","","Convert &Either<L, R> to Either<&L, &R>.","","","","","","contains Bitmap and MutableBitmap, containers of bool.","","","","","Contains Buffer, an immutable container for all Arrow …","","Contains Chunk, a container of Array where every array has …","","","","","","","","contains a wide range of compute operations (e.g. …","","","Contains all metadata, such as PhysicalType, DataType, …","","","","","","","Apply one of two functions depending on contents, unifying …","Convert the contained value into T","Like either, but provide some context to whichever of the …","","","","","Defines Error, representing all errors returned by this …","Returns the left value","Returns the right value","","","","Factors out a homogenous type from an Either of Result.","Factor out a homogeneous type from an either of pairs.","Factors out None from an Either of Option.","Factors out a homogenous type from an Either of Result.","Factor out a homogeneous type from an either of pairs.","contains FFI bindings to import and export Array via Arrow…","","","","Convert Either<L, R> to Either<R, L>.","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Examples","This crates a hashmap from the provided iterator using …","Returns a reference to the value corresponding to the key.","Returns the key-value pair corresponding to the supplied …","Returns a mutable reference to the value corresponding to …","","Returns a reference to the value corresponding to the …","Inserts a key-value pair into the map.","Calls U::from(self).","","Calls U::from(self).","","","Extract the value of an either over two equivalent types.","Convert the inner value to an iterator.","","","","","Creates a consuming iterator visiting all the keys in …","Creates a consuming iterator visiting all the values in …","Contains modules to interface with other formats such as […","Return true if the value is the Left variant.","Return true if the value is the Right variant.","","Convert the left side of Either<L, R> to an Option<L>.","Apply the function f on the value in the Left variant if …","Return left value or given value","Return left or a default","Returns left value or computes it from a closure","","Map f over the contained value and return the result in the","Apply the functions f and g to the Left and Right variants …","Similar to [map_either], with an added context ctx …","Apply the function f on the value in the Left variant if …","Apply the function f on the value in the Right variant if …","Memory maps regions defined on the IPC format into Array.","This crates a hashmap using RandomState::new which obtains …","","","","Contains the declaration of Offset","","","","","","","","","","","","","Removes a key from the map, returning the value at the key …","","","Convert the right side of Either<L, R> to an Option<R>.","Apply the function f on the value in the Right variant if …","Return right value or given value","Return right or a default","Returns right value or computes it from a closure","contains the Scalar trait object representing individual …","","","","Conversion methods for dates and times.","","","","Declares TrustedLen.","","","","","","","","Sealed traits and implementations to handle all physical …","Returns the left value","Returns the right value","Misc utilities used in different places in the crate.","This crates a hashmap with the specified capacity using …","","","","","","","A trait representing an immutable Arrow array. Arrow …","Iterator of values of an ArrayAccessor.","A BinaryArray is Arrow’s semantically equivalent of an …","Iterator of values of an BinaryArray.","A BooleanArray is Arrow’s semantically equivalent of an …","A type definition PrimitiveArray for days_ms","A type definition MutablePrimitiveArray for days_ms","An Array whose values are stored as indices. This Array is …","Trait denoting NativeTypes that can be used as keys of a …","The Arrow’s equivalent to an immutable …","The Arrow’s equivalent to an immutable …","A type definition PrimitiveArray for f16","A type definition MutablePrimitiveArray for f16","A type definition PrimitiveArray for f32","A type definition MutablePrimitiveArray for f32","A type definition PrimitiveArray for f64","A type definition MutablePrimitiveArray for f64","Trait that BinaryArray and Utf8Array implement for the …","A type definition PrimitiveArray for i128","A type definition MutablePrimitiveArray for i128","A type definition PrimitiveArray for i16","A type definition MutablePrimitiveArray for i16","A type definition PrimitiveArray for i256","A type definition MutablePrimitiveArray for i256","A type definition PrimitiveArray for i32","A type definition MutablePrimitiveArray for i32","A type definition PrimitiveArray for i64","A type definition MutablePrimitiveArray for i64","A type definition PrimitiveArray for i8","A type definition MutablePrimitiveArray for i8","The corresponding IntegerType of this key","An Array semantically equivalent to …","Iterator of values of a ListArray.","An array representing a (key, value), both of arbitrary …","A type definition PrimitiveArray for months_days_ns","A type definition MutablePrimitiveArray for months_days_ns","A trait describing a mutable array; i.e. an array whose …","The Arrow’s equivalent to Vec<Option<Vec<u8>>>. …","A MutableArray that builds a BinaryArray. It differs from …","The Arrow’s equivalent to Vec<Option<bool>>, but with …","A mutable, strong-typed version of DictionaryArray.","The Arrow’s equivalent to a mutable …","The mutable version of FixedSizeListArray.","The mutable version of ListArray.","A distinct type to disambiguate clashing methods","The Arrow’s equivalent to Vec<Option<T>> where T is …","Converting a MutableStructArray into a StructArray is O(1).","A MutableArray that builds a Utf8Array. It differs from …","A MutableArray that builds a Utf8Array. It differs from …","The concrete Array of DataType::Null.","A PrimitiveArray is Arrow’s semantically equivalent of …","A trait describing the ability of a struct to receive new …","A StructArray is a nested Array with an optional validity …","A trait describing the ability of a struct to create …","A trait describing the ability of a struct to extend from …","A trait describing the ability of a struct to receive new …","A type definition PrimitiveArray for u16","A type definition MutablePrimitiveArray for u16","A type definition PrimitiveArray for u32","A type definition MutablePrimitiveArray for u32","A type definition PrimitiveArray for u64","A type definition MutablePrimitiveArray for u64","A type definition PrimitiveArray for u8","A type definition MutablePrimitiveArray for u8","UnionArray represents an array whose each slot can contain …","A Utf8Array is arrow’s semantic equivalent of an …","Iterator of values of an Utf8Array.","","","","","","","","","","","","","","","","","","","","","","","","","","If the key type always can be converted to usize.","If the key type always can be converted to usize.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the values of this array, cloning …","Applies a function f to the values of this array, cloning …","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Converts itself to a reference of Any, which enables …","Convert to Any, to enable dynamic casting.","","","","","","","","","","","","","","","","","","","","","","","","","Converts itself to a mutable reference of Any, which …","","","","","","","","","","","","","Convert itself to an (immutable) atomically reference …","","","","","","","","","","","","Convert itself to an (immutable) Array.","","","","","","","","","","","","","Convert to mutable Any, to enable dynamic casting.","","","","","","","","","","","","","","Represents this key as a usize.","Represents this key as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Returns the capacity in number of items","Returns the capacity of this array","Returns the capacity of this MutablePrimitiveArray.","Reserves additional elements and additional_values on the …","Returns the capacity in number of items","","","","","","","","","","","","","","","Clones a dynamic Array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The DataType of the Array. In combination with …","The DataType of the array.","","","","Returns the DataType of this array.","","","Returns the arrays’ DataType.","","","Returns the DataType of this DictionaryArray","","","","","","","","","","","","Returns the arrays’ DataType.","","","","","","","Returns the DataType of this array.","","","","","","","","","","","Returns the default DataType of this container: …","Returns the default DataType, DataType::Binary or …","Returns the default DataType of this container: …","Returns a default DataType of this array, which depends on …","Returns a DataType consistent with FixedSizeListArray.","Returns a default DataType: inner field is named “item”…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Logically compares two Arrays. Two arrays are logically …","","","","","","","Extends the MutablePrimitiveArray with a constant","Extends the MutablePrimitiveArray from a slice","Extends the MutableBinaryValuesArray from a TrustedLen","Extends the MutableBinaryArray from an iterator of …","Extends the MutableBooleanArray from an iterator of …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of trusted …","Extends the MutableUtf8ValuesArray from a TrustedLen","Extends MutableBinaryValuesArray from an iterator of …","Extends the MutableBinaryArray from an iterator of …","Extends the MutableBooleanArray from an iterator of …","Extends the MutablePrimitiveArray from an iterator of …","Extends MutableUtf8Array from an iterator of trusted len.","Extends MutableUtf8ValuesArray from an iterator of trusted …","Extends the MutableBinaryArray from an iterator of trusted …","Extends the MutableBooleanArray from an iterator of values …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of values of …","Extends the MutableBinaryArray from an iterator of values …","Extends the MutableBooleanArray from an iterator of values …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of values of …","Extends the MutableBinaryArray from an iterator of values. …","Extends the MutableUtf8Array from an iterator of values. …","Returns the field (guaranteed to be a Struct)","Returns the fields of this StructArray.","The fields.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Creates a new MutableBinaryArray from a slice of optional …","Returns the argument unchanged.","","","","Creates a new BinaryArray from a slice of optional &[u8].","Returns the argument unchanged.","","Creates a new MutableBooleanArray out of a slice of …","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Creates a new MutableFixedSizeBinaryArray from a slice of …","Returns the argument unchanged.","Creates a new FixedSizeBinaryArray from a slice of …","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Creates a new MutableUtf8Array from a slice of optional …","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns a new Utf8Array from a slice of &str.","Returns the argument unchanged.","Returns the argument unchanged.","Creates a [PrimitiveArray] from its internal …","Creates a [BooleanArray] from its internal representation. …","Creates a [PrimitiveArray] from its internal …","","","","","","Creates a FixedSizeBinaryArray from an iterator of …","","","","","","Creates a new MutableBinaryArray from a Iterator of &[u8].","Returns a new BinaryArray from a Iterator of &[u8].","Creates a new MutableUtf8Array from a Iterator of &str.","Creates a new Utf8Array from a Iterator of &str.","Creates a new BinaryArray from slices of &[u8].","Creates a new MutableBooleanArray from a slice of bool.","Creates a new BooleanArray from a slice of bool.","Creates a FixedSizeBinaryArray from a slice of arrays of …","Creates a MutablePrimitiveArray from a slice of values.","Creates a (non-null) PrimitiveArray from a slice of values.","Returns a Utf8Array from a slice of &str.","Creates a MutableBinaryValuesArray from a TrustedLen","Creates a MutableBinaryArray from an iterator of trusted …","Creates a BinaryArray from a TrustedLen","Creates a BooleanArray from a TrustedLen.","Creates a BooleanArray from a TrustedLen.","Creates a MutablePrimitiveArray from a TrustedLen.","Creates a PrimitiveArray from a TrustedLen of optional …","Creates a MutableUtf8Array from an iterator of trusted …","Creates a MutableUtf8ValuesArray from a TrustedLen","Creates a Utf8Array from an iterator of trusted length.","Returns a new MutableBinaryValuesArray from an iterator of …","Creates a MutableBinaryArray from an iterator of trusted …","Creates a BinaryArray from an iterator of trusted length.","Creates a BooleanArray from an iterator of trusted length. …","Creates a BooleanArray from an iterator of trusted length. …","Creates a MutablePrimitiveArray from an iterator of …","Creates a PrimitiveArray from an iterator of optional …","Creates a MutableUtf8Array from an iterator of trusted …","Returns a new MutableUtf8ValuesArray from an iterator of …","Creates a Utf8Array from an iterator of trusted length.","Creates a new BinaryArray from a TrustedLen of &[u8].","Returns a BinaryArray from an iterator of trusted length.","Creates a new MutableBooleanArray from an TrustedLen of …","Creates a new BooleanArray from an TrustedLen of bool.","Creates a new MutablePrimitiveArray out an iterator over …","Creates a (non-null) PrimitiveArray from a TrustedLen of …","Creates a new MutableUtf8Array from a TrustedLen of &str.","Returns a (non-null) Utf8Array created from a TrustedLen …","Creates a new BinaryArray from a TrustedLen of &[u8].","Creates a new MutableBooleanArray from an TrustedLen of …","Creates a new BooleanArray from an TrustedLen of bool. Use …","Creates a new MutablePrimitiveArray from an iterator over …","Creates a new PrimitiveArray from an iterator over values","Creates a MutableUtf8Array from an iterator of trusted …","Creates a (non-null) PrimitiveArray from an iterator of …","Creates a (non-null) MutablePrimitiveArray from a vector …","Creates a (non-null) PrimitiveArray from a vector of …","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns a the inner Field","Returns a the inner DataType","Returns a function that writes the element of array at …","Returns the fields the DataType::Struct.","Returns all fields from DataType::Union.","Returns an option of a mutable reference to the values of …","Returns a function that writes the value of the element of …","Contains the trait Growable and corresponding concreate …","Returns the index and slot of the field to select from …","Returns the index and slot of the field to select from …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts itself into an Array.","Converts itself into an Array.","converts itself into Arc<dyn Array>","Converts itself into an Array.","Converts itself into an Array.","Converts itself into an Array.","Converts itself into an Array.","converts itself into Box<dyn Array>","converts itself into Box<dyn Array>","Deconstructs the StructArray into its individual …","Extract the low-end APIs from the MutableUtf8Array.","Extract the low-end APIs from the MutableBinaryValuesArray.","Returns its internal representation","Returns its internal representation","Extract the low-end APIs from the MutablePrimitiveArray.","Returns its internal representation","Extract the low-end APIs from the MutableStructArray.","Extract the low-end APIs from the MutableUtf8ValuesArray.","Returns its internal representation","","","","","","","","","","","","","","","","","","","","Try to convert this BinaryArray to a MutableBinaryArray","Try to convert this BooleanArray to a MutableBooleanArray","Try to convert this PrimitiveArray to a …","Try to convert this Utf8Array to a MutableUtf8Array","whether the array is empty","Whether the array is empty.","Returns whether slot i is null.","Returns whether the values of this DictionaryArray are …","Returns whether the DataType::Union is sparse or not.","Returns whether slot i is valid.","Whether index is valid / set.","Returns an iterator of &[u8]","Returns an iterator of Option<&[u8]>","Returns an iterator of Option<&[u8]> over every element of …","Returns an iterator over the optional values of this …","Returns an iterator over the optional values of this …","Returns an iterator of Option<Box<dyn Scalar>>.","constructs a new iterator","constructs a new iterator","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator over Option<T>","Returns an iterator over the values and validity, …","Returns an iterator of Option<Box<dyn Array>>","constructs a new iterator","Returns an iterator of Option<&str>","Returns an iterator of &str","Returns an iterator of Option<&str>","Returns an iterator over the the optional values of …","Returns iterator over the values of …","Returns the keys’ value of the DictionaryArray as usize","Returns the dictionary keys","Returns the keys of the DictionaryArray. These keys can be …","Returns an iterator of the keys’ of the DictionaryArray …","Returns an iterator of the keys’ values of the …","The length of the Array. Every array has a length …","The length of the array.","","Returns the length of this array","","","Returns the length of this array","","","Returns the length of this array","","Returns the length of this array","","","Returns the length of this array","Returns the length of this array","","","The length of this array","","Returns the length of this array","Returns the length of this array","","","Returns the length of this array","Returns the length of this array","","","","","Returns the length of this array","","","","","Returns the length of this array","Returns the length of this array","","Returns the length of this array","","","Returns the length of this array","Returns the dictionary map","","","","The values as a mutable reference","The values","The mutable values","Returns an empty MutableBinaryValuesArray.","Creates a new empty MutableBinaryArray.","Alias for unwrapping Self::try_new","Creates an new empty MutableBooleanArray.","Alias to Self::try_new().unwrap()","Creates an empty MutableDictionaryArray.","Creates a new empty MutableFixedSizeBinaryArray.","Creates a new FixedSizeBinaryArray.","Creates a new MutableFixedSizeListArray from a MutableArray…","Alias to Self::try_new(...).unwrap()","Creates a new empty MutableListArray.","Creates a new ListArray.","Creates a new MapArray.","Returns a new NullArray.","Returns a new MutableNullArray.","Creates a new empty MutablePrimitiveArray.","Alias for Self::try_new(..).unwrap().","Creates a new MutableStructArray.","Returns a new StructArray","Returns a new UnionArray.","Initializes a new empty MutableUtf8Array.","Returns an empty MutableUtf8ValuesArray.","Creates a new Utf8Array.","Creates a new ArrayValuesIter","Creates an empty BinaryArray, i.e. whose .len is zero.","Returns a new empty BooleanArray.","Returns a new empty DictionaryArray.","Returns a new empty FixedSizeBinaryArray.","Returns a new empty FixedSizeListArray.","Returns a new empty ListArray.","Returns a new empty MapArray.","Returns a new empty NullArray.","Returns a new empty (zero-length) PrimitiveArray.","Creates an empty StructArray.","Creates a new empty UnionArray.","Returns a new empty Utf8Array.","Creates a new Array with a Array::len of 0.","Creates a new MutableFixedSizeListArray from a MutableArray…","Creates a new MutableListArray from a MutableArray and …","Creates a new MutableListArray from a MutableArray, Offsets…","Creates an null BinaryArray, i.e. whose …","Returns a new BooleanArray whose all slots are null / None.","Returns an DictionaryArray whose all elements are null","Returns a new null FixedSizeBinaryArray.","Returns a new null FixedSizeListArray.","Returns a new null ListArray.","Returns a new null MapArray of length.","Returns a new NullArray.","Returns a new PrimitiveArray where all slots are null / …","Creates a null StructArray of length length.","Creates a new null UnionArray.","Returns a new Utf8Array whose all slots are null / None.","Creates a new Array of DataType data_type and length. The …","Create a MutableUtf8Array out of low-end APIs.","Returns a MutableUtf8ValuesArray created from its internal …","Creates a new Utf8Array without checking for offsets …","Creates a new MutableListArray from a MutableArray and …","Creates a new MutableFixedSizeListArray from a MutableArray…","Creates a new MutableListArray from a MutableArray.","","","","The number of null slots on this Array.","The offsets of the array","returns its offsets.","returns its offsets.","Returns the offsets of this BinaryArray.","","The offsets","The offsets [Buffer].","returns the offsets","The optional offsets.","returns its offsets.","returns its offsets.","","Returns the offsets of this Utf8Array.","Contains functions and function factories to order values …","","","","","","","Pop the last entry from MutableBinaryValuesArray. This …","Pop the last entry from MutableBinaryArray. This function …","Pop an entry from MutableBooleanArray. Note If the values …","Pop the last entry from MutableFixedSizeBinaryArray. This …","Pop a value from the array. Note if the values is empty, …","Pop the last entry from MutableUtf8Array. This function …","Pop the last entry from MutableUtf8ValuesArray. This …","Pushes a new item to the array.","Pushes a new element to the array.","Pushes a new entry to MutableBooleanArray.","pushes a new entry to MutableFixedSizeBinaryArray.","Adds a new value to the array.","Call this once for each “row” of children you push.","Pushes a new element to the array.","Pushes a new item to the array.","Adds a new null element to the array.","","","","pushes a null value","","","","","","","","","","Push a new element that holds the invariants of the struct.","Safety","Needs to be called when a valid value was extended to this …","","","Reserves additional slots to its capacity.","Reserves additional elements and additional_values on the …","","","Reserves additional elements and additional_values on the …","","Reserves additional slots.","Reserves additional slots.","","","Reserves additional slots.","Reserves additional slots.","","","Reserves additional slots.","","","Reserves additional entries.","","Reserves additional entries.","","Reserves additional elements and additional_values on the …","Reserves additional elements and additional_values on the …","","","","","","","","","","","Sets position index to value. Note that if it is the first …","Sets position index to value. Note that if it is the first …","Sets position index to value. Note that if it is the first …","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of the keys of this DictionaryArray.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity.","Sets the validity of this array.","Sets the values of this BooleanArray.","Sets values.","Update the values of this PrimitiveArray.","Shrink the array to fit its length.","","Shrinks the capacity of the MutableBinaryValuesArray to …","Shrinks the capacity of the MutableBinaryArray to fit its …","","","Shrinks the capacity of the MutableBooleanArray to fit its …","Shrinks the capacity of the MutableDictionaryArray to fit …","","","Shrinks the capacity of the MutableFixedSizeBinaryArray to …","Shrinks the capacity of the MutableFixedSizeListArray to …","","","Shrinks the capacity of the MutableListArray to fit its …","","","Shrinks the capacity of the MutablePrimitiveArray to fit …","","Shrinks the capacity of the MutableStructArray to fit its …","Shrinks the capacity of the MutableUtf8Array to fit its …","","Shrinks the capacity of the MutableUtf8ValuesArray to fit …","","returns the (fixed) size of the MutableFixedSizeBinaryArray…","Returns the size","Returns the size (number of elements per slot) of this …","Returns the size (number of elements per slot) of this …","","Slices this Array.","Slices this BinaryArray.","","","Slices this BooleanArray.","","Slices this DictionaryArray.","","Slices this FixedSizeBinaryArray.","","Slices this FixedSizeListArray.","","Slices this ListArray.","","Returns a slice of this MapArray.","Returns a slice of the NullArray.","","Slices this PrimitiveArray by an offset and length.","","","Slices this StructArray.","","Returns a slice of this UnionArray.","Slices this Utf8Array.","","Slices the Array.","","Slices this BinaryArray.","Slices this BooleanArray.","","Slices this DictionaryArray.","","","Slices this FixedSizeBinaryArray.","","Slices this FixedSizeListArray.","Slices this ListArray.","","","Returns a slice of this MapArray.","","Returns a slice of the NullArray.","","Slices this PrimitiveArray by an offset and length.","Slices this StructArray.","","Returns a slice of this UnionArray.","","","Slices this Utf8Array.","Returns a slice of this Array.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns a slice of this Array.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","","","","Returns a new FixedSizeBinaryArray with a different …","Changes the arrays’ DataType, returning a new …","Returns a new PrimitiveArray with a different logical type.","Clone a &dyn Array to an owned Box<dyn Array>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Fallible version of Extend::extend.","","","This is infalible and is implemented for consistency with …","","","","This is infalible and is implemented for consistency with …","","","Expand this array, using elements from the underlying …","Tries to extend itself with elements from other, failing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a new MutableBinaryValuesArray from an iterator.","Creates a new MutableFixedSizeBinaryArray from an iterator …","Creates a FixedSizeBinaryArray from an fallible iterator …","Returns a new MutableUtf8ValuesArray from an iterator.","Returns a new DictionaryArray.","Creates a MutableBinaryArray from an falible iterator of …","Creates a BinaryArray from an fallible iterator of trusted …","Creates a BooleanArray from a TrustedLen.","Creates a BooleanArray from a TrustedLen.","Creates a MutablePrimitiveArray from an fallible iterator …","Creates a MutableUtf8Array from an falible iterator of …","Creates a Utf8Array from an fallible iterator of trusted …","Creates a MutableBinaryArray from an falible iterator of …","Creates a BinaryArray from an falible iterator of trusted …","Creates a BooleanArray from an falible iterator of trusted …","Creates a BooleanArray from an falible iterator of trusted …","Creates a MutablePrimitiveArray from an fallible iterator …","Creates a MutableUtf8Array from an falible iterator of …","Creates a Utf8Array from an falible iterator of trusted …","Returns a the inner Field","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a MutableBinaryValuesArray created from its …","Returns a MutableBinaryArray created from its internal …","Returns a BinaryArray created from its internal …","The canonical method to create a MutableBooleanArray out …","The canonical method to create a BooleanArray out of …","Returns a new DictionaryArray.","Creates a new MutableFixedSizeBinaryArray.","Creates a new FixedSizeBinaryArray.","Creates a new FixedSizeListArray.","Creates a new ListArray.","Returns a new MapArray.","Returns a new NullArray.","The canonical method to create a MutablePrimitiveArray out …","The canonical method to create a PrimitiveArray out of its …","Create a MutableStructArray out of low-end APIs.","Returns a new StructArray.","Returns a new UnionArray.","Returns a MutableUtf8Array created from its internal …","Returns a MutableUtf8ValuesArray created from its internal …","Returns a Utf8Array created from its internal …","Returns a new DictionaryArray.","Creates a new Utf8Array without checking for offsets …","Tries to push a new element.","","","This is infalible and is implemented for consistency with …","","tries to push a new entry to MutableFixedSizeBinaryArray.","","","This is infalible and is implemented for consistency with …","","","Needs to be called when a valid value was extended to this …","Needs to be called when a valid value was extended to this …","","","","","","","","","","","","","","","","","","","","","","","","","","The types.","The validity of the Array: every array has an optional …","The optional validity of the array.","","","","The optional validity.","","","Returns the optional validity.","","","The optional validity. Equivalent to self.keys().validity()…","","","The optional validity.","","The optional validity.","","","The optional validity.","","","","","","Returns the optional validity.","","","","The optional validity.","","","","","The optional validity.","Returns the value of the element at index i.","Returns the element at index i","Returns the value at index i","Returns the value of the DictionaryArray at position i.","Returns the element at index i as &[u8]","Returns value at position i.","Returns the Vec<T> at position i.","Returns the element at index i","Returns the element at index i.","Returns the value at slot i.","Return the ith child array.","Returns the slot index as a Scalar.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the element at index i","Returns the element at index i as bool","Returns the element at index i as &[u8]","Returns the element at index i as &str","Returns the Vec<T> at position i.","Returns the element at index i as &str","Returns the element at index i.","Returns the value at index i. The value on null slots is …","Returns the slot index as a Scalar.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the value of the element at index i, ignoring the …","The values of the array","returns its values.","returns its values.","Returns the values of this BinaryArray.","","Returns its values.","The values Bitmap. Values on null slots are undetermined …","returns a reference to the inner values.","Returns the values of the DictionaryArray.","Returns its values.","Returns the values allocated on this FixedSizeBinaryArray.","The inner values","Returns the inner array.","The values","The values.","Returns its values.","The values Buffer. Values on null slots are undetermined …","The values","Returns the values of this StructArray.","returns its values.","returns its values.","","Returns the values of this Utf8Array.","Returns an iterator over the values of this array","Returns an iterator of &[u8] over every element of this …","Returns an iterator over the values of this …","Returns an iterator over the values of this BooleanArray.","Returns an iterator of Box<dyn Scalar>","Returns iterator over the values of FixedSizeBinaryArray","Returns an iterator of Box<dyn Array>","Returns an iterator of Box<dyn Array>","Returns an iterator of Box<dyn Array>","Returns an iterator of T","Returns an iterator of the values, &T, ignoring the arrays…","Returns an iterator of Box<dyn Array>","Returns an iterator of &str","Returns an iterator of &str","Returns an iterator over the the values [V::IterValue].","Returns a mutable slice of values.","Returns a mutable slice of values.","Initializes a new MutableBinaryValuesArray with a …","Initializes a new MutableBinaryArray with a pre-allocated …","Initializes a new MutableUtf8Array with a pre-allocated …","Initializes a new MutableUtf8ValuesArray with a …","Initializes a new MutableBinaryValuesArray with a …","Initializes a new MutableBinaryArray with a pre-allocated …","Creates an new MutableBooleanArray with a capacity of …","Creates a new MutableFixedSizeBinaryArray with capacity …","Creates a new MutableListArray with a capacity.","Creates a new MutablePrimitiveArray with a capacity.","Initializes a new MutableUtf8Array with a pre-allocated …","Initializes a new MutableUtf8ValuesArray with a …","Creates a new MutablePrimitiveArray from a capacity and …","Clones this Array with a new new assigned bitmap.","Returns this array with a new validity.","Returns this array with a new validity.","","","Returns this array with a new validity.","","Returns this DictionaryArray with a new validity.","","Returns this array with a new validity.","Returns this array with a new validity.","","","Returns this array with a new validity.","","Returns this array with a new validity.","","Returns this array with a new validity.","","","Returns this array with a new validity.","","Returns this array with a new validity.","","Returns a clone of this BooleanArray with new values.","Returns this PrimitiveArray with new values.","","","","Describes a struct that can be extended from slices of …","Concrete Growable for the BinaryArray.","Concrete Growable for the BooleanArray.","Concrete Growable for the DictionaryArray.","Concrete Growable for the FixedSizeBinaryArray.","Concrete Growable for the FixedSizeListArray.","Concrete Growable for the ListArray.","Concrete Growable for the MapArray.","Concrete Growable for the NullArray.","Concrete Growable for the PrimitiveArray.","Concrete Growable for the StructArray.","Concrete Growable for the UnionArray.","Concrete Growable for the Utf8Array.","","","","","","","","","","","","","Converts this Growable to an Arc<dyn Array>, thereby …","Converts this Growable to an Box<dyn Array>, thereby …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extends this Growable with elements from the bounded Array …","","","","","","","","","","","","","Extends this Growable with null elements, disregarding the …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The current length of the Growable.","","","","","","","","","","","","","Creates a new Growable from an arbitrary number of Arrays.","Creates a new GrowableBinary bound to arrays with a …","Creates a new GrowableUnion bound to arrays with a …","Creates a new GrowableBoolean bound to arrays with a …","Creates a new GrowableFixedSizeBinary bound to arrays with …","Creates a new GrowableNull.","Creates a new GrowablePrimitive bound to arrays with a …","Creates a new GrowableList bound to arrays with a …","Creates a new GrowableMap bound to arrays with a …","Creates a new GrowableStruct bound to arrays with a …","Creates a new GrowableFixedSizeList bound to arrays with a …","Creates a new GrowableUtf8 bound to arrays with a …","Creates a new GrowableDictionary bound to arrays with a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compare the values at two arbitrary indices in two arrays.","returns a comparison function that compares values at two …","Total order of all native types whose Rust implementation …","implements comparison using IEEE 754 total ordering for f32","implements comparison using IEEE 754 total ordering for f64","An immutable container semantically equivalent to …","This crates’ equivalent of std::vec::IntoIter for Bitmap.","A container of booleans. MutableBitmap is semantically …","","","","Compute bitwise AND operation","Returns the byte slice of this Bitmap.","Returns the slice of bytes of this MutableBitmap. Note …","Apply a bitwise operation op to two inputs and return the …","Apply a bitwise binary operation to a MutableBitmap.","","","","","","","","","","","","","","","","Returns the capacity of MutableBitmap in number of bits.","Creates a Vec<u8> from a TrustedLen of BitChunk.","Returns an iterator over bits in bit chunks BitChunk.","Empties the MutableBitmap.","","","","","","","","","","","Extends MutableBitmap by additional values of constant …","Extends the MutableBitmap from a Bitmap.","Extends the MutableBitmap from a slice of bytes with …","Extends the MutableBitmap from a slice of bytes with …","Extends self from a TrustedLen iterator.","Extends self from an iterator of trusted len.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Creates a Vec from an Iterator of BitChunk.","Creates a [Bitmap] from its internal representation. This …","Creates a [Bitmap] from its internal representation. This …","","","Initializes a MutableBitmap with all values set to valid/ …","Initializes a zeroed MutableBitmap.","Creates a new Bitmap from an iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from an iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from a slice and length.","Alias for Bitmap::try_new().unwrap() This function is O(1)","Initializes a MutableBitmap from a Vec<u8> and a length. …","Returns whether the bit at position i is set.","Returns whether the position index is set.","Returns whether the bit at position i is set.","Unsafely returns whether the bit at position i is set.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns its internal representation","","","","","Converts this Bitmap to MutableBitmap, returning itself if …","Returns whether Bitmap is empty","Returns whether MutableBitmap is empty.","Returns a new iterator of bool over this bitmap","constructs a new iterator over the bits of MutableBitmap.","Returns the length of the Bitmap.","Returns the length of the MutableBitmap.","Converts this Bitmap into a MutableBitmap, cloning its …","Initializes an empty Bitmap.","Creates a new IntoIter from a Bitmap","Initializes an empty MutableBitmap.","Initializes an new Bitmap filled with unset values.","","","","","","Returns the number of unset bits on this Bitmap.","Returns the number of unset bits on this MutableBitmap.","Counts the nulls (unset bits) starting from offset bits …","Compute bitwise OR operation","Pop the last bit from the MutableBitmap. Note if the …","Pushes a new bit to the MutableBitmap, re-sizing it if …","Pushes a new bit to the MutableBitmap","Apply a bitwise operation op to four inputs and return the …","Reserves additional bits in the MutableBitmap, potentially …","Sets the position index to value","Sets the position index to value","Shrinks the capacity of the MutableBitmap to fit its …","","Slices self, offsetting by offset and truncating up to …","Slices self, offseting by offset and truncating up to …","Slices self, offsetting by offset and truncating up to …","Slices self, offseting by offset and truncating up to …","Apply a bitwise operation op to three inputs and return …","","","","","","","Creates a new Bitmap from a fallible iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from a fallible iterator of booleans.","Creates a new MutableBitmap from an falible iterator of …","","","","Initializes a new Bitmap from vector of bytes and a length.","Initializes a new MutableBitmap from a Vec<u8> and a …","","","","Apply a bitwise operation op to one input and return the …","Applies a function to every bit of this MutableBitmap in …","Returns the number of unset bits on this Bitmap.","Returns the number of unset bits on this MutableBitmap.","General utilities for bitmaps representing items where LSB …","Initializes a pre-allocated MutableBitmap with capacity …","Compute bitwise XOR operation","A chunk of bits. This is used to create masks of a given …","Trait representing an exact iterator over bytes in BitChunk…","This struct is used to efficiently iterate over bit masks …","An iterator over a slice of bytes in BitChunks.","An iterator over mutable slices of bytes of exact size.","An iterator over bits according to the LSB, i.e. the bytes …","There are null values","There are no null values","Iterator over a bitmap that returns slices of set regions …","An Iterator over Option<T> This enum can be used in two …","An Iterator over validity and values.","","","","","","","","","","","","","","","","","","","Returns the number of bytes required to hold bits bits.","","","","","","","","","Returns the number of zero bits in the slice offsetted by …","Formats bytes taking into account an offset and length of …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","convert itself from bytes.","Returns whether bit at position i in data is set","Returns whether bit at position i in data is set or not.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Returns whether there are still elements in this iterator","Returns whether bit at position i in byte is set or not","Returns the number of chunks of this iterator","","Creates a new BitChunksExact.","Creates a BitChunks.","Returns a new BitChunksExactMut","Creates a new BitmapIter.","Creates a new SlicesIterator","Creates a new ZipValidityIter.","Returns a new ZipValidity","Returns a new ZipValidity and drops the validity if all …","","","","","","","","","","","","","","The remainder of the iterator.","Returns the remaining BitChunk. It is zero iff len / 8 == 0…","","","Returns the remainder BitChunk.","The remainder slice","An iterator over individual items of the remainder","An iterator over individual items of the remainder","The number of items in the remainder","","","Returns the remainder bits in BitChunks::remainder.","The length of the remainder slice in bits.","Sets bit at position i in byte","Sets bit at position i in data","Sets bit at position i in data without doing bound checks","","","","","","","Returns the total number of slots. It corresponds to the …","convert itself into bytes.","","","","","","","","","","","","","","","","","","","","","","","","","","Unwrap into an iterator that has null values.","Unwrap into an iterator that has no null values.","Buffer is a contiguous memory region that can be shared …","Bytes representation.","","Returns the byte slice stored in this buffer","","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Creates a [Bitmap] from its internal representation. This …","","Returns a mutable reference to its underlying Vec, if …","Returns a mutable reference to its slice, if possible.","Calls U::from(self).","Calls U::from(self).","Returns its internal representation","","Returns a mutable reference to its underlying Vec, if …","Returns whether the buffer is empty.","Returns whether underlying data is sliced. If sliced the …","Returns the number of bytes in the buffer","Creates an empty Buffer.","Returns the offset of this buffer.","Safety","Get the strong count of underlying Arc data buffer.","Get the weak count of underlying Arc data buffer.","Slices this buffer starting at offset.","Slices this buffer starting at offset.","Returns a new Buffer that is a slice of this buffer …","Returns a new Buffer that is a slice of this buffer …","","","","","","","","A vector of trait objects of Array where every item has …","","returns the Arrays in Chunk","","","","","returns the Arrays in Chunk","","","","","Returns the argument unchanged.","Calls U::from(self).","Consumes Chunk into its underlying arrays. The arrays are …","returns whether the columns have any rows","returns the number of rows of every array","Creates a new Chunk.","","","","Creates a new Chunk.","","Contains different aggregation functions","Defines basic arithmetic kernels for PrimitiveArrays.","Defines kernels suitable to perform operations to …","Defines generics suitable to perform operations to …","null-preserving operators such as and, or and not.","Boolean operators of Kleene logic.","Defines different casting operators such as cast or …","Contains comparison operators","Contains the concatenate kernel","Contains operators to filter arrays such as filter.","Contains the operator if_then_else.","Contains “like” operators such as like_utf8 and …","Defines kernel to extract a substring of a [Large…","Defines take kernel for Array","The maximum value","The minimum value","Trait describing a type describing multiple lanes with an …","Object that can reduce itself to a number. This is used in …","Whether max supports data_type","Whether min supports data_type","Whether sum supports data_type","Returns the total (heap) allocated size of the array in …","Returns the maximum of Array. The scalar is null when all …","Returns the maximum value in the binary array, according …","Returns the maximum value in the boolean array","reduce itself to the minimum","lane-wise maximum between two instances","Returns the maximum value in the array, according to the …","Returns the maximum value in the string array, according …","Returns the minimum of Array. The scalar is null when all …","Returns the minimum value in the binary array, according …","Returns the minimum value in the boolean array.","reduce itself to the maximum","lane-wise minimum between two instances","Returns the minimum value in the array, according to the …","Returns the minimum value in the string array, according …","returns a new instance with all lanes equal to MAX","returns a new instance with all lanes equal to MIN","Reduces this element to a single value.","Returns the sum of all elements in array as a Scalar of …","Returns the sum of values in the array.","Compute the sum of a slice","Defines basic addition operation for primitive arrays","Defines checked addition operation for primitive arrays","Defines checked division operation for primitive arrays","Defines checked multiplication operation for primitive …","Defines checked reminder operation for primitive arrays","Defines checked subtraction operation for primitive arrays","Defines basic division operation for primitive arrays","Defines basic multiplication operation for primitive arrays","Defines Overflowing addition operation for primitive arrays","Defines Overflowing multiplication operation for primitive …","Defines Overflowing subtraction operation for primitive …","Defines basic reminder operation for primitive arrays","Defines saturating addition operation for primitive arrays","Defines saturating multiplication operation for primitive …","Defines saturating subtraction operation for primitive …","Defines basic subtraction operation for primitive arrays","Defines wrapping addition operation for primitive arrays","Defines wrapping multiplication operation for primitive …","Defines wrapping subtraction operation for primitive arrays","Adds two Arrays.","Adds itself to rhs","Adds an Array and a Scalar.","Contains arithemtic functions for PrimitiveArrays.","Returns whether two DataTypes can be added by add.","Returns whether two DataTypes can be divided by div.","Returns whether two DataTypes can be multiplied by mul.","Whether neg is supported for a given DataType","Returns whether two DataTypes “can be remainder” by rem…","Returns whether two DataTypes can be subtracted by sub.","Checked add","checked division","checked multiplication","checked remainder","checked subtraction","Defines the arithmetic kernels for Decimal PrimitiveArrays…","Divide of two Arrays.","division","Divide an Array with a Scalar.","Multiply two Arrays.","multiplication","Multiply an Array with a Scalar.","Negates an Array.","Overflowing add","overflowing multiplication","overflowing subtraction","Remainder of two Arrays.","remainder","Saturating add","saturating multiplication","saturarting subtraction","Subtracts two Arrays.","subtraction","Adds an Array and a Scalar.","Defines the arithmetic kernels for adding a Duration to a …","Adds itself to rhs using wrapping addition","wrapping multiplication","wrapping subtraction","Trait describing a NativeType whose semantics of …","Adds two primitive arrays with the same type. Panics if …","Adds a scalar T to a primitive array of type T. Panics if …","Checked addition of two primitive arrays. If the result …","Checked addition of a scalar T to a primitive array of …","Checked division of two primitive arrays. If the result …","Checked division of a primitive array of type T by a …","Checked multiplication of two primitive arrays. If the …","Checked multiplication of a scalar T to a primitive array …","Checked negates values from array.","Checked operation of raising an array of primitives to the …","Checked remainder of two primitive arrays. If the result …","Checked remainder of a primitive array of type T by a …","Checked subtraction of two primitive arrays. If the result …","Checked subtraction of a scalar T to a primitive array of …","Divides two primitive arrays with the same type. Panics if …","Divide a primitive array of type T by a scalar T. Panics …","Multiplies two primitive arrays with the same type. Panics …","Multiply a scalar T to a primitive array of type T. Panics …","Negates values from array.","Overflowing addition of two primitive arrays. If the …","Overflowing addition of a scalar T to a primitive array of …","Overflowing multiplication of two primitive arrays. If the …","Overflowing multiplication of a scalar T to a primitive …","Overflowing subtraction of two primitive arrays. If the …","Overflowing subtraction of a scalar T to a primitive array …","Raises an array of primitives to the power of exponent. …","Remainder of two primitive arrays with the same type. …","Remainder a primitive array of type T by a scalar T. …","Saturating addition of two primitive arrays. If the result …","Saturated addition of a scalar T to a primitive array of …","Saturating multiplication of two primitive arrays. If the …","Saturated multiplication of a scalar T to a primitive …","Saturating subtraction of two primitive arrays. If the …","Saturated subtraction of a scalar T to a primitive array …","Subtracts two primitive arrays with the same type. Panics …","Subtract a scalar T to a primitive array of type T. Panics …","Wrapping addition of two PrimitiveArrays. It wraps around …","Wrapping addition of a scalar T to a PrimitiveArray of …","Wrapping multiplication of two PrimitiveArrays. It wraps …","Wrapping multiplication of a scalar T to a PrimitiveArray …","Wrapping negates values from array.","Wrapping subtraction of two PrimitiveArrays. It wraps …","Wrapping subtraction of a scalar T to a PrimitiveArray of …","Adaptive addition of two decimal primitive arrays with …","Adaptive division of two decimal primitive arrays with …","Adaptive multiplication of two decimal primitive arrays …","Adaptive subtract of two decimal primitive arrays with …","Adds two decimal PrimitiveArray with the same precision …","Checked addition of two decimal primitive arrays with the …","Checked division of two decimal primitive arrays with the …","Checked multiplication of two decimal primitive arrays …","Checked subtract of two decimal primitive arrays with the …","Divide two decimal primitive arrays with the same …","Multiply a decimal PrimitiveArray with a PrimitiveScalar …","Multiply two decimal primitive arrays with the same …","Multiply a decimal PrimitiveArray with a PrimitiveScalar …","Saturated addition of two decimal primitive arrays with …","Saturated division of two decimal primitive arrays with …","Saturated multiplication of two decimal primitive arrays …","Saturated subtraction of two decimal primitive arrays with …","Subtract two decimal primitive arrays with the same …","Adds a duration to a time array (Timestamp, Time and …","Adds a duration to a time array (Timestamp, Time and …","Adds an interval to a DataType::Timestamp.","Adds an interval to a DataType::Timestamp.","Subtract a duration to a time array (Timestamp, Time and …","Calculates the difference between two timestamps as …","Subtract a duration to a time array (Timestamp, Time and …","Calculates the difference between two timestamps returning …","Applies a binary operations to two primitive arrays. This …","Version of binary that creates a mutable bitmap that is …","Version of binary that returns an array and bitmap. Used …","Version of binary that checks for errors in the closure …","Version of unary that checks for errors in the closure …","Applies an unary and infallible function to a …","Version of unary that creates a mutable bitmap that is …","Version of unary that returns an array and bitmap. Used …","Applies a binary function to two PrimitiveArrays, …","Applies an unary function to a PrimitiveArray, optionally …","Check if all of the values in the array are true","Performs && operation on two BooleanArray, combining the …","Performs AND operation on an array and a scalar value. If …","Returns whether any of the values in the array is true","Returns a non-null BooleanArray with whether each value of …","Returns a non-null BooleanArray with whether each value of …","Performs unary NOT operation on an arrays. If value is …","Performs || operation on two BooleanArray, combining the …","Performs OR operation on an array and a scalar value. If …","Returns whether all values in the array are true","Logical ‘and’ operation on two arrays with Kleene logic","Logical ‘and’ operation on an array and a scalar value …","Returns whether any of the values in the array is true","Logical ‘or’ operation on two arrays with Kleene logic","Logical ‘or’ operation on an array and a scalar value …","options defining how Cast kernels behave","","Conversion of binary","Cast BinaryArray to DictionaryArray, also known as packing.","Conversion of binary","Conversion to utf8","Conversion of binary","Casts a BinaryArray to a PrimitiveArray, making any …","Conversion to utf8","Casts the BooleanArray to a BinaryArray, casting trues to …","Casts the BooleanArray to a PrimitiveArray.","Casts the BooleanArray to a Utf8Array, casting trues to "1"…","","","Return true if a value of type from_type can be cast into a","Cast array to the provided data type and return a new Array…","","","Conversion of dates","Conversion of dates","Casts days_mss to months_days_ns. This operation is …","Returns a PrimitiveArray<i128> with the casted values. …","Returns a PrimitiveArray<i128> with the casted values. …","Returns a PrimitiveArray<i128> with the casted values. …","","Casts a DictionaryArray to a new DictionaryArray backed by …","Casts a DictionaryArray to a new DictionaryArray by …","Casts a DictionaryArray to its values’ DataType, also …","Casts f16 into f32","Conversion of FixedSizeBinary to Binary.","Returns a PrimitiveArray<i128> with the casted values. …","","Returns the argument unchanged.","Returns a PrimitiveArray<i128> with the casted values. …","Calls U::from(self).","Casts months represented as i32s to months_days_ns. This …","Returns a Utf8Array where every element is the utf8 …","default to false whether to cast to an integer at the …","Casts a BinaryArray to a PrimitiveArray at best-effort …","Casts a Utf8Array to a PrimitiveArray at best-effort using …","Cast PrimitiveArray as a PrimitiveArray Same as …","Returns a BinaryArray where every element is the binary …","Returns a BooleanArray where every element is different …","Cast PrimitiveArray to DictionaryArray. Also known as …","Cast PrimitiveArray to a PrimitiveArray of another …","Cast PrimitiveArray to a PrimitiveArray of the same …","Returns a Utf8Array where every element is the utf8 …","Conversion of time","Conversion of times","Conversion of times","Conversion of time","Conversion of times","Conversion of times","Conversion of timestamp","Conversion of timestamp","Conversion of timestamp","Returns a Utf8Array where every element is the utf8 …","","","","","Conversion of utf8","Conversion to binary","Casts a Utf8Array to a Date32 primitive, making any …","Casts a Utf8Array to a Date64 primitive, making any …","Cast Utf8Array to DictionaryArray, also known as packing.","Conversion of utf8","crate::temporal_conversions::utf8_to_timestamp_ns applied …","Casts a Utf8Array to a PrimitiveArray, making any …","crate::temporal_conversions::utf8_to_timestamp_ns applied …","default to false whether an overflowing cast should be …","Similar to dictionary_to_dictionary_keys, but overflowing …","Similar to dictionary_to_dictionary_values, but …","The 8 lane representation of Self","NativeType that supports a representation of 8 lanes","Trait declaring an 8-lane multi-data.","Trait implemented by implementors of Simd8Lanes whose Simd8…","Trait implemented by implementors of Simd8Lanes whose Simd8…","Comparison functions for BinaryArray","Comparison functions for BooleanArray","Returns whether a DataType is comparable is supported by eq…","Returns whether a DataType is supported by eq_scalar.","Returns whether a DataType is comparable is supported by gt…","Returns whether a DataType is comparable is supported by …","Returns whether a DataType is supported by gt_eq_scalar.","Returns whether a DataType is supported by gt_scalar.","Returns whether a DataType is comparable is supported by lt…","Returns whether a DataType is comparable is supported by lt…","Returns whether a DataType is supported by lt_eq_scalar.","Returns whether a DataType is supported by lt_scalar.","Returns whether a DataType is comparable is supported by …","Returns whether a DataType is supported by neq_scalar.","== between two Arrays. Use can_eq to check whether the …","Equal","== between two Arrays and includes validities in …","== between an Array and a Scalar. Use can_eq_scalar to …","== between an Array and a Scalar and includes validities …","Utility for low level end users that implement their own …","Utility for low level end users that implement their own …","loads a complete chunk","loads an incomplete chunk, filling the remaining items …","> between two Arrays. Use can_gt to check whether the …","Greater than",">= between two Arrays. Use can_gt_eq to check whether the …","Greater than or equal to",">= between an Array and a Scalar. Use can_gt_eq_scalar to …","> between an Array and a Scalar. Use can_gt_scalar to …","< between two Arrays. Use can_lt to check whether the …","Less than","<= between two Arrays. Use can_lt_eq to check whether the …","Less than or equal to","<= between an Array and a Scalar. Use can_lt_eq_scalar to …","< between an Array and a Scalar. Use can_lt_scalar to …","!= between two Arrays. Use can_neq to check whether the …","Not equal","!= between two Arrays and includes validities in …","!= between an Array and a Scalar. Use can_neq_scalar to …","!= between an Array and a Scalar and includes validities …","Comparison functions for PrimitiveArray","Comparison functions for Utf8Array","Perform lhs == rhs operation on BinaryArray.","Perform lhs == rhs operation on BinaryArray and include …","Perform lhs == rhs operation on BinaryArray and a scalar.","Perform lhs == rhs operation on BinaryArray and a scalar …","Perform lhs > rhs operation on BinaryArray.","Perform lhs >= rhs operation on BinaryArray.","Perform lhs >= rhs operation on BinaryArray and a scalar.","Perform lhs > rhs operation on BinaryArray and a scalar.","Perform lhs < rhs operation on BinaryArray.","Perform lhs <= rhs operation on BinaryArray.","Perform lhs <= rhs operation on BinaryArray and a scalar.","Perform lhs < rhs operation on BinaryArray and a scalar.","Perform lhs != rhs operation on BinaryArray.","Perform lhs != rhs operation on BinaryArray.","Perform lhs != rhs operation on BinaryArray and a scalar.","Perform lhs != rhs operation on BinaryArray and a scalar …","Evaluate op(left, right) for BooleanArray and scalar using …","Perform lhs == rhs operation on two BooleanArrays.","Perform lhs == rhs operation on two BooleanArrays and …","Perform lhs == rhs operation on a BooleanArray and a …","Perform lhs == rhs operation on a BooleanArray and a …","Perform left > right operation on two arrays. Non-null …","Perform left >= right operation on two arrays. Non-null …","Perform left >= right operation on an array and a scalar …","Perform left > right operation on an array and a scalar …","Perform left < right operation on two arrays.","Perform left <= right operation on two arrays.","Perform left <= right operation on an array and a scalar …","Perform left < right operation on an array and a scalar …","lhs != rhs for BooleanArray","lhs != rhs for BooleanArray and include validities in …","Perform left != right operation on an array and a scalar …","Perform left != right operation on an array and a scalar …","Evaluate op(left, right) for PrimitiveArray and scalar …","Perform lhs == rhs operation on two arrays.","Perform lhs == rhs operation on two arrays and include …","Perform left == right operation on an array and a scalar …","Perform left == right operation on an array and a scalar …","Perform left > right operation on two arrays. Non-null …","Perform left >= right operation on two arrays. Non-null …","Perform left >= right operation on an array and a scalar …","Perform left > right operation on an array and a scalar …","Perform left < right operation on two arrays.","Perform left <= right operation on two arrays.","Perform left <= right operation on an array and a scalar …","Perform left < right operation on an array and a scalar …","Perform left != right operation on two arrays.","Perform left != right operation on two arrays and include …","Perform left != right operation on an array and a scalar …","Perform left != right operation on an array and a scalar …","Perform lhs == rhs operation on Utf8Array.","Perform lhs == rhs operation on Utf8Array and include …","Perform lhs == rhs operation on Utf8Array and a scalar.","Perform lhs == rhs operation on Utf8Array and a scalar. …","Perform lhs > rhs operation on Utf8Array.","Perform lhs >= rhs operation on Utf8Array.","Perform lhs >= rhs operation on Utf8Array and a scalar.","Perform lhs > rhs operation on Utf8Array and a scalar.","Perform lhs < rhs operation on Utf8Array.","Perform lhs <= rhs operation on Utf8Array.","Perform lhs <= rhs operation on Utf8Array and a scalar.","Perform lhs < rhs operation on Utf8Array and a scalar.","Perform lhs != rhs operation on Utf8Array.","Perform lhs != rhs operation on Utf8Array and include …","Perform lhs != rhs operation on Utf8Array and a scalar.","Perform lhs != rhs operation on Utf8Array and a scalar. …","Concatenate multiple Array of the same type into a single …","Function that can filter arbitrary arrays","Returns a prepared function optimized to filter multiple …","Filters an Array, returning elements matching the filter …","Returns a new Chunk with arrays containing only values …","Returns the values from lhs if the predicate is true or …","Returns lhs LIKE rhs operation on two BinaryArray.","Returns lhs LIKE rhs operation.","Returns lhs LIKE rhs operation on two Utf8Array.","Returns lhs LIKE rhs operation.","Returns lhs NOT LIKE rhs operation on two BinaryArrays.","Returns lhs NOT LIKE rhs operation on two BinaryArrays.","Returns lhs NOT LIKE rhs operation on two Utf8Array.","Returns lhs NOT LIKE rhs operation.","Checks if an array of type datatype can perform substring …","Returns an ArrayRef with a substring starting from start …","Checks if an array of type datatype can perform take …","Returns a new Array with only indices at indices. Null …","Opaque binary data of variable length.","Opaque binary data of variable length whose offsets are …","A boolean represented as a single bit.","true and false.","The set of supported logical types in this crate.","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","The number of elapsed days and milliseconds, stored as 2 …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","Dense union","A dictionary encoded array by IntegerType.","A dictionary encoded array (key_type, value_type), where …","Measure of elapsed time. This elapsed time is a physical …","Extension type.","Represents Arrow’s metadata of a “column”.","Opaque binary data of fixed size.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some data type with fixed length.","A list of some logical data type with a fixed number of …","An 16-bit float","A f32","A f64","A signed 16-bit integer.","An i16","A signed 32-bit integer.","An i32","A signed 64-bit integer.","An i64","A signed 8-bit integer.","An i8","the set of valid indices types of a dictionary-encoded …","A “calendar” interval modeling elapsed time that takes …","Interval units defined in Arrow","Opaque binary data of variable length and 64-bit offsets.","Opaque binary data of variable length whose offsets are …","A list of some data type with variable length and 64-bit …","A list of some logical data type whose offsets are …","A variable-length string in Unicode with UFT-8 encoding …","A variable-length UTF-8 encoded string whose offsets are …","A list of some data type with variable length.","A list of some logical data type whose offsets are …","A nested type.","A nested type that is represented as","typedef for BTreeMap<String, String> denoting Field’s …","Time in microseconds.","Time in milliseconds.","The number of elapsed months (i32), days (i32) and …","Time in nanoseconds.","A Null with no allocation.","Null type","The set of physical types: unique in-memory …","An array where each slot has a known compile-time size.","","An ordered sequence of Fields with associated Metadata.","typedef for Arc<Schema>.","Time in seconds.","Sparse union","A nested type that contains an arbitrary number of fields.","A nested DataType with a given number of Fields.","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","The time units defined in Arrow.","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer.","An u16","An unsigned 32-bit integer.","An u32","An unsigned 64-bit integer.","An u64","An unsigned 8-bit integer.","An u8","A nested type that represents slots of differing types.","A nested datatype that can represent slots of differing …","Mode of DataType::Union","A variable-length string in Unicode with UTF-8 encoding.","A variable-length UTF-8 encoded string whose offsets are …","The number of elapsed whole months.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the Field’s DataType.","Its logical DataType","","","","","","","","","","Whether this physical type equals PhysicalType::Primitive …","","","","","","","","","The fields composing this schema.","Returns a new Schema with a subset of all fields whose …","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","support get extension for metadata","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns whether the mode is dense","Its nullability","Returns whether the mode is sparse","Additional custom (opaque) metadata.","Optional metadata.","Its name","Creates a new Field.","Constructs a UnionMode::Sparse if the input bool is true, …","Returns &self for all but DataType::Extension. For …","","","","","","","","","the PhysicalType of this DataType.","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Field with metadata.","Attaches a Metadata to Schema","Enum with all errors in this crate.","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","Wrapper for IO errors","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","Typedef for a std::result::Result of an Error.","","","","","Returns the argument unchanged.","","","","","","","","","Wraps an external error in an Error.","Calls U::from(self).","","","","","","ABI-compatible struct for ArrowArray","ABI-compatible struct for ArrowArrayStream.","Implements an iterator of Array consumed from the C stream …","ABI-compatible struct for ArrowSchema","","","","","","","","","","","","create an empty ArrowSchema","creates an empty ArrowArray, which can be used to import …","Creates an empty ArrowArrayStream used to import from a …","Exports an Box<dyn Array> to the C data interface.","Exports a Field to the C data interface.","Exports an iterator to the C stream interface","Returns the field provided by the stream","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Imports an Array from the C data interface.","Imports a Field from the C data interface.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Functionality to mmap in-memory data regions.","Advances this iterator by one array","","","","","","","","","Returns a new ArrowArrayStreamReader","","","","","Creates a (non-null) BooleanArray from a slice of bits. …","Creates a (non-null) PrimitiveArray from a slice of values.","APIs to read from and write to Arrow’s IPC format.","Convert data between the Arrow memory format and JSON …","APIs to read from and write to NDJSON","APIs to read from and write to Parquet format.","Struct containing dictionary_id and nested IpcField, …","Struct containing fields and whether the file is written …","","","A struct adapter of Read+Seek+Write to append to IPC files","","","","","","","","","","dictionary id","","","optional children","The fields in the schema","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Endianness of the file","APIs to read Arrow’s IPC format.","","","","","","","","","APIs to write to Arrow’s IPC format.","how dictionaries are tracked in this crate","The record contains a number of buffers that does not …","Metadata of an Arrow IPC file, written in the footer of …","An iterator of Chunks from an Arrow IPC file.","A bitmap’s size is smaller than the required for the …","A buffer’s size is smaller than the required for the …","A buffer’s size is larger than the file size","FixedSizeBinaryArray has invalid datatype.","The block is an invalid flatbuffer","The message’s body length is an invalid flatbuffer","The message’s buffers is an invalid flatbuffer","The compression is an invalid flatbuffer","The message’s data is an invalid flatbuffer","The footer’s dictionaries is an invalid flatbuffer","The footer is an invalid flatbuffer","The message’s header is an invalid flatbuffer","The dictionary id is an invalid flatbuffer","The dictionary is_delta is an invalid flatbuffer","The dictionary message is an invalid flatbuffer","The message’s nodes is an invalid flatbuffer","The footer’s record batches is an invalid flatbuffer","The footer’s schema is an invalid flatbuffer","The version is an invalid flatbuffer","The IPC file does not end with [b’A’, b’R’, b’R…","The IPC file does not start with [b’A’, b’R’, b’R…","Invalid dictionary id","Field id is not a dictionary","The message does not contain data","The file’s schema does not contain fields","RecordBatch messages do not contain buffers","The message does not contain a header","RecordBatch messages does not contain nodes","The file’s footer does not contain record batches","The file’s footer does not contain a schema","The first 4 bytes of the last 10 bytes is < 0","The different types of errors that reading from IPC can …","Next item in the stream","Metadata of an Arrow IPC stream, written at the start of …","Arrow Stream reader.","Encodes the stream’s status after each read.","dictionaries can only contain dictionary messages; record …","Relative positions in the file is < 0","A live stream without data","","","The blocks in the file","","","","","","","","","","","","","","","","","Deserialize an flatbuffers-encoded Schema message into …","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Get the inner memory scratches so they can be reused in a …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Consumes this FileReader, returning the underlying reader","","","The files’ IpcSchema","The IPC fields tracking dictionaries","Check if the stream is finished","Returns the FileMetadata","Return the schema of the stream","Creates a new FileReader. Use projection to only take …","Try to create a new stream reader","","","Reads the record batch at position index from the reader.","Reads all file’s dictionaries, if any This function is …","Read the Arrow IPC file’s metadata","Reads the metadata of the stream","Return the schema of the file","Return the schema of the file","The schema that is read from the file footer","The schema that is read from the stream’s first message","Set the inner memory scratches so they can be reused in a …","The total size of the file in bytes","","","","","","","","","","","","","","","","","","","","","Return the data inside this wrapper.","The IPC version of the stream","The size of the IPC buffer","number of bytes of all buffers in the record","the size of the file","Declared number of elements in the buffer","Declared length of the bitmap","Number of bits on the IPC buffer","The requested dictionary id","The requested dictionary id","Bytes required for the length and type","The name of the NativeType","Compression codec","Arrow file writer","LZ4 (framed)","An array Chunk with optional accompanying IPC fields.","Arrow stream writer","Options declaring the behaviour of writing to IPC","ZSTD","","","","","","","","","","","","","","","Get the Arrow columns in this record.","Whether the buffers should be compressed and which codec …","Assigns every dictionary field a unique ID","","","","Get the IPC fields for this record.","Async writer for IPC files.","Write continuation bytes, and mark the stream as done","Write footer and closing tag, then mark the writer as done","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Get the inner memory scratches so they can be reused in a …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Consumes itself, returning the inner writer.","Consumes itself into the inner writer","Creates a new StreamWriter","Creates a new FileWriter.","Converts a Schema and IpcFields to a flatbuffers-encoded …","Set the inner memory scratches so they can be reused in a …","Starts the stream by writing a Schema message to it. Use …","Writes the header and first (schema) message to the file.","async writing of arrow streams","","","","","","","Creates a new FileWriter from an existing file, seeking to …","","","","","Creates a new FileWriter and writes the header to writer","","","","","Writes an Array to arrow_data","Writes Chunk to the stream","Writes Chunk to the file","Sink that writes array chunks as an IPC file.","","","Returns the argument unchanged.","Calls U::from(self).","Create a new file writer.","","","","","","","","A sink that writes array chunks as an IPC stream.","Options declaring the behaviour of writing to IPC","","","","","","","","Whether the buffers should be compressed and which codec …","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Create a new StreamSink.","","","","","","","","","","","","APIs to write to JSON","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","FallibleStreamingIterator that serializes a Chunk into …","FallibleStreamingIterator that serializes an Array to …","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","","Advances the iterator to the next position.","","","","","","","","","","","","","","Advances the state of the iterator to the next item from …","","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","","","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new RecordSerializer.","Creates a new Serializer.","Advances the iterator, returning the next element.","","","Advances the back of the iterator, returning the last …","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","","","","","","","","","","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Writes valid JSON from an iterator of (assumed …","APIs to serialize and write to NDJSON.","The error type of iteration.","A fallible, streaming iterator.","An iterator adapter that receives an implementer of Write …","The type being iterated over.","FallibleStreamingIterator that serializes an Array to …","","Advances the iterator to the next position.","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","Borrows an iterator, rather than consuming it.","","","Returns the number of remaining elements in the iterator.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","Calls U::from(self).","Calls U::from(self).","Returns the inner content of this iterator","","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new FileWriter.","Creates a new Serializer.","Advances the iterator, returning the next element.","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","APIs to read from Parquet format.","APIs to write to Parquet format.","Type def for a sharable, boxed dyn Iterator of arrays","A FallibleStreamingIterator that decompresses …","","","An embedded BSON document","","Metadata for a column chunk.","A descriptor for leaf-level primitive columns. This …","A CompressedDataPage is compressed, encoded representation …","A DataPage","","","A Date","","A decimal value.","Decompressor that allows re-using the page buffer of …","A DictPage","","","an enum is converted into a binary field","The error type of iteration.","","A fallible, streaming iterator.","Error presented when trying to use a code branch that …","Error presented when trying to use a feature from parquet …","Metadata for a Parquet file.","An iterator of Chunks coming from row groups of a parquet …","Iterator finished","","","","","The initial info of nested data types.","","","","","","A signed integer value.","","","An interval of time","When encoding, the user passed an invalid parameter","The type being iterated over.","","","An embedded JSON document","","List data types","","","","A special kind of fallible streaming iterator where advance…","","Type def for a sharable, boxed dyn Iterator of …","The state of nested data types.","When the parquet file is known to be out of spec.","A Page is an uncompressed, encoded representation of a …","Type declaration for a page filter","A fallible Iterator of CompressedDataPage. This iterator …","Trait describing a FallibleStreamingIterator of Page","Errors generated by this crate","","Representation of a Parquet type describing primitive and …","The set of all physical types representable in Parquet","Primitive data types","","","","A MutStreamingIterator of pre-read column chunks","An Iterator of Chunk that (dynamically) adapts a vector of …","Metadata for a row group.","An [Iterator<Item=RowGroupDeserializer>] from row groups …","Iterator still has elements","State of MutStreamingIterator.","","Struct data types","An iterator adapter over NestedArrayIter assumed to be …","","A time.","A time","","A date/time combination","A date/time combination","","","","An unsigned integer value.","","","","","","When decoding or decompressing, the page would allocate …","","","","","","","","","","","Reads the column indexes of all ColumnChunkMetaData and …","Reads a FileMetaData from the reader, located at the end …","Asynchronously reads the files’ metadata","Advances the iterator to the next position.","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","The ParquetType this descriptor is a leaf of","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","Returns the offset and length in bytes of the column chunk …","","","","","","","","","","","","","","","","","","","","","Returns this column’s ColumnChunk","Returns the encoding for this column","An iterator adapter that maps multiple iterators of Pages …","Column (sort) order used for min and max values of each …","Returns slice of column chunk metadata.","Returns the total compressed data size of this column …","Total size of all compressed column data in this row group.","Compression for this column.","Returns the number of remaining elements in the iterator.","Creates a new ListArray or FixedSizeListArray.","Creates a new MapArray.","String message for application that wrote this file.","Returns the offset for the column data.","Decompresses the page, using buffer for decompression. If …","The ColumnDescriptor for this column. This descriptor …","The descriptor this columns’ leaf.","Returns the offset for the dictionary page, if any.","","","","","","","","","","","","","Byte offset in file_path().","File where the column chunk is stored.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","","","","","","","","","","","","","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","Returns a ColumnIterator of column chunks corresponding to …","Returns all ColumnChunkMetaData associated to field_name. …","Returns all ColumnChunkMetaData associated to field_name. …","Creates a new iterator of compressed pages.","Returns a stream of compressed data pages","Returns true if this column chunk contains a index page, …","","","","","Returns the offset for the index page.","API to perform page-level filtering (also known as indexes)","","Initialize NestedState from &[InitNested].","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns two buffers: the first buffer corresponds to the …","Returns its internal buffer, consuming itself.","Returns the reader and this Readers’ interval buffer","","","","","","Method to convert to Thrift.","key_value_metadata of this file.","The number of rows in this state","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","The column’s ColumnMetaData","Returns the number of (parquet) columns that a DataType …","The nesteds composing NestedState.","Creates a new Decompressor.","Returns a new BasicDecompressor.","Returns a new PageReader.","Returns a new ColumnChunkMetaData","Creates new descriptor for leaf-level column.","Create a new RowGroupMetaData","Returns a new ReadColumnIterator","Creates a new StructIterator with iters and fields.","Returns a new FileReader.","Returns a new RowGroupReader","Creates a new RowGroupDeserializer.","Creates a new NestedState.","Create a a new PageReader with PageMetaData.","Advances the iterator, returning the next element.","","","","","","Returns the nth element of the iterator.","Number of rows in this row group.","Returns the number of rows on this row group","number of rows in the file.","Total number of values in this column chunk. Note that …","","The path of this column. For instance, “a.b.c.d”.","The PhysicalType of this column.","Returns the position of the first element matching a …","","Reads all columns that are part of the parquet field …","Reads all columns that are part of the parquet field …","Returns a vector of iterators of Array (ArrayIter) …","Returns a vector of iterators of Array corresponding to …","Reads parquets’ metadata syncronously.","Reads parquets’ metadata asynchronously.","Read PageLocations from the ColumnChunkMetaDatas. Returns …","The row groups of this file","APIs to handle Parquet <-> Arrow schemas.","Returns the Schema associated to this file.","schema descriptor.","Returns bounds on the number of remaining elements in the …","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","APIs exposing parquet2’s statistics as arrow’s …","Decodes the raw statistics into Statistics.","","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Converts a vector of columns associated with the parquet …","","","","","","","","","","","","Total byte size of all uncompressed column data in this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the total uncompressed data size of this column …","version of this file.","","","","","","","","","ColumnPageStatistics contains the minimum, maximum, and …","Page statistics of an Arrow field.","An enum describing a page that was either selected in a …","An interval","Variant used for fields with multiple parquet columns …","Variant used for fields with a single parquet column (e.g. …","","","","","","","","","","","","","","","Returns the set of (row) intervals of the pages.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Checks whether the row group have page index information …","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Its length","","The maximum values in the pages","The minimum values in the pages","Create a new interal","The number of null values in the pages.","","Reads the column indexes from the reader assuming a valid …","Reads all page locations and index locations (IO-bounded) …","rows to select from the page","Its start","Location of the page in the file","","","","","","","","","","","","","","","Metadata for a Parquet file.","","Wrapper struct to store key values","Representation of a Parquet type describing primitive and …","","A schema descriptor. This encapsulates the top-level …","Column (sort) order used for min and max values of each …","String message for application that wrote this file.","Infers a Schema from parquet’s FileMetaData. This first …","","key_value_metadata of this file.","number of rows in the file.","Converts ParquetTypes to a Field, ignoring parquet fields …","Reads an arrow schema from Parquet’s file metadata. …","The row groups of this file","schema descriptor.","","version of this file.","","","","","Arrow-deserialized parquet Statistics of a file","","","Deserializes the statistics in the column chunks from all …","number of dictinct values. This is a UInt64Array for …","","","Returns the argument unchanged.","Calls U::from(self).","Maximum","Minimum","number of nulls. This is a UInt64Array for non-nested types","","","","Bit packed encoding. This can only be used if the data …","","","Represents a valid brotli compression level.","","Encoding for floating-point data. K byte-streams are …","A CompressedDataPage is compressed, encoded representation …","A CompressedPage is a compressed, encoded representation …","Defines the compression settings for writing a parquet …","A FallibleStreamingIterator that consumes Page and yields …","A DataPage","","Delta encoding for integers. This can be used for int …","Incremental-encoded byte array. Prefix lengths are encoded …","Encoding for byte arrays to separate the length values and …","A descriptor of a parquet column. It contains the …","A DictPage","","","DynIter is an implementation of a single-threaded, …","Dynamically-typed FallibleStreamingIterator.","","The error type of iteration.","A fallible, streaming iterator.","Common type information.","Metadata for a Parquet file.","Sink that writes array chunks as a Parquet file.","An interface to write a parquet to a Write","","","","","Represents a valid gzip compression level.","","","","The type being iterated over.","Wrapper struct to store key values","a list","a list","","","","Descriptor of nested information of a field","A Page is an uncompressed, encoded representation of a …","The set of all physical types representable in Parquet","Representation of a Parquet type describing primitive and …","Default encoding. BOOLEAN - 1 bit per value. 0 is false; 1 …","Deprecated: Dictionary encoding. The values in the …","a primitive (leaf or parquet column) bitmap, _, length","","Group packed run length encoding. Usable for …","Dictionary encoding: the ids are encoded using the RLE …","","An iterator adapter that converts an iterator over Chunk …","A schema descriptor. This encapsulates the top-level …","","a struct","Description for file metadata","","","","The parquet version to use","Currently supported options to write to parquet","","Represents a valid zstd compression level.","","","","","","","","","","","","","","","","","Advances the iterator to the next position.","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Returns a vector of iterators of Page, one per leaf column …","Converts an Array to a CompressedPage based on options, …","Converts an Array to a CompressedPage based on options, …","Returns an iterator of Page.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","Checks whether the data_type can be encoded as encoding. …","Checks if sub_type schema is part of current schema. This …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns column order for ith column in this file. If …","Sort order used for the min_value and max_value fields in …","Column (sort) order used for min and max values of each …","The ColumnDescriptor (leafs) of this schema.","Compresses an [EncodedPage] into a CompressedPage using …","","The compression of the data in this page. Note that what …","The compression to apply to every page","Returns the compression level.","Returns the compression level.","Returns the compression level.","Returns the number of remaining elements in the iterator.","String for application that wrote this file. This should …","String message for application that wrote this file.","The size to flush a page, defaults to 1024 * 1024 if None","","","","Encryption algorithm. This field is set only in encrypted …","Writes the footer of the parquet file. Returns the total …","","","","","","","","","","","","","","","","","","","","","","","","","","","","The schemas’ fields.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","","","","","","","","","","","","","","","","","","","Retrieval metadata of key used for signing the footer. …","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Helper method to create a ParquetType::PrimitiveType …","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","Returns FieldInfo information about the type.","Get the length of Array that should be sliced.","","","","","","","","","","","","","the optional id, to select fields by id","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Deconstructs itself into its iterator and scratch buffer.","Consumes this writer and returns the inner writer","Returns the underlying writer and ThriftFileMetaData","","","Serializes itself to thrift’s …","","","returns the metadata","Optional key/value metadata *","key_value_metadata of this file.","Returns the length (number of rows) of the element","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","The maximum definition level","The maximum repetition level","Key-value metadata that will be written to the file on …","The schemas’ name.","Returns this type’s field name.","The field name","Creates a new Compressor","Returns a new DynIter, boxing the incoming iterator","Returns a new DynStreamingIterator, boxing the incoming …","","","Creates new schema descriptor from Parquet schema.","Returns a new CompressedDataPage.","Creates a new Compressor (same as new)","Advances the iterator, returning the next element.","","","Returns the nth element of the iterator.","Number of rows in this file *","number of rows in the file.","return number values of the nested","","The options assigned to the file","The write options for the file.","The SchemaDescriptor assigned to this file","Returns the SchemaDescriptor of the RowGroupIterator.","The Parquet SchemaDescriptor for the file.","","","","","","Returns the position of the first element matching a …","The PrimitiveType of this column","","","","","The repetition","Maps a Chunk and parquet-specific options to an …","Row groups in this file *","The row groups of this file","Returns the SchemaDescriptor that describes schema of this …","The Schema assigned to this file","The Arrow Schema for the file.","Parquet schema for this file. This schema contains …","schema descriptor.","","the rows to be selected by this page. When None, all rows …","Returns bounds on the number of remaining elements in the …","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","returns offset and length to slice the leaf values","Slices the Array to Box<dyn Array> and Vec<Nested>.","","Decodes the raw statistics into a statistics","","","","","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Convert Array to Vec<&dyn Array> leaves in DFS order.","Constructs the necessary Vec<Vec<Nested>> to write the rep …","","","","","","","","","","","","","","","","","Convert ParquetType to Vec<ParquetPrimitiveType> leaves in …","Creates a parquet SchemaDescriptor from a Schema.","Creates a ParquetType from a Field.","Transverses the data_type up to its (parquet) columns and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a schema from","Error","Deserializes crate::thrift_format::FileMetaData into this …","Method to convert from Thrift.","","","","","","","","","","","","","","","","","","","","","","","","","","Attempts to create a brotli compression level.","Attempts to create a gzip compression level.","Attempts to create a zstd compression level from a given …","Returns a new FileWriter.","Creates a new RowGroupIterator from an iterator over Chunk.","Create a new sink that writes arrays to the provided writer…","","","","","","","","","","","","","","","","","","","","","","","","","","","","Version of this file *","version of this file.","The page and file version to use","Writes a row group to the file.","writes the def levels to a Vec<u8> and returns it.","Writes a parquet file containing only the header and footer","Write repetition_levels and definition_levels to buffer.","Whether to write statistics","","","","","","","","","Memory maps dictionaries from an IPC file into","Memory maps an record batch from an IPC file into a Chunk.","","A wrapper type of Vec<O> representing the invariants of …","A wrapper type of Buffer<O> that is guaranteed to:","","","Returns the byte slice stored in this buffer","Returns the byte slice stored in this buffer","","","","","Returns a reference to its internal Buffer.","Returns the capacity of Offsets.","","","","","","","","","","","Extends itself with additional elements equal to the last …","Returns the first offset.","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Returns the inner Vec.","Returns the inner Buffer.","Copy-on-write API to convert OffsetsBuffer into Offsets.","Returns the last offset of this container.","Returns the last offset.","Returns the number of offsets in this container.","Returns the number of offsets in this container.","Returns the length an array with these offsets would be.","Returns the length an array with these offsets would be.","Returns an iterator with the lengths of the offsets","Returns an empty Offsets (i.e. with a single element, the …","Returns an empty OffsetsBuffer (i.e. with a single …","Returns Offsets assuming that offsets fulfills its …","Safety","Returns an Offsets whose all lengths are zero.","Pops the last element","Returns the range of the offsets.","Reserves additional entries.","Shrinks the capacity of self to fit.","Slices this OffsetsBuffer.","Slices this OffsetsBuffer starting at offset.","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","","","Try extend from an iterator of lengths","Extends itself from another Offsets","Extends itself from another Offsets sliced by start, length","","","","","","","","Creates a new Offsets from an iterator of lengths","Try to create a new Offsets from a sequence of lengths","","","Pushes a new element with a given length.","Pushes a new element with a given length.","","","Returns a new Offsets with a capacity, allocating at least …","The Scalar implementation of binary (Option<Vec<u8>>).","The Scalar implementation of a boolean.","The DictionaryArray equivalent of Array for Scalar.","The Scalar implementation of fixed size binary ([…","The scalar equivalent of FixedSizeListArray. Like …","The scalar equivalent of ListArray. Like ListArray, this …","The scalar equivalent of MapArray. Like MapArray, this …","The representation of a single entry of a …","The implementation of Scalar for primitive, semantically …","Trait object declaring an optional value with a DataType. …","A single entry of a crate::array::StructArray.","A single entry of a crate::array::UnionArray.","The implementation of Scalar for utf8, semantically …","","","","","","","","","","","","","convert itself to","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","the logical type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","whether it is valid","","","","","","","","","","","","","returns a new DictionaryScalar","Returns a new PrimitiveScalar.","Returns a new Utf8Scalar","Returns a new BinaryScalar.","Returns a new BooleanScalar","returns a new ListScalar","returns a new MapScalar","A new NullScalar","Returns a new StructScalar","returns a new FixedSizeListScalar","Returns a new FixedSizeBinaryScalar.","Returns a new UnionScalar","creates a new Scalar from an Array.","Returns a new PrimitiveScalar with the same value but …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the type of the union scalar","","","","","","","","","","","","","The values of the DictionaryScalar","Returns the optional value.","Returns the value irrespectively of the validity.","Its value","The value","Its value","Returns the inner value","The values of the ListScalar","The values of the MapScalar","Returns the values irrespectively of the validity.","The values of the FixedSizeListScalar","Number of days between 0001-01-01 and 1970-01-01","Number of microseconds in a second","Number of milliseconds in a second","Number of milliseconds in a day","Number of nanoseconds in a second","Number of seconds in a day","Adds an interval to a timestamp in time_unit units and …","Adds an interval to a timestamp in time_unit units without …","converts a i32 representing a date32 to NaiveDate","converts a i32 representing a date32 to NaiveDateTime","converts a i64 representing a date64 to NaiveDate","converts a i64 representing a date64 to NaiveDateTime","Parses an offset of the form "+WX:YZ" or "UTC" into …","converts a i32 representing a time32(ms) to NaiveTime","converts a i32 representing a time32(s) to NaiveTime","converts a i64 representing a time64(ns) to NaiveTime","converts a i64 representing a time64(us) to NaiveTime","converts a i64 representing a timestamp(ms) to …","converts a i64 representing a timestamp(ns) to …","converts a i64 representing a timestamp(s) to NaiveDateTime","Converts a timestamp in time_unit and timezone into …","Converts a timestamp in time_unit and timezone into …","converts a i64 representing a timestamp(us) to …","Calculates the scale factor between two TimeUnits. The …","Parses a Utf8Array to naive timestamp, i.e. …","Parses value to Option<i64> consistent with the Arrow’s …","Parses value to Option<i64> consistent with the Arrow’s …","Parses a Utf8Array to a timeozone-aware timestamp, i.e. …","Parses value to Option<i64> consistent with the Arrow’s …","Parses value to Option<i64> consistent with the Arrow’s …","An iterator of known, fixed size. A trait denoting Rusts’…","A chunk of bits. This is used to create masks of a given …","An [Iterator<Item=bool>] over a BitChunk. This iterator is …","An [Iterator<Item=usize>] over a BitChunk returning the …","Type denoting its representation as bytes. This is [u8; N] …","Two i32 representing days and ms","The difference between 1.0 and the next largest …","A 16-bit floating point number.","A 32-bit floating point number.","A 64-bit floating point number.","Whether it is i32 (false) or i64 (true).","Sealed trait describing the subset of NativeType (i32, i64…","Range of Index, equivalent to (a..b). Step is unstable in …","A signed 128-bit integer.","A signed 16-bit integer.","A signed 256-bit integer.","A signed 32-bit integer.","A signed 64-bit integer.","A signed 8-bit integer.","months_days_ns(i32, i32, i64)","Sealed trait implemented by all physical types that can be …","Sealed trait describing the subset (i32 and i64) of Index …","The corresponding variant of PrimitiveType.","The set of all implementations of the sealed trait …","An unsigned 16-bit integer.","An unsigned 32-bit integer.","An unsigned 64-bit integer.","An unsigned 8-bit integer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The number of days","The number of days","The in-memory representation of the DayMillisecond variant …","","","","","","","","","","","","","","Type representation of the Float16 physical type","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert itself from usize.","From bytes in big endian","","","","","Casts from u16.","Casts an f32 into f16","From bytes in little endian","","","","","convert itself from bytes.","Convert itself from usize.","Returns a new i256 from two i128.","","","","","Physical representation of a decimal","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","The number of milliseconds","The number of months","The in-memory representation of the MonthDayNano variant …","","","","Creates a new BitChunkIter with len bits.","Creates a new BitChunkOnes with len bits.","Returns a new IndexRange.","A new days_ms.","A new months_days_ns.","","","","The number of nanoseconds","","An iterator from (inclusive) start to (exclusive) end.","An iterator from (inclusive) start to (exclusive) end.","Contains traits and implementations of multi-data used in …","","","","To bytes in big endian","","","","","Casts to u16.","Casts this f16 to f32","To bytes in little endian","","","","","convert itself into bytes.","","","","","","","","","","Convert itself to usize.","","","","","","","","","","","","","","","","","","","","","","","","","The type holding bits for masks.","Describes the ability to convert itself from a BitChunk.","Number of lanes","Type used for masking.","The NativeType of this struct. E.g. f32 for a …","A struct that lends itself well to be compiled leveraging …","Trait implemented by some NativeType that have a SIMD …","The SIMD type associated with this trait. This type …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a tuple of 3 items whose middle item is itself, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert itself from a slice.","Convert itself from a slice.","","","","","","","","","","","","","","","","creates a new Self from v by populating items from v up to …","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","Sets values to default based on mask.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Converts numeric type to a String","Converts numeric type to a String","Converts numeric type to a String"],"i":[0,0,3,3,3,17,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,17,3,17,0,3,0,3,17,3,3,17,3,3,0,3,3,0,17,3,17,3,17,3,3,3,3,3,17,3,17,0,3,3,3,17,17,3,3,3,3,3,0,3,3,3,3,3,3,3,17,3,3,3,3,17,17,17,17,17,17,17,3,17,17,3,3,17,17,3,3,3,3,17,17,17,17,17,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,17,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,17,3,3,3,3,3,3,3,0,3,3,3,0,3,17,3,0,3,17,3,17,3,3,17,0,3,3,0,17,17,17,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,73,80,94,79,84,97,85,98,86,99,87,88,89,77,69,90,91,75,102,76,109,69,69,69,83,83,73,69,75,76,77,79,80,79,84,85,86,87,88,89,69,90,91,76,81,95,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,69,101,90,91,75,102,76,81,80,79,84,85,86,87,88,89,69,90,91,76,95,93,73,94,96,97,98,99,77,101,75,102,95,93,73,94,96,97,98,99,100,77,101,75,102,95,93,73,94,96,97,98,99,100,77,101,75,102,81,83,83,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,69,101,90,91,75,102,76,109,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,69,101,90,91,75,102,76,109,80,79,84,85,86,87,88,89,69,90,91,76,93,97,77,75,102,69,69,69,69,69,69,69,69,69,69,69,69,69,69,0,93,73,80,94,79,84,97,85,98,86,99,87,88,89,77,69,90,91,75,102,76,109,93,73,80,94,79,84,97,85,98,86,99,87,88,89,77,69,90,91,75,102,76,109,81,95,93,73,80,80,94,79,79,96,84,84,97,85,98,86,99,87,88,89,100,77,69,69,101,90,91,75,102,76,76,93,73,94,96,99,77,69,75,102,76,93,80,102,76,86,87,69,69,69,81,81,81,81,73,80,80,94,79,79,84,84,97,85,85,86,86,87,87,88,88,89,89,77,69,69,90,90,91,91,75,76,76,0,93,73,94,77,75,102,77,77,93,73,94,77,75,102,93,73,94,77,75,102,73,94,77,75,73,94,77,75,73,75,88,90,91,81,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,69,101,90,91,75,102,76,109,93,73,73,73,80,80,80,80,80,94,94,79,79,79,79,96,96,96,84,84,84,97,97,85,85,85,85,98,86,86,86,99,87,87,87,88,88,89,89,89,100,77,77,77,69,69,69,69,101,90,90,90,91,91,75,75,75,102,76,76,76,76,76,109,69,79,69,93,73,80,94,79,85,77,69,75,102,76,73,80,75,76,80,94,79,85,77,69,76,93,73,80,94,79,77,69,75,102,76,93,73,80,94,79,77,69,75,102,76,73,80,94,79,77,69,75,76,73,94,79,77,69,75,69,77,69,80,79,85,86,69,76,87,87,0,90,91,69,0,0,91,91,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,69,101,90,91,75,102,76,109,73,94,96,99,77,101,75,96,99,90,75,93,80,79,77,69,101,102,76,93,80,94,79,79,84,97,85,86,87,88,69,69,90,91,75,102,76,109,80,79,69,76,81,95,81,84,91,81,95,93,73,80,94,79,84,97,85,86,87,88,77,69,90,91,75,102,76,84,97,84,96,84,84,84,81,95,93,93,73,80,80,94,79,79,96,84,84,97,97,85,85,98,98,86,86,99,99,87,87,88,88,89,100,77,69,69,101,90,91,91,75,75,102,102,76,76,96,69,69,69,98,99,101,93,73,80,94,79,96,97,85,98,86,99,87,88,89,100,77,69,101,90,91,75,102,76,109,80,79,84,85,86,87,88,89,69,90,91,76,0,98,99,99,80,79,84,85,86,87,88,89,69,90,91,76,0,75,102,76,99,98,99,109,109,109,81,377,93,73,80,80,99,87,88,91,75,102,76,76,0,69,69,69,69,69,69,93,73,94,97,77,75,102,93,73,94,97,77,101,75,102,95,93,73,94,96,96,97,98,99,100,77,101,75,102,378,98,98,69,69,95,93,93,73,73,94,94,96,96,97,97,98,98,99,99,100,77,77,101,101,75,75,102,102,69,69,69,69,69,69,69,69,69,94,77,77,73,80,79,84,85,86,87,88,77,69,90,75,76,79,77,69,95,93,93,73,73,94,94,96,96,97,97,98,98,99,99,100,77,77,101,101,75,75,102,102,97,85,98,86,109,81,80,80,79,79,84,84,85,85,86,86,87,87,88,88,89,89,69,69,90,90,91,91,76,76,81,80,80,79,79,84,84,85,85,86,86,87,87,88,88,89,89,69,69,90,90,91,91,76,76,81,80,79,84,85,86,87,88,89,69,90,91,76,81,80,79,84,85,86,87,88,89,69,90,91,76,69,69,69,85,77,69,81,80,79,84,85,86,87,88,89,69,90,91,76,93,73,80,94,79,84,97,85,98,86,99,87,88,89,77,69,90,91,75,102,76,109,156,93,73,94,96,98,99,77,75,102,99,157,93,73,94,97,98,99,77,75,102,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,69,101,90,91,75,102,76,109,93,97,85,102,84,73,80,94,79,77,75,76,73,80,94,79,77,75,76,87,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,69,101,90,91,75,102,76,109,93,73,80,94,79,84,97,85,86,87,88,89,77,69,101,90,91,75,102,76,84,76,158,93,73,94,96,97,98,99,77,75,102,98,99,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,69,101,90,91,75,102,76,109,91,81,95,93,73,80,80,94,79,79,96,84,84,97,85,85,98,86,86,99,87,87,88,89,100,77,69,69,101,90,90,91,75,102,76,76,93,80,79,84,97,85,86,87,88,69,101,91,75,102,76,93,80,79,97,85,86,87,88,69,91,75,102,76,377,93,73,80,80,94,79,96,84,97,85,98,86,99,87,77,69,101,90,75,102,76,76,73,80,94,79,84,85,86,87,88,77,69,90,75,76,84,97,77,93,73,75,102,93,73,94,97,99,77,75,102,77,81,73,80,80,79,79,84,84,85,85,86,86,87,87,88,88,89,69,69,90,90,91,76,76,79,69,69,69,69,0,0,0,0,0,0,0,0,0,0,0,0,0,116,127,117,120,124,125,122,123,126,121,128,119,162,162,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,124,162,116,127,117,120,124,125,122,123,126,121,128,119,162,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,162,116,127,117,120,124,125,122,123,126,121,128,119,0,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,0,0,0,0,0,0,0,0,130,168,146,0,130,146,0,0,130,146,146,130,146,146,130,146,146,130,168,146,130,168,146,146,0,130,146,130,168,146,130,168,146,130,146,130,146,146,146,146,146,146,146,130,168,146,130,130,130,168,146,146,0,130,130,130,146,146,146,130,146,130,146,130,130,146,130,146,130,130,130,168,146,130,130,130,168,146,130,130,146,130,146,130,146,130,130,168,146,130,168,168,130,146,168,130,146,130,0,146,146,146,0,146,146,146,146,168,130,130,130,130,0,130,168,146,130,168,146,130,146,130,146,130,168,146,130,146,130,168,146,0,0,130,146,0,146,0,0,0,0,0,0,0,133,133,0,0,0,132,170,171,133,172,167,173,132,170,171,133,172,167,173,132,170,171,133,0,132,170,171,133,132,170,171,133,0,0,172,167,173,132,170,171,133,172,167,173,132,170,171,133,166,0,0,172,167,173,132,170,171,133,172,167,173,132,170,171,133,172,0,172,167,172,167,173,132,170,171,133,133,172,167,173,132,170,171,133,132,171,133,132,171,133,379,172,172,167,167,173,379,379,379,172,167,167,173,0,0,0,172,167,173,132,171,133,170,166,132,170,171,133,172,167,173,132,170,171,133,172,167,173,132,170,171,133,172,167,173,132,170,171,133,133,133,0,0,129,129,169,129,169,129,129,129,129,169,129,129,129,169,169,169,129,129,129,129,129,129,169,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,169,129,169,129,169,129,0,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,380,0,0,0,0,0,0,0,0,0,380,380,0,0,0,0,0,380,380,0,0,380,380,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,383,384,385,386,387,0,0,388,0,0,389,0,0,390,391,392,0,393,394,395,396,0,397,0,0,398,399,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,189,189,0,0,189,189,0,0,0,0,0,0,189,0,0,0,0,0,0,189,189,0,189,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,189,189,189,0,0,0,0,0,0,0,0,0,189,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0,0,402,402,0,403,0,403,0,0,0,403,0,403,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,110,200,110,0,110,110,204,110,110,203,200,110,110,110,0,200,110,200,110,110,110,110,201,110,201,110,201,110,201,110,0,110,0,200,110,200,110,200,110,200,110,200,110,0,195,195,204,195,200,110,0,200,0,0,0,195,203,200,110,110,110,0,110,201,110,201,110,201,110,201,110,200,110,0,200,110,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,114,202,114,200,201,202,110,203,195,204,200,114,200,201,202,110,203,195,204,202,202,114,200,201,202,110,203,195,204,114,200,201,202,202,110,110,110,203,195,204,0,114,200,201,110,203,195,204,114,200,201,202,110,203,195,204,203,114,203,114,202,114,114,203,110,114,200,201,202,110,203,195,204,110,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,202,0,131,131,131,131,131,131,131,0,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,0,0,0,0,219,216,217,218,219,216,217,218,216,217,218,216,217,218,0,0,0,219,216,217,218,219,216,217,218,0,0,219,216,217,218,0,219,219,216,217,218,219,216,217,218,219,219,216,217,218,0,0,0,0,0,0,0,0,220,221,0,220,221,220,221,220,221,220,221,220,220,220,221,220,221,220,221,220,221,220,221,221,0,220,221,220,221,220,221,220,221,0,0,213,0,0,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,0,227,0,0,0,213,213,227,222,223,222,224,227,225,213,222,223,224,227,225,213,222,223,222,223,222,223,0,213,222,223,224,227,225,213,222,223,224,224,227,225,213,222,223,224,224,225,222,223,225,224,225,224,225,224,225,0,0,0,0,224,225,222,223,224,222,222,223,224,227,225,213,222,223,224,227,225,213,222,223,224,227,225,213,222,223,227,223,404,405,405,404,406,406,407,408,404,404,0,0,228,0,0,0,228,228,229,230,231,228,229,230,231,228,229,228,229,228,229,229,232,0,228,229,228,229,0,230,231,228,229,230,231,228,229,229,229,229,231,228,230,231,228,229,230,231,230,231,0,231,230,231,0,228,229,230,231,228,229,231,230,231,228,229,231,230,231,228,229,0,230,231,0,237,237,237,237,237,237,237,237,237,237,237,237,0,0,232,238,232,238,232,232,232,232,232,232,232,232,238,232,232,238,232,238,238,238,238,238,232,238,232,238,232,238,232,0,0,0,0,241,0,0,0,241,0,0,0,0,0,0,0,0,0,252,241,239,240,242,243,244,245,246,247,248,249,250,251,252,253,239,240,244,245,246,241,241,239,240,242,243,244,245,246,247,248,249,250,251,252,239,240,242,243,244,245,246,247,248,249,250,251,252,241,252,252,0,241,0,241,241,252,241,239,240,242,243,244,245,246,247,248,249,250,251,252,241,241,239,240,242,243,244,245,246,247,248,249,250,251,252,239,240,242,243,244,245,246,247,248,249,250,251,252,241,241,241,251,252,241,243,246,253,246,241,241,241,239,240,242,243,244,245,246,247,248,249,250,241,241,241,241,252,239,240,242,243,244,245,246,247,248,249,250,251,252,239,240,242,243,244,245,246,247,248,249,250,251,252,239,240,242,243,244,245,246,247,248,249,250,251,252,0,0,241,0,0,241,0,254,241,254,241,241,255,254,255,254,241,254,254,241,241,241,254,241,255,254,241,241,254,255,254,255,255,241,241,241,255,254,241,255,241,241,241,241,241,241,241,254,255,254,255,254,255,254,0,0,0,0,302,270,272,302,0,0,0,282,0,270,272,270,272,0,282,302,270,272,241,409,0,207,207,0,0,261,302,302,0,294,0,272,302,272,302,272,272,302,270,272,207,241,409,270,272,271,273,271,269,269,0,269,0,0,207,0,0,0,0,0,0,0,0,273,0,0,294,0,0,0,0,261,0,270,273,0,270,272,272,270,272,272,272,272,272,272,270,272,270,268,268,207,207,256,266,267,268,269,270,271,272,273,0,0,0,241,409,263,264,265,241,241,266,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,241,256,207,256,266,267,268,269,270,271,272,273,207,256,266,267,268,269,270,271,272,273,256,256,0,258,267,256,267,256,241,0,0,258,256,0,256,266,256,266,269,270,271,272,273,269,270,271,272,273,0,256,256,241,241,207,207,256,266,267,268,269,270,271,261,265,272,273,280,241,263,264,290,207,207,207,207,207,207,207,207,256,266,267,268,269,269,270,271,261,265,272,296,298,299,300,273,280,241,241,409,263,264,265,0,0,0,0,0,256,269,270,271,272,256,0,0,0,0,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,263,264,290,290,296,298,299,300,256,258,280,241,241,241,256,0,280,263,264,290,256,266,267,265,296,298,299,300,280,290,241,290,296,298,299,300,241,267,300,258,256,268,266,256,241,207,0,0,0,0,0,0,0,258,0,298,258,241,299,241,241,0,256,290,241,241,0,207,256,266,267,268,269,270,271,272,273,207,267,263,264,290,207,256,266,267,268,269,270,270,271,271,261,265,272,272,296,298,299,300,273,280,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,256,258,410,410,410,410,411,412,411,412,0,0,0,0,307,307,306,297,306,297,307,308,306,297,307,308,306,297,306,297,0,306,297,307,308,306,297,306,297,307,308,306,297,307,307,308,0,306,297,306,297,307,308,306,297,308,308,306,308,297,0,0,297,306,297,306,297,306,297,307,308,306,297,307,308,306,297,307,308,0,294,0,0,294,0,258,258,0,316,258,258,0,0,258,258,316,258,410,410,410,410,0,309,309,0,309,309,309,309,309,309,309,309,309,309,309,313,302,319,0,302,313,0,0,0,0,282,281,313,313,313,0,282,281,302,0,0,0,241,0,0,0,0,0,302,302,294,319,0,302,302,302,241,0,315,315,319,319,319,0,0,0,0,313,313,315,294,313,313,0,0,0,319,315,0,319,324,324,0,0,319,0,316,293,317,258,318,319,320,321,322,313,302,323,294,324,315,312,241,310,311,241,241,0,0,0,0,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,282,241,0,294,316,293,317,258,318,319,320,321,322,313,302,323,294,324,315,312,316,293,317,258,318,319,320,321,322,313,302,323,294,324,315,312,316,317,258,317,258,318,0,326,326,312,320,321,322,241,317,258,312,320,321,322,317,327,316,293,317,319,320,321,322,313,302,323,294,324,315,312,316,293,317,319,320,321,322,313,302,323,324,312,0,318,241,241,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,315,312,317,241,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,294,294,294,241,241,310,311,294,0,316,293,317,319,320,321,322,313,302,323,324,326,323,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,310,327,327,314,334,258,281,316,258,317,258,315,241,241,241,293,293,335,318,294,323,310,314,311,316,317,318,326,310,241,314,334,241,317,258,0,326,327,335,327,334,335,316,317,335,335,335,241,293,316,316,317,317,323,0,317,258,258,327,335,317,258,326,326,241,314,311,241,241,0,0,335,326,316,316,317,317,241,241,0,0,316,293,317,258,318,319,320,321,322,313,302,323,294,324,315,312,0,0,0,0,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,313,302,302,323,294,324,327,334,335,315,312,318,294,258,294,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,320,321,322,327,334,335,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,326,316,317,258,312,327,0,0,0,312,316,317,316,317,410,410,410,410,0,0,0,0,0,145,142,145,142,145,142,145,142,142,145,145,142,145,142,145,142,142,145,142,145,145,142,145,142,145,145,142,142,142,145,142,145,142,142,145,142,145,142,145,142,142,145,142,145,142,145,145,142,145,145,142,142,145,142,145,142,145,142,145,145,145,145,145,145,142,142,142,142,145,145,145,142,145,145,145,142,145,0,0,0,0,0,0,0,0,0,0,0,0,0,341,184,342,343,187,344,345,346,347,348,349,350,135,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,135,341,184,342,343,187,344,345,346,347,348,349,350,346,135,341,184,342,343,187,344,345,346,347,348,349,350,184,342,343,187,346,349,341,184,342,343,187,344,345,346,347,348,349,350,341,184,184,342,342,343,343,187,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,135,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,0,184,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,349,350,344,345,347,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,205,192,205,205,205,72,0,0,205,205,205,205,205,205,205,0,0,74,0,205,205,205,205,190,186,192,357,205,174,359,360,190,186,192,357,205,174,359,360,190,186,192,357,205,190,186,192,357,205,190,186,192,357,205,357,190,186,0,190,186,192,357,190,186,192,357,205,190,186,357,205,0,190,190,186,186,192,192,357,357,205,174,359,360,190,186,192,357,205,199,74,190,186,192,357,192,192,74,190,186,192,357,166,199,357,190,186,357,205,0,174,359,360,190,186,192,357,205,174,359,360,190,186,192,357,190,186,0,190,186,357,174,359,360,190,186,174,359,360,186,357,199,199,0,174,359,360,74,190,186,192,357,192,192,74,190,186,192,357,166,190,186,192,357,205,190,186,192,357,199,174,359,360,190,186,192,357,205,174,359,360,190,186,192,357,205,174,359,360,190,186,192,357,205,413,0,413,413,413,0,0,177,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,413,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,0,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,0,0,0,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,414,413,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,413,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,0,0,0,0,0,0,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,0,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,413,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,0,0,0,0,0,0,0],"f":[0,0,0,0,[1],[1],[[[3,[2,2]],4],5],[[[3,[2,2]],4],5],0,[[[3,[[7,[6]],[7,[6]]]]],6],[[[3,[[7,[8]],[7,[8]]]]],8],[[[3,[[7,[9]],[7,[9]]]]],9],[[[3,[7,7]]]],[[[3,[[7,[10]],[7,[10]]]]],10],[3,3],[[[3,[[7,[11]],[7,[11]]]]],11],[[[12,[3]]],[[3,[12,12]]]],[[[12,[3]]],[[3,[12,12]]]],[[[3,[[13,[6]],[13,[6]]]]],6],[3,3],[[[3,[[13,[9]],[13,[9]]]]],9],[[[3,[[13,[11]],[13,[11]]]]],11],[[[3,[[13,[10]],[13,[10]]]]],10],[[[3,[13,13]]]],[[[3,[[13,[8]],[13,[8]]]]],8],0,[[]],[[]],[[]],[[]],0,[[[3,[14,14]]],[[15,[14]]]],0,[[[3,[16,16]]],[[3,[16,16]]]],[[[17,[16,16,16]]],[[17,[16,16,16]]]],[[[3,[16,16]],[3,[16,16]]]],[[]],[[]],[[[3,[18,18]],[3,[18,18]]],19],[[[3,[2,2]]],20],0,[[[3,[21,21]],22]],[[[3,[2,2]]],22],0,[[],[[17,[23]]]],[[[3,[24,24]]]],[17],[[[3,[25,25]]]],[17],[[[3,[14,14]]],9],[[3,26,26]],[[[3,[27,27]]]],[[3,26,26]],[[[3,[[28,[[28,[[28,[28]]]]]],[28,[[28,[[28,[28]]]]]]]],[3,[[28,[[28,[[28,[28]]]]]],[28,[[28,[[28,[28]]]]]]]]],5],[[[17,[[0,[29,30]],[28,[[28,[[28,[28]]]]]],31]],[17,[[0,[29,30]],[28,[[28,[[28,[28]]]]]],31]]],5],[[],5],[[],5],0,[[[3,[32]],9]],[[[3,[32]],9]],[[[3,[33,33]],34]],[[[17,[[0,[29,30]],31]],34]],[[[17,[[0,[29,30,35]],35,31]],34]],[[[3,[36,36]]],[[36,[3]]]],[3],[[[3,[15,15]]],[[15,[3]]]],[[[3,[36,36]]],[[36,[3]]]],[3],0,[[[3,[21,21]]],[[36,[[10,[37]],38]]]],[[[3,[2,2]],4],15],[[[3,[2,2]],4],15],[3,3],[[[3,[39,39]]],[[36,[38]]]],[[[3,[32,32]],40],[[36,[41]]]],[[[3,[42,42]],40],[[36,[41]]]],[[[17,[32,32,31]],40],[[36,[41]]]],[[[3,[2,2]],4]],[[[3,[2,2]],4]],[[]],[36,3],[[[43,[23]]],[[17,[23]]]],[[]],[44,[[17,[[0,[29,30]],23]]]],[34,[[17,[[0,[29,30]],23]]]],[[[17,[[46,[[0,[30,29,45]]]],[0,[30,29]],31]],[0,[30,29,45]]],15],[[[17,[[46,[[0,[30,29,45]]]],[0,[30,29]],31]],[0,[30,29,45]]],15],[[[17,[[46,[[0,[30,29,45]]]],[0,[30,29]],31]],[0,[30,29,45]]],15],[[[3,[30,30]],47]],[[[17,[[0,[29,30,[46,[[0,[29,30,45]]]]]],31]],[0,[29,30,45]]]],[[[17,[[0,[30,29]],31]],[0,[30,29]]],15],[[]],[3,36],[[]],[[[17,[23]]],[[43,[23]]]],[[]],[3],[[[3,[34,34]]],3],[[]],[17],[17],[17],[[[17,[[0,[30,29]],31]]],[[48,[[0,[30,29]]]]]],[[[17,[[0,[30,29]],31]]],[[49,[[0,[30,29]]]]]],0,[3,5],[3,5],[[[3,[2,2]]],15],[3,15],[[3,26],3],[3],[[[3,[50]]],50],[[3,26]],[[[3,[51,51]]],22],[[3,26],3],[[3,26,26],3],[[3,26,26],3],[[3,26],3],[[3,26],3],0,[[],[[17,[23]]]],[[[3,[2,2]]],15],[[[3,[52,52]]],15],[[[3,[2,2]],22],15],0,[[[3,[[53,[[53,[[53,[53]]]]]],[53,[[53,[[53,[53]]]]]]]],[3,[[53,[[53,[[53,[53]]]]]],[53,[[53,[[53,[53]]]]]]]]],[[15,[19]]]],[[[3,[2,2]],4]],[[[12,[[3,[54,54]]]],55],56],[[[3,[2,2]],4],[[15,[22]]]],[57],[[[3,[58,58]],[10,[37]]],[[36,[22,38]]]],[[[3,[58,58]],[10,[37]]],[[36,[38]]]],[[[3,[21,21]],59],[[36,[22,38]]]],[[[3,[58,58]],[61,[37,60]]],[[36,[22,38]]]],[[[3,[58,58]],59],[[36,[22,38]]]],[[[3,[21,21]],37,[61,[37,60]]],[[36,[22,38]]]],[[],[[36,[62,38]]]],[[[17,[[46,[[0,[30,29,45]]]],[0,[30,29]],31]],[0,[30,29,45]]],15],[[[3,[52,52]],4],15],[[[3,[52,52]],4]],[3,15],[[3,26],3],[3],[[[3,[50]]],50],[[3,26]],0,[[[3,[63,63]],64],[[36,[65,38]]]],[[[3,[2,2]]]],[[[3,[14,14]]],[[15,[14]]]],0,[[]],[[]],[[],59],0,[[],36],[[],36],[[],36],[[],36],[[12,55],56],[[],66],[[],66],0,[[[3,[32]]]],[[[3,[32]]]],0,[22,[[17,[23]]]],[[22,31],[[17,[31]]]],[31,[[17,[31]]]],[[[3,[39,39]],[10,[37]]],[[36,[22,38]]]],[[[3,[39,39]],[10,[37]]],[[36,[38]]]],[[[3,[39,39]],67],[[36,[38]]]],[62,[[36,[22,38]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[70,71]]]],[0,[70,71]]],[[69,[[0,[70,71]]]]]],[[[69,[[0,[70,71]]]],[69,[[0,[70,71]]]]],[[69,[[0,[70,71]]]]]],[[],5],[[],5],[[[73,[72]],26]],[[[69,[74]],26]],[[[75,[72]],26]],[[[76,[72]],26]],[[[77,[74]],78]],[[79,78]],[[[80,[72]]],[[82,[81]]]],[79,[[82,[81]]]],[[[84,[83]]],[[82,[81]]]],[85,[[82,[81]]]],[86,[[82,[81]]]],[[[87,[72]]],[[82,[81]]]],[88,[[82,[81]]]],[89,[[82,[81]]]],[[[69,[74]]],[[82,[81]]]],[90,[[82,[81]]]],[91,[[82,[81]]]],[[[76,[72]]],[[82,[81]]]],[[],92],[[],92],[[[93,[72]]],92],[[[73,[72]]],92],[[[80,[72]]],92],[94,92],[79,92],[[[96,[83,95]]],92],[[[84,[83]]],92],[97,92],[85,92],[[[98,[95]]],92],[86,92],[[[99,[72,95]]],92],[[[87,[72]]],92],[88,92],[89,92],[100,92],[[[77,[74]]],92],[[[69,[74]]],92],[101,92],[90,92],[91,92],[[[75,[72]]],92],[[[102,[72]]],92],[[[76,[72]]],92],[[],92],[[[80,[72]]],92],[79,92],[[[84,[83]]],92],[85,92],[86,92],[[[87,[72]]],92],[88,92],[89,92],[[[69,[74]]],92],[90,92],[91,92],[[[76,[72]]],92],[[],[[82,[81]]]],[[[93,[72]]],[[82,[81]]]],[[[73,[72]]],[[82,[81]]]],[94,[[82,[81]]]],[[[96,[83,95]]],[[82,[81]]]],[97,[[82,[81]]]],[[[98,[95]]],[[82,[81]]]],[[[99,[72,95]]],[[82,[81]]]],[[[77,[74]]],[[82,[81]]]],[101,[[82,[81]]]],[[[75,[72]]],[[82,[81]]]],[[[102,[72]]],[[82,[81]]]],[[],[[103,[81]]]],[[[93,[72]]],[[103,[81]]]],[[[73,[72]]],[[103,[81]]]],[94,[[103,[81]]]],[[[96,[83,95]]],[[103,[81]]]],[97,[[103,[81]]]],[[[98,[95]]],[[103,[81]]]],[[[99,[72,95]]],[[103,[81]]]],[100,[[103,[81]]]],[[[77,[74]]],[[103,[81]]]],[101,[[103,[81]]]],[[[75,[72]]],[[103,[81]]]],[[[102,[72]]],[[103,[81]]]],[[],92],[[[93,[72]]],92],[[[73,[72]]],92],[94,92],[[[96,[83,95]]],92],[97,92],[[[98,[95]]],92],[[[99,[72,95]]],92],[100,92],[[[77,[74]]],92],[101,92],[[[75,[72]]],92],[[[102,[72]]],92],[81,81],[[],22],[[],22],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[80,[72]]],[[103,[81]]]],[79,[[103,[81]]]],[[[84,[83]]],[[103,[81]]]],[85,[[103,[81]]]],[86,[[103,[81]]]],[[[87,[72]]],[[103,[81]]]],[88,[[103,[81]]]],[89,[[103,[81]]]],[[[69,[74]]],[[103,[81]]]],[90,[[103,[81]]]],[91,[[103,[81]]]],[[[76,[72]]],[[103,[81]]]],[[[93,[72]]],22],[97,22],[[[77,[74]]],22],[[[75,[72]]],22],[[[102,[72]]],22],[[[69,[[0,[70,104]]]],[69,[[0,[70,104]]]]],[[69,[[0,[70,104]]]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[70,104]]]],[0,[70,104]]],[[69,[[0,[70,104]]]]]],[[[69,[[0,[70,105]]]],[0,[70,105]]],[[69,[[0,[70,105]]]]]],[[[69,[[0,[70,105]]]],[69,[[0,[70,105]]]]],[[69,[[0,[70,105]]]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[70,106]]]],[0,[70,106]]],[[69,[[0,[70,106]]]]]],[[[69,[[0,[70,106]]]],[69,[[0,[70,106]]]]],[[69,[[0,[70,106]]]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[70,107]]]],[0,[70,107]]],[[69,[[0,[70,107]]]]]],[[[69,[[0,[70,107]]]],[69,[[0,[70,107]]]]],[[69,[[0,[70,107]]]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[70,108]]]],[69,[[0,[70,108]]]]],[[69,[[0,[70,108]]]]]],[[[69,[[0,[70,108]]]],[0,[70,108]]],[[69,[[0,[70,108]]]]]],[81,[[103,[81]]]],[[[93,[[0,[16,72]]]]],[[93,[[0,[16,72]]]]]],[[[73,[[0,[16,72]]]]],[[73,[[0,[16,72]]]]]],[[[80,[[0,[16,72]]]]],[[80,[[0,[16,72]]]]]],[94,94],[79,79],[[[84,[[0,[16,83]]]]],[[84,[[0,[16,83]]]]]],[97,97],[85,85],[[[98,[[0,[16,95]]]]],[[98,[[0,[16,95]]]]]],[86,86],[[[99,[[0,[16,72]],[0,[16,95]]]]],[[99,[[0,[16,72]],[0,[16,95]]]]]],[[[87,[[0,[16,72]]]]],[[87,[[0,[16,72]]]]]],[88,88],[89,89],[[[77,[[0,[16,74]]]]],[[77,[[0,[16,74]]]]]],[[[69,[[0,[16,74]]]]],[[69,[[0,[16,74]]]]]],[90,90],[91,91],[[[75,[[0,[16,72]]]]],[[75,[[0,[16,72]]]]]],[[[102,[[0,[16,72]]]]],[[102,[[0,[16,72]]]]]],[[[76,[[0,[16,72]]]]],[[76,[[0,[16,72]]]]]],[[[109,[[0,[16,0]]]]],[[109,[[0,[16,0]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],110],[[],110],[[[93,[72]]],110],[[[73,[72]]],110],[[[80,[72]]],110],[[[80,[72]]],110],[94,110],[79,110],[79,110],[[[96,[83,95]]],110],[[[84,[83]]],110],[[[84,[83]]],110],[97,110],[85,110],[[[98,[95]]],110],[86,110],[[[99,[72,95]]],110],[[[87,[72]]],110],[88,110],[89,110],[100,110],[[[77,[74]]],110],[[[69,[74]]],110],[[[69,[74]]],110],[101,110],[90,110],[91,110],[[[75,[72]]],110],[[[102,[72]]],110],[[[76,[72]]],110],[[[76,[72]]],110],[[],[[93,[72]]]],[[],[[73,[72]]]],[[],94],[[],[[96,[83,[0,[95,50]]]]]],[[],[[99,[72,[0,[95,50]]]]]],[[],[[77,[74]]]],[[],[[69,[74]]]],[[],[[75,[72]]]],[[],[[102,[72]]]],[[],[[76,[72]]]],[[],110],[[],110],[[],110],[[],110],[[110,22],110],[110,110],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[70,111]]]],[69,[[0,[70,111]]]]],[[69,[[0,[70,111]]]]]],[[[69,[[0,[70,111,112]]]],[0,[70,111,112]]],[[69,[[0,[70,111,112]]]]]],[[81,[80,[72]]],5],[[81,[69,[74]]],5],[[81,[76,[72]]],5],[[81,81],5],[[[73,[72]],[73,[72]]],5],[[[80,[72]],[80,[72]]],5],[[[80,[72]],81],5],[[94,94],5],[[79,79],5],[[79,81],5],[[[84,[83]],81],5],[[[84,[83]],[84,[83]]],5],[[97,97],5],[[85,81],5],[[85,85],5],[[86,81],5],[[86,86],5],[[[87,[72]],[87,[72]]],5],[[[87,[72]],81],5],[[88,81],5],[[88,88],5],[[89,89],5],[[89,81],5],[[[77,[74]],[77,[74]]],5],[[[69,[74]],[69,[74]]],5],[[[69,[74]],81],5],[[90,90],5],[[90,81],5],[[91,81],5],[[91,91],5],[[[75,[72]],[75,[72]]],5],[[[76,[72]],[76,[72]]],5],[[[76,[72]],81],5],[[81,81],5],[[[93,[72]],34]],[[[73,[72]],34]],[[94,34]],[[[77,[74]],34]],[[[75,[72]],34]],[[[102,[72]],34]],[[[77,[74]],22,[15,[74]]]],[[[77,[74]],[10,[74]]]],[[[93,[72]],113]],[[[73,[72]],113]],[[94,113]],[[[77,[74]],113]],[[[75,[72]],113]],[[[102,[72]],113]],[[[93,[72]],2]],[[[73,[72]],2]],[[94,2]],[[[77,[74]],2]],[[[75,[72]],2]],[[[102,[72]],2]],[[[73,[72]],113]],[[94,113]],[[[77,[74]],113]],[[[75,[72]],113]],[[[73,[72]],2]],[[94,2]],[[[77,[74]],2]],[[[75,[72]],2]],[[[73,[72]],2]],[[[75,[72]],2]],[88,[[103,[81]]]],[90,[[10,[114]]]],[91,[[61,[[103,[81]]]]]],[[81,40],115],[[[93,[[0,[32,72]]]],40],115],[[[73,[[0,[32,72]]]],40],115],[[[80,[72]],40],115],[[94,40],115],[[79,40],115],[[[96,[[0,[32,83]],[0,[32,95]]]],40],115],[[[84,[83]],40],115],[[97,40],115],[[85,40],115],[[[98,[[0,[32,95]]]],40],115],[[86,40],115],[[[99,[[0,[32,72]],[0,[32,95]]]],40],115],[[[87,[72]],40],115],[[88,40],115],[[89,40],115],[[100,40],115],[[[77,[[0,[32,74]]]],40],115],[[[69,[74]],40],115],[[101,40],115],[[90,40],115],[[91,40],115],[[[75,[[0,[32,72]]]],40],115],[[[102,[[0,[32,72]]]],40],115],[[[76,[72]],40],115],[[[109,[[0,[32,0]]]],40],115],[[]],[[[13,[[10,[[15,[[13,[[10,[37]]]]]]]]]]],[[73,[72]]]],[[]],[[[93,[72]]],[[73,[72]]]],[[[93,[72]]],[[80,[72]]]],[[[73,[72]]],[[80,[72]]]],[[[13,[[10,[[15,[[13,[[10,[37]]]]]]]]]]],[[80,[72]]]],[[]],[[[116,[72]]],[[80,[72]]]],[[[13,[[10,[[15,[5]]]]]]],94],[[]],[94,79],[[[13,[[10,[[15,[5]]]]]]],79],[117,79],[[]],[[]],[95,[[96,[83,95]]]],[118],[[[119,[83]]],[[84,[83]]]],[[]],[[[96,[83,95]]],[[84,[83]]]],[[[13,[[10,[[15,[[44,[37]]]]]]]]],97],[[]],[[[13,[[10,[[15,[[44,[37]]]]]]]]],85],[120,85],[[]],[97,85],[[]],[[[98,[95]]],86],[121,86],[[]],[[]],[[[99,[72,95]]],[[87,[72]]]],[[]],[[[122,[72]]],[[87,[72]]]],[[]],[123,88],[100,89],[124,89],[[]],[[]],[110,[[77,[74]]]],[[[13,[[10,[[15,[74]]]]]]],[[77,[74]]]],[[]],[[[77,[74]]],[[69,[74]]]],[[[125,[74]]],[[69,[74]]]],[[]],[[[13,[[10,[[15,[74]]]]]]],[[69,[74]]]],[[]],[[]],[101,90],[126,90],[[]],[127,91],[[[13,[[10,[[15,[[13,[9]]]]]]]]],[[75,[72]]]],[[]],[[[102,[72]]],[[75,[72]]]],[[]],[[[102,[72]]],[[76,[72]]]],[[[75,[72]]],[[76,[72]]]],[[[128,[72]]],[[76,[72]]]],[[[13,[[10,[[15,[[13,[9]]]]]]]]],[[76,[72]]]],[[]],[[]],[[110,[129,[74]],[15,[130]]],[[36,[[69,[74]],131]]]],[[110,130,[15,[130]]],79],[[110,[129,[74]],[15,[130]]],[[69,[74]]]],[34,[[93,[72]]]],[34,[[73,[72]]]],[34,[[80,[72]]]],[34,94],[34,79],[[34,22],85],[34,[[77,[74]]]],[34,[[69,[74]]]],[34,[[75,[72]]]],[34,[[102,[72]]]],[34,[[76,[72]]]],[2,[[73,[72]]]],[2,[[80,[72]]]],[2,[[75,[72]]]],[2,[[76,[72]]]],[[[13,[[10,[[13,[[10,[37]]]]]]]]],[[80,[72]]]],[[[13,[[10,[5]]]]],94],[[[13,[[10,[5]]]]],79],[[[13,[[10,[[44,[37]]]]]]],85],[[[13,[[10,[74]]]]],[[77,[74]]]],[[[13,[[10,[74]]]]],[[69,[74]]]],[[[13,[[10,[[13,[9]]]]]]],[[76,[72]]]],[113,[[93,[72]]]],[113,[[73,[72]]]],[113,[[80,[72]]]],[113,94],[113,79],[113,[[77,[74]]]],[113,[[69,[74]]]],[113,[[75,[72]]]],[113,[[102,[72]]]],[113,[[76,[72]]]],[2,[[93,[72]]]],[2,[[73,[72]]]],[2,[[80,[72]]]],[2,94],[2,79],[2,[[77,[74]]]],[2,[[69,[74]]]],[2,[[75,[72]]]],[2,[[102,[72]]]],[2,[[76,[72]]]],[113,[[73,[72]]]],[113,[[80,[72]]]],[113,94],[113,79],[113,[[77,[74]]]],[113,[[69,[74]]]],[113,[[75,[72]]]],[113,[[76,[72]]]],[2,[[73,[72]]]],[2,94],[2,79],[2,[[77,[74]]]],[2,[[69,[74]]]],[2,[[75,[72]]]],[34,[[69,[74]]]],[[[61,[74]]],[[77,[74]]]],[[[61,[74]]],[[69,[74]]]],[[[80,[72]],22],[[15,[[10,[37]]]]]],[[79,22],[[15,[5]]]],[[85,22],[[15,[[10,[37]]]]]],[[86,22],[[15,[[103,[81]]]]]],[[[69,[74]],22],[[15,[74]]]],[[[76,[72]],22],[[15,[9]]]],[110,114],[110,110],[[81,9],[[103,[78]]]],[110,[[10,[114]]]],[110,[[10,[114]]]],[[[69,[74]]],[[15,[[10,[74]]]]]],[[81,9],[[103,[78]]]],0,[[91,22]],[[91,22]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[73,[72]]],[[82,[81]]]],[94,[[82,[81]]]],[[[96,[83,95]]],[[82,[81]]]],[[[99,[72,95]]],[[82,[81]]]],[[[77,[74]]],[[82,[81]]]],[101,[[82,[81]]]],[[[75,[72]]],[[82,[81]]]],[[[96,[83,95]]],[[103,[81]]]],[[[99,[72,95]]],[[103,[81]]]],[90],[[[75,[72]]]],[[[93,[72]]]],[[[80,[72]]]],[79],[[[77,[74]]]],[[[69,[74]]]],[101],[[[102,[72]]]],[[[76,[72]]]],[[[93,[72]]]],[[[80,[72]]]],[94],[79],[79],[[[84,[83]]]],[97],[85],[86],[[[87,[72]]]],[88],[[[69,[74]]]],[[[69,[74]]]],[90],[91],[[[75,[72]]]],[[[102,[72]]]],[[[76,[72]]]],[[]],[[[80,[72]]],[[3,[[80,[72]],[73,[72]]]]]],[79,[[3,[79,94]]]],[[[69,[74]]],[[3,[[69,[74]],[77,[74]]]]]],[[[76,[72]]],[[3,[[76,[72]],[75,[72]]]]]],[[],5],[[],5],[22,5],[[[84,[83]]],5],[110,5],[22,5],[22,5],[[[93,[72]]],[[109,[[93,[72]]]]]],[[[73,[72]]],[[133,[[10,[37]],[109,[[93,[72]]]],132]]]],[[[80,[72]]],[[133,[[10,[37]],[134,[72]],132]]]],[94,[[133,[5,132,132]]]],[79,[[133,[5,132,132]]]],[[[84,[83]]],[[133,[[103,[135]],[0,[83]],132]]]],[97,[[133,[[10,[37]],[136,[37]],132]]]],[85,[[133,[[10,[37]],[136,[37]],132]]]],[86,[[133,[[103,[81]],[109,[86]],132]]]],[[[87,[72]]],[[133,[[103,[81]],[137,[72]],132]]]],[88,[[133,[[103,[81]],0,132]]]],[[[77,[74]]],[[133,[74,[138,[74]],132]]]],[[[69,[74]]],[[133,[74,[138,[74]],132]]]],[90,[[133,[[61,[[103,[135]]]],0,132]]]],0,[[[75,[72]]],[[133,[9,[109,[[102,[72]]]],132]]]],[[[102,[72]]],[[109,[[102,[72]]]]]],[[[76,[72]]],[[133,[9,[139,[72]],132]]]],[[[84,[83]]],[[36,[[133,[[0,[83,0]],132]],131]]]],[97,[[136,[37]]]],[[[84,[83]],22],22],[[[96,[83,95]]],[[77,[83]]]],[[[84,[83]]],[[69,[83]]]],[[[84,[83]]],[[0,[113,16]]]],[[[84,[83]]],[[0,[113,16]]]],[[],22],[[],22],[[[93,[72]]],22],[[[93,[72]]],22],[[[73,[72]]],22],[[[80,[72]]],22],[[[80,[72]]],22],[94,22],[79,22],[79,22],[[[96,[83,95]]],22],[[[84,[83]]],22],[[[84,[83]]],22],[97,22],[97,22],[85,22],[85,22],[[[98,[95]]],22],[[[98,[95]]],22],[86,22],[86,22],[[[99,[72,95]]],22],[[[99,[72,95]]],22],[[[87,[72]]],22],[[[87,[72]]],22],[88,22],[88,22],[89,22],[100,22],[[[77,[74]]],22],[[[69,[74]]],22],[[[69,[74]]],22],[101,22],[90,22],[91,22],[91,22],[[[75,[72]]],22],[[[75,[72]]],22],[[[102,[72]]],22],[[[102,[72]]],22],[[[76,[72]]],22],[[[76,[72]]],22],[[[96,[83,95]]],[[140,[65,83]]]],[[[69,[[0,[70,141]]]],[0,[70,141]]],[[69,[[0,[70,141]]]]]],[[[69,[[0,[70,141]]]],[69,[[0,[70,141]]]]],[[69,[[0,[70,141]]]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[98,[95]]],95],[[[99,[72,95]]],95],[101,[[61,[[103,[95]]]]]],[[],[[93,[72]]]],[[],[[73,[72]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[80,[72]]]],[[],94],[[110,130,[15,[130]]],79],[[],[[96,[83,[0,[95,50]]]]]],[22,97],[[110,[129,[37]],[15,[130]]],85],[[95,22],[[98,[95]]]],[[110,[103,[81]],[15,[130]]],86],[[],[[99,[72,[0,[95,50]]]]]],[[110,[142,[72]],[103,[81]],[15,[130]]],[[87,[72]]]],[[110,[142,[143]],[103,[81]],[15,[130]]],88],[[110,22],89],[[110,22],100],[[],[[77,[74]]]],[[110,[129,[74]],[15,[130]]],[[69,[74]]]],[[110,[61,[[103,[95]]]]],101],[[110,[61,[[103,[81]]]],[15,[130]]],90],[[110,[129,[144]],[61,[[103,[81]]]],[15,[[129,[143]]]]],91],[[],[[75,[72]]]],[[],[[102,[72]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[76,[72]]]],0,[110,[[80,[72]]]],[110,79],[110,[[84,[83]]]],[110,85],[110,86],[110,[[87,[72]]]],[110,88],[110,89],[110,[[69,[74]]]],[110,90],[110,91],[110,[[76,[72]]]],[110,[[103,[81]]]],[[95,110,22],[[98,[95]]]],[[95,110,22],[[99,[72,95]]]],[[95,[145,[72]],[15,[146]]],[[99,[72,95]]]],[[110,22],[[80,[72]]]],[[110,22],79],[[110,22],[[84,[83]]]],[[110,22],85],[[110,22],86],[[110,22],[[87,[72]]]],[[110,22],88],[[110,22],89],[[110,22],[[69,[74]]]],[[110,22],90],[[110,22],91],[[110,22],[[76,[72]]]],[[110,22],[[103,[81]]]],[[110,[145,[72]],[61,[37]],[15,[146]]],[[75,[72]]]],[[110,[145,[72]],[61,[37]]],[[102,[72]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[76,[72]]]],[[95,22],[[99,[72,95]]]],[[95,9,5,22],[[98,[95]]]],[[95,9,5],[[99,[72,95]]]],[[[109,[0]]],15],[[[109,[0]]],15],[[[109,[0]],22],15],[[],22],[[],10],[[[93,[72]]],[[145,[72]]]],[[[73,[72]]],[[145,[72]]]],[[[80,[72]]],[[142,[72]]]],[[[80,[72]]],[[10,[72]]]],[[[99,[72,95]]],[[145,[72]]]],[[[87,[72]]],[[142,[72]]]],[88,[[142,[143]]]],[91,[[15,[[129,[143]]]]]],[[[75,[72]]],[[145,[72]]]],[[[102,[72]]],[[145,[72]]]],[[[76,[72]]],[[10,[72]]]],[[[76,[72]]],[[142,[72]]]],0,[[[69,[[0,[70,147]]]],[0,[70,147]]]],[[[69,[[0,[70,147]]]],[69,[[0,[70,147]]]]]],[[[69,[[0,[70,148]]]],[0,[70,148]]]],[[[69,[[0,[70,148]]]],[69,[[0,[70,148]]]]]],[[[69,[[0,[70,149]]]],[0,[70,149]]]],[[[69,[[0,[70,149]]]],[69,[[0,[70,149]]]]]],[[[93,[72]]],[[15,[[61,[37]]]]]],[[[73,[72]]],[[15,[[61,[37]]]]]],[94,[[15,[5]]]],[97,[[15,[[61,[37]]]]]],[[[77,[74]]],[[15,[74]]]],[[[75,[72]]],[[15,[59]]]],[[[102,[72]]],[[15,[59]]]],[[[93,[72]],[13,[[10,[37]]]]]],[[[73,[72]],[15,[[13,[[10,[37]]]]]]]],[[94,[15,[5]]]],[[97,[15,[[13,[[10,[37]]]]]]]],[[[77,[74]],[15,[74]]]],[[101,5]],[[[75,[72]],[15,[[13,[9]]]]]],[[[102,[72]],[13,[9]]]],[[]],[[[93,[72]]]],[[[73,[72]]]],[94],[[[96,[83,95]]]],[[[96,[83,95]]]],[97],[[[98,[95]]]],[[[99,[72,95]]]],[100],[[[77,[74]]]],[101],[[[75,[72]]]],[[[102,[72]]]],[[]],[[[98,[[0,[95,[33,[15]]]]]],[15,[34]]]],[[[98,[95]]]],[[[69,[[0,[70,150]]]],[69,[[0,[70,150]]]]],[[69,[[0,[70,150]]]]]],[[[69,[[0,[70,150,112]]]],[0,[70,150,112]]],[[69,[[0,[70,150,112]]]]]],[22],[[[93,[72]],22,22]],[[[93,[72]],22]],[[[73,[72]],22]],[[[73,[72]],22,22]],[[94,22]],[[94,22]],[[[96,[83,95]],22]],[[[96,[83,95]],22]],[[97,22]],[[97,22]],[[[98,[95]],22]],[[[98,[95]],22]],[[[99,[72,95]],22]],[[[99,[72,95]],22]],[[100,22]],[[[77,[74]],22]],[[[77,[74]],22]],[[101,22]],[[101,22]],[[[75,[72]],22]],[[[75,[72]],22,22]],[[[102,[72]],22,22]],[[[102,[72]],22]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[70,151]]]],[0,[70,151]]],[[69,[[0,[70,151]]]]]],[[[69,[[0,[70,151]]]],[69,[[0,[70,151]]]]],[[69,[[0,[70,151]]]]]],[[[69,[[0,[70,152]]]],[0,[70,152]]],[[69,[[0,[70,152]]]]]],[[[69,[[0,[70,152]]]],[69,[[0,[70,152]]]]],[[69,[[0,[70,152]]]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[70,153]]]],[0,[70,153]]],[[69,[[0,[70,153]]]]]],[[[69,[[0,[70,153]]]],[69,[[0,[70,153]]]]],[[69,[[0,[70,153]]]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[94,22,[15,[5]]]],[[[77,[74]],22,[15,[74]]]],[[[77,[74]],22,[15,[74]]]],[[[73,[72]],[15,[146]]]],[[[80,[72]],[15,[130]]]],[[79,[15,[130]]]],[[[84,[83]],[15,[130]]]],[[85,[15,[130]]]],[[86,[15,[130]]]],[[[87,[72]],[15,[130]]]],[[88,[15,[130]]]],[[[77,[74]],[15,[146]]]],[[[69,[74]],[15,[130]]]],[[90,[15,[130]]]],[[[75,[72]],[15,[146]]]],[[[76,[72]],[15,[130]]]],[[79,130]],[[[77,[74]],[61,[74]]]],[[[69,[74]],[129,[74]]]],[[]],[[[93,[72]]]],[[[93,[72]]]],[[[73,[72]]]],[[[73,[72]]]],[94],[94],[[[96,[83,95]]]],[[[96,[83,95]]]],[97],[97],[[[98,[95]]]],[[[98,[95]]]],[[[99,[72,95]]]],[[[99,[72,95]]]],[100],[[[77,[74]]]],[[[77,[74]]]],[101],[101],[[[75,[72]]]],[[[75,[72]]]],[[[102,[72]]]],[[[102,[72]]]],[97,22],[85,22],[[[98,[95]]],22],[86,22],[[[109,[0]]]],[[22,22]],[[[80,[72]],22,22]],[[[80,[72]],22,22]],[[79,22,22]],[[79,22,22]],[[[84,[83]],22,22]],[[[84,[83]],22,22]],[[85,22,22]],[[85,22,22]],[[86,22,22]],[[86,22,22]],[[[87,[72]],22,22]],[[[87,[72]],22,22]],[[88,22,22]],[[88,22,22]],[[89,22,22]],[[89,22,22]],[[[69,[74]],22,22]],[[[69,[74]],22,22]],[[90,22,22]],[[90,22,22]],[[91,22,22]],[[91,22,22]],[[[76,[72]],22,22]],[[[76,[72]],22,22]],[[22,22]],[[[80,[72]],22,22]],[[[80,[72]],22,22]],[[79,22,22]],[[79,22,22]],[[[84,[83]],22,22]],[[[84,[83]],22,22]],[[85,22,22]],[[85,22,22]],[[86,22,22]],[[86,22,22]],[[[87,[72]],22,22]],[[[87,[72]],22,22]],[[88,22,22]],[[88,22,22]],[[89,22,22]],[[89,22,22]],[[[69,[74]],22,22]],[[[69,[74]],22,22]],[[90,22,22]],[[90,22,22]],[[91,22,22]],[[91,22,22]],[[[76,[72]],22,22]],[[[76,[72]],22,22]],[[22,22],[[103,[81]]]],[[[80,[72]],22,22],[[80,[72]]]],[[79,22,22],79],[[[84,[83]],22,22],[[84,[83]]]],[[85,22,22],85],[[86,22,22],86],[[[87,[72]],22,22],[[87,[72]]]],[[88,22,22],88],[[89,22,22],89],[[[69,[74]],22,22],[[69,[74]]]],[[90,22,22],90],[[91,22,22],91],[[[76,[72]],22,22],[[76,[72]]]],[[22,22],[[103,[81]]]],[[[80,[72]],22,22],[[80,[72]]]],[[79,22,22],79],[[[84,[83]],22,22],[[84,[83]]]],[[85,22,22],85],[[86,22,22],86],[[[87,[72]],22,22],[[87,[72]]]],[[88,22,22],88],[[89,22,22],89],[[[69,[74]],22,22],[[69,[74]]]],[[90,22,22],90],[[91,22,22],91],[[[76,[72]],22,22],[[76,[72]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[70,154]]]],[69,[[0,[70,154]]]]],[[69,[[0,[70,154]]]]]],[[[69,[[0,[70,154]]]],[0,[70,154]]],[[69,[[0,[70,154]]]]]],[[85,110],85],[[[77,[74]],110],[[77,[74]]]],[[[69,[74]],110],[[69,[74]]]],[[],[[103,[81]]]],[[[80,[72]]],[[103,[81]]]],[79,[[103,[81]]]],[[[84,[83]]],[[103,[81]]]],[85,[[103,[81]]]],[86,[[103,[81]]]],[[[87,[72]]],[[103,[81]]]],[88,[[103,[81]]]],[89,[[103,[81]]]],[[[69,[74]]],[[103,[81]]]],[90,[[103,[81]]]],[91,[[103,[81]]]],[[[76,[72]]],[[103,[81]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[34,155],[[[93,[72]],34],155],[[[73,[72]],34],155],[[94,34],[[36,[131]]]],[[[96,[83,[0,[95,[156,[[15,[30]]]]]]]],34],155],[[[98,[[0,[95,[156,[15]]]]]],34],155],[[[99,[72,[0,[95,[156,[15]]]]]],34],155],[[[77,[74]],34],[[36,[131]]]],[[[75,[72]],34],155],[[[102,[72]],34],155],[[[99,[72,95]],[0,[113,16]]],155],[[],155],[[[93,[72]],[93,[72]]],155],[[[73,[72]],[73,[72]]],155],[[94,94],[[36,[131]]]],[[97,97],[[36,[131]]]],[[[98,[[0,[95,157]]]],[98,[[0,[95,157]]]]],155],[[[99,[72,[0,[95,157]]]],[99,[72,[0,[95,157]]]]],155],[[[77,[74]],[77,[74]]],[[36,[131]]]],[[[75,[72]],[75,[72]]],155],[[[102,[72]],[102,[72]]],155],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[34,[[155,[[93,[72]]]]]],[[34,22],[[36,[97,131]]]],[[34,22],[[36,[85,131]]]],[34,[[155,[[102,[72]]]]]],[[[69,[83]],[103,[81]]],[[36,[[84,[83]],131]]]],[113,[[36,[[73,[72]]]]]],[113,[[36,[[80,[72]]]]]],[113,[[36,[94]]]],[113,[[36,[79]]]],[113,[[36,[[77,[74]]]]]],[113,[[36,[[75,[72]]]]]],[113,[[36,[[76,[72]]]]]],[34,[[36,[[73,[72]]]]]],[34,[[36,[[80,[72]]]]]],[2,[[36,[94]]]],[2,[[36,[79]]]],[34,[[36,[[77,[74]]]]]],[34,[[36,[[75,[72]]]]]],[34,[[36,[[76,[72]]]]]],[110,[[36,[114,131]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[110,[145,[72]],[61,[37]]],[[155,[[93,[72]]]]]],[[110,[145,[72]],[61,[37]],[15,[146]]],[[155,[[73,[72]]]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[36,[[80,[72]],131]]]],[[110,146,[15,[146]]],[[36,[94,131]]]],[[110,130,[15,[130]]],[[36,[79,131]]]],[[110,[69,[83]],[103,[81]]],[[36,[[84,[83]],131]]]],[[110,[61,[37]],[15,[146]]],[[36,[97,131]]]],[[110,[129,[37]],[15,[130]]],[[36,[85,131]]]],[[110,[103,[81]],[15,[130]]],[[36,[86,131]]]],[[110,[142,[72]],[103,[81]],[15,[130]]],[[36,[[87,[72]],131]]]],[[110,[142,[143]],[103,[81]],[15,[130]]],[[36,[88,131]]]],[[110,22],[[36,[89,131]]]],[[110,[61,[74]],[15,[146]]],[[36,[[77,[74]],131]]]],[[110,[129,[74]],[15,[130]]],[[36,[[69,[74]],131]]]],[[110,[61,[[103,[95]]]],[15,[146]]],[[36,[101,131]]]],[[110,[61,[[103,[81]]]],[15,[130]]],[[36,[90,131]]]],[[110,[129,[144]],[61,[[103,[81]]]],[15,[[129,[143]]]]],[[36,[91,131]]]],[[110,[145,[72]],[61,[37]],[15,[146]]],[[155,[[75,[72]]]]]],[[110,[145,[72]],[61,[37]]],[[155,[[102,[72]]]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[155,[[76,[72]]]]]],[[110,[69,[83]],[103,[81]]],[[36,[[84,[83]],131]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[155,[[76,[72]]]]]],[[],155],[[[93,[72]],[13,[[10,[37]]]]],155],[[[73,[72]],[15,[[13,[[10,[37]]]]]]],155],[[94,[15,[5]]],[[36,[131]]]],[[[96,[83,[0,[95,[158,[[15,[30]]]]]]]],[15,[30]]],155],[[97,[15,[[13,[[10,[37]]]]]]],[[36,[131]]]],[[[98,[[0,[95,[156,[15]]]]]],[15,[34]]],155],[[[99,[72,[0,[95,[156,[15]]]]]],[15,[34]]],155],[[[77,[74]],[15,[74]]],[[36,[131]]]],[[[75,[72]],[15,[[13,[9]]]]],155],[[[102,[72]],[13,[9]]],155],[[[98,[95]]],155],[[[99,[72,95]]],155],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[91,[[129,[144]]]],[[],[[15,[130]]]],[[],[[15,[146]]]],[[[93,[72]]],[[15,[146]]]],[[[73,[72]]],[[15,[146]]]],[[[80,[72]]],[[15,[130]]]],[[[80,[72]]],[[15,[130]]]],[94,[[15,[146]]]],[79,[[15,[130]]]],[79,[[15,[130]]]],[[[96,[83,95]]],[[15,[146]]]],[[[84,[83]]],[[15,[130]]]],[[[84,[83]]],[[15,[130]]]],[97,[[15,[146]]]],[85,[[15,[130]]]],[85,[[15,[130]]]],[[[98,[95]]],[[15,[146]]]],[86,[[15,[130]]]],[86,[[15,[130]]]],[[[99,[72,95]]],[[15,[146]]]],[[[87,[72]]],[[15,[130]]]],[[[87,[72]]],[[15,[130]]]],[88,[[15,[130]]]],[89,[[15,[130]]]],[100,[[15,[146]]]],[[[77,[74]]],[[15,[146]]]],[[[69,[74]]],[[15,[130]]]],[[[69,[74]]],[[15,[130]]]],[101,[[15,[146]]]],[90,[[15,[130]]]],[90,[[15,[130]]]],[91,[[15,[130]]]],[[[75,[72]]],[[15,[146]]]],[[[102,[72]]],[[15,[146]]]],[[[76,[72]]],[[15,[130]]]],[[[76,[72]]],[[15,[130]]]],[[[93,[72]],22],[[10,[37]]]],[[[80,[72]],22],[[10,[37]]]],[[79,22],5],[[[84,[83]],22],[[103,[135]]]],[[97,22],[[10,[37]]]],[[85,22],[[10,[37]]]],[[86,22],[[103,[81]]]],[[[87,[72]],22],[[103,[81]]]],[[88,22],[[103,[81]]]],[[[69,[74]],22],74],[[101,22],[[15,[95]]]],[[91,22],[[103,[135]]]],[[[75,[72]],22],9],[[[102,[72]],22],9],[[[76,[72]],22],9],[[[93,[72]],22],[[10,[37]]]],[[[80,[72]],22],[[10,[37]]]],[[79,22],5],[[97,22],[[10,[37]]]],[[85,22],[[10,[37]]]],[[86,22],[[103,[81]]]],[[[87,[72]],22],[[103,[81]]]],[[88,22],[[103,[81]]]],[[[69,[74]],22],74],[[91,22],[[103,[135]]]],[[[75,[72]],22],9],[[[102,[72]],22],9],[[[76,[72]],22],9],[[],[[10,[37]]]],[[[93,[72]]],[[61,[37]]]],[[[73,[72]]],[[61,[37]]]],[[[80,[72]]],[[129,[37]]]],[[[80,[72]]],[[10,[37]]]],[94,146],[79,130],[[[96,[83,95]]],95],[[[84,[83]]],[[103,[81]]]],[97,[[61,[37]]]],[85,[[129,[37]]]],[[[98,[95]]],95],[86,[[103,[81]]]],[[[99,[72,95]]],95],[[[87,[72]]],[[103,[81]]]],[[[77,[74]]],[[61,[74]]]],[[[69,[74]]],[[129,[74]]]],[101,[[61,[[103,[95]]]]]],[90,[[10,[[103,[81]]]]]],[[[75,[72]]],[[61,[37]]]],[[[102,[72]]],[[61,[37]]]],[[[76,[72]]],[[10,[37]]]],[[[76,[72]]],[[129,[37]]]],[[[73,[72]]],[[109,[[93,[72]]]]]],[[[80,[72]]],[[134,[72]]]],[94,132],[79,132],[[[84,[83]]],[[0,[83]]]],[85,[[136,[37]]]],[86,[[109,[86]]]],[[[87,[72]]],[[137,[72]]]],0,[[[77,[74]]],[[138,[74]]]],[[[69,[74]]],[[138,[74]]]],0,[[[75,[72]]],[[109,[[102,[72]]]]]],[[[76,[72]]],[[139,[72]]]],[[[84,[83]]],[[36,[[0,[83,0]],131]]]],[97,[[10,[37]]]],[[[77,[74]]],[[10,[74]]]],[[22,22],[[93,[72]]]],[[22,22],[[73,[72]]]],[[22,22],[[75,[72]]]],[[22,22],[[102,[72]]]],[22,[[93,[72]]]],[22,[[73,[72]]]],[22,94],[[22,22],97],[22,[[99,[72,[0,[95,50]]]]]],[22,[[77,[74]]]],[22,[[75,[72]]]],[22,[[102,[72]]]],[[22,110],[[77,[74]]]],[[[15,[130]]],[[103,[81]]]],[[[73,[72]],[15,[146]]],[[73,[72]]]],[[[80,[72]],[15,[130]]],[[80,[72]]]],[[[80,[72]],[15,[130]]],[[103,[81]]]],[[79,[15,[130]]],[[103,[81]]]],[[79,[15,[130]]],79],[[[84,[83]],[15,[130]]],[[103,[81]]]],[[[84,[83]],[15,[130]]],[[84,[83]]]],[[85,[15,[130]]],[[103,[81]]]],[[85,[15,[130]]],85],[[86,[15,[130]]],86],[[86,[15,[130]]],[[103,[81]]]],[[[87,[72]],[15,[130]]],[[103,[81]]]],[[[87,[72]],[15,[130]]],[[87,[72]]]],[[88,[15,[130]]],[[103,[81]]]],[[88,[15,[130]]],88],[[89,[15,[130]]],[[103,[81]]]],[[[69,[74]],[15,[130]]],[[69,[74]]]],[[[69,[74]],[15,[130]]],[[103,[81]]]],[[90,[15,[130]]],[[103,[81]]]],[[90,[15,[130]]],90],[[91,[15,[130]]],[[103,[81]]]],[[[76,[72]],[15,[130]]],[[76,[72]]]],[[[76,[72]],[15,[130]]],[[103,[81]]]],[[79,130],79],[[[69,[74]],[129,[74]]],[[69,[74]]]],[[[69,[[0,[70,159]]]],[69,[[0,[70,159]]]]],[[69,[[0,[70,159]]]]]],[[[69,[[0,[70,160]]]],[69,[[0,[70,160]]]]],[[69,[[0,[70,160]]]]]],[[[69,[[0,[70,161]]]],[69,[[0,[70,161]]]]],[[69,[[0,[70,161]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[116,[72]]],[[82,[81]]]],[127,[[82,[81]]]],[117,[[82,[81]]]],[120,[[82,[81]]]],[124,[[82,[81]]]],[[[125,[74]]],[[82,[81]]]],[[[122,[72]]],[[82,[81]]]],[123,[[82,[81]]]],[126,[[82,[81]]]],[121,[[82,[81]]]],[[[128,[72]]],[[82,[81]]]],[[[119,[83]]],[[82,[81]]]],[[],[[82,[81]]]],[[],[[103,[81]]]],[[[116,[72]]],[[103,[81]]]],[127,[[103,[81]]]],[117,[[103,[81]]]],[120,[[103,[81]]]],[124,[[103,[81]]]],[[[125,[74]]],[[103,[81]]]],[[[122,[72]]],[[103,[81]]]],[123,[[103,[81]]]],[126,[[103,[81]]]],[121,[[103,[81]]]],[[[128,[72]]],[[103,[81]]]],[[[119,[83]]],[[103,[81]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],124],[[22,22,22]],[[[116,[72]],22,22,22]],[[127,22,22,22]],[[117,22,22,22]],[[120,22,22,22]],[[124,22,22,22]],[[[125,[74]],22,22,22]],[[[122,[72]],22,22,22]],[[123,22,22,22]],[[126,22,22,22]],[[121,22,22,22]],[[[128,[72]],22,22,22]],[[[119,[83]],22,22,22]],[22],[[[116,[72]],22]],[[127,22]],[[117,22]],[[120,22]],[[124,22]],[[[125,[74]],22]],[[[122,[72]],22]],[[123,22]],[[126,22]],[[121,22]],[[[128,[72]],22]],[[[119,[83]],22]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],22],[[[116,[72]]],22],[127,22],[117,22],[120,22],[124,22],[[[125,[74]]],22],[[[122,[72]]],22],[123,22],[126,22],[121,22],[[[128,[72]]],22],[[[119,[83]]],22],[[[10,[81]],5,22],[[103,[162]]]],[[[61,[[80,[72]]]],5,22],[[116,[72]]]],[[[61,[91]],22],127],[[[61,[79]],5,22],117],[[[61,[85]],5,22],120],[110,124],[[[61,[[69,[74]]]],5,22],[[125,[74]]]],[[[61,[[87,[72]]]],5,22],[[122,[72]]]],[[[61,[88]],5,22],123],[[[61,[90]],5,22],126],[[[61,[86]],5,22],121],[[[61,[[76,[72]]]],5,22],[[128,[72]]]],[[[10,[[84,[83]]]],5,22],[[119,[83]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],0,[[81,81],[[155,[163]]]],[[[0,[74,18]],[0,[74,18]]],19],[[164,164],19],[[165,165],19],0,0,0,[1],[1],[1],[[130,130],130],[130],[146,[[10,[37]]]],[[130,130,78],130],[[146,130,78]],[[130,130],130],[[146,130],146],[[146,130]],[[130,130],130],[[146,130],146],[[146,130]],[[130,130],130],[[146,130],146],[[146,130]],[[]],[[]],[[]],[[]],[[]],[[]],[146,22],[113,[[61,[37]]]],[130,[[167,[166]]]],[146],[130,130],[168,168],[146,146],[[]],[[]],[[]],[[],130],[[],146],[[130,130],5],[[146,146],5],[[146,22,5]],[[146,130]],[[146,[10,[37]],22,22]],[[146,[10,[37]],22,22]],[[146,113]],[[146,2]],[[130,40],115],[[168,40],115],[[146,40],115],[[]],[[[13,[[10,[5]]]]],130],[146,130],[[]],[[[13,[[10,[5]]]]],146],[[]],[2,[[61,[37]]]],[[[82,[[169,[37]]]],22,22,22],[[36,[130,131]]]],[[[82,[[169,[37]]]],22,22,22],130],[34,130],[34,146],[22,146],[22,146],[113,130],[113,146],[2,130],[2,146],[[[13,[[10,[37]]]],22],130],[[[61,[37]],22],130],[[[61,[37]],22],146],[[130,22],[[15,[5]]]],[[146,22],5],[[130,22],5],[[130,22],5],[[]],[[]],[[]],[130],[130],[130],[[]],[146],[130,[[3,[130,146]]]],[130,5],[146,5],[130,132],[146,132],[130,22],[146,22],[130,146],[[],130],[130,168],[[],146],[22,130],[168,15],[168,15],[130,130],[146,146],[[168,22],15],[130,22],[146,22],[[130,22,22],22],[[130,130],130],[146,[[15,[5]]]],[[146,5]],[[146,5]],[[130,130,130,130,78],130],[[146,22]],[[146,22,5]],[[146,22,5]],[146],[168],[[130,22,22]],[[130,22,22]],[[130,22,22],130],[[130,22,22],130],[[130,130,130,78],130],[[]],[[]],[[]],[[],36],[[],36],[[],36],[113,[[36,[130]]]],[113,[[36,[146]]]],[2,[[36,[130]]]],[2,[[36,[146]]]],[[],36],[[],36],[[],36],[[[61,[37]],22],[[36,[130,131]]]],[[[61,[37]],22],[[36,[146,131]]]],[[],66],[[],66],[[],66],[[130,78],130],[[146,78]],[130,22],[146,22],0,[22,146],[[130,130],130],0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[22,22],[132,132],[170,170],[[[171,[16,[0,[2,16]],[0,[2,16]]]]],[[171,[16,[0,[2,16]],[0,[2,16]]]]]],[[[133,[16,[0,[2,16]],[0,[2,16]]]]],[[133,[16,[0,[2,16]],[0,[2,16]]]]]],[[]],[[]],[[]],[[]],[[[10,[37]],22,22],22],[[[10,[37]],22,22,40],115],[[[172,[[0,[32,166]]]],40],115],[[[167,[[0,[32,166]]]],40],115],[[[173,[[0,[32,166]]]],40],115],[[132,40],115],[[170,40],115],[[[171,[32,[0,[2,32]],[0,[2,32]]]],40],115],[[[133,[32,[0,[2,32]],[0,[2,32]]]],40],115],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[10,[37]],22],5],[[[10,[37]],22],5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[172,[166]]],5],[[37,22],5],[[[172,[166]]],22],[[[167,[166]]],22],[[[10,[37]],22],[[172,[166]]]],[[[10,[37]],22,22],[[167,[166]]]],[[[10,[37]],22],[[173,[166]]]],[[[10,[37]],22,22],132],[130,170],[[2,2],[[171,[2,2]]]],[[2,[15,[2]]],[[133,[2,2]]]],[[2,[15,[130]]],[[133,[2,132]]]],[[[172,[166]]],15],[[[167,[166]]],[[15,[166]]]],[[[173,[166]]],15],[132,15],[170,15],[[[171,[2,2]]],15],[[[133,[2,2]]],15],[132,[[15,[5]]]],[[[171,[52,52]]],15],[[[133,[52,52]]],15],[[132,22],15],[[[171,[2,2]],22],15],[[[133,[2,2]],22],15],[[]],[[[172,[166]]],166],[[[172,[166]]],166],[[[167,[166]]],166],[[[167,[166]]],166],[[[173,[166]]],[[10,[37]]]],[[],174],[[],174],[[],22],[[[172,[166]]],22],[[[167,[166]]],22],[[[167,[166]]],22],[[[173,[166]]],22],[[37,22,5],37],[[[10,[37]],22,5]],[[[10,[37]],22,5]],[[[172,[166]]]],[[[167,[166]]]],[[[173,[166]]]],[132],[[[171,[2,2]]]],[[[133,[2,2]]]],[170,22],[[]],[[]],[[]],[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[[133,[2,2]]],[[171,[2,2]]]],[[[133,[2,2]]],2],0,0,[1],[129,10],[[]],[[]],[[]],[[]],[[[129,[16]]],[[129,[16]]]],[[]],[[],129],[169],[129,10],[[[129,[28]],[129,[28]]],5],[[[129,[32]],40],115],[[]],[61,169],[[[175,[0]]],169],[61,129],[[]],[[[82,[169]],22,22],129],[34,129],[129,[[15,[61]]]],[129,[[15,[10]]]],[[]],[[]],[129],[[[129,[35]]]],[129,[[3,[129,61]]]],[129,5],[129,5],[129,22],[[],129],[129,22],[[129,22]],[129,22],[129,22],[[129,22,22]],[[129,22,22]],[[129,22,22],129],[[129,22,22],129],[[]],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],0,[1],[[[176,[[13,[81]]]]],[[10,[[13,[81]]]]]],[[]],[[]],[[[176,[[0,[16,[13,[81]]]]]]],[[176,[[0,[16,[13,[81]]]]]]]],[[]],[[[176,[[13,[81]]]]],[[10,[[13,[81]]]]]],[[[176,[[13,[81]]]]],[[10,[[13,[81]]]]]],[[[176,[[0,[28,[13,[81]]]]]],[176,[[0,[28,[13,[81]]]]]]],5],[[],5],[[[176,[[0,[32,[13,[81]]]]]],40],115],[[]],[[]],[[[176,[[13,[81]]]]],[[61,[[13,[81]]]]]],[[[176,[[13,[81]]]]],5],[[[176,[[13,[81]]]]],22],[[[61,[[13,[81]]]]],[[176,[[13,[81]]]]]],[[]],[[],36],[[],36],[[[61,[[13,[81]]]]],[[155,[[176,[[13,[81]]]]]]]],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[110,5],[110,5],[110,5],[81,22],[81,[[155,[[103,[135]]]]]],[[[80,[72]]],[[15,[[10,[37]]]]]],[79,[[15,[5]]]],[[]],[[]],[[[69,[[0,[74,177]]]]],[[15,[[0,[74,177]]]]]],[[[76,[72]]],[[15,[9]]]],[81,[[155,[[103,[135]]]]]],[[[80,[72]]],[[15,[[10,[37]]]]]],[79,[[15,[5]]]],[[]],[[]],[[[69,[[0,[74,177]]]]],[[15,[[0,[74,177]]]]]],[[[76,[72]]],[[15,[9]]]],[[]],[[]],[[]],[81,[[155,[[103,[135]]]]]],[[[69,[[0,[74,177,71,[178,[[0,[74,177,71,[178,[[0,[74,177,71,[178,[[0,[74,177,71,178]]]]]]]]]]]]]]]]],[[15,[[0,[74,177,71,[178,[[0,[74,177,71,[178,[[0,[74,177,71,[178,[[0,[74,177,71,178]]]]]]]]]]]]]]]]]],[[[10,[[0,[74,177,71,[178,[[0,[74,177,71,[178,[[0,[74,177,71,[178,[[0,[74,177,71,178]]]]]]]]]]]]]]]]],[[0,[74,177,71,[178,[[0,[74,177,71,[178,[[0,[74,177,71,[178,[[0,[74,177,71,[178,[[0,[74,177,71,178]]]]]]]]]]]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[81,81],[[103,[81]]]],[[]],[[81,135],[[103,[81]]]],0,[[110,110],5],[[110,110],5],[[110,110],5],[110,5],[[110,110],5],[[110,110],5],[[]],[[]],[[]],[[]],[[]],0,[[81,81],[[103,[81]]]],[[]],[[81,135],[[103,[81]]]],[[81,81],[[103,[81]]]],[[]],[[81,135],[[103,[81]]]],[81,[[103,[81]]]],[[]],[[]],[[]],[[81,81],[[103,[81]]]],[[]],[[]],[[]],[[]],[[81,81],[[103,[81]]]],[[]],[[81,135],[[103,[81]]]],0,[[]],[[]],[[]],0,[[[69,[[0,[70,71]]]],[69,[[0,[70,71]]]]],[[69,[[0,[70,71]]]]]],[[[69,[[0,[70,71]]]],[0,[70,71]]],[[69,[[0,[70,71]]]]]],[[[69,[[0,[70,104]]]],[69,[[0,[70,104]]]]],[[69,[[0,[70,104]]]]]],[[[69,[[0,[70,104]]]],[0,[70,104]]],[[69,[[0,[70,104]]]]]],[[[69,[[0,[70,105]]]],[69,[[0,[70,105]]]]],[[69,[[0,[70,105]]]]]],[[[69,[[0,[70,105]]]],[0,[70,105]]],[[69,[[0,[70,105]]]]]],[[[69,[[0,[70,106]]]],[69,[[0,[70,106]]]]],[[69,[[0,[70,106]]]]]],[[[69,[[0,[70,106]]]],[0,[70,106]]],[[69,[[0,[70,106]]]]]],[[[69,[[0,[74,179]]]]],[[69,[[0,[74,179]]]]]],[[[69,[[0,[70,106,180]]]],22],[[69,[[0,[70,106,180]]]]]],[[[69,[[0,[70,107]]]],[69,[[0,[70,107]]]]],[[69,[[0,[70,107]]]]]],[[[69,[[0,[70,107]]]],[0,[70,107]]],[[69,[[0,[70,107]]]]]],[[[69,[[0,[70,108]]]],[69,[[0,[70,108]]]]],[[69,[[0,[70,108]]]]]],[[[69,[[0,[70,108]]]],[0,[70,108]]],[[69,[[0,[70,108]]]]]],[[[69,[[0,[70,111]]]],[69,[[0,[70,111]]]]],[[69,[[0,[70,111]]]]]],[[[69,[[0,[70,111,112]]]],[0,[70,111,112]]],[[69,[[0,[70,111,112]]]]]],[[[69,[[0,[70,141]]]],[69,[[0,[70,141]]]]],[[69,[[0,[70,141]]]]]],[[[69,[[0,[70,141]]]],[0,[70,141]]],[[69,[[0,[70,141]]]]]],[[[69,[[0,[74,181]]]]],[[69,[[0,[74,181]]]]]],[[[69,[[0,[70,147]]]],[69,[[0,[70,147]]]]]],[[[69,[[0,[70,147]]]],[0,[70,147]]]],[[[69,[[0,[70,148]]]],[69,[[0,[70,148]]]]]],[[[69,[[0,[70,148]]]],[0,[70,148]]]],[[[69,[[0,[70,149]]]],[69,[[0,[70,149]]]]]],[[[69,[[0,[70,149]]]],[0,[70,149]]]],[[[69,[[0,[70,[182,[[0,[70,[182,[[0,[70,[182,[[0,[70,182]]]]]]]]]]]]]]]],[0,[70,[182,[[0,[70,[182,[[0,[70,[182,[[0,[70,[182,[[0,[70,182]]]]]]]]]]]]]]]]]]],[[69,[[0,[70,[182,[[0,[70,[182,[[0,[70,[182,[[0,[70,182]]]]]]]]]]]]]]]]]],[[[69,[[0,[70,150]]]],[69,[[0,[70,150]]]]],[[69,[[0,[70,150]]]]]],[[[69,[[0,[70,150,112]]]],[0,[70,150,112]]],[[69,[[0,[70,150,112]]]]]],[[[69,[[0,[70,151]]]],[69,[[0,[70,151]]]]],[[69,[[0,[70,151]]]]]],[[[69,[[0,[70,151]]]],[0,[70,151]]],[[69,[[0,[70,151]]]]]],[[[69,[[0,[70,152]]]],[69,[[0,[70,152]]]]],[[69,[[0,[70,152]]]]]],[[[69,[[0,[70,152]]]],[0,[70,152]]],[[69,[[0,[70,152]]]]]],[[[69,[[0,[70,153]]]],[69,[[0,[70,153]]]]],[[69,[[0,[70,153]]]]]],[[[69,[[0,[70,153]]]],[0,[70,153]]],[[69,[[0,[70,153]]]]]],[[[69,[[0,[70,154]]]],[69,[[0,[70,154]]]]],[[69,[[0,[70,154]]]]]],[[[69,[[0,[70,154]]]],[0,[70,154]]],[[69,[[0,[70,154]]]]]],[[[69,[[0,[70,159]]]],[69,[[0,[70,159]]]]],[[69,[[0,[70,159]]]]]],[[[69,[[0,[70,159]]]],[0,[70,159]]],[[69,[[0,[70,159]]]]]],[[[69,[[0,[70,160]]]],[69,[[0,[70,160]]]]],[[69,[[0,[70,160]]]]]],[[[69,[[0,[70,160]]]],[0,[70,160]]],[[69,[[0,[70,160]]]]]],[[[69,[[0,[74,183]]]]],[[69,[[0,[74,183]]]]]],[[[69,[[0,[70,161]]]],[69,[[0,[70,161]]]]],[[69,[[0,[70,161]]]]]],[[[69,[[0,[70,161]]]],[0,[70,161]]],[[69,[[0,[70,161]]]]]],[[[69,[68]],[69,[68]]],[[155,[[69,[68]]]]]],[[[69,[68]],[69,[68]]],[[155,[[69,[68]]]]]],[[[69,[68]],[69,[68]]],[[155,[[69,[68]]]]]],[[[69,[68]],[69,[68]]],[[155,[[69,[68]]]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[184,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[184,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[68]],[69,[68]]],[[69,[68]]]],[[[69,[[0,[74,[71,[[0,[74,[71,[[0,[74,[71,[[0,[74,71]]]]]]]]]]]]]]]],[69,[185]]],[[69,[[0,[74,[71,[[0,[74,[71,[[0,[74,[71,[[0,[74,71]]]]]]]]]]]]]]]]]],[[[69,[[0,[74,[71,[[0,[74,[71,[[0,[74,[71,[[0,[74,71]]]]]]]]]]]]]]]],[184,[185]]],[[69,[[0,[74,[71,[[0,[74,[71,[[0,[74,[71,[[0,[74,71]]]]]]]]]]]]]]]]]],[[[69,[185]],[69,[186]]],[[155,[[69,[185]]]]]],[[[69,[185]],[184,[186]]],[[155,[[69,[185]]]]]],[[[69,[[0,[74,[154,[[0,[74,[154,[[0,[74,[154,[[0,[74,154]]]]]]]]]]]]]]]],[184,[185]]],[[69,[[0,[74,[154,[[0,[74,[154,[[0,[74,[154,[[0,[74,154]]]]]]]]]]]]]]]]]],[[[69,[185]],[184,[185]]],[[155,[[69,[185]]]]]],[[[69,[[0,[74,[154,[[0,[74,[154,[[0,[74,[154,[[0,[74,154]]]]]]]]]]]]]]]],[69,[185]]],[[69,[[0,[74,[154,[[0,[74,[154,[[0,[74,[154,[[0,[74,154]]]]]]]]]]]]]]]]]],[[[69,[185]],[69,[185]]],[[155,[[69,[185]]]]]],[[[69,[74]],[69,[74]],110,78],[[69,[74]]]],[[[69,[74]],[69,[74]],110,78],[[69,[74]]]],[[[69,[74]],[69,[74]],110,78]],[[[69,[74]],[69,[74]],110,78],[[155,[[69,[74]]]]]],[[[69,[74]],78,110],[[155,[[69,[74]]]]]],[[[69,[74]],78,110],[[69,[74]]]],[[[69,[74]],78,110],[[69,[74]]]],[[[69,[74]],78,110]],[[[69,[74]],[69,[74]],78]],[[[69,[74]],78]],[79,5],[[79,79],79],[[79,187],79],[79,5],[81,79],[81,79],[79,79],[[79,79],79],[[79,187],79],[79,5],[[79,79],79],[[79,187],79],[79,5],[[79,79],79],[[79,187],79],0,[1],[[[80,[185]],110],[[155,[[80,[143]]]]]],[[[80,[72]]],[[155,[[84,[83]]]]]],[[[80,[143]],110],[[80,[185]]]],[[[80,[143]],110],[[155,[[76,[185]]]]]],[[[80,[72]],110],[[87,[72]]]],[[[80,[72]],110],[[69,[[0,[74,188]]]]]],[[[80,[72]],110],[[155,[[76,[72]]]]]],[79,[[80,[72]]]],[79,[[69,[[0,[74,180]]]]]],[79,[[76,[72]]]],[[]],[[]],[[110,110],5],[[81,110,189],[[155,[[103,[81]]]]]],[189,189],[[]],[[[69,[143]]],[[69,[185]]]],[[[69,[185]]],[[69,[143]]]],[[[69,[190]]],[[69,[186]]]],[[[69,[68]],22,22],[[69,[68]]]],[[[69,[68]]],[[69,[[0,[74,191]]]]]],[[[69,[68]]],[[69,[[0,[74,112]]]]]],[[],189],[[[84,[[0,[83,112]]]]],[[155,[[84,[[0,[83,112]]]]]]]],[[[84,[83]],110],[[155,[[84,[83]]]]]],[[[84,[[0,[83,112]]]]],[[103,[81]]]],[[[69,[192]]],[[69,[164]]]],[[85,110],[[80,[72]]]],[[[69,[[0,[74,191,193]]]],22,22],[[69,[68]]]],[[189,40],115],[[]],[[[69,[[0,[74,[194,[68]]]]]],22,22],[[69,[68]]]],[[]],[[[69,[143]]],[[69,[186]]]],[[[69,[185]],195],[[76,[72]]]],0,[[[80,[72]],110],[[69,[[0,[74,188]]]]]],[[[76,[72]],110],[[69,[[0,[74,188]]]]]],[[[69,[[0,[74,[194,[74]]]]]],110],[[69,[74]]]],[[[69,[[0,[74,196]]]]],[[80,[72]]]],[[[69,[74]],110],79],[[[69,[[0,[74,29,30]]]]],[[155,[[84,[83]]]]]],[[[69,[[0,[74,112]]]],110],[[69,[[0,[74,112]]]]]],[[[69,[74]],110],[[69,[74]]]],[[[69,[[0,[74,196]]]]],[[76,[72]]]],[[[69,[143]],195,195],[[69,[185]]]],[[[69,[143]]],[[69,[143]]]],[[[69,[143]]],[[69,[143]]]],[[[69,[185]],195,195],[[69,[143]]]],[[[69,[185]]],[[69,[185]]]],[[[69,[185]]],[[69,[185]]]],[[[69,[185]],195],[[69,[143]]]],[[[69,[185]],195],[[69,[185]]]],[[[69,[185]],195,195,[15,[59]]],[[69,[185]]]],[[[69,[185]],195,9],[[155,[[76,[72]]]]]],[[]],[[],36],[[],36],[[],66],[[[76,[185]]],[[155,[[76,[143]]]]]],[[[76,[72]],110],[[80,[72]]]],[[[76,[72]]],[[69,[143]]]],[[[76,[72]]],[[69,[185]]]],[[[76,[72]]],[[155,[[84,[83]]]]]],[[[76,[143]]],[[76,[185]]]],[[[76,[72]]],[[69,[185]]]],[[[76,[72]],110],[[69,[[0,[74,188]]]]]],[[[76,[72]],59],[[155,[[69,[185]]]]]],0,[[[84,[[0,[83,[194,[83]]]]]]],[[155,[[84,[83]]]]]],[[[84,[83]],110],[[155,[[84,[83]]]]]],0,0,0,0,0,0,0,[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[[81,81],79],[[],37],[[81,81],79],[[81,135],79],[[81,135],79],[[79,[15,[130]],[15,[130]]],79],[[79,[15,[130]],[15,[130]]],79],[10],[10],[[81,81],79],[[],37],[[81,81],79],[[],37],[[81,135],79],[[81,135],79],[[81,81],79],[[],37],[[81,81],79],[[],37],[[81,135],79],[[81,135],79],[[81,81],79],[[],37],[[81,81],79],[[81,135],79],[[81,135],79],0,0,[[[80,[72]],[80,[72]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[10,[37]]],79],[[[80,[72]],[10,[37]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[10,[37]]],79],[[[80,[72]],[10,[37]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[10,[37]]],79],[[[80,[72]],[10,[37]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[10,[37]]],79],[[[80,[72]],[10,[37]]],79],[[79,5,78],79],[[79,79],79],[[79,79],79],[[79,5],79],[[79,5],79],[[79,79],79],[[79,79],79],[[79,5],79],[[79,5],79],[[79,79],79],[[79,79],79],[[79,5],79],[[79,5],79],[[79,79],79],[[79,79],79],[[79,5],79],[[79,5],79],[[[69,[[0,[74,197]]]],[0,[74,197]],78],79],[[[69,[[0,[74,197]]]],[69,[[0,[74,197]]]]],79],[[[69,[[0,[74,197]]]],[69,[[0,[74,197]]]]],79],[[[69,[[0,[74,197]]]],[0,[74,197]]],79],[[[69,[[0,[74,197]]]],[0,[74,197]]],79],[[[69,[[0,[74,197]]]],[69,[[0,[74,197]]]]],79],[[[69,[[0,[74,197]]]],[69,[[0,[74,197]]]]],79],[[[69,[[0,[74,197]]]],[0,[74,197]]],79],[[[69,[[0,[74,197]]]],[0,[74,197]]],79],[[[69,[[0,[74,197]]]],[69,[[0,[74,197]]]]],79],[[[69,[[0,[74,197]]]],[69,[[0,[74,197]]]]],79],[[[69,[[0,[74,197]]]],[0,[74,197]]],79],[[[69,[[0,[74,197]]]],[0,[74,197]]],79],[[[69,[[0,[74,197]]]],[69,[[0,[74,197]]]]],79],[[[69,[[0,[74,197]]]],[69,[[0,[74,197]]]]],79],[[[69,[[0,[74,197]]]],[0,[74,197]]],79],[[[69,[[0,[74,197]]]],[0,[74,197]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],9],79],[[[76,[72]],9],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],9],79],[[[76,[72]],9],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],9],79],[[[76,[72]],9],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],9],79],[[[76,[72]],9],79],[[[10,[81]]],[[155,[[103,[81]]]]]],0,[79,[[155,[198]]]],[[81,79],[[155,[[103,[81]]]]]],[[[176,[[13,[81]]]],79],[[155,[[176,[[103,[81]]]]]]]],[[79,81,81],[[155,[[103,[81]]]]]],[[[80,[72]],[80,[72]]],[[155,[79]]]],[[[80,[72]],[10,[37]]],[[155,[79]]]],[[[76,[72]],[76,[72]]],[[155,[79]]]],[[[76,[72]],9],[[155,[79]]]],[[[80,[72]],[80,[72]]],[[155,[79]]]],[[[80,[72]],[10,[37]]],[[155,[79]]]],[[[76,[72]],[76,[72]]],[[155,[79]]]],[[[76,[72]],9],[[155,[79]]]],[110,5],[[81,185,[15,[65]]],[[155,[[103,[81]]]]]],[110,5],[[81,[69,[199]]],[[155,[[103,[81]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[114,114],[200,200],[201,201],[202,202],[110,110],[203,203],[195,195],[204,204],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[114,110],0,[[],202],[[114,114],5],[[200,200],5],[[201,201],5],[[202,202],5],[[110,110],5],[[203,203],5],[[195,195],5],[[204,204],5],[[200,205],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[[202,78],202],[[114,40],115],[[200,40],115],[[201,40],115],[[202,40],115],[[110,40],115],[[203,40],115],[[195,40],115],[[204,40],115],[[]],[[]],[[]],[[]],[[[61,[114]]],202],[205,110],[[]],[201,110],[[]],[[]],[[]],[206,15],[[114,47]],[[200,47]],[[201,47]],[[110,47]],[[203,47]],[[195,47]],[[204,47]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[203,5],0,[203,5],0,0,0,[[[27,[59]],110,5],114],[5,203],[110,110],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[110,200],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[114,206],114],[[202,206],202],0,0,0,0,0,0,0,0,0,[[]],[[]],[[131,40],115],[[131,40],115],[[]],[207,131],[208,131],[209,131],[210,131],[211,131],[212,131],[38,131],[213,131],[[[0,[14,214,215]]],131],[[]],[57],[[],59],[[],36],[[],36],[[],66],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[216],[217],[218],[[],216],[[],217],[[],218],[[[103,[81]]],217],[114,216],[[[103,[2]],114],218],[[[219,[25]]],114],[[216,40],115],[[217,40],115],[[218,40],115],[[]],[[]],[[]],[[]],[[217,110],[[155,[[103,[81]]]]]],[216,[[155,[114]]]],[[]],[[]],[[]],[[]],0,[[[219,[25]]],[[15,[[36,[[103,[81]],131]]]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[25,[[36,[[219,[25]],131]]]],[[],66],[[],66],[[],66],[[],66],[[[10,[37]],22,22],[[36,[79,131]]]],[[[10,[74]]],[[69,[74]]]],0,0,0,0,0,0,[1],[1],0,[[]],[[]],[[]],[[]],[220,220],[221,221],[[]],[[]],[[],220],0,[[220,220],5],[[221,221],5],0,0,[[220,40],115],[[221,40],115],[[]],[[]],[[]],[[]],0,0,[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[222,222],[223,223],[[]],[[]],[[[10,[37]]],155],[[213,40],115],[[222,40],115],[[223,40],115],[[]],[[]],[[]],[[]],[[]],[[]],[[[224,[[0,[58,63]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[[224,[[0,[58,63]]]]],[[0,[58,63]]]],[[]],[[]],0,0,[[[225,[58]]],5],[[[224,[[0,[58,63]]]]],222],[[[225,[58]]],223],[[[0,[58,63]],222,[15,[[61,[22]]]],[15,[22]]],[[224,[[0,[58,63]]]]]],[[58,223,[15,[[61,[22]]]]],[[225,[58]]]],[[[224,[[0,[58,63]]]]],15],[[[225,[58]]],15],[[[0,[58,63]],226,222,[15,[[10,[22]]]],[15,[22]],22,[61,[37]],[61,[37]]],[[155,[[176,[[103,[81]]]]]]]],[[[0,[58,63]],222,[61,[37]]],[[155,[226]]]],[[[0,[58,63]]],[[155,[222]]]],[58,[[155,[223]]]],[[[224,[[0,[58,63]]]]],202],[[[225,[58]]],202],0,0,[[[224,[[0,[58,63]]]]]],0,[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[227,[[176,[[103,[81]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[228,228],[229,229],[[]],[[]],[229,[[176,[[103,[81]]]]]],0,[[[10,[114]]],[[61,[220]]]],[[228,228],5],[[229,229],5],[[],5],[229,[[15,[[10,[220]]]]]],0,[[[230,[39]]],155],[[[231,[39]]],155],[[228,40],115],[[229,40],115],[[]],[[]],[[]],[[]],[[[176,[[103,[81]]]]],229],[[],229],[[],229],0,[[228,47]],[[]],[[]],[[]],[[]],[[[230,[39]]],39],[[[231,[39]]],39],[[39,232],[[230,[39]]]],[[39,202,[15,[[61,[220]]]],232],[[231,[39]]]],[[202,[10,[220]]],[[61,[37]]]],0,[[[230,[39]],202,[15,[[61,[220]]]]],155],[[[231,[39]]],155],0,[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[[0,[58,63,39]],222,232],[[155,[[231,[[0,[58,63,39]]]]]]]],[[],36],[[],36],[[],36],[[],36],[[39,202,[15,[[61,[220]]]],232],[[155,[[231,[39]]]]]],[[],66],[[],66],[[],66],[[],66],[[81,[61,[233]],[61,[37]],[61,[234]],185,5,[15,[228]]]],[[[230,[39]],[176,[[103,[81]]]],[15,[[10,[220]]]]],155],[[[231,[39]],[176,[[103,[81]]]],[15,[[10,[220]]]]],155],0,[[]],[[]],[[]],[[]],[[[0,[235,236,214]],202,[15,[[61,[220]]]],232],[[237,[[0,[235,236,214]]]]]],[[[12,[[237,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[237,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[237,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[237,[[0,[235,236,214]]]]]],229],155],[[],36],[[],36],[[],66],0,0,[1],[[]],[[]],[[]],[[]],[232,232],[[]],0,[[],232],[[232,232],5],[[],5],[[232,40],115],[[]],[[]],[[232,47]],[[]],[[]],[[[0,[235,236,214]],202,[15,[[61,[220]]]],232],[[238,[[0,[235,236,214]]]]]],[[[12,[[238,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[238,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[238,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[238,[[0,[235,236,214]]]]]],229],155],[[]],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[],36],[[[239,[2]]],36],[240,36],[[[242,[241,4]]],36],[[[243,[241]]],36],[[[244,[241,4]]],36],[[[245,[241,78]]],36],[[[246,[241,78]]],36],[[[247,[241]]],36],[[[248,[241,4]]],36],[[[249,[241]]],36],[[[250,[241,4]]],36],[251,[[36,[131]]]],[[[252,[[13,[81]],2]]],[[36,[131]]]],[[],36],[[[239,[52]]],36],[240,36],[[[244,[253,4]]],36],[[[245,[253,78]]],36],[[[246,[253,78]]],36],[[45,4],[[36,[5]]]],[[45,4],[[36,[5]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,45],[[[252,[[0,[[13,[81]],16]],[0,[2,16]]]]],[[252,[[0,[[13,[81]],16]],[0,[2,16]]]]]],[[]],[2,[[239,[2]]]],[45,[[36,[22]]]],[[],240],[[45,4],[[242,[45,4]]]],[[45,4],[[36,[15]]]],[[[252,[[0,[[13,[81]],32]],[0,[2,32]]]],40],115],[[45,4],36],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,[[243,[45]]]],[[],15],[[[239,[2]]],15],[240,15],[[[242,[241,4]]],15],[[[243,[241]]],15],[[[244,[241,4]]],15],[[[245,[241,78]]],[[15,[45]]]],[[[246,[241,78]]],15],[[[247,[241]]],15],[[[248,[241,4]]],15],[[[249,[241]]],15],[[[250,[241,4]]],15],[251,15],[[[252,[[13,[81]],2]]],15],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[45,4],[[244,[45,4]]]],[[45,78],[[246,[45,78]]]],[[45,78],[[245,[45,78]]]],[[202,[176,[[13,[81]]]],[61,[37]]],251],[[2,[61,[37]]],[[252,[[13,[81]],2]]]],[[],[[36,[15]]]],[[[243,[241]]],[[36,[15]]]],[[[246,[241,78]]],[[36,[15]]]],[[],[[36,[15]]]],[[[246,[253,78]]],[[36,[15]]]],[22,[[36,[15]]]],[[45,4],[[36,[[15,[22]]]]]],[[]],[[[239,[2]]]],[240],[[[242,[241,4]]]],[[[243,[241]]]],[[[244,[241,4]]]],[[[245,[241,78]]]],[[[246,[241,78]]]],[[[247,[241]]]],[[[248,[241,4]]]],[[[249,[241]]]],[[[250,[241,4]]]],[[45,22],[[247,[45]]]],[[45,4],[[248,[45,4]]]],[[45,22],[[249,[45]]]],[[45,4],[[250,[45,4]]]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[39,241],[[36,[131]]]],0,0,0,0,0,0,[1],[[],36],[[[254,[[13,[81]],2]]],[[36,[131]]]],[[45,4],[[36,[5]]]],[[45,4],[[36,[5]]]],[[]],[[]],[[]],[[]],[45,45],[[[254,[[0,[[13,[81]],16]],[0,[2,16]]]]],[[254,[[0,[[13,[81]],16]],[0,[2,16]]]]]],[[]],[45,[[36,[22]]]],[[45,4],[[242,[45,4]]]],[[45,4],[[36,[15]]]],[[[254,[[0,[[13,[81]],32]],[0,[2,32]]]],40],115],[[45,4],36],[[]],[[]],[45,[[243,[45]]]],[[],15],[[[254,[[13,[81]],2]]],15],[[]],[[]],[[[255,[39,241]]]],[[]],[[45,4],[[244,[45,4]]]],[[45,78],[[246,[45,78]]]],[[45,78],[[245,[45,78]]]],[[39,241],[[255,[39,241]]]],[[2,[61,[37]]],[[254,[[13,[81]],2]]]],[[],[[36,[15]]]],[[[255,[39,241]]],15],[22,[[36,[15]]]],[[45,4],[[36,[[15,[22]]]]]],[[]],[[45,22],[[247,[45]]]],[[45,4],[[248,[45,4]]]],[[45,22],[[249,[45]]]],[[45,4],[[250,[45,4]]]],[[]],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[[0,[58,63]],[10,[256]]],[[36,[[61,[[103,[257,60]],60]],207]]]],[[[0,[58,63]]],[[36,[258,207]]]],[[[0,[259,260,214,236]]],54],[[],36],[[],[[36,[261]]]],[[[263,[262]]],[[36,[207]]]],[[[264,[2]]],[[36,[207]]]],[265,[[36,[[261,[265]],207]]]],[[45,4],[[36,[5]]]],[[45,4],[[36,[5]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,45],[256],[207,207],[256,256],[266,266],[267,267],[268,268],[269,269],[270,270],[271,271],[272,272],[273,273],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[256,274],[256,[[61,[275,60]]]],[[[61,[276]],[61,[277]],114,[15,[22]],22],[[155,[278]]]],0,[267,[[10,[256]]]],[256,185],[267,22],[256,279],[45,[[36,[22]]]],[[110,280,[103,[81]]],[[103,[81]]]],[[110,280,[103,[81]]],[[103,[81]]]],0,[256,185],[[281,[61,[37,60]]],[[36,[282,207]]]],[256,266],0,[256,[[15,[185]]]],[[266,266],5],[[269,269],5],[[270,270],5],[[271,271],5],[[272,272],5],[[273,273],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[256,185],[256,[[15,[59]]]],[[45,4],[[242,[45,4]]]],[[45,4],[[36,[15]]]],[[207,40],[[36,[41]]]],[[207,40],[[36,[41]]]],[[256,40],[[36,[41]]]],[[266,40],[[36,[41]]]],[[267,40],[[36,[41]]]],[[268,40],[[36,[41]]]],[[269,40],[[36,[41]]]],[[270,40],[[36,[41]]]],[[271,40],[[36,[41]]]],[[[261,[32]],40],[[36,[41]]]],[[265,40],[[36,[41]]]],[[272,40],[[36,[41]]]],[[273,40],115],[[280,40],115],[[45,4],36],[[]],[[]],[[]],[[]],[283,207],[284,207],[38,207],[285,207],[208,207],[286,207],[131,207],[[]],[[]],[[]],[[]],[[]],[287,269],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,[[243,[45]]]],[[],15],[[],15],[[[263,[262]]],15],[[[264,[2]]],15],[265,15],[[[0,[58,63]],267,9,[15,[[82,[78]]]],[61,[37,60]],22],[[288,[[0,[58,63]]]]]],[[[10,[256]],9],[[61,[256]]]],[[[10,[256]],10,9],61],[[256,[0,[58,63]],[15,[289]],[61,[37]],22],[[155,[[290,[[0,[58,63]]]]]]]],[[256,[0,[259,236,214,260]],[61,[37,60]],[82,[78]],22],54],[256,5],[[269,47]],[[270,47]],[[271,47]],[[272,47]],[256,[[15,[185]]]],0,0,[[[10,[273]],22],280],[[[44,[291]]],185],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[263,[262]]]],[[[264,[2]]],[[61,[37,60]]]],[[[290,[58]]]],[[]],[[]],[[]],[[]],[[]],[256,274],0,[280,22],[[45,4],[[244,[45,4]]]],[[45,78],[[246,[45,78]]]],[[45,78],[[245,[45,78]]]],[256,292],[110,22],0,[[262,[61,[37,60]]],[[263,[262]]]],[[2,[61,[37,60]]],[[264,[2]]]],[[58,256,[82,[78]],[61,[37,60]],22],[[290,[58]]]],[[274,266],256],[[293,[61,[59,60]],294],266],[[[61,[256,60]],22,22],267],[[294,[61,[60]]],265],[[[61,[295]],[61,[114]]],296],[[[0,[58,63]],[61,[267]],202,[15,[22]],[15,[22]],[15,[[61,[[61,[[61,[[61,[297]]]]]]]]]]],[[298,[[0,[58,63]]]]]],[[[0,[58,63]],202,[61,[267]],[15,[22]],[15,[22]],[15,[[61,[[61,[[61,[[61,[297]]]]]]]]]]],[[299,[[0,[58,63]]]]]],[[[61,[278]],22,[15,[22]]],300],[[[61,[[103,[0]]]]],280],[[58,301,[82,[78]],[61,[37,60]],22],[[290,[58]]]],[[],[[36,[15]]]],[[[290,[58]]],15],[296,15],[[[298,[[0,[58,63]]]]],15],[[[299,[[0,[58,63]]]]],15],[300,15],[22,[[36,[15]]]],[267,22],[300,22],0,[256,185],[268,22],0,[256,302],[[45,4],[[36,[[15,[22]]]]]],[57],[[[0,[58,63]],[10,[256]],9],[[155,[61]]]],[[[0,[78,16]],[10,[256]],9],[[155,[61]]]],[[[0,[58,63]],267,[61,[114]],[15,[22]],[15,[22]],[15,[[61,[[61,[[61,[297]]]]]]]]],[[155,[[61,[278]]]]]],[[[0,[78,16]],267,[61,[114]],[15,[22]],[15,[22]],[15,[[61,[[61,[[61,[297]]]]]]]]],[[155,[[61,[278]]]]]],[[[0,[58,63]]],[[155,[258]]]],[[[0,[259,260,214,236]]],[[155,[258]]]],[[[0,[58,63]],[10,[256]]],[[36,[[61,[[61,[303,60]],60]],207]]]],0,0,[[[298,[[0,[58,63]]]]],202],0,[[]],[[[299,[[0,[58,63]]]]]],[[45,22],[[247,[45]]]],[[45,4],[[248,[45,4]]]],0,[256,[[15,[[36,[[82,[304]],207]]]]]],[[[290,[58]],[61,[37,60]]]],[[45,22],[[249,[45]]]],[[45,4],[[250,[45,4]]]],[[61,114,22,[15,[22]],[15,[[61,[[61,[297]]]]]]],[[155,[278]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],59],[267,22],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[305,[[36,[270]]]],[305,[[36,[271]]]],[[],36],[[],36],[[],36],[[],[[36,[272]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[256,185],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[306,306],[297,297],[[]],[[]],[[[10,[303]],22],[[36,[[61,[306]],207]]]],[[306,306],5],[[297,297],5],[[307,307],5],[[308,308],5],[[],5],[[],5],[[306,40],[[36,[41]]]],[[297,40],[[36,[41]]]],[[307,40],115],[[308,40],115],[[]],[[]],[308,307],[[]],[[]],[267,5],[[306,47]],[[297,47]],[[]],[[]],[[]],[[]],0,0,0,0,[[22,22],306],0,0,[[[0,[58,63]],[10,[256]],[10,[114]]],[[36,[[61,[307]],131]]]],[[[0,[58,63]],267,[10,[114]],78],[[36,[[61,[[61,[[61,[297]]]]]],131]]]],0,0,0,[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],0,0,0,0,0,0,0,0,[258,[[155,[202]]]],0,0,0,[[[10,[294]]],[[61,[114]]]],[206,[[155,[[15,[202]]]]]],0,0,0,0,0,0,0,0,0,[[]],[[]],[[114,[10,[267]]],[[155,[309]]]],0,[[309,309],5],[[309,40],115],[[]],[[]],0,0,0,[[],36],[[],36],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[],36],[[[310,[2]]],36],[311,36],[[45,4],[[36,[5]]]],[[45,4],[[36,[5]]]],[[[0,[[13,[81]],214,215]],294,312,[10,[313]]],[[155,[[61,[[314,[[155,[282]]]]]]]]]],[[81,277,[10,[315]],312,313],[[155,[282]]]],[[81,277,312,313],[[155,[282]]]],[[81,277,[10,[315]],312,313],[[155,[[314,[[155,[282]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[282,[[61,[37,60]]]],[45,45],[[110,313],5],[[294,294],5],[316,316],[293,293],[317,317],[258,258],[318,318],[319,319],[320,320],[321,321],[322,322],[313,313],[302,302],[323,323],[294,294],[324,324],[315,315],[312,312],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[316,316],19],[[317,317],19],[[258,22],325],0,0,[318,[[10,[266]]]],[[282,[61,[37,60]],319],[[36,[281,207]]]],[326,22],[326,279],0,[320,291],[321,37],[322,143],[45,[[36,[22]]]],0,0,0,[[],320],[[],321],[[],322],0,[[[327,[39]],[15,[[61,[316]]]]],[[155,[65]]]],[[316,316],5],[[293,293],5],[[317,317],5],[[319,319],5],[[320,320],5],[[321,321],5],[[322,322],5],[[313,313],5],[[302,302],5],[[323,323],5],[[294,294],5],[[324,324],5],[[315,315],5],[[312,312],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[318,[[10,[294]]]],[[45,4],[[242,[45,4]]]],[[45,4],[[36,[15]]]],[[316,40],[[36,[41]]]],[[293,40],[[36,[41]]]],[[317,40],[[36,[41]]]],[[258,40],[[36,[41]]]],[[318,40],[[36,[41]]]],[[326,40],[[36,[41]]]],[[282,40],[[36,[41]]]],[[281,40],[[36,[41]]]],[[319,40],[[36,[41]]]],[[320,40],[[36,[41]]]],[[321,40],[[36,[41]]]],[[322,40],[[36,[41]]]],[[313,40],[[36,[41]]]],[[302,40],[[36,[41]]]],[[323,40],[[36,[41]]]],[[294,40],[[36,[41]]]],[[324,40],[[36,[41]]]],[[315,40],115],[[312,40],115],0,[[45,4],36],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[59,[61,[294,60]],328,[15,[329]],[15,[143]]],294],[[59,328,[15,[329]],[15,[271]],[61,[294,60]],[15,[143]]],294],[[59,302],294],[45,[[243,[45]]]],[[],15],[[[310,[2]]],15],[311,15],[294,323],[[[10,[315]]],22],[[316,47]],[[293,47]],[[317,47]],[[319,47]],[[320,47]],[[321,47]],[[322,47]],[[313,47]],[[302,47]],[[323,47]],[[324,47]],[326,268],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[310,[2]]]],[[[327,[39]]],39],[[[327,[39]]]],[[]],[[]],[258,317],[281,5],0,[258,[[15,[[61,[316,60]]]]]],0,0,[315,22],[[45,4],[[244,[45,4]]]],[[45,78],[[246,[45,78]]]],[[45,78],[[245,[45,78]]]],0,0,0,[318,9],[294,9],0,[[2,319,[61,[37,60]]],[[310,[2]]]],[[[0,[2,214,215]]],314],[[[0,[241,214,215]]],311],[[59,[27,[[15,[59]]]]],316],[[143,[61,[330,60]],185,[61,[331,60]],[27,[[15,[[61,[316,60]]]]]],[27,[[15,[59]]]],[27,[[15,[[61,[332,60]]]]]],[27,[[15,[333]]]],[27,[[15,[[61,[37,60]]]]]]],317],[[59,[61,[294,60]]],318],[[268,[61,[37,60]],279,22,293,[15,[22]]],326],[[2,319,[61,[37,60]]],[[310,[2]]]],[[],[[36,[15]]]],[314,15],[[[334,[[0,[[13,[81]],214,215]],2]]],15],[22,[[36,[15]]]],0,0,[[[10,[315]]],22],[326,22],[[[327,[39]]],312],[[[335,[[0,[235,214,236]]]]],312],[[[327,[39]]],318],[[[334,[[13,[81]],2]]],318],[[[335,[[0,[235,214,236]]]]],318],[[316,316],[[15,[19]]]],[[317,317],[[15,[19]]]],[[[12,[[335,[[0,[235,214,236]]]]]],55],[[56,[36]]]],[[[12,[[335,[[0,[235,214,236]]]]]],55],[[56,[36]]]],[[[12,[[335,[[0,[235,214,236]]]]]],55],[[56,[36]]]],[[45,4],[[36,[[15,[22]]]]]],0,[336,[[36,[316,285]]]],[336,[[36,[316,285]]]],[336,[[36,[317,285]]]],[336,[[36,[317,285]]]],0,[[[176,[[0,[[13,[81]],214,215]]]],[61,[[61,[313]]]],[61,[294]],312],[[337,[131]]]],0,0,[258,318],[[[327,[39]]],202],[[[335,[[0,[235,214,236]]]]],202],0,0,[[326,[61,[306,60]]]],[326,[[15,[[10,[306]]]]]],[[]],[314],[311],[[45,22],[[247,[45]]]],[[45,4],[[248,[45,4]]]],[[[10,[315]]]],[[81,[10,[315]],22,22]],[[[12,[[335,[[0,[235,214,236]]]]]],[176,[[103,[81]]]]],36],[326,[[15,[[36,[[82,[304]],207]]]]]],[338,54],[338,[[12,[[103,[54,60]]]]]],[338,[[12,[[103,[54,60]]]]]],[338,54],[[45,22],[[249,[45]]]],[[45,4],[[250,[45,4]]]],[81,[[61,[81]]]],[[81,294],[[155,[[61,[[61,[315]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[294,[[61,[277]]]],[202,[[155,[318]]]],[114,[[155,[294]]]],[[110,[0,[78,16]]],61],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[275,[[36,[313]]]],[[],36],[[],[[36,[302]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[9,[[36,[318,207]]]],[[59,302,328,[15,[272]],[15,[270]],[15,[143]]],[[36,[294,207]]]],[317,[[36,[258,207]]]],[[[10,[330]]],[[36,[294,207]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[291,[[36,[320,207]]]],[37,[[36,[321,207]]]],[143,[[36,[322,207]]]],[[39,202,312],[[155,[[327,[39]]]]]],[[2,202,312,[61,[[61,[313]]]]],[[155,[[334,[[13,[81]],2]]]]]],[[[0,[235,214,236]],202,[61,[[61,[313]]]],312],[[36,[[335,[[0,[235,214,236]]]],131]]]],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[326,22],0,0,0,0,[[[327,[39]],[337,[131]]],155],[[[61,[37]],5,[15,[130]],22,324],155],[[39,317],[[36,[65,207]]]],[[324,[10,[315]],[61,[37]]],155],0,[[316,339],[[36,[22,285]]]],[[317,339],[[36,[22,285]]]],[[316,340],54],[[317,340],54],0,0,0,0,[[222,[82,[[13,[[10,[37]]]]]]],[[36,[226,131]]]],[[222,226,[82,[[13,[[10,[37]]]]]],22],[[36,[[176,[[103,[81]]]],131]]]],0,0,0,[1],[1],[[[145,[72]]],[[10,[72]]]],[[[142,[72]]],[[10,[72]]]],[[]],[[]],[[]],[[]],[[[142,[72]]],[[129,[72]]]],[[[145,[72]]],22],[[[145,[[0,[16,72]]]]],[[145,[[0,[16,72]]]]]],[[[142,[[0,[16,72]]]]],[[142,[[0,[16,72]]]]]],[[]],[[]],[[],[[145,[72]]]],[[],[[142,[72]]]],[[[142,[72]]],[[10,[72]]]],[[[145,[[0,[28,72]]]],[145,[[0,[28,72]]]]],5],[[[142,[[0,[28,72]]]],[142,[[0,[28,72]]]]],5],[[],5],[[[145,[72]],22]],[[[142,[72]]],72],[[[145,[[0,[32,72]]]],40],115],[[[142,[[0,[32,72]]]],40],115],[[]],[[[145,[143]]],[[145,[185]]]],[[[145,[72]]],[[142,[72]]]],[[[142,[143]]],[[142,[185]]]],[[]],[[]],[[]],[[[145,[72]]],[[61,[72]]]],[[[142,[72]]],[[129,[72]]]],[[[142,[72]]],[[3,[[142,[72]],[145,[72]]]]]],[[[145,[72]]],72],[[[142,[72]]],72],[[[145,[72]]],22],[[[142,[72]]],22],[[[145,[72]]],22],[[[142,[72]]],22],[[[142,[72]]],2],[[],[[145,[72]]]],[[],[[142,[72]]]],[[[61,[72]]],[[145,[72]]]],[[[129,[72]]],[[142,[72]]]],[22,[[145,[72]]]],[[[145,[72]]],[[15,[72]]]],[[[142,[72]]],72],[[[145,[72]],22]],[[[145,[72]]]],[[[142,[72]],22,22]],[[[142,[72]],22,22]],[[[145,[72]],22]],[[[142,[72]],22]],[[[145,[72]],22]],[[[142,[72]],22]],[[]],[[]],[[[145,[72]],2],[[36,[131]]]],[[[145,[72]],[145,[72]]],[[36,[131]]]],[[[145,[72]],[142,[72]],22,22],[[36,[131]]]],[[[145,[185]]],[[36,[[145,[143]]]]]],[[[61,[72]]],[[36,[[145,[72]]]]]],[[],36],[[[129,[72]]],[[36,[[142,[72]]]]]],[[[61,[72]]],[[36,[[142,[72]]]]]],[[[142,[185]]],[[36,[[142,[143]]]]]],[[],36],[34,[[36,[[145,[72]],131]]]],[2,[[36,[[145,[72]],131]]]],[[],36],[[],36],[[[145,[72]],72],[[36,[131]]]],[[[145,[72]],22],[[36,[131]]]],[[],66],[[],66],[22,[[145,[72]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[],92],[[[341,[83]]],92],[[[184,[74]]],92],[[[342,[72]]],92],[[[343,[72]]],92],[187,92],[[[344,[72]]],92],[345,92],[346,92],[347,92],[348,92],[349,92],[350,92],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[341,[[0,[16,83]]]]],[[341,[[0,[16,83]]]]]],[[[184,[[0,[16,74]]]]],[[184,[[0,[16,74]]]]]],[[[342,[[0,[16,72]]]]],[[342,[[0,[16,72]]]]]],[[[343,[[0,[16,72]]]]],[[343,[[0,[16,72]]]]]],[187,187],[[[344,[[0,[16,72]]]]],[[344,[[0,[16,72]]]]]],[345,345],[346,346],[347,347],[348,348],[349,349],[350,350],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],110],[[[341,[83]]],110],[[[184,[74]]],110],[[[342,[72]]],110],[[[343,[72]]],110],[187,110],[[[344,[72]]],110],[345,110],[346,110],[347,110],[348,110],[349,110],[350,110],[[],346],[[135,135],5],[[[341,[83]],[341,[83]]],5],[[[184,[[0,[28,74]]]],[184,[[0,[28,74]]]]],5],[[[342,[[0,[28,72]]]],[342,[[0,[28,72]]]]],5],[[[343,[[0,[28,72]]]],[343,[[0,[28,72]]]]],5],[[187,187],5],[[[344,[72]],[344,[72]]],5],[[345,345],5],[[346,346],5],[[347,347],5],[[348,348],5],[[349,349],5],[[350,350],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[[341,[[0,[32,83]]]],40],115],[[[184,[[0,[32,74]]]],40],115],[[[342,[[0,[32,72]]]],40],115],[[[343,[[0,[32,72]]]],40],115],[[187,40],115],[[[344,[[0,[32,72]]]],40],115],[[345,40],115],[[346,40],115],[[347,40],115],[[348,40],115],[[349,40],115],[[350,40],115],[[]],[[]],[[[15,[74]]],[[184,[74]]]],[[[15,[[27,[59]]]]],[[342,[72]]]],[[]],[[[15,[[27,[[61,[37]]]]]]],[[343,[72]]]],[[]],[[[15,[5]]],187],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],5],[[[341,[83]]],5],[[[184,[74]]],5],[[[342,[72]]],5],[[[343,[72]]],5],[187,5],[[[344,[72]]],5],[345,5],[346,5],[347,5],[348,5],[349,5],[350,5],[[110,[15,[[103,[135]]]]],[[341,[83]]]],[[110,[15,[74]]],[[184,[74]]]],[[[15,[[27,[59]]]]],[[342,[72]]]],[[[15,[[27,[[61,[37]]]]]]],[[343,[72]]]],[[[15,[5]]],187],[[110,[15,[[103,[81]]]]],[[344,[72]]]],[[110,[15,[[103,[81]]]]],345],[[],346],[[110,[15,[[61,[[103,[135]]]]]]],347],[[110,[15,[[103,[81]]]]],348],[[110,[15,[[27,[[61,[37]]]]]]],349],[[110,144,[103,[135]]],350],[[81,22],[[103,[135]]]],[[[184,[74]],110],[[184,[74]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[350,144],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[[341,[83]]],[[15,[[103,[135]]]]]],[[[184,[74]]],[[15,[74]]]],[[[342,[72]]],[[15,[9]]]],[[[343,[72]]],[[15,[[10,[37]]]]]],[187,[[15,[5]]]],[349,[[15,[[10,[37]]]]]],[350,[[103,[135]]]],[[[344,[72]]],[[103,[81]]]],[345,[[103,[81]]]],[347,[[10,[[103,[135]]]]]],[348,[[15,[[103,[81]]]]]],0,0,0,0,0,0,[[185,195,186,351],185],[[185,195,186],185],[143,352],[143,353],[185,352],[185,353],[9,[[155,[354]]]],[143,355],[143,355],[185,355],[185,355],[185,353],[185,353],[185,353],[[185,195,351],[[356,[351]]]],[[185,195],353],[185,353],[[195,195],165],[[[76,[72]],9],[[69,[185]]]],[[9,9],[[15,[185]]]],[[9,9,195],[[15,[185]]]],[[[76,[72]],9,59],[[155,[[69,[185]]]]]],[[9,9,351],[[15,[185]]]],[[9,9,351,195],[[15,[185]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[190,190],[186,186],[192,192],[357,357],[205,205],[[]],[[]],[[]],[[]],[[]],[[357,357],19],[190,143],[186,143],0,[[],190],[[],186],[[],192],[[],357],[[190,190],5],[[186,186],5],[[192,192],5],[[357,357],5],[[205,205],5],[[],5],[[],5],[[],5],[[],5],0,[[190,40],115],[[190,40],115],[[186,40],115],[[186,40],115],[[192,40],115],[[192,40],115],[[357,40],115],[[357,40],115],[[205,40],115],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[22],[[]],[[],190],[[],186],[[],192],[[],357],[358,192],[164,192],[[]],[[],190],[[],186],[[],192],[[],357],[[]],[22,15],[[68,68],357],[[190,47]],[[186,47]],[[357,47]],[[205,47]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],5],[[],5],[[],5],[[],5],[190,143],[186,143],0,[190],[186],[357],[[166,22],[[174,[166]]]],[166,[[359,[166]]]],[[199,199],[[360,[199]]]],[[143,143],190],[[143,143,185],186],[[[174,[166]]],15],[[[359,[166]]],15],[[[360,[199]]],15],[186,185],[[357,357],[[15,[19]]]],[[22,22],[[15,[360]]]],[[22,22],[[15,[360]]]],0,[[[174,[166]]]],[[[359,[166]]]],[[[360,[199]]]],[[]],[190],[186],[192],[357],[192,358],[192,164],[[]],[190],[186],[192],[357],[[]],[[]],[[]],[[]],[[]],[[]],[[],59],[[],59],[[],59],[[],59],[[],22],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[361,361]],[[362,362]],[[363,363]],[[364,364]],[[365,365]],[[366,366]],[[367,367]],[[368,368]],[[369,369]],[[370,370]],[[371,371]],[[361,361]],[[362,362]],[[363,363]],[[364,364]],[[365,365]],[[366,366]],[[367,367]],[[368,368]],[[369,369]],[[370,370]],[[371,371]],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[361,361],[362,362],[363,363],[364,364],[365,365],[366,366],[367,367],[368,368],[369,369],[370,370],[372,372],[373,373],[374,374],[371,371],[375,375],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],361],[[],362],[[],363],[[],364],[[],365],[[],366],[[],367],[[],368],[[],369],[[],370],[[],372],[[],373],[[],374],[[],371],[[],375],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[10],[[[10,[37]]],361],[[[10,[358]]],362],[[[10,[291]]],363],[[[10,[65]]],364],[[[10,[144]]],365],[[[10,[376]]],366],[[[10,[143]]],367],[[[10,[185]]],368],[[[10,[164]]],369],[[[10,[165]]],370],[[[10,[192]]],372],[[[10,[190]]],373],[[[10,[186]]],374],[[[10,[68]]],371],[[[10,[357]]],375],[10],[[[10,[37]],37],361],[[[10,[358]],358],362],[[[10,[291]],291],363],[[[10,[65]],65],364],[[[10,[144]],144],365],[[[10,[376]],376],366],[[[10,[143]],143],367],[[[10,[185]],185],368],[[[10,[164]],164],369],[[[10,[165]],165],370],[[[10,[192]],192],372],[[[10,[190]],190],373],[[[10,[186]],186],374],[[[10,[68]],68],371],[[[10,[357]],357],375],0,0,0,0,0,0,[[361,22]],[[362,22]],[[363,22]],[[364,22]],[[365,22]],[[366,22]],[[367,22]],[[368,22]],[[369,22]],[[370,22]],[[372,22]],[[373,22]],[[374,22]],[[371,22]],[[375,22]],[[361,22]],[[362,22]],[[363,22]],[[364,22]],[[365,22]],[[366,22]],[[367,22]],[[368,22]],[[369,22]],[[370,22]],[[372,22]],[[373,22]],[[374,22]],[[371,22]],[[375,22]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[361,37],[362,358],[363,291],[364,65],[365,144],[366,376],[367,143],[368,185],[369,164],[370,165],[371,68],[[361,361],361],[[362,362],362],[[363,363],363],[[364,364],364],[[365,365],365],[[366,366],366],[[367,367],367],[[368,368],368],[[369,369],369],[[370,370],370],[[371,371],371],[361,37],[362,358],[363,291],[364,65],[365,144],[366,376],[367,143],[368,185],[369,164],[370,165],[371,68],[[361,361],361],[[362,362],362],[[363,363],363],[[364,364],364],[[365,365],365],[[366,366],366],[[367,367],367],[[368,368],368],[[369,369],369],[[370,370],370],[[371,371],371],0,[[],361],[[],362],[[],363],[[],364],[[],365],[[],366],[[],367],[[],368],[[],369],[[],370],[[],371],[[],361],[[],362],[[],363],[[],364],[[],365],[[],366],[[],367],[[],368],[[],369],[[],370],[[],371],[[]],[[361,65,361],361],[[362,291,362],362],[[363,358,363],363],[[364,37,364],364],[[365,65,365],365],[[366,291,366],366],[[367,358,367],367],[[368,37,368],368],[[369,358,369],369],[[370,37,370],370],[[372,291,372],372],[[373,37,373],373],[[374,37,374],374],[[371,37,371],371],[[375,37,375],375],[361,37],[362,358],[363,291],[364,65],[365,144],[366,376],[367,143],[368,185],[369,164],[370,165],[371,68],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],0,0,0,0,[196,[[61,[37]]]],[[196,[61,[37]]]],[196,59]],"c":[1814,1815],"p":[[3,"Private"],[8,"Iterator"],[4,"Either"],[8,"FnMut"],[15,"bool"],[3,"CStr"],[8,"AsMut"],[3,"Path"],[15,"str"],[15,"slice"],[3,"OsStr"],[3,"Pin"],[8,"AsRef"],[8,"Error"],[4,"Option"],[8,"Clone"],[3,"AHashMap"],[8,"Ord"],[4,"Ordering"],[8,"FromIterator"],[8,"BufRead"],[15,"usize"],[3,"RandomState"],[8,"Deref"],[8,"DerefMut"],[8,"FnOnce"],[8,"Into"],[8,"PartialEq"],[8,"Eq"],[8,"Hash"],[8,"BuildHasher"],[8,"Debug"],[8,"Extend"],[8,"IntoIterator"],[8,"Copy"],[4,"Result"],[15,"u8"],[3,"Error"],[8,"Write"],[3,"Formatter"],[3,"Error"],[8,"Display"],[3,"HashMap"],[15,"array"],[8,"Sized"],[8,"Borrow"],[8,"Hasher"],[3,"IntoKeys"],[3,"IntoValues"],[8,"Default"],[8,"ExactSizeIterator"],[8,"DoubleEndedIterator"],[8,"PartialOrd"],[8,"Future"],[3,"Context"],[4,"Poll"],[3,"Demand"],[8,"Read"],[3,"String"],[3,"Global"],[3,"Vec"],[8,"VarInt"],[8,"Seek"],[4,"SeekFrom"],[15,"u64"],[3,"TypeId"],[3,"Arguments"],[15,"i128"],[3,"PrimitiveArray"],[8,"NativeArithmetics"],[8,"Add"],[8,"Offset"],[3,"MutableBinaryArray"],[8,"NativeType"],[3,"MutableUtf8Array"],[3,"Utf8Array"],[3,"MutablePrimitiveArray"],[8,"Fn"],[3,"BooleanArray"],[3,"BinaryArray"],[8,"Array"],[3,"Arc"],[8,"DictionaryKey"],[3,"DictionaryArray"],[3,"FixedSizeBinaryArray"],[3,"FixedSizeListArray"],[3,"ListArray"],[3,"MapArray"],[3,"NullArray"],[3,"StructArray"],[3,"UnionArray"],[8,"Any"],[3,"MutableBinaryValuesArray"],[3,"MutableBooleanArray"],[8,"MutableArray"],[3,"MutableDictionaryArray"],[3,"MutableFixedSizeBinaryArray"],[3,"MutableFixedSizeListArray"],[3,"MutableListArray"],[3,"MutableNullArray"],[3,"MutableStructArray"],[3,"MutableUtf8ValuesArray"],[3,"Box"],[8,"CheckedAdd"],[8,"CheckedDiv"],[8,"CheckedMul"],[8,"CheckedRem"],[8,"CheckedSub"],[3,"ArrayValuesIter"],[4,"DataType"],[8,"Div"],[8,"NumCast"],[8,"TrustedLen"],[3,"Field"],[6,"Result"],[3,"GrowableBinary"],[3,"GrowableBoolean"],[15,"never"],[3,"GrowableDictionary"],[3,"GrowableFixedSizeBinary"],[3,"GrowableFixedSizeList"],[3,"GrowableList"],[3,"GrowableMap"],[3,"GrowableNull"],[3,"GrowablePrimitive"],[3,"GrowableStruct"],[3,"GrowableUnion"],[3,"GrowableUtf8"],[3,"Buffer"],[3,"Bitmap"],[4,"Error"],[3,"BitmapIter"],[4,"ZipValidity"],[6,"BinaryValueIter"],[8,"Scalar"],[3,"ChunksExact"],[6,"ListValuesIter"],[3,"Iter"],[6,"Utf8ValuesIter"],[6,"HashedMap"],[8,"Mul"],[3,"OffsetsBuffer"],[15,"i32"],[15,"i8"],[3,"Offsets"],[3,"MutableBitmap"],[8,"OverflowingAdd"],[8,"OverflowingMul"],[8,"OverflowingSub"],[8,"Rem"],[8,"SaturatingAdd"],[8,"SaturatingMul"],[8,"SaturatingSub"],[8,"Sub"],[6,"Result"],[8,"TryExtend"],[8,"TryExtendFromSelf"],[8,"TryPush"],[8,"WrappingAdd"],[8,"WrappingMul"],[8,"WrappingSub"],[8,"Growable"],[6,"DynComparator"],[15,"f32"],[15,"f64"],[8,"BitChunk"],[3,"BitChunks"],[3,"IntoIter"],[3,"Bytes"],[3,"SlicesIterator"],[3,"ZipValidityIter"],[3,"BitChunksExact"],[3,"BitChunksExactMut"],[3,"BitChunkIter"],[3,"ForeignVec"],[3,"Chunk"],[8,"Simd"],[8,"Sum"],[8,"CheckedNeg"],[8,"One"],[8,"Neg"],[8,"Pow"],[8,"WrappingNeg"],[3,"PrimitiveScalar"],[15,"i64"],[3,"months_days_ns"],[3,"BooleanScalar"],[8,"FromLexical"],[3,"CastOptions"],[3,"days_ms"],[8,"Float"],[3,"f16"],[8,"ToPrimitive"],[8,"AsPrimitive"],[4,"TimeUnit"],[8,"ToLexical"],[8,"Simd8"],[6,"Filter"],[8,"Index"],[4,"PhysicalType"],[4,"IntegerType"],[3,"Schema"],[4,"UnionMode"],[4,"IntervalUnit"],[4,"PrimitiveType"],[6,"Metadata"],[4,"ParquetError"],[3,"TryReserveError"],[3,"Utf8Error"],[3,"Utf8Error"],[3,"Error"],[3,"FromUtf8Error"],[4,"OutOfSpecKind"],[8,"Send"],[8,"Sync"],[3,"ArrowSchema"],[3,"ArrowArray"],[3,"ArrowArrayStream"],[3,"ArrowArrayStreamReader"],[3,"IpcField"],[3,"IpcSchema"],[3,"FileMetadata"],[3,"StreamMetadata"],[3,"FileReader"],[3,"StreamReader"],[6,"Dictionaries"],[4,"StreamState"],[4,"Compression"],[3,"Record"],[3,"StreamWriter"],[3,"FileWriter"],[3,"WriteOptions"],[3,"Buffer"],[3,"FieldNode"],[8,"AsyncWrite"],[8,"Unpin"],[3,"FileSink"],[3,"StreamSink"],[3,"Convert"],[3,"Empty"],[8,"FallibleStreamingIterator"],[3,"Filter"],[3,"Fuse"],[3,"Map"],[3,"MapRef"],[3,"MapErr"],[3,"Skip"],[3,"SkipWhile"],[3,"Take"],[3,"TakeWhile"],[3,"RecordSerializer"],[3,"Serializer"],[8,"DoubleEndedFallibleStreamingIterator"],[3,"Serializer"],[3,"FileWriter"],[3,"ColumnChunkMetaData"],[8,"Index"],[3,"FileMetaData"],[8,"AsyncRead"],[8,"AsyncSeek"],[4,"State"],[8,"PageIterator"],[3,"Decompressor"],[3,"BasicDecompressor"],[3,"ReadColumnIterator"],[3,"ColumnDescriptor"],[3,"RowGroupMetaData"],[4,"DataPageHeader"],[4,"ParquetTimeUnit"],[4,"PrimitiveLogicalType"],[4,"GroupLogicalType"],[4,"PrimitiveConvertedType"],[4,"InitNested"],[3,"ColumnChunk"],[3,"Encoding"],[8,"Pages"],[3,"PrimitiveType"],[6,"ArrayIter"],[4,"Compression"],[3,"NestedState"],[4,"CompressedPage"],[4,"Page"],[4,"Error"],[3,"TryFromSliceError"],[4,"Error"],[3,"TryFromIntError"],[4,"TimeUnit"],[3,"ColumnIterator"],[6,"PageFilter"],[3,"PageReader"],[15,"u32"],[3,"ColumnMetaData"],[3,"Descriptor"],[4,"ParquetType"],[6,"NestedArrayIter"],[3,"StructIterator"],[3,"FilteredPage"],[3,"FileReader"],[3,"RowGroupReader"],[3,"RowGroupDeserializer"],[3,"PageMetaData"],[4,"ParquetPhysicalType"],[3,"PageLocation"],[8,"Statistics"],[4,"LogicalType"],[3,"Interval"],[4,"FieldPageStatistics"],[3,"ColumnPageStatistics"],[3,"Statistics"],[3,"Compressor"],[3,"DynStreamingIterator"],[3,"WriteOptions"],[4,"Encoding"],[3,"DynIter"],[4,"Nested"],[3,"KeyValue"],[3,"ThriftFileMetaData"],[3,"SchemaDescriptor"],[4,"CompressionOptions"],[3,"BrotliLevel"],[3,"GzipLevel"],[3,"ZstdLevel"],[3,"FieldInfo"],[4,"Version"],[4,"ColumnOrder"],[3,"CompressedDataPage"],[3,"FileWriter"],[4,"Repetition"],[4,"GroupConvertedType"],[3,"SchemaElement"],[3,"RowGroup"],[4,"ColumnOrder"],[4,"EncryptionAlgorithm"],[3,"RowGroupIterator"],[3,"FileSink"],[8,"TInputProtocol"],[6,"RowGroupIter"],[8,"TInputStreamProtocol"],[8,"TOutputProtocol"],[8,"TOutputStreamProtocol"],[3,"DictionaryScalar"],[3,"Utf8Scalar"],[3,"BinaryScalar"],[3,"ListScalar"],[3,"MapScalar"],[3,"NullScalar"],[3,"StructScalar"],[3,"FixedSizeListScalar"],[3,"FixedSizeBinaryScalar"],[3,"UnionScalar"],[8,"TimeZone"],[3,"NaiveDate"],[3,"NaiveDateTime"],[3,"FixedOffset"],[3,"NaiveTime"],[3,"DateTime"],[3,"i256"],[15,"u16"],[3,"BitChunkOnes"],[3,"IndexRange"],[3,"u8x64"],[3,"u16x32"],[3,"u32x16"],[3,"u64x8"],[3,"i8x64"],[3,"i16x32"],[3,"i32x16"],[3,"i64x8"],[3,"f32x16"],[3,"f64x8"],[3,"i128x8"],[3,"f16x32"],[3,"days_msx8"],[3,"months_days_nsx8"],[3,"i256x8"],[15,"i16"],[8,"GenericBinaryArray"],[8,"PushUnchecked"],[8,"BitChunkIterExact"],[8,"SimdOrd"],[8,"Sum"],[8,"ArrayAdd"],[8,"ArrayCheckedAdd"],[8,"ArrayCheckedDiv"],[8,"ArrayCheckedMul"],[8,"ArrayCheckedRem"],[8,"ArrayCheckedSub"],[8,"ArrayDiv"],[8,"ArrayMul"],[8,"ArrayOverflowingAdd"],[8,"ArrayOverflowingMul"],[8,"ArrayOverflowingSub"],[8,"ArrayRem"],[8,"ArraySaturatingAdd"],[8,"ArraySaturatingMul"],[8,"ArraySaturatingSub"],[8,"ArraySub"],[8,"ArrayWrappingAdd"],[8,"ArrayWrappingMul"],[8,"ArrayWrappingSub"],[8,"Simd8PartialEq"],[8,"Simd8Lanes"],[8,"Simd8PartialOrd"],[13,"InvalidBuffer"],[13,"InvalidBuffersLength"],[13,"InvalidBitmap"],[13,"InvalidId"],[13,"InvalidIdDataType"],[8,"MutStreamingIterator"],[13,"GroupType"],[13,"Time"],[13,"Timestamp"],[8,"NativeSimd"],[8,"FromMaskChunk"]]},\ -"arrow_format":{"doc":"Generated code for Apache Arrow IPC and flight …","t":"ANDNNDDDDEDDNNDDNDNNEDNNDENNDNNDNNDNNDDDENNDNNDEEDDDDDNNDDNNDDNNDDDNDNNDDNNDEDDDNNDDNNDDNNDDNNDNNDNNDDEEDENNNNNDNNDEDNNDNDNNDNNNEDNNDDNNEDNNDDNNDEDDNNDDNNDDDDNNDEDNNDEEDNNEDNDNNDNNNNNNNLMLLLMMMLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMLMLLMMLMLMLLLMMMLMLMLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLMLMLMLLLMMMLMLMLMLMLLMMLMLMLMLMLLMMCLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLMLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLMMMMMLMLLMM","n":["ipc","Big","Binary","Binary","Binary","BinaryRef","Block","BlockRef","BodyCompression","BodyCompressionMethod","BodyCompressionRef","Bool","Bool","Bool","BoolRef","Buffer","Buffer","BufferRef","Column","CompressedBody","CompressionType","Date","Date","Date","DateRef","DateUnit","Day","DayTime","Decimal","Decimal","Decimal","DecimalRef","Dense","DenseArray","DictionaryBatch","DictionaryBatch","DictionaryBatch","DictionaryBatchRef","DictionaryEncoding","DictionaryEncodingRef","DictionaryKind","DictionaryReplacement","Double","Duration","Duration","Duration","DurationRef","Endianness","Feature","Field","FieldNode","FieldNodeRef","FieldRef","FixedSizeBinary","FixedSizeBinary","FixedSizeBinary","FixedSizeBinaryRef","FixedSizeList","FixedSizeList","FixedSizeList","FixedSizeListRef","FloatingPoint","FloatingPoint","FloatingPoint","FloatingPointRef","Footer","FooterRef","Half","Int","Int","Int","IntRef","Interval","Interval","Interval","IntervalRef","IntervalUnit","KeyValue","KeyValueRef","LargeBinary","LargeBinary","LargeBinary","LargeBinaryRef","LargeList","LargeList","LargeList","LargeListRef","LargeUtf8","LargeUtf8","LargeUtf8","LargeUtf8Ref","List","List","List","ListRef","Little","Lz4Frame","Map","Map","Map","MapRef","Message","MessageHeader","MessageHeaderRef","MessageRef","MetadataVersion","Microsecond","Millisecond","Millisecond","MonthDayNano","Nanosecond","Null","Null","Null","NullRef","Precision","RecordBatch","RecordBatch","RecordBatch","RecordBatchRef","Row","Schema","Schema","Schema","SchemaRef","Second","Single","Sparse","SparseMatrixCompressedAxis","SparseMatrixIndexCsx","SparseMatrixIndexCsx","SparseMatrixIndexCsx","SparseMatrixIndexCsxRef","SparseTensor","SparseTensor","SparseTensor","SparseTensorIndex","SparseTensorIndexCoo","SparseTensorIndexCoo","SparseTensorIndexCoo","SparseTensorIndexCooRef","SparseTensorIndexCsf","SparseTensorIndexCsf","SparseTensorIndexCsf","SparseTensorIndexCsfRef","SparseTensorIndexRef","SparseTensorRef","Struct","Struct","Struct","StructRef","Tensor","Tensor","Tensor","TensorDim","TensorDimRef","TensorRef","Time","Time","Time","TimeRef","TimeUnit","Timestamp","Timestamp","Timestamp","TimestampRef","Type","TypeRef","Union","Union","Union","UnionMode","UnionRef","Unused","Utf8","Utf8","Utf8","Utf8Ref","V1","V2","V3","V4","V5","YearMonth","Zstd","axis_order","axis_order","bit_width","bit_width","bit_width","bit_width","bit_width","bit_width","body_length","body_length","body_length","body_length","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffers","buffers","byte_width","byte_width","children","children","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","codec","codec","compressed_axis","compressed_axis","compression","compression","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create_binary","create_bool","create_date","create_decimal","create_dictionary_batch","create_duration","create_fixed_size_binary","create_fixed_size_list","create_floating_point","create_int","create_interval","create_large_binary","create_large_list","create_large_utf8","create_list","create_map","create_null","create_record_batch","create_schema","create_sparse_matrix_index_csx","create_sparse_tensor","create_sparse_tensor_index_coo","create_sparse_tensor_index_csf","create_struct","create_tensor","create_time","create_timestamp","create_union","create_utf8","custom_metadata","custom_metadata","custom_metadata","custom_metadata","custom_metadata","custom_metadata","custom_metadata","custom_metadata","data","data","data","data","data","data","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","dictionaries","dictionaries","dictionary","dictionary","dictionary_kind","dictionary_kind","endianness","endianness","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","features","features","fields","fields","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","header","header","id","id","id","id","index_type","index_type","indices_buffer","indices_buffer","indices_buffer","indices_buffer","indices_buffers","indices_buffers","indices_strides","indices_strides","indices_type","indices_type","indices_type","indices_type","indices_type","indices_type","indptr_buffer","indptr_buffer","indptr_buffers","indptr_buffers","indptr_type","indptr_type","indptr_type","indptr_type","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_canonical","is_canonical","is_delta","is_delta","is_ordered","is_ordered","is_signed","is_signed","key","key","keys_sorted","keys_sorted","length","length","length","length","length","length","list_size","list_size","meta_data_length","meta_data_length","method","method","mode","mode","name","name","name","name","nodes","nodes","non_zero_length","non_zero_length","null_count","null_count","nullable","nullable","offset","offset","offset","offset","planus","precision","precision","precision","precision","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","record_batches","record_batches","scale","scale","schema","schema","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","shape","shape","shape","shape","size","size","sparse_index","sparse_index","strides","strides","timezone","timezone","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_","type_","type_","type_","type_","type_","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_ids","type_ids","unit","unit","unit","unit","unit","unit","unit","unit","unit","unit","value","value","version","version","version","version"],"q":[[0,"arrow_format"],[1,"arrow_format::ipc"]],"d":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Re-export of flatbuffers","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,72,0,64,65,0,0,0,0,0,0,0,64,65,0,0,79,0,90,20,0,0,64,65,0,0,52,59,0,64,65,0,33,68,0,85,86,0,0,0,0,20,37,0,64,65,0,0,0,0,0,0,0,0,64,65,0,0,64,65,0,0,64,65,0,0,0,37,0,64,65,0,0,64,65,0,0,0,0,0,64,65,0,0,64,65,0,0,64,65,0,0,64,65,0,72,78,0,64,65,0,0,0,0,0,0,55,52,55,59,55,0,64,65,0,0,0,85,86,0,90,0,85,86,0,55,37,33,0,0,94,95,0,0,85,86,0,0,94,95,0,0,94,95,0,0,0,0,64,65,0,0,85,86,0,0,0,0,64,65,0,0,0,64,65,0,0,0,0,64,65,0,0,20,0,64,65,0,19,19,19,19,19,59,78,1,93,5,6,7,36,51,56,8,10,18,87,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,11,82,14,48,15,71,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,81,80,92,91,11,82,16,21,23,25,27,29,31,34,36,38,40,42,44,46,48,49,51,53,56,57,60,62,66,69,71,74,80,82,83,87,88,91,93,96,98,100,64,64,64,64,85,64,64,64,64,64,64,64,64,64,64,64,64,85,85,94,85,94,94,64,85,64,64,64,64,17,15,75,10,16,71,74,87,84,97,101,83,96,100,16,18,19,20,21,23,25,27,29,31,33,34,36,37,38,40,42,44,46,48,49,51,52,53,55,56,57,59,60,62,64,66,68,69,71,72,73,74,76,78,79,80,82,83,85,87,88,90,91,93,94,96,98,100,17,16,15,71,70,69,75,74,16,18,19,20,21,23,25,27,29,31,33,34,36,37,38,40,42,44,46,48,49,51,52,53,55,56,57,59,60,62,64,66,68,69,71,72,73,74,76,78,79,80,82,83,85,87,88,90,91,93,94,96,98,100,19,20,33,37,52,55,59,68,72,78,79,90,75,74,75,74,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,10,87,70,84,69,83,70,69,89,92,88,91,1,93,89,88,89,92,1,88,91,93,92,91,1,93,92,1,91,93,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,89,88,84,83,70,69,5,36,67,66,32,31,12,77,11,73,76,82,30,29,8,18,81,80,35,34,15,99,71,98,11,82,97,96,77,76,15,71,8,12,18,73,0,39,6,38,51,17,22,24,26,28,30,32,35,5,39,41,43,45,47,14,50,6,54,7,58,61,63,67,70,15,75,81,11,84,10,89,92,1,97,99,101,17,16,6,51,17,16,16,18,19,20,21,23,25,27,29,31,33,34,36,37,38,40,42,44,46,48,49,51,52,53,55,56,57,59,60,62,64,66,68,69,71,72,73,74,76,78,79,80,82,83,85,87,88,90,91,93,94,96,98,100,97,101,96,100,99,98,97,96,101,100,58,57,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,16,16,17,18,18,8,19,19,20,20,21,21,22,23,23,24,25,25,26,27,27,28,29,29,30,31,31,32,33,33,34,34,35,36,36,5,37,37,38,38,39,40,40,41,42,42,43,44,44,45,46,46,47,48,48,14,49,49,50,51,51,6,52,52,53,53,54,55,55,56,56,7,57,57,58,59,59,60,60,61,62,62,63,64,64,65,66,66,67,68,68,69,69,70,71,71,15,72,72,73,73,12,74,74,75,76,76,77,78,78,79,79,80,80,81,82,82,11,83,83,84,85,85,86,87,87,10,88,88,89,90,90,91,91,92,93,93,1,94,94,95,96,96,97,98,98,99,100,100,101,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,15,97,101,71,96,100,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,35,34,54,7,58,61,63,53,56,57,60,62,67,66,17,10,16,87],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,[[4,[[3,[2]]]]]],0,[5,[[4,[2]]]],[6,[[4,[2]]]],[7,[[4,[2]]]],0,0,0,[8,9],[10,[[4,[9]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[11,[[4,[[13,[[3,[12]]]]]]]],0,[14,[[4,[2]]]],0,[15,[[4,[[13,[[3,[[4,[15]]]]]]]]]],0,[16,16],[17,17],[18,18],[8,8],[19,19],[20,20],[21,21],[22,22],[23,23],[24,24],[25,25],[26,26],[27,27],[28,28],[29,29],[30,30],[31,31],[32,32],[33,33],[34,34],[35,35],[36,36],[5,5],[37,37],[38,38],[39,39],[40,40],[41,41],[42,42],[43,43],[44,44],[45,45],[46,46],[47,47],[48,48],[14,14],[49,49],[50,50],[51,51],[6,6],[52,52],[53,53],[54,54],[55,55],[56,56],[7,7],[57,57],[58,58],[59,59],[60,60],[61,61],[62,62],[63,63],[64,64],[65,65],[66,66],[67,67],[68,68],[69,69],[70,70],[71,71],[15,15],[72,72],[73,73],[12,12],[74,74],[75,75],[76,76],[77,77],[78,78],[79,79],[80,80],[81,81],[82,82],[11,11],[83,83],[84,84],[85,85],[86,86],[87,87],[10,10],[88,88],[89,89],[90,90],[91,91],[92,92],[93,93],[1,1],[94,94],[95,95],[96,96],[97,97],[98,98],[99,99],[100,100],[101,101],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[81,[[4,[78]]]],0,[92,[[4,[90]]]],0,[11,[[4,[[13,[81]]]]]],0,[[102,[103,[19,19]],[105,[[104,[74]]]],[105,[[104,[[106,[18]]]]]],[105,[[104,[[106,[18]]]]]],[105,[[104,[[106,[[104,[66]]]]]]]]],[[104,[16]]]],[102,[[104,[21]]]],[102,[[104,[23]]]],[102,[[104,[25]]]],[102,[[104,[27]]]],[[102,[103,[2,2]]],[[104,[29]]]],[[102,[103,[107,107]]],[[104,[31]]]],[[102,[103,[33,33]],[105,[[104,[[106,[2]]]]]]],[[104,[34]]]],[[102,[103,[2,2]],[103,[107,107]]],[[104,[36]]]],[[102,[103,[37,37]]],[[104,[38]]]],[102,[[104,[40]]]],[102,[[104,[42]]]],[102,[[104,[44]]]],[102,[[104,[46]]]],[[102,[103,[2,2]]],[[104,[48]]]],[102,[[104,[49]]]],[[102,[103,[2,2]],[103,[2,2]],[103,[2,2]]],[[104,[51]]]],[[102,[103,[52,52]]],[[104,[53]]]],[[102,[103,[55,55]],[103,[2,2]]],[[104,[56]]]],[[102,[103,[55,55]],[105,[[104,[108]]]]],[[104,[57]]]],[[102,[103,[59,59]]],[[104,[60]]]],[[102,[103,[55,55]]],[[104,[62]]]],[[102,[105,[[104,[108]]]],[105,[[104,[108]]]]],[[104,[66]]]],[[102,[103,[9,9]],[105,[[104,[36]]]],[103,[107,107]],[103,[68,68]]],[[104,[69]]]],[[102,[105,[[104,[108]]]],[103,[107,107]],[109,[64]],[105,[[104,[69]]]],[105,[[104,[[106,[[104,[71]]]]]]]],[105,[[104,[[106,[[104,[66]]]]]]]]],[[104,[71]]]],[[102,[103,[72,72]],[105,[[104,[[106,[[104,[71]]]]]]]],[105,[[104,[[106,[[104,[66]]]]]]]],[105,[[104,[[106,[20]]]]]]],[[104,[74]]]],[[102,[103,[78,78]],[103,[79,79]]],[[104,[80]]]],[[102,[103,[9,9]],[105,[[104,[[106,[76]]]]]],[105,[[104,[[106,[73]]]]]],[105,[[104,[80]]]]],[[104,[82]]]],[[102,[103,[9,9]],[105,[[104,[82]]]],[103,[107,107]]],[[104,[83]]]],[[102,[103,[19,19]],[109,[85]],[103,[9,9]],[105,[[104,[[106,[[104,[66]]]]]]]]],[[104,[87]]]],[[102,[110,[[104,[36]]]],[105,[[104,[[106,[9]]]]]],[110,[73]],[103,[107,107]]],[[104,[88]]]],[[102,[103,[90,90]],[110,[[104,[36]]]],[110,[73]],[110,[[104,[36]]]],[110,[73]]],[[104,[91]]]],[[102,[110,[[104,[36]]]],[110,[[104,[[106,[73]]]]]],[110,[[104,[36]]]],[110,[[104,[[106,[73]]]]]],[110,[[104,[[106,[2]]]]]]],[[104,[93]]]],[[102,[111,[64]],[110,[[104,[[106,[[104,[98]]]]]]]],[103,[9,9]],[111,[94]],[110,[73]]],[[104,[96]]]],[[102,[103,[9,9]],[105,[[104,[108]]]]],[[104,[98]]]],[[102,[111,[64]],[110,[[104,[[106,[[104,[98]]]]]]]],[105,[[104,[[106,[9]]]]]],[110,[73]]],[[104,[100]]]],[[102,[112,[42]]],[[113,[64]]]],[[102,[112,[49]]],[[113,[64]]]],[[102,[112,[53]]],[[113,[64]]]],[[102,[112,[51]]],[[113,[64]]]],[[102,[112,[83]]],[[113,[85]]]],[[102,[112,[62]]],[[113,[64]]]],[[102,[112,[48]]],[[113,[64]]]],[[102,[112,[29]]],[[113,[64]]]],[[102,[112,[38]]],[[113,[64]]]],[[102,[112,[36]]],[[113,[64]]]],[[102,[112,[60]]],[[113,[64]]]],[[102,[112,[46]]],[[113,[64]]]],[[102,[112,[27]]],[[113,[64]]]],[[102,[112,[44]]],[[113,[64]]]],[[102,[112,[25]]],[[113,[64]]]],[[102,[112,[31]]],[[113,[64]]]],[[102,[112,[21]]],[[113,[64]]]],[[102,[112,[82]]],[[113,[85]]]],[[102,[112,[74]]],[[113,[85]]]],[[102,[112,[91]]],[[113,[94]]]],[[102,[112,[96]]],[[113,[85]]]],[[102,[112,[88]]],[[113,[94]]]],[[102,[112,[93]]],[[113,[94]]]],[[102,[112,[23]]],[[113,[64]]]],[[102,[112,[100]]],[[113,[85]]]],[[102,[112,[56]]],[[113,[64]]]],[[102,[112,[57]]],[[113,[64]]]],[[102,[112,[34]]],[[113,[64]]]],[[102,[112,[40]]],[[113,[64]]]],[17,[[4,[[13,[[3,[[4,[67]]]]]]]]]],[15,[[4,[[13,[[3,[[4,[67]]]]]]]]]],[75,[[4,[[13,[[3,[[4,[67]]]]]]]]]],[10,[[4,[[13,[[3,[[4,[67]]]]]]]]]],0,0,0,0,[84,[[4,[[13,[11]]]]]],[97,[[4,[12]]]],[101,[[4,[12]]]],0,0,0,[114,[[115,[16]]]],[114,[[115,[18]]]],[114,[[115,[19]]]],[114,[[115,[20]]]],[114,[[115,[21]]]],[114,[[115,[23]]]],[114,[[115,[25]]]],[114,[[115,[27]]]],[114,[[115,[29]]]],[114,[[115,[31]]]],[114,[[115,[33]]]],[114,[[115,[34]]]],[114,[[115,[36]]]],[114,[[115,[37]]]],[114,[[115,[38]]]],[114,[[115,[40]]]],[114,[[115,[42]]]],[114,[[115,[44]]]],[114,[[115,[46]]]],[114,[[115,[48]]]],[114,[[115,[49]]]],[114,[[115,[51]]]],[114,[[115,[52]]]],[114,[[115,[53]]]],[114,[[115,[55]]]],[114,[[115,[56]]]],[114,[[115,[57]]]],[114,[[115,[59]]]],[114,[[115,[60]]]],[114,[[115,[62]]]],[114,[[115,[64]]]],[114,[[115,[66]]]],[114,[[115,[68]]]],[114,[[115,[69]]]],[114,[[115,[71]]]],[114,[[115,[72]]]],[114,[[115,[73]]]],[114,[[115,[74]]]],[114,[[115,[76]]]],[114,[[115,[78]]]],[114,[[115,[79]]]],[114,[[115,[80]]]],[114,[[115,[82]]]],[114,[[115,[83]]]],[114,[[115,[85]]]],[114,[[115,[87]]]],[114,[[115,[88]]]],[114,[[115,[90]]]],[114,[[115,[91]]]],[114,[[115,[93]]]],[114,[[115,[94]]]],[114,[[115,[96]]]],[114,[[115,[98]]]],[114,[[115,[100]]]],[17,[[4,[[13,[[3,[8]]]]]]]],0,[15,[[4,[[13,[70]]]]]],0,[70,[[4,[68]]]],0,[75,[[4,[72]]]],0,[[16,16],107],[[18,18],107],[[19,19],107],[[20,20],107],[[21,21],107],[[23,23],107],[[25,25],107],[[27,27],107],[[29,29],107],[[31,31],107],[[33,33],107],[[34,34],107],[[36,36],107],[[37,37],107],[[38,38],107],[[40,40],107],[[42,42],107],[[44,44],107],[[46,46],107],[[48,48],107],[[49,49],107],[[51,51],107],[[52,52],107],[[53,53],107],[[55,55],107],[[56,56],107],[[57,57],107],[[59,59],107],[[60,60],107],[[62,62],107],[[64,64],107],[[66,66],107],[[68,68],107],[[69,69],107],[[71,71],107],[[72,72],107],[[73,73],107],[[74,74],107],[[76,76],107],[[78,78],107],[[79,79],107],[[80,80],107],[[82,82],107],[[83,83],107],[[85,85],107],[[87,87],107],[[88,88],107],[[90,90],107],[[91,91],107],[[93,93],107],[[94,94],107],[[96,96],107],[[98,98],107],[[100,100],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[75,[[4,[[13,[[3,[[115,[20,116]]]]]]]]]],0,[75,[[4,[[13,[[3,[[4,[15]]]]]]]]]],0,[[16,117],118],[[17,117],118],[[18,117],118],[[8,117],118],[[19,117],118],[[20,117],118],[[21,117],118],[[22,117],118],[[23,117],118],[[24,117],118],[[25,117],118],[[26,117],118],[[27,117],118],[[28,117],118],[[29,117],118],[[30,117],118],[[31,117],118],[[32,117],118],[[33,117],118],[[34,117],118],[[35,117],118],[[36,117],118],[[5,117],118],[[37,117],118],[[38,117],118],[[39,117],118],[[40,117],118],[[41,117],118],[[42,117],118],[[43,117],118],[[44,117],118],[[45,117],118],[[46,117],118],[[47,117],118],[[48,117],118],[[14,117],118],[[49,117],118],[[50,117],118],[[51,117],118],[[6,117],118],[[52,117],118],[[53,117],118],[[54,117],118],[[55,117],118],[[56,117],118],[[7,117],118],[[57,117],118],[[58,117],118],[[59,117],118],[[60,117],118],[[61,117],118],[[62,117],118],[[63,117],118],[[64,117],118],[[65,117],118],[[66,117],118],[[67,117],118],[[68,117],118],[[69,117],118],[[70,117],118],[[71,117],118],[[15,117],118],[[72,117],118],[[73,117],118],[[12,117],118],[[74,117],118],[[75,117],118],[[76,117],118],[[77,117],118],[[78,117],118],[[79,117],118],[[80,117],118],[[81,117],118],[[82,117],118],[[11,117],118],[[83,117],118],[[84,117],118],[[85,117],118],[[86,117],118],[[87,117],118],[[10,117],118],[[88,117],118],[[89,117],118],[[90,117],118],[[91,117],118],[[92,117],118],[[93,117],118],[[1,117],118],[[94,117],118],[[95,117],118],[[96,117],118],[[97,117],118],[[98,117],118],[[99,117],118],[[100,117],118],[[101,117],118],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[10,[[4,[[13,[86]]]]]],0,[70,[[4,[9]]]],[84,[[4,[9]]]],0,0,[70,[[4,[[13,[5]]]]]],0,[89,[[4,[12]]]],[92,[[4,[12]]]],0,0,[1,[[4,[[3,[12]]]]]],0,[89,[[4,[[13,[[3,[9]]]]]]]],0,[89,[[4,[5]]]],[92,[[4,[5]]]],[1,[[4,[5]]]],0,0,0,[92,[[4,[12]]]],0,[1,[[4,[[3,[12]]]]]],0,[92,[[4,[5]]]],[1,[[4,[5]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[89,[[4,[107]]]],0,[84,[[4,[107]]]],0,[70,[[4,[107]]]],0,[5,[[4,[107]]]],0,[67,[[4,[[13,[108]]]]]],0,[32,[[4,[107]]]],0,[12,9],[77,9],[11,[[4,[9]]]],0,0,0,[30,[[4,[2]]]],0,[8,2],0,[81,[[4,[79]]]],0,[35,[[4,[33]]]],0,[15,[[4,[[13,[108]]]]]],[99,[[4,[[13,[108]]]]]],0,0,[11,[[4,[[13,[[3,[77]]]]]]]],0,[97,[[4,[9]]]],0,[77,9],0,[15,[[4,[107]]]],0,[8,9],[12,9],0,0,0,[39,[[4,[37]]]],[6,[[4,[2]]]],0,0,[[[106,[119]]],[[4,[17]]]],[[[106,[119]]],[[4,[22]]]],[[[106,[119]]],[[4,[24]]]],[[[106,[119]]],[[4,[26]]]],[[[106,[119]]],[[4,[28]]]],[[[106,[119]]],[[4,[30]]]],[[[106,[119]]],[[4,[32]]]],[[[106,[119]]],[[4,[35]]]],[[[106,[119]]],[[4,[5]]]],[[[106,[119]]],[[4,[39]]]],[[[106,[119]]],[[4,[41]]]],[[[106,[119]]],[[4,[43]]]],[[[106,[119]]],[[4,[45]]]],[[[106,[119]]],[[4,[47]]]],[[[106,[119]]],[[4,[14]]]],[[[106,[119]]],[[4,[50]]]],[[[106,[119]]],[[4,[6]]]],[[[106,[119]]],[[4,[54]]]],[[[106,[119]]],[[4,[7]]]],[[[106,[119]]],[[4,[58]]]],[[[106,[119]]],[[4,[61]]]],[[[106,[119]]],[[4,[63]]]],[[[106,[119]]],[[4,[67]]]],[[[106,[119]]],[[4,[70]]]],[[[106,[119]]],[[4,[15]]]],[[[106,[119]]],[[4,[75]]]],[[[106,[119]]],[[4,[81]]]],[[[106,[119]]],[[4,[11]]]],[[[106,[119]]],[[4,[84]]]],[[[106,[119]]],[[4,[10]]]],[[[106,[119]]],[[4,[89]]]],[[[106,[119]]],[[4,[92]]]],[[[106,[119]]],[[4,[1]]]],[[[106,[119]]],[[4,[97]]]],[[[106,[119]]],[[4,[99]]]],[[[106,[119]]],[[4,[101]]]],[17,[[4,[[13,[[3,[8]]]]]]]],0,[6,[[4,[2]]]],0,[17,[[4,[[13,[75]]]]]],0,[[16,120],115],[[18,120],115],[[19,120],115],[[20,120],115],[[21,120],115],[[23,120],115],[[25,120],115],[[27,120],115],[[29,120],115],[[31,120],115],[[33,120],115],[[34,120],115],[[36,120],115],[[37,120],115],[[38,120],115],[[40,120],115],[[42,120],115],[[44,120],115],[[46,120],115],[[48,120],115],[[49,120],115],[[51,120],115],[[52,120],115],[[53,120],115],[[55,120],115],[[56,120],115],[[57,120],115],[[59,120],115],[[60,120],115],[[62,120],115],[[64,120],115],[[66,120],115],[[68,120],115],[[69,120],115],[[71,120],115],[[72,120],115],[[73,120],115],[[74,120],115],[[76,120],115],[[78,120],115],[[79,120],115],[[80,120],115],[[82,120],115],[[83,120],115],[[85,120],115],[[87,120],115],[[88,120],115],[[90,120],115],[[91,120],115],[[93,120],115],[[94,120],115],[[96,120],115],[[98,120],115],[[100,120],115],[97,[[4,[[3,[[4,[99]]]]]]]],[101,[[4,[[3,[[4,[99]]]]]]]],0,0,[99,[[4,[9]]]],0,[97,[[4,[95]]]],0,[101,[[4,[[13,[[3,[9]]]]]]]],0,[58,[[4,[[13,[108]]]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[17,[[4,[16]]]],[[],115],[[],115],[8,[[4,[18]]]],[[],115],[[],115],[121,[[115,[19,122]]]],[[],115],[[],115],[9,[[115,[20,122]]]],[[],115],[22,[[4,[21]]]],[[],115],[24,[[4,[23]]]],[[],115],[[],115],[26,[[4,[25]]]],[[],115],[[],115],[28,[[4,[27]]]],[[],115],[[],115],[30,[[4,[29]]]],[[],115],[[],115],[32,[[4,[31]]]],[[],115],[[],115],[121,[[115,[33,122]]]],[[],115],[35,[[4,[34]]]],[[],115],[[],115],[5,[[4,[36]]]],[[],115],[[],115],[[],115],[121,[[115,[37,122]]]],[[],115],[39,[[4,[38]]]],[[],115],[41,[[4,[40]]]],[[],115],[[],115],[[],115],[43,[[4,[42]]]],[[],115],[45,[[4,[44]]]],[[],115],[[],115],[[],115],[47,[[4,[46]]]],[[],115],[[],115],[14,[[4,[48]]]],[[],115],[[],115],[50,[[4,[49]]]],[[],115],[6,[[4,[51]]]],[[],115],[[],115],[121,[[115,[52,122]]]],[[],115],[[],115],[54,[[4,[53]]]],[[],115],[[],115],[121,[[115,[55,122]]]],[7,[[4,[56]]]],[[],115],[[],115],[[],115],[58,[[4,[57]]]],[[],115],[[],115],[121,[[115,[59,122]]]],[[],115],[61,[[4,[60]]]],[[],115],[[],115],[63,[[4,[62]]]],[[],115],[[],115],[65,[[4,[64]]]],[[],115],[67,[[4,[66]]]],[[],115],[[],115],[[],115],[121,[[115,[68,122]]]],[70,[[4,[69]]]],[[],115],[[],115],[15,[[4,[71]]]],[[],115],[[],115],[[],115],[121,[[115,[72,122]]]],[[],115],[12,[[4,[73]]]],[[],115],[75,[[4,[74]]]],[[],115],[[],115],[77,[[4,[76]]]],[[],115],[[],115],[123,[[115,[78,122]]]],[[],115],[[],115],[123,[[115,[79,122]]]],[81,[[4,[80]]]],[[],115],[[],115],[[],115],[11,[[4,[82]]]],[[],115],[[],115],[84,[[4,[83]]]],[[],115],[[],115],[86,[[4,[85]]]],[[],115],[10,[[4,[87]]]],[[],115],[[],115],[[],115],[89,[[4,[88]]]],[[],115],[121,[[115,[90,122]]]],[[],115],[92,[[4,[91]]]],[[],115],[[],115],[1,[[4,[93]]]],[[],115],[[],115],[[],115],[95,[[4,[94]]]],[[],115],[97,[[4,[96]]]],[[],115],[[],115],[[],115],[99,[[4,[98]]]],[[],115],[[],115],[101,[[4,[100]]]],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[15,[[4,[[13,[65]]]]]],[97,[[4,[65]]]],[101,[[4,[65]]]],0,0,0,[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[35,[[4,[[13,[[3,[2]]]]]]]],0,[54,[[4,[52]]]],[7,[[4,[55]]]],[58,[[4,[55]]]],[61,[[4,[59]]]],[63,[[4,[55]]]],0,0,0,0,0,[67,[[4,[[13,[108]]]]]],0,[17,[[4,[19]]]],[10,[[4,[19]]]],0,0],"c":[],"p":[[3,"SparseTensorIndexCsfRef"],[15,"i32"],[3,"Vector"],[6,"Result"],[3,"IntRef"],[3,"DecimalRef"],[3,"TimeRef"],[3,"BlockRef"],[15,"i64"],[3,"MessageRef"],[3,"RecordBatchRef"],[3,"BufferRef"],[4,"Option"],[3,"FixedSizeBinaryRef"],[3,"FieldRef"],[3,"Footer"],[3,"FooterRef"],[3,"Block"],[4,"MetadataVersion"],[4,"Feature"],[3,"Null"],[3,"NullRef"],[3,"Struct"],[3,"StructRef"],[3,"List"],[3,"ListRef"],[3,"LargeList"],[3,"LargeListRef"],[3,"FixedSizeList"],[3,"FixedSizeListRef"],[3,"Map"],[3,"MapRef"],[4,"UnionMode"],[3,"Union"],[3,"UnionRef"],[3,"Int"],[4,"Precision"],[3,"FloatingPoint"],[3,"FloatingPointRef"],[3,"Utf8"],[3,"Utf8Ref"],[3,"Binary"],[3,"BinaryRef"],[3,"LargeUtf8"],[3,"LargeUtf8Ref"],[3,"LargeBinary"],[3,"LargeBinaryRef"],[3,"FixedSizeBinary"],[3,"Bool"],[3,"BoolRef"],[3,"Decimal"],[4,"DateUnit"],[3,"Date"],[3,"DateRef"],[4,"TimeUnit"],[3,"Time"],[3,"Timestamp"],[3,"TimestampRef"],[4,"IntervalUnit"],[3,"Interval"],[3,"IntervalRef"],[3,"Duration"],[3,"DurationRef"],[4,"Type"],[4,"TypeRef"],[3,"KeyValue"],[3,"KeyValueRef"],[4,"DictionaryKind"],[3,"DictionaryEncoding"],[3,"DictionaryEncodingRef"],[3,"Field"],[4,"Endianness"],[3,"Buffer"],[3,"Schema"],[3,"SchemaRef"],[3,"FieldNode"],[3,"FieldNodeRef"],[4,"CompressionType"],[4,"BodyCompressionMethod"],[3,"BodyCompression"],[3,"BodyCompressionRef"],[3,"RecordBatch"],[3,"DictionaryBatch"],[3,"DictionaryBatchRef"],[4,"MessageHeader"],[4,"MessageHeaderRef"],[3,"Message"],[3,"SparseTensorIndexCoo"],[3,"SparseTensorIndexCooRef"],[4,"SparseMatrixCompressedAxis"],[3,"SparseMatrixIndexCsx"],[3,"SparseMatrixIndexCsxRef"],[3,"SparseTensorIndexCsf"],[4,"SparseTensorIndex"],[4,"SparseTensorIndexRef"],[3,"SparseTensor"],[3,"SparseTensorRef"],[3,"TensorDim"],[3,"TensorDimRef"],[3,"Tensor"],[3,"TensorRef"],[3,"Builder"],[8,"WriteAsDefault"],[3,"Offset"],[8,"WriteAsOptional"],[15,"slice"],[15,"bool"],[15,"str"],[8,"WriteAsOptionalUnion"],[8,"WriteAs"],[8,"WriteAsUnion"],[8,"WriteAsOffset"],[3,"UnionOffset"],[8,"Deserializer"],[4,"Result"],[3,"UnknownEnumTag"],[3,"Formatter"],[6,"Result"],[15,"u8"],[8,"Serializer"],[15,"i16"],[3,"UnknownEnumTagKind"],[15,"i8"],[3,"TypeId"]]},\ +"arrow2":{"doc":"Welcome to arrow2’s documentation. Thanks for checking …","t":"DENNLLLLALLLLLLLLLLLLLLLLALLLLALALLLLLLLALLALLLLLLLLLLLLLALLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLALLLLALLLLLLLLLLLLLLLLLLLLALLLALLLALLLLLLLALLALLLLLLLIDDGDGGDIDDGGGGGGIGGGGGGGGGGGGSDGDGGIDDDDDDDDDDDDDDIDIIIGGGGGGGGDDGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLFALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLFLLLLLLLLLLKLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLIDDDDDDDDDDDDLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGFFFFDDDLLLFLLFFLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLFLLLLLLLLLFLLLLLLLLLLLLLLLLLLFFLLALFIIDDDDNNDEDLLLLLLLLLLLLLLLLLLFLLLLLLLLFFLLLLLLLLLLLLLLKFFLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLKLLLLFFFLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLAAAAAAAAAAAAAASSIIFFFFFFFKKFFFFFKKFFKKKFFFIIIIIIIIIIIIIIIIIIIFKFAFFFFFFKKKKKAFKFFKFFKKKFKKKKFKFAKKKIFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDLFFFFFFFFFFLLFFLLFFFFFFLFFFFFFLLFLFFMFFFFFFFFFFFFFFFFFFFLLLLFFFFFFFFFMFFQIIIIAAFFFFFFFFFFFFFKFFFFFKKFKFKFFFKFKFFFKFFFAAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFGFFFFFFFFFFFFFFFFNNNNENNNNNNNNNNDNNNNNNNNNNNNNNNENENNNNNNNNNNGNNNNNNENCDGNNNNNNENNNNNNNNNNNENNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLMLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLENNNNNNNGLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLFFFLLLLLLLLFFLLLLALLLLLLLLLLLLLLFFAAAADDLLALLLLLLLLLMLLMMLLLLLLMALLLLLLLLAGNDDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNENDDENNNLLMLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLMMLLLLLLLFFFFLLMMLMLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMEDNDDDNLLLLLLLLLLLLLLLMFLLLLALLLLLLLLLLLLLLLLLLLLLFLLLALLLLLLLLLLLLLLLLFLLDLLLLLLLLLLLLDDLLLLLLLMLLLLLLLLLLLLLLLLLLLLLADIDQIDDQDDDDDDDDDLKLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLFLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFAQIDQDLKLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLAAGDNNNNDDDNENNNNDNNNNQQINNDDNNNENENNNNNNNNNNQQNNNNNNNINGDNEGDIEEEENEENDDDDNENNDNNNNNNNNNNNNNNNNLLLLLLLLLLFFFKKLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFMLLLLLFFMLFLMLLLLLLLLLLLLCLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLFFFFFLLLLLLACFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLFMLLLLLLLLLLLLLLLLLLLLLLMLLMLLLFFFFFFFMALMLLLLALLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMDEDDNNLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLFLLLLLLMMMMLMMFFMMMLLLLLLLLLLLLLLDNDENDMMFMMMFFMMMMMMMMDLLFMLLLLMMMLLLNNNDNNDEEDNNNNNDNNNDDEQIDDDDNNNNDNNNQDNNNNNEEEENNNNNNGDDNNDNNNEDNDLLLLLLLLLLLLLLLLKLLLLFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLFLLMLLLLMMMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLCLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLFLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMLLLLMMMLLMLLLLLLLLLLLLMMFLLLLLLLLLLLLMLLLLMFMMLLLMMLLLLLLLFFLLLLLLLLFFLLLLLLLLLLLLLLLLFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLFFFMLLLLMMMMFFCDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDIDDDLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLRRRRRRFFFFFFFFFFFFFFFFFFFFFFFFIIDDQNSNNNSIDNNNNNNNIISENNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLKKLLLLLLKLLLLKKLLLLLDLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLALLLKLLLLLLKLLLLKLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLQISQQIIQLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDFFF","n":["AHashMap","Either","Left","Right","__clone_box","__clone_box","all","any","array","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_pin_mut","as_pin_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","bitmap","borrow","borrow","borrow_mut","borrow_mut","buffer","cause","chunk","clone","clone","clone_from","clone_into","clone_into","cmp","collect","compute","consume","count","datatypes","default","deref","deref","deref_mut","deref_mut","description","either","either_into","either_with","eq","eq","equivalent","equivalent","error","expect_left","expect_right","extend","extend","extend","factor_err","factor_first","factor_none","factor_ok","factor_second","ffi","fill_buf","find","find_map","flip","flush","fmt","fmt","fmt","fold","for_each","from","from","from","from","from","from_iter","get","get_key_value","get_mut","hash","index","insert","into","into","into","into","into_future","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_keys","into_values","io","is_left","is_right","last","left","left_and_then","left_or","left_or_default","left_or_else","len","map","map_either","map_either_with","map_left","map_right","mmap","new","next","next_back","nth","offset","partial_cmp","partition","poll","position","provide","read","read_exact","read_line","read_to_end","read_to_string","read_until","read_varint","remove","rfind","rfold","right","right_and_then","right_or","right_or_default","right_or_else","scalar","seek","size_hint","source","temporal_conversions","to_owned","to_owned","to_string","trusted_len","try_from","try_from","try_into","try_into","try_poll","type_id","type_id","types","unwrap_left","unwrap_right","util","with_capacity","with_capacity_and_hasher","with_hasher","write","write_all","write_fmt","write_varint","Array","ArrayValuesIter","BinaryArray","BinaryValueIter","BooleanArray","DaysMsArray","DaysMsVec","DictionaryArray","DictionaryKey","FixedSizeBinaryArray","FixedSizeListArray","Float16Array","Float16Vec","Float32Array","Float32Vec","Float64Array","Float64Vec","GenericBinaryArray","Int128Array","Int128Vec","Int16Array","Int16Vec","Int256Array","Int256Vec","Int32Array","Int32Vec","Int64Array","Int64Vec","Int8Array","Int8Vec","KEY_TYPE","ListArray","ListValuesIter","MapArray","MonthsDaysNsArray","MonthsDaysNsVec","MutableArray","MutableBinaryArray","MutableBinaryValuesArray","MutableBooleanArray","MutableDictionaryArray","MutableFixedSizeBinaryArray","MutableFixedSizeListArray","MutableListArray","MutableNullArray","MutablePrimitiveArray","MutableStructArray","MutableUtf8Array","MutableUtf8ValuesArray","NullArray","PrimitiveArray","PushUnchecked","StructArray","TryExtend","TryExtendFromSelf","TryPush","UInt16Array","UInt16Vec","UInt32Array","UInt32Vec","UInt64Array","UInt64Vec","UInt8Array","UInt8Vec","UnionArray","Utf8Array","Utf8ValuesIter","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","add","add","always_fits_usize","always_fits_usize","apply_validity","apply_validity","apply_validity","apply_validity","apply_values","apply_values_mut","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_ref","as_usize","as_usize","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","capacity","capacity","capacity","capacity","capacity","checked_add","checked_add","checked_add","checked_div","checked_div","checked_div","checked_mul","checked_mul","checked_mul","checked_rem","checked_rem","checked_sub","checked_sub","checked_sub","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","default","default","default","default","default","default","default","default","default","default","default_data_type","default_data_type","default_data_type","default_data_type","default_datatype","default_datatype","div","div","div","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","extend","extend","extend","extend","extend","extend","extend_constant","extend_from_slice","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_values","extend_values","field","fields","fields","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_inner","from_inner_unchecked","from_inner_unchecked","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter_values","from_iter_values","from_iter_values","from_iter_values","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_values","from_vec","from_vec","get","get","get","get","get","get","get_child_field","get_child_type","get_display","get_fields","get_fields","get_mut_values","get_value_display","growable","index","index_unchecked","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_arc","into_arc","into_arc","into_arc","into_arc","into_arc","into_arc","into_box","into_box","into_data","into_data","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_mut","into_mut","into_mut","into_mut","is_empty","is_empty","is_null","is_ordered","is_sparse","is_valid","is_valid","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter_typed","iter_values","key_value","keys","keys","keys_iter","keys_values_iter","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","map","mul","mul","mul","mut_values","mut_values","mut_values","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty_array","new_from","new_from","new_from_mutable","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null_array","new_unchecked","new_unchecked","new_unchecked","new_with_capacity","new_with_field","new_with_field","next","next_back","nth","null_count","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","ord","overflowing_add","overflowing_add","overflowing_mul","overflowing_mul","overflowing_sub","overflowing_sub","pop","pop","pop","pop","pop","pop","pop","push","push","push","push","push","push","push","push","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_unchecked","push_unchecked","push_valid","rem","rem","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","saturating_add","saturating_add","saturating_add","saturating_mul","saturating_mul","saturating_mul","saturating_sub","saturating_sub","saturating_sub","set","set","set_unchecked","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_values","set_values","set_values","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","size","size","size","size","size_hint","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sub","sub","sub","to","to","to","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend_from_lengths","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_iter","try_from_iter","try_from_iter","try_from_iter","try_from_keys","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_get_child","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new_unchecked","try_new_unchecked","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push_valid","try_push_valid","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","value","value","value","value","value","value","value","value","value","value","value","value","value","value","value","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter_typed","values_mut_slice","values_mut_slice","with_capacities","with_capacities","with_capacities","with_capacities","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity_from","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_values","with_values","wrapping_add","wrapping_mul","wrapping_sub","Growable","GrowableBinary","GrowableBoolean","GrowableDictionary","GrowableFixedSizeBinary","GrowableFixedSizeList","GrowableList","GrowableMap","GrowableNull","GrowablePrimitive","GrowableStruct","GrowableUnion","GrowableUtf8","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","default","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","len","len","len","len","len","len","len","len","len","len","len","len","len","make_growable","new","new","new","new","new","new","new","new","new","new","new","new","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","DynComparator","build_compare","total_cmp","total_cmp_f32","total_cmp_f64","Bitmap","IntoIter","MutableBitmap","__clone_box","__clone_box","__clone_box","and","as_slice","as_slice","binary","binary_assign","bitand","bitand","bitand_assign","bitor","bitor","bitor_assign","bitxor","bitxor","bitxor_assign","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","capacity","chunk_iter_to_vec","chunks","clear","clone","clone","clone","clone_into","clone_into","clone_into","default","default","eq","eq","extend_constant","extend_from_bitmap","extend_from_slice","extend_from_slice_unchecked","extend_from_trusted_len_iter","extend_from_trusted_len_iter_unchecked","fmt","fmt","fmt","from","from","from","from","from","from","from_chunk_iter_unchecked","from_inner","from_inner_unchecked","from_iter","from_iter","from_len_set","from_len_zeroed","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_u8_slice","from_u8_vec","from_vec","get","get","get_bit","get_bit_unchecked","into","into","into","into_inner","into_iter","into_iter","into_iter","into_iter","into_mut","is_empty","is_empty","iter","iter","len","len","make_mut","new","new","new","new_zeroed","next","next_back","not","not","nth","null_count","null_count","null_count_range","or","pop","push","push_unchecked","quaternary","reserve","set","set_unchecked","shrink_to_fit","size_hint","slice","slice_unchecked","sliced","sliced_unchecked","ternary","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_into","try_into","try_into","try_new","try_new","type_id","type_id","type_id","unary","unary_assign","unset_bits","unset_bits","utils","with_capacity","xor","BitChunk","BitChunkIterExact","BitChunks","BitChunksExact","BitChunksExactMut","BitmapIter","Optional","Required","SlicesIterator","ZipValidity","ZipValidityIter","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes_for","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","count_zeros","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_ne_bytes","get_bit","get_bit_unchecked","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","is_empty","is_set","len","len","new","new","new","new","new","new","new","new_with_validity","next","next","next","next","next","next","next","next_back","next_back","next_back","nth","nth","nth","remainder","remainder","remainder","remainder","remainder","remainder","remainder_iter","remainder_iter","remainder_len","remainder_len","remainder_len","remainder_len","remainder_len","set","set_bit","set_bit_unchecked","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","slots","to_ne_bytes","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap_optional","unwrap_required","Buffer","Bytes","__clone_box","as_slice","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","eq","fmt","from","from","from","from","from","from_inner_unchecked","from_iter","get_mut","get_mut_slice","into","into","into_inner","into_iter","into_mut","is_empty","is_sliced","len","new","offset","set_len","shared_count_strong","shared_count_weak","slice","slice_unchecked","sliced","sliced_unchecked","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","Chunk","__clone_box","arrays","borrow","borrow_mut","clone","clone_into","columns","deref","eq","equivalent","fmt","from","into","into_arrays","is_empty","len","new","to_owned","try_from","try_into","try_new","type_id","aggregate","arithmetics","arity","arity_assign","boolean","boolean_kleene","cast","comparison","concatenate","filter","if_then_else","like","substring","take","MAX","MIN","SimdOrd","Sum","can_max","can_min","can_sum","estimated_bytes_size","max","max_binary","max_boolean","max_element","max_lane","max_primitive","max_string","min","min_binary","min_boolean","min_element","min_lane","min_primitive","min_string","new_max","new_min","simd_sum","sum","sum_primitive","sum_slice","ArrayAdd","ArrayCheckedAdd","ArrayCheckedDiv","ArrayCheckedMul","ArrayCheckedRem","ArrayCheckedSub","ArrayDiv","ArrayMul","ArrayOverflowingAdd","ArrayOverflowingMul","ArrayOverflowingSub","ArrayRem","ArraySaturatingAdd","ArraySaturatingMul","ArraySaturatingSub","ArraySub","ArrayWrappingAdd","ArrayWrappingMul","ArrayWrappingSub","add","add","add_scalar","basic","can_add","can_div","can_mul","can_neg","can_rem","can_sub","checked_add","checked_div","checked_mul","checked_rem","checked_sub","decimal","div","div","div_scalar","mul","mul","mul_scalar","neg","overflowing_add","overflowing_mul","overflowing_sub","rem","rem","saturating_add","saturating_mul","saturating_sub","sub","sub","sub_scalar","time","wrapping_add","wrapping_mul","wrapping_sub","NativeArithmetics","add","add_scalar","checked_add","checked_add_scalar","checked_div","checked_div_scalar","checked_mul","checked_mul_scalar","checked_negate","checked_powf_scalar","checked_rem","checked_rem_scalar","checked_sub","checked_sub_scalar","div","div_scalar","mul","mul_scalar","negate","overflowing_add","overflowing_add_scalar","overflowing_mul","overflowing_mul_scalar","overflowing_sub","overflowing_sub_scalar","powf_scalar","rem","rem_scalar","saturating_add","saturating_add_scalar","saturating_mul","saturating_mul_scalar","saturating_sub","saturating_sub_scalar","sub","sub_scalar","wrapping_add","wrapping_add_scalar","wrapping_mul","wrapping_mul_scalar","wrapping_negate","wrapping_sub","wrapping_sub_scalar","adaptive_add","adaptive_div","adaptive_mul","adaptive_sub","add","checked_add","checked_div","checked_mul","checked_sub","div","div_scalar","mul","mul_scalar","saturating_add","saturating_div","saturating_mul","saturating_sub","sub","add_duration","add_duration_scalar","add_interval","add_interval_scalar","sub_duration_scalar","sub_timestamps_scalar","subtract_duration","subtract_timestamps","binary","binary_checked","binary_with_bitmap","try_binary","try_unary","unary","unary_checked","unary_with_bitmap","binary","unary","all","and","and_scalar","any","is_not_null","is_null","not","or","or_scalar","all","and","and_scalar","any","or","or_scalar","CastOptions","__clone_box","binary_large_to_binary","binary_to_dictionary","binary_to_large_binary","binary_to_large_utf8","binary_to_list","binary_to_primitive","binary_to_utf8","boolean_to_binary","boolean_to_primitive","boolean_to_utf8","borrow","borrow_mut","can_cast_types","cast","clone","clone_into","date32_to_date64","date64_to_date32","days_ms_to_months_days_ns","decimal_to_decimal","decimal_to_float","decimal_to_integer","default","dictionary_to_dictionary_keys","dictionary_to_dictionary_values","dictionary_to_values","f16_to_f32","fixed_size_binary_binary","float_to_decimal","fmt","from","integer_to_decimal","into","months_to_months_days_ns","naive_timestamp_to_utf8","partial","partial_binary_to_primitive","partial_utf8_to_primitive","primitive_as_primitive","primitive_to_binary","primitive_to_boolean","primitive_to_dictionary","primitive_to_primitive","primitive_to_same_primitive","primitive_to_utf8","time32_to_time64","time32ms_to_time32s","time32s_to_time32ms","time64_to_time32","time64ns_to_time64us","time64us_to_time64ns","timestamp_to_date32","timestamp_to_date64","timestamp_to_timestamp","timestamp_to_utf8","to_owned","try_from","try_into","type_id","utf8_large_to_utf8","utf8_to_binary","utf8_to_date32","utf8_to_date64","utf8_to_dictionary","utf8_to_large_utf8","utf8_to_naive_timestamp_ns","utf8_to_primitive","utf8_to_timestamp_ns","wrapped","wrapping_dictionary_to_dictionary_keys","wrapping_dictionary_to_dictionary_values","Simd","Simd8","Simd8Lanes","Simd8PartialEq","Simd8PartialOrd","binary","boolean","can_eq","can_eq_scalar","can_gt","can_gt_eq","can_gt_eq_scalar","can_gt_scalar","can_lt","can_lt_eq","can_lt_eq_scalar","can_lt_scalar","can_neq","can_neq_scalar","eq","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","finish_eq_validities","finish_neq_validities","from_chunk","from_incomplete_chunk","gt","gt","gt_eq","gt_eq","gt_eq_scalar","gt_scalar","lt","lt","lt_eq","lt_eq","lt_eq_scalar","lt_scalar","neq","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","primitive","utf8","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","compare_op_scalar","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","compare_op_scalar","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","concatenate","Filter","build_filter","filter","filter_chunk","if_then_else","like_binary","like_binary_scalar","like_utf8","like_utf8_scalar","nlike_binary","nlike_binary_scalar","nlike_utf8","nlike_utf8_scalar","can_substring","substring","can_take","take","Binary","Binary","Boolean","Boolean","DataType","Date32","Date64","DayTime","Decimal","Decimal256","Dense","Dictionary","Dictionary","Duration","Extension","Field","FixedSizeBinary","FixedSizeBinary","FixedSizeList","FixedSizeList","Float16","Float32","Float64","Int16","Int16","Int32","Int32","Int64","Int64","Int8","Int8","IntegerType","Interval","IntervalUnit","LargeBinary","LargeBinary","LargeList","LargeList","LargeUtf8","LargeUtf8","List","List","Map","Map","Metadata","Microsecond","Millisecond","MonthDayNano","Nanosecond","Null","Null","PhysicalType","Primitive","PrimitiveType","Schema","SchemaRef","Second","Sparse","Struct","Struct","Time32","Time64","TimeUnit","Timestamp","UInt16","UInt16","UInt32","UInt32","UInt64","UInt64","UInt8","UInt8","Union","Union","UnionMode","Utf8","Utf8","YearMonth","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","default","eq","eq","eq","eq","eq","eq","eq","eq","eq_primitive","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","filter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","get_extension","hash","hash","hash","hash","hash","hash","hash","into","into","into","into","into","into","into","into","is_dense","is_nullable","is_sparse","metadata","metadata","name","new","sparse","to_logical_type","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical_type","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","with_metadata","with_metadata","Error","External","ExternalFormat","InvalidArgumentError","Io","NotYetImplemented","OutOfSpec","Overflow","Result","borrow","borrow_mut","fmt","fmt","from","from","from","from","from","from","from","from","from","from_external_error","into","provide","to_string","try_from","try_into","type_id","ArrowArray","ArrowArrayStream","ArrowArrayStreamReader","ArrowSchema","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","drop","drop","drop","empty","empty","empty","export_array_to_c","export_field_to_c","export_iterator","field","fmt","fmt","fmt","from","from","from","from","import_array_from_c","import_field_from_c","into","into","into","into","mmap","next","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_new","type_id","type_id","type_id","type_id","bitmap","slice","ipc","json","ndjson","parquet","IpcField","IpcSchema","__clone_box","__clone_box","append","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","default","dictionary_id","eq","eq","fields","fields","fmt","fmt","from","from","into","into","is_little_endian","read","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","write","Dictionaries","ExpectedBuffer","FileMetadata","FileReader","InvalidBitmap","InvalidBuffer","InvalidBuffersLength","InvalidDataType","InvalidFlatbufferBlock","InvalidFlatbufferBodyLength","InvalidFlatbufferBuffers","InvalidFlatbufferCompression","InvalidFlatbufferData","InvalidFlatbufferDictionaries","InvalidFlatbufferFooter","InvalidFlatbufferHeader","InvalidFlatbufferId","InvalidFlatbufferIsDelta","InvalidFlatbufferMessage","InvalidFlatbufferNodes","InvalidFlatbufferRecordBatches","InvalidFlatbufferSchema","InvalidFlatbufferVersion","InvalidFooter","InvalidHeader","InvalidId","InvalidIdDataType","MissingData","MissingFields","MissingMessageBuffers","MissingMessageHeader","MissingMessageNodes","MissingRecordBatches","MissingSchema","NegativeFooterLength","OutOfSpecKind","Some","StreamMetadata","StreamReader","StreamState","UnexpectedMessageType","UnexpectedNegativeInteger","Waiting","__clone_box","__clone_box","blocks","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deserialize_schema","fmt","fmt","fmt","from","from","from","from","from","from","get_scratches","into","into","into","into","into","into","into_inner","into_iter","into_iter","ipc_schema","ipc_schema","is_finished","metadata","metadata","new","new","next","next","read_batch","read_file_dictionaries","read_file_metadata","read_stream_metadata","schema","schema","schema","schema","set_scratches","size","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","unwrap","version","buffer_length","buffers_size","file_size","length","length","number_of_bits","requested_id","requested_id","required_number_of_bytes","type_name","Compression","FileWriter","LZ4","Record","StreamWriter","WriteOptions","ZSTD","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","columns","compression","default_ipc_fields","eq","eq","equivalent","fields","file_async","finish","finish","fmt","fmt","from","from","from","from","from","from","from","get_scratches","hash","into","into","into","into","into_inner","into_inner","new","new","schema_to_bytes","set_scratches","start","start","stream_async","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from_file","try_into","try_into","try_into","try_into","try_new","type_id","type_id","type_id","type_id","write","write","write","FileSink","borrow","borrow_mut","from","into","new","poll_close","poll_flush","poll_ready","start_send","try_from","try_into","type_id","StreamSink","WriteOptions","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","compression","default","eq","equivalent","fmt","from","from","hash","into","into","new","poll_close","poll_flush","poll_ready","start_send","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","write","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","RecordSerializer","Serializer","Skip","SkipWhile","Take","TakeWhile","__clone_box","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance_back","advance_back","advance_back","advance_back","advance_back","advance_back","all","any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","clone","clone_into","convert","count","empty","filter","find","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get","get","get","get","get","get","get","get","get","into","into","into","into","into","into","into","into","into","into","into","into","into","map","map_err","map_ref","new","new","next","next","next","next_back","next_back","nth","position","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","write","write","Error","FallibleStreamingIterator","FileWriter","Item","Serializer","__clone_box","advance","advance","all","any","borrow","borrow","borrow_mut","borrow_mut","by_ref","clone","clone_into","count","filter","find","fmt","for_each","from","from","fuse","get","get","into","into","into_inner","into_iter","map","map_err","map_ref","new","new","next","next","nth","position","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","read","write","ArrayIter","BasicDecompressor","Boolean","Bson","Bson","ByteArray","ColumnChunkMetaData","ColumnDescriptor","CompressedDataPage","Data","DataPageHeader","Date","Date","Decimal","Decimal","Decompressor","Dict","Double","Enum","Enum","Error","Error","FallibleStreamingIterator","FeatureNotActive","FeatureNotSupported","FileMetaData","FileReader","Finished","FixedLenByteArray","Float","GroupLogicalType","GroupType","InitNested","Int16","Int32","Int32","Int64","Int64","Int8","Int96","Integer","Interval","InvalidParameter","Item","Item","Json","Json","List","List","Map","Microseconds","Milliseconds","MutStreamingIterator","Nanoseconds","NestedArrayIter","NestedState","OutOfSpec","Page","PageFilter","PageReader","Pages","ParquetError","ParquetTimeUnit","ParquetType","PhysicalType","Primitive","PrimitiveConvertedType","PrimitiveLogicalType","PrimitiveType","ReadColumnIterator","RowGroupDeserializer","RowGroupMetaData","RowGroupReader","Some","State","String","Struct","StructIterator","Time","TimeMicros","TimeMillis","Timestamp","TimestampMicros","TimestampMillis","Uint16","Uint32","Uint64","Uint8","Unknown","Utf8","Uuid","V1","V2","WouldOverAllocate","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_read_columns_indexes","_read_metadata","_read_metadata_async","advance","advance","advance","advance","advance","all","any","base_type","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","byte_range","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","column_chunk","column_encoding","column_iter_to_arrays","column_orders","columns","compressed_size","compressed_size","compression","count","create_list","create_map","created_by","data_page_offset","decompress","descriptor","descriptor","dictionary_page_offset","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","fallible_streaming_iterator","file_offset","file_path","filter","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get_column_iterator","get_field_columns","get_field_pages","get_page_iterator","get_page_stream","has_index_page","hash","hash","hash","hash","index_page_offset","indexes","infer_schema","init_nested","int96_to_i64_ns","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_buffers","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_thrift","key_value_metadata","len","map","map_err","map_ref","metadata","n_columns","nested","new","new","new","new","new","new","new","new","new","new","new","new","new_with_page_meta","next","next","next","next","next","next","nth","num_rows","num_rows","num_rows","num_values","num_values","path_in_schema","physical_type","position","provide","read_columns","read_columns_async","read_columns_many","read_columns_many_async","read_metadata","read_metadata_async","read_pages_locations","row_groups","schema","schema","schema_descr","size_hint","size_hint","skip","skip_while","statistics","statistics","swap_buffer","take","take_while","to_deserializer","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","total_byte_size","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uncompressed_size","version","converted_type","field_info","fields","logical_type","is_adjusted_to_utc","is_adjusted_to_utc","unit","unit","ColumnPageStatistics","FieldPageStatistics","FilteredPage","Interval","Multiple","Single","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","compute_page_row_intervals","eq","eq","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","has_indexes","hash","hash","into","into","into","into","length","length","max","min","new","null_count","num_rows","read_columns_indexes","read_filtered_pages","selected_rows","start","start","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","FileMetaData","GroupType","KeyValue","ParquetType","PrimitiveType","SchemaDescriptor","column_orders","created_by","infer_schema","key","key_value_metadata","num_rows","parquet_to_arrow_schema","read_schema_from_metadata","row_groups","schema_descr","value","version","converted_type","field_info","fields","logical_type","Statistics","borrow","borrow_mut","deserialize","distinct_count","eq","fmt","from","into","max_value","min_value","null_count","try_from","try_into","type_id","BitPacked","Boolean","Brotli","BrotliLevel","ByteArray","ByteStreamSplit","CompressedDataPage","CompressedPage","CompressionOptions","Compressor","Data","Data","DeltaBinaryPacked","DeltaByteArray","DeltaLengthByteArray","Descriptor","Dict","Dict","Double","DynIter","DynStreamingIterator","Encoding","Error","FallibleStreamingIterator","FieldInfo","FileMetaData","FileSink","FileWriter","FixedLenByteArray","Float","GroupType","Gzip","GzipLevel","Int32","Int64","Int96","Item","KeyValue","LargeList","List","Lz4","Lz4Raw","Lzo","Nested","Page","ParquetPhysicalType","ParquetType","Plain","PlainDictionary","Primitive","PrimitiveType","Rle","RleDictionary","RowGroupIter","RowGroupIterator","SchemaDescriptor","Snappy","Struct","ThriftFileMetaData","Uncompressed","V1","V2","Version","WriteOptions","Zstd","ZstdLevel","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","advance","advance","advance","all","any","array_to_columns","array_to_page","array_to_page_simple","array_to_pages","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer_mut","by_ref","can_encode","check_contains","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","column_order","column_orders","column_orders","columns","compress","compressed_size","compression","compression","compression_level","compression_level","compression_level","count","created_by","created_by","data_pagesize_limit","default","default","default","encryption_algorithm","end","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fallible_streaming_iterator","fields","filter","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","footer_signing_key_metadata","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_converted","from_group","from_physical","fuse","get","get","get","get_field_info","get_max_length","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","header","id","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_inner","into_inner","into_inner_and_metadata","into_iter","into_iter","into_thrift","is_compressed","key","key_value_metadata","key_value_metadata","key_value_metadata","len","map","map_err","map_ref","max_def_level","max_rep_level","metadata","name","name","name","new","new","new","new","new","new","new","new_from_vec","next","next","next","nth","num_rows","num_rows","num_values","num_values","options","options","parquet_schema","parquet_schema","parquet_schema","partial_cmp","partial_cmp","poll_close","poll_flush","poll_ready","position","primitive_type","read_from_in_protocol","read_from_in_protocol","read_from_in_protocol","read_from_in_protocol","repetition","row_group_iter","row_groups","row_groups","schema","schema","schema","schema","schema_descr","select_rows","selected_rows","size_hint","size_hint","size_hint","skip","skip_while","slice_nested_leaf","slice_parquet_array","start_send","statistics","stream_from_in_protocol","stream_from_in_protocol","stream_from_in_protocol","stream_from_in_protocol","take","take_while","to_leaves","to_nested","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_parquet_leaves","to_parquet_schema","to_parquet_type","transverse","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_message","try_from_primitive","try_from_thrift","try_from_thrift","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_new","try_new","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uncompressed_size","value","version","version","version","write","write_def_levels","write_metadata_sidecar","write_rep_and_def","write_statistics","write_to_out_protocol","write_to_out_protocol","write_to_out_stream_protocol","write_to_out_stream_protocol","converted_type","field_info","fields","logical_type","mmap_dictionaries_unchecked","mmap_unchecked","Offset","Offsets","OffsetsBuffer","__clone_box","__clone_box","as_slice","as_slice","borrow","borrow","borrow_mut","borrow_mut","buffer","capacity","clone","clone","clone_into","clone_into","default","default","deref","eq","eq","equivalent","extend_constant","first","fmt","fmt","from","from","from","from","from","into","into","into_inner","into_inner","into_mut","last","last","len","len","len_proxy","len_proxy","lengths","new","new","new_unchecked","new_unchecked","new_zeroed","pop","range","reserve","shrink_to_fit","slice","slice_unchecked","start_end","start_end","start_end_unchecked","start_end_unchecked","to_owned","to_owned","try_extend_from_lengths","try_extend_from_self","try_extend_from_slice","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_iter","try_from_lengths","try_into","try_into","try_push","try_push_usize","type_id","type_id","with_capacity","BinaryScalar","BooleanScalar","DictionaryScalar","FixedSizeBinaryScalar","FixedSizeListScalar","ListScalar","MapScalar","NullScalar","PrimitiveScalar","Scalar","StructScalar","UnionScalar","Utf8Scalar","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","default","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","new","new","new","new","new","new","new","new","new","new","new","new","new_scalar","to","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value","value","value","value","value","value","value","values","values","values","values","EPOCH_DAYS_FROM_CE","MICROSECONDS","MILLISECONDS","MILLISECONDS_IN_DAY","NANOSECONDS","SECONDS_IN_DAY","add_interval","add_naive_interval","date32_to_date","date32_to_datetime","date64_to_date","date64_to_datetime","parse_offset","time32ms_to_time","time32s_to_time","time64ns_to_time","time64us_to_time","timestamp_ms_to_datetime","timestamp_ns_to_datetime","timestamp_s_to_datetime","timestamp_to_datetime","timestamp_to_naive_datetime","timestamp_us_to_datetime","timeunit_scale","utf8_to_naive_timestamp_ns","utf8_to_naive_timestamp_ns_scalar","utf8_to_naive_timestamp_scalar","utf8_to_timestamp_ns","utf8_to_timestamp_ns_scalar","utf8_to_timestamp_scalar","TrustedLen","BitChunk","BitChunkIter","BitChunkOnes","Bytes","DaysMs","EPSILON","Float16","Float32","Float64","IS_LARGE","Index","IndexRange","Int128","Int16","Int256","Int32","Int64","Int8","MonthDayNano","NativeType","Offset","PRIMITIVE","PrimitiveType","UInt16","UInt32","UInt64","UInt8","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","days","days","days_ms","default","default","default","default","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","f16","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_as_usize","from_be_bytes","from_be_bytes","from_be_bytes","from_be_bytes","from_be_bytes","from_bits","from_f32","from_le_bytes","from_le_bytes","from_le_bytes","from_le_bytes","from_le_bytes","from_ne_bytes","from_usize","from_words","hash","hash","hash","hash","i256","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","is_valid_bit_pattern","is_valid_bit_pattern","is_valid_bit_pattern","is_valid_bit_pattern","milliseconds","months","months_days_ns","neg","neg","neg","new","new","new","new","new","next","next","next","ns","partial_cmp","range","range","simd","size_hint","size_hint","size_hint","to_be_bytes","to_be_bytes","to_be_bytes","to_be_bytes","to_be_bytes","to_bits","to_f32","to_le_bytes","to_le_bytes","to_le_bytes","to_le_bytes","to_le_bytes","to_ne_bytes","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_usize","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","Chunk","FromMaskChunk","LANES","Mask","Native","NativeSimd","Simd","Simd","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","align","align","align","align","align","align","align","align","align","align","align","align","align","align","align","align","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","days_msx8","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","f16x32","f32x16","f64x8","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","i128x8","i16x32","i256x8","i32x16","i64x8","i8x64","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","months_days_nsx8","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","select","select","select","select","select","select","select","select","select","select","select","select","select","select","select","select","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","u16x32","u32x16","u64x8","u8x64","lexical_to_bytes","lexical_to_bytes_mut","lexical_to_string"],"q":[[0,"arrow2"],[172,"arrow2::array"],[1535,"arrow2::array::growable"],[1711,"arrow2::array::ord"],[1716,"arrow2::bitmap"],[1857,"arrow2::bitmap::utils"],[2004,"arrow2::buffer"],[2052,"arrow2::chunk"],[2075,"arrow2::compute"],[2089,"arrow2::compute::aggregate"],[2117,"arrow2::compute::arithmetics"],[2174,"arrow2::compute::arithmetics::basic"],[2218,"arrow2::compute::arithmetics::decimal"],[2236,"arrow2::compute::arithmetics::time"],[2244,"arrow2::compute::arity"],[2252,"arrow2::compute::arity_assign"],[2254,"arrow2::compute::boolean"],[2263,"arrow2::compute::boolean_kleene"],[2269,"arrow2::compute::cast"],[2342,"arrow2::compute::comparison"],[2389,"arrow2::compute::comparison::binary"],[2405,"arrow2::compute::comparison::boolean"],[2422,"arrow2::compute::comparison::primitive"],[2439,"arrow2::compute::comparison::utf8"],[2455,"arrow2::compute::concatenate"],[2456,"arrow2::compute::filter"],[2460,"arrow2::compute::if_then_else"],[2461,"arrow2::compute::like"],[2469,"arrow2::compute::substring"],[2471,"arrow2::compute::take"],[2473,"arrow2::datatypes"],[2692,"arrow2::error"],[2721,"arrow2::ffi"],[2771,"arrow2::ffi::mmap"],[2773,"arrow2::io"],[2777,"arrow2::io::ipc"],[2813,"arrow2::io::ipc::read"],[2936,"arrow2::io::ipc::read::OutOfSpecKind"],[2946,"arrow2::io::ipc::write"],[3020,"arrow2::io::ipc::write::file_async"],[3033,"arrow2::io::ipc::write::stream_async"],[3064,"arrow2::io::json"],[3065,"arrow2::io::json::write"],[3251,"arrow2::io::ndjson"],[3252,"arrow2::io::ndjson::write"],[3304,"arrow2::io::parquet"],[3306,"arrow2::io::parquet::read"],[3744,"arrow2::io::parquet::read::ParquetType"],[3748,"arrow2::io::parquet::read::PrimitiveLogicalType"],[3752,"arrow2::io::parquet::read::indexes"],[3821,"arrow2::io::parquet::read::schema"],[3839,"arrow2::io::parquet::read::schema::ParquetType"],[3843,"arrow2::io::parquet::read::statistics"],[3858,"arrow2::io::parquet::write"],[4382,"arrow2::io::parquet::write::ParquetType"],[4386,"arrow2::mmap"],[4388,"arrow2::offset"],[4468,"arrow2::scalar"],[4714,"arrow2::temporal_conversions"],[4744,"arrow2::trusted_len"],[4745,"arrow2::types"],[4943,"arrow2::types::simd"],[5340,"arrow2::util"]],"d":["A HashMap using RandomState to hash the items. (Requires …","The enum Either with variants Left and Right is a general …","A value of type L.","A value of type R.","","","","","Contains the Array and MutableArray trait objects …","","","","","Convert &mut Either<L, R> to Either<&mut L, &mut R>.","","","Convert Pin<&mut Either<L, R>> to …","Convert Pin<&Either<L, R>> to Either<Pin<&L>, Pin<&R>>, …","","Convert &Either<L, R> to Either<&L, &R>.","","","","","","contains Bitmap and MutableBitmap, containers of bool.","","","","","Contains Buffer, an immutable container for all Arrow …","","Contains Chunk, a container of Array where every array has …","","","","","","","","contains a wide range of compute operations (e.g. …","","","Contains all metadata, such as PhysicalType, DataType, …","","","","","","","Apply one of two functions depending on contents, unifying …","Convert the contained value into T","Like either, but provide some context to whichever of the …","","","","","Defines Error, representing all errors returned by this …","Returns the left value","Returns the right value","","","","Factors out a homogenous type from an Either of Result.","Factor out a homogeneous type from an either of pairs.","Factors out None from an Either of Option.","Factors out a homogenous type from an Either of Result.","Factor out a homogeneous type from an either of pairs.","contains FFI bindings to import and export Array via Arrow…","","","","Convert Either<L, R> to Either<R, L>.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Examples","This crates a hashmap from the provided iterator using …","Returns a reference to the value corresponding to the key.","Returns the key-value pair corresponding to the supplied …","Returns a mutable reference to the value corresponding to …","","Returns a reference to the value corresponding to the …","Inserts a key-value pair into the map.","","Calls U::from(self).","Calls U::from(self).","","","Extract the value of an either over two equivalent types.","Convert the inner value to an iterator.","","","","","Creates a consuming iterator visiting all the keys in …","Creates a consuming iterator visiting all the values in …","Contains modules to interface with other formats such as […","Return true if the value is the Left variant.","Return true if the value is the Right variant.","","Convert the left side of Either<L, R> to an Option<L>.","Apply the function f on the value in the Left variant if …","Return left value or given value","Return left or a default","Returns left value or computes it from a closure","","Map f over the contained value and return the result in the","Apply the functions f and g to the Left and Right variants …","Similar to [map_either], with an added context ctx …","Apply the function f on the value in the Left variant if …","Apply the function f on the value in the Right variant if …","Memory maps regions defined on the IPC format into Array.","This crates a hashmap using RandomState::new which obtains …","","","","Contains the declaration of Offset","","","","","","","","","","","","","Removes a key from the map, returning the value at the key …","","","Convert the right side of Either<L, R> to an Option<R>.","Apply the function f on the value in the Right variant if …","Return right value or given value","Return right or a default","Returns right value or computes it from a closure","contains the Scalar trait object representing individual …","","","","Conversion methods for dates and times.","","","","Declares TrustedLen.","","","","","","","","Sealed traits and implementations to handle all physical …","Returns the left value","Returns the right value","Misc utilities used in different places in the crate.","This crates a hashmap with the specified capacity using …","","","","","","","A trait representing an immutable Arrow array. Arrow …","Iterator of values of an ArrayAccessor.","A BinaryArray is Arrow’s semantically equivalent of an …","Iterator of values of an BinaryArray.","A BooleanArray is Arrow’s semantically equivalent of an …","A type definition PrimitiveArray for days_ms","A type definition MutablePrimitiveArray for days_ms","An Array whose values are stored as indices. This Array is …","Trait denoting NativeTypes that can be used as keys of a …","The Arrow’s equivalent to an immutable …","The Arrow’s equivalent to an immutable …","A type definition PrimitiveArray for f16","A type definition MutablePrimitiveArray for f16","A type definition PrimitiveArray for f32","A type definition MutablePrimitiveArray for f32","A type definition PrimitiveArray for f64","A type definition MutablePrimitiveArray for f64","Trait that BinaryArray and Utf8Array implement for the …","A type definition PrimitiveArray for i128","A type definition MutablePrimitiveArray for i128","A type definition PrimitiveArray for i16","A type definition MutablePrimitiveArray for i16","A type definition PrimitiveArray for i256","A type definition MutablePrimitiveArray for i256","A type definition PrimitiveArray for i32","A type definition MutablePrimitiveArray for i32","A type definition PrimitiveArray for i64","A type definition MutablePrimitiveArray for i64","A type definition PrimitiveArray for i8","A type definition MutablePrimitiveArray for i8","The corresponding IntegerType of this key","An Array semantically equivalent to …","Iterator of values of a ListArray.","An array representing a (key, value), both of arbitrary …","A type definition PrimitiveArray for months_days_ns","A type definition MutablePrimitiveArray for months_days_ns","A trait describing a mutable array; i.e. an array whose …","The Arrow’s equivalent to Vec<Option<Vec<u8>>>. …","A MutableArray that builds a BinaryArray. It differs from …","The Arrow’s equivalent to Vec<Option<bool>>, but with …","A mutable, strong-typed version of DictionaryArray.","The Arrow’s equivalent to a mutable …","The mutable version of FixedSizeListArray.","The mutable version of ListArray.","A distinct type to disambiguate clashing methods","The Arrow’s equivalent to Vec<Option<T>> where T is …","Converting a MutableStructArray into a StructArray is O(1).","A MutableArray that builds a Utf8Array. It differs from …","A MutableArray that builds a Utf8Array. It differs from …","The concrete Array of DataType::Null.","A PrimitiveArray is Arrow’s semantically equivalent of …","A trait describing the ability of a struct to receive new …","A StructArray is a nested Array with an optional validity …","A trait describing the ability of a struct to create …","A trait describing the ability of a struct to extend from …","A trait describing the ability of a struct to receive new …","A type definition PrimitiveArray for u16","A type definition MutablePrimitiveArray for u16","A type definition PrimitiveArray for u32","A type definition MutablePrimitiveArray for u32","A type definition PrimitiveArray for u64","A type definition MutablePrimitiveArray for u64","A type definition PrimitiveArray for u8","A type definition MutablePrimitiveArray for u8","UnionArray represents an array whose each slot can contain …","A Utf8Array is arrow’s semantic equivalent of an …","Iterator of values of an Utf8Array.","","","","","","","","","","","","","","","","","","","","","","","","","","If the key type always can be converted to usize.","If the key type always can be converted to usize.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the values of this array, cloning …","Applies a function f to the values of this array, cloning …","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Converts itself to a reference of Any, which enables …","Convert to Any, to enable dynamic casting.","","","","","","","","","","","","","","","","","","","","","","","","","Converts itself to a mutable reference of Any, which …","","","","","","","","","","","","","Convert itself to an (immutable) atomically reference …","","","","","","","","","","","","Convert itself to an (immutable) Array.","","","","","","","","","","","","","Convert to mutable Any, to enable dynamic casting.","","","","","","","","","","","","","","Represents this key as a usize.","Represents this key as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Returns the capacity in number of items","Returns the capacity of this array","Returns the capacity of this MutablePrimitiveArray.","Reserves additional elements and additional_values on the …","Returns the capacity in number of items","","","","","","","","","","","","","","","Clones a dynamic Array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The DataType of the Array. In combination with …","The DataType of the array.","","","","Returns the DataType of this array.","","Returns the arrays’ DataType.","","","Returns the DataType of this DictionaryArray","","","","","","","","","","","","","Returns the arrays’ DataType.","","","","","","Returns the DataType of this array.","","","","","","","","","","","","Returns the default DataType of this container: …","Returns the default DataType, DataType::Binary or …","Returns the default DataType of this container: …","Returns a default DataType of this array, which depends on …","Returns a DataType consistent with FixedSizeListArray.","Returns a default DataType: inner field is named “item”…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Logically compares two Arrays. Two arrays are logically …","","","","","","","Extends the MutablePrimitiveArray with a constant","Extends the MutablePrimitiveArray from a slice","Extends the MutableBinaryValuesArray from a TrustedLen","Extends the MutableBinaryArray from an iterator of …","Extends the MutableBooleanArray from an iterator of …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of trusted …","Extends the MutableUtf8ValuesArray from a TrustedLen","Extends MutableBinaryValuesArray from an iterator of …","Extends the MutableBinaryArray from an iterator of …","Extends the MutableBooleanArray from an iterator of …","Extends the MutablePrimitiveArray from an iterator of …","Extends MutableUtf8Array from an iterator of trusted len.","Extends MutableUtf8ValuesArray from an iterator of trusted …","Extends the MutableBinaryArray from an iterator of trusted …","Extends the MutableBooleanArray from an iterator of values …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of values of …","Extends the MutableBinaryArray from an iterator of values …","Extends the MutableBooleanArray from an iterator of values …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of values of …","Extends the MutableBinaryArray from an iterator of values. …","Extends the MutableUtf8Array from an iterator of values. …","Returns the field (guaranteed to be a Struct)","Returns the fields of this StructArray.","The fields.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Creates a new MutableBinaryArray from a slice of optional …","","Returns the argument unchanged.","","","","Creates a new BinaryArray from a slice of optional &[u8].","Creates a new MutableBooleanArray out of a slice of …","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Creates a new MutableFixedSizeBinaryArray from a slice of …","Returns the argument unchanged.","","","Returns the argument unchanged.","Creates a new FixedSizeBinaryArray from a slice of …","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Creates a new MutableUtf8Array from a slice of optional …","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns a new Utf8Array from a slice of &str.","Returns the argument unchanged.","Creates a [PrimitiveArray] from its internal …","Creates a [BooleanArray] from its internal representation. …","Creates a [PrimitiveArray] from its internal …","","","","","","Creates a FixedSizeBinaryArray from an iterator of …","","","","","","Creates a new MutableBinaryArray from a Iterator of &[u8].","Returns a new BinaryArray from a Iterator of &[u8].","Creates a new MutableUtf8Array from a Iterator of &str.","Creates a new Utf8Array from a Iterator of &str.","Creates a new BinaryArray from slices of &[u8].","Creates a new MutableBooleanArray from a slice of bool.","Creates a new BooleanArray from a slice of bool.","Creates a FixedSizeBinaryArray from a slice of arrays of …","Creates a MutablePrimitiveArray from a slice of values.","Creates a (non-null) PrimitiveArray from a slice of values.","Returns a Utf8Array from a slice of &str.","Creates a MutableBinaryValuesArray from a TrustedLen","Creates a MutableBinaryArray from an iterator of trusted …","Creates a BinaryArray from a TrustedLen","Creates a BooleanArray from a TrustedLen.","Creates a BooleanArray from a TrustedLen.","Creates a MutablePrimitiveArray from a TrustedLen.","Creates a PrimitiveArray from a TrustedLen of optional …","Creates a MutableUtf8Array from an iterator of trusted …","Creates a MutableUtf8ValuesArray from a TrustedLen","Creates a Utf8Array from an iterator of trusted length.","Returns a new MutableBinaryValuesArray from an iterator of …","Creates a MutableBinaryArray from an iterator of trusted …","Creates a BinaryArray from an iterator of trusted length.","Creates a BooleanArray from an iterator of trusted length. …","Creates a BooleanArray from an iterator of trusted length. …","Creates a MutablePrimitiveArray from an iterator of …","Creates a PrimitiveArray from an iterator of optional …","Creates a MutableUtf8Array from an iterator of trusted …","Returns a new MutableUtf8ValuesArray from an iterator of …","Creates a Utf8Array from an iterator of trusted length.","Creates a new BinaryArray from a TrustedLen of &[u8].","Returns a BinaryArray from an iterator of trusted length.","Creates a new MutableBooleanArray from an TrustedLen of …","Creates a new BooleanArray from an TrustedLen of bool.","Creates a new MutablePrimitiveArray out an iterator over …","Creates a (non-null) PrimitiveArray from a TrustedLen of …","Creates a new MutableUtf8Array from a TrustedLen of &str.","Returns a (non-null) Utf8Array created from a TrustedLen …","Creates a new BinaryArray from a TrustedLen of &[u8].","Creates a new MutableBooleanArray from an TrustedLen of …","Creates a new BooleanArray from an TrustedLen of bool. Use …","Creates a new MutablePrimitiveArray from an iterator over …","Creates a new PrimitiveArray from an iterator over values","Creates a MutableUtf8Array from an iterator of trusted …","Creates a (non-null) PrimitiveArray from an iterator of …","Creates a (non-null) MutablePrimitiveArray from a vector …","Creates a (non-null) PrimitiveArray from a vector of …","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns a the inner Field","Returns a the inner DataType","Returns a function that writes the element of array at …","Returns the fields the DataType::Struct.","Returns all fields from DataType::Union.","Returns an option of a mutable reference to the values of …","Returns a function that writes the value of the element of …","Contains the trait Growable and corresponding concreate …","Returns the index and slot of the field to select from …","Returns the index and slot of the field to select from …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts itself into an Array.","Converts itself into an Array.","converts itself into Arc<dyn Array>","Converts itself into an Array.","Converts itself into an Array.","Converts itself into an Array.","Converts itself into an Array.","converts itself into Box<dyn Array>","converts itself into Box<dyn Array>","Deconstructs the StructArray into its individual …","Extract the low-end APIs from the MutableUtf8Array.","Extract the low-end APIs from the MutableBinaryValuesArray.","Returns its internal representation","Returns its internal representation","Extract the low-end APIs from the MutablePrimitiveArray.","Returns its internal representation","Extract the low-end APIs from the MutableStructArray.","Extract the low-end APIs from the MutableUtf8ValuesArray.","Returns its internal representation","","","","","","","","","","","","","","","","","","","","Try to convert this BinaryArray to a MutableBinaryArray","Try to convert this BooleanArray to a MutableBooleanArray","Try to convert this PrimitiveArray to a …","Try to convert this Utf8Array to a MutableUtf8Array","whether the array is empty","Whether the array is empty.","Returns whether slot i is null.","Returns whether the values of this DictionaryArray are …","Returns whether the DataType::Union is sparse or not.","Returns whether slot i is valid.","Whether index is valid / set.","Returns an iterator of &[u8]","Returns an iterator of Option<&[u8]>","Returns an iterator of Option<&[u8]> over every element of …","Returns an iterator over the optional values of this …","Returns an iterator over the optional values of this …","Returns an iterator of Option<Box<dyn Scalar>>.","constructs a new iterator","constructs a new iterator","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator over Option<T>","Returns an iterator over the values and validity, …","Returns an iterator of Option<Box<dyn Array>>","constructs a new iterator","Returns an iterator of Option<&str>","Returns an iterator of &str","Returns an iterator of Option<&str>","Returns an iterator over the the optional values of …","Returns iterator over the values of …","Returns the keys’ value of the DictionaryArray as usize","Returns the dictionary keys","Returns the keys of the DictionaryArray. These keys can be …","Returns an iterator of the keys’ of the DictionaryArray …","Returns an iterator of the keys’ values of the …","The length of the Array. Every array has a length …","The length of the array.","","Returns the length of this array","","Returns the length of this array","","","Returns the length of this array","","","Returns the length of this array","","","Returns the length of this array","Returns the length of this array","","The length of this array","","Returns the length of this array","","","Returns the length of this array","Returns the length of this array","","Returns the length of this array","","","","","Returns the length of this array","","","","","Returns the length of this array","Returns the length of this array","","","Returns the length of this array","","Returns the length of this array","Returns the dictionary map","","","","The values as a mutable reference","The values","The mutable values","Returns an empty MutableBinaryValuesArray.","Creates a new empty MutableBinaryArray.","Alias for unwrapping Self::try_new","Creates an new empty MutableBooleanArray.","Alias to Self::try_new().unwrap()","Creates an empty MutableDictionaryArray.","Creates a new empty MutableFixedSizeBinaryArray.","Creates a new FixedSizeBinaryArray.","Creates a new MutableFixedSizeListArray from a MutableArray…","Alias to Self::try_new(...).unwrap()","Creates a new empty MutableListArray.","Creates a new ListArray.","Creates a new MapArray.","Returns a new NullArray.","Returns a new MutableNullArray.","Creates a new empty MutablePrimitiveArray.","Alias for Self::try_new(..).unwrap().","Creates a new MutableStructArray.","Returns a new StructArray","Returns a new UnionArray.","Initializes a new empty MutableUtf8Array.","Returns an empty MutableUtf8ValuesArray.","Creates a new Utf8Array.","Creates a new ArrayValuesIter","Creates an empty BinaryArray, i.e. whose .len is zero.","Returns a new empty BooleanArray.","Returns a new empty DictionaryArray.","Returns a new empty FixedSizeBinaryArray.","Returns a new empty FixedSizeListArray.","Returns a new empty ListArray.","Returns a new empty MapArray.","Returns a new empty NullArray.","Returns a new empty (zero-length) PrimitiveArray.","Creates an empty StructArray.","Creates a new empty UnionArray.","Returns a new empty Utf8Array.","Creates a new Array with a Array::len of 0.","Creates a new MutableFixedSizeListArray from a MutableArray…","Creates a new MutableListArray from a MutableArray and …","Creates a new MutableListArray from a MutableArray, Offsets…","Creates an null BinaryArray, i.e. whose …","Returns a new BooleanArray whose all slots are null / None.","Returns an DictionaryArray whose all elements are null","Returns a new null FixedSizeBinaryArray.","Returns a new null FixedSizeListArray.","Returns a new null ListArray.","Returns a new null MapArray of length.","Returns a new NullArray.","Returns a new PrimitiveArray where all slots are null / …","Creates a null StructArray of length length.","Creates a new null UnionArray.","Returns a new Utf8Array whose all slots are null / None.","Creates a new Array of DataType data_type and length. The …","Create a MutableUtf8Array out of low-end APIs.","Returns a MutableUtf8ValuesArray created from its internal …","Creates a new Utf8Array without checking for offsets …","Creates a new MutableListArray from a MutableArray and …","Creates a new MutableFixedSizeListArray from a MutableArray…","Creates a new MutableListArray from a MutableArray.","","","","The number of null slots on this Array.","The offsets of the array","returns its offsets.","returns its offsets.","","Returns the offsets of this BinaryArray.","The offsets","The offsets [Buffer].","returns the offsets","The optional offsets.","returns its offsets.","returns its offsets.","Returns the offsets of this Utf8Array.","","Contains functions and function factories to order values …","","","","","","","Pop the last entry from MutableBinaryValuesArray. This …","Pop the last entry from MutableBinaryArray. This function …","Pop an entry from MutableBooleanArray. Note If the values …","Pop the last entry from MutableFixedSizeBinaryArray. This …","Pop a value from the array. Note if the values is empty, …","Pop the last entry from MutableUtf8Array. This function …","Pop the last entry from MutableUtf8ValuesArray. This …","Pushes a new item to the array.","Pushes a new element to the array.","Pushes a new entry to MutableBooleanArray.","pushes a new entry to MutableFixedSizeBinaryArray.","Adds a new value to the array.","Call this once for each “row” of children you push.","Pushes a new element to the array.","Pushes a new item to the array.","Adds a new null element to the array.","","","","","pushes a null value","","","","","","","","","Push a new element that holds the invariants of the struct.","Safety","Needs to be called when a valid value was extended to this …","","","Reserves additional slots to its capacity.","","Reserves additional elements and additional_values on the …","Reserves additional elements and additional_values on the …","","Reserves additional slots.","","","Reserves additional slots.","","Reserves additional slots.","Reserves additional slots.","","Reserves additional slots.","","","","Reserves additional entries.","","Reserves additional entries.","","Reserves additional elements and additional_values on the …","","Reserves additional elements and additional_values on the …","","","","","","","","","","Sets position index to value. Note that if it is the first …","Sets position index to value. Note that if it is the first …","Sets position index to value. Note that if it is the first …","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of the keys of this DictionaryArray.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity.","Sets the validity of this array.","Sets the values of this BooleanArray.","Sets values.","Update the values of this PrimitiveArray.","Shrink the array to fit its length.","Shrinks the capacity of the MutableBinaryValuesArray to …","","Shrinks the capacity of the MutableBinaryArray to fit its …","","Shrinks the capacity of the MutableBooleanArray to fit its …","","Shrinks the capacity of the MutableDictionaryArray to fit …","","Shrinks the capacity of the MutableFixedSizeBinaryArray to …","","Shrinks the capacity of the MutableFixedSizeListArray to …","","","Shrinks the capacity of the MutableListArray to fit its …","","Shrinks the capacity of the MutablePrimitiveArray to fit …","","Shrinks the capacity of the MutableStructArray to fit its …","","Shrinks the capacity of the MutableUtf8Array to fit its …","","Shrinks the capacity of the MutableUtf8ValuesArray to fit …","","returns the (fixed) size of the MutableFixedSizeBinaryArray…","Returns the size","Returns the size (number of elements per slot) of this …","Returns the size (number of elements per slot) of this …","","Slices this Array.","","Slices this BinaryArray.","Slices this BooleanArray.","","Slices this DictionaryArray.","","","Slices this FixedSizeBinaryArray.","Slices this FixedSizeListArray.","","","Slices this ListArray.","Returns a slice of this MapArray.","","Returns a slice of the NullArray.","","","Slices this PrimitiveArray by an offset and length.","","Slices this StructArray.","","Returns a slice of this UnionArray.","Slices this Utf8Array.","","Slices the Array.","Slices this BinaryArray.","","Slices this BooleanArray.","","","Slices this DictionaryArray.","","Slices this FixedSizeBinaryArray.","","Slices this FixedSizeListArray.","","Slices this ListArray.","","Returns a slice of this MapArray.","Returns a slice of the NullArray.","","","Slices this PrimitiveArray by an offset and length.","Slices this StructArray.","","","Returns a slice of this UnionArray.","Slices this Utf8Array.","","Returns a slice of this Array.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns a slice of this Array.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","","","","Returns a new FixedSizeBinaryArray with a different …","Changes the arrays’ DataType, returning a new …","Returns a new PrimitiveArray with a different logical type.","Clone a &dyn Array to an owned Box<dyn Array>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Fallible version of Extend::extend.","","","This is infalible and is implemented for consistency with …","","","","This is infalible and is implemented for consistency with …","","","Expand this array, using elements from the underlying …","Tries to extend itself with elements from other, failing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a new MutableBinaryValuesArray from an iterator.","Creates a new MutableFixedSizeBinaryArray from an iterator …","Creates a FixedSizeBinaryArray from an fallible iterator …","Returns a new MutableUtf8ValuesArray from an iterator.","Returns a new DictionaryArray.","Creates a MutableBinaryArray from an falible iterator of …","Creates a BinaryArray from an fallible iterator of trusted …","Creates a BooleanArray from a TrustedLen.","Creates a BooleanArray from a TrustedLen.","Creates a MutablePrimitiveArray from an fallible iterator …","Creates a MutableUtf8Array from an falible iterator of …","Creates a Utf8Array from an fallible iterator of trusted …","Creates a MutableBinaryArray from an falible iterator of …","Creates a BinaryArray from an falible iterator of trusted …","Creates a BooleanArray from an falible iterator of trusted …","Creates a BooleanArray from an falible iterator of trusted …","Creates a MutablePrimitiveArray from an fallible iterator …","Creates a MutableUtf8Array from an falible iterator of …","Creates a Utf8Array from an falible iterator of trusted …","Returns a the inner Field","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a MutableBinaryValuesArray created from its …","Returns a MutableBinaryArray created from its internal …","Returns a BinaryArray created from its internal …","The canonical method to create a MutableBooleanArray out …","The canonical method to create a BooleanArray out of …","Returns a new DictionaryArray.","Creates a new MutableFixedSizeBinaryArray.","Creates a new FixedSizeBinaryArray.","Creates a new FixedSizeListArray.","Creates a new ListArray.","Returns a new MapArray.","Returns a new NullArray.","The canonical method to create a MutablePrimitiveArray out …","The canonical method to create a PrimitiveArray out of its …","Create a MutableStructArray out of low-end APIs.","Returns a new StructArray.","Returns a new UnionArray.","Returns a MutableUtf8Array created from its internal …","Returns a MutableUtf8ValuesArray created from its internal …","Returns a Utf8Array created from its internal …","Returns a new DictionaryArray.","Creates a new Utf8Array without checking for offsets …","Tries to push a new element.","","","This is infalible and is implemented for consistency with …","","tries to push a new entry to MutableFixedSizeBinaryArray.","","","This is infalible and is implemented for consistency with …","","","Needs to be called when a valid value was extended to this …","Needs to be called when a valid value was extended to this …","","","","","","","","","","","","","","","","","","","","","","","","","","The types.","The validity of the Array: every array has an optional …","The optional validity of the array.","","","","The optional validity.","","Returns the optional validity.","","","","The optional validity. Equivalent to self.keys().validity()…","","","The optional validity.","","","The optional validity.","","The optional validity.","","","","","","","Returns the optional validity.","","","The optional validity.","","","","The optional validity.","","Returns the value of the element at index i.","Returns the element at index i","Returns the value at index i","Returns the value of the DictionaryArray at position i.","Returns the element at index i as &[u8]","Returns value at position i.","Returns the Vec<T> at position i.","Returns the element at index i","Returns the element at index i.","Returns the value at slot i.","Return the ith child array.","Returns the slot index as a Scalar.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the element at index i","Returns the element at index i as bool","Returns the element at index i as &[u8]","Returns the element at index i as &str","Returns the Vec<T> at position i.","Returns the element at index i as &str","Returns the element at index i.","Returns the value at index i. The value on null slots is …","Returns the slot index as a Scalar.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the value of the element at index i, ignoring the …","The values of the array","returns its values.","returns its values.","","Returns the values of this BinaryArray.","Returns its values.","The values Bitmap. Values on null slots are undetermined …","returns a reference to the inner values.","Returns the values of the DictionaryArray.","Returns its values.","Returns the values allocated on this FixedSizeBinaryArray.","The inner values","Returns the inner array.","The values","The values.","Returns its values.","The values Buffer. Values on null slots are undetermined …","The values","Returns the values of this StructArray.","returns its values.","returns its values.","","Returns the values of this Utf8Array.","Returns an iterator over the values of this array","Returns an iterator of &[u8] over every element of this …","Returns an iterator over the values of this …","Returns an iterator over the values of this BooleanArray.","Returns an iterator of Box<dyn Scalar>","Returns iterator over the values of FixedSizeBinaryArray","Returns an iterator of Box<dyn Array>","Returns an iterator of Box<dyn Array>","Returns an iterator of Box<dyn Array>","Returns an iterator of T","Returns an iterator of the values, &T, ignoring the arrays…","Returns an iterator of Box<dyn Array>","Returns an iterator of &str","Returns an iterator of &str","Returns an iterator over the the values [V::IterValue].","Returns a mutable slice of values.","Returns a mutable slice of values.","Initializes a new MutableBinaryValuesArray with a …","Initializes a new MutableBinaryArray with a pre-allocated …","Initializes a new MutableUtf8Array with a pre-allocated …","Initializes a new MutableUtf8ValuesArray with a …","Initializes a new MutableBinaryValuesArray with a …","Initializes a new MutableBinaryArray with a pre-allocated …","Creates an new MutableBooleanArray with a capacity of …","Creates a new MutableFixedSizeBinaryArray with capacity …","Creates a new MutableListArray with a capacity.","Creates a new MutablePrimitiveArray with a capacity.","Initializes a new MutableUtf8Array with a pre-allocated …","Initializes a new MutableUtf8ValuesArray with a …","Creates a new MutablePrimitiveArray from a capacity and …","Clones this Array with a new new assigned bitmap.","Returns this array with a new validity.","","Returns this array with a new validity.","","Returns this array with a new validity.","","Returns this DictionaryArray with a new validity.","Returns this array with a new validity.","","Returns this array with a new validity.","","","Returns this array with a new validity.","","Returns this array with a new validity.","","","Returns this array with a new validity.","Returns this array with a new validity.","","","","Returns this array with a new validity.","Returns a clone of this BooleanArray with new values.","Returns this PrimitiveArray with new values.","","","","Describes a struct that can be extended from slices of …","Concrete Growable for the BinaryArray.","Concrete Growable for the BooleanArray.","Concrete Growable for the DictionaryArray.","Concrete Growable for the FixedSizeBinaryArray.","Concrete Growable for the FixedSizeListArray.","Concrete Growable for the ListArray.","Concrete Growable for the MapArray.","Concrete Growable for the NullArray.","Concrete Growable for the PrimitiveArray.","Concrete Growable for the StructArray.","Concrete Growable for the UnionArray.","Concrete Growable for the Utf8Array.","","","","","","","","","","","","","Converts this Growable to an Arc<dyn Array>, thereby …","Converts this Growable to an Box<dyn Array>, thereby …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extends this Growable with elements from the bounded Array …","","","","","","","","","","","","","Extends this Growable with null elements, disregarding the …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The current length of the Growable.","","","","","","","","","","","","","Creates a new Growable from an arbitrary number of Arrays.","Creates a new GrowableBinary bound to arrays with a …","Creates a new GrowableUnion bound to arrays with a …","Creates a new GrowableBoolean bound to arrays with a …","Creates a new GrowableFixedSizeBinary bound to arrays with …","Creates a new GrowableNull.","Creates a new GrowablePrimitive bound to arrays with a …","Creates a new GrowableList bound to arrays with a …","Creates a new GrowableMap bound to arrays with a …","Creates a new GrowableStruct bound to arrays with a …","Creates a new GrowableFixedSizeList bound to arrays with a …","Creates a new GrowableUtf8 bound to arrays with a …","Creates a new GrowableDictionary bound to arrays with a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compare the values at two arbitrary indices in two arrays.","returns a comparison function that compares values at two …","Total order of all native types whose Rust implementation …","implements comparison using IEEE 754 total ordering for f32","implements comparison using IEEE 754 total ordering for f64","An immutable container semantically equivalent to …","This crates’ equivalent of std::vec::IntoIter for Bitmap.","A container of booleans. MutableBitmap is semantically …","","","","Compute bitwise AND operation","Returns the byte slice of this Bitmap.","Returns the slice of bytes of this MutableBitmap. Note …","Apply a bitwise operation op to two inputs and return the …","Apply a bitwise binary operation to a MutableBitmap.","","","","","","","","","","","","","","","","Returns the capacity of MutableBitmap in number of bits.","Creates a Vec<u8> from a TrustedLen of BitChunk.","Returns an iterator over bits in bit chunks BitChunk.","Empties the MutableBitmap.","","","","","","","","","","","Extends MutableBitmap by additional values of constant …","Extends the MutableBitmap from a Bitmap.","Extends the MutableBitmap from a slice of bytes with …","Extends the MutableBitmap from a slice of bytes with …","Extends self from a TrustedLen iterator.","Extends self from an iterator of trusted len.","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Creates a Vec from an Iterator of BitChunk.","Creates a [Bitmap] from its internal representation. This …","Creates a [Bitmap] from its internal representation. This …","","","Initializes a MutableBitmap with all values set to valid/ …","Initializes a zeroed MutableBitmap.","Creates a new Bitmap from an iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from an iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from a slice and length.","Alias for Bitmap::try_new().unwrap() This function is O(1)","Initializes a MutableBitmap from a Vec<u8> and a length. …","Returns whether the bit at position i is set.","Returns whether the position index is set.","Returns whether the bit at position i is set.","Unsafely returns whether the bit at position i is set.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns its internal representation","","","","","Converts this Bitmap to MutableBitmap, returning itself if …","Returns whether Bitmap is empty","Returns whether MutableBitmap is empty.","Returns a new iterator of bool over this bitmap","constructs a new iterator over the bits of MutableBitmap.","Returns the length of the Bitmap.","Returns the length of the MutableBitmap.","Converts this Bitmap into a MutableBitmap, cloning its …","Initializes an empty Bitmap.","Creates a new IntoIter from a Bitmap","Initializes an empty MutableBitmap.","Initializes an new Bitmap filled with unset values.","","","","","","Returns the number of unset bits on this Bitmap.","Returns the number of unset bits on this MutableBitmap.","Counts the nulls (unset bits) starting from offset bits …","Compute bitwise OR operation","Pop the last bit from the MutableBitmap. Note if the …","Pushes a new bit to the MutableBitmap, re-sizing it if …","Pushes a new bit to the MutableBitmap","Apply a bitwise operation op to four inputs and return the …","Reserves additional bits in the MutableBitmap, potentially …","Sets the position index to value","Sets the position index to value","Shrinks the capacity of the MutableBitmap to fit its …","","Slices self, offsetting by offset and truncating up to …","Slices self, offseting by offset and truncating up to …","Slices self, offsetting by offset and truncating up to …","Slices self, offseting by offset and truncating up to …","Apply a bitwise operation op to three inputs and return …","","","","","","","Creates a new Bitmap from a fallible iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from a fallible iterator of booleans.","Creates a new MutableBitmap from an falible iterator of …","","","","Initializes a new Bitmap from vector of bytes and a length.","Initializes a new MutableBitmap from a Vec<u8> and a …","","","","Apply a bitwise operation op to one input and return the …","Applies a function to every bit of this MutableBitmap in …","Returns the number of unset bits on this Bitmap.","Returns the number of unset bits on this MutableBitmap.","General utilities for bitmaps representing items where LSB …","Initializes a pre-allocated MutableBitmap with capacity …","Compute bitwise XOR operation","A chunk of bits. This is used to create masks of a given …","Trait representing an exact iterator over bytes in BitChunk…","This struct is used to efficiently iterate over bit masks …","An iterator over a slice of bytes in BitChunks.","An iterator over mutable slices of bytes of exact size.","An iterator over bits according to the LSB, i.e. the bytes …","There are null values","There are no null values","Iterator over a bitmap that returns slices of set regions …","An Iterator over Option<T> This enum can be used in two …","An Iterator over validity and values.","","","","","","","","","","","","","","","","","","","Returns the number of bytes required to hold bits bits.","","","","","","","","","Returns the number of zero bits in the slice offsetted by …","Formats bytes taking into account an offset and length of …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","convert itself from bytes.","Returns whether bit at position i in data is set","Returns whether bit at position i in data is set or not.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Returns whether there are still elements in this iterator","Returns whether bit at position i in byte is set or not","Returns the number of chunks of this iterator","","Creates a new BitChunksExact.","Creates a BitChunks.","Returns a new BitChunksExactMut","Creates a new BitmapIter.","Creates a new SlicesIterator","Creates a new ZipValidityIter.","Returns a new ZipValidity","Returns a new ZipValidity and drops the validity if all …","","","","","","","","","","","","","","The remainder of the iterator.","","Returns the remaining BitChunk. It is zero iff len / 8 == 0…","","Returns the remainder BitChunk.","The remainder slice","An iterator over individual items of the remainder","An iterator over individual items of the remainder","The number of items in the remainder","","","Returns the remainder bits in BitChunks::remainder.","The length of the remainder slice in bits.","Sets bit at position i in byte","Sets bit at position i in data","Sets bit at position i in data without doing bound checks","","","","","","","Returns the total number of slots. It corresponds to the …","convert itself into bytes.","","","","","","","","","","","","","","","","","","","","","","","","","","Unwrap into an iterator that has null values.","Unwrap into an iterator that has no null values.","Buffer is a contiguous memory region that can be shared …","Bytes representation.","","Returns the byte slice stored in this buffer","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Creates a [Bitmap] from its internal representation. This …","","Returns a mutable reference to its underlying Vec, if …","Returns a mutable reference to its slice, if possible.","Calls U::from(self).","Calls U::from(self).","Returns its internal representation","","Returns a mutable reference to its underlying Vec, if …","Returns whether the buffer is empty.","Returns whether underlying data is sliced. If sliced the …","Returns the number of bytes in the buffer","Creates an empty Buffer.","Returns the offset of this buffer.","Safety","Get the strong count of underlying Arc data buffer.","Get the weak count of underlying Arc data buffer.","Slices this buffer starting at offset.","Slices this buffer starting at offset.","Returns a new Buffer that is a slice of this buffer …","Returns a new Buffer that is a slice of this buffer …","","","","","","","","A vector of trait objects of Array where every item has …","","returns the Arrays in Chunk","","","","","returns the Arrays in Chunk","","","","","Returns the argument unchanged.","Calls U::from(self).","Consumes Chunk into its underlying arrays. The arrays are …","returns whether the columns have any rows","returns the number of rows of every array","Creates a new Chunk.","","","","Creates a new Chunk.","","Contains different aggregation functions","Defines basic arithmetic kernels for PrimitiveArrays.","Defines kernels suitable to perform operations to …","Defines generics suitable to perform operations to …","null-preserving operators such as and, or and not.","Boolean operators of Kleene logic.","Defines different casting operators such as cast or …","Contains comparison operators","Contains the concatenate kernel","Contains operators to filter arrays such as filter.","Contains the operator if_then_else.","Contains “like” operators such as like_utf8 and …","Defines kernel to extract a substring of a [Large…","Defines take kernel for Array","The maximum value","The minimum value","Trait describing a type describing multiple lanes with an …","Object that can reduce itself to a number. This is used in …","Whether max supports data_type","Whether min supports data_type","Whether sum supports data_type","Returns the total (heap) allocated size of the array in …","Returns the maximum of Array. The scalar is null when all …","Returns the maximum value in the binary array, according …","Returns the maximum value in the boolean array","reduce itself to the minimum","lane-wise maximum between two instances","Returns the maximum value in the array, according to the …","Returns the maximum value in the string array, according …","Returns the minimum of Array. The scalar is null when all …","Returns the minimum value in the binary array, according …","Returns the minimum value in the boolean array.","reduce itself to the maximum","lane-wise minimum between two instances","Returns the minimum value in the array, according to the …","Returns the minimum value in the string array, according …","returns a new instance with all lanes equal to MAX","returns a new instance with all lanes equal to MIN","Reduces this element to a single value.","Returns the sum of all elements in array as a Scalar of …","Returns the sum of values in the array.","Compute the sum of a slice","Defines basic addition operation for primitive arrays","Defines checked addition operation for primitive arrays","Defines checked division operation for primitive arrays","Defines checked multiplication operation for primitive …","Defines checked reminder operation for primitive arrays","Defines checked subtraction operation for primitive arrays","Defines basic division operation for primitive arrays","Defines basic multiplication operation for primitive arrays","Defines Overflowing addition operation for primitive arrays","Defines Overflowing multiplication operation for primitive …","Defines Overflowing subtraction operation for primitive …","Defines basic reminder operation for primitive arrays","Defines saturating addition operation for primitive arrays","Defines saturating multiplication operation for primitive …","Defines saturating subtraction operation for primitive …","Defines basic subtraction operation for primitive arrays","Defines wrapping addition operation for primitive arrays","Defines wrapping multiplication operation for primitive …","Defines wrapping subtraction operation for primitive arrays","Adds two Arrays.","Adds itself to rhs","Adds an Array and a Scalar.","Contains arithemtic functions for PrimitiveArrays.","Returns whether two DataTypes can be added by add.","Returns whether two DataTypes can be divided by div.","Returns whether two DataTypes can be multiplied by mul.","Whether neg is supported for a given DataType","Returns whether two DataTypes “can be remainder” by rem…","Returns whether two DataTypes can be subtracted by sub.","Checked add","checked division","checked multiplication","checked remainder","checked subtraction","Defines the arithmetic kernels for Decimal PrimitiveArrays…","Divide of two Arrays.","division","Divide an Array with a Scalar.","Multiply two Arrays.","multiplication","Multiply an Array with a Scalar.","Negates an Array.","Overflowing add","overflowing multiplication","overflowing subtraction","Remainder of two Arrays.","remainder","Saturating add","saturating multiplication","saturarting subtraction","Subtracts two Arrays.","subtraction","Adds an Array and a Scalar.","Defines the arithmetic kernels for adding a Duration to a …","Adds itself to rhs using wrapping addition","wrapping multiplication","wrapping subtraction","Trait describing a NativeType whose semantics of …","Adds two primitive arrays with the same type. Panics if …","Adds a scalar T to a primitive array of type T. Panics if …","Checked addition of two primitive arrays. If the result …","Checked addition of a scalar T to a primitive array of …","Checked division of two primitive arrays. If the result …","Checked division of a primitive array of type T by a …","Checked multiplication of two primitive arrays. If the …","Checked multiplication of a scalar T to a primitive array …","Checked negates values from array.","Checked operation of raising an array of primitives to the …","Checked remainder of two primitive arrays. If the result …","Checked remainder of a primitive array of type T by a …","Checked subtraction of two primitive arrays. If the result …","Checked subtraction of a scalar T to a primitive array of …","Divides two primitive arrays with the same type. Panics if …","Divide a primitive array of type T by a scalar T. Panics …","Multiplies two primitive arrays with the same type. Panics …","Multiply a scalar T to a primitive array of type T. Panics …","Negates values from array.","Overflowing addition of two primitive arrays. If the …","Overflowing addition of a scalar T to a primitive array of …","Overflowing multiplication of two primitive arrays. If the …","Overflowing multiplication of a scalar T to a primitive …","Overflowing subtraction of two primitive arrays. If the …","Overflowing subtraction of a scalar T to a primitive array …","Raises an array of primitives to the power of exponent. …","Remainder of two primitive arrays with the same type. …","Remainder a primitive array of type T by a scalar T. …","Saturating addition of two primitive arrays. If the result …","Saturated addition of a scalar T to a primitive array of …","Saturating multiplication of two primitive arrays. If the …","Saturated multiplication of a scalar T to a primitive …","Saturating subtraction of two primitive arrays. If the …","Saturated subtraction of a scalar T to a primitive array …","Subtracts two primitive arrays with the same type. Panics …","Subtract a scalar T to a primitive array of type T. Panics …","Wrapping addition of two PrimitiveArrays. It wraps around …","Wrapping addition of a scalar T to a PrimitiveArray of …","Wrapping multiplication of two PrimitiveArrays. It wraps …","Wrapping multiplication of a scalar T to a PrimitiveArray …","Wrapping negates values from array.","Wrapping subtraction of two PrimitiveArrays. It wraps …","Wrapping subtraction of a scalar T to a PrimitiveArray of …","Adaptive addition of two decimal primitive arrays with …","Adaptive division of two decimal primitive arrays with …","Adaptive multiplication of two decimal primitive arrays …","Adaptive subtract of two decimal primitive arrays with …","Adds two decimal PrimitiveArray with the same precision …","Checked addition of two decimal primitive arrays with the …","Checked division of two decimal primitive arrays with the …","Checked multiplication of two decimal primitive arrays …","Checked subtract of two decimal primitive arrays with the …","Divide two decimal primitive arrays with the same …","Multiply a decimal PrimitiveArray with a PrimitiveScalar …","Multiply two decimal primitive arrays with the same …","Multiply a decimal PrimitiveArray with a PrimitiveScalar …","Saturated addition of two decimal primitive arrays with …","Saturated division of two decimal primitive arrays with …","Saturated multiplication of two decimal primitive arrays …","Saturated subtraction of two decimal primitive arrays with …","Subtract two decimal primitive arrays with the same …","Adds a duration to a time array (Timestamp, Time and …","Adds a duration to a time array (Timestamp, Time and …","Adds an interval to a DataType::Timestamp.","Adds an interval to a DataType::Timestamp.","Subtract a duration to a time array (Timestamp, Time and …","Calculates the difference between two timestamps as …","Subtract a duration to a time array (Timestamp, Time and …","Calculates the difference between two timestamps returning …","Applies a binary operations to two primitive arrays. This …","Version of binary that creates a mutable bitmap that is …","Version of binary that returns an array and bitmap. Used …","Version of binary that checks for errors in the closure …","Version of unary that checks for errors in the closure …","Applies an unary and infallible function to a …","Version of unary that creates a mutable bitmap that is …","Version of unary that returns an array and bitmap. Used …","Applies a binary function to two PrimitiveArrays, …","Applies an unary function to a PrimitiveArray, optionally …","Check if all of the values in the array are true","Performs && operation on two BooleanArray, combining the …","Performs AND operation on an array and a scalar value. If …","Returns whether any of the values in the array is true","Returns a non-null BooleanArray with whether each value of …","Returns a non-null BooleanArray with whether each value of …","Performs unary NOT operation on an arrays. If value is …","Performs || operation on two BooleanArray, combining the …","Performs OR operation on an array and a scalar value. If …","Returns whether all values in the array are true","Logical ‘and’ operation on two arrays with Kleene logic","Logical ‘and’ operation on an array and a scalar value …","Returns whether any of the values in the array is true","Logical ‘or’ operation on two arrays with Kleene logic","Logical ‘or’ operation on an array and a scalar value …","options defining how Cast kernels behave","","Conversion of binary","Cast BinaryArray to DictionaryArray, also known as packing.","Conversion of binary","Conversion to utf8","Conversion of binary","Casts a BinaryArray to a PrimitiveArray, making any …","Conversion to utf8","Casts the BooleanArray to a BinaryArray, casting trues to …","Casts the BooleanArray to a PrimitiveArray.","Casts the BooleanArray to a Utf8Array, casting trues to "1"…","","","Return true if a value of type from_type can be cast into a","Cast array to the provided data type and return a new Array…","","","Conversion of dates","Conversion of dates","Casts days_mss to months_days_ns. This operation is …","Returns a PrimitiveArray<i128> with the casted values. …","Returns a PrimitiveArray<i128> with the casted values. …","Returns a PrimitiveArray<i128> with the casted values. …","","Casts a DictionaryArray to a new DictionaryArray backed by …","Casts a DictionaryArray to a new DictionaryArray by …","Casts a DictionaryArray to its values’ DataType, also …","Casts f16 into f32","Conversion of FixedSizeBinary to Binary.","Returns a PrimitiveArray<i128> with the casted values. …","","Returns the argument unchanged.","Returns a PrimitiveArray<i128> with the casted values. …","Calls U::from(self).","Casts months represented as i32s to months_days_ns. This …","Returns a Utf8Array where every element is the utf8 …","default to false whether to cast to an integer at the …","Casts a BinaryArray to a PrimitiveArray at best-effort …","Casts a Utf8Array to a PrimitiveArray at best-effort using …","Cast PrimitiveArray as a PrimitiveArray Same as …","Returns a BinaryArray where every element is the binary …","Returns a BooleanArray where every element is different …","Cast PrimitiveArray to DictionaryArray. Also known as …","Cast PrimitiveArray to a PrimitiveArray of another …","Cast PrimitiveArray to a PrimitiveArray of the same …","Returns a Utf8Array where every element is the utf8 …","Conversion of time","Conversion of times","Conversion of times","Conversion of time","Conversion of times","Conversion of times","Conversion of timestamp","Conversion of timestamp","Conversion of timestamp","Returns a Utf8Array where every element is the utf8 …","","","","","Conversion of utf8","Conversion to binary","Casts a Utf8Array to a Date32 primitive, making any …","Casts a Utf8Array to a Date64 primitive, making any …","Cast Utf8Array to DictionaryArray, also known as packing.","Conversion of utf8","crate::temporal_conversions::utf8_to_timestamp_ns applied …","Casts a Utf8Array to a PrimitiveArray, making any …","crate::temporal_conversions::utf8_to_timestamp_ns applied …","default to false whether an overflowing cast should be …","Similar to dictionary_to_dictionary_keys, but overflowing …","Similar to dictionary_to_dictionary_values, but …","The 8 lane representation of Self","NativeType that supports a representation of 8 lanes","Trait declaring an 8-lane multi-data.","Trait implemented by implementors of Simd8Lanes whose Simd8…","Trait implemented by implementors of Simd8Lanes whose Simd8…","Comparison functions for BinaryArray","Comparison functions for BooleanArray","Returns whether a DataType is comparable is supported by eq…","Returns whether a DataType is supported by eq_scalar.","Returns whether a DataType is comparable is supported by gt…","Returns whether a DataType is comparable is supported by …","Returns whether a DataType is supported by gt_eq_scalar.","Returns whether a DataType is supported by gt_scalar.","Returns whether a DataType is comparable is supported by lt…","Returns whether a DataType is comparable is supported by lt…","Returns whether a DataType is supported by lt_eq_scalar.","Returns whether a DataType is supported by lt_scalar.","Returns whether a DataType is comparable is supported by …","Returns whether a DataType is supported by neq_scalar.","== between two Arrays. Use can_eq to check whether the …","Equal","== between two Arrays and includes validities in …","== between an Array and a Scalar. Use can_eq_scalar to …","== between an Array and a Scalar and includes validities …","Utility for low level end users that implement their own …","Utility for low level end users that implement their own …","loads a complete chunk","loads an incomplete chunk, filling the remaining items …","> between two Arrays. Use can_gt to check whether the …","Greater than",">= between two Arrays. Use can_gt_eq to check whether the …","Greater than or equal to",">= between an Array and a Scalar. Use can_gt_eq_scalar to …","> between an Array and a Scalar. Use can_gt_scalar to …","< between two Arrays. Use can_lt to check whether the …","Less than","<= between two Arrays. Use can_lt_eq to check whether the …","Less than or equal to","<= between an Array and a Scalar. Use can_lt_eq_scalar to …","< between an Array and a Scalar. Use can_lt_scalar to …","!= between two Arrays. Use can_neq to check whether the …","Not equal","!= between two Arrays and includes validities in …","!= between an Array and a Scalar. Use can_neq_scalar to …","!= between an Array and a Scalar and includes validities …","Comparison functions for PrimitiveArray","Comparison functions for Utf8Array","Perform lhs == rhs operation on BinaryArray.","Perform lhs == rhs operation on BinaryArray and include …","Perform lhs == rhs operation on BinaryArray and a scalar.","Perform lhs == rhs operation on BinaryArray and a scalar …","Perform lhs > rhs operation on BinaryArray.","Perform lhs >= rhs operation on BinaryArray.","Perform lhs >= rhs operation on BinaryArray and a scalar.","Perform lhs > rhs operation on BinaryArray and a scalar.","Perform lhs < rhs operation on BinaryArray.","Perform lhs <= rhs operation on BinaryArray.","Perform lhs <= rhs operation on BinaryArray and a scalar.","Perform lhs < rhs operation on BinaryArray and a scalar.","Perform lhs != rhs operation on BinaryArray.","Perform lhs != rhs operation on BinaryArray.","Perform lhs != rhs operation on BinaryArray and a scalar.","Perform lhs != rhs operation on BinaryArray and a scalar …","Evaluate op(left, right) for BooleanArray and scalar using …","Perform lhs == rhs operation on two BooleanArrays.","Perform lhs == rhs operation on two BooleanArrays and …","Perform lhs == rhs operation on a BooleanArray and a …","Perform lhs == rhs operation on a BooleanArray and a …","Perform left > right operation on two arrays. Non-null …","Perform left >= right operation on two arrays. Non-null …","Perform left >= right operation on an array and a scalar …","Perform left > right operation on an array and a scalar …","Perform left < right operation on two arrays.","Perform left <= right operation on two arrays.","Perform left <= right operation on an array and a scalar …","Perform left < right operation on an array and a scalar …","lhs != rhs for BooleanArray","lhs != rhs for BooleanArray and include validities in …","Perform left != right operation on an array and a scalar …","Perform left != right operation on an array and a scalar …","Evaluate op(left, right) for PrimitiveArray and scalar …","Perform lhs == rhs operation on two arrays.","Perform lhs == rhs operation on two arrays and include …","Perform left == right operation on an array and a scalar …","Perform left == right operation on an array and a scalar …","Perform left > right operation on two arrays. Non-null …","Perform left >= right operation on two arrays. Non-null …","Perform left >= right operation on an array and a scalar …","Perform left > right operation on an array and a scalar …","Perform left < right operation on two arrays.","Perform left <= right operation on two arrays.","Perform left <= right operation on an array and a scalar …","Perform left < right operation on an array and a scalar …","Perform left != right operation on two arrays.","Perform left != right operation on two arrays and include …","Perform left != right operation on an array and a scalar …","Perform left != right operation on an array and a scalar …","Perform lhs == rhs operation on Utf8Array.","Perform lhs == rhs operation on Utf8Array and include …","Perform lhs == rhs operation on Utf8Array and a scalar.","Perform lhs == rhs operation on Utf8Array and a scalar. …","Perform lhs > rhs operation on Utf8Array.","Perform lhs >= rhs operation on Utf8Array.","Perform lhs >= rhs operation on Utf8Array and a scalar.","Perform lhs > rhs operation on Utf8Array and a scalar.","Perform lhs < rhs operation on Utf8Array.","Perform lhs <= rhs operation on Utf8Array.","Perform lhs <= rhs operation on Utf8Array and a scalar.","Perform lhs < rhs operation on Utf8Array and a scalar.","Perform lhs != rhs operation on Utf8Array.","Perform lhs != rhs operation on Utf8Array and include …","Perform lhs != rhs operation on Utf8Array and a scalar.","Perform lhs != rhs operation on Utf8Array and a scalar. …","Concatenate multiple Array of the same type into a single …","Function that can filter arbitrary arrays","Returns a prepared function optimized to filter multiple …","Filters an Array, returning elements matching the filter …","Returns a new Chunk with arrays containing only values …","Returns the values from lhs if the predicate is true or …","Returns lhs LIKE rhs operation on two BinaryArray.","Returns lhs LIKE rhs operation.","Returns lhs LIKE rhs operation on two Utf8Array.","Returns lhs LIKE rhs operation.","Returns lhs NOT LIKE rhs operation on two BinaryArrays.","Returns lhs NOT LIKE rhs operation on two BinaryArrays.","Returns lhs NOT LIKE rhs operation on two Utf8Array.","Returns lhs NOT LIKE rhs operation.","Checks if an array of type datatype can perform substring …","Returns an ArrayRef with a substring starting from start …","Checks if an array of type datatype can perform take …","Returns a new Array with only indices at indices. Null …","Opaque binary data of variable length.","Opaque binary data of variable length whose offsets are …","A boolean represented as a single bit.","true and false.","The set of supported logical types in this crate.","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","The number of elapsed days and milliseconds, stored as 2 …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","Dense union","A dictionary encoded array by IntegerType.","A dictionary encoded array (key_type, value_type), where …","Measure of elapsed time. This elapsed time is a physical …","Extension type.","Represents Arrow’s metadata of a “column”.","Opaque binary data of fixed size.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some data type with fixed length.","A list of some logical data type with a fixed number of …","An 16-bit float","A f32","A f64","A signed 16-bit integer.","An i16","A signed 32-bit integer.","An i32","A signed 64-bit integer.","An i64","A signed 8-bit integer.","An i8","the set of valid indices types of a dictionary-encoded …","A “calendar” interval modeling elapsed time that takes …","Interval units defined in Arrow","Opaque binary data of variable length and 64-bit offsets.","Opaque binary data of variable length whose offsets are …","A list of some data type with variable length and 64-bit …","A list of some logical data type whose offsets are …","A variable-length string in Unicode with UFT-8 encoding …","A variable-length UTF-8 encoded string whose offsets are …","A list of some data type with variable length.","A list of some logical data type whose offsets are …","A nested type.","A nested type that is represented as","typedef for BTreeMap<String, String> denoting Field’s …","Time in microseconds.","Time in milliseconds.","The number of elapsed months (i32), days (i32) and …","Time in nanoseconds.","A Null with no allocation.","Null type","The set of physical types: unique in-memory …","An array where each slot has a known compile-time size.","","An ordered sequence of Fields with associated Metadata.","typedef for Arc<Schema>.","Time in seconds.","Sparse union","A nested type that contains an arbitrary number of fields.","A nested DataType with a given number of Fields.","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","The time units defined in Arrow.","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer.","An u16","An unsigned 32-bit integer.","An u32","An unsigned 64-bit integer.","An u64","An unsigned 8-bit integer.","An u8","A nested type that represents slots of differing types.","A nested datatype that can represent slots of differing …","Mode of DataType::Union","A variable-length string in Unicode with UTF-8 encoding.","A variable-length UTF-8 encoded string whose offsets are …","The number of elapsed whole months.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the Field’s DataType.","Its logical DataType","","","","","","","","","","Whether this physical type equals PhysicalType::Primitive …","","","","","","","","","The fields composing this schema.","Returns a new Schema with a subset of all fields whose …","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","support get extension for metadata","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns whether the mode is dense","Its nullability","Returns whether the mode is sparse","Additional custom (opaque) metadata.","Optional metadata.","Its name","Creates a new Field.","Constructs a UnionMode::Sparse if the input bool is true, …","Returns &self for all but DataType::Extension. For …","","","","","","","","","the PhysicalType of this DataType.","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Field with metadata.","Attaches a Metadata to Schema","Enum with all errors in this crate.","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","Wrapper for IO errors","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","Typedef for a std::result::Result of an Error.","","","","","","","","","Returns the argument unchanged.","","","","","Wraps an external error in an Error.","Calls U::from(self).","","","","","","ABI-compatible struct for ArrowArray","ABI-compatible struct for ArrowArrayStream.","Implements an iterator of Array consumed from the C stream …","ABI-compatible struct for ArrowSchema","","","","","","","","","","","","create an empty ArrowSchema","creates an empty ArrowArray, which can be used to import …","Creates an empty ArrowArrayStream used to import from a …","Exports an Box<dyn Array> to the C data interface.","Exports a Field to the C data interface.","Exports an iterator to the C stream interface","Returns the field provided by the stream","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Imports an Array from the C data interface.","Imports a Field from the C data interface.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Functionality to mmap in-memory data regions.","Advances this iterator by one array","","","","","","","","","Returns a new ArrowArrayStreamReader","","","","","Creates a (non-null) BooleanArray from a slice of bits. …","Creates a (non-null) PrimitiveArray from a slice of values.","APIs to read from and write to Arrow’s IPC format.","Convert data between the Arrow memory format and JSON …","APIs to read from and write to NDJSON","APIs to read from and write to Parquet format.","Struct containing dictionary_id and nested IpcField, …","Struct containing fields and whether the file is written …","","","A struct adapter of Read+Seek+Write to append to IPC files","","","","","","","","","","dictionary id","","","optional children","The fields in the schema","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Endianness of the file","APIs to read Arrow’s IPC format.","","","","","","","","","APIs to write to Arrow’s IPC format.","how dictionaries are tracked in this crate","The record contains a number of buffers that does not …","Metadata of an Arrow IPC file, written in the footer of …","An iterator of Chunks from an Arrow IPC file.","A bitmap’s size is smaller than the required for the …","A buffer’s size is smaller than the required for the …","A buffer’s size is larger than the file size","FixedSizeBinaryArray has invalid datatype.","The block is an invalid flatbuffer","The message’s body length is an invalid flatbuffer","The message’s buffers is an invalid flatbuffer","The compression is an invalid flatbuffer","The message’s data is an invalid flatbuffer","The footer’s dictionaries is an invalid flatbuffer","The footer is an invalid flatbuffer","The message’s header is an invalid flatbuffer","The dictionary id is an invalid flatbuffer","The dictionary is_delta is an invalid flatbuffer","The dictionary message is an invalid flatbuffer","The message’s nodes is an invalid flatbuffer","The footer’s record batches is an invalid flatbuffer","The footer’s schema is an invalid flatbuffer","The version is an invalid flatbuffer","The IPC file does not end with [b’A’, b’R’, b’R…","The IPC file does not start with [b’A’, b’R’, b’R…","Invalid dictionary id","Field id is not a dictionary","The message does not contain data","The file’s schema does not contain fields","RecordBatch messages do not contain buffers","The message does not contain a header","RecordBatch messages does not contain nodes","The file’s footer does not contain record batches","The file’s footer does not contain a schema","The first 4 bytes of the last 10 bytes is < 0","The different types of errors that reading from IPC can …","Next item in the stream","Metadata of an Arrow IPC stream, written at the start of …","Arrow Stream reader.","Encodes the stream’s status after each read.","dictionaries can only contain dictionary messages; record …","Relative positions in the file is < 0","A live stream without data","","","The blocks in the file","","","","","","","","","","","","","","","","","Deserialize an flatbuffers-encoded Schema message into …","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Get the inner memory scratches so they can be reused in a …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Consumes this FileReader, returning the underlying reader","","","The files’ IpcSchema","The IPC fields tracking dictionaries","Check if the stream is finished","Returns the FileMetadata","Return the schema of the stream","Creates a new FileReader. Use projection to only take …","Try to create a new stream reader","","","Reads the record batch at position index from the reader.","Reads all file’s dictionaries, if any This function is …","Read the Arrow IPC file’s metadata","Reads the metadata of the stream","Return the schema of the file","Return the schema of the file","The schema that is read from the file footer","The schema that is read from the stream’s first message","Set the inner memory scratches so they can be reused in a …","The total size of the file in bytes","","","","","","","","","","","","","","","","","","","","","Return the data inside this wrapper.","The IPC version of the stream","The size of the IPC buffer","number of bytes of all buffers in the record","the size of the file","Declared number of elements in the buffer","Declared length of the bitmap","Number of bits on the IPC buffer","The requested dictionary id","The requested dictionary id","Bytes required for the length and type","The name of the NativeType","Compression codec","Arrow file writer","LZ4 (framed)","An array Chunk with optional accompanying IPC fields.","Arrow stream writer","Options declaring the behaviour of writing to IPC","ZSTD","","","","","","","","","","","","","","","Get the Arrow columns in this record.","Whether the buffers should be compressed and which codec …","Assigns every dictionary field a unique ID","","","","Get the IPC fields for this record.","Async writer for IPC files.","Write continuation bytes, and mark the stream as done","Write footer and closing tag, then mark the writer as done","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Get the inner memory scratches so they can be reused in a …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Consumes itself, returning the inner writer.","Consumes itself into the inner writer","Creates a new StreamWriter","Creates a new FileWriter.","Converts a Schema and IpcFields to a flatbuffers-encoded …","Set the inner memory scratches so they can be reused in a …","Starts the stream by writing a Schema message to it. Use …","Writes the header and first (schema) message to the file.","async writing of arrow streams","","","","","","","Creates a new FileWriter from an existing file, seeking to …","","","","","Creates a new FileWriter and writes the header to writer","","","","","Writes an Array to arrow_data","Writes Chunk to the stream","Writes Chunk to the file","Sink that writes array chunks as an IPC file.","","","Returns the argument unchanged.","Calls U::from(self).","Create a new file writer.","","","","","","","","A sink that writes array chunks as an IPC stream.","Options declaring the behaviour of writing to IPC","","","","","","","","Whether the buffers should be compressed and which codec …","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Create a new StreamSink.","","","","","","","","","","","","APIs to write to JSON","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","FallibleStreamingIterator that serializes a Chunk into …","FallibleStreamingIterator that serializes an Array to …","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","","Advances the iterator to the next position.","","","","","","","","","","","","","","Advances the state of the iterator to the next item from …","","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","","","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new RecordSerializer.","Creates a new Serializer.","Advances the iterator, returning the next element.","","","Advances the back of the iterator, returning the last …","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","","","","","","","","","","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Writes valid JSON from an iterator of (assumed …","APIs to serialize and write to NDJSON.","The error type of iteration.","A fallible, streaming iterator.","An iterator adapter that receives an implementer of Write …","The type being iterated over.","FallibleStreamingIterator that serializes an Array to …","","Advances the iterator to the next position.","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","Borrows an iterator, rather than consuming it.","","","Returns the number of remaining elements in the iterator.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","Calls U::from(self).","Calls U::from(self).","Returns the inner content of this iterator","","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new FileWriter.","Creates a new Serializer.","Advances the iterator, returning the next element.","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","APIs to read from Parquet format.","APIs to write to Parquet format.","Type def for a sharable, boxed dyn Iterator of arrays","A FallibleStreamingIterator that decompresses …","","","An embedded BSON document","","Metadata for a column chunk.","A descriptor for leaf-level primitive columns. This …","A CompressedDataPage is compressed, encoded representation …","A DataPage","","","A Date","","A decimal value.","Decompressor that allows re-using the page buffer of …","A DictPage","","","an enum is converted into a binary field","The error type of iteration.","","A fallible, streaming iterator.","Error presented when trying to use a code branch that …","Error presented when trying to use a feature from parquet …","Metadata for a Parquet file.","An iterator of Chunks coming from row groups of a parquet …","Iterator finished","","","","","The initial info of nested data types.","","","","","","A signed integer value.","","","An interval of time","When encoding, the user passed an invalid parameter","The type being iterated over.","","","An embedded JSON document","","List data types","","","","A special kind of fallible streaming iterator where advance…","","Type def for a sharable, boxed dyn Iterator of …","The state of nested data types.","When the parquet file is known to be out of spec.","A Page is an uncompressed, encoded representation of a …","Type declaration for a page filter","A fallible Iterator of CompressedDataPage. This iterator …","Trait describing a FallibleStreamingIterator of Page","Errors generated by this crate","","Representation of a Parquet type describing primitive and …","The set of all physical types representable in Parquet","Primitive data types","","","","A MutStreamingIterator of pre-read column chunks","An Iterator of Chunk that (dynamically) adapts a vector of …","Metadata for a row group.","An [Iterator<Item=RowGroupDeserializer>] from row groups …","Iterator still has elements","State of MutStreamingIterator.","","Struct data types","An iterator adapter over NestedArrayIter assumed to be …","","A time.","A time","","A date/time combination","A date/time combination","","","","An unsigned integer value.","","","","","","When decoding or decompressing, the page would allocate …","","","","","","","","","","","Reads the column indexes of all ColumnChunkMetaData and …","Reads a FileMetaData from the reader, located at the end …","Asynchronously reads the files’ metadata","Advances the iterator to the next position.","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","The ParquetType this descriptor is a leaf of","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","Returns the offset and length in bytes of the column chunk …","","","","","","","","","","","","","","","","","","","","","Returns this column’s ColumnChunk","Returns the encoding for this column","An iterator adapter that maps multiple iterators of Pages …","Column (sort) order used for min and max values of each …","Returns slice of column chunk metadata.","Returns the total compressed data size of this column …","Total size of all compressed column data in this row group.","Compression for this column.","Returns the number of remaining elements in the iterator.","Creates a new ListArray or FixedSizeListArray.","Creates a new MapArray.","String message for application that wrote this file.","Returns the offset for the column data.","Decompresses the page, using buffer for decompression. If …","The ColumnDescriptor for this column. This descriptor …","The descriptor this columns’ leaf.","Returns the offset for the dictionary page, if any.","","","","","","","","","","","","","Byte offset in file_path().","File where the column chunk is stored.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","","","","","","","","","","","","","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","Returns a ColumnIterator of column chunks corresponding to …","Returns all ColumnChunkMetaData associated to field_name. …","Returns all ColumnChunkMetaData associated to field_name. …","Creates a new iterator of compressed pages.","Returns a stream of compressed data pages","Returns true if this column chunk contains a index page, …","","","","","Returns the offset for the index page.","API to perform page-level filtering (also known as indexes)","","Initialize NestedState from &[InitNested].","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns two buffers: the first buffer corresponds to the …","Returns its internal buffer, consuming itself.","Returns the reader and this Readers’ interval buffer","","","","","","Method to convert to Thrift.","key_value_metadata of this file.","The number of rows in this state","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","The column’s ColumnMetaData","Returns the number of (parquet) columns that a DataType …","The nesteds composing NestedState.","Creates a new Decompressor.","Returns a new BasicDecompressor.","Returns a new PageReader.","Returns a new ColumnChunkMetaData","Creates new descriptor for leaf-level column.","Create a new RowGroupMetaData","Returns a new ReadColumnIterator","Creates a new StructIterator with iters and fields.","Returns a new FileReader.","Returns a new RowGroupReader","Creates a new RowGroupDeserializer.","Creates a new NestedState.","Create a a new PageReader with PageMetaData.","Advances the iterator, returning the next element.","","","","","","Returns the nth element of the iterator.","Number of rows in this row group.","Returns the number of rows on this row group","number of rows in the file.","Total number of values in this column chunk. Note that …","","The path of this column. For instance, “a.b.c.d”.","The PhysicalType of this column.","Returns the position of the first element matching a …","","Reads all columns that are part of the parquet field …","Reads all columns that are part of the parquet field …","Returns a vector of iterators of Array (ArrayIter) …","Returns a vector of iterators of Array corresponding to …","Reads parquets’ metadata syncronously.","Reads parquets’ metadata asynchronously.","Read PageLocations from the ColumnChunkMetaDatas. Returns …","The row groups of this file","APIs to handle Parquet <-> Arrow schemas.","Returns the Schema associated to this file.","schema descriptor.","Returns bounds on the number of remaining elements in the …","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","APIs exposing parquet2’s statistics as arrow’s …","Decodes the raw statistics into Statistics.","","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Converts a vector of columns associated with the parquet …","","","","","","","","","","","","Total byte size of all uncompressed column data in this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the total uncompressed data size of this column …","version of this file.","","","","","","","","","ColumnPageStatistics contains the minimum, maximum, and …","Page statistics of an Arrow field.","An enum describing a page that was either selected in a …","An interval","Variant used for fields with multiple parquet columns …","Variant used for fields with a single parquet column (e.g. …","","","","","","","","","","","","","","","Returns the set of (row) intervals of the pages.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Checks whether the row group have page index information …","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Its length","","The maximum values in the pages","The minimum values in the pages","Create a new interal","The number of null values in the pages.","","Reads the column indexes from the reader assuming a valid …","Reads all page locations and index locations (IO-bounded) …","rows to select from the page","Its start","Location of the page in the file","","","","","","","","","","","","","","","Metadata for a Parquet file.","","Wrapper struct to store key values","Representation of a Parquet type describing primitive and …","","A schema descriptor. This encapsulates the top-level …","Column (sort) order used for min and max values of each …","String message for application that wrote this file.","Infers a Schema from parquet’s FileMetaData. This first …","","key_value_metadata of this file.","number of rows in the file.","Converts ParquetTypes to a Field, ignoring parquet fields …","Reads an arrow schema from Parquet’s file metadata. …","The row groups of this file","schema descriptor.","","version of this file.","","","","","Arrow-deserialized parquet Statistics of a file","","","Deserializes the statistics in the column chunks from all …","number of dictinct values. This is a UInt64Array for …","","","Returns the argument unchanged.","Calls U::from(self).","Maximum","Minimum","number of nulls. This is a UInt64Array for non-nested types","","","","Bit packed encoding. This can only be used if the data …","","","Represents a valid brotli compression level.","","Encoding for floating-point data. K byte-streams are …","A CompressedDataPage is compressed, encoded representation …","A CompressedPage is a compressed, encoded representation …","Defines the compression settings for writing a parquet …","A FallibleStreamingIterator that consumes Page and yields …","A DataPage","","Delta encoding for integers. This can be used for int …","Incremental-encoded byte array. Prefix lengths are encoded …","Encoding for byte arrays to separate the length values and …","A descriptor of a parquet column. It contains the …","A DictPage","","","DynIter is an implementation of a single-threaded, …","Dynamically-typed FallibleStreamingIterator.","","The error type of iteration.","A fallible, streaming iterator.","Common type information.","Metadata for a Parquet file.","Sink that writes array chunks as a Parquet file.","An interface to write a parquet to a Write","","","","","Represents a valid gzip compression level.","","","","The type being iterated over.","Wrapper struct to store key values","a list","a list","","","","Descriptor of nested information of a field","A Page is an uncompressed, encoded representation of a …","The set of all physical types representable in Parquet","Representation of a Parquet type describing primitive and …","Default encoding. BOOLEAN - 1 bit per value. 0 is false; 1 …","Deprecated: Dictionary encoding. The values in the …","a primitive (leaf or parquet column) bitmap, _, length","","Group packed run length encoding. Usable for …","Dictionary encoding: the ids are encoded using the RLE …","","An iterator adapter that converts an iterator over Chunk …","A schema descriptor. This encapsulates the top-level …","","a struct","Description for file metadata","","","","The parquet version to use","Currently supported options to write to parquet","","Represents a valid zstd compression level.","","","","","","","","","","","","","","","","","Advances the iterator to the next position.","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Returns a vector of iterators of Page, one per leaf column …","Converts an Array to a CompressedPage based on options, …","Converts an Array to a CompressedPage based on options, …","Returns an iterator of Page.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","Checks whether the data_type can be encoded as encoding. …","Checks if sub_type schema is part of current schema. This …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns column order for ith column in this file. If …","Sort order used for the min_value and max_value fields in …","Column (sort) order used for min and max values of each …","The ColumnDescriptor (leafs) of this schema.","Compresses an [EncodedPage] into a CompressedPage using …","","The compression of the data in this page. Note that what …","The compression to apply to every page","Returns the compression level.","Returns the compression level.","Returns the compression level.","Returns the number of remaining elements in the iterator.","String for application that wrote this file. This should …","String message for application that wrote this file.","The size to flush a page, defaults to 1024 * 1024 if None","","","","Encryption algorithm. This field is set only in encrypted …","Writes the footer of the parquet file. Returns the total …","","","","","","","","","","","","","","","","","","","","","","","","","","","","The schemas’ fields.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","","","","","","","","","","","","","","","","","","","Retrieval metadata of key used for signing the footer. …","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Helper method to create a ParquetType::PrimitiveType …","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","Returns FieldInfo information about the type.","Get the length of Array that should be sliced.","","","","","","","","","","","","","the optional id, to select fields by id","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Deconstructs itself into its iterator and scratch buffer.","Consumes this writer and returns the inner writer","Returns the underlying writer and ThriftFileMetaData","","","Serializes itself to thrift’s …","","","returns the metadata","Optional key/value metadata *","key_value_metadata of this file.","Returns the length (number of rows) of the element","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","The maximum definition level","The maximum repetition level","Key-value metadata that will be written to the file on …","The schemas’ name.","Returns this type’s field name.","The field name","Creates a new Compressor","Returns a new DynIter, boxing the incoming iterator","Returns a new DynStreamingIterator, boxing the incoming …","","","Creates new schema descriptor from Parquet schema.","Returns a new CompressedDataPage.","Creates a new Compressor (same as new)","Advances the iterator, returning the next element.","","","Returns the nth element of the iterator.","Number of rows in this file *","number of rows in the file.","return number values of the nested","","The options assigned to the file","The write options for the file.","The SchemaDescriptor assigned to this file","Returns the SchemaDescriptor of the RowGroupIterator.","The Parquet SchemaDescriptor for the file.","","","","","","Returns the position of the first element matching a …","The PrimitiveType of this column","","","","","The repetition","Maps a Chunk and parquet-specific options to an …","Row groups in this file *","The row groups of this file","Returns the SchemaDescriptor that describes schema of this …","The Schema assigned to this file","The Arrow Schema for the file.","Parquet schema for this file. This schema contains …","schema descriptor.","","the rows to be selected by this page. When None, all rows …","Returns bounds on the number of remaining elements in the …","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","returns offset and length to slice the leaf values","Slices the Array to Box<dyn Array> and Vec<Nested>.","","Decodes the raw statistics into a statistics","","","","","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Convert Array to Vec<&dyn Array> leaves in DFS order.","Constructs the necessary Vec<Vec<Nested>> to write the rep …","","","","","","","","","","","","","","","","","Convert ParquetType to Vec<ParquetPrimitiveType> leaves in …","Creates a parquet SchemaDescriptor from a Schema.","Creates a ParquetType from a Field.","Transverses the data_type up to its (parquet) columns and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a schema from","Error","Deserializes crate::thrift_format::FileMetaData into this …","Method to convert from Thrift.","","","","","","","","","","","","","","","","","","","","","","","","","","Attempts to create a brotli compression level.","Attempts to create a gzip compression level.","Attempts to create a zstd compression level from a given …","Returns a new FileWriter.","Creates a new RowGroupIterator from an iterator over Chunk.","Create a new sink that writes arrays to the provided writer…","","","","","","","","","","","","","","","","","","","","","","","","","","","","Version of this file *","version of this file.","The page and file version to use","Writes a row group to the file.","writes the def levels to a Vec<u8> and returns it.","Writes a parquet file containing only the header and footer","Write repetition_levels and definition_levels to buffer.","Whether to write statistics","","","","","","","","","Memory maps dictionaries from an IPC file into","Memory maps an record batch from an IPC file into a Chunk.","","A wrapper type of Vec<O> representing the invariants of …","A wrapper type of Buffer<O> that is guaranteed to:","","","Returns the byte slice stored in this buffer","Returns the byte slice stored in this buffer","","","","","Returns a reference to its internal Buffer.","Returns the capacity of Offsets.","","","","","","","","","","","Extends itself with additional elements equal to the last …","Returns the first offset.","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Returns the inner Vec.","Returns the inner Buffer.","Copy-on-write API to convert OffsetsBuffer into Offsets.","Returns the last offset of this container.","Returns the last offset.","Returns the number of offsets in this container.","Returns the number of offsets in this container.","Returns the length an array with these offsets would be.","Returns the length an array with these offsets would be.","Returns an iterator with the lengths of the offsets","Returns an empty Offsets (i.e. with a single element, the …","Returns an empty OffsetsBuffer (i.e. with a single …","Returns Offsets assuming that offsets fulfills its …","Safety","Returns an Offsets whose all lengths are zero.","Pops the last element","Returns the range of the offsets.","Reserves additional entries.","Shrinks the capacity of self to fit.","Slices this OffsetsBuffer.","Slices this OffsetsBuffer starting at offset.","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","","","Try extend from an iterator of lengths","Extends itself from another Offsets","Extends itself from another Offsets sliced by start, length","","","","","","","","Creates a new Offsets from an iterator of lengths","Try to create a new Offsets from a sequence of lengths","","","Pushes a new element with a given length.","Pushes a new element with a given length.","","","Returns a new Offsets with a capacity, allocating at least …","The Scalar implementation of binary (Option<Vec<u8>>).","The Scalar implementation of a boolean.","The DictionaryArray equivalent of Array for Scalar.","The Scalar implementation of fixed size binary ([…","The scalar equivalent of FixedSizeListArray. Like …","The scalar equivalent of ListArray. Like ListArray, this …","The scalar equivalent of MapArray. Like MapArray, this …","The representation of a single entry of a …","The implementation of Scalar for primitive, semantically …","Trait object declaring an optional value with a DataType. …","A single entry of a crate::array::StructArray.","A single entry of a crate::array::UnionArray.","The implementation of Scalar for utf8, semantically …","","","","","","","","","","","","","convert itself to","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","the logical type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","whether it is valid","","","","","","","","","","","","","returns a new DictionaryScalar","Returns a new PrimitiveScalar.","Returns a new Utf8Scalar","Returns a new BinaryScalar.","Returns a new BooleanScalar","returns a new ListScalar","returns a new MapScalar","A new NullScalar","Returns a new StructScalar","returns a new FixedSizeListScalar","Returns a new FixedSizeBinaryScalar.","Returns a new UnionScalar","creates a new Scalar from an Array.","Returns a new PrimitiveScalar with the same value but …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the type of the union scalar","","","","","","","","","","","","","The values of the DictionaryScalar","Returns the optional value.","Returns the value irrespectively of the validity.","Its value","The value","Its value","Returns the inner value","The values of the ListScalar","The values of the MapScalar","Returns the values irrespectively of the validity.","The values of the FixedSizeListScalar","Number of days between 0001-01-01 and 1970-01-01","Number of microseconds in a second","Number of milliseconds in a second","Number of milliseconds in a day","Number of nanoseconds in a second","Number of seconds in a day","Adds an interval to a timestamp in time_unit units and …","Adds an interval to a timestamp in time_unit units without …","converts a i32 representing a date32 to NaiveDate","converts a i32 representing a date32 to NaiveDateTime","converts a i64 representing a date64 to NaiveDate","converts a i64 representing a date64 to NaiveDateTime","Parses an offset of the form "+WX:YZ" or "UTC" into …","converts a i32 representing a time32(ms) to NaiveTime","converts a i32 representing a time32(s) to NaiveTime","converts a i64 representing a time64(ns) to NaiveTime","converts a i64 representing a time64(us) to NaiveTime","converts a i64 representing a timestamp(ms) to …","converts a i64 representing a timestamp(ns) to …","converts a i64 representing a timestamp(s) to NaiveDateTime","Converts a timestamp in time_unit and timezone into …","Converts a timestamp in time_unit and timezone into …","converts a i64 representing a timestamp(us) to …","Calculates the scale factor between two TimeUnits. The …","Parses a Utf8Array to naive timestamp, i.e. …","Parses value to Option<i64> consistent with the Arrow’s …","Parses value to Option<i64> consistent with the Arrow’s …","Parses a Utf8Array to a timeozone-aware timestamp, i.e. …","Parses value to Option<i64> consistent with the Arrow’s …","Parses value to Option<i64> consistent with the Arrow’s …","An iterator of known, fixed size. A trait denoting Rusts’…","A chunk of bits. This is used to create masks of a given …","An [Iterator<Item=bool>] over a BitChunk. This iterator is …","An [Iterator<Item=usize>] over a BitChunk returning the …","Type denoting its representation as bytes. This is [u8; N] …","Two i32 representing days and ms","The difference between 1.0 and the next largest …","A 16-bit floating point number.","A 32-bit floating point number.","A 64-bit floating point number.","Whether it is i32 (false) or i64 (true).","Sealed trait describing the subset of NativeType (i32, i64…","Range of Index, equivalent to (a..b). Step is unstable in …","A signed 128-bit integer.","A signed 16-bit integer.","A signed 256-bit integer.","A signed 32-bit integer.","A signed 64-bit integer.","A signed 8-bit integer.","months_days_ns(i32, i32, i64)","Sealed trait implemented by all physical types that can be …","Sealed trait describing the subset (i32 and i64) of Index …","The corresponding variant of PrimitiveType.","The set of all implementations of the sealed trait …","An unsigned 16-bit integer.","An unsigned 32-bit integer.","An unsigned 64-bit integer.","An unsigned 8-bit integer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The number of days","The number of days","The in-memory representation of the DayMillisecond variant …","","","","","","","","","","","","","","Type representation of the Float16 physical type","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert itself from usize.","From bytes in big endian","","","","","Casts from u16.","Casts an f32 into f16","From bytes in little endian","","","","","convert itself from bytes.","Convert itself from usize.","Returns a new i256 from two i128.","","","","","Physical representation of a decimal","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","The number of milliseconds","The number of months","The in-memory representation of the MonthDayNano variant …","","","","Creates a new BitChunkIter with len bits.","Creates a new BitChunkOnes with len bits.","Returns a new IndexRange.","A new days_ms.","A new months_days_ns.","","","","The number of nanoseconds","","An iterator from (inclusive) start to (exclusive) end.","An iterator from (inclusive) start to (exclusive) end.","Contains traits and implementations of multi-data used in …","","","","To bytes in big endian","","","","","Casts to u16.","Casts this f16 to f32","To bytes in little endian","","","","","convert itself into bytes.","","","","","","","","","","Convert itself to usize.","","","","","","","","","","","","","","","","","","","","","","","","","The type holding bits for masks.","Describes the ability to convert itself from a BitChunk.","Number of lanes","Type used for masking.","The NativeType of this struct. E.g. f32 for a …","A struct that lends itself well to be compiled leveraging …","Trait implemented by some NativeType that have a SIMD …","The SIMD type associated with this trait. This type …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a tuple of 3 items whose middle item is itself, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert itself from a slice.","Convert itself from a slice.","","","","","","","","","","","","","","","","creates a new Self from v by populating items from v up to …","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","Sets values to default based on mask.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Converts numeric type to a String","Converts numeric type to a String","Converts numeric type to a String"],"i":[0,0,3,3,3,17,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,17,3,17,0,3,0,3,17,3,3,17,3,3,0,3,3,0,17,3,17,3,17,3,3,3,3,3,17,3,17,0,3,3,3,17,17,3,3,3,3,3,0,3,3,3,3,3,3,3,17,3,3,3,3,17,17,17,17,17,17,17,3,17,17,3,3,17,17,3,3,3,3,17,17,17,17,17,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,17,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,17,3,3,3,3,3,3,3,0,3,3,3,0,3,17,3,0,3,17,3,17,3,3,17,0,3,3,0,17,17,17,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,73,80,94,79,84,97,85,98,86,99,87,88,89,77,70,90,91,75,102,76,109,70,70,70,83,83,73,70,75,76,77,79,80,79,84,85,86,87,88,89,70,90,91,76,81,95,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,70,101,90,91,75,102,76,81,80,79,84,85,86,87,88,89,70,90,91,76,95,93,73,94,96,97,98,99,77,101,75,102,95,93,73,94,96,97,98,99,100,77,101,75,102,95,93,73,94,96,97,98,99,100,77,101,75,102,81,83,83,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,70,101,90,91,75,102,76,109,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,70,101,90,91,75,102,76,109,80,79,84,85,86,87,88,89,70,90,91,76,93,97,77,75,102,70,70,70,70,70,70,70,70,70,70,70,70,70,70,0,93,73,80,94,79,84,97,85,98,86,99,87,88,89,77,70,90,91,75,102,76,109,93,73,80,94,79,84,97,85,98,86,99,87,88,89,77,70,90,91,75,102,76,109,81,95,93,73,80,80,94,79,79,96,84,84,97,85,98,86,99,87,88,89,100,77,70,70,101,90,91,75,102,76,76,93,73,94,96,99,77,70,75,102,76,93,80,102,76,86,87,70,70,70,81,81,81,81,73,80,80,94,79,79,84,84,97,85,85,86,86,87,87,88,88,89,89,77,70,70,90,90,91,91,75,76,76,0,93,73,94,77,75,102,77,77,93,73,94,77,75,102,93,73,94,77,75,102,73,94,77,75,73,94,77,75,73,75,88,90,91,81,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,70,101,90,91,75,102,76,109,93,73,73,73,80,80,80,80,80,94,94,79,79,79,79,96,96,96,84,84,84,97,97,85,85,85,85,98,86,86,86,99,87,87,87,88,88,89,89,89,100,77,77,77,70,70,70,70,101,90,90,90,91,91,75,75,75,102,76,76,76,76,76,109,70,79,70,93,73,80,94,79,85,77,70,75,102,76,73,80,75,76,80,94,79,85,77,70,76,93,73,80,94,79,77,70,75,102,76,93,73,80,94,79,77,70,75,102,76,73,80,94,79,77,70,75,76,73,94,79,77,70,75,70,77,70,80,79,85,86,70,76,87,87,0,90,91,70,0,0,91,91,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,70,101,90,91,75,102,76,109,73,94,96,99,77,101,75,96,99,90,75,93,80,79,77,70,101,102,76,93,80,94,79,79,84,97,85,86,87,88,70,70,90,91,75,102,76,109,80,79,70,76,81,95,81,84,91,81,95,93,73,80,94,79,84,97,85,86,87,88,77,70,90,91,75,102,76,84,97,84,96,84,84,84,81,95,93,93,73,80,80,94,79,79,96,84,84,97,97,85,85,98,98,86,86,99,99,87,87,88,88,89,100,77,70,70,101,90,91,91,75,75,102,102,76,76,96,70,70,70,98,99,101,93,73,80,94,79,96,97,85,98,86,99,87,88,89,100,77,70,101,90,91,75,102,76,109,80,79,84,85,86,87,88,89,70,90,91,76,0,98,99,99,80,79,84,85,86,87,88,89,70,90,91,76,0,75,102,76,99,98,99,109,109,109,81,377,93,73,80,80,99,87,88,91,75,102,76,76,0,70,70,70,70,70,70,93,73,94,97,77,75,102,93,73,94,97,77,101,75,102,95,93,73,94,96,96,97,98,99,100,77,101,75,102,378,98,98,70,70,95,93,93,73,73,94,94,96,96,97,97,98,98,99,99,100,77,77,101,101,75,75,102,102,70,70,70,70,70,70,70,70,70,94,77,77,73,80,79,84,85,86,87,88,77,70,90,75,76,79,77,70,95,93,93,73,73,94,94,96,96,97,97,98,98,99,99,100,77,77,101,101,75,75,102,102,97,85,98,86,109,81,80,80,79,79,84,84,85,85,86,86,87,87,88,88,89,89,70,70,90,90,91,91,76,76,81,80,80,79,79,84,84,85,85,86,86,87,87,88,88,89,89,70,70,90,90,91,91,76,76,81,80,79,84,85,86,87,88,89,70,90,91,76,81,80,79,84,85,86,87,88,89,70,90,91,76,70,70,70,85,77,70,81,80,79,84,85,86,87,88,89,70,90,91,76,93,73,80,94,79,84,97,85,98,86,99,87,88,89,77,70,90,91,75,102,76,109,156,93,73,94,96,98,99,77,75,102,99,157,93,73,94,97,98,99,77,75,102,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,70,101,90,91,75,102,76,109,93,97,85,102,84,73,80,94,79,77,75,76,73,80,94,79,77,75,76,87,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,70,101,90,91,75,102,76,109,93,73,80,94,79,84,97,85,86,87,88,89,77,70,101,90,91,75,102,76,84,76,158,93,73,94,96,97,98,99,77,75,102,98,99,93,73,80,94,79,96,84,97,85,98,86,99,87,88,89,100,77,70,101,90,91,75,102,76,109,91,81,95,93,73,80,80,94,79,79,96,84,84,97,85,85,98,86,86,99,87,87,88,89,100,77,70,70,101,90,90,91,75,102,76,76,93,80,79,84,97,85,86,87,88,70,101,91,75,102,76,93,80,79,97,85,86,87,88,70,91,75,102,76,377,93,73,80,80,94,79,96,84,97,85,98,86,99,87,77,70,101,90,75,102,76,76,73,80,94,79,84,85,86,87,88,77,70,90,75,76,84,97,77,93,73,75,102,93,73,94,97,99,77,75,102,77,81,73,80,80,79,79,84,84,85,85,86,86,87,87,88,88,89,70,70,90,90,91,76,76,79,70,70,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0,116,127,117,120,124,125,122,123,126,121,128,119,162,162,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,124,162,116,127,117,120,124,125,122,123,126,121,128,119,162,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,162,116,127,117,120,124,125,122,123,126,121,128,119,0,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,116,127,117,120,124,125,122,123,126,121,128,119,0,0,0,0,0,0,0,0,130,168,146,0,130,146,0,0,130,146,146,130,146,146,130,146,146,130,168,146,130,168,146,146,0,130,146,130,168,146,130,168,146,130,146,130,146,146,146,146,146,146,146,130,168,146,130,130,130,168,146,146,0,130,130,130,146,146,146,130,146,130,146,130,130,146,130,146,130,130,130,168,146,130,130,130,168,146,130,130,146,130,146,130,146,130,130,168,146,130,168,168,130,146,168,130,146,130,0,146,146,146,0,146,146,146,146,168,130,130,130,130,0,130,168,146,130,168,146,130,146,130,146,130,168,146,130,146,130,168,146,0,0,130,146,0,146,0,0,0,0,0,0,0,133,133,0,0,0,132,170,171,133,172,167,173,132,170,171,133,172,167,173,132,170,171,133,0,132,170,171,133,132,170,171,133,0,0,172,167,173,132,170,171,133,172,167,173,132,170,171,133,166,0,0,172,167,173,132,170,171,133,172,167,173,132,170,171,133,172,0,172,167,172,167,173,132,170,171,133,133,172,167,173,132,170,171,133,132,171,133,132,171,133,379,172,172,167,167,173,379,379,379,172,167,167,173,0,0,0,172,167,173,132,171,133,170,166,132,170,171,133,172,167,173,132,170,171,133,172,167,173,132,170,171,133,172,167,173,132,170,171,133,133,133,0,0,129,129,169,129,169,129,129,129,129,169,129,129,129,169,169,169,129,129,129,129,129,129,169,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,169,129,169,129,169,129,0,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,380,0,0,0,0,0,0,0,0,0,380,380,0,0,0,0,0,380,380,0,0,380,380,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,383,384,385,386,387,0,0,388,0,0,389,0,0,390,391,392,0,393,394,395,396,0,397,0,0,398,399,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,189,189,0,0,189,189,0,0,0,0,0,0,189,0,0,0,0,0,0,189,189,0,189,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,189,189,189,0,0,0,0,0,0,0,0,0,189,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0,0,402,402,0,403,0,403,0,0,0,403,0,403,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,110,200,110,0,110,110,204,110,110,203,200,110,110,110,0,200,110,200,110,110,110,110,201,110,201,110,201,110,201,110,0,110,0,200,110,200,110,200,110,200,110,200,110,0,195,195,204,195,200,110,0,200,0,0,0,195,203,200,110,110,110,0,110,201,110,201,110,201,110,201,110,200,110,0,200,110,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,114,202,114,200,201,202,110,203,195,204,200,114,200,201,202,110,203,195,204,202,202,114,200,201,202,110,203,195,204,114,200,201,202,202,110,110,110,203,195,204,0,114,200,201,110,203,195,204,114,200,201,202,110,203,195,204,203,114,203,114,202,114,114,203,110,114,200,201,202,110,203,195,204,110,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,200,201,202,110,203,195,204,114,202,0,131,131,131,131,131,131,131,0,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,0,0,0,0,219,216,217,218,219,216,217,218,216,217,218,216,217,218,0,0,0,219,216,217,218,219,216,217,218,0,0,219,216,217,218,0,219,219,216,217,218,219,216,217,218,219,219,216,217,218,0,0,0,0,0,0,0,0,220,221,0,220,221,220,221,220,221,220,221,220,220,220,221,220,221,220,221,220,221,220,221,221,0,220,221,220,221,220,221,220,221,0,0,210,0,0,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,0,227,0,0,0,210,210,227,222,223,222,224,227,225,210,222,223,224,227,225,210,222,223,222,223,222,223,0,210,222,223,224,227,225,210,222,223,224,224,227,225,210,222,223,224,224,225,222,223,225,224,225,224,225,224,225,0,0,0,0,224,225,222,223,224,222,222,223,224,227,225,210,222,223,224,227,225,210,222,223,224,227,225,210,222,223,227,223,404,405,405,404,406,406,407,408,404,404,0,0,228,0,0,0,228,228,229,230,231,228,229,230,231,228,229,228,229,228,229,229,232,0,228,229,228,229,0,230,231,228,229,230,231,228,229,229,229,229,231,228,230,231,228,229,230,231,230,231,0,231,230,231,0,228,229,230,231,228,229,231,230,231,228,229,231,230,231,228,229,0,230,231,0,237,237,237,237,237,237,237,237,237,237,237,237,0,0,232,238,232,238,232,232,232,232,232,232,232,232,238,232,232,238,232,238,238,238,238,238,232,238,232,238,232,238,232,0,0,0,0,241,0,0,0,241,0,0,0,0,0,0,0,0,0,252,241,239,240,242,243,244,245,246,247,248,249,250,251,252,253,239,240,244,245,246,241,241,239,240,242,243,244,245,246,247,248,249,250,251,252,239,240,242,243,244,245,246,247,248,249,250,251,252,241,252,252,0,241,0,241,241,252,241,239,240,242,243,244,245,246,247,248,249,250,251,252,241,241,239,240,242,243,244,245,246,247,248,249,250,251,252,239,240,242,243,244,245,246,247,248,249,250,251,252,241,241,241,251,252,241,243,246,253,246,241,241,241,239,240,242,243,244,245,246,247,248,249,250,241,241,241,241,252,239,240,242,243,244,245,246,247,248,249,250,251,252,239,240,242,243,244,245,246,247,248,249,250,251,252,239,240,242,243,244,245,246,247,248,249,250,251,252,0,0,241,0,0,241,0,254,241,254,241,241,255,254,255,254,241,254,254,241,241,241,254,241,255,254,241,241,254,255,254,255,255,241,241,241,255,254,241,255,241,241,241,241,241,241,241,254,255,254,255,254,255,254,0,0,0,0,302,270,272,302,0,0,0,282,0,270,272,270,272,0,282,302,270,272,241,409,0,207,207,0,0,261,302,302,0,294,0,272,302,272,302,272,272,302,270,272,207,241,409,270,272,271,273,271,269,269,0,269,0,0,207,0,0,0,0,0,0,0,0,273,0,0,294,0,0,0,0,261,0,270,273,0,270,272,272,270,272,272,272,272,272,272,270,272,270,268,268,207,207,256,266,267,268,269,270,271,272,273,0,0,0,241,409,263,264,265,241,241,266,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,241,256,207,256,266,267,268,269,270,271,272,273,207,256,266,267,268,269,270,271,272,273,256,256,0,258,267,256,267,256,241,0,0,258,256,0,256,266,256,266,269,270,271,272,273,269,270,271,272,273,0,256,256,241,241,207,207,256,266,267,268,269,270,271,261,265,272,273,280,241,263,264,290,207,207,207,207,207,207,207,207,256,266,267,268,269,269,270,271,261,265,272,296,298,299,300,273,280,241,241,409,263,264,265,0,0,0,0,0,256,269,270,271,272,256,0,0,0,0,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,263,264,290,290,296,298,299,300,256,258,280,241,241,241,256,0,280,263,264,290,256,266,267,265,296,298,299,300,280,290,241,290,296,298,299,300,241,267,300,258,256,268,266,256,241,207,0,0,0,0,0,0,0,258,0,298,258,241,299,241,241,0,256,290,241,241,0,207,256,266,267,268,269,270,271,272,273,207,267,263,264,290,207,256,266,267,268,269,270,270,271,271,261,265,272,272,296,298,299,300,273,280,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,263,264,290,207,256,266,267,268,269,270,271,261,265,272,296,298,299,300,273,280,256,258,410,410,410,410,411,412,411,412,0,0,0,0,307,307,306,297,306,297,307,308,306,297,307,308,306,297,306,297,0,306,297,307,308,306,297,306,297,307,308,306,297,307,307,308,0,306,297,306,297,307,308,306,297,308,308,306,308,297,0,0,297,306,297,306,297,306,297,307,308,306,297,307,308,306,297,307,308,0,294,0,0,294,0,258,258,0,316,258,258,0,0,258,258,316,258,410,410,410,410,0,309,309,0,309,309,309,309,309,309,309,309,309,309,309,313,302,319,0,302,313,0,0,0,0,282,281,313,313,313,0,282,281,302,0,0,0,241,0,0,0,0,0,302,302,294,319,0,302,302,302,241,0,315,315,319,319,319,0,0,0,0,313,313,315,294,313,313,0,0,0,319,315,0,319,324,324,0,0,319,0,316,293,317,258,318,319,320,321,322,313,302,323,294,324,315,312,241,310,311,241,241,0,0,0,0,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,282,241,0,294,316,293,317,258,318,319,320,321,322,313,302,323,294,324,315,312,316,293,317,258,318,319,320,321,322,313,302,323,294,324,315,312,316,317,258,317,258,318,0,326,326,312,320,321,322,241,317,258,312,320,321,322,317,327,316,293,317,319,320,321,322,313,302,323,294,324,315,312,316,293,317,319,320,321,322,313,302,323,324,312,0,318,241,241,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,315,312,317,241,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,294,294,294,241,241,310,311,294,0,316,293,317,319,320,321,322,313,302,323,324,326,323,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,310,327,327,314,334,258,281,316,258,317,258,315,241,241,241,293,293,335,318,294,323,310,314,311,316,317,318,326,310,241,314,334,241,317,258,0,326,327,335,327,334,335,316,317,335,335,335,241,293,316,316,317,317,323,0,317,258,258,327,335,317,258,326,326,241,314,311,241,241,0,0,335,326,316,316,317,317,241,241,0,0,316,293,317,258,318,319,320,321,322,313,302,323,294,324,315,312,0,0,0,0,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,313,302,302,323,294,324,327,334,335,315,312,318,294,258,294,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,320,321,322,327,334,335,310,314,311,316,293,317,258,318,326,282,281,319,320,321,322,313,302,323,294,324,327,334,335,315,312,326,316,317,258,312,327,0,0,0,312,316,317,316,317,410,410,410,410,0,0,0,0,0,145,142,145,142,145,142,145,142,142,145,145,142,145,142,145,142,142,145,142,145,145,142,145,142,145,145,142,142,142,145,142,145,142,142,145,142,145,142,145,142,142,145,142,145,142,145,145,142,145,145,142,142,145,142,145,142,145,142,145,145,145,145,145,145,142,142,142,142,145,145,145,142,145,145,145,142,145,0,0,0,0,0,0,0,0,0,0,0,0,0,341,184,342,343,187,344,345,346,347,348,349,350,135,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,135,341,184,342,343,187,344,345,346,347,348,349,350,346,135,341,184,342,343,187,344,345,346,347,348,349,350,184,342,343,187,346,349,341,184,342,343,187,344,345,346,347,348,349,350,341,184,184,342,342,343,343,187,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,135,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,0,184,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,344,345,346,347,348,349,350,350,341,184,342,343,187,344,345,346,347,348,349,350,341,184,342,343,187,349,350,344,345,347,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,205,192,205,205,205,72,0,0,205,205,205,205,205,205,205,0,0,74,0,205,205,205,205,190,186,192,357,205,174,359,360,190,186,192,357,205,174,359,360,190,186,192,357,205,190,186,192,357,205,190,186,192,357,205,357,190,186,0,190,186,192,357,190,186,192,357,205,190,186,357,205,0,190,190,186,186,192,192,357,357,205,174,359,360,190,186,192,357,205,199,74,190,186,192,357,192,192,74,190,186,192,357,166,199,357,190,186,357,205,0,174,359,360,190,186,192,357,205,174,359,360,190,186,192,357,190,186,0,190,186,357,174,359,360,190,186,174,359,360,186,357,199,199,0,174,359,360,74,190,186,192,357,192,192,74,190,186,192,357,166,190,186,192,357,205,190,186,192,357,199,174,359,360,190,186,192,357,205,174,359,360,190,186,192,357,205,174,359,360,190,186,192,357,205,413,0,413,413,413,0,0,177,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,413,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,0,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,0,0,0,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,414,413,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,413,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,0,0,0,0,0,0,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,0,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,371,413,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,371,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,361,362,363,364,365,366,367,368,369,370,372,373,374,371,375,0,0,0,0,0,0,0],"f":[0,0,0,0,[1],[1],[[[3,[2,2]],4],5],[[[3,[2,2]],4],5],0,[[[3,[[7,[6]],[7,[6]]]]],6],[[[3,[[7,[8]],[7,[8]]]]],8],[[[3,[[7,[9]],[7,[9]]]]],9],[[[3,[7,7]]]],[3,3],[[[3,[[7,[10]],[7,[10]]]]],10],[[[3,[[7,[11]],[7,[11]]]]],11],[[[12,[3]]],[[3,[12,12]]]],[[[12,[3]]],[[3,[12,12]]]],[[[3,[[13,[11]],[13,[11]]]]],11],[3,3],[[[3,[[13,[9]],[13,[9]]]]],9],[[[3,[[13,[10]],[13,[10]]]]],10],[[[3,[[13,[8]],[13,[8]]]]],8],[[[3,[[13,[6]],[13,[6]]]]],6],[[[3,[13,13]]]],0,[[]],[[]],[[]],[[]],0,[[[3,[14,14]]],[[15,[14]]]],0,[[[3,[16,16]]],[[3,[16,16]]]],[[[17,[16,16,16]]],[[17,[16,16,16]]]],[[[3,[16,16]],[3,[16,16]]]],[[]],[[]],[[[3,[18,18]],[3,[18,18]]],19],[[[3,[2,2]]],20],0,[[[3,[21,21]],22]],[[[3,[2,2]]],22],0,[[],[[17,[23]]]],[[[3,[24,24]]]],[17],[[[3,[25,25]]]],[17],[[[3,[14,14]]],10],[[3,26,26]],[[[3,[27,27]]]],[[3,26,26]],[[[3,[[28,[[28,[[28,[28]]]]]],[28,[[28,[[28,[28]]]]]]]],[3,[[28,[[28,[[28,[28]]]]]],[28,[[28,[[28,[28]]]]]]]]],5],[[[17,[[0,[29,30]],[28,[[28,[[28,[28]]]]]],31]],[17,[[0,[29,30]],[28,[[28,[[28,[28]]]]]],31]]],5],[[],5],[[],5],0,[[[3,[32]],10]],[[[3,[32]],10]],[[[3,[33,33]],34]],[[[17,[[0,[29,30,35]],35,31]],34]],[[[17,[[0,[29,30]],31]],34]],[[[3,[36,36]]],[[36,[3]]]],[3],[[[3,[15,15]]],[[15,[3]]]],[[[3,[36,36]]],[[36,[3]]]],[3],0,[[[3,[21,21]]],[[36,[[6,[37]],38]]]],[[[3,[2,2]],4],15],[[[3,[2,2]],4],15],[3,3],[[[3,[39,39]]],[[36,[38]]]],[[[3,[32,32]],40],[[36,[41]]]],[[[3,[42,42]],40],[[36,[41]]]],[[[17,[32,32,31]],40],[[36,[41]]]],[[[3,[2,2]],4]],[[[3,[2,2]],4]],[36,3],[[]],[[]],[[[43,[23]]],[[17,[23]]]],[44,[[17,[[0,[29,30]],23]]]],[34,[[17,[[0,[29,30]],23]]]],[[[17,[[46,[[0,[30,29,45]]]],[0,[30,29]],31]],[0,[30,29,45]]],15],[[[17,[[46,[[0,[30,29,45]]]],[0,[30,29]],31]],[0,[30,29,45]]],15],[[[17,[[46,[[0,[30,29,45]]]],[0,[30,29]],31]],[0,[30,29,45]]],15],[[[3,[30,30]],47]],[[[17,[[0,[29,30,[46,[[0,[29,30,45]]]]]],31]],[0,[29,30,45]]]],[[[17,[[0,[30,29]],31]],[0,[30,29]]],15],[3,36],[[]],[[]],[[[17,[23]]],[[43,[23]]]],[[]],[3],[[[3,[34,34]]],3],[[]],[17],[17],[17],[[[17,[[0,[30,29]],31]]],[[48,[[0,[30,29]]]]]],[[[17,[[0,[30,29]],31]]],[[49,[[0,[30,29]]]]]],0,[3,5],[3,5],[[[3,[2,2]]],15],[3,15],[[3,26],3],[3],[[[3,[50]]],50],[[3,26]],[[[3,[51,51]]],22],[[3,26],3],[[3,26,26],3],[[3,26,26],3],[[3,26],3],[[3,26],3],0,[[],[[17,[23]]]],[[[3,[2,2]]],15],[[[3,[52,52]]],15],[[[3,[2,2]],22],15],0,[[[3,[[53,[[53,[[53,[53]]]]]],[53,[[53,[[53,[53]]]]]]]],[3,[[53,[[53,[[53,[53]]]]]],[53,[[53,[[53,[53]]]]]]]]],[[15,[19]]]],[[[3,[2,2]],4]],[[[12,[[3,[54,54]]]],55],56],[[[3,[2,2]],4],[[15,[22]]]],[57],[[[3,[58,58]],[6,[37]]],[[36,[22,38]]]],[[[3,[58,58]],[6,[37]]],[[36,[38]]]],[[[3,[21,21]],59],[[36,[22,38]]]],[[[3,[58,58]],[61,[37,60]]],[[36,[22,38]]]],[[[3,[58,58]],59],[[36,[22,38]]]],[[[3,[21,21]],37,[61,[37,60]]],[[36,[22,38]]]],[[],[[36,[62,38]]]],[[[17,[[46,[[0,[30,29,45]]]],[0,[30,29]],31]],[0,[30,29,45]]],15],[[[3,[52,52]],4],15],[[[3,[52,52]],4]],[3,15],[[3,26],3],[3],[[[3,[50]]],50],[[3,26]],0,[[[3,[63,63]],64],[[36,[65,38]]]],[[[3,[2,2]]]],[[[3,[14,14]]],[[15,[14]]]],0,[[]],[[]],[[],59],0,[[],36],[[],36],[[],36],[[],36],[[12,55],56],[[],66],[[],66],0,[[[3,[32]]]],[[[3,[32]]]],0,[22,[[17,[23]]]],[[22,31],[[17,[31]]]],[31,[[17,[31]]]],[[[3,[39,39]],[6,[37]]],[[36,[22,38]]]],[[[3,[39,39]],[6,[37]]],[[36,[38]]]],[[[3,[39,39]],67],[[36,[38]]]],[62,[[36,[22,38]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[[70,[[0,[68,69]]]],[70,[[0,[68,69]]]]],[[70,[[0,[68,69]]]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[68,69]]]],[0,[68,69]]],[[70,[[0,[68,69]]]]]],[[],5],[[],5],[[[73,[72]],26]],[[[70,[74]],26]],[[[75,[72]],26]],[[[76,[72]],26]],[[[77,[74]],78]],[[79,78]],[[[80,[72]]],[[82,[81]]]],[79,[[82,[81]]]],[[[84,[83]]],[[82,[81]]]],[85,[[82,[81]]]],[86,[[82,[81]]]],[[[87,[72]]],[[82,[81]]]],[88,[[82,[81]]]],[89,[[82,[81]]]],[[[70,[74]]],[[82,[81]]]],[90,[[82,[81]]]],[91,[[82,[81]]]],[[[76,[72]]],[[82,[81]]]],[[],92],[[],92],[[[93,[72]]],92],[[[73,[72]]],92],[[[80,[72]]],92],[94,92],[79,92],[[[96,[83,95]]],92],[[[84,[83]]],92],[97,92],[85,92],[[[98,[95]]],92],[86,92],[[[99,[72,95]]],92],[[[87,[72]]],92],[88,92],[89,92],[100,92],[[[77,[74]]],92],[[[70,[74]]],92],[101,92],[90,92],[91,92],[[[75,[72]]],92],[[[102,[72]]],92],[[[76,[72]]],92],[[],92],[[[80,[72]]],92],[79,92],[[[84,[83]]],92],[85,92],[86,92],[[[87,[72]]],92],[88,92],[89,92],[[[70,[74]]],92],[90,92],[91,92],[[[76,[72]]],92],[[],[[82,[81]]]],[[[93,[72]]],[[82,[81]]]],[[[73,[72]]],[[82,[81]]]],[94,[[82,[81]]]],[[[96,[83,95]]],[[82,[81]]]],[97,[[82,[81]]]],[[[98,[95]]],[[82,[81]]]],[[[99,[72,95]]],[[82,[81]]]],[[[77,[74]]],[[82,[81]]]],[101,[[82,[81]]]],[[[75,[72]]],[[82,[81]]]],[[[102,[72]]],[[82,[81]]]],[[],[[103,[81]]]],[[[93,[72]]],[[103,[81]]]],[[[73,[72]]],[[103,[81]]]],[94,[[103,[81]]]],[[[96,[83,95]]],[[103,[81]]]],[97,[[103,[81]]]],[[[98,[95]]],[[103,[81]]]],[[[99,[72,95]]],[[103,[81]]]],[100,[[103,[81]]]],[[[77,[74]]],[[103,[81]]]],[101,[[103,[81]]]],[[[75,[72]]],[[103,[81]]]],[[[102,[72]]],[[103,[81]]]],[[],92],[[[93,[72]]],92],[[[73,[72]]],92],[94,92],[[[96,[83,95]]],92],[97,92],[[[98,[95]]],92],[[[99,[72,95]]],92],[100,92],[[[77,[74]]],92],[101,92],[[[75,[72]]],92],[[[102,[72]]],92],[81,81],[[],22],[[],22],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[80,[72]]],[[103,[81]]]],[79,[[103,[81]]]],[[[84,[83]]],[[103,[81]]]],[85,[[103,[81]]]],[86,[[103,[81]]]],[[[87,[72]]],[[103,[81]]]],[88,[[103,[81]]]],[89,[[103,[81]]]],[[[70,[74]]],[[103,[81]]]],[90,[[103,[81]]]],[91,[[103,[81]]]],[[[76,[72]]],[[103,[81]]]],[[[93,[72]]],22],[97,22],[[[77,[74]]],22],[[[75,[72]]],22],[[[102,[72]]],22],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[68,104]]]],[0,[68,104]]],[[70,[[0,[68,104]]]]]],[[[70,[[0,[68,104]]]],[70,[[0,[68,104]]]]],[[70,[[0,[68,104]]]]]],[[[70,[[0,[68,105]]]],[70,[[0,[68,105]]]]],[[70,[[0,[68,105]]]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[68,105]]]],[0,[68,105]]],[[70,[[0,[68,105]]]]]],[[[70,[[0,[68,106]]]],[70,[[0,[68,106]]]]],[[70,[[0,[68,106]]]]]],[[[70,[[0,[68,106]]]],[0,[68,106]]],[[70,[[0,[68,106]]]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[68,107]]]],[0,[68,107]]],[[70,[[0,[68,107]]]]]],[[[70,[[0,[68,107]]]],[70,[[0,[68,107]]]]],[[70,[[0,[68,107]]]]]],[[[70,[[0,[68,108]]]],[0,[68,108]]],[[70,[[0,[68,108]]]]]],[[[70,[[0,[68,108]]]],[70,[[0,[68,108]]]]],[[70,[[0,[68,108]]]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[81,[[103,[81]]]],[[[93,[[0,[16,72]]]]],[[93,[[0,[16,72]]]]]],[[[73,[[0,[16,72]]]]],[[73,[[0,[16,72]]]]]],[[[80,[[0,[16,72]]]]],[[80,[[0,[16,72]]]]]],[94,94],[79,79],[[[84,[[0,[16,83]]]]],[[84,[[0,[16,83]]]]]],[97,97],[85,85],[[[98,[[0,[16,95]]]]],[[98,[[0,[16,95]]]]]],[86,86],[[[99,[[0,[16,72]],[0,[16,95]]]]],[[99,[[0,[16,72]],[0,[16,95]]]]]],[[[87,[[0,[16,72]]]]],[[87,[[0,[16,72]]]]]],[88,88],[89,89],[[[77,[[0,[16,74]]]]],[[77,[[0,[16,74]]]]]],[[[70,[[0,[16,74]]]]],[[70,[[0,[16,74]]]]]],[90,90],[91,91],[[[75,[[0,[16,72]]]]],[[75,[[0,[16,72]]]]]],[[[102,[[0,[16,72]]]]],[[102,[[0,[16,72]]]]]],[[[76,[[0,[16,72]]]]],[[76,[[0,[16,72]]]]]],[[[109,[[0,[16,0]]]]],[[109,[[0,[16,0]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],110],[[],110],[[[93,[72]]],110],[[[73,[72]]],110],[[[80,[72]]],110],[[[80,[72]]],110],[94,110],[79,110],[79,110],[[[96,[83,95]]],110],[[[84,[83]]],110],[[[84,[83]]],110],[97,110],[85,110],[[[98,[95]]],110],[86,110],[[[99,[72,95]]],110],[[[87,[72]]],110],[88,110],[89,110],[100,110],[[[77,[74]]],110],[[[70,[74]]],110],[[[70,[74]]],110],[101,110],[90,110],[91,110],[[[75,[72]]],110],[[[102,[72]]],110],[[[76,[72]]],110],[[[76,[72]]],110],[[],[[93,[72]]]],[[],[[73,[72]]]],[[],94],[[],[[96,[83,[0,[95,50]]]]]],[[],[[99,[72,[0,[95,50]]]]]],[[],[[77,[74]]]],[[],[[70,[74]]]],[[],[[75,[72]]]],[[],[[102,[72]]]],[[],[[76,[72]]]],[[],110],[[],110],[[],110],[[],110],[[110,22],110],[110,110],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[68,111]]]],[70,[[0,[68,111]]]]],[[70,[[0,[68,111]]]]]],[[[70,[[0,[68,111,112]]]],[0,[68,111,112]]],[[70,[[0,[68,111,112]]]]]],[[81,[76,[72]]],5],[[81,[80,[72]]],5],[[81,[70,[74]]],5],[[81,81],5],[[[73,[72]],[73,[72]]],5],[[[80,[72]],[80,[72]]],5],[[[80,[72]],81],5],[[94,94],5],[[79,79],5],[[79,81],5],[[[84,[83]],[84,[83]]],5],[[[84,[83]],81],5],[[97,97],5],[[85,85],5],[[85,81],5],[[86,86],5],[[86,81],5],[[[87,[72]],[87,[72]]],5],[[[87,[72]],81],5],[[88,88],5],[[88,81],5],[[89,81],5],[[89,89],5],[[[77,[74]],[77,[74]]],5],[[[70,[74]],[70,[74]]],5],[[[70,[74]],81],5],[[90,90],5],[[90,81],5],[[91,91],5],[[91,81],5],[[[75,[72]],[75,[72]]],5],[[[76,[72]],81],5],[[[76,[72]],[76,[72]]],5],[[81,81],5],[[[93,[72]],34]],[[[73,[72]],34]],[[94,34]],[[[77,[74]],34]],[[[75,[72]],34]],[[[102,[72]],34]],[[[77,[74]],22,[15,[74]]]],[[[77,[74]],[6,[74]]]],[[[93,[72]],113]],[[[73,[72]],113]],[[94,113]],[[[77,[74]],113]],[[[75,[72]],113]],[[[102,[72]],113]],[[[93,[72]],2]],[[[73,[72]],2]],[[94,2]],[[[77,[74]],2]],[[[75,[72]],2]],[[[102,[72]],2]],[[[73,[72]],113]],[[94,113]],[[[77,[74]],113]],[[[75,[72]],113]],[[[73,[72]],2]],[[94,2]],[[[77,[74]],2]],[[[75,[72]],2]],[[[73,[72]],2]],[[[75,[72]],2]],[88,[[103,[81]]]],[90,[[6,[114]]]],[91,[[61,[[103,[81]]]]]],[[81,40],115],[[[93,[[0,[32,72]]]],40],115],[[[73,[[0,[32,72]]]],40],115],[[[80,[72]],40],115],[[94,40],115],[[79,40],115],[[[96,[[0,[32,83]],[0,[32,95]]]],40],115],[[[84,[83]],40],115],[[97,40],115],[[85,40],115],[[[98,[[0,[32,95]]]],40],115],[[86,40],115],[[[99,[[0,[32,72]],[0,[32,95]]]],40],115],[[[87,[72]],40],115],[[88,40],115],[[89,40],115],[[100,40],115],[[[77,[[0,[32,74]]]],40],115],[[[70,[74]],40],115],[[101,40],115],[[90,40],115],[[91,40],115],[[[75,[[0,[32,72]]]],40],115],[[[102,[[0,[32,72]]]],40],115],[[[76,[72]],40],115],[[[109,[[0,[32,0]]]],40],115],[[]],[[]],[[[13,[[6,[[15,[[13,[[6,[37]]]]]]]]]]],[[73,[72]]]],[[[93,[72]]],[[73,[72]]]],[[]],[[[73,[72]]],[[80,[72]]]],[[[116,[72]]],[[80,[72]]]],[[[93,[72]]],[[80,[72]]]],[[[13,[[6,[[15,[[13,[[6,[37]]]]]]]]]]],[[80,[72]]]],[[[13,[[6,[[15,[5]]]]]]],94],[[]],[[]],[94,79],[[[13,[[6,[[15,[5]]]]]]],79],[117,79],[118],[[]],[95,[[96,[83,95]]]],[[[119,[83]]],[[84,[83]]]],[[[96,[83,95]]],[[84,[83]]]],[[]],[[[13,[[6,[[15,[[44,[37]]]]]]]]],97],[[]],[97,85],[120,85],[[]],[[[13,[[6,[[15,[[44,[37]]]]]]]]],85],[[]],[[[98,[95]]],86],[[]],[121,86],[[]],[[[99,[72,95]]],[[87,[72]]]],[[]],[[[122,[72]]],[[87,[72]]]],[[]],[123,88],[[]],[124,89],[100,89],[[]],[110,[[77,[74]]]],[[[13,[[6,[[15,[74]]]]]]],[[77,[74]]]],[[]],[[[77,[74]]],[[70,[74]]]],[[]],[[[13,[[6,[[15,[74]]]]]]],[[70,[74]]]],[[[125,[74]]],[[70,[74]]]],[[]],[[]],[101,90],[126,90],[127,91],[[]],[[[102,[72]]],[[75,[72]]]],[[[13,[[6,[[15,[[13,[10]]]]]]]]],[[75,[72]]]],[[]],[[]],[[[102,[72]]],[[76,[72]]]],[[]],[[[75,[72]]],[[76,[72]]]],[[[128,[72]]],[[76,[72]]]],[[[13,[[6,[[15,[[13,[10]]]]]]]]],[[76,[72]]]],[[]],[[110,[129,[74]],[15,[130]]],[[36,[[70,[74]],131]]]],[[110,130,[15,[130]]],79],[[110,[129,[74]],[15,[130]]],[[70,[74]]]],[34,[[93,[72]]]],[34,[[73,[72]]]],[34,[[80,[72]]]],[34,94],[34,79],[[34,22],85],[34,[[77,[74]]]],[34,[[70,[74]]]],[34,[[75,[72]]]],[34,[[102,[72]]]],[34,[[76,[72]]]],[2,[[73,[72]]]],[2,[[80,[72]]]],[2,[[75,[72]]]],[2,[[76,[72]]]],[[[13,[[6,[[13,[[6,[37]]]]]]]]],[[80,[72]]]],[[[13,[[6,[5]]]]],94],[[[13,[[6,[5]]]]],79],[[[13,[[6,[[44,[37]]]]]]],85],[[[13,[[6,[74]]]]],[[77,[74]]]],[[[13,[[6,[74]]]]],[[70,[74]]]],[[[13,[[6,[[13,[10]]]]]]],[[76,[72]]]],[113,[[93,[72]]]],[113,[[73,[72]]]],[113,[[80,[72]]]],[113,94],[113,79],[113,[[77,[74]]]],[113,[[70,[74]]]],[113,[[75,[72]]]],[113,[[102,[72]]]],[113,[[76,[72]]]],[2,[[93,[72]]]],[2,[[73,[72]]]],[2,[[80,[72]]]],[2,94],[2,79],[2,[[77,[74]]]],[2,[[70,[74]]]],[2,[[75,[72]]]],[2,[[102,[72]]]],[2,[[76,[72]]]],[113,[[73,[72]]]],[113,[[80,[72]]]],[113,94],[113,79],[113,[[77,[74]]]],[113,[[70,[74]]]],[113,[[75,[72]]]],[113,[[76,[72]]]],[2,[[73,[72]]]],[2,94],[2,79],[2,[[77,[74]]]],[2,[[70,[74]]]],[2,[[75,[72]]]],[34,[[70,[74]]]],[[[61,[74]]],[[77,[74]]]],[[[61,[74]]],[[70,[74]]]],[[[80,[72]],22],[[15,[[6,[37]]]]]],[[79,22],[[15,[5]]]],[[85,22],[[15,[[6,[37]]]]]],[[86,22],[[15,[[103,[81]]]]]],[[[70,[74]],22],[[15,[74]]]],[[[76,[72]],22],[[15,[10]]]],[110,114],[110,110],[[81,10],[[103,[78]]]],[110,[[6,[114]]]],[110,[[6,[114]]]],[[[70,[74]]],[[15,[[6,[74]]]]]],[[81,10],[[103,[78]]]],0,[[91,22]],[[91,22]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[73,[72]]],[[82,[81]]]],[94,[[82,[81]]]],[[[96,[83,95]]],[[82,[81]]]],[[[99,[72,95]]],[[82,[81]]]],[[[77,[74]]],[[82,[81]]]],[101,[[82,[81]]]],[[[75,[72]]],[[82,[81]]]],[[[96,[83,95]]],[[103,[81]]]],[[[99,[72,95]]],[[103,[81]]]],[90],[[[75,[72]]]],[[[93,[72]]]],[[[80,[72]]]],[79],[[[77,[74]]]],[[[70,[74]]]],[101],[[[102,[72]]]],[[[76,[72]]]],[[[93,[72]]]],[[[80,[72]]]],[94],[79],[79],[[[84,[83]]]],[97],[85],[86],[[[87,[72]]]],[88],[[[70,[74]]]],[[[70,[74]]]],[90],[91],[[[75,[72]]]],[[[102,[72]]]],[[[76,[72]]]],[[]],[[[80,[72]]],[[3,[[80,[72]],[73,[72]]]]]],[79,[[3,[79,94]]]],[[[70,[74]]],[[3,[[70,[74]],[77,[74]]]]]],[[[76,[72]]],[[3,[[76,[72]],[75,[72]]]]]],[[],5],[[],5],[22,5],[[[84,[83]]],5],[110,5],[22,5],[22,5],[[[93,[72]]],[[109,[[93,[72]]]]]],[[[73,[72]]],[[133,[[6,[37]],[109,[[93,[72]]]],132]]]],[[[80,[72]]],[[133,[[6,[37]],[134,[72]],132]]]],[94,[[133,[5,132,132]]]],[79,[[133,[5,132,132]]]],[[[84,[83]]],[[133,[[103,[135]],[0,[83]],132]]]],[97,[[133,[[6,[37]],[136,[37]],132]]]],[85,[[133,[[6,[37]],[136,[37]],132]]]],[86,[[133,[[103,[81]],[109,[86]],132]]]],[[[87,[72]]],[[133,[[103,[81]],[137,[72]],132]]]],[88,[[133,[[103,[81]],0,132]]]],[[[77,[74]]],[[133,[74,[138,[74]],132]]]],[[[70,[74]]],[[133,[74,[138,[74]],132]]]],[90,[[133,[[61,[[103,[135]]]],0,132]]]],0,[[[75,[72]]],[[133,[10,[109,[[102,[72]]]],132]]]],[[[102,[72]]],[[109,[[102,[72]]]]]],[[[76,[72]]],[[133,[10,[139,[72]],132]]]],[[[84,[83]]],[[36,[[133,[[0,[83,0]],132]],131]]]],[97,[[136,[37]]]],[[[84,[83]],22],22],[[[96,[83,95]]],[[77,[83]]]],[[[84,[83]]],[[70,[83]]]],[[[84,[83]]],[[0,[113,16]]]],[[[84,[83]]],[[0,[113,16]]]],[[],22],[[],22],[[[93,[72]]],22],[[[93,[72]]],22],[[[73,[72]]],22],[[[80,[72]]],22],[[[80,[72]]],22],[94,22],[79,22],[79,22],[[[96,[83,95]]],22],[[[84,[83]]],22],[[[84,[83]]],22],[97,22],[97,22],[85,22],[85,22],[[[98,[95]]],22],[[[98,[95]]],22],[86,22],[86,22],[[[99,[72,95]]],22],[[[99,[72,95]]],22],[[[87,[72]]],22],[[[87,[72]]],22],[88,22],[88,22],[89,22],[100,22],[[[77,[74]]],22],[[[70,[74]]],22],[[[70,[74]]],22],[101,22],[90,22],[91,22],[91,22],[[[75,[72]]],22],[[[75,[72]]],22],[[[102,[72]]],22],[[[102,[72]]],22],[[[76,[72]]],22],[[[76,[72]]],22],[[[96,[83,95]]],[[140,[65,83]]]],[[[70,[[0,[68,141]]]],[0,[68,141]]],[[70,[[0,[68,141]]]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[68,141]]]],[70,[[0,[68,141]]]]],[[70,[[0,[68,141]]]]]],[[[98,[95]]],95],[[[99,[72,95]]],95],[101,[[61,[[103,[95]]]]]],[[],[[93,[72]]]],[[],[[73,[72]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[80,[72]]]],[[],94],[[110,130,[15,[130]]],79],[[],[[96,[83,[0,[95,50]]]]]],[22,97],[[110,[129,[37]],[15,[130]]],85],[[95,22],[[98,[95]]]],[[110,[103,[81]],[15,[130]]],86],[[],[[99,[72,[0,[95,50]]]]]],[[110,[142,[72]],[103,[81]],[15,[130]]],[[87,[72]]]],[[110,[142,[143]],[103,[81]],[15,[130]]],88],[[110,22],89],[[110,22],100],[[],[[77,[74]]]],[[110,[129,[74]],[15,[130]]],[[70,[74]]]],[[110,[61,[[103,[95]]]]],101],[[110,[61,[[103,[81]]]],[15,[130]]],90],[[110,[129,[144]],[61,[[103,[81]]]],[15,[[129,[143]]]]],91],[[],[[75,[72]]]],[[],[[102,[72]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[76,[72]]]],0,[110,[[80,[72]]]],[110,79],[110,[[84,[83]]]],[110,85],[110,86],[110,[[87,[72]]]],[110,88],[110,89],[110,[[70,[74]]]],[110,90],[110,91],[110,[[76,[72]]]],[110,[[103,[81]]]],[[95,110,22],[[98,[95]]]],[[95,110,22],[[99,[72,95]]]],[[95,[145,[72]],[15,[146]]],[[99,[72,95]]]],[[110,22],[[80,[72]]]],[[110,22],79],[[110,22],[[84,[83]]]],[[110,22],85],[[110,22],86],[[110,22],[[87,[72]]]],[[110,22],88],[[110,22],89],[[110,22],[[70,[74]]]],[[110,22],90],[[110,22],91],[[110,22],[[76,[72]]]],[[110,22],[[103,[81]]]],[[110,[145,[72]],[61,[37]],[15,[146]]],[[75,[72]]]],[[110,[145,[72]],[61,[37]]],[[102,[72]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[76,[72]]]],[[95,22],[[99,[72,95]]]],[[95,10,5,22],[[98,[95]]]],[[95,10,5],[[99,[72,95]]]],[[[109,[0]]],15],[[[109,[0]]],15],[[[109,[0]],22],15],[[],22],[[],6],[[[93,[72]]],[[145,[72]]]],[[[73,[72]]],[[145,[72]]]],[[[80,[72]]],[[6,[72]]]],[[[80,[72]]],[[142,[72]]]],[[[99,[72,95]]],[[145,[72]]]],[[[87,[72]]],[[142,[72]]]],[88,[[142,[143]]]],[91,[[15,[[129,[143]]]]]],[[[75,[72]]],[[145,[72]]]],[[[102,[72]]],[[145,[72]]]],[[[76,[72]]],[[142,[72]]]],[[[76,[72]]],[[6,[72]]]],0,[[[70,[[0,[68,147]]]],[70,[[0,[68,147]]]]]],[[[70,[[0,[68,147]]]],[0,[68,147]]]],[[[70,[[0,[68,148]]]],[70,[[0,[68,148]]]]]],[[[70,[[0,[68,148]]]],[0,[68,148]]]],[[[70,[[0,[68,149]]]],[0,[68,149]]]],[[[70,[[0,[68,149]]]],[70,[[0,[68,149]]]]]],[[[93,[72]]],[[15,[[61,[37]]]]]],[[[73,[72]]],[[15,[[61,[37]]]]]],[94,[[15,[5]]]],[97,[[15,[[61,[37]]]]]],[[[77,[74]]],[[15,[74]]]],[[[75,[72]]],[[15,[59]]]],[[[102,[72]]],[[15,[59]]]],[[[93,[72]],[13,[[6,[37]]]]]],[[[73,[72]],[15,[[13,[[6,[37]]]]]]]],[[94,[15,[5]]]],[[97,[15,[[13,[[6,[37]]]]]]]],[[[77,[74]],[15,[74]]]],[[101,5]],[[[75,[72]],[15,[[13,[10]]]]]],[[[102,[72]],[13,[10]]]],[[]],[[[93,[72]]]],[[[73,[72]]]],[94],[[[96,[83,95]]]],[[[96,[83,95]]]],[97],[[[98,[95]]]],[[[99,[72,95]]]],[100],[[[77,[74]]]],[101],[[[75,[72]]]],[[[102,[72]]]],[[]],[[[98,[[0,[95,[33,[15]]]]]],[15,[34]]]],[[[98,[95]]]],[[[70,[[0,[68,150,112]]]],[0,[68,150,112]]],[[70,[[0,[68,150,112]]]]]],[[[70,[[0,[68,150]]]],[70,[[0,[68,150]]]]],[[70,[[0,[68,150]]]]]],[22],[[[93,[72]],22]],[[[93,[72]],22,22]],[[[73,[72]],22,22]],[[[73,[72]],22]],[[94,22]],[[94,22]],[[[96,[83,95]],22]],[[[96,[83,95]],22]],[[97,22]],[[97,22]],[[[98,[95]],22]],[[[98,[95]],22]],[[[99,[72,95]],22]],[[[99,[72,95]],22]],[[100,22]],[[[77,[74]],22]],[[[77,[74]],22]],[[101,22]],[[101,22]],[[[75,[72]],22]],[[[75,[72]],22,22]],[[[102,[72]],22]],[[[102,[72]],22,22]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[68,151]]]],[0,[68,151]]],[[70,[[0,[68,151]]]]]],[[[70,[[0,[68,151]]]],[70,[[0,[68,151]]]]],[[70,[[0,[68,151]]]]]],[[[70,[[0,[68,152]]]],[0,[68,152]]],[[70,[[0,[68,152]]]]]],[[[70,[[0,[68,152]]]],[70,[[0,[68,152]]]]],[[70,[[0,[68,152]]]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[68,153]]]],[0,[68,153]]],[[70,[[0,[68,153]]]]]],[[[70,[[0,[68,153]]]],[70,[[0,[68,153]]]]],[[70,[[0,[68,153]]]]]],[[94,22,[15,[5]]]],[[[77,[74]],22,[15,[74]]]],[[[77,[74]],22,[15,[74]]]],[[[73,[72]],[15,[146]]]],[[[80,[72]],[15,[130]]]],[[79,[15,[130]]]],[[[84,[83]],[15,[130]]]],[[85,[15,[130]]]],[[86,[15,[130]]]],[[[87,[72]],[15,[130]]]],[[88,[15,[130]]]],[[[77,[74]],[15,[146]]]],[[[70,[74]],[15,[130]]]],[[90,[15,[130]]]],[[[75,[72]],[15,[146]]]],[[[76,[72]],[15,[130]]]],[[79,130]],[[[77,[74]],[61,[74]]]],[[[70,[74]],[129,[74]]]],[[]],[[[93,[72]]]],[[[93,[72]]]],[[[73,[72]]]],[[[73,[72]]]],[94],[94],[[[96,[83,95]]]],[[[96,[83,95]]]],[97],[97],[[[98,[95]]]],[[[98,[95]]]],[[[99,[72,95]]]],[[[99,[72,95]]]],[100],[[[77,[74]]]],[[[77,[74]]]],[101],[101],[[[75,[72]]]],[[[75,[72]]]],[[[102,[72]]]],[[[102,[72]]]],[97,22],[85,22],[[[98,[95]]],22],[86,22],[[[109,[0]]]],[[22,22]],[[[80,[72]],22,22]],[[[80,[72]],22,22]],[[79,22,22]],[[79,22,22]],[[[84,[83]],22,22]],[[[84,[83]],22,22]],[[85,22,22]],[[85,22,22]],[[86,22,22]],[[86,22,22]],[[[87,[72]],22,22]],[[[87,[72]],22,22]],[[88,22,22]],[[88,22,22]],[[89,22,22]],[[89,22,22]],[[[70,[74]],22,22]],[[[70,[74]],22,22]],[[90,22,22]],[[90,22,22]],[[91,22,22]],[[91,22,22]],[[[76,[72]],22,22]],[[[76,[72]],22,22]],[[22,22]],[[[80,[72]],22,22]],[[[80,[72]],22,22]],[[79,22,22]],[[79,22,22]],[[[84,[83]],22,22]],[[[84,[83]],22,22]],[[85,22,22]],[[85,22,22]],[[86,22,22]],[[86,22,22]],[[[87,[72]],22,22]],[[[87,[72]],22,22]],[[88,22,22]],[[88,22,22]],[[89,22,22]],[[89,22,22]],[[[70,[74]],22,22]],[[[70,[74]],22,22]],[[90,22,22]],[[90,22,22]],[[91,22,22]],[[91,22,22]],[[[76,[72]],22,22]],[[[76,[72]],22,22]],[[22,22],[[103,[81]]]],[[[80,[72]],22,22],[[80,[72]]]],[[79,22,22],79],[[[84,[83]],22,22],[[84,[83]]]],[[85,22,22],85],[[86,22,22],86],[[[87,[72]],22,22],[[87,[72]]]],[[88,22,22],88],[[89,22,22],89],[[[70,[74]],22,22],[[70,[74]]]],[[90,22,22],90],[[91,22,22],91],[[[76,[72]],22,22],[[76,[72]]]],[[22,22],[[103,[81]]]],[[[80,[72]],22,22],[[80,[72]]]],[[79,22,22],79],[[[84,[83]],22,22],[[84,[83]]]],[[85,22,22],85],[[86,22,22],86],[[[87,[72]],22,22],[[87,[72]]]],[[88,22,22],88],[[89,22,22],89],[[[70,[74]],22,22],[[70,[74]]]],[[90,22,22],90],[[91,22,22],91],[[[76,[72]],22,22],[[76,[72]]]],[[[70,[[0,[68,154]]]],[0,[68,154]]],[[70,[[0,[68,154]]]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[68,154]]]],[70,[[0,[68,154]]]]],[[70,[[0,[68,154]]]]]],[[85,110],85],[[[77,[74]],110],[[77,[74]]]],[[[70,[74]],110],[[70,[74]]]],[[],[[103,[81]]]],[[[80,[72]]],[[103,[81]]]],[79,[[103,[81]]]],[[[84,[83]]],[[103,[81]]]],[85,[[103,[81]]]],[86,[[103,[81]]]],[[[87,[72]]],[[103,[81]]]],[88,[[103,[81]]]],[89,[[103,[81]]]],[[[70,[74]]],[[103,[81]]]],[90,[[103,[81]]]],[91,[[103,[81]]]],[[[76,[72]]],[[103,[81]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[34,155],[[[93,[72]],34],155],[[[73,[72]],34],155],[[94,34],[[36,[131]]]],[[[96,[83,[0,[95,[156,[[15,[30]]]]]]]],34],155],[[[98,[[0,[95,[156,[15]]]]]],34],155],[[[99,[72,[0,[95,[156,[15]]]]]],34],155],[[[77,[74]],34],[[36,[131]]]],[[[75,[72]],34],155],[[[102,[72]],34],155],[[[99,[72,95]],[0,[113,16]]],155],[[],155],[[[93,[72]],[93,[72]]],155],[[[73,[72]],[73,[72]]],155],[[94,94],[[36,[131]]]],[[97,97],[[36,[131]]]],[[[98,[[0,[95,157]]]],[98,[[0,[95,157]]]]],155],[[[99,[72,[0,[95,157]]]],[99,[72,[0,[95,157]]]]],155],[[[77,[74]],[77,[74]]],[[36,[131]]]],[[[75,[72]],[75,[72]]],155],[[[102,[72]],[102,[72]]],155],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[34,[[155,[[93,[72]]]]]],[[34,22],[[36,[97,131]]]],[[34,22],[[36,[85,131]]]],[34,[[155,[[102,[72]]]]]],[[[70,[83]],[103,[81]]],[[36,[[84,[83]],131]]]],[113,[[36,[[73,[72]]]]]],[113,[[36,[[80,[72]]]]]],[113,[[36,[94]]]],[113,[[36,[79]]]],[113,[[36,[[77,[74]]]]]],[113,[[36,[[75,[72]]]]]],[113,[[36,[[76,[72]]]]]],[34,[[36,[[73,[72]]]]]],[34,[[36,[[80,[72]]]]]],[2,[[36,[94]]]],[2,[[36,[79]]]],[34,[[36,[[77,[74]]]]]],[34,[[36,[[75,[72]]]]]],[34,[[36,[[76,[72]]]]]],[110,[[36,[114,131]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[110,[145,[72]],[61,[37]]],[[155,[[93,[72]]]]]],[[110,[145,[72]],[61,[37]],[15,[146]]],[[155,[[73,[72]]]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[36,[[80,[72]],131]]]],[[110,146,[15,[146]]],[[36,[94,131]]]],[[110,130,[15,[130]]],[[36,[79,131]]]],[[110,[70,[83]],[103,[81]]],[[36,[[84,[83]],131]]]],[[110,[61,[37]],[15,[146]]],[[36,[97,131]]]],[[110,[129,[37]],[15,[130]]],[[36,[85,131]]]],[[110,[103,[81]],[15,[130]]],[[36,[86,131]]]],[[110,[142,[72]],[103,[81]],[15,[130]]],[[36,[[87,[72]],131]]]],[[110,[142,[143]],[103,[81]],[15,[130]]],[[36,[88,131]]]],[[110,22],[[36,[89,131]]]],[[110,[61,[74]],[15,[146]]],[[36,[[77,[74]],131]]]],[[110,[129,[74]],[15,[130]]],[[36,[[70,[74]],131]]]],[[110,[61,[[103,[95]]]],[15,[146]]],[[36,[101,131]]]],[[110,[61,[[103,[81]]]],[15,[130]]],[[36,[90,131]]]],[[110,[129,[144]],[61,[[103,[81]]]],[15,[[129,[143]]]]],[[36,[91,131]]]],[[110,[145,[72]],[61,[37]],[15,[146]]],[[155,[[75,[72]]]]]],[[110,[145,[72]],[61,[37]]],[[155,[[102,[72]]]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[155,[[76,[72]]]]]],[[110,[70,[83]],[103,[81]]],[[36,[[84,[83]],131]]]],[[110,[142,[72]],[129,[37]],[15,[130]]],[[155,[[76,[72]]]]]],[[],155],[[[93,[72]],[13,[[6,[37]]]]],155],[[[73,[72]],[15,[[13,[[6,[37]]]]]]],155],[[94,[15,[5]]],[[36,[131]]]],[[[96,[83,[0,[95,[158,[[15,[30]]]]]]]],[15,[30]]],155],[[97,[15,[[13,[[6,[37]]]]]]],[[36,[131]]]],[[[98,[[0,[95,[156,[15]]]]]],[15,[34]]],155],[[[99,[72,[0,[95,[156,[15]]]]]],[15,[34]]],155],[[[77,[74]],[15,[74]]],[[36,[131]]]],[[[75,[72]],[15,[[13,[10]]]]],155],[[[102,[72]],[13,[10]]],155],[[[98,[95]]],155],[[[99,[72,95]]],155],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[91,[[129,[144]]]],[[],[[15,[130]]]],[[],[[15,[146]]]],[[[93,[72]]],[[15,[146]]]],[[[73,[72]]],[[15,[146]]]],[[[80,[72]]],[[15,[130]]]],[[[80,[72]]],[[15,[130]]]],[94,[[15,[146]]]],[79,[[15,[130]]]],[79,[[15,[130]]]],[[[96,[83,95]]],[[15,[146]]]],[[[84,[83]]],[[15,[130]]]],[[[84,[83]]],[[15,[130]]]],[97,[[15,[146]]]],[85,[[15,[130]]]],[85,[[15,[130]]]],[[[98,[95]]],[[15,[146]]]],[86,[[15,[130]]]],[86,[[15,[130]]]],[[[99,[72,95]]],[[15,[146]]]],[[[87,[72]]],[[15,[130]]]],[[[87,[72]]],[[15,[130]]]],[88,[[15,[130]]]],[89,[[15,[130]]]],[100,[[15,[146]]]],[[[77,[74]]],[[15,[146]]]],[[[70,[74]]],[[15,[130]]]],[[[70,[74]]],[[15,[130]]]],[101,[[15,[146]]]],[90,[[15,[130]]]],[90,[[15,[130]]]],[91,[[15,[130]]]],[[[75,[72]]],[[15,[146]]]],[[[102,[72]]],[[15,[146]]]],[[[76,[72]]],[[15,[130]]]],[[[76,[72]]],[[15,[130]]]],[[[93,[72]],22],[[6,[37]]]],[[[80,[72]],22],[[6,[37]]]],[[79,22],5],[[[84,[83]],22],[[103,[135]]]],[[97,22],[[6,[37]]]],[[85,22],[[6,[37]]]],[[86,22],[[103,[81]]]],[[[87,[72]],22],[[103,[81]]]],[[88,22],[[103,[81]]]],[[[70,[74]],22],74],[[101,22],[[15,[95]]]],[[91,22],[[103,[135]]]],[[[75,[72]],22],10],[[[102,[72]],22],10],[[[76,[72]],22],10],[[[93,[72]],22],[[6,[37]]]],[[[80,[72]],22],[[6,[37]]]],[[79,22],5],[[97,22],[[6,[37]]]],[[85,22],[[6,[37]]]],[[86,22],[[103,[81]]]],[[[87,[72]],22],[[103,[81]]]],[[88,22],[[103,[81]]]],[[[70,[74]],22],74],[[91,22],[[103,[135]]]],[[[75,[72]],22],10],[[[102,[72]],22],10],[[[76,[72]],22],10],[[],[[6,[37]]]],[[[93,[72]]],[[61,[37]]]],[[[73,[72]]],[[61,[37]]]],[[[80,[72]]],[[6,[37]]]],[[[80,[72]]],[[129,[37]]]],[94,146],[79,130],[[[96,[83,95]]],95],[[[84,[83]]],[[103,[81]]]],[97,[[61,[37]]]],[85,[[129,[37]]]],[[[98,[95]]],95],[86,[[103,[81]]]],[[[99,[72,95]]],95],[[[87,[72]]],[[103,[81]]]],[[[77,[74]]],[[61,[74]]]],[[[70,[74]]],[[129,[74]]]],[101,[[61,[[103,[95]]]]]],[90,[[6,[[103,[81]]]]]],[[[75,[72]]],[[61,[37]]]],[[[102,[72]]],[[61,[37]]]],[[[76,[72]]],[[6,[37]]]],[[[76,[72]]],[[129,[37]]]],[[[73,[72]]],[[109,[[93,[72]]]]]],[[[80,[72]]],[[134,[72]]]],[94,132],[79,132],[[[84,[83]]],[[0,[83]]]],[85,[[136,[37]]]],[86,[[109,[86]]]],[[[87,[72]]],[[137,[72]]]],0,[[[77,[74]]],[[138,[74]]]],[[[70,[74]]],[[138,[74]]]],0,[[[75,[72]]],[[109,[[102,[72]]]]]],[[[76,[72]]],[[139,[72]]]],[[[84,[83]]],[[36,[[0,[83,0]],131]]]],[97,[[6,[37]]]],[[[77,[74]]],[[6,[74]]]],[[22,22],[[93,[72]]]],[[22,22],[[73,[72]]]],[[22,22],[[75,[72]]]],[[22,22],[[102,[72]]]],[22,[[93,[72]]]],[22,[[73,[72]]]],[22,94],[[22,22],97],[22,[[99,[72,[0,[95,50]]]]]],[22,[[77,[74]]]],[22,[[75,[72]]]],[22,[[102,[72]]]],[[22,110],[[77,[74]]]],[[[15,[130]]],[[103,[81]]]],[[[73,[72]],[15,[146]]],[[73,[72]]]],[[[80,[72]],[15,[130]]],[[103,[81]]]],[[[80,[72]],[15,[130]]],[[80,[72]]]],[[79,[15,[130]]],[[103,[81]]]],[[79,[15,[130]]],79],[[[84,[83]],[15,[130]]],[[103,[81]]]],[[[84,[83]],[15,[130]]],[[84,[83]]]],[[85,[15,[130]]],85],[[85,[15,[130]]],[[103,[81]]]],[[86,[15,[130]]],86],[[86,[15,[130]]],[[103,[81]]]],[[[87,[72]],[15,[130]]],[[103,[81]]]],[[[87,[72]],[15,[130]]],[[87,[72]]]],[[88,[15,[130]]],[[103,[81]]]],[[88,[15,[130]]],88],[[89,[15,[130]]],[[103,[81]]]],[[[70,[74]],[15,[130]]],[[103,[81]]]],[[[70,[74]],[15,[130]]],[[70,[74]]]],[[90,[15,[130]]],90],[[90,[15,[130]]],[[103,[81]]]],[[91,[15,[130]]],[[103,[81]]]],[[[76,[72]],[15,[130]]],[[103,[81]]]],[[[76,[72]],[15,[130]]],[[76,[72]]]],[[79,130],79],[[[70,[74]],[129,[74]]],[[70,[74]]]],[[[70,[[0,[68,159]]]],[70,[[0,[68,159]]]]],[[70,[[0,[68,159]]]]]],[[[70,[[0,[68,160]]]],[70,[[0,[68,160]]]]],[[70,[[0,[68,160]]]]]],[[[70,[[0,[68,161]]]],[70,[[0,[68,161]]]]],[[70,[[0,[68,161]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[116,[72]]],[[82,[81]]]],[127,[[82,[81]]]],[117,[[82,[81]]]],[120,[[82,[81]]]],[124,[[82,[81]]]],[[[125,[74]]],[[82,[81]]]],[[[122,[72]]],[[82,[81]]]],[123,[[82,[81]]]],[126,[[82,[81]]]],[121,[[82,[81]]]],[[[128,[72]]],[[82,[81]]]],[[[119,[83]]],[[82,[81]]]],[[],[[82,[81]]]],[[],[[103,[81]]]],[[[116,[72]]],[[103,[81]]]],[127,[[103,[81]]]],[117,[[103,[81]]]],[120,[[103,[81]]]],[124,[[103,[81]]]],[[[125,[74]]],[[103,[81]]]],[[[122,[72]]],[[103,[81]]]],[123,[[103,[81]]]],[126,[[103,[81]]]],[121,[[103,[81]]]],[[[128,[72]]],[[103,[81]]]],[[[119,[83]]],[[103,[81]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],124],[[22,22,22]],[[[116,[72]],22,22,22]],[[127,22,22,22]],[[117,22,22,22]],[[120,22,22,22]],[[124,22,22,22]],[[[125,[74]],22,22,22]],[[[122,[72]],22,22,22]],[[123,22,22,22]],[[126,22,22,22]],[[121,22,22,22]],[[[128,[72]],22,22,22]],[[[119,[83]],22,22,22]],[22],[[[116,[72]],22]],[[127,22]],[[117,22]],[[120,22]],[[124,22]],[[[125,[74]],22]],[[[122,[72]],22]],[[123,22]],[[126,22]],[[121,22]],[[[128,[72]],22]],[[[119,[83]],22]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],22],[[[116,[72]]],22],[127,22],[117,22],[120,22],[124,22],[[[125,[74]]],22],[[[122,[72]]],22],[123,22],[126,22],[121,22],[[[128,[72]]],22],[[[119,[83]]],22],[[[6,[81]],5,22],[[103,[162]]]],[[[61,[[80,[72]]]],5,22],[[116,[72]]]],[[[61,[91]],22],127],[[[61,[79]],5,22],117],[[[61,[85]],5,22],120],[110,124],[[[61,[[70,[74]]]],5,22],[[125,[74]]]],[[[61,[[87,[72]]]],5,22],[[122,[72]]]],[[[61,[88]],5,22],123],[[[61,[90]],5,22],126],[[[61,[86]],5,22],121],[[[61,[[76,[72]]]],5,22],[[128,[72]]]],[[[6,[[84,[83]]]],5,22],[[119,[83]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],0,[[81,81],[[155,[163]]]],[[[0,[74,18]],[0,[74,18]]],19],[[164,164],19],[[165,165],19],0,0,0,[1],[1],[1],[[130,130],130],[130],[146,[[6,[37]]]],[[130,130,78],130],[[146,130,78]],[[130,130],130],[[146,130],146],[[146,130]],[[130,130],130],[[146,130],146],[[146,130]],[[130,130],130],[[146,130],146],[[146,130]],[[]],[[]],[[]],[[]],[[]],[[]],[146,22],[113,[[61,[37]]]],[130,[[167,[166]]]],[146],[130,130],[168,168],[146,146],[[]],[[]],[[]],[[],130],[[],146],[[130,130],5],[[146,146],5],[[146,22,5]],[[146,130]],[[146,[6,[37]],22,22]],[[146,[6,[37]],22,22]],[[146,113]],[[146,2]],[[130,40],115],[[168,40],115],[[146,40],115],[146,130],[[]],[[[13,[[6,[5]]]]],130],[[]],[[]],[[[13,[[6,[5]]]]],146],[2,[[61,[37]]]],[[[82,[[169,[37]]]],22,22,22],[[36,[130,131]]]],[[[82,[[169,[37]]]],22,22,22],130],[34,130],[34,146],[22,146],[22,146],[113,130],[113,146],[2,130],[2,146],[[[13,[[6,[37]]]],22],130],[[[61,[37]],22],130],[[[61,[37]],22],146],[[130,22],[[15,[5]]]],[[146,22],5],[[130,22],5],[[130,22],5],[[]],[[]],[[]],[130],[130],[130],[[]],[146],[130,[[3,[130,146]]]],[130,5],[146,5],[130,132],[146,132],[130,22],[146,22],[130,146],[[],130],[130,168],[[],146],[22,130],[168,15],[168,15],[130,130],[146,146],[[168,22],15],[130,22],[146,22],[[130,22,22],22],[[130,130],130],[146,[[15,[5]]]],[[146,5]],[[146,5]],[[130,130,130,130,78],130],[[146,22]],[[146,22,5]],[[146,22,5]],[146],[168],[[130,22,22]],[[130,22,22]],[[130,22,22],130],[[130,22,22],130],[[130,130,130,78],130],[[]],[[]],[[]],[[],36],[[],36],[[],36],[113,[[36,[130]]]],[113,[[36,[146]]]],[2,[[36,[130]]]],[2,[[36,[146]]]],[[],36],[[],36],[[],36],[[[61,[37]],22],[[36,[130,131]]]],[[[61,[37]],22],[[36,[146,131]]]],[[],66],[[],66],[[],66],[[130,78],130],[[146,78]],[130,22],[146,22],0,[22,146],[[130,130],130],0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[22,22],[132,132],[170,170],[[[171,[16,[0,[2,16]],[0,[2,16]]]]],[[171,[16,[0,[2,16]],[0,[2,16]]]]]],[[[133,[16,[0,[2,16]],[0,[2,16]]]]],[[133,[16,[0,[2,16]],[0,[2,16]]]]]],[[]],[[]],[[]],[[]],[[[6,[37]],22,22],22],[[[6,[37]],22,22,40],115],[[[172,[[0,[32,166]]]],40],115],[[[167,[[0,[32,166]]]],40],115],[[[173,[[0,[32,166]]]],40],115],[[132,40],115],[[170,40],115],[[[171,[32,[0,[2,32]],[0,[2,32]]]],40],115],[[[133,[32,[0,[2,32]],[0,[2,32]]]],40],115],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[6,[37]],22],5],[[[6,[37]],22],5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[172,[166]]],5],[[37,22],5],[[[172,[166]]],22],[[[167,[166]]],22],[[[6,[37]],22],[[172,[166]]]],[[[6,[37]],22,22],[[167,[166]]]],[[[6,[37]],22],[[173,[166]]]],[[[6,[37]],22,22],132],[130,170],[[2,2],[[171,[2,2]]]],[[2,[15,[2]]],[[133,[2,2]]]],[[2,[15,[130]]],[[133,[2,132]]]],[[[172,[166]]],15],[[[167,[166]]],[[15,[166]]]],[[[173,[166]]],15],[132,15],[170,15],[[[171,[2,2]]],15],[[[133,[2,2]]],15],[132,[[15,[5]]]],[[[171,[52,52]]],15],[[[133,[52,52]]],15],[[132,22],15],[[[171,[2,2]],22],15],[[[133,[2,2]],22],15],[[]],[[[172,[166]]],166],[[[172,[166]]],166],[[[167,[166]]],166],[[[167,[166]]],166],[[[173,[166]]],[[6,[37]]]],[[],174],[[],174],[[],22],[[[172,[166]]],22],[[[167,[166]]],22],[[[167,[166]]],22],[[[173,[166]]],22],[[37,22,5],37],[[[6,[37]],22,5]],[[[6,[37]],22,5]],[[[172,[166]]]],[[[167,[166]]]],[[[173,[166]]]],[132],[[[171,[2,2]]]],[[[133,[2,2]]]],[170,22],[[]],[[]],[[]],[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[[133,[2,2]]],[[171,[2,2]]]],[[[133,[2,2]]],2],0,0,[1],[129,6],[[]],[[]],[[]],[[]],[[[129,[16]]],[[129,[16]]]],[[]],[[],129],[169],[129,6],[[[129,[28]],[129,[28]]],5],[[[129,[32]],40],115],[[[175,[0]]],169],[[]],[61,169],[61,129],[[]],[[[82,[169]],22,22],129],[34,129],[129,[[15,[61]]]],[129,[[15,[6]]]],[[]],[[]],[129],[[[129,[35]]]],[129,[[3,[129,61]]]],[129,5],[129,5],[129,22],[[],129],[129,22],[[129,22]],[129,22],[129,22],[[129,22,22]],[[129,22,22]],[[129,22,22],129],[[129,22,22],129],[[]],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],0,[1],[[[176,[[13,[81]]]]],[[6,[[13,[81]]]]]],[[]],[[]],[[[176,[[0,[16,[13,[81]]]]]]],[[176,[[0,[16,[13,[81]]]]]]]],[[]],[[[176,[[13,[81]]]]],[[6,[[13,[81]]]]]],[[[176,[[13,[81]]]]],[[6,[[13,[81]]]]]],[[[176,[[0,[28,[13,[81]]]]]],[176,[[0,[28,[13,[81]]]]]]],5],[[],5],[[[176,[[0,[32,[13,[81]]]]]],40],115],[[]],[[]],[[[176,[[13,[81]]]]],[[61,[[13,[81]]]]]],[[[176,[[13,[81]]]]],5],[[[176,[[13,[81]]]]],22],[[[61,[[13,[81]]]]],[[176,[[13,[81]]]]]],[[]],[[],36],[[],36],[[[61,[[13,[81]]]]],[[155,[[176,[[13,[81]]]]]]]],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[110,5],[110,5],[110,5],[81,22],[81,[[155,[[103,[135]]]]]],[[[80,[72]]],[[15,[[6,[37]]]]]],[79,[[15,[5]]]],[[]],[[]],[[[70,[[0,[74,177]]]]],[[15,[[0,[74,177]]]]]],[[[76,[72]]],[[15,[10]]]],[81,[[155,[[103,[135]]]]]],[[[80,[72]]],[[15,[[6,[37]]]]]],[79,[[15,[5]]]],[[]],[[]],[[[70,[[0,[74,177]]]]],[[15,[[0,[74,177]]]]]],[[[76,[72]]],[[15,[10]]]],[[]],[[]],[[]],[81,[[155,[[103,[135]]]]]],[[[70,[[0,[74,177,69,[178,[[0,[74,177,69,[178,[[0,[74,177,69,[178,[[0,[74,177,69,178]]]]]]]]]]]]]]]]],[[15,[[0,[74,177,69,[178,[[0,[74,177,69,[178,[[0,[74,177,69,[178,[[0,[74,177,69,178]]]]]]]]]]]]]]]]]],[[[6,[[0,[74,177,69,[178,[[0,[74,177,69,[178,[[0,[74,177,69,[178,[[0,[74,177,69,178]]]]]]]]]]]]]]]]],[[0,[74,177,69,[178,[[0,[74,177,69,[178,[[0,[74,177,69,[178,[[0,[74,177,69,[178,[[0,[74,177,69,178]]]]]]]]]]]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[81,81],[[103,[81]]]],[[]],[[81,135],[[103,[81]]]],0,[[110,110],5],[[110,110],5],[[110,110],5],[110,5],[[110,110],5],[[110,110],5],[[]],[[]],[[]],[[]],[[]],0,[[81,81],[[103,[81]]]],[[]],[[81,135],[[103,[81]]]],[[81,81],[[103,[81]]]],[[]],[[81,135],[[103,[81]]]],[81,[[103,[81]]]],[[]],[[]],[[]],[[81,81],[[103,[81]]]],[[]],[[]],[[]],[[]],[[81,81],[[103,[81]]]],[[]],[[81,135],[[103,[81]]]],0,[[]],[[]],[[]],0,[[[70,[[0,[68,69]]]],[70,[[0,[68,69]]]]],[[70,[[0,[68,69]]]]]],[[[70,[[0,[68,69]]]],[0,[68,69]]],[[70,[[0,[68,69]]]]]],[[[70,[[0,[68,104]]]],[70,[[0,[68,104]]]]],[[70,[[0,[68,104]]]]]],[[[70,[[0,[68,104]]]],[0,[68,104]]],[[70,[[0,[68,104]]]]]],[[[70,[[0,[68,105]]]],[70,[[0,[68,105]]]]],[[70,[[0,[68,105]]]]]],[[[70,[[0,[68,105]]]],[0,[68,105]]],[[70,[[0,[68,105]]]]]],[[[70,[[0,[68,106]]]],[70,[[0,[68,106]]]]],[[70,[[0,[68,106]]]]]],[[[70,[[0,[68,106]]]],[0,[68,106]]],[[70,[[0,[68,106]]]]]],[[[70,[[0,[74,179]]]]],[[70,[[0,[74,179]]]]]],[[[70,[[0,[68,106,180]]]],22],[[70,[[0,[68,106,180]]]]]],[[[70,[[0,[68,107]]]],[70,[[0,[68,107]]]]],[[70,[[0,[68,107]]]]]],[[[70,[[0,[68,107]]]],[0,[68,107]]],[[70,[[0,[68,107]]]]]],[[[70,[[0,[68,108]]]],[70,[[0,[68,108]]]]],[[70,[[0,[68,108]]]]]],[[[70,[[0,[68,108]]]],[0,[68,108]]],[[70,[[0,[68,108]]]]]],[[[70,[[0,[68,111]]]],[70,[[0,[68,111]]]]],[[70,[[0,[68,111]]]]]],[[[70,[[0,[68,111,112]]]],[0,[68,111,112]]],[[70,[[0,[68,111,112]]]]]],[[[70,[[0,[68,141]]]],[70,[[0,[68,141]]]]],[[70,[[0,[68,141]]]]]],[[[70,[[0,[68,141]]]],[0,[68,141]]],[[70,[[0,[68,141]]]]]],[[[70,[[0,[74,181]]]]],[[70,[[0,[74,181]]]]]],[[[70,[[0,[68,147]]]],[70,[[0,[68,147]]]]]],[[[70,[[0,[68,147]]]],[0,[68,147]]]],[[[70,[[0,[68,148]]]],[70,[[0,[68,148]]]]]],[[[70,[[0,[68,148]]]],[0,[68,148]]]],[[[70,[[0,[68,149]]]],[70,[[0,[68,149]]]]]],[[[70,[[0,[68,149]]]],[0,[68,149]]]],[[[70,[[0,[68,[182,[[0,[68,[182,[[0,[68,[182,[[0,[68,182]]]]]]]]]]]]]]]],[0,[68,[182,[[0,[68,[182,[[0,[68,[182,[[0,[68,[182,[[0,[68,182]]]]]]]]]]]]]]]]]]],[[70,[[0,[68,[182,[[0,[68,[182,[[0,[68,[182,[[0,[68,182]]]]]]]]]]]]]]]]]],[[[70,[[0,[68,150]]]],[70,[[0,[68,150]]]]],[[70,[[0,[68,150]]]]]],[[[70,[[0,[68,150,112]]]],[0,[68,150,112]]],[[70,[[0,[68,150,112]]]]]],[[[70,[[0,[68,151]]]],[70,[[0,[68,151]]]]],[[70,[[0,[68,151]]]]]],[[[70,[[0,[68,151]]]],[0,[68,151]]],[[70,[[0,[68,151]]]]]],[[[70,[[0,[68,152]]]],[70,[[0,[68,152]]]]],[[70,[[0,[68,152]]]]]],[[[70,[[0,[68,152]]]],[0,[68,152]]],[[70,[[0,[68,152]]]]]],[[[70,[[0,[68,153]]]],[70,[[0,[68,153]]]]],[[70,[[0,[68,153]]]]]],[[[70,[[0,[68,153]]]],[0,[68,153]]],[[70,[[0,[68,153]]]]]],[[[70,[[0,[68,154]]]],[70,[[0,[68,154]]]]],[[70,[[0,[68,154]]]]]],[[[70,[[0,[68,154]]]],[0,[68,154]]],[[70,[[0,[68,154]]]]]],[[[70,[[0,[68,159]]]],[70,[[0,[68,159]]]]],[[70,[[0,[68,159]]]]]],[[[70,[[0,[68,159]]]],[0,[68,159]]],[[70,[[0,[68,159]]]]]],[[[70,[[0,[68,160]]]],[70,[[0,[68,160]]]]],[[70,[[0,[68,160]]]]]],[[[70,[[0,[68,160]]]],[0,[68,160]]],[[70,[[0,[68,160]]]]]],[[[70,[[0,[74,183]]]]],[[70,[[0,[74,183]]]]]],[[[70,[[0,[68,161]]]],[70,[[0,[68,161]]]]],[[70,[[0,[68,161]]]]]],[[[70,[[0,[68,161]]]],[0,[68,161]]],[[70,[[0,[68,161]]]]]],[[[70,[71]],[70,[71]]],[[155,[[70,[71]]]]]],[[[70,[71]],[70,[71]]],[[155,[[70,[71]]]]]],[[[70,[71]],[70,[71]]],[[155,[[70,[71]]]]]],[[[70,[71]],[70,[71]]],[[155,[[70,[71]]]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[184,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[184,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[71]],[70,[71]]],[[70,[71]]]],[[[70,[[0,[74,[69,[[0,[74,[69,[[0,[74,[69,[[0,[74,69]]]]]]]]]]]]]]]],[70,[185]]],[[70,[[0,[74,[69,[[0,[74,[69,[[0,[74,[69,[[0,[74,69]]]]]]]]]]]]]]]]]],[[[70,[[0,[74,[69,[[0,[74,[69,[[0,[74,[69,[[0,[74,69]]]]]]]]]]]]]]]],[184,[185]]],[[70,[[0,[74,[69,[[0,[74,[69,[[0,[74,[69,[[0,[74,69]]]]]]]]]]]]]]]]]],[[[70,[185]],[70,[186]]],[[155,[[70,[185]]]]]],[[[70,[185]],[184,[186]]],[[155,[[70,[185]]]]]],[[[70,[[0,[74,[154,[[0,[74,[154,[[0,[74,[154,[[0,[74,154]]]]]]]]]]]]]]]],[184,[185]]],[[70,[[0,[74,[154,[[0,[74,[154,[[0,[74,[154,[[0,[74,154]]]]]]]]]]]]]]]]]],[[[70,[185]],[184,[185]]],[[155,[[70,[185]]]]]],[[[70,[[0,[74,[154,[[0,[74,[154,[[0,[74,[154,[[0,[74,154]]]]]]]]]]]]]]]],[70,[185]]],[[70,[[0,[74,[154,[[0,[74,[154,[[0,[74,[154,[[0,[74,154]]]]]]]]]]]]]]]]]],[[[70,[185]],[70,[185]]],[[155,[[70,[185]]]]]],[[[70,[74]],[70,[74]],110,78],[[70,[74]]]],[[[70,[74]],[70,[74]],110,78],[[70,[74]]]],[[[70,[74]],[70,[74]],110,78]],[[[70,[74]],[70,[74]],110,78],[[155,[[70,[74]]]]]],[[[70,[74]],78,110],[[155,[[70,[74]]]]]],[[[70,[74]],78,110],[[70,[74]]]],[[[70,[74]],78,110],[[70,[74]]]],[[[70,[74]],78,110]],[[[70,[74]],[70,[74]],78]],[[[70,[74]],78]],[79,5],[[79,79],79],[[79,187],79],[79,5],[81,79],[81,79],[79,79],[[79,79],79],[[79,187],79],[79,5],[[79,79],79],[[79,187],79],[79,5],[[79,79],79],[[79,187],79],0,[1],[[[80,[185]],110],[[155,[[80,[143]]]]]],[[[80,[72]]],[[155,[[84,[83]]]]]],[[[80,[143]],110],[[80,[185]]]],[[[80,[143]],110],[[155,[[76,[185]]]]]],[[[80,[72]],110],[[87,[72]]]],[[[80,[72]],110],[[70,[[0,[74,188]]]]]],[[[80,[72]],110],[[155,[[76,[72]]]]]],[79,[[80,[72]]]],[79,[[70,[[0,[74,180]]]]]],[79,[[76,[72]]]],[[]],[[]],[[110,110],5],[[81,110,189],[[155,[[103,[81]]]]]],[189,189],[[]],[[[70,[143]]],[[70,[185]]]],[[[70,[185]]],[[70,[143]]]],[[[70,[190]]],[[70,[186]]]],[[[70,[71]],22,22],[[70,[71]]]],[[[70,[71]]],[[70,[[0,[74,191]]]]]],[[[70,[71]]],[[70,[[0,[74,112]]]]]],[[],189],[[[84,[[0,[83,112]]]]],[[155,[[84,[[0,[83,112]]]]]]]],[[[84,[83]],110],[[155,[[84,[83]]]]]],[[[84,[[0,[83,112]]]]],[[103,[81]]]],[[[70,[192]]],[[70,[164]]]],[[85,110],[[80,[72]]]],[[[70,[[0,[74,191,193]]]],22,22],[[70,[71]]]],[[189,40],115],[[]],[[[70,[[0,[74,[194,[71]]]]]],22,22],[[70,[71]]]],[[]],[[[70,[143]]],[[70,[186]]]],[[[70,[185]],195],[[76,[72]]]],0,[[[80,[72]],110],[[70,[[0,[74,188]]]]]],[[[76,[72]],110],[[70,[[0,[74,188]]]]]],[[[70,[[0,[74,[194,[74]]]]]],110],[[70,[74]]]],[[[70,[[0,[74,196]]]]],[[80,[72]]]],[[[70,[74]],110],79],[[[70,[[0,[74,29,30]]]]],[[155,[[84,[83]]]]]],[[[70,[[0,[74,112]]]],110],[[70,[[0,[74,112]]]]]],[[[70,[74]],110],[[70,[74]]]],[[[70,[[0,[74,196]]]]],[[76,[72]]]],[[[70,[143]],195,195],[[70,[185]]]],[[[70,[143]]],[[70,[143]]]],[[[70,[143]]],[[70,[143]]]],[[[70,[185]],195,195],[[70,[143]]]],[[[70,[185]]],[[70,[185]]]],[[[70,[185]]],[[70,[185]]]],[[[70,[185]],195],[[70,[143]]]],[[[70,[185]],195],[[70,[185]]]],[[[70,[185]],195,195,[15,[59]]],[[70,[185]]]],[[[70,[185]],195,10],[[155,[[76,[72]]]]]],[[]],[[],36],[[],36],[[],66],[[[76,[185]]],[[155,[[76,[143]]]]]],[[[76,[72]],110],[[80,[72]]]],[[[76,[72]]],[[70,[143]]]],[[[76,[72]]],[[70,[185]]]],[[[76,[72]]],[[155,[[84,[83]]]]]],[[[76,[143]]],[[76,[185]]]],[[[76,[72]]],[[70,[185]]]],[[[76,[72]],110],[[70,[[0,[74,188]]]]]],[[[76,[72]],59],[[155,[[70,[185]]]]]],0,[[[84,[[0,[83,[194,[83]]]]]]],[[155,[[84,[83]]]]]],[[[84,[83]],110],[[155,[[84,[83]]]]]],0,0,0,0,0,0,0,[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[110,5],[[81,81],79],[[],37],[[81,81],79],[[81,135],79],[[81,135],79],[[79,[15,[130]],[15,[130]]],79],[[79,[15,[130]],[15,[130]]],79],[6],[6],[[81,81],79],[[],37],[[81,81],79],[[],37],[[81,135],79],[[81,135],79],[[81,81],79],[[],37],[[81,81],79],[[],37],[[81,135],79],[[81,135],79],[[81,81],79],[[],37],[[81,81],79],[[81,135],79],[[81,135],79],0,0,[[[80,[72]],[80,[72]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[6,[37]]],79],[[[80,[72]],[6,[37]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[6,[37]]],79],[[[80,[72]],[6,[37]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[6,[37]]],79],[[[80,[72]],[6,[37]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[80,[72]]],79],[[[80,[72]],[6,[37]]],79],[[[80,[72]],[6,[37]]],79],[[79,5,78],79],[[79,79],79],[[79,79],79],[[79,5],79],[[79,5],79],[[79,79],79],[[79,79],79],[[79,5],79],[[79,5],79],[[79,79],79],[[79,79],79],[[79,5],79],[[79,5],79],[[79,79],79],[[79,79],79],[[79,5],79],[[79,5],79],[[[70,[[0,[74,197]]]],[0,[74,197]],78],79],[[[70,[[0,[74,197]]]],[70,[[0,[74,197]]]]],79],[[[70,[[0,[74,197]]]],[70,[[0,[74,197]]]]],79],[[[70,[[0,[74,197]]]],[0,[74,197]]],79],[[[70,[[0,[74,197]]]],[0,[74,197]]],79],[[[70,[[0,[74,197]]]],[70,[[0,[74,197]]]]],79],[[[70,[[0,[74,197]]]],[70,[[0,[74,197]]]]],79],[[[70,[[0,[74,197]]]],[0,[74,197]]],79],[[[70,[[0,[74,197]]]],[0,[74,197]]],79],[[[70,[[0,[74,197]]]],[70,[[0,[74,197]]]]],79],[[[70,[[0,[74,197]]]],[70,[[0,[74,197]]]]],79],[[[70,[[0,[74,197]]]],[0,[74,197]]],79],[[[70,[[0,[74,197]]]],[0,[74,197]]],79],[[[70,[[0,[74,197]]]],[70,[[0,[74,197]]]]],79],[[[70,[[0,[74,197]]]],[70,[[0,[74,197]]]]],79],[[[70,[[0,[74,197]]]],[0,[74,197]]],79],[[[70,[[0,[74,197]]]],[0,[74,197]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],10],79],[[[76,[72]],10],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],10],79],[[[76,[72]],10],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],10],79],[[[76,[72]],10],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],[76,[72]]],79],[[[76,[72]],10],79],[[[76,[72]],10],79],[[[6,[81]]],[[155,[[103,[81]]]]]],0,[79,[[155,[198]]]],[[81,79],[[155,[[103,[81]]]]]],[[[176,[[13,[81]]]],79],[[155,[[176,[[103,[81]]]]]]]],[[79,81,81],[[155,[[103,[81]]]]]],[[[80,[72]],[80,[72]]],[[155,[79]]]],[[[80,[72]],[6,[37]]],[[155,[79]]]],[[[76,[72]],[76,[72]]],[[155,[79]]]],[[[76,[72]],10],[[155,[79]]]],[[[80,[72]],[80,[72]]],[[155,[79]]]],[[[80,[72]],[6,[37]]],[[155,[79]]]],[[[76,[72]],[76,[72]]],[[155,[79]]]],[[[76,[72]],10],[[155,[79]]]],[110,5],[[81,185,[15,[65]]],[[155,[[103,[81]]]]]],[110,5],[[81,[70,[199]]],[[155,[[103,[81]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[114,114],[200,200],[201,201],[202,202],[110,110],[203,203],[195,195],[204,204],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[114,110],0,[[],202],[[114,114],5],[[200,200],5],[[201,201],5],[[202,202],5],[[110,110],5],[[203,203],5],[[195,195],5],[[204,204],5],[[200,205],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[[202,78],202],[[114,40],115],[[200,40],115],[[201,40],115],[[202,40],115],[[110,40],115],[[203,40],115],[[195,40],115],[[204,40],115],[[]],[[]],[[]],[[]],[[[61,[114]]],202],[201,110],[[]],[205,110],[[]],[[]],[[]],[206,15],[[114,47]],[[200,47]],[[201,47]],[[110,47]],[[203,47]],[[195,47]],[[204,47]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[203,5],0,[203,5],0,0,0,[[[27,[59]],110,5],114],[5,203],[110,110],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[110,200],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[114,206],114],[[202,206],202],0,0,0,0,0,0,0,0,0,[[]],[[]],[[131,40],115],[[131,40],115],[207,131],[208,131],[209,131],[38,131],[[]],[210,131],[211,131],[212,131],[213,131],[[[0,[14,214,215]]],131],[[]],[57],[[],59],[[],36],[[],36],[[],66],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[216],[217],[218],[[],216],[[],217],[[],218],[[[103,[81]]],217],[114,216],[[[103,[2]],114],218],[[[219,[25]]],114],[[216,40],115],[[217,40],115],[[218,40],115],[[]],[[]],[[]],[[]],[[217,110],[[155,[[103,[81]]]]]],[216,[[155,[114]]]],[[]],[[]],[[]],[[]],0,[[[219,[25]]],[[15,[[36,[[103,[81]],131]]]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[25,[[36,[[219,[25]],131]]]],[[],66],[[],66],[[],66],[[],66],[[[6,[37]],22,22],[[36,[79,131]]]],[[[6,[74]]],[[70,[74]]]],0,0,0,0,0,0,[1],[1],0,[[]],[[]],[[]],[[]],[220,220],[221,221],[[]],[[]],[[],220],0,[[220,220],5],[[221,221],5],0,0,[[220,40],115],[[221,40],115],[[]],[[]],[[]],[[]],0,0,[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[222,222],[223,223],[[]],[[]],[[[6,[37]]],155],[[210,40],115],[[222,40],115],[[223,40],115],[[]],[[]],[[]],[[]],[[]],[[]],[[[224,[[0,[58,63]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[[224,[[0,[58,63]]]]],[[0,[58,63]]]],[[]],[[]],0,0,[[[225,[58]]],5],[[[224,[[0,[58,63]]]]],222],[[[225,[58]]],223],[[[0,[58,63]],222,[15,[[61,[22]]]],[15,[22]]],[[224,[[0,[58,63]]]]]],[[58,223,[15,[[61,[22]]]]],[[225,[58]]]],[[[224,[[0,[58,63]]]]],15],[[[225,[58]]],15],[[[0,[58,63]],226,222,[15,[[6,[22]]]],[15,[22]],22,[61,[37]],[61,[37]]],[[155,[[176,[[103,[81]]]]]]]],[[[0,[58,63]],222,[61,[37]]],[[155,[226]]]],[[[0,[58,63]]],[[155,[222]]]],[58,[[155,[223]]]],[[[224,[[0,[58,63]]]]],202],[[[225,[58]]],202],0,0,[[[224,[[0,[58,63]]]]]],0,[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[227,[[176,[[103,[81]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[228,228],[229,229],[[]],[[]],[229,[[176,[[103,[81]]]]]],0,[[[6,[114]]],[[61,[220]]]],[[228,228],5],[[229,229],5],[[],5],[229,[[15,[[6,[220]]]]]],0,[[[230,[39]]],155],[[[231,[39]]],155],[[228,40],115],[[229,40],115],[[]],[[]],[[]],[[],229],[[],229],[[]],[[[176,[[103,[81]]]]],229],0,[[228,47]],[[]],[[]],[[]],[[]],[[[230,[39]]],39],[[[231,[39]]],39],[[39,232],[[230,[39]]]],[[39,202,[15,[[61,[220]]]],232],[[231,[39]]]],[[202,[6,[220]]],[[61,[37]]]],0,[[[230,[39]],202,[15,[[61,[220]]]]],155],[[[231,[39]]],155],0,[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[[0,[58,63,39]],222,232],[[155,[[231,[[0,[58,63,39]]]]]]]],[[],36],[[],36],[[],36],[[],36],[[39,202,[15,[[61,[220]]]],232],[[155,[[231,[39]]]]]],[[],66],[[],66],[[],66],[[],66],[[81,[61,[233]],[61,[37]],[61,[234]],185,5,[15,[228]]]],[[[230,[39]],[176,[[103,[81]]]],[15,[[6,[220]]]]],155],[[[231,[39]],[176,[[103,[81]]]],[15,[[6,[220]]]]],155],0,[[]],[[]],[[]],[[]],[[[0,[235,236,214]],202,[15,[[61,[220]]]],232],[[237,[[0,[235,236,214]]]]]],[[[12,[[237,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[237,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[237,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[237,[[0,[235,236,214]]]]]],229],155],[[],36],[[],36],[[],66],0,0,[1],[[]],[[]],[[]],[[]],[232,232],[[]],0,[[],232],[[232,232],5],[[],5],[[232,40],115],[[]],[[]],[[232,47]],[[]],[[]],[[[0,[235,236,214]],202,[15,[[61,[220]]]],232],[[238,[[0,[235,236,214]]]]]],[[[12,[[238,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[238,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[238,[[0,[235,236,214]]]]]],55],[[56,[155]]]],[[[12,[[238,[[0,[235,236,214]]]]]],229],155],[[]],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[],36],[[[239,[2]]],36],[240,36],[[[242,[241,4]]],36],[[[243,[241]]],36],[[[244,[241,4]]],36],[[[245,[241,78]]],36],[[[246,[241,78]]],36],[[[247,[241]]],36],[[[248,[241,4]]],36],[[[249,[241]]],36],[[[250,[241,4]]],36],[251,[[36,[131]]]],[[[252,[[13,[81]],2]]],[[36,[131]]]],[[],36],[[[239,[52]]],36],[240,36],[[[244,[253,4]]],36],[[[245,[253,78]]],36],[[[246,[253,78]]],36],[[45,4],[[36,[5]]]],[[45,4],[[36,[5]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,45],[[[252,[[0,[[13,[81]],16]],[0,[2,16]]]]],[[252,[[0,[[13,[81]],16]],[0,[2,16]]]]]],[[]],[2,[[239,[2]]]],[45,[[36,[22]]]],[[],240],[[45,4],[[242,[45,4]]]],[[45,4],[[36,[15]]]],[[[252,[[0,[[13,[81]],32]],[0,[2,32]]]],40],115],[[45,4],36],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,[[243,[45]]]],[[],15],[[[239,[2]]],15],[240,15],[[[242,[241,4]]],15],[[[243,[241]]],15],[[[244,[241,4]]],15],[[[245,[241,78]]],[[15,[45]]]],[[[246,[241,78]]],15],[[[247,[241]]],15],[[[248,[241,4]]],15],[[[249,[241]]],15],[[[250,[241,4]]],15],[251,15],[[[252,[[13,[81]],2]]],15],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[45,4],[[244,[45,4]]]],[[45,78],[[246,[45,78]]]],[[45,78],[[245,[45,78]]]],[[202,[176,[[13,[81]]]],[61,[37]]],251],[[2,[61,[37]]],[[252,[[13,[81]],2]]]],[[],[[36,[15]]]],[[[243,[241]]],[[36,[15]]]],[[[246,[241,78]]],[[36,[15]]]],[[],[[36,[15]]]],[[[246,[253,78]]],[[36,[15]]]],[22,[[36,[15]]]],[[45,4],[[36,[[15,[22]]]]]],[[]],[[[239,[2]]]],[240],[[[242,[241,4]]]],[[[243,[241]]]],[[[244,[241,4]]]],[[[245,[241,78]]]],[[[246,[241,78]]]],[[[247,[241]]]],[[[248,[241,4]]]],[[[249,[241]]]],[[[250,[241,4]]]],[[45,22],[[247,[45]]]],[[45,4],[[248,[45,4]]]],[[45,22],[[249,[45]]]],[[45,4],[[250,[45,4]]]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[39,241],[[36,[131]]]],0,0,0,0,0,0,[1],[[],36],[[[254,[[13,[81]],2]]],[[36,[131]]]],[[45,4],[[36,[5]]]],[[45,4],[[36,[5]]]],[[]],[[]],[[]],[[]],[45,45],[[[254,[[0,[[13,[81]],16]],[0,[2,16]]]]],[[254,[[0,[[13,[81]],16]],[0,[2,16]]]]]],[[]],[45,[[36,[22]]]],[[45,4],[[242,[45,4]]]],[[45,4],[[36,[15]]]],[[[254,[[0,[[13,[81]],32]],[0,[2,32]]]],40],115],[[45,4],36],[[]],[[]],[45,[[243,[45]]]],[[],15],[[[254,[[13,[81]],2]]],15],[[]],[[]],[[[255,[39,241]]]],[[]],[[45,4],[[244,[45,4]]]],[[45,78],[[246,[45,78]]]],[[45,78],[[245,[45,78]]]],[[39,241],[[255,[39,241]]]],[[2,[61,[37]]],[[254,[[13,[81]],2]]]],[[],[[36,[15]]]],[[[255,[39,241]]],15],[22,[[36,[15]]]],[[45,4],[[36,[[15,[22]]]]]],[[]],[[45,22],[[247,[45]]]],[[45,4],[[248,[45,4]]]],[[45,22],[[249,[45]]]],[[45,4],[[250,[45,4]]]],[[]],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[[0,[58,63]],[6,[256]]],[[36,[[61,[[103,[257,60]],60]],207]]]],[[[0,[58,63]]],[[36,[258,207]]]],[[[0,[259,260,214,236]]],54],[[],36],[[],[[36,[261]]]],[[[263,[262]]],[[36,[207]]]],[[[264,[2]]],[[36,[207]]]],[265,[[36,[[261,[265]],207]]]],[[45,4],[[36,[5]]]],[[45,4],[[36,[5]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,45],[256],[207,207],[256,256],[266,266],[267,267],[268,268],[269,269],[270,270],[271,271],[272,272],[273,273],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[256,274],[256,[[61,[275,60]]]],[[[61,[276]],[61,[277]],114,[15,[22]],22],[[155,[278]]]],0,[267,[[6,[256]]]],[256,185],[267,22],[256,279],[45,[[36,[22]]]],[[110,280,[103,[81]]],[[103,[81]]]],[[110,280,[103,[81]]],[[103,[81]]]],0,[256,185],[[281,[61,[37,60]]],[[36,[282,207]]]],[256,266],0,[256,[[15,[185]]]],[[266,266],5],[[269,269],5],[[270,270],5],[[271,271],5],[[272,272],5],[[273,273],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[256,185],[256,[[15,[59]]]],[[45,4],[[242,[45,4]]]],[[45,4],[[36,[15]]]],[[207,40],[[36,[41]]]],[[207,40],[[36,[41]]]],[[256,40],[[36,[41]]]],[[266,40],[[36,[41]]]],[[267,40],[[36,[41]]]],[[268,40],[[36,[41]]]],[[269,40],[[36,[41]]]],[[270,40],[[36,[41]]]],[[271,40],[[36,[41]]]],[[[261,[32]],40],[[36,[41]]]],[[265,40],[[36,[41]]]],[[272,40],[[36,[41]]]],[[273,40],115],[[280,40],115],[[45,4],36],[[]],[[]],[[]],[283,207],[38,207],[284,207],[285,207],[[]],[286,207],[131,207],[213,207],[[]],[[]],[[]],[[]],[[]],[287,269],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,[[243,[45]]]],[[],15],[[],15],[[[263,[262]]],15],[[[264,[2]]],15],[265,15],[[[0,[58,63]],267,10,[15,[[82,[78]]]],[61,[37,60]],22],[[288,[[0,[58,63]]]]]],[[[6,[256]],10],[[61,[256]]]],[[[6,[256]],6,10],61],[[256,[0,[58,63]],[15,[289]],[61,[37]],22],[[155,[[290,[[0,[58,63]]]]]]]],[[256,[0,[259,236,214,260]],[61,[37,60]],[82,[78]],22],54],[256,5],[[269,47]],[[270,47]],[[271,47]],[[272,47]],[256,[[15,[185]]]],0,0,[[[6,[273]],22],280],[[[44,[291]]],185],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[263,[262]]]],[[[264,[2]]],[[61,[37,60]]]],[[[290,[58]]]],[[]],[[]],[[]],[[]],[[]],[256,274],0,[280,22],[[45,4],[[244,[45,4]]]],[[45,78],[[246,[45,78]]]],[[45,78],[[245,[45,78]]]],[256,292],[110,22],0,[[262,[61,[37,60]]],[[263,[262]]]],[[2,[61,[37,60]]],[[264,[2]]]],[[58,256,[82,[78]],[61,[37,60]],22],[[290,[58]]]],[[274,266],256],[[293,[61,[59,60]],294],266],[[[61,[256,60]],22,22],267],[[294,[61,[60]]],265],[[[61,[295]],[61,[114]]],296],[[[0,[58,63]],[61,[267]],202,[15,[22]],[15,[22]],[15,[[61,[[61,[[61,[[61,[297]]]]]]]]]]],[[298,[[0,[58,63]]]]]],[[[0,[58,63]],202,[61,[267]],[15,[22]],[15,[22]],[15,[[61,[[61,[[61,[[61,[297]]]]]]]]]]],[[299,[[0,[58,63]]]]]],[[[61,[278]],22,[15,[22]]],300],[[[61,[[103,[0]]]]],280],[[58,301,[82,[78]],[61,[37,60]],22],[[290,[58]]]],[[],[[36,[15]]]],[[[290,[58]]],15],[296,15],[[[298,[[0,[58,63]]]]],15],[[[299,[[0,[58,63]]]]],15],[300,15],[22,[[36,[15]]]],[267,22],[300,22],0,[256,185],[268,22],0,[256,302],[[45,4],[[36,[[15,[22]]]]]],[57],[[[0,[58,63]],[6,[256]],10],[[155,[61]]]],[[[0,[78,16]],[6,[256]],10],[[155,[61]]]],[[[0,[58,63]],267,[61,[114]],[15,[22]],[15,[22]],[15,[[61,[[61,[[61,[297]]]]]]]]],[[155,[[61,[278]]]]]],[[[0,[78,16]],267,[61,[114]],[15,[22]],[15,[22]],[15,[[61,[[61,[[61,[297]]]]]]]]],[[155,[[61,[278]]]]]],[[[0,[58,63]]],[[155,[258]]]],[[[0,[259,260,214,236]]],[[155,[258]]]],[[[0,[58,63]],[6,[256]]],[[36,[[61,[[61,[303,60]],60]],207]]]],0,0,[[[298,[[0,[58,63]]]]],202],0,[[]],[[[299,[[0,[58,63]]]]]],[[45,22],[[247,[45]]]],[[45,4],[[248,[45,4]]]],0,[256,[[15,[[36,[[82,[304]],207]]]]]],[[[290,[58]],[61,[37,60]]]],[[45,22],[[249,[45]]]],[[45,4],[[250,[45,4]]]],[[61,114,22,[15,[22]],[15,[[61,[[61,[297]]]]]]],[[155,[278]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],59],[267,22],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[305,[[36,[270]]]],[[],36],[305,[[36,[271]]]],[[],36],[[],36],[[],[[36,[272]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[256,185],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[306,306],[297,297],[[]],[[]],[[[6,[303]],22],[[36,[[61,[306]],207]]]],[[306,306],5],[[297,297],5],[[307,307],5],[[308,308],5],[[],5],[[],5],[[306,40],[[36,[41]]]],[[297,40],[[36,[41]]]],[[307,40],115],[[308,40],115],[[]],[[]],[308,307],[[]],[[]],[267,5],[[306,47]],[[297,47]],[[]],[[]],[[]],[[]],0,0,0,0,[[22,22],306],0,0,[[[0,[58,63]],[6,[256]],[6,[114]]],[[36,[[61,[307]],131]]]],[[[0,[58,63]],267,[6,[114]],78],[[36,[[61,[[61,[[61,[297]]]]]],131]]]],0,0,0,[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],0,0,0,0,0,0,0,0,[258,[[155,[202]]]],0,0,0,[[[6,[294]]],[[61,[114]]]],[206,[[155,[[15,[202]]]]]],0,0,0,0,0,0,0,0,0,[[]],[[]],[[114,[6,[267]]],[[155,[309]]]],0,[[309,309],5],[[309,40],115],[[]],[[]],0,0,0,[[],36],[[],36],[[],66],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[],36],[[[310,[2]]],36],[311,36],[[45,4],[[36,[5]]]],[[45,4],[[36,[5]]]],[[[0,[[13,[81]],214,215]],294,312,[6,[313]]],[[155,[[61,[[314,[[155,[282]]]]]]]]]],[[81,277,[6,[315]],312,313],[[155,[282]]]],[[81,277,312,313],[[155,[282]]]],[[81,277,[6,[315]],312,313],[[155,[[314,[[155,[282]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[282,[[61,[37,60]]]],[45,45],[[110,313],5],[[294,294],5],[316,316],[293,293],[317,317],[258,258],[318,318],[319,319],[320,320],[321,321],[322,322],[313,313],[302,302],[323,323],[294,294],[324,324],[315,315],[312,312],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[316,316],19],[[317,317],19],[[258,22],325],0,0,[318,[[6,[266]]]],[[282,[61,[37,60]],319],[[36,[281,207]]]],[326,22],[326,279],0,[320,291],[321,37],[322,143],[45,[[36,[22]]]],0,0,0,[[],320],[[],321],[[],322],0,[[[327,[39]],[15,[[61,[316]]]]],[[155,[65]]]],[[316,316],5],[[293,293],5],[[317,317],5],[[319,319],5],[[320,320],5],[[321,321],5],[[322,322],5],[[313,313],5],[[302,302],5],[[323,323],5],[[294,294],5],[[324,324],5],[[315,315],5],[[312,312],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[318,[[6,[294]]]],[[45,4],[[242,[45,4]]]],[[45,4],[[36,[15]]]],[[316,40],[[36,[41]]]],[[293,40],[[36,[41]]]],[[317,40],[[36,[41]]]],[[258,40],[[36,[41]]]],[[318,40],[[36,[41]]]],[[326,40],[[36,[41]]]],[[282,40],[[36,[41]]]],[[281,40],[[36,[41]]]],[[319,40],[[36,[41]]]],[[320,40],[[36,[41]]]],[[321,40],[[36,[41]]]],[[322,40],[[36,[41]]]],[[313,40],[[36,[41]]]],[[302,40],[[36,[41]]]],[[323,40],[[36,[41]]]],[[294,40],[[36,[41]]]],[[324,40],[[36,[41]]]],[[315,40],115],[[312,40],115],0,[[45,4],36],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[59,[61,[294,60]],328,[15,[329]],[15,[143]]],294],[[59,328,[15,[329]],[15,[271]],[61,[294,60]],[15,[143]]],294],[[59,302],294],[45,[[243,[45]]]],[[],15],[[[310,[2]]],15],[311,15],[294,323],[[[6,[315]]],22],[[316,47]],[[293,47]],[[317,47]],[[319,47]],[[320,47]],[[321,47]],[[322,47]],[[313,47]],[[302,47]],[[323,47]],[[324,47]],[326,268],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[310,[2]]]],[[[327,[39]]],39],[[[327,[39]]]],[[]],[[]],[258,317],[281,5],0,[258,[[15,[[61,[316,60]]]]]],0,0,[315,22],[[45,4],[[244,[45,4]]]],[[45,78],[[246,[45,78]]]],[[45,78],[[245,[45,78]]]],0,0,0,[318,10],[294,10],0,[[2,319,[61,[37,60]]],[[310,[2]]]],[[[0,[2,214,215]]],314],[[[0,[241,214,215]]],311],[[59,[27,[[15,[59]]]]],316],[[143,[61,[330,60]],185,[61,[331,60]],[27,[[15,[[61,[316,60]]]]]],[27,[[15,[59]]]],[27,[[15,[[61,[332,60]]]]]],[27,[[15,[333]]]],[27,[[15,[[61,[37,60]]]]]]],317],[[59,[61,[294,60]]],318],[[268,[61,[37,60]],279,22,293,[15,[22]]],326],[[2,319,[61,[37,60]]],[[310,[2]]]],[[],[[36,[15]]]],[314,15],[[[334,[[0,[[13,[81]],214,215]],2]]],15],[22,[[36,[15]]]],0,0,[[[6,[315]]],22],[326,22],[[[327,[39]]],312],[[[335,[[0,[235,214,236]]]]],312],[[[327,[39]]],318],[[[334,[[13,[81]],2]]],318],[[[335,[[0,[235,214,236]]]]],318],[[316,316],[[15,[19]]]],[[317,317],[[15,[19]]]],[[[12,[[335,[[0,[235,214,236]]]]]],55],[[56,[36]]]],[[[12,[[335,[[0,[235,214,236]]]]]],55],[[56,[36]]]],[[[12,[[335,[[0,[235,214,236]]]]]],55],[[56,[36]]]],[[45,4],[[36,[[15,[22]]]]]],0,[336,[[36,[316,286]]]],[336,[[36,[316,286]]]],[336,[[36,[317,286]]]],[336,[[36,[317,286]]]],0,[[[176,[[0,[[13,[81]],214,215]]]],[61,[[61,[313]]]],[61,[294]],312],[[337,[131]]]],0,0,[258,318],[[[327,[39]]],202],[[[335,[[0,[235,214,236]]]]],202],0,0,[[326,[61,[306,60]]]],[326,[[15,[[6,[306]]]]]],[[]],[314],[311],[[45,22],[[247,[45]]]],[[45,4],[[248,[45,4]]]],[[[6,[315]]]],[[81,[6,[315]],22,22]],[[[12,[[335,[[0,[235,214,236]]]]]],[176,[[103,[81]]]]],36],[326,[[15,[[36,[[82,[304]],207]]]]]],[338,[[12,[[103,[54,60]]]]]],[338,54],[338,[[12,[[103,[54,60]]]]]],[338,54],[[45,22],[[249,[45]]]],[[45,4],[[250,[45,4]]]],[81,[[61,[81]]]],[[81,294],[[155,[[61,[[61,[315]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[294,[[61,[277]]]],[202,[[155,[318]]]],[114,[[155,[294]]]],[[110,[0,[78,16]]],61],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[275,[[36,[313]]]],[[],36],[[],[[36,[302]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[10,[[36,[318,207]]]],[[59,302,328,[15,[272]],[15,[270]],[15,[143]]],[[36,[294,207]]]],[317,[[36,[258,207]]]],[[[6,[330]]],[[36,[294,207]]]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[291,[[36,[320,207]]]],[37,[[36,[321,207]]]],[143,[[36,[322,207]]]],[[39,202,312],[[155,[[327,[39]]]]]],[[2,202,312,[61,[[61,[313]]]]],[[155,[[334,[[13,[81]],2]]]]]],[[[0,[235,214,236]],202,[61,[[61,[313]]]],312],[[36,[[335,[[0,[235,214,236]]]],131]]]],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[326,22],0,0,0,0,[[[327,[39]],[337,[131]]],155],[[[61,[37]],5,[15,[130]],22,324],155],[[39,317],[[36,[65,207]]]],[[324,[6,[315]],[61,[37]]],155],0,[[316,339],[[36,[22,286]]]],[[317,339],[[36,[22,286]]]],[[316,340],54],[[317,340],54],0,0,0,0,[[222,[82,[[13,[[6,[37]]]]]]],[[36,[226,131]]]],[[222,226,[82,[[13,[[6,[37]]]]]],22],[[36,[[176,[[103,[81]]]],131]]]],0,0,0,[1],[1],[[[145,[72]]],[[6,[72]]]],[[[142,[72]]],[[6,[72]]]],[[]],[[]],[[]],[[]],[[[142,[72]]],[[129,[72]]]],[[[145,[72]]],22],[[[145,[[0,[16,72]]]]],[[145,[[0,[16,72]]]]]],[[[142,[[0,[16,72]]]]],[[142,[[0,[16,72]]]]]],[[]],[[]],[[],[[145,[72]]]],[[],[[142,[72]]]],[[[142,[72]]],[[6,[72]]]],[[[145,[[0,[28,72]]]],[145,[[0,[28,72]]]]],5],[[[142,[[0,[28,72]]]],[142,[[0,[28,72]]]]],5],[[],5],[[[145,[72]],22]],[[[142,[72]]],72],[[[145,[[0,[32,72]]]],40],115],[[[142,[[0,[32,72]]]],40],115],[[]],[[[145,[143]]],[[145,[185]]]],[[[145,[72]]],[[142,[72]]]],[[]],[[[142,[143]]],[[142,[185]]]],[[]],[[]],[[[145,[72]]],[[61,[72]]]],[[[142,[72]]],[[129,[72]]]],[[[142,[72]]],[[3,[[142,[72]],[145,[72]]]]]],[[[145,[72]]],72],[[[142,[72]]],72],[[[145,[72]]],22],[[[142,[72]]],22],[[[145,[72]]],22],[[[142,[72]]],22],[[[142,[72]]],2],[[],[[145,[72]]]],[[],[[142,[72]]]],[[[61,[72]]],[[145,[72]]]],[[[129,[72]]],[[142,[72]]]],[22,[[145,[72]]]],[[[145,[72]]],[[15,[72]]]],[[[142,[72]]],72],[[[145,[72]],22]],[[[145,[72]]]],[[[142,[72]],22,22]],[[[142,[72]],22,22]],[[[145,[72]],22]],[[[142,[72]],22]],[[[145,[72]],22]],[[[142,[72]],22]],[[]],[[]],[[[145,[72]],2],[[36,[131]]]],[[[145,[72]],[145,[72]]],[[36,[131]]]],[[[145,[72]],[142,[72]],22,22],[[36,[131]]]],[[[61,[72]]],[[36,[[145,[72]]]]]],[[],36],[[[145,[185]]],[[36,[[145,[143]]]]]],[[],36],[[[129,[72]]],[[36,[[142,[72]]]]]],[[[142,[185]]],[[36,[[142,[143]]]]]],[[[61,[72]]],[[36,[[142,[72]]]]]],[34,[[36,[[145,[72]],131]]]],[2,[[36,[[145,[72]],131]]]],[[],36],[[],36],[[[145,[72]],72],[[36,[131]]]],[[[145,[72]],22],[[36,[131]]]],[[],66],[[],66],[22,[[145,[72]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[],92],[[[341,[83]]],92],[[[184,[74]]],92],[[[342,[72]]],92],[[[343,[72]]],92],[187,92],[[[344,[72]]],92],[345,92],[346,92],[347,92],[348,92],[349,92],[350,92],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[341,[[0,[16,83]]]]],[[341,[[0,[16,83]]]]]],[[[184,[[0,[16,74]]]]],[[184,[[0,[16,74]]]]]],[[[342,[[0,[16,72]]]]],[[342,[[0,[16,72]]]]]],[[[343,[[0,[16,72]]]]],[[343,[[0,[16,72]]]]]],[187,187],[[[344,[[0,[16,72]]]]],[[344,[[0,[16,72]]]]]],[345,345],[346,346],[347,347],[348,348],[349,349],[350,350],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],110],[[[341,[83]]],110],[[[184,[74]]],110],[[[342,[72]]],110],[[[343,[72]]],110],[187,110],[[[344,[72]]],110],[345,110],[346,110],[347,110],[348,110],[349,110],[350,110],[[],346],[[135,135],5],[[[341,[83]],[341,[83]]],5],[[[184,[[0,[28,74]]]],[184,[[0,[28,74]]]]],5],[[[342,[[0,[28,72]]]],[342,[[0,[28,72]]]]],5],[[[343,[[0,[28,72]]]],[343,[[0,[28,72]]]]],5],[[187,187],5],[[[344,[72]],[344,[72]]],5],[[345,345],5],[[346,346],5],[[347,347],5],[[348,348],5],[[349,349],5],[[350,350],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[[341,[[0,[32,83]]]],40],115],[[[184,[[0,[32,74]]]],40],115],[[[342,[[0,[32,72]]]],40],115],[[[343,[[0,[32,72]]]],40],115],[[187,40],115],[[[344,[[0,[32,72]]]],40],115],[[345,40],115],[[346,40],115],[[347,40],115],[[348,40],115],[[349,40],115],[[350,40],115],[[]],[[]],[[[15,[74]]],[[184,[74]]]],[[[15,[[27,[59]]]]],[[342,[72]]]],[[]],[[]],[[[15,[[27,[[61,[37]]]]]]],[[343,[72]]]],[[[15,[5]]],187],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],5],[[[341,[83]]],5],[[[184,[74]]],5],[[[342,[72]]],5],[[[343,[72]]],5],[187,5],[[[344,[72]]],5],[345,5],[346,5],[347,5],[348,5],[349,5],[350,5],[[110,[15,[[103,[135]]]]],[[341,[83]]]],[[110,[15,[74]]],[[184,[74]]]],[[[15,[[27,[59]]]]],[[342,[72]]]],[[[15,[[27,[[61,[37]]]]]]],[[343,[72]]]],[[[15,[5]]],187],[[110,[15,[[103,[81]]]]],[[344,[72]]]],[[110,[15,[[103,[81]]]]],345],[[],346],[[110,[15,[[61,[[103,[135]]]]]]],347],[[110,[15,[[103,[81]]]]],348],[[110,[15,[[27,[[61,[37]]]]]]],349],[[110,144,[103,[135]]],350],[[81,22],[[103,[135]]]],[[[184,[74]],110],[[184,[74]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[350,144],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[[341,[83]]],[[15,[[103,[135]]]]]],[[[184,[74]]],[[15,[74]]]],[[[342,[72]]],[[15,[10]]]],[[[343,[72]]],[[15,[[6,[37]]]]]],[187,[[15,[5]]]],[349,[[15,[[6,[37]]]]]],[350,[[103,[135]]]],[[[344,[72]]],[[103,[81]]]],[345,[[103,[81]]]],[347,[[6,[[103,[135]]]]]],[348,[[15,[[103,[81]]]]]],0,0,0,0,0,0,[[185,195,186,351],185],[[185,195,186],185],[143,352],[143,353],[185,352],[185,353],[10,[[155,[354]]]],[143,355],[143,355],[185,355],[185,355],[185,353],[185,353],[185,353],[[185,195,351],[[356,[351]]]],[[185,195],353],[185,353],[[195,195],165],[[[76,[72]],10],[[70,[185]]]],[[10,10],[[15,[185]]]],[[10,10,195],[[15,[185]]]],[[[76,[72]],10,59],[[155,[[70,[185]]]]]],[[10,10,351],[[15,[185]]]],[[10,10,351,195],[[15,[185]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[190,190],[186,186],[192,192],[357,357],[205,205],[[]],[[]],[[]],[[]],[[]],[[357,357],19],[190,143],[186,143],0,[[],190],[[],186],[[],192],[[],357],[[190,190],5],[[186,186],5],[[192,192],5],[[357,357],5],[[205,205],5],[[],5],[[],5],[[],5],[[],5],0,[[190,40],115],[[190,40],115],[[186,40],115],[[186,40],115],[[192,40],115],[[192,40],115],[[357,40],115],[[357,40],115],[[205,40],115],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[22],[[]],[[],190],[[],186],[[],192],[[],357],[358,192],[164,192],[[]],[[],190],[[],186],[[],192],[[],357],[[]],[22,15],[[71,71],357],[[190,47]],[[186,47]],[[357,47]],[[205,47]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],5],[[],5],[[],5],[[],5],[190,143],[186,143],0,[190],[186],[357],[[166,22],[[174,[166]]]],[166,[[359,[166]]]],[[199,199],[[360,[199]]]],[[143,143],190],[[143,143,185],186],[[[174,[166]]],15],[[[359,[166]]],15],[[[360,[199]]],15],[186,185],[[357,357],[[15,[19]]]],[[22,22],[[15,[360]]]],[[22,22],[[15,[360]]]],0,[[[174,[166]]]],[[[359,[166]]]],[[[360,[199]]]],[[]],[190],[186],[192],[357],[192,358],[192,164],[[]],[190],[186],[192],[357],[[]],[[]],[[]],[[]],[[]],[[]],[[],59],[[],59],[[],59],[[],59],[[],22],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[361,361]],[[362,362]],[[363,363]],[[364,364]],[[365,365]],[[366,366]],[[367,367]],[[368,368]],[[369,369]],[[370,370]],[[371,371]],[[361,361]],[[362,362]],[[363,363]],[[364,364]],[[365,365]],[[366,366]],[[367,367]],[[368,368]],[[369,369]],[[370,370]],[[371,371]],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[361,361],[362,362],[363,363],[364,364],[365,365],[366,366],[367,367],[368,368],[369,369],[370,370],[372,372],[373,373],[374,374],[371,371],[375,375],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],361],[[],362],[[],363],[[],364],[[],365],[[],366],[[],367],[[],368],[[],369],[[],370],[[],372],[[],373],[[],374],[[],371],[[],375],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[6],[[[6,[37]]],361],[[[6,[358]]],362],[[[6,[291]]],363],[[[6,[65]]],364],[[[6,[144]]],365],[[[6,[376]]],366],[[[6,[143]]],367],[[[6,[185]]],368],[[[6,[164]]],369],[[[6,[165]]],370],[[[6,[192]]],372],[[[6,[190]]],373],[[[6,[186]]],374],[[[6,[71]]],371],[[[6,[357]]],375],[6],[[[6,[37]],37],361],[[[6,[358]],358],362],[[[6,[291]],291],363],[[[6,[65]],65],364],[[[6,[144]],144],365],[[[6,[376]],376],366],[[[6,[143]],143],367],[[[6,[185]],185],368],[[[6,[164]],164],369],[[[6,[165]],165],370],[[[6,[192]],192],372],[[[6,[190]],190],373],[[[6,[186]],186],374],[[[6,[71]],71],371],[[[6,[357]],357],375],0,0,0,0,0,0,[[361,22]],[[362,22]],[[363,22]],[[364,22]],[[365,22]],[[366,22]],[[367,22]],[[368,22]],[[369,22]],[[370,22]],[[372,22]],[[373,22]],[[374,22]],[[371,22]],[[375,22]],[[361,22]],[[362,22]],[[363,22]],[[364,22]],[[365,22]],[[366,22]],[[367,22]],[[368,22]],[[369,22]],[[370,22]],[[372,22]],[[373,22]],[[374,22]],[[371,22]],[[375,22]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[361,37],[362,358],[363,291],[364,65],[365,144],[366,376],[367,143],[368,185],[369,164],[370,165],[371,71],[[361,361],361],[[362,362],362],[[363,363],363],[[364,364],364],[[365,365],365],[[366,366],366],[[367,367],367],[[368,368],368],[[369,369],369],[[370,370],370],[[371,371],371],[361,37],[362,358],[363,291],[364,65],[365,144],[366,376],[367,143],[368,185],[369,164],[370,165],[371,71],[[361,361],361],[[362,362],362],[[363,363],363],[[364,364],364],[[365,365],365],[[366,366],366],[[367,367],367],[[368,368],368],[[369,369],369],[[370,370],370],[[371,371],371],0,[[],361],[[],362],[[],363],[[],364],[[],365],[[],366],[[],367],[[],368],[[],369],[[],370],[[],371],[[],361],[[],362],[[],363],[[],364],[[],365],[[],366],[[],367],[[],368],[[],369],[[],370],[[],371],[[]],[[361,65,361],361],[[362,291,362],362],[[363,358,363],363],[[364,37,364],364],[[365,65,365],365],[[366,291,366],366],[[367,358,367],367],[[368,37,368],368],[[369,358,369],369],[[370,37,370],370],[[372,291,372],372],[[373,37,373],373],[[374,37,374],374],[[371,37,371],371],[[375,37,375],375],[361,37],[362,358],[363,291],[364,65],[365,144],[366,376],[367,143],[368,185],[369,164],[370,165],[371,71],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],[[],66],0,0,0,0,[196,[[61,[37]]]],[[196,[61,[37]]]],[196,59]],"c":[1814,1815],"p":[[3,"Private"],[8,"Iterator"],[4,"Either"],[8,"FnMut"],[15,"bool"],[15,"slice"],[8,"AsMut"],[3,"CStr"],[3,"OsStr"],[15,"str"],[3,"Path"],[3,"Pin"],[8,"AsRef"],[8,"Error"],[4,"Option"],[8,"Clone"],[3,"AHashMap"],[8,"Ord"],[4,"Ordering"],[8,"FromIterator"],[8,"BufRead"],[15,"usize"],[3,"RandomState"],[8,"Deref"],[8,"DerefMut"],[8,"FnOnce"],[8,"Into"],[8,"PartialEq"],[8,"Eq"],[8,"Hash"],[8,"BuildHasher"],[8,"Debug"],[8,"Extend"],[8,"IntoIterator"],[8,"Copy"],[4,"Result"],[15,"u8"],[3,"Error"],[8,"Write"],[3,"Formatter"],[3,"Error"],[8,"Display"],[3,"HashMap"],[15,"array"],[8,"Sized"],[8,"Borrow"],[8,"Hasher"],[3,"IntoKeys"],[3,"IntoValues"],[8,"Default"],[8,"ExactSizeIterator"],[8,"DoubleEndedIterator"],[8,"PartialOrd"],[8,"Future"],[3,"Context"],[4,"Poll"],[3,"Demand"],[8,"Read"],[3,"String"],[3,"Global"],[3,"Vec"],[8,"VarInt"],[8,"Seek"],[4,"SeekFrom"],[15,"u64"],[3,"TypeId"],[3,"Arguments"],[8,"NativeArithmetics"],[8,"Add"],[3,"PrimitiveArray"],[15,"i128"],[8,"Offset"],[3,"MutableBinaryArray"],[8,"NativeType"],[3,"MutableUtf8Array"],[3,"Utf8Array"],[3,"MutablePrimitiveArray"],[8,"Fn"],[3,"BooleanArray"],[3,"BinaryArray"],[8,"Array"],[3,"Arc"],[8,"DictionaryKey"],[3,"DictionaryArray"],[3,"FixedSizeBinaryArray"],[3,"FixedSizeListArray"],[3,"ListArray"],[3,"MapArray"],[3,"NullArray"],[3,"StructArray"],[3,"UnionArray"],[8,"Any"],[3,"MutableBinaryValuesArray"],[3,"MutableBooleanArray"],[8,"MutableArray"],[3,"MutableDictionaryArray"],[3,"MutableFixedSizeBinaryArray"],[3,"MutableFixedSizeListArray"],[3,"MutableListArray"],[3,"MutableNullArray"],[3,"MutableStructArray"],[3,"MutableUtf8ValuesArray"],[3,"Box"],[8,"CheckedAdd"],[8,"CheckedDiv"],[8,"CheckedMul"],[8,"CheckedRem"],[8,"CheckedSub"],[3,"ArrayValuesIter"],[4,"DataType"],[8,"Div"],[8,"NumCast"],[8,"TrustedLen"],[3,"Field"],[6,"Result"],[3,"GrowableBinary"],[3,"GrowableBoolean"],[15,"never"],[3,"GrowableDictionary"],[3,"GrowableFixedSizeBinary"],[3,"GrowableFixedSizeList"],[3,"GrowableList"],[3,"GrowableMap"],[3,"GrowableNull"],[3,"GrowablePrimitive"],[3,"GrowableStruct"],[3,"GrowableUnion"],[3,"GrowableUtf8"],[3,"Buffer"],[3,"Bitmap"],[4,"Error"],[3,"BitmapIter"],[4,"ZipValidity"],[6,"BinaryValueIter"],[8,"Scalar"],[3,"ChunksExact"],[6,"ListValuesIter"],[3,"Iter"],[6,"Utf8ValuesIter"],[6,"HashedMap"],[8,"Mul"],[3,"OffsetsBuffer"],[15,"i32"],[15,"i8"],[3,"Offsets"],[3,"MutableBitmap"],[8,"OverflowingAdd"],[8,"OverflowingMul"],[8,"OverflowingSub"],[8,"Rem"],[8,"SaturatingAdd"],[8,"SaturatingMul"],[8,"SaturatingSub"],[8,"Sub"],[6,"Result"],[8,"TryExtend"],[8,"TryExtendFromSelf"],[8,"TryPush"],[8,"WrappingAdd"],[8,"WrappingMul"],[8,"WrappingSub"],[8,"Growable"],[6,"DynComparator"],[15,"f32"],[15,"f64"],[8,"BitChunk"],[3,"BitChunks"],[3,"IntoIter"],[3,"Bytes"],[3,"SlicesIterator"],[3,"ZipValidityIter"],[3,"BitChunksExact"],[3,"BitChunksExactMut"],[3,"BitChunkIter"],[3,"ForeignVec"],[3,"Chunk"],[8,"Simd"],[8,"Sum"],[8,"CheckedNeg"],[8,"One"],[8,"Neg"],[8,"Pow"],[8,"WrappingNeg"],[3,"PrimitiveScalar"],[15,"i64"],[3,"months_days_ns"],[3,"BooleanScalar"],[8,"FromLexical"],[3,"CastOptions"],[3,"days_ms"],[8,"Float"],[3,"f16"],[8,"ToPrimitive"],[8,"AsPrimitive"],[4,"TimeUnit"],[8,"ToLexical"],[8,"Simd8"],[6,"Filter"],[8,"Index"],[4,"PhysicalType"],[4,"IntegerType"],[3,"Schema"],[4,"UnionMode"],[4,"IntervalUnit"],[4,"PrimitiveType"],[6,"Metadata"],[4,"ParquetError"],[3,"FromUtf8Error"],[3,"Error"],[4,"OutOfSpecKind"],[3,"Utf8Error"],[3,"Utf8Error"],[3,"TryReserveError"],[8,"Send"],[8,"Sync"],[3,"ArrowSchema"],[3,"ArrowArray"],[3,"ArrowArrayStream"],[3,"ArrowArrayStreamReader"],[3,"IpcField"],[3,"IpcSchema"],[3,"FileMetadata"],[3,"StreamMetadata"],[3,"FileReader"],[3,"StreamReader"],[6,"Dictionaries"],[4,"StreamState"],[4,"Compression"],[3,"Record"],[3,"StreamWriter"],[3,"FileWriter"],[3,"WriteOptions"],[3,"Buffer"],[3,"FieldNode"],[8,"AsyncWrite"],[8,"Unpin"],[3,"FileSink"],[3,"StreamSink"],[3,"Convert"],[3,"Empty"],[8,"FallibleStreamingIterator"],[3,"Filter"],[3,"Fuse"],[3,"Map"],[3,"MapRef"],[3,"MapErr"],[3,"Skip"],[3,"SkipWhile"],[3,"Take"],[3,"TakeWhile"],[3,"RecordSerializer"],[3,"Serializer"],[8,"DoubleEndedFallibleStreamingIterator"],[3,"Serializer"],[3,"FileWriter"],[3,"ColumnChunkMetaData"],[8,"Index"],[3,"FileMetaData"],[8,"AsyncRead"],[8,"AsyncSeek"],[4,"State"],[8,"PageIterator"],[3,"Decompressor"],[3,"BasicDecompressor"],[3,"ReadColumnIterator"],[3,"ColumnDescriptor"],[3,"RowGroupMetaData"],[4,"DataPageHeader"],[4,"ParquetTimeUnit"],[4,"PrimitiveLogicalType"],[4,"GroupLogicalType"],[4,"PrimitiveConvertedType"],[4,"InitNested"],[3,"ColumnChunk"],[3,"Encoding"],[8,"Pages"],[3,"PrimitiveType"],[6,"ArrayIter"],[4,"Compression"],[3,"NestedState"],[4,"CompressedPage"],[4,"Page"],[3,"TryFromIntError"],[3,"TryFromSliceError"],[4,"Error"],[4,"Error"],[4,"TimeUnit"],[3,"ColumnIterator"],[6,"PageFilter"],[3,"PageReader"],[15,"u32"],[3,"ColumnMetaData"],[3,"Descriptor"],[4,"ParquetType"],[6,"NestedArrayIter"],[3,"StructIterator"],[3,"FilteredPage"],[3,"FileReader"],[3,"RowGroupReader"],[3,"RowGroupDeserializer"],[3,"PageMetaData"],[4,"ParquetPhysicalType"],[3,"PageLocation"],[8,"Statistics"],[4,"LogicalType"],[3,"Interval"],[4,"FieldPageStatistics"],[3,"ColumnPageStatistics"],[3,"Statistics"],[3,"Compressor"],[3,"DynStreamingIterator"],[3,"WriteOptions"],[4,"Encoding"],[3,"DynIter"],[4,"Nested"],[3,"KeyValue"],[3,"ThriftFileMetaData"],[3,"SchemaDescriptor"],[4,"CompressionOptions"],[3,"BrotliLevel"],[3,"GzipLevel"],[3,"ZstdLevel"],[3,"FieldInfo"],[4,"Version"],[4,"ColumnOrder"],[3,"CompressedDataPage"],[3,"FileWriter"],[4,"Repetition"],[4,"GroupConvertedType"],[3,"SchemaElement"],[3,"RowGroup"],[4,"ColumnOrder"],[4,"EncryptionAlgorithm"],[3,"RowGroupIterator"],[3,"FileSink"],[8,"TInputProtocol"],[6,"RowGroupIter"],[8,"TInputStreamProtocol"],[8,"TOutputProtocol"],[8,"TOutputStreamProtocol"],[3,"DictionaryScalar"],[3,"Utf8Scalar"],[3,"BinaryScalar"],[3,"ListScalar"],[3,"MapScalar"],[3,"NullScalar"],[3,"StructScalar"],[3,"FixedSizeListScalar"],[3,"FixedSizeBinaryScalar"],[3,"UnionScalar"],[8,"TimeZone"],[3,"NaiveDate"],[3,"NaiveDateTime"],[3,"FixedOffset"],[3,"NaiveTime"],[3,"DateTime"],[3,"i256"],[15,"u16"],[3,"BitChunkOnes"],[3,"IndexRange"],[3,"u8x64"],[3,"u16x32"],[3,"u32x16"],[3,"u64x8"],[3,"i8x64"],[3,"i16x32"],[3,"i32x16"],[3,"i64x8"],[3,"f32x16"],[3,"f64x8"],[3,"i128x8"],[3,"f16x32"],[3,"days_msx8"],[3,"months_days_nsx8"],[3,"i256x8"],[15,"i16"],[8,"GenericBinaryArray"],[8,"PushUnchecked"],[8,"BitChunkIterExact"],[8,"SimdOrd"],[8,"Sum"],[8,"ArrayAdd"],[8,"ArrayCheckedAdd"],[8,"ArrayCheckedDiv"],[8,"ArrayCheckedMul"],[8,"ArrayCheckedRem"],[8,"ArrayCheckedSub"],[8,"ArrayDiv"],[8,"ArrayMul"],[8,"ArrayOverflowingAdd"],[8,"ArrayOverflowingMul"],[8,"ArrayOverflowingSub"],[8,"ArrayRem"],[8,"ArraySaturatingAdd"],[8,"ArraySaturatingMul"],[8,"ArraySaturatingSub"],[8,"ArraySub"],[8,"ArrayWrappingAdd"],[8,"ArrayWrappingMul"],[8,"ArrayWrappingSub"],[8,"Simd8PartialEq"],[8,"Simd8Lanes"],[8,"Simd8PartialOrd"],[13,"InvalidBuffer"],[13,"InvalidBuffersLength"],[13,"InvalidBitmap"],[13,"InvalidId"],[13,"InvalidIdDataType"],[8,"MutStreamingIterator"],[13,"GroupType"],[13,"Time"],[13,"Timestamp"],[8,"NativeSimd"],[8,"FromMaskChunk"]]},\ +"arrow_format":{"doc":"Generated code for Apache Arrow IPC and flight …","t":"ANDNNDDDDEDDNNDDNDNNEDNNDENNDNNDNNDNNDDDENNDNNDEEDDDDDNNDDNNDDNNDDDNDNNDDNNDEDDDNNDDNNDDNNDDNNDNNDNNDDEEDENNNNNDNNDEDNNDNDNNDNNNEDNNDDNNEDNNDDNNDEDDNNDDNNDDDDNNDEDNNDEEDNNEDNDNNDNNNNNNNLMLLLMMMLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMLMLLMMLMLMLLLMMMLMLMLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLMLMLMLLLMMMLMLMLMLMLLMMLMLMLMLMLLMMCLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLMLMLMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLMMMMMLMLLMM","n":["ipc","Big","Binary","Binary","Binary","BinaryRef","Block","BlockRef","BodyCompression","BodyCompressionMethod","BodyCompressionRef","Bool","Bool","Bool","BoolRef","Buffer","Buffer","BufferRef","Column","CompressedBody","CompressionType","Date","Date","Date","DateRef","DateUnit","Day","DayTime","Decimal","Decimal","Decimal","DecimalRef","Dense","DenseArray","DictionaryBatch","DictionaryBatch","DictionaryBatch","DictionaryBatchRef","DictionaryEncoding","DictionaryEncodingRef","DictionaryKind","DictionaryReplacement","Double","Duration","Duration","Duration","DurationRef","Endianness","Feature","Field","FieldNode","FieldNodeRef","FieldRef","FixedSizeBinary","FixedSizeBinary","FixedSizeBinary","FixedSizeBinaryRef","FixedSizeList","FixedSizeList","FixedSizeList","FixedSizeListRef","FloatingPoint","FloatingPoint","FloatingPoint","FloatingPointRef","Footer","FooterRef","Half","Int","Int","Int","IntRef","Interval","Interval","Interval","IntervalRef","IntervalUnit","KeyValue","KeyValueRef","LargeBinary","LargeBinary","LargeBinary","LargeBinaryRef","LargeList","LargeList","LargeList","LargeListRef","LargeUtf8","LargeUtf8","LargeUtf8","LargeUtf8Ref","List","List","List","ListRef","Little","Lz4Frame","Map","Map","Map","MapRef","Message","MessageHeader","MessageHeaderRef","MessageRef","MetadataVersion","Microsecond","Millisecond","Millisecond","MonthDayNano","Nanosecond","Null","Null","Null","NullRef","Precision","RecordBatch","RecordBatch","RecordBatch","RecordBatchRef","Row","Schema","Schema","Schema","SchemaRef","Second","Single","Sparse","SparseMatrixCompressedAxis","SparseMatrixIndexCsx","SparseMatrixIndexCsx","SparseMatrixIndexCsx","SparseMatrixIndexCsxRef","SparseTensor","SparseTensor","SparseTensor","SparseTensorIndex","SparseTensorIndexCoo","SparseTensorIndexCoo","SparseTensorIndexCoo","SparseTensorIndexCooRef","SparseTensorIndexCsf","SparseTensorIndexCsf","SparseTensorIndexCsf","SparseTensorIndexCsfRef","SparseTensorIndexRef","SparseTensorRef","Struct","Struct","Struct","StructRef","Tensor","Tensor","Tensor","TensorDim","TensorDimRef","TensorRef","Time","Time","Time","TimeRef","TimeUnit","Timestamp","Timestamp","Timestamp","TimestampRef","Type","TypeRef","Union","Union","Union","UnionMode","UnionRef","Unused","Utf8","Utf8","Utf8","Utf8Ref","V1","V2","V3","V4","V5","YearMonth","Zstd","axis_order","axis_order","bit_width","bit_width","bit_width","bit_width","bit_width","bit_width","body_length","body_length","body_length","body_length","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffers","buffers","byte_width","byte_width","children","children","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","codec","codec","compressed_axis","compressed_axis","compression","compression","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create","create_binary","create_bool","create_date","create_decimal","create_dictionary_batch","create_duration","create_fixed_size_binary","create_fixed_size_list","create_floating_point","create_int","create_interval","create_large_binary","create_large_list","create_large_utf8","create_list","create_map","create_null","create_record_batch","create_schema","create_sparse_matrix_index_csx","create_sparse_tensor","create_sparse_tensor_index_coo","create_sparse_tensor_index_csf","create_struct","create_tensor","create_time","create_timestamp","create_union","create_utf8","custom_metadata","custom_metadata","custom_metadata","custom_metadata","custom_metadata","custom_metadata","custom_metadata","custom_metadata","data","data","data","data","data","data","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","deserialize","dictionaries","dictionaries","dictionary","dictionary","dictionary_kind","dictionary_kind","endianness","endianness","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","features","features","fields","fields","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","header","header","id","id","id","id","index_type","index_type","indices_buffer","indices_buffer","indices_buffer","indices_buffer","indices_buffers","indices_buffers","indices_strides","indices_strides","indices_type","indices_type","indices_type","indices_type","indices_type","indices_type","indptr_buffer","indptr_buffer","indptr_buffers","indptr_buffers","indptr_type","indptr_type","indptr_type","indptr_type","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_canonical","is_canonical","is_delta","is_delta","is_ordered","is_ordered","is_signed","is_signed","key","key","keys_sorted","keys_sorted","length","length","length","length","length","length","list_size","list_size","meta_data_length","meta_data_length","method","method","mode","mode","name","name","name","name","nodes","nodes","non_zero_length","non_zero_length","null_count","null_count","nullable","nullable","offset","offset","offset","offset","planus","precision","precision","precision","precision","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","read_as_root","record_batches","record_batches","scale","scale","schema","schema","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","serialize","shape","shape","shape","shape","size","size","sparse_index","sparse_index","strides","strides","timezone","timezone","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_","type_","type_","type_","type_","type_","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_ids","type_ids","unit","unit","unit","unit","unit","unit","unit","unit","unit","unit","value","value","version","version","version","version"],"q":[[0,"arrow_format"],[1,"arrow_format::ipc"]],"d":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Re-export of flatbuffers","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,72,0,64,65,0,0,0,0,0,0,0,64,65,0,0,79,0,90,20,0,0,64,65,0,0,52,59,0,64,65,0,33,68,0,85,86,0,0,0,0,20,37,0,64,65,0,0,0,0,0,0,0,0,64,65,0,0,64,65,0,0,64,65,0,0,0,37,0,64,65,0,0,64,65,0,0,0,0,0,64,65,0,0,64,65,0,0,64,65,0,0,64,65,0,72,78,0,64,65,0,0,0,0,0,0,55,52,55,59,55,0,64,65,0,0,0,85,86,0,90,0,85,86,0,55,37,33,0,0,94,95,0,0,85,86,0,0,94,95,0,0,94,95,0,0,0,0,64,65,0,0,85,86,0,0,0,0,64,65,0,0,0,64,65,0,0,0,0,64,65,0,0,20,0,64,65,0,19,19,19,19,19,59,78,1,93,5,6,7,36,51,56,8,10,18,87,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,11,82,14,48,15,71,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,81,80,92,91,11,82,16,21,23,25,27,29,31,34,36,38,40,42,44,46,48,49,51,53,56,57,60,62,66,69,71,74,80,82,83,87,88,91,93,96,98,100,64,64,64,64,85,64,64,64,64,64,64,64,64,64,64,64,64,85,85,94,85,94,94,64,85,64,64,64,64,17,15,75,10,16,71,74,87,84,97,101,83,96,100,16,18,19,20,21,23,25,27,29,31,33,34,36,37,38,40,42,44,46,48,49,51,52,53,55,56,57,59,60,62,64,66,68,69,71,72,73,74,76,78,79,80,82,83,85,87,88,90,91,93,94,96,98,100,17,16,15,71,70,69,75,74,16,18,19,20,21,23,25,27,29,31,33,34,36,37,38,40,42,44,46,48,49,51,52,53,55,56,57,59,60,62,64,66,68,69,71,72,73,74,76,78,79,80,82,83,85,87,88,90,91,93,94,96,98,100,19,20,33,37,52,55,59,68,72,78,79,90,75,74,75,74,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,10,87,70,84,69,83,70,69,89,92,88,91,1,93,89,88,89,92,1,88,91,93,92,91,1,93,92,1,91,93,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,89,88,84,83,70,69,5,36,67,66,32,31,12,77,11,73,76,82,30,29,8,18,81,80,35,34,15,99,71,98,11,82,97,96,77,76,15,71,8,12,18,73,0,39,6,38,51,17,22,24,26,28,30,32,35,5,39,41,43,45,47,14,50,6,54,7,58,61,63,67,70,15,75,81,11,84,10,89,92,1,97,99,101,17,16,6,51,17,16,16,18,19,20,21,23,25,27,29,31,33,34,36,37,38,40,42,44,46,48,49,51,52,53,55,56,57,59,60,62,64,66,68,69,71,72,73,74,76,78,79,80,82,83,85,87,88,90,91,93,94,96,98,100,97,101,96,100,99,98,97,96,101,100,58,57,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,16,16,17,18,18,8,19,19,20,20,21,21,22,23,23,24,25,25,26,27,27,28,29,29,30,31,31,32,33,33,34,34,35,36,36,5,37,37,38,38,39,40,40,41,42,42,43,44,44,45,46,46,47,48,48,14,49,49,50,51,51,6,52,52,53,53,54,55,55,56,56,7,57,57,58,59,59,60,60,61,62,62,63,64,64,65,66,66,67,68,68,69,69,70,71,71,15,72,72,73,73,12,74,74,75,76,76,77,78,78,79,79,80,80,81,82,82,11,83,83,84,85,85,86,87,87,10,88,88,89,90,90,91,91,92,93,93,1,94,94,95,96,96,97,98,98,99,100,100,101,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,15,97,101,71,96,100,16,17,18,8,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,5,37,38,39,40,41,42,43,44,45,46,47,48,14,49,50,51,6,52,53,54,55,56,7,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,15,72,73,12,74,75,76,77,78,79,80,81,82,11,83,84,85,86,87,10,88,89,90,91,92,93,1,94,95,96,97,98,99,100,101,35,34,54,7,58,61,63,53,56,57,60,62,67,66,17,10,16,87],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,[[4,[[3,[2]]]]]],0,[5,[[4,[2]]]],[6,[[4,[2]]]],[7,[[4,[2]]]],0,0,0,[8,9],[10,[[4,[9]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[11,[[4,[[13,[[3,[12]]]]]]]],0,[14,[[4,[2]]]],0,[15,[[4,[[13,[[3,[[4,[15]]]]]]]]]],0,[16,16],[17,17],[18,18],[8,8],[19,19],[20,20],[21,21],[22,22],[23,23],[24,24],[25,25],[26,26],[27,27],[28,28],[29,29],[30,30],[31,31],[32,32],[33,33],[34,34],[35,35],[36,36],[5,5],[37,37],[38,38],[39,39],[40,40],[41,41],[42,42],[43,43],[44,44],[45,45],[46,46],[47,47],[48,48],[14,14],[49,49],[50,50],[51,51],[6,6],[52,52],[53,53],[54,54],[55,55],[56,56],[7,7],[57,57],[58,58],[59,59],[60,60],[61,61],[62,62],[63,63],[64,64],[65,65],[66,66],[67,67],[68,68],[69,69],[70,70],[71,71],[15,15],[72,72],[73,73],[12,12],[74,74],[75,75],[76,76],[77,77],[78,78],[79,79],[80,80],[81,81],[82,82],[11,11],[83,83],[84,84],[85,85],[86,86],[87,87],[10,10],[88,88],[89,89],[90,90],[91,91],[92,92],[93,93],[1,1],[94,94],[95,95],[96,96],[97,97],[98,98],[99,99],[100,100],[101,101],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[81,[[4,[78]]]],0,[92,[[4,[90]]]],0,[11,[[4,[[13,[81]]]]]],0,[[102,[103,[19,19]],[105,[[104,[74]]]],[105,[[104,[[106,[18]]]]]],[105,[[104,[[106,[18]]]]]],[105,[[104,[[106,[[104,[66]]]]]]]]],[[104,[16]]]],[102,[[104,[21]]]],[102,[[104,[23]]]],[102,[[104,[25]]]],[102,[[104,[27]]]],[[102,[103,[2,2]]],[[104,[29]]]],[[102,[103,[107,107]]],[[104,[31]]]],[[102,[103,[33,33]],[105,[[104,[[106,[2]]]]]]],[[104,[34]]]],[[102,[103,[2,2]],[103,[107,107]]],[[104,[36]]]],[[102,[103,[37,37]]],[[104,[38]]]],[102,[[104,[40]]]],[102,[[104,[42]]]],[102,[[104,[44]]]],[102,[[104,[46]]]],[[102,[103,[2,2]]],[[104,[48]]]],[102,[[104,[49]]]],[[102,[103,[2,2]],[103,[2,2]],[103,[2,2]]],[[104,[51]]]],[[102,[103,[52,52]]],[[104,[53]]]],[[102,[103,[55,55]],[103,[2,2]]],[[104,[56]]]],[[102,[103,[55,55]],[105,[[104,[108]]]]],[[104,[57]]]],[[102,[103,[59,59]]],[[104,[60]]]],[[102,[103,[55,55]]],[[104,[62]]]],[[102,[105,[[104,[108]]]],[105,[[104,[108]]]]],[[104,[66]]]],[[102,[103,[9,9]],[105,[[104,[36]]]],[103,[107,107]],[103,[68,68]]],[[104,[69]]]],[[102,[105,[[104,[108]]]],[103,[107,107]],[109,[64]],[105,[[104,[69]]]],[105,[[104,[[106,[[104,[71]]]]]]]],[105,[[104,[[106,[[104,[66]]]]]]]]],[[104,[71]]]],[[102,[103,[72,72]],[105,[[104,[[106,[[104,[71]]]]]]]],[105,[[104,[[106,[[104,[66]]]]]]]],[105,[[104,[[106,[20]]]]]]],[[104,[74]]]],[[102,[103,[78,78]],[103,[79,79]]],[[104,[80]]]],[[102,[103,[9,9]],[105,[[104,[[106,[76]]]]]],[105,[[104,[[106,[73]]]]]],[105,[[104,[80]]]]],[[104,[82]]]],[[102,[103,[9,9]],[105,[[104,[82]]]],[103,[107,107]]],[[104,[83]]]],[[102,[103,[19,19]],[109,[85]],[103,[9,9]],[105,[[104,[[106,[[104,[66]]]]]]]]],[[104,[87]]]],[[102,[110,[[104,[36]]]],[105,[[104,[[106,[9]]]]]],[110,[73]],[103,[107,107]]],[[104,[88]]]],[[102,[103,[90,90]],[110,[[104,[36]]]],[110,[73]],[110,[[104,[36]]]],[110,[73]]],[[104,[91]]]],[[102,[110,[[104,[36]]]],[110,[[104,[[106,[73]]]]]],[110,[[104,[36]]]],[110,[[104,[[106,[73]]]]]],[110,[[104,[[106,[2]]]]]]],[[104,[93]]]],[[102,[111,[64]],[110,[[104,[[106,[[104,[98]]]]]]]],[103,[9,9]],[111,[94]],[110,[73]]],[[104,[96]]]],[[102,[103,[9,9]],[105,[[104,[108]]]]],[[104,[98]]]],[[102,[111,[64]],[110,[[104,[[106,[[104,[98]]]]]]]],[105,[[104,[[106,[9]]]]]],[110,[73]]],[[104,[100]]]],[[102,[112,[42]]],[[113,[64]]]],[[102,[112,[49]]],[[113,[64]]]],[[102,[112,[53]]],[[113,[64]]]],[[102,[112,[51]]],[[113,[64]]]],[[102,[112,[83]]],[[113,[85]]]],[[102,[112,[62]]],[[113,[64]]]],[[102,[112,[48]]],[[113,[64]]]],[[102,[112,[29]]],[[113,[64]]]],[[102,[112,[38]]],[[113,[64]]]],[[102,[112,[36]]],[[113,[64]]]],[[102,[112,[60]]],[[113,[64]]]],[[102,[112,[46]]],[[113,[64]]]],[[102,[112,[27]]],[[113,[64]]]],[[102,[112,[44]]],[[113,[64]]]],[[102,[112,[25]]],[[113,[64]]]],[[102,[112,[31]]],[[113,[64]]]],[[102,[112,[21]]],[[113,[64]]]],[[102,[112,[82]]],[[113,[85]]]],[[102,[112,[74]]],[[113,[85]]]],[[102,[112,[91]]],[[113,[94]]]],[[102,[112,[96]]],[[113,[85]]]],[[102,[112,[88]]],[[113,[94]]]],[[102,[112,[93]]],[[113,[94]]]],[[102,[112,[23]]],[[113,[64]]]],[[102,[112,[100]]],[[113,[85]]]],[[102,[112,[56]]],[[113,[64]]]],[[102,[112,[57]]],[[113,[64]]]],[[102,[112,[34]]],[[113,[64]]]],[[102,[112,[40]]],[[113,[64]]]],[17,[[4,[[13,[[3,[[4,[67]]]]]]]]]],[15,[[4,[[13,[[3,[[4,[67]]]]]]]]]],[75,[[4,[[13,[[3,[[4,[67]]]]]]]]]],[10,[[4,[[13,[[3,[[4,[67]]]]]]]]]],0,0,0,0,[84,[[4,[[13,[11]]]]]],[97,[[4,[12]]]],[101,[[4,[12]]]],0,0,0,[114,[[115,[16]]]],[114,[[115,[18]]]],[114,[[115,[19]]]],[114,[[115,[20]]]],[114,[[115,[21]]]],[114,[[115,[23]]]],[114,[[115,[25]]]],[114,[[115,[27]]]],[114,[[115,[29]]]],[114,[[115,[31]]]],[114,[[115,[33]]]],[114,[[115,[34]]]],[114,[[115,[36]]]],[114,[[115,[37]]]],[114,[[115,[38]]]],[114,[[115,[40]]]],[114,[[115,[42]]]],[114,[[115,[44]]]],[114,[[115,[46]]]],[114,[[115,[48]]]],[114,[[115,[49]]]],[114,[[115,[51]]]],[114,[[115,[52]]]],[114,[[115,[53]]]],[114,[[115,[55]]]],[114,[[115,[56]]]],[114,[[115,[57]]]],[114,[[115,[59]]]],[114,[[115,[60]]]],[114,[[115,[62]]]],[114,[[115,[64]]]],[114,[[115,[66]]]],[114,[[115,[68]]]],[114,[[115,[69]]]],[114,[[115,[71]]]],[114,[[115,[72]]]],[114,[[115,[73]]]],[114,[[115,[74]]]],[114,[[115,[76]]]],[114,[[115,[78]]]],[114,[[115,[79]]]],[114,[[115,[80]]]],[114,[[115,[82]]]],[114,[[115,[83]]]],[114,[[115,[85]]]],[114,[[115,[87]]]],[114,[[115,[88]]]],[114,[[115,[90]]]],[114,[[115,[91]]]],[114,[[115,[93]]]],[114,[[115,[94]]]],[114,[[115,[96]]]],[114,[[115,[98]]]],[114,[[115,[100]]]],[17,[[4,[[13,[[3,[8]]]]]]]],0,[15,[[4,[[13,[70]]]]]],0,[70,[[4,[68]]]],0,[75,[[4,[72]]]],0,[[16,16],107],[[18,18],107],[[19,19],107],[[20,20],107],[[21,21],107],[[23,23],107],[[25,25],107],[[27,27],107],[[29,29],107],[[31,31],107],[[33,33],107],[[34,34],107],[[36,36],107],[[37,37],107],[[38,38],107],[[40,40],107],[[42,42],107],[[44,44],107],[[46,46],107],[[48,48],107],[[49,49],107],[[51,51],107],[[52,52],107],[[53,53],107],[[55,55],107],[[56,56],107],[[57,57],107],[[59,59],107],[[60,60],107],[[62,62],107],[[64,64],107],[[66,66],107],[[68,68],107],[[69,69],107],[[71,71],107],[[72,72],107],[[73,73],107],[[74,74],107],[[76,76],107],[[78,78],107],[[79,79],107],[[80,80],107],[[82,82],107],[[83,83],107],[[85,85],107],[[87,87],107],[[88,88],107],[[90,90],107],[[91,91],107],[[93,93],107],[[94,94],107],[[96,96],107],[[98,98],107],[[100,100],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[[],107],[75,[[4,[[13,[[3,[[115,[20,116]]]]]]]]]],0,[75,[[4,[[13,[[3,[[4,[15]]]]]]]]]],0,[[16,117],118],[[17,117],118],[[18,117],118],[[8,117],118],[[19,117],118],[[20,117],118],[[21,117],118],[[22,117],118],[[23,117],118],[[24,117],118],[[25,117],118],[[26,117],118],[[27,117],118],[[28,117],118],[[29,117],118],[[30,117],118],[[31,117],118],[[32,117],118],[[33,117],118],[[34,117],118],[[35,117],118],[[36,117],118],[[5,117],118],[[37,117],118],[[38,117],118],[[39,117],118],[[40,117],118],[[41,117],118],[[42,117],118],[[43,117],118],[[44,117],118],[[45,117],118],[[46,117],118],[[47,117],118],[[48,117],118],[[14,117],118],[[49,117],118],[[50,117],118],[[51,117],118],[[6,117],118],[[52,117],118],[[53,117],118],[[54,117],118],[[55,117],118],[[56,117],118],[[7,117],118],[[57,117],118],[[58,117],118],[[59,117],118],[[60,117],118],[[61,117],118],[[62,117],118],[[63,117],118],[[64,117],118],[[65,117],118],[[66,117],118],[[67,117],118],[[68,117],118],[[69,117],118],[[70,117],118],[[71,117],118],[[15,117],118],[[72,117],118],[[73,117],118],[[12,117],118],[[74,117],118],[[75,117],118],[[76,117],118],[[77,117],118],[[78,117],118],[[79,117],118],[[80,117],118],[[81,117],118],[[82,117],118],[[11,117],118],[[83,117],118],[[84,117],118],[[85,117],118],[[86,117],118],[[87,117],118],[[10,117],118],[[88,117],118],[[89,117],118],[[90,117],118],[[91,117],118],[[92,117],118],[[93,117],118],[[1,117],118],[[94,117],118],[[95,117],118],[[96,117],118],[[97,117],118],[[98,117],118],[[99,117],118],[[100,117],118],[[101,117],118],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[10,[[4,[[13,[86]]]]]],0,[70,[[4,[9]]]],[84,[[4,[9]]]],0,0,[70,[[4,[[13,[5]]]]]],0,[89,[[4,[12]]]],[92,[[4,[12]]]],0,0,[1,[[4,[[3,[12]]]]]],0,[89,[[4,[[13,[[3,[9]]]]]]]],0,[89,[[4,[5]]]],[92,[[4,[5]]]],[1,[[4,[5]]]],0,0,0,[92,[[4,[12]]]],0,[1,[[4,[[3,[12]]]]]],0,[92,[[4,[5]]]],[1,[[4,[5]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[89,[[4,[107]]]],0,[84,[[4,[107]]]],0,[70,[[4,[107]]]],0,[5,[[4,[107]]]],0,[67,[[4,[[13,[108]]]]]],0,[32,[[4,[107]]]],0,[12,9],[77,9],[11,[[4,[9]]]],0,0,0,[30,[[4,[2]]]],0,[8,2],0,[81,[[4,[79]]]],0,[35,[[4,[33]]]],0,[15,[[4,[[13,[108]]]]]],[99,[[4,[[13,[108]]]]]],0,0,[11,[[4,[[13,[[3,[77]]]]]]]],0,[97,[[4,[9]]]],0,[77,9],0,[15,[[4,[107]]]],0,[8,9],[12,9],0,0,0,[39,[[4,[37]]]],[6,[[4,[2]]]],0,0,[[[106,[119]]],[[4,[17]]]],[[[106,[119]]],[[4,[22]]]],[[[106,[119]]],[[4,[24]]]],[[[106,[119]]],[[4,[26]]]],[[[106,[119]]],[[4,[28]]]],[[[106,[119]]],[[4,[30]]]],[[[106,[119]]],[[4,[32]]]],[[[106,[119]]],[[4,[35]]]],[[[106,[119]]],[[4,[5]]]],[[[106,[119]]],[[4,[39]]]],[[[106,[119]]],[[4,[41]]]],[[[106,[119]]],[[4,[43]]]],[[[106,[119]]],[[4,[45]]]],[[[106,[119]]],[[4,[47]]]],[[[106,[119]]],[[4,[14]]]],[[[106,[119]]],[[4,[50]]]],[[[106,[119]]],[[4,[6]]]],[[[106,[119]]],[[4,[54]]]],[[[106,[119]]],[[4,[7]]]],[[[106,[119]]],[[4,[58]]]],[[[106,[119]]],[[4,[61]]]],[[[106,[119]]],[[4,[63]]]],[[[106,[119]]],[[4,[67]]]],[[[106,[119]]],[[4,[70]]]],[[[106,[119]]],[[4,[15]]]],[[[106,[119]]],[[4,[75]]]],[[[106,[119]]],[[4,[81]]]],[[[106,[119]]],[[4,[11]]]],[[[106,[119]]],[[4,[84]]]],[[[106,[119]]],[[4,[10]]]],[[[106,[119]]],[[4,[89]]]],[[[106,[119]]],[[4,[92]]]],[[[106,[119]]],[[4,[1]]]],[[[106,[119]]],[[4,[97]]]],[[[106,[119]]],[[4,[99]]]],[[[106,[119]]],[[4,[101]]]],[17,[[4,[[13,[[3,[8]]]]]]]],0,[6,[[4,[2]]]],0,[17,[[4,[[13,[75]]]]]],0,[[16,120],115],[[18,120],115],[[19,120],115],[[20,120],115],[[21,120],115],[[23,120],115],[[25,120],115],[[27,120],115],[[29,120],115],[[31,120],115],[[33,120],115],[[34,120],115],[[36,120],115],[[37,120],115],[[38,120],115],[[40,120],115],[[42,120],115],[[44,120],115],[[46,120],115],[[48,120],115],[[49,120],115],[[51,120],115],[[52,120],115],[[53,120],115],[[55,120],115],[[56,120],115],[[57,120],115],[[59,120],115],[[60,120],115],[[62,120],115],[[64,120],115],[[66,120],115],[[68,120],115],[[69,120],115],[[71,120],115],[[72,120],115],[[73,120],115],[[74,120],115],[[76,120],115],[[78,120],115],[[79,120],115],[[80,120],115],[[82,120],115],[[83,120],115],[[85,120],115],[[87,120],115],[[88,120],115],[[90,120],115],[[91,120],115],[[93,120],115],[[94,120],115],[[96,120],115],[[98,120],115],[[100,120],115],[97,[[4,[[3,[[4,[99]]]]]]]],[101,[[4,[[3,[[4,[99]]]]]]]],0,0,[99,[[4,[9]]]],0,[97,[[4,[95]]]],0,[101,[[4,[[13,[[3,[9]]]]]]]],0,[58,[[4,[[13,[108]]]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[17,[[4,[16]]]],[[],115],[[],115],[8,[[4,[18]]]],[[],115],[[],115],[[],115],[121,[[115,[19,122]]]],[9,[[115,[20,122]]]],[[],115],[[],115],[22,[[4,[21]]]],[[],115],[[],115],[24,[[4,[23]]]],[[],115],[[],115],[26,[[4,[25]]]],[[],115],[28,[[4,[27]]]],[[],115],[[],115],[30,[[4,[29]]]],[[],115],[[],115],[32,[[4,[31]]]],[[],115],[[],115],[121,[[115,[33,122]]]],[[],115],[[],115],[35,[[4,[34]]]],[[],115],[[],115],[5,[[4,[36]]]],[[],115],[121,[[115,[37,122]]]],[[],115],[39,[[4,[38]]]],[[],115],[[],115],[[],115],[41,[[4,[40]]]],[[],115],[[],115],[43,[[4,[42]]]],[[],115],[[],115],[45,[[4,[44]]]],[[],115],[47,[[4,[46]]]],[[],115],[[],115],[14,[[4,[48]]]],[[],115],[[],115],[50,[[4,[49]]]],[[],115],[[],115],[[],115],[6,[[4,[51]]]],[[],115],[121,[[115,[52,122]]]],[[],115],[54,[[4,[53]]]],[[],115],[[],115],[[],115],[121,[[115,[55,122]]]],[[],115],[7,[[4,[56]]]],[[],115],[58,[[4,[57]]]],[[],115],[[],115],[121,[[115,[59,122]]]],[[],115],[61,[[4,[60]]]],[[],115],[[],115],[[],115],[63,[[4,[62]]]],[[],115],[65,[[4,[64]]]],[[],115],[[],115],[67,[[4,[66]]]],[[],115],[[],115],[[],115],[121,[[115,[68,122]]]],[[],115],[70,[[4,[69]]]],[[],115],[15,[[4,[71]]]],[[],115],[[],115],[121,[[115,[72,122]]]],[[],115],[[],115],[12,[[4,[73]]]],[[],115],[75,[[4,[74]]]],[[],115],[[],115],[[],115],[77,[[4,[76]]]],[[],115],[123,[[115,[78,122]]]],[[],115],[123,[[115,[79,122]]]],[[],115],[81,[[4,[80]]]],[[],115],[[],115],[[],115],[11,[[4,[82]]]],[[],115],[[],115],[84,[[4,[83]]]],[[],115],[86,[[4,[85]]]],[[],115],[[],115],[10,[[4,[87]]]],[[],115],[[],115],[89,[[4,[88]]]],[[],115],[[],115],[[],115],[121,[[115,[90,122]]]],[92,[[4,[91]]]],[[],115],[[],115],[[],115],[1,[[4,[93]]]],[[],115],[95,[[4,[94]]]],[[],115],[[],115],[97,[[4,[96]]]],[[],115],[[],115],[99,[[4,[98]]]],[[],115],[[],115],[[],115],[101,[[4,[100]]]],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[[],115],[15,[[4,[[13,[65]]]]]],[97,[[4,[65]]]],[101,[[4,[65]]]],0,0,0,[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[[],124],[35,[[4,[[13,[[3,[2]]]]]]]],0,[54,[[4,[52]]]],[7,[[4,[55]]]],[58,[[4,[55]]]],[61,[[4,[59]]]],[63,[[4,[55]]]],0,0,0,0,0,[67,[[4,[[13,[108]]]]]],0,[17,[[4,[19]]]],[10,[[4,[19]]]],0,0],"c":[],"p":[[3,"SparseTensorIndexCsfRef"],[15,"i32"],[3,"Vector"],[6,"Result"],[3,"IntRef"],[3,"DecimalRef"],[3,"TimeRef"],[3,"BlockRef"],[15,"i64"],[3,"MessageRef"],[3,"RecordBatchRef"],[3,"BufferRef"],[4,"Option"],[3,"FixedSizeBinaryRef"],[3,"FieldRef"],[3,"Footer"],[3,"FooterRef"],[3,"Block"],[4,"MetadataVersion"],[4,"Feature"],[3,"Null"],[3,"NullRef"],[3,"Struct"],[3,"StructRef"],[3,"List"],[3,"ListRef"],[3,"LargeList"],[3,"LargeListRef"],[3,"FixedSizeList"],[3,"FixedSizeListRef"],[3,"Map"],[3,"MapRef"],[4,"UnionMode"],[3,"Union"],[3,"UnionRef"],[3,"Int"],[4,"Precision"],[3,"FloatingPoint"],[3,"FloatingPointRef"],[3,"Utf8"],[3,"Utf8Ref"],[3,"Binary"],[3,"BinaryRef"],[3,"LargeUtf8"],[3,"LargeUtf8Ref"],[3,"LargeBinary"],[3,"LargeBinaryRef"],[3,"FixedSizeBinary"],[3,"Bool"],[3,"BoolRef"],[3,"Decimal"],[4,"DateUnit"],[3,"Date"],[3,"DateRef"],[4,"TimeUnit"],[3,"Time"],[3,"Timestamp"],[3,"TimestampRef"],[4,"IntervalUnit"],[3,"Interval"],[3,"IntervalRef"],[3,"Duration"],[3,"DurationRef"],[4,"Type"],[4,"TypeRef"],[3,"KeyValue"],[3,"KeyValueRef"],[4,"DictionaryKind"],[3,"DictionaryEncoding"],[3,"DictionaryEncodingRef"],[3,"Field"],[4,"Endianness"],[3,"Buffer"],[3,"Schema"],[3,"SchemaRef"],[3,"FieldNode"],[3,"FieldNodeRef"],[4,"CompressionType"],[4,"BodyCompressionMethod"],[3,"BodyCompression"],[3,"BodyCompressionRef"],[3,"RecordBatch"],[3,"DictionaryBatch"],[3,"DictionaryBatchRef"],[4,"MessageHeader"],[4,"MessageHeaderRef"],[3,"Message"],[3,"SparseTensorIndexCoo"],[3,"SparseTensorIndexCooRef"],[4,"SparseMatrixCompressedAxis"],[3,"SparseMatrixIndexCsx"],[3,"SparseMatrixIndexCsxRef"],[3,"SparseTensorIndexCsf"],[4,"SparseTensorIndex"],[4,"SparseTensorIndexRef"],[3,"SparseTensor"],[3,"SparseTensorRef"],[3,"TensorDim"],[3,"TensorDimRef"],[3,"Tensor"],[3,"TensorRef"],[3,"Builder"],[8,"WriteAsDefault"],[3,"Offset"],[8,"WriteAsOptional"],[15,"slice"],[15,"bool"],[15,"str"],[8,"WriteAsOptionalUnion"],[8,"WriteAs"],[8,"WriteAsUnion"],[8,"WriteAsOffset"],[3,"UnionOffset"],[8,"Deserializer"],[4,"Result"],[3,"UnknownEnumTag"],[3,"Formatter"],[6,"Result"],[15,"u8"],[8,"Serializer"],[15,"i16"],[3,"UnknownEnumTagKind"],[15,"i8"],[3,"TypeId"]]},\ "async_stream":{"doc":"Asynchronous stream of elements.","t":"OO","n":["stream","try_stream"],"q":[[0,"async_stream"]],"d":["Asynchronous stream","Asynchronous fallible stream"],"i":[0,0],"f":[0,0],"c":[],"p":[]},\ "async_stream_impl":{"doc":"","t":"","n":[],"q":[],"d":[],"i":[],"f":[],"c":[],"p":[]},\ "async_trait":{"doc":"github crates-io docs-rs","t":"X","n":["async_trait"],"q":[[0,"async_trait"]],"d":[""],"i":[0],"f":[0],"c":[],"p":[]},\ "atoi":{"doc":"A crate for parsing integers directly from ASCII ([u8]) …","t":"IIIIIIINNEFFLLLLLLLLKKKKKKLKKLLLLLL","n":["FromRadix10","FromRadix10Checked","FromRadix10Signed","FromRadix10SignedChecked","FromRadix16","FromRadix16Checked","MaxNumDigits","Minus","Plus","Sign","ascii_to_digit","atoi","borrow","borrow_mut","clone","clone_into","eq","equivalent","fmt","from","from_radix_10","from_radix_10_checked","from_radix_10_signed","from_radix_10_signed_checked","from_radix_16","from_radix_16_checked","into","max_num_digits","max_num_digits_negative","signum","to_owned","try_from","try_from","try_into","type_id"],"q":[[0,"atoi"]],"d":["Types implementing this trait can be parsed from a …","Types implementing this trait can be parsed from a …","Types implementing this trait can be parsed from a …","Types implementing this trait can be parsed from a …","Types implementing this trait can be parsed from a …","Types implementing this trait can be parsed from a …","A bounded integer, whose representation can overflow and …","","","Representation of a numerical sign","Converts an ascii character to digit","Parses an integer from a slice.","","","","","","","","Returns the argument unchanged.","Parses an integer from a slice.","Parses an integer from a slice.","Parses an integer from a slice.","Parses an integer from a slice.","Parses an integer from a slice.","Parses an integer from a slice.","Calls U::from(self).","Given a representation with a radix character I, what is …","Returns the maximum number of digits a negative …","Returns either +1 or -1","","","Trys to convert an ascii character into a Sign","",""],"i":[0,0,0,0,0,0,0,7,7,0,0,0,7,7,7,7,7,7,7,7,15,16,17,6,18,19,7,20,20,7,7,7,7,7,7],"f":[0,0,0,0,0,0,0,0,0,0,[1,[[4,[[0,[2,3]]]]]],[[[5,[1]]],[[4,[6]]]],[[]],[[]],[7,7],[[]],[[7,7],8],[[],8],[[7,9],10],[[]],[[[5,[1]]]],[[[5,[1]]]],[[[5,[1]]]],[[[5,[1]]]],[[[5,[1]]]],[[[5,[1]]]],[[]],[[],11],[[],11],[7,12],[[]],[[],13],[1,[[4,[7]]]],[[],13],[[],14]],"c":[],"p":[[15,"u8"],[8,"Zero"],[8,"One"],[4,"Option"],[15,"slice"],[8,"FromRadix10SignedChecked"],[4,"Sign"],[15,"bool"],[3,"Formatter"],[6,"Result"],[15,"usize"],[8,"Signed"],[4,"Result"],[3,"TypeId"],[8,"FromRadix10"],[8,"FromRadix10Checked"],[8,"FromRadix10Signed"],[8,"FromRadix16"],[8,"FromRadix16Checked"],[8,"MaxNumDigits"]]},\ -"avro_schema":{"doc":"Welcome to avro-schema’s documentation. Thanks for …","t":"AAAAAENNLLLLLLLLLLLLLLDDENDNLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLMLLMMMLLLLLLLLLLLLLLLLDLFLLCLLLLLFLLLNNNNENNNNNNDNDDNENNNENNNENNEDNENENNNNNNMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLMMMMLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMLLLLMMLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFAFFF","n":["error","file","read","schema","write","Error","OutOfSpec","RequiresCompression","borrow","borrow_mut","clone","clone_into","fmt","fmt","from","from","into","to_owned","to_string","try_from","try_into","type_id","Block","CompressedBlock","Compression","Deflate","FileMetadata","Snappy","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","compression","data","data","default","default","eq","eq","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","hash","hash","into","into","into","into","marker","new","new","number_of_rows","number_of_rows","record","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","BlockStreamingIterator","advance","block_iterator","borrow","borrow_mut","fallible_streaming_iterator","from","get","into","into_inner","new","read_metadata","try_from","try_into","type_id","Array","Ascending","Boolean","Bytes","BytesLogical","Date","Decimal","Decimal","Descending","Double","Duration","Enum","Enum","Field","Fixed","Fixed","FixedLogical","Float","Ignore","Int","IntLogical","LocalTimestampMicros","LocalTimestampMillis","Long","LongLogical","Map","Null","Order","Record","Record","Schema","String","StringLogical","Time","Time","TimestampMicros","TimestampMillis","Union","Uuid","aliases","aliases","aliases","aliases","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","default","default","deserialize","deserialize","doc","doc","doc","doc","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","fields","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","into","into","into","into","into","into","into","into","into","into","into","logical","name","name","name","name","namespace","namespace","namespace","new","new","new","new","order","schema","serialize","serialize","size","symbols","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","compress","encode","write_block","write_metadata","zigzag_encode"],"q":[[0,"avro_schema"],[5,"avro_schema::error"],[22,"avro_schema::file"],[92,"avro_schema::read"],[107,"avro_schema::schema"],[328,"avro_schema::write"],[332,"avro_schema::write::encode"]],"d":["Contains Error","Contains structs found in Avro files","Functions to read and decompress Files’ metadata and …","Contains structs defining Avro’s logical types","Functions to compress and write Files’ metadata and …","Error from this crate","Generic error when the file is out of spec","When reading or writing with compression but the feature …","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","An uncompressed Avro block.","A compressed Avro block.","Valid compressions","Deflate","Avro file’s Metadata","Snappy","","","","","","","","","","","","","","","","","The files’ compression","The compressed data","The uncompressed data","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The files’ marker, present in every block","Creates a new CompressedBlock","Creates a new Block","The number of rows","The number of rows","The Record represented in the file’s Schema","","","","","","","","","","","","","","","","","FallibleStreamingIterator of decompressed Block","","Returns a FallibleStreamingIterator of Block.","","","","Returns the argument unchanged.","","Calls U::from(self).","Deconstructs itself into its internal reader","Returns a new BlockStreamingIterator.","Reads the metadata from reader into FileMetadata.","","","","Array of a uniform type with N entries","Ascending order","Boolean (physically represented as a single byte)","variable length bytes (physically represented by a zigzag …","Enum of all logical types of Schema::Bytes","A date","A decimal","A decimal","Descending order","64 bit float (physically represented as 8 bytes in little …","A duration","Struct to hold data from a Schema::Enum.","Enum with a known number of variants","An Avro field. See the spec for details.","Struct to hold data from a Schema::Fixed.","todo","Enum of all logical types of Schema::Fixed","32 bit float (physically represented as 4 bytes in little …","Order is to be ignored","32 bit signed integer (physically represented as a zigzag …","Enum of all logical types of Schema::Int","A timestamp without timezone","A timestamp without timezone","64 bit signed integer (physically represented as a zigzag …","Enum of all logical types of Schema::Long","A map String -> type","A null type","Order of a Field.","Struct to hold data from a Schema::Record.","Record","An Avro Schema. It describes all physical and logical …","variable length utf8 (physically represented by a zigzag …","Enum of all logical types of Schema::String","A time","A time","A timestamp","A timestamp","A union of a heterogeneous number of types","A UUID","Its aliases","Its aliases","Its aliases","Its aliases","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Its default value","Its default symbol","","","Its optional documentation","Its optional documentation","Its optional documentation","Its optional documentation","","","","","","","","","","","","","","","","","Its children fields","","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Its optional logical type","Its name","Its name","Its name","Its name","Its optional namespace","Its optional namespace","Its optional namespace","Returns a new Field without a doc, default, order or …","Returns a new Record without a namespace, doc or aliases","Returns a new Fixed without a namespace, doc or aliases","Returns a minimal Enum.","Its optional order","Its Schema","","","Its size","Its set of symbols","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compresses a Block to a CompressedBlock.","Functions used to encode Avro physical types","Writes a CompressedBlock to writer","Writes Avro’s metadata to writer.","Zigzag encoding of a signed integer."],"i":[0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,11,0,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,9,10,8,9,10,11,9,10,11,8,9,10,11,8,9,10,11,8,11,8,9,10,11,8,9,10,9,10,8,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,0,18,0,18,18,0,18,18,18,18,18,0,18,18,18,21,22,21,21,0,27,30,31,22,21,30,0,21,0,0,21,0,21,22,21,0,28,28,21,0,21,21,0,0,21,0,21,0,27,28,28,28,21,29,23,24,25,26,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,23,26,21,23,23,24,25,26,21,22,23,24,25,26,27,28,29,30,31,27,28,29,30,31,24,21,22,23,24,25,26,27,28,29,30,31,21,21,21,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,25,23,24,25,26,24,25,26,23,24,25,26,23,23,21,23,25,26,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,0,0,0,0,0],"f":[0,0,0,0,0,0,0,0,[[]],[[]],[1,1],[[]],[[1,2],3],[[1,2],3],[4,1],[[]],[[]],[[]],[[],5],[[],6],[[],6],[[],7],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[8,8],[9,9],[10,10],[11,11],[[]],[[]],[[]],[[]],0,0,0,[[],9],[[],10],[[8,8],12],[[9,9],12],[[10,10],12],[[11,11],12],[[],12],[[],12],[[],12],[[8,2],3],[[9,2],3],[[10,2],3],[[11,2],3],[[]],[[]],[[]],[[]],[[8,13]],[[11,13]],[[]],[[]],[[]],[[]],0,[[14,[16,[15]]],9],[[14,[16,[15]]],10],0,0,0,[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],7],[[],7],[[],7],[[],7],0,[[[18,[17]]],[[6,[1]]]],[[17,[19,[11]],[20,[15]]],[[18,[17]]]],[[]],[[]],0,[[]],[[[18,[17]]],19],[[]],[[[18,[17]]],17],[[17,[19,[11]],[20,[15]]],[[18,[17]]]],[17,[[6,[8,1]]]],[[],6],[[],6],[[],7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[21,21],[22,22],[23,23],[24,24],[25,25],[26,26],[27,27],[28,28],[29,29],[30,30],[31,31],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[32,[[6,[21]]]],[32,[[6,[23]]]],0,0,0,0,[[21,21],12],[[22,22],12],[[23,23],12],[[24,24],12],[[25,25],12],[[26,26],12],[[27,27],12],[[28,28],12],[[29,29],12],[[30,30],12],[[31,31],12],[[],12],[[],12],[[],12],[[],12],[[],12],0,[[21,2],3],[[22,2],3],[[23,2],3],[[24,2],3],[[25,2],3],[[26,2],3],[[27,2],3],[[28,2],3],[[29,2],3],[[30,2],3],[[31,2],3],[[]],[26,21],[24,21],[25,21],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[21,13]],[[22,13]],[[23,13]],[[24,13]],[[25,13]],[[26,13]],[[27,13]],[[28,13]],[[29,13]],[[30,13]],[[31,13]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[[[33,[5]],21],23],[[[33,[5]],[16,[23]]],24],[[[33,[5]],14],25],[[[33,[5]],[16,[5]]],26],0,0,[[21,34],6],[[23,34],6],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[10,9,[19,[11]]],[[6,[12,1]]]],0,[[35,9],[[6,[1]]]],[[35,24,[19,[11]]],[[6,[1]]]],[[36,35],[[6,[1]]]]],"c":[],"p":[[4,"Error"],[3,"Formatter"],[6,"Result"],[3,"Error"],[3,"String"],[4,"Result"],[3,"TypeId"],[3,"FileMetadata"],[3,"CompressedBlock"],[3,"Block"],[4,"Compression"],[15,"bool"],[8,"Hasher"],[15,"usize"],[15,"u8"],[3,"Vec"],[8,"Read"],[3,"BlockStreamingIterator"],[4,"Option"],[15,"array"],[4,"Schema"],[4,"Order"],[3,"Field"],[3,"Record"],[3,"Fixed"],[3,"Enum"],[4,"IntLogical"],[4,"LongLogical"],[4,"StringLogical"],[4,"FixedLogical"],[4,"BytesLogical"],[8,"Deserializer"],[8,"Into"],[8,"Serializer"],[8,"Write"],[15,"i64"]]},\ +"avro_schema":{"doc":"Welcome to avro-schema’s documentation. Thanks for …","t":"AAAAAENNLLLLLLLLLLLLLLDDENDNLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLMLLMMMLLLLLLLLLLLLLLLLDLFLLCLLLLLFLLLNNNNENNNNNNDNDDNENNNENNNENNEDNENENNNNNNMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLMMMMLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMLLLLMMLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFAFFF","n":["error","file","read","schema","write","Error","OutOfSpec","RequiresCompression","borrow","borrow_mut","clone","clone_into","fmt","fmt","from","from","into","to_owned","to_string","try_from","try_into","type_id","Block","CompressedBlock","Compression","Deflate","FileMetadata","Snappy","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","compression","data","data","default","default","eq","eq","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","hash","hash","into","into","into","into","marker","new","new","number_of_rows","number_of_rows","record","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","BlockStreamingIterator","advance","block_iterator","borrow","borrow_mut","fallible_streaming_iterator","from","get","into","into_inner","new","read_metadata","try_from","try_into","type_id","Array","Ascending","Boolean","Bytes","BytesLogical","Date","Decimal","Decimal","Descending","Double","Duration","Enum","Enum","Field","Fixed","Fixed","FixedLogical","Float","Ignore","Int","IntLogical","LocalTimestampMicros","LocalTimestampMillis","Long","LongLogical","Map","Null","Order","Record","Record","Schema","String","StringLogical","Time","Time","TimestampMicros","TimestampMillis","Union","Uuid","aliases","aliases","aliases","aliases","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","default","default","deserialize","deserialize","doc","doc","doc","doc","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","fields","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","into","into","into","into","into","into","into","into","into","into","into","logical","name","name","name","name","namespace","namespace","namespace","new","new","new","new","order","schema","serialize","serialize","size","symbols","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","compress","encode","write_block","write_metadata","zigzag_encode"],"q":[[0,"avro_schema"],[5,"avro_schema::error"],[22,"avro_schema::file"],[92,"avro_schema::read"],[107,"avro_schema::schema"],[328,"avro_schema::write"],[332,"avro_schema::write::encode"]],"d":["Contains Error","Contains structs found in Avro files","Functions to read and decompress Files’ metadata and …","Contains structs defining Avro’s logical types","Functions to compress and write Files’ metadata and …","Error from this crate","Generic error when the file is out of spec","When reading or writing with compression but the feature …","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","An uncompressed Avro block.","A compressed Avro block.","Valid compressions","Deflate","Avro file’s Metadata","Snappy","","","","","","","","","","","","","","","","","The files’ compression","The compressed data","The uncompressed data","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The files’ marker, present in every block","Creates a new CompressedBlock","Creates a new Block","The number of rows","The number of rows","The Record represented in the file’s Schema","","","","","","","","","","","","","","","","","FallibleStreamingIterator of decompressed Block","","Returns a FallibleStreamingIterator of Block.","","","","Returns the argument unchanged.","","Calls U::from(self).","Deconstructs itself into its internal reader","Returns a new BlockStreamingIterator.","Reads the metadata from reader into FileMetadata.","","","","Array of a uniform type with N entries","Ascending order","Boolean (physically represented as a single byte)","variable length bytes (physically represented by a zigzag …","Enum of all logical types of Schema::Bytes","A date","A decimal","A decimal","Descending order","64 bit float (physically represented as 8 bytes in little …","A duration","Struct to hold data from a Schema::Enum.","Enum with a known number of variants","An Avro field. See the spec for details.","Struct to hold data from a Schema::Fixed.","todo","Enum of all logical types of Schema::Fixed","32 bit float (physically represented as 4 bytes in little …","Order is to be ignored","32 bit signed integer (physically represented as a zigzag …","Enum of all logical types of Schema::Int","A timestamp without timezone","A timestamp without timezone","64 bit signed integer (physically represented as a zigzag …","Enum of all logical types of Schema::Long","A map String -> type","A null type","Order of a Field.","Struct to hold data from a Schema::Record.","Record","An Avro Schema. It describes all physical and logical …","variable length utf8 (physically represented by a zigzag …","Enum of all logical types of Schema::String","A time","A time","A timestamp","A timestamp","A union of a heterogeneous number of types","A UUID","Its aliases","Its aliases","Its aliases","Its aliases","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Its default value","Its default symbol","","","Its optional documentation","Its optional documentation","Its optional documentation","Its optional documentation","","","","","","","","","","","","","","","","","Its children fields","","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Its optional logical type","Its name","Its name","Its name","Its name","Its optional namespace","Its optional namespace","Its optional namespace","Returns a new Field without a doc, default, order or …","Returns a new Record without a namespace, doc or aliases","Returns a new Fixed without a namespace, doc or aliases","Returns a minimal Enum.","Its optional order","Its Schema","","","Its size","Its set of symbols","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compresses a Block to a CompressedBlock.","Functions used to encode Avro physical types","Writes a CompressedBlock to writer","Writes Avro’s metadata to writer.","Zigzag encoding of a signed integer."],"i":[0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,11,0,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,9,10,8,9,10,11,9,10,11,8,9,10,11,8,9,10,11,8,11,8,9,10,11,8,9,10,9,10,8,8,9,10,11,8,9,10,11,8,9,10,11,8,9,10,11,0,18,0,18,18,0,18,18,18,18,18,0,18,18,18,21,22,21,21,0,27,30,31,22,21,30,0,21,0,0,21,0,21,22,21,0,28,28,21,0,21,21,0,0,21,0,21,0,27,28,28,28,21,29,23,24,25,26,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,23,26,21,23,23,24,25,26,21,22,23,24,25,26,27,28,29,30,31,27,28,29,30,31,24,21,22,23,24,25,26,27,28,29,30,31,21,21,21,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,25,23,24,25,26,24,25,26,23,24,25,26,23,23,21,23,25,26,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,21,22,23,24,25,26,27,28,29,30,31,0,0,0,0,0],"f":[0,0,0,0,0,0,0,0,[[]],[[]],[1,1],[[]],[[1,2],3],[[1,2],3],[4,1],[[]],[[]],[[]],[[],5],[[],6],[[],6],[[],7],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[8,8],[9,9],[10,10],[11,11],[[]],[[]],[[]],[[]],0,0,0,[[],9],[[],10],[[8,8],12],[[9,9],12],[[10,10],12],[[11,11],12],[[],12],[[],12],[[],12],[[8,2],3],[[9,2],3],[[10,2],3],[[11,2],3],[[]],[[]],[[]],[[]],[[8,13]],[[11,13]],[[]],[[]],[[]],[[]],0,[[14,[16,[15]]],9],[[14,[16,[15]]],10],0,0,0,[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],7],[[],7],[[],7],[[],7],0,[[[18,[17]]],[[6,[1]]]],[[17,[19,[11]],[20,[15]]],[[18,[17]]]],[[]],[[]],0,[[]],[[[18,[17]]],19],[[]],[[[18,[17]]],17],[[17,[19,[11]],[20,[15]]],[[18,[17]]]],[17,[[6,[8,1]]]],[[],6],[[],6],[[],7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[21,21],[22,22],[23,23],[24,24],[25,25],[26,26],[27,27],[28,28],[29,29],[30,30],[31,31],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[32,[[6,[21]]]],[32,[[6,[23]]]],0,0,0,0,[[21,21],12],[[22,22],12],[[23,23],12],[[24,24],12],[[25,25],12],[[26,26],12],[[27,27],12],[[28,28],12],[[29,29],12],[[30,30],12],[[31,31],12],[[],12],[[],12],[[],12],[[],12],[[],12],0,[[21,2],3],[[22,2],3],[[23,2],3],[[24,2],3],[[25,2],3],[[26,2],3],[[27,2],3],[[28,2],3],[[29,2],3],[[30,2],3],[[31,2],3],[[]],[25,21],[24,21],[26,21],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[21,13]],[[22,13]],[[23,13]],[[24,13]],[[25,13]],[[26,13]],[[27,13]],[[28,13]],[[29,13]],[[30,13]],[[31,13]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[[[33,[5]],21],23],[[[33,[5]],[16,[23]]],24],[[[33,[5]],14],25],[[[33,[5]],[16,[5]]],26],0,0,[[21,34],6],[[23,34],6],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[10,9,[19,[11]]],[[6,[12,1]]]],0,[[35,9],[[6,[1]]]],[[35,24,[19,[11]]],[[6,[1]]]],[[36,35],[[6,[1]]]]],"c":[],"p":[[4,"Error"],[3,"Formatter"],[6,"Result"],[3,"Error"],[3,"String"],[4,"Result"],[3,"TypeId"],[3,"FileMetadata"],[3,"CompressedBlock"],[3,"Block"],[4,"Compression"],[15,"bool"],[8,"Hasher"],[15,"usize"],[15,"u8"],[3,"Vec"],[8,"Read"],[3,"BlockStreamingIterator"],[4,"Option"],[15,"array"],[4,"Schema"],[4,"Order"],[3,"Field"],[3,"Record"],[3,"Fixed"],[3,"Enum"],[4,"IntLogical"],[4,"LongLogical"],[4,"StringLogical"],[4,"FixedLogical"],[4,"BytesLogical"],[8,"Deserializer"],[8,"Into"],[8,"Serializer"],[8,"Write"],[15,"i64"]]},\ "base64":{"doc":"Getting started","t":"ENEECNNNNNNALLLLLLLLLLLLLLLFFFFFAFFFFFALLLLLLLLLLLLLLLLLLLALLLALLLLLLLLLLLLLLLADRRRNRNENRRNLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLIQIQDEICCNNNLLLLLLKLLLLKLKLLLLLLLLLLALLLLLLLLLDDCRRRRRRLLLLLLLLLLLLLLLLLLLLLLLLLLCCCCCDLLLLLLLLLLLDDILLLLKLLLLLLLLLLLLLLLLLLLLLL","n":["DecodeError","DecodeError","DecodeSliceError","EncodeSliceError","Engine","InvalidByte","InvalidLastSymbol","InvalidLength","InvalidPadding","OutputSliceTooSmall","OutputSliceTooSmall","alphabet","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","cause","cause","cause","clone","clone","clone","clone_into","clone_into","clone_into","decode","decode_engine","decode_engine_slice","decode_engine_vec","decoded_len_estimate","display","encode","encode_engine","encode_engine_slice","encode_engine_string","encoded_len","engine","eq","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","into","into","into","prelude","provide","provide","provide","read","to_owned","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","write","Alphabet","BCRYPT","BIN_HEX","CRYPT","DuplicatedByte","IMAP_MUTF7","InvalidLength","ParseAlphabetError","ReservedByte","STANDARD","URL_SAFE","UnprintableByte","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","eq","eq","equivalent","equivalent","fmt","fmt","fmt","from","from","into","into","new","provide","to_owned","to_string","try_from","try_from","try_from","try_into","try_into","type_id","type_id","Base64Display","borrow","borrow_mut","fmt","from","into","new","to_string","try_from","try_into","type_id","Config","Config","DecodeEstimate","DecodeEstimate","DecodeMetadata","DecodePaddingMode","Engine","GeneralPurpose","GeneralPurposeConfig","Indifferent","RequireCanonical","RequireNone","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","config","decode","decode_slice","decode_slice_unchecked","decode_vec","decoded_len_estimate","encode","encode_padding","encode_slice","encode_string","eq","eq","equivalent","equivalent","fmt","fmt","from","from","general_purpose","into","into","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","GeneralPurpose","GeneralPurposeConfig","GeneralPurposeEstimate","NO_PAD","PAD","STANDARD","STANDARD_NO_PAD","URL_SAFE","URL_SAFE_NO_PAD","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","config","default","encode_padding","fmt","from","from","into","into","new","new","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","with_decode_allow_trailing_bits","with_decode_padding_mode","with_encode_padding","BASE64_STANDARD","BASE64_STANDARD_NO_PAD","BASE64_URL_SAFE","BASE64_URL_SAFE_NO_PAD","Engine","DecoderReader","borrow","borrow_mut","fmt","from","into","into_inner","new","read","try_from","try_into","type_id","EncoderStringWriter","EncoderWriter","StrConsumer","borrow","borrow","borrow_mut","borrow_mut","consume","drop","finish","flush","flush","fmt","from","from","from_consumer","into","into","into_inner","into_inner","new","new","try_from","try_from","try_into","try_into","type_id","type_id","write","write"],"q":[[0,"base64"],[79,"base64::alphabet"],[119,"base64::display"],[130,"base64::engine"],[176,"base64::engine::general_purpose"],[211,"base64::prelude"],[216,"base64::read"],[228,"base64::write"]],"d":["Errors that can occur while decoding.","A DecodeError occurred","Errors that can occur while decoding into a slice.","Errors that can occur while encoding into a slice.","","An invalid byte was found in the input. The offset and …","The last non-padding input symbol’s encoded 6 bits have …","The length of the input is invalid. A typical cause of …","The nature of the padding was not as configured: absent or …","The provided slice is too small.","The provided slice may be too small.","Provides Alphabet and constants for alphabets commonly …","","","","","","","","","","","","","","","","Decode base64 using the STANDARD engine.","Decode from string reference as octets using the specified …","Decode the input into the provided output slice.","Decode from string reference as octets.","Returns a conservative estimate of the decoded size of …","Enables base64’d output anywhere you might use a Display …","Encode arbitrary octets as base64 using the STANDARD engine…","Encode arbitrary octets as base64 using the provided Engine…","Encode arbitrary octets as base64 into a supplied slice.","Encode arbitrary octets as base64 into a supplied String.","Calculate the base64 encoded length for a given input …","Provides the Engine abstraction and out of the box …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Preconfigured engines for common use cases.","","","","Implementations of io::Read to transparently decode base64.","","","","","","","","","","","","","","","","Implementations of io::Write to transparently handle …","An alphabet defines the 64 ASCII characters (symbols) used …","The bcrypt alphabet.","The alphabet used in BinHex 4.0 files.","The crypt(3) alphabet (uses . and / as the first two …","All bytes must be unique","The alphabet used in IMAP-modified UTF-7 (uses + and ,).","Alphabets must be 64 ASCII bytes","Possible errors when constructing an Alphabet from a str.","= cannot be used","The standard alphabet (uses + and /).","The URL safe alphabet (uses - and _).","All bytes must be printable (in the range [32, 126]).","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Create an Alphabet from a string of 64 unique printable …","","","","","","","","","","","A convenience wrapper for base64’ing bytes into a format …","","","","Returns the argument unchanged.","Calls U::from(self).","Create a Base64Display with the provided engine.","","","","","The minimal level of configuration that engines must …","The config type used by this engine","The decode estimate used by an engine implementation. …","The decode estimate used by this engine","Metadata about the result of a decode operation","Controls how pad bytes are handled when decoding.","An Engine provides low-level encoding and decoding …","","","Canonical padding is allowed, but any fewer padding bytes …","Padding must be canonical (0, 1, or 2 = as needed to …","Padding must be absent – for when you want predictable …","","","","","","","Returns the config for this engine.","Decode the input into a new Vec.","Decode the input into the provided output slice.","Decode the input into the provided output slice.","Decode the input into the supplied buffer.","Returns a conservative (err on the side of too big) …","Encode arbitrary octets as base64 using the provided Engine…","Returns true if padding should be added after the encoded …","Encode arbitrary octets as base64 into a supplied slice. …","Encode arbitrary octets as base64 into a supplied String. …","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Provides the GeneralPurpose engine and associated config …","Calls U::from(self).","Calls U::from(self).","","","","","","","","A general-purpose base64 engine.","Contains configuration parameters for base64 encoding and …","","Don’t add padding when encoding, and require no padding …","Include padding bytes when encoding, and require that they …","A GeneralPurpose engine using the alphabet::STANDARD …","A GeneralPurpose engine using the alphabet::STANDARD …","A GeneralPurpose engine using the alphabet::URL_SAFE …","A GeneralPurpose engine using the alphabet::URL_SAFE …","","","","","","","","Delegates to GeneralPurposeConfig::new.","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Create a GeneralPurpose engine from an Alphabet.","Create a new config with padding = true, …","","","","","","","","Create a new config based on self with an updated …","Create a new config based on self with an updated …","Create a new config based on self with an updated padding …","","","","","","A Read implementation that decodes base64 data read from …","","","","Returns the argument unchanged.","Calls U::from(self).","Unwraps this DecoderReader, returning the base reader …","Create a new decoder that will read from the provided …","Decode input from the wrapped reader.","","","","A Write implementation that base64-encodes data using the …","A Write implementation that base64 encodes data before …","An abstraction around consuming strs produced by base64 …","","","","","Consume the base64 encoded data in buf","","Encode all remaining buffered data and write it, including …","Because this is usually treated as OK to call multiple …","","","Returns the argument unchanged.","Returns the argument unchanged.","Create a EncoderStringWriter that will append to the …","Calls U::from(self).","Calls U::from(self).","Unwraps this EncoderWriter, returning the base writer it …","Encode all remaining buffered data, including any trailing …","Create a new encoder that will write to the provided …","Create a EncoderStringWriter that will encode into a new …","","","","","","","Encode input and then write to the delegate writer.",""],"i":[0,5,0,0,0,4,4,4,4,1,5,0,1,4,5,1,4,5,1,4,5,1,4,5,1,4,5,0,0,0,0,0,0,0,0,0,0,0,0,1,4,5,1,4,5,1,1,4,4,5,5,1,4,5,5,1,4,5,0,1,4,5,0,1,4,5,1,4,5,1,4,5,1,4,5,1,4,5,0,0,0,0,0,20,0,20,0,20,0,0,20,19,20,19,20,19,19,19,20,19,20,19,20,20,19,20,19,20,19,20,19,20,19,19,20,19,20,19,20,0,22,22,22,22,22,22,22,22,22,22,0,11,0,11,0,0,0,0,0,24,24,24,24,25,24,25,24,24,11,11,11,11,11,35,11,36,11,11,24,25,24,25,24,25,24,25,0,24,25,24,24,25,24,25,24,25,0,0,0,0,0,0,0,0,0,27,26,27,26,26,26,27,26,26,26,27,26,27,26,27,26,26,27,26,27,26,27,26,26,26,26,0,0,0,0,0,0,29,29,29,29,29,29,29,29,29,29,29,0,0,0,32,34,32,34,33,32,32,32,34,32,32,34,34,32,34,32,34,32,34,32,34,32,34,32,34,32,34],"f":[0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[1,[[3,[2]]]],[4,[[3,[2]]]],[5,[[3,[2]]]],[1,1],[4,4],[5,5],[[]],[[]],[[]],[[[8,[[7,[6]]]]],[[10,[[9,[6]],4]]]],[[[8,[[7,[6]]]],11],[[10,[[9,[6]],4]]]],[[[8,[[7,[6]]]],[7,[6]],11],[[10,[12,5]]]],[[[8,[[7,[6]]]],[9,[6]],11],[[10,[4]]]],[12,12],0,[[[8,[[7,[6]]]]],13],[[[8,[[7,[6]]]],11],13],[[[8,[[7,[6]]]],[7,[6]],11],[[10,[12,1]]]],[[[8,[[7,[6]]]],13,11]],[[12,14],[[3,[12]]]],0,[[1,1],14],[[4,4],14],[[5,5],14],[[],14],[[],14],[[],14],[[1,15],16],[[1,15],16],[[4,15],16],[[4,15],16],[[5,15],16],[[5,15],16],[[]],[[]],[4,5],[[]],[[]],[[]],[[]],0,[17],[17],[17],0,[[]],[[]],[[]],[[],13],[[],13],[[],13],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],18],[[],18],[[],18],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[19,19],[[]],[[19,19],14],[[20,20],14],[[],14],[[],14],[[19,15],16],[[20,15],16],[[20,15],16],[[]],[[]],[[]],[[]],[21,[[10,[19,20]]]],[17],[[]],[[],13],[[],10],[21,[[10,[19]]]],[[],10],[[],10],[[],10],[[],18],[[],18],0,[[]],[[]],[[[22,[11]],15],[[10,[23]]]],[[]],[[]],[[[7,[6]],11],[[22,[11]]]],[[],13],[[],10],[[],10],[[],18],0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[24,24],[[]],[[]],[[[8,[[7,[6]]]]],[[10,[[9,[6]],4]]]],[[[8,[[7,[6]]]],[7,[6]]],[[10,[12,5]]]],[[[8,[[7,[6]]]],[7,[6]]],[[10,[12,4]]]],[[[8,[[7,[6]]]],[9,[6]]],[[10,[4]]]],[[],12],[[[8,[[7,[6]]]]],13],[[],14],[[[8,[[7,[6]]]],[7,[6]]],[[10,[12,1]]]],[[[8,[[7,[6]]]],13]],[[24,24],14],[[25,25],14],[[],14],[[],14],[[24,15],16],[[25,15],16],[[]],[[]],0,[[]],[[]],[[]],[[],10],[[],10],[[],10],[[],10],[[],18],[[],18],0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[26,26],[[]],[27],[[],26],[26,14],[[26,15],16],[[]],[[]],[[]],[[]],[[19,26],27],[[],26],[[]],[[],10],[[],10],[[],10],[[],10],[[],18],[[],18],[[26,14],26],[[26,24],26],[[26,14],26],0,0,0,0,0,0,[[]],[[]],[[[29,[11,28]],15],16],[[]],[[]],[[[29,[11,28]]],28],[[28,11],[[29,[11,28]]]],[[[29,[11,28]],[7,[6]]],[[30,[12]]]],[[],10],[[],10],[[],18],0,0,0,[[]],[[]],[[]],[[]],[21],[[[32,[11,31]]]],[[[32,[11,31]]],[[30,[31]]]],[[[32,[11,31]]],30],[[[34,[11,33]]],30],[[[32,[11,31]],15],16],[[]],[[]],[[33,11],[[34,[11,33]]]],[[]],[[]],[[[32,[11,31]]],31],[[[34,[11,33]]],33],[[31,11],[[32,[11,31]]]],[11,[[34,[11,13]]]],[[],10],[[],10],[[],10],[[],10],[[],18],[[],18],[[[32,[11,31]],[7,[6]]],[[30,[12]]]],[[[34,[11,33]],[7,[6]]],[[30,[12]]]]],"c":[27,28,29,30,33,34,35,36],"p":[[4,"EncodeSliceError"],[8,"Error"],[4,"Option"],[4,"DecodeError"],[4,"DecodeSliceError"],[15,"u8"],[15,"slice"],[8,"AsRef"],[3,"Vec"],[4,"Result"],[8,"Engine"],[15,"usize"],[3,"String"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"Demand"],[3,"TypeId"],[3,"Alphabet"],[4,"ParseAlphabetError"],[15,"str"],[3,"Base64Display"],[3,"Error"],[4,"DecodePaddingMode"],[3,"DecodeMetadata"],[3,"GeneralPurposeConfig"],[3,"GeneralPurpose"],[8,"Read"],[3,"DecoderReader"],[6,"Result"],[8,"Write"],[3,"EncoderWriter"],[8,"StrConsumer"],[3,"EncoderStringWriter"],[8,"DecodeEstimate"],[8,"Config"]]},\ "bitflags":{"doc":"A typesafe bitmask flag generator useful for sets of …","t":"O","n":["bitflags"],"q":[[0,"bitflags"]],"d":["The macro used to generate the flag structures."],"i":[0],"f":[0],"c":[],"p":[]},\ "brotli":{"doc":"","t":"QDICCCCFFFFFLLEDLLLLCCCCCIIDDDDDDCCCDDDNNNNCIIDFRKLMMMMMLLLLLLLLLLLLLLLLLLLLLLMMMLLLLMMMAMMMMMMFMLMMLLMAMMMMMMMMMMLLALLMAKLLLLLKLMMLLLLLLLLLLLLLLLLLLLMMMMMCLLLLLLLLLLLLLLLMMMMLMMMMMMMMMMMLLLLLLLLLLLLMMMMMMMMMKLLLLAMMMMMMMKKMMMMMMMMMMMMMMCCLAMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMKLLLADENNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLHRRRRQDICCFFFFCCCCCCCCCCCDDDCCCCIIDDCCCCKACAAAAAAAAAFCCAAAAAAAACKMMCAMAAALAMAACMAAAGGAKKAAAMAAACCGAAANIDINNNNNNNKLLLLKLLLLDDDIDFEDDKLLLLIKLLLLKLLLLMMNNDNDNDDDDNNDDNNNDDNDRRRRDDKKLLLLLLLLKKLLLLLLLLDENKLLLLKLLLLKLLLLDDDKLLLLFKLLLLLLLLKKLLLLLLLLFKLLLLDKLLLLNEMMMMMMMMKLLLLMMMKLLLLMMKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMKLLLLMMMMMMMMMMMLLLLLLLLLLLLLLLLLLKLLLLLLLMMMLLLMMMMMMMMMLLLLLLLLLLLLLMLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLKLLLLMMMMMKLLLLMMAMMMMMALLLLLLLLLLLLLLLLLLLLLLLLLLLLMRRHHHHMMMMMMMMKLLLLMMMMMMLMMMMMMMMMMMKLLLLMLLLLLLLLMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLMIDDLLLDDDILLFFLLLLLFLLEDMLLLLLLLLLLLLLLMLLLLLMNMLLLMLLLLMKLLLLLLLLLLLLLLLLMRMLLKLKLKLKLNLLNLLLLLLLLLLLLLLLLLLLLLLLLLMMRRRRFFFFFDDFDLLLLLLLLLLMMMMLMMLLLLLMLLLMMMMMLLLLLLLLLLLFFFDLLLLLMLLMMLLLMLFDDDFFFFFFFFFLFRDDDDMMMMMMLLLLLLLLLLLLLLLLLLMMMMLMMMMMMLLLLLLLMLLLLLLLMMMMMMMMMLLMMMMMLLLLLLLLLLLLLLLLMMMLLLLLLLFFFFFDLLLLMMLLMMLLLLLQIIDKLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLDFDFFFFFFFFFFFFMLLLLLLLLMMLMMMLLLLMLLMMLLLLLLLLFENNNLLLLLLLLLLLLFFFFFFRRRRRRRHHHHHHHHHHHHHHHHHHCDCDLLLLLLLLLLLLLLLLLLLLLLLLCFLLLLLLLLLLHFRRRRRRRNRRNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFFFFEEFFFDEFFFNFNFENDFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMLLLLLLLLLLLLMLLLLLLLLMMMMMMMMMMMMLLLLLLLLLLLLLLMMLLLLLLMMMMMMMMMMMMMMMMMMMMMMMFMMMMMMMLLLLMMLLLLLLLLLLLLLLLLLLFFFFFKLFIDFFDFLLLLLLLLLMMLLLMLLLLLLDDDDFRLLLLLLLLLMLMLLLLGLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLMDRLLLLLLLLLLLLLLLDDDDFNNNNFFEIDFFFFDGDGDGFKLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLQMLLLLLLLLLMKLLLKLLLKLLLLLLLLLMLLLLKLLLMMMLLLLLLLLLLLLLLLLLLMLLLLLLLLLDDDLLLLLLLLLLMMLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLRDNNNEINDRNDDICCCRRRRNDDDRRRRRRRRIRNDRRDGILLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLMLLMLLLMLLLLLLLLLLLFFKLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLMLLLLLLKLLLLMLLMMKLLLLLLLLLLLLLLLLFLLLLLFKLKLFKLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLMMFIKKKKKKFKKFDFFFFFDMMMMLLLLMMLLLLMMMMMMMMMMMMMMMMLLLLLLDDDLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLNRDDNDRRNDNIDNNNNNRDDDDDELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLQDIDDDDDDIIDDKLLLLLLLKMMLLLLLLMLLLLLLLMLLLMLLLKKMLLLLLLLLLLDDDDLLLLLLLLFFLLLLLLLLLLLLFLLLLLLLLLLLLLLLLFFFDFFFFFFFFLLMLLHRMMFLLLDLLLLLMLLHHHHHMLMLLLLLRDLLLLLLLLLLLLFLLLLLLLLLNIIINEFFDDNNNQQNEENNQQIGNDIGDNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKLLLLKKLLLLLLLLLLLLLLLLLLLLLKLLLLKLFFFFFFFFFFFFFGFGGFFFFFGGDDDLLLLLLFLLLLLLLLLLFLLLLLLLLLLQDIDDDDDIIDDKLLLLLLLLLLKMMLLLLLLLLLMLLLLLLLMLLLMKKMLLLLLLLLLLLLLFAAAAADDLLLLLLLLLLLLLLLLLLLLCFFFFFFFFGDNLLLLELLLLLLLLLLLLLLLLNNNNNNNNNNNFFFFFFFFFFFFEEFFDFFLLLLLLFMMLLLLLLLLLLLLLLLDFFFFFFFFFFFFFFFFFFFFDNMLLGGEMMMALLMLLLMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFEFFFFFFFFFFFDFFDDMMMAMMLLLLMMMLLMMMMMMMMMMMMMMMMMMMMMMMMMLLLMMMMALLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMFFMMMMMMMMMMMMMLMMLLLLLLMMDDDLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNEEDNMLLLLLLGGELLMLLLLLLLMLLLLLLLLLLFFFFFDRLLLLLLLQDIFEDIIDDDDDDDDNNNNIIDDKMMMMMMLLMMMMMMMMMMMMMMMMMMMMMMMMMMMKKMMLLLMMMMMMLLMMMMLMMMMMMMMMMMMLLMMMMMMMMMMKLMMMMMMMKKMMMMMMMMMMMMMMMMLLLMMKDFLLLLRRMMMLLLQDIFEDIDDDDDDDNNNNIIDDKLLMMMMMMLLLLLLLLLLLLMMMLLLLMMMMMMMMMMMMMLLLLLMMMMMMMMMMMKLLLKLLMMLLLLLLLLLLMMMMLLLLLMMLLLLLLLMMMMLMMMMMMMMMMMMLLMMMMMMMMMMMMLMMMMMKLKLMMMMMMMMMMMMMMLMMLLLLLLLLLLLLLLLLLLMMKLLF","n":["AllocatedMemory","AllocatedStackMemory","Allocator","BrotliCompress","BrotliCompressCustomAlloc","BrotliCompressCustomIo","BrotliCompressCustomIoCustomDict","BrotliDecompress","BrotliDecompressCustomAlloc","BrotliDecompressCustomIo","BrotliDecompressCustomIoCustomDict","BrotliDecompressStream","BrotliHuffmanTreeGroupInit","BrotliHuffmanTreeGroupRelease","BrotliResult","BrotliState","BrotliStateCleanupAfterMetablock","BrotliStateIsStreamEnd","BrotliStateIsStreamStart","BrotliStateMetablockBegin","CombiningAllocator","CompressorReader","CompressorReaderCustomIo","CompressorWriter","CompressorWriterCustomIo","CustomRead","CustomWrite","Decompressor","DecompressorCustomIo","DecompressorWriter","DecompressorWriterCustomIo","HeapAlloc","HuffmanCode","InputPair","InputReference","InputReferenceMut","IntoIoReader","IoReaderWrapper","IoWriterWrapper","NeedsMoreInput","NeedsMoreOutput","ResultFailure","ResultSuccess","SliceOffset","SliceWrapper","SliceWrapperMut","StackAllocator","TransformDictionaryWord","VERSION","alloc_cell","alloc_cell","alloc_hc","alloc_u32","alloc_u8","bits","block_type_length_state","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","br","buffer","buffer_length","clone","clone_into","close","close","code","code_length_code_lengths","code_length_histo","concat","context_index","context_lookup","context_map","context_map_slice_index","context_map_table","context_modes","copy_from_to","copy_length","copy_to_front","custom_dict","custom_dict_size","default","default","default_value","dictionary","dist_context_map","dist_context_map_slice_index","dist_htree_index","dist_rb","dist_rb_idx","distance_code","distance_context","distance_hgroup","distance_postfix_bits","distance_postfix_mask","drop","drop","enc","eq","eq","error_code","ffi","flush","flush","flush","flush","fmt","fmt","free_cell","free_cell","free_list_overflow_count","free_list_start","from","from","from","from","from","from","from","from","from","from","from","get_mut","get_mut","get_mut","get_mut","get_ref","get_ref","get_ref","get_ref","htree_command_index","htree_index","htree_next_offset","initialize","insert_copy_hgroup","interface","into","into","into","into","into","into","into","into","into","into","into","into_inner","into_inner","into_inner","into_inner","is_last_metablock","is_metadata","is_uncompressed","large_window","len","literal_hgroup","literal_htree_index","loop_counter","max_backward_distance","max_backward_distance_minus_custom_dict_size","max_distance","max_run_length_prefix","mem","meta_block_remaining_len","mtf_or_error_string","mtf_upper_bound","new","new","new","new","new","new","new_strict","new_with_custom_dict","new_with_custom_dictionary","new_with_custom_dictionary","new_with_custom_dictionary","new_with_custom_dictionary","next_symbol","nop","num_direct_distance_codes","num_dist_htrees","num_literal_htrees","partial_pos_out","pos","prev_code_len","rb_roundtrips","read","read","read","read","read","reader","repeat","repeat_code_len","ringbuffer","ringbuffer_mask","ringbuffer_size","should_wrap_ringbuffer","size_nibbles","slice","slice_mut","space","state","sub_loop_counter","substate_context_map","substate_decode_uint8","substate_huffman","substate_metablock_header","substate_tree_group","substate_uncompressed","symbol","symbol_lists_index","symbols_lists_array","system_resources","table","thaw","thaw_pair","to_owned","transform","trivial_literal_context","trivial_literal_contexts","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value","window_bits","write","write","write","write","writer","BroCatli","BroCatliResult","BrotliFileNotCraftedForAppend","BrotliFileNotCraftedForConcatenation","InvalidWindowSize","NeedsMoreInput","NeedsMoreOutput","Success","WindowSizeLargerThanPreviousFile","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","deserialize_from_buffer","eq","finish","fmt","from","from","into","into","new","new_brotli_file","new_with_window_size","serialize_to_buffer","stream","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","kBrotliDictionary","kBrotliDictionaryOffsetsByLength","kBrotliDictionarySizeBitsByLength","kBrotliMaxDictionaryWordLength","kBrotliMinDictionaryWordLength","AllocatedMemory","AllocatedStackMemory","Allocator","BatchSpawnableLite","BrotliAlloc","BrotliCompress","BrotliCompressCustomAlloc","BrotliCompressCustomIo","BrotliCompressCustomIoCustomDict","BrotliEncoderInitParams","BrotliEncoderMaxCompressedSize","BrotliEncoderMaxCompressedSizeMulti","BrotliEncoderParams","BrotliEncoderSetParameter","BrotliEncoderThreadError","CombiningAllocator","CompressionThreadResult","InputPair","InputReference","InputReferenceMut","IntoIoReader","IoReaderWrapper","IoWriterWrapper","Mem256f","Owned","PDF","SendAlloc","SliceWrapper","SliceWrapperMut","StackAllocator","StandardAlloc","StaticCommand","UnionHasher","WorkerPool","ZopfliNode","alloc_cell","backward_references","backward_references_hq","bit_cost","block_split","block_splitter","brotli_bit_stream","cluster","combined_alloc","command","compress_fragment","compress_fragment_two_pass","compress_multi","compress_multi_no_threadpool","compress_worker_pool","constants","context_map_entropy","dictionary_hash","encode","entropy_encode","fast_log","find_stride","fixed_queue","floatX","free_cell","free_list_overflow_count","free_list_start","hash_to_binary_tree","histogram","initialize","input_pair","interface","ir_interpret","len","literal_cost","mem","metablock","multithreading","new_work_pool","nop","pdf","prior_eval","reader","s16","s8","singlethreading","slice","slice_mut","static_dict","static_dict_lut","stride_eval","system_resources","threading","utf8_util","util","v256","v256i","v8","vectorization","worker_pool","writer","ALREADY_PREPARED","AdvHashSpecialization","AdvHasher","AnyHasher","BROTLI_FORCE_LSB_PRIOR","BROTLI_FORCE_MSB_PRIOR","BROTLI_FORCE_SIGNED_PRIOR","BROTLI_FORCE_UTF8_PRIOR","BROTLI_MODE_FONT","BROTLI_MODE_GENERIC","BROTLI_MODE_TEXT","BUCKET_BITS","BUCKET_BITS","BUCKET_BITS","BUCKET_BITS","BUCKET_BITS","BUCKET_SWEEP","BUCKET_SWEEP","BUCKET_SWEEP","BUCKET_SWEEP","BUCKET_SWEEP","BankH40","BankH41","BankH42","BasicHashComputer","BasicHasher","BrotliCreateBackwardReferences","BrotliEncoderMode","BrotliEncoderParams","BrotliHasherParams","BulkStoreRange","BulkStoreRange","BulkStoreRange","BulkStoreRange","BulkStoreRange","CloneWithAlloc","FindLongestMatch","FindLongestMatch","FindLongestMatch","FindLongestMatch","FindLongestMatch","GetHasherCommon","GetHasherCommon","GetHasherCommon","GetHasherCommon","GetHasherCommon","GetHasherCommon","GetHasherCommon","H10","H2","H2Sub","H3","H3Sub","H4","H40","H41","H42","H4Sub","H5","H54","H54Sub","H5Sub","H5q5","H5q7","H6","H6Sub","H9","H9","H9Opts","H9_BLOCK_BITS","H9_BLOCK_SIZE","H9_BUCKET_BITS","H9_NUM_LAST_DISTANCES_TO_CHECK","HQ5Sub","HQ7Sub","HashBytes","HashBytes","HashBytes","HashBytes","HashBytes","HashBytes","HashBytes","HashBytes","HashBytes","HashBytes","HashTypeLength","HashTypeLength","HashTypeLength","HashTypeLength","HashTypeLength","HashTypeLength","HashTypeLength","HashTypeLength","HashTypeLength","HashTypeLength","HasherSearchResult","HowPrepared","NEWLY_PREPARED","Opts","Opts","Opts","Opts","Opts","Prepare","Prepare","Prepare","Prepare","Prepare","PrepareDistanceCache","PrepareDistanceCache","PrepareDistanceCache","PrepareDistanceCache","PrepareDistanceCache","SlotH40","SlotH41","SlotH42","StitchToPreviousBlock","StitchToPreviousBlock","StitchToPreviousBlock","StitchToPreviousBlock","StitchToPreviousBlock","StitchToPreviousBlockInternal","Store","Store","Store","Store","Store","Store4Vec4","Store4Vec4","StoreEvenVec4","StoreEvenVec4","StoreLookahead","StoreLookahead","StoreLookahead","StoreLookahead","StoreLookahead","StoreLookahead","StoreLookahead","StoreLookahead","StoreLookahead","StoreLookahead","StoreLookaheadThenStore","StoreRange","StoreRange","StoreRange","StoreRange","StoreRange","Struct1","USE_DICTIONARY","USE_DICTIONARY","USE_DICTIONARY","USE_DICTIONARY","USE_DICTIONARY","Uninit","UnionHasher","addr","addr","addr","appendable","avoid_distance_prefix_search","banks","banks","banks","block_bits","block_bits","block_bits","block_bits","block_bits","block_bits","block_bits_","block_bits_","block_mask","block_mask","block_mask","block_mask","block_mask","block_mask_","block_mask_","block_size","block_size","block_size","block_size","block_size","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bucket_bits","bucket_size","bucket_size","bucket_size","bucket_size","bucket_size","bucket_size_","bucket_size_","buckets","buckets_","buckets_","buckets_","buckets_","buckets_","buckets_","catable","cdf_adaptation_detection","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_with_alloc","clone_with_alloc","clone_with_alloc","clone_with_alloc","clone_with_alloc","clone_with_alloc","clone_with_alloc","clone_with_alloc","common","common","common","default","default","default","delta","delta","delta","dict_num_lookups","dict_num_matches","dict_search_stats_","disable_literal_context_modeling","dist","distance","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","favor_cpu_efficiency","fmt","fmt","fmt","free","free_slot_idx","free_slot_idx","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","get_hash_mask","get_hash_mask","get_hash_mask","get_hash_mask","get_hash_mask","get_k_hash_mul","get_k_hash_mul","get_k_hash_mul","get_k_hash_mul","get_k_hash_mul","h9_opts","h9_opts","h9_opts","hash_len","hash_mask","hash_shift","hash_shift","hash_shift","hash_shift","hash_shift","hash_shift_","hash_shift_","hash_to_binary_tree","hasher","head","head","head","high_entropy_detection_quality","hq","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_prepared_","kDistanceCacheIndex","kDistanceCacheOffset","kHashMul32","kHashMul64","kHashMul64Long","kInvalidMatch","large_window","len","len_x_code","lgblock","lgwin","literal_adaptation","literal_byte_score","literal_byte_score","load_and_mix_word","load_and_mix_word","load_and_mix_word","load_and_mix_word","load_and_mix_word","log_meta_block","magic_number","max_hops","max_hops","max_hops","mode","new","next","next","next","num","num_","num_last_distances_to_check","params","prior_bitmask_detection","q9_5","quality","score","set_hash_mask","set_hash_mask","set_hash_mask","set_hash_mask","set_hash_mask","size_hint","slice","slice","slice","slice","slice_mut","slice_mut","slice_mut","slice_mut","slots","slots","slots","specialization","stride_detection_quality","tiny_hash","tiny_hash","tiny_hash","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","use_dictionary","Allocable","BackwardMatch","BackwardMatchMut","BulkStoreRange","FindLongestMatch","GetHasherCommon","H10","H10Buckets","H10DefaultParams","H10Params","HashBytes","HashTypeLength","InitBackwardMatch","InitializeH10","Opts","Prepare","PrepareDistanceCache","StitchToPreviousBlock","Store","StoreAndFindMatchesH10","StoreLookahead","StoreRange","Union1","ZopfliNode","_params","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buckets_","clone","clone","clone_into","clone_into","clone_with_alloc","common","cost","dcode_insert_length","default","distance","distance","distance","eq","eq","fmt","fmt","forest","free","free","free","from","from","from","from","from","from","from","into","into","into","into","into","into","into","invalid_pos_","kInfinity","length","length_and_code","length_and_code","max_tree_comp_length","max_tree_comp_length","max_tree_search_depth","max_tree_search_depth","new","new","new_uninit","new_uninit","next","set_distance","set_length_and_code","shortcut","slice","slice_mut","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","u","window_mask_","BROTLI_MAX_EFFECTIVE_DISTANCE_ALPHABET_SIZE","BROTLI_NUM_COMMAND_SYMBOLS","BROTLI_NUM_LITERAL_SYMBOLS","BROTLI_SIMPLE_DISTANCE_ALPHABET_SIZE","BrotliCreateHqZopfliBackwardReferences","BrotliCreateZopfliBackwardReferences","BrotliInitZopfliNodes","BrotliZopfliComputeShortestPath","BrotliZopfliCreateCommands","PosData","StartPosQueue","StitchToPreviousBlockH10","ZopfliCostModel","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cost","cost_cmd_","cost_dist_","costdiff","default","distance_cache","distance_histogram_size","fmt","fmt","from","from","from","idx_","into","into","into","literal_costs_","min_cost_cmd_","num_bytes_","pos","q_","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","BitsEntropy","BrotliPopulationCost","ShannonEntropy","BlockSplit","borrow","borrow_mut","destroy","from","into","lengths","lengths_alloc_size","new","num_blocks","num_types","try_from","try_into","type_id","types","types_alloc_size","BrotliSplitBlock","BlockEncoder","BlockSplitCode","BlockTypeCodeCalculator","BrotliBuildAndStoreHuffmanTreeFast","BrotliStoreHuffmanTree","BrotliStoreMetaBlock","BrotliStoreMetaBlockFast","BrotliStoreMetaBlockTrivial","BrotliStoreSyncMetaBlock","BrotliStoreUncompressedMetaBlock","BrotliWriteEmptyLastMetaBlock","BrotliWriteMetadataMetaBlock","Cmp","JumpToByteBoundary","MAX_SIMPLE_DISTANCE_ALPHABET_SIZE","MetaBlockSplit","PrefixCodeRange","RecoderState","SimpleSortHuffmanTree","bits_","block_ix_","block_len_","block_lengths_","block_split_code_","block_types_","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","command_histograms","command_histograms_size","command_split","depths_","destroy","distance_context_map","distance_context_map_size","distance_histograms","distance_histograms_size","distance_split","entropy_ix_","from","from","from","from","from","from","from","histogram_length_","into","into","into","into","into","into","into","last_type","length_bits","length_depths","literal_context_map","literal_context_map_size","literal_histograms","literal_histograms_size","literal_split","nbits","new","new","num_block_types_","num_blocks_","num_bytes_encoded","offset","second_last_type","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_bits","type_code_calculator","type_depths","type_id","type_id","type_id","type_id","type_id","type_id","type_id","BrotliClusterHistograms","BrotliHistogramBitCostDistance","BrotliHistogramCombine","BrotliHistogramReindex","BrotliHistogramRemap","HistogramPair","borrow","borrow_mut","clone","clone_into","cost_combo","cost_diff","default","from","idx1","idx2","into","to_owned","try_from","try_into","type_id","AllocatedMemory","Allocator","BrotliAlloc","CombiningAllocator","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","alloc_cell","borrow","borrow_mut","clone","clone_into","default","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","free_cell","from","into","new","to_owned","try_from","try_into","type_id","BrotliDistanceParams","CombineLengthCodes","Command","CommandCopyLen","CommandDistanceContext","CommandDistanceIndexAndOffset","CommandRestoreDistanceCode","ComputeDistanceCode","GetCopyLengthCode","GetInsertLengthCode","GetLengthCode","InitCommand","NewCommand","PrefixEncodeCopyDistance","RecomputeDistancePrefixes","alphabet_size","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmd_prefix_","copy_len_","default","dist_extra_","dist_prefix_","distance_postfix_bits","fmt","fmt","from","from","insert_len_","into","into","max_distance","num_direct_distance_codes","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","BrotliCompressFragmentFast","CodeBlockState","EMIT_COMMANDS","EMIT_REMAINDER","NEXT_BLOCK","borrow","borrow_mut","clone","clone_into","eq","equivalent","from","into","to_owned","try_from","try_into","type_id","BrotliCompressFragmentTwoPass","BrotliStoreMetaBlockHeader","BrotliWriteBits","memcpy","BROTLI_CONTEXT","BROTLI_CONTEXT_LUT","BROTLI_MAX_NDIRECT","BROTLI_MAX_NPOSTFIX","BROTLI_NUM_BLOCK_LEN_SYMBOLS","BROTLI_NUM_COMMAND_SYMBOLS","BROTLI_NUM_HISTOGRAM_DISTANCE_SYMBOLS","BROTLI_NUM_LITERAL_SYMBOLS","BROTLI_WINDOW_GAP","kBrotliMaxWindowBits","kBrotliMinWindowBits","kCodeLengthBits","kCodeLengthDepth","kCopyBase","kCopyExtra","kInsBase","kInsExtra","kNonZeroRepsBits","kNonZeroRepsDepth","kSigned3BitContextLookup","kStaticCommandCodeBits","kStaticCommandCodeDepth","kStaticDistanceCodeBits","kStaticDistanceCodeDepth","kUTF8ContextLookup","kZeroRepsBits","kZeroRepsDepth","Context","ContextMapEntropy","IRInterpreter","SpeedAndMax","best_singleton_speeds","best_speeds","best_speeds_costs","block_type","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","fmt","free","from","from","inc_local_byte_offset","into","into","literal_context_map","literal_data_at_offset","local_byte_offset","new","prediction_mode","prediction_mode_mut","push","push_base","speed_to_tuple","take_prediction_mode","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","update_block_type","update_cost","kStaticDictionaryHash","BROTLI_DISTANCE_ALPHABET_SIZE","BROTLI_LARGE_MAX_DISTANCE_BITS","BROTLI_LARGE_MAX_WBITS","BROTLI_LARGE_MIN_WBITS","BROTLI_MAX_ALLOWED_DISTANCE","BROTLI_MAX_DISTANCE","BROTLI_MAX_DISTANCE_BITS","BROTLI_MAX_WINDOW_BITS","BROTLI_METABLOCK_CALLBACK","BROTLI_NUM_DISTANCE_SHORT_CODES","BROTLI_NUM_DISTANCE_SYMBOLS","BROTLI_OPERATION_EMIT_METADATA","BROTLI_OPERATION_FINISH","BROTLI_OPERATION_FLUSH","BROTLI_OPERATION_PROCESS","BROTLI_PARAM_APPENDABLE","BROTLI_PARAM_AVOID_DISTANCE_PREFIX_SEARCH","BROTLI_PARAM_CATABLE","BROTLI_PARAM_CDF_ADAPTATION_DETECTION","BROTLI_PARAM_CM_SPEED","BROTLI_PARAM_CM_SPEED_LOW","BROTLI_PARAM_CM_SPEED_LOW_MAX","BROTLI_PARAM_CM_SPEED_MAX","BROTLI_PARAM_DISABLE_LITERAL_CONTEXT_MODELING","BROTLI_PARAM_FAVOR_EFFICIENCY","BROTLI_PARAM_HIGH_ENTROPY_DETECTION_QUALITY","BROTLI_PARAM_LARGE_WINDOW","BROTLI_PARAM_LGBLOCK","BROTLI_PARAM_LGWIN","BROTLI_PARAM_LITERAL_BYTE_SCORE","BROTLI_PARAM_MAGIC_NUMBER","BROTLI_PARAM_MODE","BROTLI_PARAM_NO_DICTIONARY","BROTLI_PARAM_PRIOR_BITMASK_DETECTION","BROTLI_PARAM_Q9_5","BROTLI_PARAM_QUALITY","BROTLI_PARAM_SIZE_HINT","BROTLI_PARAM_SPEED","BROTLI_PARAM_SPEED_LOW","BROTLI_PARAM_SPEED_LOW_MAX","BROTLI_PARAM_SPEED_MAX","BROTLI_PARAM_STRIDE_DETECTION_QUALITY","BROTLI_STREAM_FINISHED","BROTLI_STREAM_FLUSH_REQUESTED","BROTLI_STREAM_METADATA_BODY","BROTLI_STREAM_METADATA_HEAD","BROTLI_STREAM_PROCESSING","BothCatableBytesWritten","BrotliEncoderCompress","BrotliEncoderCompressStream","BrotliEncoderCopyInputToRingBuffer","BrotliEncoderCreateInstance","BrotliEncoderDestroyInstance","BrotliEncoderHasMoreOutput","BrotliEncoderInitParams","BrotliEncoderInputBlockSize","BrotliEncoderIsFinished","BrotliEncoderMaxCompressedSize","BrotliEncoderMaxCompressedSizeMulti","BrotliEncoderOperation","BrotliEncoderParameter","BrotliEncoderSetCustomDictionary","BrotliEncoderSetCustomDictionaryWithOptionalPrecomputedHasher","BrotliEncoderSetParameter","BrotliEncoderStateStruct","BrotliEncoderStreamState","BrotliEncoderTakeOutput","BrotliEncoderVersion","BrotliEncoderWriteData","FirstCatableByteWritten","HasherSetup","HeaderWritten","InitInsertCommand","IsFirst","NothingWritten","RingBuffer","SanitizeParams","UNUSED10","UNUSED100","UNUSED101","UNUSED102","UNUSED103","UNUSED104","UNUSED105","UNUSED106","UNUSED107","UNUSED108","UNUSED109","UNUSED11","UNUSED110","UNUSED111","UNUSED112","UNUSED113","UNUSED114","UNUSED115","UNUSED116","UNUSED117","UNUSED118","UNUSED119","UNUSED12","UNUSED120","UNUSED121","UNUSED122","UNUSED123","UNUSED124","UNUSED125","UNUSED126","UNUSED127","UNUSED128","UNUSED129","UNUSED13","UNUSED130","UNUSED131","UNUSED132","UNUSED133","UNUSED134","UNUSED135","UNUSED136","UNUSED137","UNUSED138","UNUSED139","UNUSED14","UNUSED140","UNUSED141","UNUSED142","UNUSED143","UNUSED144","UNUSED145","UNUSED146","UNUSED147","UNUSED148","UNUSED149","UNUSED15","UNUSED16","UNUSED17","UNUSED172","UNUSED173","UNUSED174","UNUSED175","UNUSED176","UNUSED177","UNUSED178","UNUSED179","UNUSED18","UNUSED180","UNUSED181","UNUSED182","UNUSED183","UNUSED184","UNUSED185","UNUSED186","UNUSED187","UNUSED188","UNUSED189","UNUSED19","UNUSED190","UNUSED191","UNUSED192","UNUSED193","UNUSED194","UNUSED195","UNUSED196","UNUSED197","UNUSED198","UNUSED199","UNUSED20","UNUSED200","UNUSED201","UNUSED202","UNUSED203","UNUSED204","UNUSED205","UNUSED206","UNUSED207","UNUSED208","UNUSED209","UNUSED21","UNUSED210","UNUSED211","UNUSED212","UNUSED213","UNUSED214","UNUSED215","UNUSED216","UNUSED217","UNUSED218","UNUSED219","UNUSED22","UNUSED220","UNUSED221","UNUSED222","UNUSED223","UNUSED224","UNUSED225","UNUSED226","UNUSED227","UNUSED228","UNUSED229","UNUSED23","UNUSED230","UNUSED231","UNUSED232","UNUSED233","UNUSED234","UNUSED235","UNUSED236","UNUSED237","UNUSED238","UNUSED239","UNUSED24","UNUSED240","UNUSED241","UNUSED242","UNUSED243","UNUSED244","UNUSED245","UNUSED246","UNUSED247","UNUSED248","UNUSED249","UNUSED25","UNUSED250","UNUSED251","UNUSED252","UNUSED253","UNUSED254","UNUSED255","UNUSED26","UNUSED27","UNUSED28","UNUSED29","UNUSED30","UNUSED31","UNUSED32","UNUSED33","UNUSED34","UNUSED35","UNUSED36","UNUSED37","UNUSED38","UNUSED39","UNUSED40","UNUSED41","UNUSED42","UNUSED43","UNUSED44","UNUSED45","UNUSED46","UNUSED47","UNUSED48","UNUSED49","UNUSED50","UNUSED51","UNUSED52","UNUSED53","UNUSED54","UNUSED55","UNUSED56","UNUSED57","UNUSED58","UNUSED59","UNUSED60","UNUSED61","UNUSED62","UNUSED63","UNUSED64","UNUSED65","UNUSED66","UNUSED67","UNUSED68","UNUSED69","UNUSED7","UNUSED70","UNUSED71","UNUSED72","UNUSED73","UNUSED74","UNUSED75","UNUSED76","UNUSED77","UNUSED78","UNUSED79","UNUSED8","UNUSED80","UNUSED81","UNUSED82","UNUSED83","UNUSED84","UNUSED85","UNUSED86","UNUSED87","UNUSED88","UNUSED89","UNUSED9","UNUSED90","UNUSED91","UNUSED92","UNUSED93","UNUSED94","UNUSED95","UNUSED96","UNUSED97","UNUSED98","UNUSED99","available_out_","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer_index","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmd_alloc_size_","cmd_bits_","cmd_code_","cmd_code_numbits_","cmd_depths_","command_buf_","command_scratch_space","commands_","cur_size_","data_mo","dist_cache_","distance_scratch_space","eq","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","from","from","from","from","from","from","hasher_","input_pos_","into","into","into","into","into","into","is_first_mb","is_initialized_","is_last_block_emitted_","large_table_","last_bytes_","last_bytes_bits_","last_flush_pos_","last_insert_len_","last_processed_pos_","literal_buf_","literal_scratch_space","m8","mask_","num_commands_","num_literals_","params","pos_","prev_byte2_","prev_byte_","recoder_state","remaining_metadata_bytes_","ringbuffer_","saved_dist_cache_","set_parameter","size_","small_table_","storage_","storage_size_","stream_state_","tail_size_","tiny_buf_","to_owned","to_owned","to_owned","to_owned","total_out_","total_size_","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","BrotliConvertBitDepthsToSymbols","BrotliCreateHuffmanTree","BrotliOptimizeHuffmanCountsForRle","BrotliSetDepth","BrotliWriteHuffmanTree","Cmp","Cmp","DecideOverRleUse","HuffmanComparator","HuffmanTree","InitHuffmanTree","NewHuffmanTree","SortHuffmanTree","SortHuffmanTreeItems","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","from","from","index_left_","index_right_or_value_","into","into","to_owned","total_count_","try_from","try_from","try_into","try_into","type_id","type_id","BucketPopIndex","EntropyBucketPopulation","EntropyPyramid","EntropyTally","HuffmanCost","NUM_LEAF_NODES","bit_cost_of_literals","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bucket_populations","byte_index_to_pyramid_index","cached_bit_entropy","clone","clone_into","disabled_placeholder","disabled_placeholder","floatY","free","free","free","from","from","from","from","get_previous_bytes","index","index_mut","into","into","into","into","is_free","last_level_range","new","new","new","peek","pick_best_stride","populate","populate_stride1","reset_scratch_to_deepest_level","six_bits","stride","stride_last_level_range","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","val","FixedQueue","MAX_THREADS","borrow","borrow_mut","can_push","default","from","how_much_free_space","into","new","pop","push","remove","size","try_from","try_into","type_id","Array264i","Array528i","Array712i","BlockSplitIterator","BrotliBuildHistogramsWithContext","CONTEXT_LSB6","CONTEXT_MSB6","CONTEXT_SIGNED","CONTEXT_UTF8","ClearHistograms","Context","ContextType","CostAccessors","EmptyIVec","HistogramAddHistogram","HistogramAddItem","HistogramAddVector","HistogramClear","HistogramCommand","HistogramCommandScratch","HistogramDistance","HistogramDistanceScratch","HistogramLiteral","HistogramLiteralScratch","HistogramSelfAddHistogram","bit_cost","bit_cost","bit_cost","bit_cost","bit_cost_","bit_cost_","bit_cost_","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","data_","data_","data_","default","default","default","default","default","default","default","default","from","from","from","from","from","from","from","from","from","i32vec","idx_","into","into","into","into","into","into","into","into","into","length_","make_nnz_storage","make_nnz_storage","make_nnz_storage","make_nnz_storage","set_bit_cost","set_bit_cost","set_bit_cost","set_bit_cost","set_total_count","set_total_count","set_total_count","set_total_count","slice","slice","slice","slice_mut","slice_mut","slice_mut","split_","to_owned","to_owned","to_owned","to_owned","total_count","total_count","total_count","total_count","total_count_","total_count_","total_count_","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","InputPair","InputReference","InputReferenceMut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","data","data","default","default","eq","fmt","fmt","fmt","freeze","from","from","from","from","from","index","into","into","into","len","orig_offset","orig_offset","slice","slice","slice_mut","split_at","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","ADV_CONTEXT_MAP_OFFSET","BlockSwitch","BlockSwitchCommand","BlockSwitchDistance","BlockSwitchLiteral","Command","CommandProcessor","Copy","CopyCommand","DISTANCE_CONTEXT_MAP_OFFSET","Dict","DictCommand","FeatureFlagSliceType","Freezable","InputPair","InputReference","InputReferenceMut","LITERAL_PREDICTION_MODE_LSB6","LITERAL_PREDICTION_MODE_MSB6","LITERAL_PREDICTION_MODE_SIGN","LITERAL_PREDICTION_MODE_UTF8","Literal","LiteralBlockSwitch","LiteralCommand","LiteralPredictionModeNibble","MAX_ADV_LITERAL_CONTEXT_MAP_SIZE","MAX_LITERAL_CONTEXT_MAP_SIZE","MAX_PREDMODE_SPEED_AND_DISTANCE_CONTEXT_MAP_SIZE","MIXING_MATH_OFFSET","MIXING_OFFSET","NUM_MIXING_VALUES","NUM_PREDMODE_SETUP_VALUES","NUM_SPEED_VALUES","Nop","PREDMODE_OFFSET","PredictionMode","PredictionModeContextMap","RESERVED_OFFSET","SPEED_OFFSET","SliceOffset","StaticCommand","Unfreezable","block_type","block_type","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","combined_stride_context_speed","combined_stride_context_speed_f8","combined_stride_context_speed_max_offset","combined_stride_context_speed_offset","context_map_speed","context_map_speed_f8","context_map_speed_max_offset","context_map_speed_offset","context_speeds_f8","context_speeds_standard_len","data","default","default","default","default","default","default","distance","distance_context_map","distance_context_map_mut","empty","eq","equivalent","f8_to_u16","final_size","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","free_array","free_cmd","free_cmd_inline","freeze","freeze","from","from","from","from","from","from","from","from","from","from","from","from_mut","get_is_adv_context_map","get_mixing_math","get_mixing_values","get_mixing_values_mut","has_context_speeds","hash","high_entropy","into","into","into","into","into","into","into","into","into","into","len","len32","literal_context_map","literal_prediction_mode","lsb6","msb6","new","new","new","nop","nop","nop","nop","nop","num_bytes","offset","prediction_mode","predmode_speed_and_distance_context_map","prob","push","push_block_switch_literal","push_literals","push_rand_literals","set_adv_context_map","set_combined_stride_context_speed","set_context_map_speed","set_literal_prediction_mode","set_mixing_math","set_mixing_values","set_stride_context_speed","signed","size_of_combined_array","slice","slice","slice","slice_mut","speed_to_u8","stride","stride_context_speed","stride_context_speed_f8","stride_context_speed_max_offset","stride_context_speed_offset","thaw","thaw","thaw","thaw_mut","thaw_mut","thaw_pair","thaw_pair","thaw_pair","to_context_enum","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","transform","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","u16_to_f8","u8_to_speed","update_stride","utf8","word_id","word_size","Context","IRInterpreter","block_type","inc_local_byte_offset","literal_context_map","literal_data_at_offset","local_byte_offset","prediction_mode","push_base","update_block_type","update_cost","BrotliEstimateBitCostsForLiterals","BlockSplitter","BrotliBuildMetaBlock","BrotliBuildMetaBlockGreedy","BrotliBuildMetaBlockGreedyInternal","BrotliInitDistanceParams","BrotliOptimizeHistograms","ContextBlockSplitter","alphabet_size_","alphabet_size_","block_size_","block_size_","borrow","borrow","borrow_mut","borrow_mut","curr_histogram_ix_","curr_histogram_ix_","from","from","into","into","last_entropy_","last_entropy_","last_histogram_ix_","last_histogram_ix_","max_block_types_","merge_last_count_","merge_last_count_","min_block_size_","min_block_size_","num_blocks_","num_blocks_","num_contexts_","split_threshold_","split_threshold_","target_block_size_","target_block_size_","try_from","try_from","try_into","try_into","type_id","type_id","MultiThreadedJoinable","MultiThreadedOwnedRetriever","MultiThreadedSpawner","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","compress_multi","default","from","from","from","into","into","into","join","make_spawner","make_spawner","spawn","spawn","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","unwrap","view","PDF","borrow","borrow_mut","clone","clone_into","default","fmt","from","into","to_owned","try_from","try_into","type_id","ADV","ADV_PRIOR_SIZE","AdvPrior","CDF","CM","CMPrior","CONTEXT_MAP_PRIOR_SIZE","DEFAULT_SPEED","FAST_CM","FastCMPrior","NUM_PRIORS","Prior","PriorEval","SLOW_CM","STRIDE1","STRIDE2","STRIDE3","STRIDE4","STRIDE_PRIOR_SIZE","SlowCMPrior","Stride1Prior","Stride2Prior","Stride3Prior","Stride4Prior","WhichPrior","block_type","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","choose_bitmask","cost","free","from","from","from","from","from","from","from","from","from","from","from","inc_local_byte_offset","init_cdfs","into","into","into","into","into","into","into","into","into","into","into","literal_context_map","literal_data_at_offset","local_byte_offset","lookup","lookup_lin","lookup_lin","lookup_lin","lookup_lin","lookup_lin","lookup_lin","lookup_lin","lookup_lin","lookup_lin","lookup_mut","new","offset","offset","offset","offset","prediction_mode","push","score_index","take_prediction_mode","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","update","update_block_type","update_cost","which","which","which","which","which","which","which","which","which","AllocatedMemory","AllocatedStackMemory","Allocator","CompressorReader","CompressorReaderCustomAlloc","CompressorReaderCustomIo","IntoIoReader","IoReaderWrapper","IoWriterWrapper","SliceWrapper","SliceWrapperMut","StackAllocator","StandardAlloc","alloc_cell","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","copy_to_front","free_cell","free_list_overflow_count","free_list_start","from","from","from","get_ref","get_ref","get_ref","initialize","into","into","into","into_inner","into_inner","into_inner","len","mem","new","new","new","nop","read","read","read","slice","slice_mut","system_resources","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","with_params","SingleThreadedJoinable","SingleThreadedOwnedRetriever","SingleThreadedSpawner","WorkerPool","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","compress_multi","compress_worker_pool","default","from","from","from","from","into","into","into","into","join","make_spawner","make_spawner","new_work_pool","spawn","spawn","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","unwrap","view","BROTLI_UNALIGNED_LOAD32","BROTLI_UNALIGNED_LOAD64","BROTLI_UNALIGNED_STORE64","BrotliDictionary","BrotliFindAllStaticDictionaryMatches","BrotliGetDictionary","ComplexFindMatchLengthWithLimit","FindMatchLengthWithLimit","FindMatchLengthWithLimitMin4","Hash","IsMatch","SlowerFindMatchLengthWithLimit","borrow","borrow_mut","data","from","into","kBrotliEncDictionary","kNumDistanceCacheEntries","offsets_by_length","size_bits_by_length","slowFindMatchLengthWithLimit","try_from","try_into","type_id","DictWord","borrow","borrow_mut","clone","clone_into","from","i","idx","into","kDictHashMul32","kDictNumBits","kInvalidMatch","kStaticDictionaryBuckets","kStaticDictionaryWords","l","len","t","to_owned","transform","try_from","try_into","type_id","STRIDE_PRIOR_SIZE","StrideEval","alloc","block_type","borrow","borrow_mut","choose_stride","drop","from","inc_local_byte_offset","into","literal_context_map","literal_data_at_offset","local_byte_offset","local_init_cdfs","new","num_types","prediction_mode","push","try_from","try_into","type_id","update_block_type","update_cost","A","AnyBoxConstructor","BatchSpawnable","BatchSpawnableLite","Borrowed","BrotliEncoderThreadError","CompressMulti","CompressMultiSlice","CompressedFileChunk","CompressionThreadResult","ConcatenationDidNotProcessFullFile","ConcatenationError","ConcatenationFinalizationError","FinalJoinHandle","FinalJoinHandle","InsufficientOutputSpace","InternalOwned","InternalSendAlloc","Item","Join","JoinHandle","JoinHandle","Joinable","LowLevelThreadError","OtherThreadPanic","Owned","OwnedRetriever","PoisonedThreadError","SendAlloc","SpawningOrJoining","ThreadExecError","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","fmt","from","from","from","from","from","from","from","into","into","into","into","into","into","into","join","make_spawner","make_spawner","new","new","new","new","replace_with_default","spawn","spawn","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap","unwrap","unwrap","unwrap_or","unwrap_or","view","view","BrotliIsMostlyUTF8","FastLog2","FastLog2f64","FastLog2u16","FastLog2u32","FastLog2u64","FastPow2","Log2FloorNonZero","brotli_max_size_t","brotli_max_uint32_t","brotli_max_uint8_t","brotli_min_size_t","brotli_min_uint32_t","floatX","xFastLog2u16","Mem256f","Mem256i","cast_f32_to_i32","cast_i32_to_f32","log2i","sum8","sum8i","v256","v256i","GuardedQueue","WorkerJoinable","WorkerPool","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","compress_worker_pool","drop","from","from","from","into","into","into","join","make_spawner","new","new_work_pool","spawn","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","AllocatedMemory","AllocatedStackMemory","Allocator","CompressorWriter","CompressorWriterCustomAlloc","CompressorWriterCustomIo","IntoIoWriter","IoWriterWrapper","SliceWrapper","SliceWrapperMut","StackAllocator","StandardAlloc","alloc_cell","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","drop","flush","flush","flush","free_cell","free_list_overflow_count","free_list_start","from","from","from","get_mut","get_mut","get_mut","get_ref","get_ref","get_ref","initialize","into","into","into","into_inner","into_inner","into_inner","len","mem","new","new","new","nop","slice","slice_mut","system_resources","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","with_params","write","write","write","write_all","alloc_util","broccoli","compressor","decompressor","multicompress","BrotliSubclassableAllocator","SendableMemoryBlock","alloc_cell","borrow","borrow","borrow_mut","borrow_mut","default","free_cell","from","from","into","into","new","slice","slice_mut","try_from","try_from","try_into","try_into","type_id","type_id","BroCatliResult","BroccoliConcatFinish","BroccoliConcatFinished","BroccoliConcatStream","BroccoliConcatStreaming","BroccoliCreateInstance","BroccoliCreateInstanceWithWindowSize","BroccoliDestroyInstance","BroccoliNewBrotliFile","BroccoliResult","BroccoliState","_Nothing","borrow","borrow","borrow_mut","borrow_mut","c_void","clone","clone_into","default","from","from","from","into","into","into","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","BROTLI_MODE_FONT","BROTLI_MODE_FORCE_LSB_PRIOR","BROTLI_MODE_FORCE_MSB_PRIOR","BROTLI_MODE_FORCE_SIGNED_PRIOR","BROTLI_MODE_FORCE_UTF8_PRIOR","BROTLI_MODE_GENERIC","BROTLI_MODE_TEXT","BROTLI_OPERATION_EMIT_METADATA","BROTLI_OPERATION_FINISH","BROTLI_OPERATION_FLUSH","BROTLI_OPERATION_PROCESS","BrotliEncoderCompress","BrotliEncoderCompressStream","BrotliEncoderCompressStreaming","BrotliEncoderCreateInstance","BrotliEncoderDestroyInstance","BrotliEncoderFreeU8","BrotliEncoderFreeUsize","BrotliEncoderHasMoreOutput","BrotliEncoderIsFinished","BrotliEncoderMallocU8","BrotliEncoderMallocUsize","BrotliEncoderMaxCompressedSize","BrotliEncoderMode","BrotliEncoderOperation","BrotliEncoderSetCustomDictionary","BrotliEncoderSetParameter","BrotliEncoderState","BrotliEncoderTakeOutput","BrotliEncoderVersion","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","catch_panic","compressor","custom_allocator","from","from","from","into","into","into","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","BrotliDecoderReturnInfo","CBrotliDecoderCreateInstance","CBrotliDecoderDecompress","CBrotliDecoderDecompressPrealloc","CBrotliDecoderDecompressStream","CBrotliDecoderDecompressStreaming","CBrotliDecoderDecompressWithReturnInfo","CBrotliDecoderDestroyInstance","CBrotliDecoderErrorString","CBrotliDecoderFreeU8","CBrotliDecoderFreeUsize","CBrotliDecoderGetErrorCode","CBrotliDecoderGetErrorString","CBrotliDecoderHasMoreOutput","CBrotliDecoderIsFinished","CBrotliDecoderIsUsed","CBrotliDecoderMallocU8","CBrotliDecoderMallocUsize","CBrotliDecoderSetParameter","CBrotliDecoderTakeOutput","CBrotliDecoderVersion","HuffmanCode","_Nothing","bits","borrow","borrow_mut","brotli_alloc_func","brotli_free_func","c_void","decoded_size","error_code","error_string","ffi","from","into","result","try_from","try_into","type_id","value","BROTLI_DECODER_ERROR_ALLOC_BLOCK_TYPE_TREES","BROTLI_DECODER_ERROR_ALLOC_CONTEXT_MAP","BROTLI_DECODER_ERROR_ALLOC_CONTEXT_MODES","BROTLI_DECODER_ERROR_ALLOC_RING_BUFFER_1","BROTLI_DECODER_ERROR_ALLOC_RING_BUFFER_2","BROTLI_DECODER_ERROR_ALLOC_TREE_GROUPS","BROTLI_DECODER_ERROR_DICTIONARY_NOT_SET","BROTLI_DECODER_ERROR_FORMAT_BLOCK_LENGTH_1","BROTLI_DECODER_ERROR_FORMAT_BLOCK_LENGTH_2","BROTLI_DECODER_ERROR_FORMAT_CL_SPACE","BROTLI_DECODER_ERROR_FORMAT_CONTEXT_MAP_REPEAT","BROTLI_DECODER_ERROR_FORMAT_DICTIONARY","BROTLI_DECODER_ERROR_FORMAT_DISTANCE","BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_META_NIBBLE","BROTLI_DECODER_ERROR_FORMAT_EXUBERANT_NIBBLE","BROTLI_DECODER_ERROR_FORMAT_HUFFMAN_SPACE","BROTLI_DECODER_ERROR_FORMAT_PADDING_1","BROTLI_DECODER_ERROR_FORMAT_PADDING_2","BROTLI_DECODER_ERROR_FORMAT_RESERVED","BROTLI_DECODER_ERROR_FORMAT_SIMPLE_HUFFMAN_ALPHABET","BROTLI_DECODER_ERROR_FORMAT_SIMPLE_HUFFMAN_SAME","BROTLI_DECODER_ERROR_FORMAT_TRANSFORM","BROTLI_DECODER_ERROR_FORMAT_WINDOW_BITS","BROTLI_DECODER_ERROR_INVALID_ARGUMENTS","BROTLI_DECODER_ERROR_UNREACHABLE","BROTLI_DECODER_NEEDS_MORE_INPUT","BROTLI_DECODER_NEEDS_MORE_OUTPUT","BROTLI_DECODER_NO_ERROR","BROTLI_DECODER_SUCCESS","BrotliDecoderCreateInstance","BrotliDecoderDecompress","BrotliDecoderDecompressPrealloc","BrotliDecoderDecompressStream","BrotliDecoderDecompressStreaming","BrotliDecoderDecompressWithReturnInfo","BrotliDecoderDestroyInstance","BrotliDecoderErrorCode","BrotliDecoderErrorString","BrotliDecoderFreeU8","BrotliDecoderFreeUsize","BrotliDecoderGetErrorCode","BrotliDecoderGetErrorString","BrotliDecoderHasMoreOutput","BrotliDecoderIsFinished","BrotliDecoderIsUsed","BrotliDecoderMallocU8","BrotliDecoderMallocUsize","BrotliDecoderSetParameter","BrotliDecoderState","BrotliDecoderTakeOutput","BrotliDecoderVersion","BrotliState","HuffmanCode","alloc_hc","alloc_u32","alloc_u8","alloc_util","bits","block_type_length_state","borrow","borrow","borrow_mut","borrow_mut","br","buffer","buffer_length","clone","clone_into","code","code_length_code_lengths","code_length_histo","context_index","context_lookup","context_map","context_map_slice_index","context_map_table","context_modes","copy_length","custom_allocator","custom_dict","custom_dict_size","decompressor","dist_context_map","dist_context_map_slice_index","dist_htree_index","dist_rb","dist_rb_idx","distance_code","distance_context","distance_hgroup","distance_postfix_bits","distance_postfix_mask","error_code","fmt","from","from","htree_command_index","htree_index","htree_next_offset","insert_copy_hgroup","interface","into","into","is_last_metablock","is_metadata","is_uncompressed","large_window","literal_hgroup","literal_htree_index","loop_counter","max_backward_distance","max_backward_distance_minus_custom_dict_size","max_distance","max_run_length_prefix","meta_block_remaining_len","mtf_or_error_string","mtf_upper_bound","next_symbol","num_direct_distance_codes","num_dist_htrees","num_literal_htrees","partial_pos_out","pos","prev_code_len","rb_roundtrips","repeat","repeat_code_len","ringbuffer","ringbuffer_mask","ringbuffer_size","should_wrap_ringbuffer","size_nibbles","slice_from_raw_parts_or_nil","slice_from_raw_parts_or_nil_mut","space","state","sub_loop_counter","substate_context_map","substate_decode_uint8","substate_huffman","substate_metablock_header","substate_tree_group","substate_uncompressed","symbol","symbol_lists_index","symbols_lists_array","table","to_owned","trivial_literal_context","trivial_literal_contexts","try_from","try_from","try_into","try_into","type_id","type_id","value","window_bits","Box","MemoryBlock","SubclassableAllocator","alloc_cell","alloc_stdlib","allocator","as_fd","as_mut","as_raw_fd","as_ref","assume_init","assume_init","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","call","call_mut","call_once","cause","clone","clone","clone","clone","clone","clone","clone_from","clone_from","clone_into","cmp","consume","default","default","default","default","default","default","deref","deref_mut","description","downcast","downcast","downcast","downcast_unchecked","downcast_unchecked","downcast_unchecked","drop","drop","eq","equivalent","fill_buf","finish","flush","fmt","fmt","fmt","free_cell","free_stdlib","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_raw","from_raw_in","ge","gt","hash","index","index_mut","into","into","into","into_boxed_slice","into_future","into_inner","into_iter","into_pin","into_raw","into_raw_with_allocator","into_searcher","is_contained_in","is_empty","is_prefix_of","is_read_vectored","is_suffix_of","is_write_vectored","last","le","leak","len","lt","ne","new","new","new_in","new_uninit","new_uninit_in","new_uninit_slice","new_uninit_slice_in","new_zeroed","new_zeroed_in","new_zeroed_slice","new_zeroed_slice_in","next","next_back","nth","nth_back","partial_cmp","pin","pin_in","poll","poll_next","provide","read","read_buf","read_exact","read_line","read_to_end","read_to_string","read_until","read_vectored","resume","seek","size_hint","size_hint","slice","slice_mut","source","stream_position","strip_prefix_of","strip_suffix_of","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_new","try_new_in","try_new_uninit","try_new_uninit_in","try_new_uninit_slice","try_new_zeroed","try_new_zeroed_in","try_new_zeroed_slice","type_id","type_id","type_id","write","write","write","write_all","write_fmt","write_i128","write_i16","write_i32","write_i64","write_i8","write_isize","write_length_prefix","write_str","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","write_vectored","BROTLI_DECODER_PARAM_DISABLE_RING_BUFFER_REALLOCATION","BROTLI_DECODER_PARAM_LARGE_WINDOW","BROTLI_DECODER_RESULT_ERROR","BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT","BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT","BROTLI_DECODER_RESULT_SUCCESS","BrotliDecoderParameter","BrotliDecoderResult","CAllocator","_Nothing","alloc_func","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","brotli_alloc_func","brotli_free_func","c_void","clone","clone_into","free_func","from","from","from","from","into","into","into","opaque","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","BrotliEncoderCompressMulti","BrotliEncoderCompressWorkPool","BrotliEncoderCreateWorkPool","BrotliEncoderDestroyWorkPool","BrotliEncoderMaxCompressedSizeMulti","BrotliEncoderWorkPool","MAX_THREADS","borrow","borrow_mut","from","into","try_from","try_into","type_id","AllocatedMemory","AllocatedStackMemory","Allocator","BrotliDecompressStream","BrotliResult","BrotliState","CustomRead","CustomWrite","Decompressor","DecompressorCustomAlloc","DecompressorCustomIo","HuffmanCode","HuffmanTreeGroup","IntoIoReader","IoReaderWrapper","IoWriterWrapper","NeedsMoreInput","NeedsMoreOutput","ResultFailure","ResultSuccess","SliceWrapper","SliceWrapperMut","StackAllocator","StandardAlloc","alloc_cell","alloc_hc","alloc_u32","alloc_u8","alphabet_size","bits","block_type_length_state","borrow","borrow_mut","br","buffer","buffer_length","code","code_length_code_lengths","code_length_histo","codes","context_index","context_lookup","context_map","context_map_slice_index","context_map_table","context_modes","copy_length","custom_dict","custom_dict_size","dist_context_map","dist_context_map_slice_index","dist_htree_index","dist_rb","dist_rb_idx","distance_code","distance_context","distance_hgroup","distance_postfix_bits","distance_postfix_mask","error_code","flush","free_cell","free_list_overflow_count","free_list_start","from","get_mut","get_ref","htree_command_index","htree_index","htree_next_offset","htrees","initialize","insert_copy_hgroup","into","into_inner","is_last_metablock","is_metadata","is_uncompressed","large_window","len","literal_hgroup","literal_htree_index","loop_counter","max_backward_distance","max_backward_distance_minus_custom_dict_size","max_distance","max_run_length_prefix","max_symbol","mem","meta_block_remaining_len","mtf_or_error_string","mtf_upper_bound","new","new_with_custom_dictionary","next_symbol","nop","num_direct_distance_codes","num_dist_htrees","num_htrees","num_literal_htrees","partial_pos_out","pos","prev_code_len","rb_roundtrips","read","read","repeat","repeat_code_len","ringbuffer","ringbuffer_mask","ringbuffer_size","should_wrap_ringbuffer","size_nibbles","slice","slice_mut","space","state","sub_loop_counter","substate_context_map","substate_decode_uint8","substate_huffman","substate_metablock_header","substate_tree_group","substate_uncompressed","symbol","symbol_lists_index","symbols_lists_array","system_resources","table","trivial_literal_context","trivial_literal_contexts","try_from","try_into","type_id","value","window_bits","write","Transform","TransformDictionaryWord","borrow","borrow_mut","from","into","kNumTransforms","kTransforms","prefix_id","suffix_id","transform","try_from","try_into","type_id","AllocatedMemory","AllocatedStackMemory","Allocator","BrotliDecompressStream","BrotliResult","BrotliState","CustomWrite","DecompressorWriter","DecompressorWriterCustomAlloc","DecompressorWriterCustomIo","HuffmanCode","HuffmanTreeGroup","IntoIoWriter","IoWriterWrapper","NeedsMoreInput","NeedsMoreOutput","ResultFailure","ResultSuccess","SliceWrapper","SliceWrapperMut","StackAllocator","StandardAlloc","alloc_cell","alloc_cell","alloc_cell","alloc_hc","alloc_u32","alloc_u8","alphabet_size","bits","block_type_length_state","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","br","buffer","buffer_length","build_hgroup_cache","clone","clone_into","close","code","code_length_code_lengths","code_length_histo","codes","context_index","context_lookup","context_map","context_map_slice_index","context_map_table","context_modes","copy_length","custom_dict","custom_dict_size","default","default","default","deref","deref_mut","dist_context_map","dist_context_map_slice_index","dist_htree_index","dist_rb","dist_rb_idx","distance_code","distance_context","distance_hgroup","distance_postfix_bits","distance_postfix_mask","error_code","flush","flush","flush","fmt","free_cell","free_cell","free_cell","free_list_overflow_count","free_list_start","from","from","from","from","from","from","get_mut","get_ref","get_tree","get_tree_mut","htree_command_index","htree_index","htree_next_offset","htrees","index","index","index_mut","index_mut","init","initialize","insert_copy_hgroup","into","into","into","into","into","into","into_inner","is_last_metablock","is_metadata","is_uncompressed","large_window","len","literal_hgroup","literal_htree_index","loop_counter","max_backward_distance","max_backward_distance_minus_custom_dict_size","max_distance","max_run_length_prefix","max_symbol","mem","meta_block_remaining_len","mtf_or_error_string","mtf_upper_bound","new","new_with_custom_dictionary","next_symbol","nop","num_direct_distance_codes","num_dist_htrees","num_htrees","num_literal_htrees","partial_pos_out","pos","prev_code_len","rb_roundtrips","repeat","repeat_code_len","reset","ringbuffer","ringbuffer_mask","ringbuffer_size","should_wrap_ringbuffer","size_nibbles","slice","slice","slice_mut","slice_mut","space","state","sub_loop_counter","substate_context_map","substate_decode_uint8","substate_huffman","substate_metablock_header","substate_tree_group","substate_uncompressed","symbol","symbol_lists_index","symbols_lists_array","system_resources","table","to_owned","trivial_literal_context","trivial_literal_contexts","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","value","window_bits","write","write","write","write_all"],"q":[[0,"brotli"],[283,"brotli::concat"],[319,"brotli::dictionary"],[324,"brotli::enc"],[420,"brotli::enc::backward_references"],[977,"brotli::enc::backward_references::hash_to_binary_tree"],[1095,"brotli::enc::backward_references::hq"],[1150,"brotli::enc::bit_cost"],[1153,"brotli::enc::block_split"],[1169,"brotli::enc::block_splitter"],[1170,"brotli::enc::brotli_bit_stream"],[1281,"brotli::enc::cluster"],[1302,"brotli::enc::combined_alloc"],[1352,"brotli::enc::command"],[1399,"brotli::enc::compress_fragment"],[1416,"brotli::enc::compress_fragment_two_pass"],[1420,"brotli::enc::constants"],[1447,"brotli::enc::context_map_entropy"],[1487,"brotli::enc::dictionary_hash"],[1488,"brotli::enc::encode"],[1903,"brotli::enc::entropy_encode"],[1938,"brotli::enc::find_stride"],[2002,"brotli::enc::fixed_queue"],[2019,"brotli::enc::histogram"],[2167,"brotli::enc::input_pair"],[2216,"brotli::enc::interface"],[2467,"brotli::enc::ir_interpret"],[2478,"brotli::enc::literal_cost"],[2479,"brotli::enc::metablock"],[2522,"brotli::enc::multithreading"],[2555,"brotli::enc::pdf"],[2568,"brotli::enc::prior_eval"],[2711,"brotli::enc::reader"],[2770,"brotli::enc::singlethreading"],[2813,"brotli::enc::static_dict"],[2838,"brotli::enc::static_dict_lut"],[2860,"brotli::enc::stride_eval"],[2884,"brotli::enc::threading"],[2982,"brotli::enc::utf8_util"],[2983,"brotli::enc::util"],[2997,"brotli::enc::vectorization"],[3006,"brotli::enc::worker_pool"],[3037,"brotli::enc::writer"],[3102,"brotli::ffi"],[3107,"brotli::ffi::alloc_util"],[3129,"brotli::ffi::broccoli"],[3162,"brotli::ffi::compressor"],[3216,"brotli::ffi::decompressor"],[3256,"brotli::ffi::decompressor::ffi"],[3414,"brotli::ffi::decompressor::ffi::alloc_util"],[3617,"brotli::ffi::decompressor::ffi::interface"],[3658,"brotli::ffi::multicompress"],[3672,"brotli::reader"],[3809,"brotli::transform"],[3823,"brotli::writer"]],"d":["","","","","","","","","","","","","","","","","","","","","","","","","","this trait does not allow for transient errors: they must …","this trait does not allow for transient errors: they must …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Equivalent to BrotliDecoderDecompressStream but with no …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A pointer type that uniquely owns a heap allocation of …","","","","","Returns a reference to the underlying allocator.","","","","","Converts to Box<[T], A>.","Converts to Box<T, A>.","","","","","","","","","","","","","","","","Returns a new box with a clone() of this box’s contents.","","","Copies source’s contents into self without creating a …","","","","","Creates a Box<T>, with the Default value for T.","","","","","","","","","Attempt to downcast the box to a concrete type.","Attempt to downcast the box to a concrete type.","Attempt to downcast the box to a concrete type.","Downcasts the box to a concrete type.","Downcasts the box to a concrete type.","Downcasts the box to a concrete type.","","","","","","","","","","","","","Converts the given String to a boxed str slice that is …","Converts a type of Error into a box of dyn Error.","Converts a T into a Box<T>","Converts a &str into a Box<str>","Converts a Cow<'_, [T]> into a Box<[T]>","Converts a &CStr into a Box<CStr>, by copying the contents …","Converts a Cow into a box of dyn Error + Send + Sync.","Converts a Box<str> into a Box<[u8]>","Converts a [T; N] into a Box<[T]>","Converts a &[T] into a Box<[T]>","Converts a Cow into a box of dyn Error.","Converts a Cow<'a, OsStr> into a Box<OsStr>, by copying …","Converts a Cow<'a, CStr> into a Box<CStr>, by copying the …","Converts a type of Error + Send + Sync into a box of dyn …","Converts a PathBuf into a Box<Path>.","Converts a str into a box of dyn Error.","Converts a String into a box of dyn Error.","Converts a CString into a Box<CStr> without copying or …","Convert a vector into a boxed slice.","Copies the string into a newly allocated Box<OsStr>.","Creates a boxed Path from a reference.","Converts a Cow<'_, str> into a Box<str>","","Converts a String into a box of dyn Error + Send + Sync.","Converts an OsString into a Box<OsStr> without copying or …","Returns the argument unchanged.","Converts a str into a box of dyn Error + Send + Sync.","Creates a boxed Path from a clone-on-write pointer.","Returns the argument unchanged.","Returns the argument unchanged.","","Constructs a box from a raw pointer.","Constructs a box from a raw pointer in the given allocator.","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts a Box<T> into a Box<[T]>","","Consumes the Box, returning the wrapped value.","","Converts a Box<T> into a Pin<Box<T>>. If T does not …","Consumes the Box, returning a wrapped raw pointer.","Consumes the Box, returning a wrapped raw pointer and the …","","","","","","","","","","Consumes and leaks the Box, returning a mutable reference, …","","","","Allocates memory on the heap and then places x into it.","","Allocates memory in the given allocator then places x into …","Constructs a new box with uninitialized contents.","Constructs a new box with uninitialized contents in the …","Constructs a new boxed slice with uninitialized contents.","Constructs a new boxed slice with uninitialized contents …","Constructs a new Box with uninitialized contents, with the …","Constructs a new Box with uninitialized contents, with the …","Constructs a new boxed slice with uninitialized contents, …","Constructs a new boxed slice with uninitialized contents …","","","","","","Constructs a new Pin<Box<T>>. If T does not implement Unpin…","Constructs a new Pin<Box<T, A>>. If T does not implement …","","","","","","","","","","","","","","","","","","","","","","","","","Attempts to convert a Box<[T]> into a Box<[T; N]>.","Attempts to convert a Vec<T> into a Box<[T; N]>.","","","","","","Allocates memory on the heap then places x into it, …","Allocates memory in the given allocator then places x into …","Constructs a new box with uninitialized contents on the …","Constructs a new box with uninitialized contents in the …","Constructs a new boxed slice with uninitialized contents. …","Constructs a new Box with uninitialized contents, with the …","Constructs a new Box with uninitialized contents, with the …","Constructs a new boxed slice with uninitialized contents, …","","","","Writes the value and converts to Box<T, A>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","","","this trait does not allow for transient errors: they must …","this trait does not allow for transient errors: they must …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","","","","","","","","this trait does not allow for transient errors: they must …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[7,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,7,20,13,13,13,9,13,20,13,31,27,32,30,25,22,24,9,14,20,13,31,27,32,30,25,22,24,9,14,13,13,13,9,9,22,24,13,13,13,0,13,13,13,13,13,13,0,13,25,13,13,20,9,20,0,13,13,13,13,13,13,13,13,13,13,13,24,0,9,9,13,0,11,27,22,24,9,14,7,20,253,253,20,13,31,27,32,30,25,22,24,9,14,30,25,22,24,30,25,22,24,13,13,13,253,13,0,20,13,31,27,32,30,25,22,24,9,14,30,25,22,24,13,13,13,13,40,13,13,13,13,13,13,13,254,13,13,13,20,13,30,25,22,24,13,30,13,25,22,24,13,253,13,13,13,13,13,13,13,10,31,32,30,25,0,13,13,13,13,13,13,13,40,23,13,13,13,13,13,13,13,13,13,13,13,13,253,13,0,0,9,0,13,13,20,13,31,27,32,30,25,22,24,9,14,20,13,31,27,32,30,25,22,24,9,14,20,13,31,27,32,30,25,22,24,9,14,9,13,11,27,22,24,0,0,0,34,34,34,34,34,34,34,35,34,35,34,34,34,35,35,34,35,34,35,34,35,34,35,35,35,35,35,34,35,34,35,34,35,34,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,253,253,0,0,253,0,0,0,40,0,254,0,0,0,253,0,0,0,0,0,0,40,23,0,0,0,253,0,0,0,0,0,0,0,0,0,70,0,0,0,72,72,72,72,72,72,72,57,48,49,50,51,57,48,49,50,51,0,0,0,0,0,0,0,0,0,71,58,59,61,45,0,71,58,59,61,45,71,58,59,61,45,58,61,45,45,0,45,0,45,0,0,0,0,45,45,0,0,45,45,45,0,0,45,0,0,0,0,0,0,0,71,57,58,48,49,50,51,59,61,45,71,60,58,59,61,45,65,66,67,68,0,0,70,71,58,59,61,45,71,58,59,61,45,71,58,59,61,45,0,0,0,71,58,59,61,45,0,71,58,59,61,45,71,61,71,61,71,60,58,59,61,45,65,66,67,68,0,71,58,59,61,45,0,57,48,49,50,51,45,0,259,260,261,37,37,259,260,261,60,65,66,67,68,73,67,68,60,65,66,67,68,67,68,60,65,66,67,68,70,63,58,48,49,50,51,59,61,262,263,264,265,266,267,259,260,261,45,72,73,37,69,64,65,66,67,68,70,63,58,48,49,50,51,59,61,262,263,264,265,266,267,259,260,261,45,72,73,37,69,64,65,66,67,68,73,60,65,66,67,68,67,68,61,58,48,49,50,51,59,37,37,72,73,37,69,64,65,66,67,68,72,73,37,69,64,65,66,67,68,268,58,58,58,58,59,61,45,259,260,261,45,37,69,265,266,267,64,64,59,37,37,63,58,59,61,45,72,73,69,64,65,66,67,68,72,37,72,73,37,45,259,260,70,63,58,48,49,50,51,59,61,262,263,264,265,266,267,259,260,261,45,72,73,37,69,64,65,66,67,68,60,65,66,67,68,60,65,66,67,68,58,59,61,73,68,60,65,66,67,68,67,68,0,37,259,260,261,37,0,70,63,58,48,49,50,51,59,61,262,263,264,265,266,267,259,260,261,45,72,73,37,69,64,65,66,67,68,64,0,0,0,0,0,0,37,63,63,37,37,37,73,69,60,65,66,67,68,37,37,259,260,261,37,69,265,266,267,61,59,73,64,37,37,37,63,60,65,66,67,68,37,48,49,50,51,48,49,50,51,262,263,264,61,37,259,260,261,72,73,37,69,64,65,66,67,68,70,63,58,48,49,50,51,59,61,262,263,264,265,266,267,259,260,261,45,72,73,37,69,64,65,66,67,68,70,63,58,48,49,50,51,59,61,262,263,264,265,266,267,259,260,261,45,72,73,37,69,64,65,66,67,68,73,70,63,58,48,49,50,51,59,61,262,263,264,265,266,267,259,260,261,45,72,73,37,69,64,65,66,67,68,37,0,0,0,78,78,78,0,0,0,0,78,78,0,0,78,78,78,78,78,0,78,78,0,0,78,81,80,78,83,79,82,54,81,80,78,83,79,82,54,78,82,54,82,54,78,78,82,54,54,83,79,54,80,78,82,54,78,76,80,78,81,80,78,83,79,82,54,81,80,78,83,79,82,54,78,0,54,83,79,77,81,77,81,76,80,76,80,82,79,79,82,80,80,82,54,81,80,78,83,79,82,54,81,80,78,83,79,82,54,81,80,78,83,79,82,54,54,78,0,0,0,0,0,0,0,0,0,0,0,0,0,269,84,85,269,84,85,84,85,84,85,84,269,269,84,85,84,269,84,85,269,84,85,85,269,84,85,269,269,269,84,85,84,85,269,84,85,269,84,85,269,84,85,0,0,0,0,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,270,270,270,270,270,270,271,98,96,272,270,99,97,271,98,96,272,270,99,97,99,97,99,97,96,96,96,270,96,96,96,96,96,96,270,271,98,96,272,270,99,97,270,271,98,96,272,270,99,97,99,272,272,96,96,96,96,96,271,96,97,270,270,97,271,99,99,97,271,98,96,272,270,99,97,271,98,96,272,270,99,97,272,272,272,271,98,96,272,270,99,97,0,0,0,0,0,0,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,7,0,0,0,7,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,7,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,105,56,105,56,105,56,105,56,56,56,56,56,56,105,105,56,105,56,56,105,56,105,105,105,56,105,56,105,56,105,56,0,0,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,107,107,107,107,108,107,108,108,108,108,107,107,108,107,107,108,107,107,107,107,107,107,107,0,0,107,108,107,108,107,108,107,108,107,107,0,0,0,0,0,0,0,0,0,117,0,0,116,116,116,116,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,118,118,118,118,118,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,119,0,0,119,0,0,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,115,273,115,118,119,116,117,273,115,118,119,116,117,273,118,119,116,117,118,119,116,117,115,115,115,115,115,115,115,115,273,273,115,115,118,116,117,118,116,117,119,117,273,115,118,119,116,117,115,115,273,115,118,119,116,117,115,115,115,115,115,115,115,115,115,115,115,115,273,115,115,115,273,115,115,115,115,115,115,0,273,115,115,115,115,273,115,118,119,116,117,115,273,273,115,118,119,116,117,273,115,118,119,116,117,273,115,118,119,116,117,0,0,0,0,0,122,120,0,0,0,0,0,0,0,120,93,120,93,93,93,93,120,93,93,93,120,93,93,93,120,93,120,93,120,93,0,0,0,0,0,0,124,127,125,124,126,127,125,124,126,127,124,127,126,126,125,124,0,127,125,124,127,125,124,126,125,127,127,127,125,124,126,125,124,127,125,124,125,125,124,124,124,126,126,124,126,127,125,124,126,127,125,124,126,127,125,124,126,126,0,0,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,0,0,0,0,0,94,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,89,90,91,89,90,91,89,90,91,131,132,133,134,274,94,89,90,91,131,132,133,134,274,94,89,90,91,94,89,90,91,94,89,90,91,89,90,91,131,132,133,134,94,89,90,91,131,132,133,134,274,94,86,274,89,90,91,131,132,133,134,274,94,274,86,89,90,91,86,89,90,91,86,89,90,91,89,90,91,89,90,91,274,89,90,91,94,86,89,90,91,89,90,91,89,90,91,131,132,133,134,274,94,89,90,91,131,132,133,134,274,94,274,89,90,91,131,132,133,134,274,94,0,0,0,110,113,109,110,113,109,113,109,113,109,110,113,110,113,109,113,109,109,113,110,113,113,113,109,109,110,113,109,109,110,113,110,113,110,109,113,109,110,113,109,110,113,109,110,113,109,0,0,114,114,114,0,0,114,0,0,114,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,136,137,136,137,112,111,138,139,140,141,114,135,136,137,112,111,138,139,140,141,114,135,136,137,112,111,138,139,140,141,114,135,136,137,112,111,138,139,140,141,114,135,111,111,111,111,111,111,111,111,111,111,141,136,137,112,140,114,135,138,111,111,139,112,112,111,139,136,137,112,111,138,139,140,141,114,135,114,0,0,143,114,136,137,112,111,138,139,140,141,114,135,135,111,111,111,111,111,111,112,141,136,137,112,111,138,139,140,141,114,135,135,135,111,111,112,112,136,137,112,275,138,139,141,114,138,135,112,111,141,276,276,276,276,111,111,111,111,111,111,111,112,111,140,141,135,141,0,137,111,111,111,111,0,146,135,146,135,0,146,135,112,136,137,112,111,138,139,140,141,114,135,139,136,137,112,111,138,139,140,141,114,135,136,137,112,111,138,139,140,141,114,135,136,137,112,111,138,139,140,141,114,135,111,0,137,112,139,139,0,0,147,147,147,147,147,147,0,147,147,0,0,0,0,0,0,0,0,277,278,277,278,277,278,277,278,277,278,277,278,277,278,277,278,277,278,278,277,278,277,278,277,278,278,277,278,277,278,277,278,277,278,277,278,0,0,0,150,152,148,150,152,148,0,148,150,152,148,150,152,148,150,148,148,148,148,150,152,148,150,152,148,150,152,148,152,152,0,102,102,102,102,102,102,102,102,102,102,102,102,279,0,0,0,279,0,0,0,279,0,279,0,0,279,279,279,279,279,0,0,0,0,0,0,0,155,279,280,281,282,283,284,285,286,287,156,155,279,280,281,282,283,284,285,286,287,156,155,155,156,155,279,280,281,282,283,284,285,286,287,156,155,155,0,279,280,281,282,283,284,285,286,287,156,155,155,155,155,288,288,280,281,282,283,284,285,286,287,288,155,280,281,282,283,155,155,288,155,279,280,281,282,283,284,285,286,287,156,155,279,280,281,282,283,284,285,286,287,156,155,279,280,281,282,283,284,285,286,287,156,155,156,155,155,288,280,281,282,283,284,285,286,287,7,0,0,0,0,0,0,0,0,0,0,0,0,7,158,159,157,158,159,157,157,7,253,253,158,159,157,158,159,157,253,158,159,157,158,159,157,40,254,158,159,157,253,158,159,157,40,23,253,158,159,157,158,159,157,158,159,157,159,0,0,0,0,162,163,160,161,162,163,160,161,0,0,161,162,163,160,161,162,163,160,161,162,161,161,0,161,161,162,163,160,161,162,163,160,161,162,163,160,161,163,163,0,0,0,0,0,0,0,0,0,0,0,0,55,55,55,55,55,0,0,55,55,0,55,55,55,0,164,164,164,164,164,164,164,164,0,0,0,0,0,164,164,164,164,164,164,164,164,0,0,165,165,165,165,165,165,165,165,165,165,165,165,0,165,165,165,165,165,165,165,165,165,289,0,0,0,290,0,0,0,0,0,47,47,47,291,166,47,0,0,290,289,291,166,0,0,47,0,0,0,0,289,47,292,44,289,46,290,43,47,292,44,289,46,290,43,47,47,292,44,289,46,290,43,47,292,44,289,46,290,43,47,168,291,166,149,46,43,47,46,291,166,292,44,289,46,290,43,47,292,44,289,46,290,43,47,292,44,289,46,290,43,47,293,46,43,46,43,293,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,172,173,294,172,173,0,172,294,172,173,294,172,173,173,172,172,0,172,294,172,173,294,172,173,294,172,173,7,0,0,0,0,0,0,0,0,0,0,0,7,175,176,174,175,176,174,174,175,176,174,7,253,253,175,176,174,175,176,174,175,176,174,253,175,176,174,175,176,174,40,254,175,176,174,253,40,23,253,175,176,174,175,176,174,175,176,174,176,175,176,174,0,0,0,0,0,0,0,0,177,177,178,177,178,178,177,177,178,177,178,177,178,178,177,178,177,178,177,178,0,0,0,0,0,0,0,0,0,0,0,187,187,180,187,180,0,180,180,180,187,180,180,187,180,180,180,187,180,187,180,187,180,182,182,182,182,182,182,182,184,184,184,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,182,183,184,182,183,0,183,183,184,182,183,184,182,183,184,182,183,184,182,183,184,182,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,9,192,192,0,0,0,192,192,192,0,192,192,192,192,192,192,9,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,0,9,13,190,193,190,193,13,13,13,193,193,13,13,13,13,13,13,13,13,13,13,190,13,13,190,13,13,13,13,13,13,13,13,13,13,13,193,190,193,13,13,13,13,0,190,193,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,193,13,13,190,193,190,193,190,193,9,13,0,0,0,179,0,197,197,197,197,197,197,197,197,197,195,179,197,197,195,179,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,195,197,197,197,197,197,197,197,197,197,197,195,197,197,197,197,197,197,197,197,179,0,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,195,179,197,197,197,197,197,197,195,195,197,195,179,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,179,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,195,195,197,197,197,197,197,197,197,197,197,195,179,197,195,179,197,197,197,197,197,197,197,197,197,195,179,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,194,194,191,191,191,191,0,0,0,187,228,194,191,228,194,191,228,0,0,0,228,228,228,194,191,191,228,194,191,228,228,228,194,191,228,194,191,228,194,191,228,0,0,0,0,0,0,0,250,250,250,250,250,250,250,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,7,13,13,13,256,9,13,251,251,13,13,13,13,13,13,256,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,11,7,253,253,251,251,251,13,13,13,256,253,13,251,251,13,13,13,13,40,13,13,13,13,13,13,13,256,254,13,13,13,251,251,13,253,13,13,256,13,13,13,13,13,10,251,13,13,13,13,13,13,13,40,23,13,13,13,13,13,13,13,13,13,13,13,13,253,13,13,13,251,251,251,9,13,11,0,0,295,295,295,295,0,0,295,295,295,295,295,295,7,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,7,253,255,13,13,13,256,9,13,253,254,255,256,258,257,253,254,255,256,258,257,13,13,13,256,255,255,257,13,13,13,256,13,13,13,13,13,13,13,13,13,254,255,256,254,254,13,13,13,13,13,13,13,13,13,13,13,11,258,257,255,7,253,255,253,253,253,254,255,256,258,257,257,257,256,256,13,13,13,256,254,254,254,254,256,253,13,253,254,255,256,258,257,257,13,13,13,13,40,13,13,13,13,13,13,13,256,254,13,13,13,257,257,13,253,13,13,256,13,13,13,13,13,13,13,256,13,13,13,13,13,40,254,23,254,13,13,13,13,13,13,13,13,13,13,13,13,253,13,255,13,13,253,254,255,256,258,257,253,254,255,256,258,257,253,254,255,256,258,257,9,13,11,258,257,0],"f":[0,0,0,0,0,0,0,[[1,2],[[4,[3]]]],[[1,2,[6,[5]],[6,[5]],[7,[5]],[7,[8]],[7,[9]]],[[4,[3]]]],[[10,11,[6,[5]],[6,[5]],[7,[5]],[7,[8]],[7,[9]]],4],[[10,11,[6,[5]],[6,[5]],[7,[5]],[7,[8]],[7,[9]]],4],[[12,12,[6,[5]],12,12,[6,[5]],12,[13,[[7,[5]],[7,[8]],[7,[9]]]]],14],[[[13,[[7,[5]],[7,[8]],[7,[9]]]],15,16,16,16]],[[[13,[[7,[5]],[7,[8]],[7,[9]]]],15]],0,0,[[[13,[[7,[5]],[7,[8]],[7,[9]]]]]],[[[13,[[7,[5]],[7,[8]],[7,[9]]]]],17],[[[13,[[7,[5]],[7,[8]],[7,[9]]]]],17],[[[13,[[7,[5]],[7,[8]],[7,[9]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[6,[5]],[6,[5]],18,18],18],0,[12],[[[20,[19]],12],[[21,[19]]]],0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[9,9],[[]],[[[22,[2]]],[[4,[3]]]],[[[24,[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],4],0,0,0,0,0,0,0,0,0,0,[[1,2],[[4,[12,3]]]],0,[[[25,[10,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],0,0,[[],[[20,[[0,[19,26]]]]]],[[],9],0,0,0,0,0,0,0,0,0,0,0,0,[[[13,[[7,[5]],[7,[8]],[7,[9]]]]]],[[[24,[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],0,[[9,9],17],[[9,9],17],0,0,[[],4],[[[27,[2]]],[[4,[3]]]],[[[22,[2]]],[[4,[3]]]],[[[24,[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],4],[[9,28],[[4,[29]]]],[[14,28],[[4,[29]]]],[[]],[[[20,[19]],[21,[19]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[30,[1]]],1],[[[25,[10,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],10],[[[22,[2]]],2],[[[24,[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],11],[[[30,[1]]],1],[[[25,[10,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],10],[[[22,[2]]],2],[[[24,[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],11],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[30,[1]]],1],[[[25,[10,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],10],[[[22,[2]]],[[4,[2,2]]]],[[[24,[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],[[4,[11,11]]]],0,0,0,0,[[],12],0,0,0,0,0,0,0,0,0,0,0,[19,[[20,[19]]]],[[[7,[5]],[7,[8]],[7,[9]]],[[13,[[7,[5]],[7,[8]],[7,[9]]]]]],[[1,12],[[30,[1]]]],[[10,[23,[5]],[7,[5]],[7,[8]],[7,[9]]],[[25,[10,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],[[2,12],[[22,[2]]]],[[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]],[[24,[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],[[[7,[5]],[7,[8]],[7,[9]]],[[13,[[7,[5]],[7,[8]],[7,[9]]]]]],[[1,12],[[30,[1]]]],[[[7,[5]],[7,[8]],[7,[9]]],[[13,[[7,[5]],[7,[8]],[7,[9]]]]]],[[10,[23,[5]],[7,[5]],[7,[8]],[7,[9]]],[[25,[10,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],[[2,12],[[22,[2]]]],[[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]],[[24,[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],0,0,0,0,0,0,0,0,0,[[[6,[5]]],[[4,[12]]]],[[[31,[1]],[6,[5]]],[[4,[12,3]]]],[[[32,[1]],[6,[5]]],[[4,[12,3]]]],[[[30,[1]],[6,[5]]],[[4,[12,3]]]],[[[25,[10,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]],[6,[5]]],[[4,[12]]]],0,0,0,0,0,0,0,0,[[],6],[[],6],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],0,0,0,[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],0,0,[[[6,[5]]],[[4,[12]]]],[[[27,[2]],[6,[5]]],[[4,[12,3]]]],[[[22,[2]],[6,[5]]],[[4,[12,3]]]],[[[24,[11,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]],[6,[5]]],[[4,[12]]]],0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[34,34],[[]],[[],35],[[[6,[5]]],[[4,[35]]]],[[34,34],17],[[35,[6,[5]],12],34],[[34,28],36],[[]],[[]],[[]],[[]],[[],35],[35],[5,35],[[35,[6,[5]]],4],[[35,[6,[5]],12,[6,[5]],12],34],[[]],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],0,0,0,0,0,0,0,0,0,0,[[1,2,37],[[4,[12,3]]]],[[1,2,[6,[5]],[6,[5]],37,38],[[4,[12,3]]]],[[10,11,[6,[5]],[6,[5]],37,38,39],[[4,[12]]]],[[10,11,[6,[5]],[6,[5]],37,38,39,[6,[5]]],[[4,[12]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[12],0,0,0,0,0,0,0,0,0,0,0,[[37,[43,[[0,[[40,[5]],41,42]]]],[6,[5]],[6,[[46,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]]]],[[4,[12,47]]]],0,0,0,0,0,0,0,0,0,0,0,[[]],0,0,0,0,0,0,0,0,[[],12],0,0,0,0,0,0,0,0,0,0,0,0,[[],6],[[],6],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],18],[[[48,[[7,[8]]]]],18],[[[49,[[7,[8]]]]],18],[[[50,[[7,[8]]]]],18],[[[51,[[7,[8]]]]],18],[[],18],[[[48,[[7,[8]]]]],18],[[[49,[[7,[8]]]]],18],[[[50,[[7,[8]]]]],18],[[[51,[[7,[8]]]]],18],0,0,0,0,0,[[[0,[[7,[16]],[7,[8]],[7,[52]],[7,[53]],[7,[54]]]],55,12,12,[6,[5]],12,37,[45,[[0,[[7,[16]],[7,[8]],[7,[52]],[7,[53]],[7,[54]]]]]],[6,[18]],12,[6,[56]],12,12]],0,0,0,[[[6,[5]],12,12,12]],[[[58,[[0,[[23,[8]],[40,[8]],57]]]],[6,[5]],12,12,12]],[[[59,[[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12,12]],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12,12]],[[[45,[[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12,12]],0,[[[62,[55]],[6,[16]],[6,[5]],12,[6,[18]],12,12,12,12,12,63],17],[[[58,[[0,[[23,[8]],[40,[8]],57]]]],[62,[55]],[6,[16]],[6,[5]],12,[6,[18]],12,12,12,12,12,63],17],[[[59,[[0,[[7,[16]],[7,[8]]]]]],[62,[55]],[6,[16]],[6,[5]],12,[6,[18]],12,12,12,12,12,63],17],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],[62,[55]],[6,[16]],[6,[5]],12,[6,[18]],12,12,12,12,12,63],17],[[[45,[[0,[[7,[16]],[7,[8]]]]]],[62,[55]],[6,[16]],[6,[5]],12,[6,[18]],12,12,12,12,12,63],17],[[],64],[[[58,[[0,[[23,[8]],[40,[8]],57]]]]],64],[[[59,[[0,[[7,[16]],[7,[8]]]]]]],64],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]]],64],[[[45,[[0,[[7,[16]],[7,[8]]]]]]],64],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[6,[5]]],12],[[[6,[5]]],8],[[[58,[[0,[[23,[8]],[40,[8]],57]]]],[6,[5]]],12],[[[48,[[7,[8]]]],[6,[5]]],8],[[[49,[[7,[8]]]],[6,[5]]],8],[[[50,[[7,[8]]]],[6,[5]]],8],[[[51,[[7,[8]]]],[6,[5]]],8],[[[59,[[0,[[7,[16]],[7,[8]]]]]],[6,[5]]],12],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],[6,[5]]],12],[[[45,[[0,[[7,[16]],[7,[8]]]]]],[6,[5]]],12],[[],12],[[],12],[[[58,[[0,[[23,[8]],[40,[8]],57]]]]],12],[[[59,[[0,[[7,[16]],[7,[8]]]]]]],12],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]]],12],[[[45,[[0,[[7,[16]],[7,[8]]]]]]],12],[65,12],[66,12],[67,12],[68,12],0,0,0,[[],69],[[[58,[[0,[[23,[8]],[40,[8]],57]]]]],69],[[[59,[[0,[[7,[16]],[7,[8]]]]]]],69],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]]],69],[[[45,[[0,[[7,[16]],[7,[8]]]]]]],69],[[17,12,[6,[5]]],70],[[[58,[[0,[[23,[8]],[40,[8]],57]]]],17,12,[6,[5]]],70],[[[59,[[0,[[7,[16]],[7,[8]]]]]],17,12,[6,[5]]],70],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],17,12,[6,[5]]],70],[[[45,[[0,[[7,[16]],[7,[8]]]]]],17,12,[6,[5]]],70],[[[6,[18]]]],[[[58,[[0,[[23,[8]],[40,[8]],57]]]],[6,[18]]]],[[[59,[[0,[[7,[16]],[7,[8]]]]]],[6,[18]]]],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],[6,[18]]]],[[[45,[[0,[[7,[16]],[7,[8]]]]]],[6,[18]]]],0,0,0,[[12,12,[6,[5]],12]],[[[58,[[0,[[23,[8]],[40,[8]],57]]]],12,12,[6,[5]],12]],[[[59,[[0,[[7,[16]],[7,[8]]]]]],12,12,[6,[5]],12]],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],12,12,[6,[5]],12]],[[[45,[[0,[[7,[16]],[7,[8]]]]]],12,12,[6,[5]],12]],[[71,12,12,[6,[5]],12]],[[[6,[5]],12,12]],[[[58,[[0,[[23,[8]],[40,[8]],57]]]],[6,[5]],12,12]],[[[59,[[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12]],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12]],[[[45,[[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12]],[[[6,[5]],12,12]],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12]],[[[6,[5]],12,12]],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12]],[[],12],[[],12],[[[58,[[0,[[23,[8]],[40,[8]],57]]]]],12],[[[59,[[0,[[7,[16]],[7,[8]]]]]]],12],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]]],12],[[[45,[[0,[[7,[16]],[7,[8]]]]]]],12],[65,12],[66,12],[67,12],[68,12],[[71,12,[6,[5]]]],[[[6,[5]],12,12,12]],[[[58,[[0,[[23,[8]],[40,[8]],57]]]],[6,[5]],12,12,12]],[[[59,[[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12,12]],[[[61,[[0,[60,19]],[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12,12]],[[[45,[[0,[[7,[16]],[7,[8]]]]]],[6,[5]],12,12,12]],0,[[],18],[[[48,[[7,[8]]]]],18],[[[49,[[7,[8]]]]],18],[[[50,[[7,[8]]]]],18],[[[51,[[7,[8]]]]],18],0,0,0,0,0,0,0,0,0,0,[[],18],[65,18],[66,18],[67,18],[68,18],0,0,0,[[],8],[65,8],[66,8],[67,8],[68,8],0,0,[[],8],[65,8],[66,8],[67,8],[68,8],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],8],[65,8],[66,8],[67,8],[68,8],0,0,0,0,0,0,0,0,0,0,0,[72,72],[73,73],[37,37],[69,69],[64,64],[65,65],[66,66],[67,67],[68,68],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[58,[[48,[[0,[[7,[16]],[7,[8]]]]]]]],[0,[[7,[16]],[7,[8]]]]],[[58,[[48,[[0,[[7,[16]],[7,[8]]]]]]]]]],[[[58,[[51,[[0,[[7,[16]],[7,[8]]]]]]]],[0,[[7,[16]],[7,[8]]]]],[[58,[[51,[[0,[[7,[16]],[7,[8]]]]]]]]]],[[[58,[[49,[[0,[[7,[16]],[7,[8]]]]]]]],[0,[[7,[16]],[7,[8]]]]],[[58,[[49,[[0,[[7,[16]],[7,[8]]]]]]]]]],[[[58,[[50,[[0,[[7,[16]],[7,[8]]]]]]]],[0,[[7,[16]],[7,[8]]]]],[[58,[[50,[[0,[[7,[16]],[7,[8]]]]]]]]]],[[[59,[[0,[[7,[16]],[7,[8]]]]]],[0,[[7,[16]],[7,[8]]]]],[[59,[[0,[[7,[16]],[7,[8]]]]]]]],[[[61,[[0,[60,74,19]],[0,[[7,[16]],[7,[8]]]]]],[0,[[7,[16]],[7,[8]]]]],[[61,[[0,[60,74,19]],[0,[[7,[16]],[7,[8]]]]]]]],[[[45,[[0,[[7,[16]],[7,[8]]]]]],[0,[[7,[16]],[7,[8]]]]],[[45,[[0,[[7,[16]],[7,[8]]]]]]]],0,0,0,[[],[[45,[[0,[[7,[16]],[7,[8]]]]]]]],[[],37],[[],69],0,0,0,0,0,0,0,0,0,[[[58,[[0,[[23,[8]],[40,[8]],57]]]],[58,[[0,[[23,[8]],[40,[8]],57]]]]],17],[[[59,[[0,[[7,[16]],[7,[8]]]]]],[59,[[0,[[7,[16]],[7,[8]]]]]]],17],[[[61,[[0,[60,74,19]],[0,[[7,[16]],[7,[8]]]]]],[61,[[0,[60,74,19]],[0,[[7,[16]],[7,[8]]]]]]],17],[[[45,[[0,[[7,[16]],[7,[8]]]]]],[45,[[0,[[7,[16]],[7,[8]]]]]]],17],[[72,72],17],[[73,73],17],[[69,69],17],[[64,64],17],[[65,65],17],[[66,66],17],[[67,67],17],[[68,68],17],[[],17],0,[[72,28],36],[[73,28],36],[[37,28],36],[[[45,[[0,[[7,[16]],[7,[8]]]]]],[0,[[7,[16]],[7,[8]]]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],52],[65,52],[66,52],[67,52],[68,52],[[],52],[65,52],[66,52],[67,52],[68,52],0,0,0,0,0,[[],18],[65,18],[66,18],[67,18],[68,18],0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[6,[5]]],52],[[65,[6,[5]]],52],[[66,[6,[5]]],52],[[67,[6,[5]]],52],[[68,[6,[5]]],52],0,0,0,0,0,0,[73,69],0,0,0,0,0,0,0,0,0,0,0,[18],[[65,18]],[[66,18]],[[67,18]],[[68,18]],0,[[[48,[[7,[8]]]]],[[6,[8]]]],[[[49,[[7,[8]]]]],[[6,[8]]]],[[[50,[[7,[8]]]]],[[6,[8]]]],[[[51,[[7,[8]]]]],[[6,[8]]]],[[[48,[[7,[8]]]]],[[6,[8]]]],[[[49,[[7,[8]]]]],[[6,[8]]]],[[[50,[[7,[8]]]]],[[6,[8]]]],[[[51,[[7,[8]]]]],[[6,[8]]]],0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],0,0,0,0,[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[6,[5]],12,12,12]],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[62,[55]],[6,[16]],[6,[5]],12,[6,[18]],12,12,12,12,12,63],17],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]]],64],0,0,0,0,[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[6,[5]]],12],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]]],12],[[79,12,12]],[[[7,[8]],17,37,12],[[78,[[7,[8]],[80,[[7,[8]]]],81]]]],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]]],69],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],17,12,[6,[5]]],70],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[6,[18]]]],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],12,12,[6,[5]],12]],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[6,[5]],12,12]],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[6,[5]],12,12,12,12,12,[6,[52]]],12],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]]],12],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[6,[5]],12,12,12]],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[82,82],[54,54],[[]],[[]],[[[78,[[0,[[7,[16]],[7,[8]]]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[16]],[7,[8]]]]]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[16]],[7,[8]]]]]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[16]],[7,[8]]]]]],[23,[8]],[40,[8]]]],77]],[0,[[7,[16]],[7,[8]]]]],[[78,[[0,[[7,[16]],[7,[8]]]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[16]],[7,[8]]]]]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[16]],[7,[8]]]]]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[16]],[7,[8]]]]]],[23,[8]],[40,[8]]]],77]]]],0,0,0,[[],54],[83,8],[79,8],0,[[[80,[[7,[8]]]],[80,[[7,[8]]]]],17],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]]],17],[[82,28],36],[[54,28],36],0,[[]],[[[80,[[7,[8]]]],[7,[8]]]],[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[7,[8]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[83,8],[79,8],[[],8],[[],8],[[],8],[[],8],[[]],[[[7,[8]],8],[[80,[[7,[8]]]]]],[[]],[[[7,[8]]],[[80,[[7,[8]]]]]],0,[[79,8]],[[79,8]],0,[[[80,[[7,[8]]]]],[[6,[8]]]],[[[80,[[7,[8]]]]],[[6,[8]]]],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],0,0,0,0,0,0,[[[0,[[7,[8]],[7,[52]],[7,[53]],[7,[54]]]],[62,[55]],12,12,[6,[5]],12,37,[78,[[0,[[7,[8]],[7,[52]],[7,[53]],[7,[54]]]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[8]],[7,[52]],[7,[53]],[7,[54]]]]]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[8]],[7,[52]],[7,[53]],[7,[54]]]]]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[8]],[7,[52]],[7,[53]],[7,[54]]]]]],[23,[8]],[40,[8]]]],77]],[6,[18]],12,[6,[56]],12,12]],[[[0,[[7,[8]],[7,[53]],[7,[54]]]],[62,[55]],12,12,[6,[5]],12,37,[78,[[0,[[7,[8]],[7,[53]],[7,[54]]]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[8]],[7,[53]],[7,[54]]]]]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[8]],[7,[53]],[7,[54]]]]]],[23,[8]],[40,[8]]]]]],[76,[8,[0,[[7,[8]],[7,[53]],[7,[54]]]]]],[23,[8]],[40,[8]]]],77]],[6,[18]],12,[6,[56]],12,12]],[[[6,[54]],12]],[[[7,[53]],[62,[55]],12,12,[6,[5]],12,37,12,[6,[18]],[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],[6,[54]]],12],[[12,12,12,[6,[54]],[6,[18]],12,37,[6,[56]],12]],0,0,[[[78,[[7,[8]],[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,[76,[8]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]]]],[76,[8,[7,[8]]]],[23,[8]],[40,[8]]]],77]],12,12,[6,[5]],12]],0,[[]],[[]],[[]],[[]],[[]],[[]],[84,84],[85,85],[[]],[[]],0,0,0,0,[[],85],0,0,[[84,28],36],[[85,28],36],[[]],[[]],[[]],0,[[]],[[]],[[]],0,0,0,0,0,[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[[6,[8]],12],53],[[[0,[[40,[8]],86]]],53],[[[6,[8]],12,12],53],0,[[]],[[]],[[[87,[[0,[[7,[5]],[7,[8]]]]]],[0,[[7,[5]],[7,[8]]]]]],[[]],[[]],0,[[[87,[[0,[[7,[5]],[7,[8]]]]]]],12],[[],[[87,[[0,[[7,[5]],[7,[8]]]]]]]],0,0,[[],4],[[],4],[[],33],0,[[[87,[[0,[[7,[5]],[7,[8]]]]]]],12],[[[0,[[7,[5]],[7,[16]],[7,[8]],[7,[53]],[7,[88]],[7,[89]],[7,[90]],[7,[91]],[7,[92]]]],[6,[56]],12,[6,[5]],12,12,37,[87,[[0,[[7,[5]],[7,[16]],[7,[8]],[7,[53]],[7,[88]],[7,[89]],[7,[90]],[7,[91]],[7,[92]]]]]],[87,[[0,[[7,[5]],[7,[16]],[7,[8]],[7,[53]],[7,[88]],[7,[89]],[7,[90]],[7,[91]],[7,[92]]]]]],[87,[[0,[[7,[5]],[7,[16]],[7,[8]],[7,[53]],[7,[88]],[7,[89]],[7,[90]],[7,[91]],[7,[92]]]]]]]],0,0,0,[[[7,[93]],[6,[8]],12,12,[6,[5]],[6,[16]],12,[6,[5]]]],[[[6,[5]],12,[6,[93]],12,[6,[5]]]],[[38,[6,[5]],12,12,12,5,5,18,37,94,[95,[18]],[6,[56]],12,[96,[38]],97,12,[6,[5]],39]],[[38,[6,[5]],12,12,12,18,37,[95,[18]],[6,[56]],12,97,12,[6,[5]],39]],[[38,[6,[5]],12,12,12,18,37,[95,[18]],[6,[56]],12,97,12,[6,[5]],39]],[[12,[6,[5]]]],[[38,18,[6,[5]],12,12,37,12,97,12,[6,[5]],17,39]],[[12,[6,[5]]]],[[37,12,[6,[5]]]],[[98,93,93],17],[[12,[6,[5]]]],0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[99,99],[97,97],[[]],[[]],0,0,0,0,[[[96,[[0,[[7,[5]],[7,[8]],[7,[89]],[7,[90]],[7,[91]]]]]],[0,[[7,[5]],[7,[8]],[7,[89]],[7,[90]],[7,[91]]]]]],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,[[],[[96,[[0,[[7,[5]],[7,[8]],[7,[89]],[7,[90]],[7,[91]]]]]]]],[[],97],0,0,0,0,0,[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,0,0,[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[[0,[[7,[8]],[7,[92]],[7,[[0,[[23,[8]],[40,[8]],86,19]]]]]],[6,[[0,[[23,[8]],[40,[8]],86,19]]]],12,12,[6,[[0,[[23,[8]],[40,[8]],86,19]]]],12,[6,[8]]]],[[[0,[[23,[8]],[40,[8]],86,19]],[0,[[23,[8]],[40,[8]],86,19]]],53],[[[6,[[0,[[23,[8]],[40,[8]],86,19]]]],[6,[8]],[6,[8]],[6,[8]],[6,[92]],12,12,12,12],12],[[[0,[[7,[8]],[7,[[0,[[23,[8]],[40,[8]],86,19]]]]]],[6,[[0,[[23,[8]],[40,[8]],86,19]]]],[6,[8]],12],12],[[[6,[[0,[[23,[8]],[40,[8]],86,19]]]],12,[6,[8]],12,[6,[[0,[[23,[8]],[40,[8]],86,19]]]],[6,[8]]]],0,[[]],[[]],[92,92],[[]],0,0,[[],92],[[]],0,0,[[]],[[]],[[],4],[[],4],[[],33],0,0,0,0,[12],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]],12]],[[]],[[]],[[[104,[[0,[[7,[5]],19]],[0,[[7,[16]],19]],[0,[[7,[18]],19]],[0,[[7,[8]],19]],[0,[[7,[52]],19]],[0,[[7,[56]],19]],[0,[[7,[53]],19]],[0,[[7,[100]],19]],[0,[[7,[101]],19]],[0,[[7,[102]],19]],[0,[[7,[103]],19]],[0,[[7,[89]],19]],[0,[[7,[90]],19]],[0,[[7,[91]],19]],[0,[[7,[92]],19]],[0,[[7,[94]],19]],[0,[[7,[93]],19]],[0,[[7,[54]],19]]]]],[[104,[[0,[[7,[5]],19]],[0,[[7,[16]],19]],[0,[[7,[18]],19]],[0,[[7,[8]],19]],[0,[[7,[52]],19]],[0,[[7,[56]],19]],[0,[[7,[53]],19]],[0,[[7,[100]],19]],[0,[[7,[101]],19]],[0,[[7,[102]],19]],[0,[[7,[103]],19]],[0,[[7,[89]],19]],[0,[[7,[90]],19]],[0,[[7,[91]],19]],[0,[[7,[92]],19]],[0,[[7,[94]],19]],[0,[[7,[93]],19]],[0,[[7,[54]],19]]]]]],[[]],[[],[[104,[[0,[[7,[5]],26]],[0,[[7,[16]],26]],[0,[[7,[18]],26]],[0,[[7,[8]],26]],[0,[[7,[52]],26]],[0,[[7,[56]],26]],[0,[[7,[53]],26]],[0,[[7,[100]],26]],[0,[[7,[101]],26]],[0,[[7,[102]],26]],[0,[[7,[103]],26]],[0,[[7,[89]],26]],[0,[[7,[90]],26]],[0,[[7,[91]],26]],[0,[[7,[92]],26]],[0,[[7,[94]],26]],[0,[[7,[93]],26]],[0,[[7,[54]],26]]]]]],[[]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[]],[[]],[[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]],[[104,[[7,[5]],[7,[16]],[7,[18]],[7,[8]],[7,[52]],[7,[56]],[7,[53]],[7,[100]],[7,[101]],[7,[102]],[7,[103]],[7,[89]],[7,[90]],[7,[91]],[7,[92]],[7,[94]],[7,[93]],[7,[54]]]]]],[[]],[[],4],[[],4],[[],33],0,[[16,16,18],16],0,[56,8],[56,8],[[56,105]],[[56,105],8],[[12,12,[6,[18]]],12],[12,16],[12,16],[[12,12,18,16]],[[56,105,12,12,12,12]],[[105,12,12,12,12],56],[[12,12,52,16,8]],[[[6,[56]],12,8,8,105]],0,[[]],[[]],[[]],[[]],[105,105],[56,56],[[]],[[]],0,0,[[],56],0,0,0,[[105,28],36],[[56,28],36],[[]],[[]],0,[[]],[[]],0,0,[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[[7,[93]],[6,[5]],12,18,[6,[18]],12,[6,[5]],[6,[16]],12,[6,[5]],12,[6,[5]]]],0,0,0,0,[[]],[[]],[106,106],[[]],[[106,106],17],[[],17],[[]],[[]],[[]],[[],4],[[],4],[[],33],[[[7,[93]],[6,[5]],12,18,[6,[8]],[6,[5]],[6,[18]],12,12,[6,[5]]]],[[12,18,12,[6,[5]]]],[[12,52,12,[6,[5]]]],[[[6,[[0,[74,19]]]],12,[6,[[0,[74,19]]]],12,12]],[[5,5,[6,[5]]],5],[94,[[6,[5]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],17,17]],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],17,17],[[95,[108]]]],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],17,17],[[95,[53]]]],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],5],[[]],[[]],[[]],[[]],[108,108],[[]],[[108,28],36],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],[0,[[7,[16]],[7,[8]],[7,[53]]]]]],[[]],[[]],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],12]],[[]],[[]],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],[[6,[5]]]],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],12],5],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],12],[[[0,[[7,[16]],[7,[8]],[7,[53]]]],109,[95,[5]],[111,[110]],5],[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]]],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],112],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],[[111,[110]]]],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],[114,[113]]]],0,[[[95,[108]]],95],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],[[111,[110]]]],[[]],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],5,5]],[[[107,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],[95,[5]],12,5,12,5]],0,[[8,8,8],8],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[38,38,18,18,72,12,[6,[5]],12,[6,[5]],39],18],[[[115,[38]],116,12,[6,[5]],12,12,[6,[5]],12,[62,[12]],39],18],[[[115,[38]],12,[6,[5]]]],[38,[[115,[38]]]],[[[115,[38]]]],[[[115,[38]]],18],[[],37],[[[115,[38]]],12],[[[115,[38]]],18],[12,12],[[12,12],12],0,0,[[[115,[38]],12,[6,[5]]]],[[[115,[38]],12,[6,[5]],[45,[38]]]],[[[115,[38]],117,8],18],0,0,[[[115,[38]],12],[[6,[5]]]],[[],8],[[[115,[38]],18,18,12,[6,[5]],39],18],0,[[[0,[[7,[16]],[7,[8]]]],[45,[[0,[[7,[16]],[7,[8]]]]]],37,[6,[5]],12,12,18]],0,[[56,12]],0,0,0,[37],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[118,118],[119,119],[116,116],[117,117],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,[[118,118],17],[[116,116],17],[[117,117],17],[[],17],[[],17],[[],17],[[119,28],36],[[117,28],36],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[37,117,8],18],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],0,0,[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[[6,[5]],12,[6,[16]]]],[[[6,[8]],12,18,[6,[93]],[6,[5]]]],[[12,[6,[8]],[6,[5]]]],[[18,[6,[93]],[6,[5]],18],17],[[[6,[5]],12,12,[6,[5]],[6,[5]]]],[[93,93],17],[[120,93,93],17],[[[6,[5]],12,18,18]],0,0,[[93,8,121,121]],[[8,121,121],93],0,[[[6,[93]],12,122]],[[]],[[]],[[]],[[]],[93,93],[[]],[[],93],[[]],[[]],0,0,[[]],[[]],[[]],0,[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],0,0,0,0,[[[6,[8]]],123],0,[[[124,[[7,[8]]]],[6,[5]],8,12,5,[95,[5]],[125,[[7,[8]]]]],123],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[[124,[[7,[8]]]],12,12],12],0,[126,126],[[]],[[[7,[8]]],[[125,[[7,[8]]]]]],[[[7,[8]]],[[124,[[7,[8]]]]]],0,[[[127,[[7,[8]]]],[7,[8]]]],[[[125,[[7,[8]]]],[7,[8]]]],[[[124,[[7,[8]]]],[7,[8]]]],[[]],[[]],[[]],[[]],[[[125,[[7,[8]]]],[6,[5]],[6,[5]],12],[[95,[5]]]],[[[127,[[7,[8]]]],126],8],[[[127,[[7,[8]]]],126],8],[[]],[[]],[[]],[[]],[[[125,[[7,[8]]]]],17],[[[124,[[7,[8]]]]],[[128,[12]]]],[[[7,[8]]],[[127,[[7,[8]]]]]],[[[7,[8]],[62,[5]]],[[125,[[7,[8]]]]]],[[[7,[8]]],[[124,[[7,[8]]]]]],[[[125,[[7,[8]]]]],[[127,[[7,[8]]]]]],[[[125,[[7,[8]]]],[6,[[114,[[40,[5]]]]]],[6,[5]],[6,[5]],12,[124,[[7,[8]]]],5],5],[[[124,[[7,[8]]]],[6,[5]],[6,[5]],[125,[[7,[8]]]]]],[[[124,[[7,[8]]]],[6,[5]],[6,[5]]]],[[[124,[[7,[8]]]],[125,[[7,[8]]]]]],0,0,[[[124,[[7,[8]]]]],[[95,[5]]]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[],33],0,0,0,[[]],[[]],[[[129,[74]]],17],[[],[[129,[74]]]],[[]],[[[129,[74]]],12],[[]],[[],[[129,[74]]]],[[[129,[74]]],[[62,[74]]]],[[[129,[74]],74],4],[[[129,[74]],130],[[62,[74]]]],[[[129,[74]]],12],[[],4],[[],4],[[],33],0,0,0,0,[[[6,[56]],12,[87,[[0,[[7,[5]],[7,[8]]]]]],[87,[[0,[[7,[5]],[7,[8]]]]]],[87,[[0,[[7,[5]],[7,[8]]]]]],[6,[5]],12,12,5,5,[6,[94]],[6,[89]],[6,[90]],[6,[91]]]],0,0,0,0,[[[6,[[0,[[23,[8]],86]]]],12]],[[5,5,94],5],0,0,0,[[[0,[[23,[8]],[40,[8]],86]],[0,[[23,[8]],[40,[8]],86]]]],[[[0,[[40,[8]],[23,[8]],86]],12]],[[[0,[[40,[8]],[23,[8]],86]],[6,[[0,[74,19]]]],12]],[[[0,[[23,[8]],86]]]],0,0,0,0,0,0,[[[6,[[0,[[23,[8]],[40,[8]],86]]]],12,12]],[[],53],[89,53],[90,53],[91,53],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[89,89],[90,90],[91,91],[94,94],[[]],[[]],[[]],[[]],0,0,0,[[],89],[[],90],[[],91],[[],131],[[],132],[[],133],[[],134],[[],94],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[]],[[]],[[]],[[]],[53],[[89,53]],[[90,53]],[[91,53]],[12],[[89,12]],[[90,12]],[[91,12]],[89,[[6,[8]]]],[90,[[6,[8]]]],[91,[[6,[8]]]],[89,[[6,[8]]]],[90,[[6,[8]]]],[91,[[6,[8]]]],0,[[]],[[]],[[]],[[]],[[],12],[89,12],[90,12],[91,12],0,0,0,[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[113,113],[109,109],[[]],[[]],0,0,[[],110],[[],113],[[109,109],17],[[113,28],36],[[109,28],[[4,[29]]]],[[109,28],36],[113,135],[[]],[110,113],[110,113],[[]],[[]],[[109,12],5],[[]],[[]],[[]],[109,12],0,0,[110,[[6,[5]]]],[113,[[6,[5]]]],[110,[[6,[5]]]],[[109,12]],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[136,5],[137,5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[136,136],[137,137],[112,112],[[[111,[[0,[[40,[5]],19]]]]],[[111,[[0,[[40,[5]],19]]]]]],[138,138],[139,139],[[[140,[[0,[[40,[5]],19]]]]],[[140,[[0,[[40,[5]],19]]]]]],[[[141,[[0,[[40,[5]],19]]]]],[[141,[[0,[[40,[5]],19]]]]]],[[[114,[[0,[[40,[5]],19]]]]],[[114,[[0,[[40,[5]],19]]]]]],[135,135],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[111,[[40,[5]]]]],95],[[[111,[[40,[5]]]]],95],[[],12],[[],12],[[[111,[[40,[5]]]]],95],[[[111,[[40,[5]]]]],95],[[],12],[[],12],[[[111,[[40,[5]]]]],[[6,[5]]]],[[[111,[[40,[5]]]]],12],0,[[],136],[[],137],[[],112],[[],[[140,[[0,[[40,[5]],26]]]]]],[[],[[114,[[40,[5]]]]]],[[],135],0,[[[111,[[40,[5]]]]],[[6,[5]]]],[[[111,[[0,[[40,[5]],[23,[5]]]]]]],[[6,[5]]]],0,[[112,112],17],[[],17],[5,16],0,[[136,28],36],[[137,28],36],[[112,28],36],[[[111,[[0,[142,[40,[5]]]]]],28],36],[[138,28],36],[[139,28],36],[[[140,[[0,[142,[40,[5]]]]]],28],36],[[[141,[[0,[142,[40,[5]]]]]],28],36],[[[114,[[0,[142,[40,[5]]]]]],28],36],[[135,28],36],[[[114,[[0,[[40,[5]],26]]]],39]],[[114,[7,[5]]]],[[114,[7,[5]]]],[[],135],[[[114,[[0,[[40,[5]],143]]]]],[[114,[135]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[113,135],[[[111,[[40,[5]]]]],[[111,[[144,[[40,[5]]]],[40,[5]]]]]],[[[111,[[40,[5]]]]],5],[[[111,[[40,[5]]]]],5],[[[111,[[40,[5]]]]],[[6,[5]]]],[[[111,[[0,[[40,[5]],[23,[5]]]]]]],[[6,[5]]]],[[[111,[[40,[5]]]]],17],[[112,145]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[135,12],[135,8],0,[[[111,[[40,[5]]]]],112],[[],112],[[],112],[5,136],[[5,5],137],[5,[[4,[112]]]],[[]],[[],138],[[],139],[[],[[141,[[0,[[40,[5]],26]]]]]],[[],[[114,[[40,[5]]]]]],0,[135,12],[112,5],0,0,[[[114,[113]]]],[5],[109],[109],[[[111,[[0,[[40,[5]],[23,[5]]]]]],5]],[[[111,[[0,[[40,[5]],[23,[5]]]]]],95]],[[[111,[[0,[[40,[5]],[23,[5]]]]]],95]],[[[111,[[0,[[40,[5]],[23,[5]]]]]],112]],[[[111,[[0,[[40,[5]],[23,[5]]]]]],5]],[[[111,[[0,[[40,[5]],[23,[5]]]]]],[95,[5]]]],[[[111,[[0,[[40,[5]],[23,[5]]]]]],95]],[[],112],[12,12],[[[140,[[40,[5]]]]],[[6,[5]]]],[[[141,[[40,[5]]]]],[[6,[5]]]],[135,[[6,[5]]]],[[[141,[[0,[[40,[5]],[23,[5]]]]]]],[[6,[5]]]],[16,5],[137,5],[[[111,[[40,[5]]]]],95],[[[111,[[40,[5]]]]],95],[[],12],[[],12],[[[114,[[0,[146,[40,[5]]]]]],[6,[5]]],[[114,[113]]]],[[[6,[5]]],113],[[135,[6,[5]]],113],[[[6,[5]]],110],[[135,[6,[5]]],110],[[[114,[[0,[146,[40,[5]]]]]],109],[[114,[113]]]],[109,[[4,[113]]]],[[135,109],[[4,[113]]]],[112,[[4,[94]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[16,5],[5,16],[[137,5]],[[],112],0,0,[[5,5,94],5],0,[[],5],[12],[[],[[6,[5]]]],[12,5],[[],12],[[],112],[[147,[114,[113]]]],[[5,5]],[[[95,[5]],12,5,12,5]],[[12,12,12,[6,[5]],[6,[53]]]],0,[[38,[6,[5]],12,12,37,5,5,[6,[56]],12,94,[96,[38]]]],[[[0,[[7,[5]],[7,[8]],[7,[89]],[7,[90]],[7,[91]]]],[6,[5]],12,12,5,5,94,[6,[5]],12,[6,[8]],[6,[56]],12,[96,[[0,[[7,[5]],[7,[8]],[7,[89]],[7,[90]],[7,[91]]]]]]]],[[[0,[[7,[5]],[7,[8]],[7,[89]],[7,[90]],[7,[91]]]],[6,[5]],12,12,5,5,94,12,[6,[8]],[6,[56]],12,[96,[[0,[[7,[5]],[7,[8]],[7,[89]],[7,[90]],[7,[91]]]]]]]],[[37,8,8]],[[12,[96,[[0,[[7,[5]],[7,[8]],[7,[89]],[7,[90]],[7,[91]]]]]]]],0,0,0,0,0,[[]],[[]],[[]],[[]],0,0,[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[37,[43,[[0,[[40,[5]],41,42]]]],[6,[5]],[6,[[46,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]]]],[[4,[12,47]]]],[[],148],[[]],[[]],[[]],[[]],[[]],[[]],[[[150,[41,[0,[41,149]]]]],[[4,[41,[0,[41,149]]]]]],[[148,[43,[[0,[41,42]]]]]],[[148,[43,[[0,[41,42]]]]]],[[148,[46,[41,41,[0,[38,41]]]],12,12,[0,[130,41,151]]]],[[148,[46,[41,41,[0,[38,41]]]],12,12]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[[152,[41]]],[[4,[41,153]]]],[[[152,[41]],154],[[4,[153]]]],0,[[]],[[]],[102,102],[[]],[[],102],[[102,28],36],[[]],[[]],[[]],[[],4],[[],4],[[],33],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]]],5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]]]],[[156,5],53],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]],[0,[[7,[101]],[7,[8]],[7,[100]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]],12]],[[[6,[101]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]]],[[6,[5]]]],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]],12],5],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]]],12],[[[6,[101]],5,5,12,[62,[5]]],101],[[5,5,12,[62,[5]]],12],[[5,5,12,[62,[5]]],12],[[5,5,12,[62,[5]]],12],[[5,5,12,[62,[5]]],12],[[5,5,12,[62,[5]]],12],[[5,5,12,[62,[5]]],12],[[5,5,12,[62,[5]]],12],[[5,5,12,[62,[5]]],12],[[5,5,12,[62,[5]]],12],[[[6,[101]],5,5,12,[62,[5]]],156],[[[0,[[7,[101]],[7,[8]],[7,[100]]]],109,[95,[5]],[111,[110]],37],[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]]]],[[],12],[[],12],[[],12],[[],12],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]]],112],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]],[114,[113]]]],[[5,5,12,[62,[5]]],12],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]]],[[111,[110]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[156,5]],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]],5,5]],[[[155,[[0,[[7,[101]],[7,[8]],[7,[100]]]]]],[95,[5]],12,5,12,5]],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],0,0,0,0,0,0,0,0,0,0,0,0,0,[12],[[]],[[]],[[]],[[]],[[]],[[]],[[[157,[10,[23,[5]],38]]]],[[]],0,0,[[]],[[]],[[]],[[[158,[1,[23,[5]],38]]],1],[[[159,[1]]],1],[[[157,[10,[23,[5]],38]]],10],0,[[]],[[]],[[]],[[[158,[1,[23,[5]],38]]],1],[[[159,[1]]],1],[[[157,[10,[23,[5]],38]]],10],[[],12],0,[[1,[23,[5]],38,8,8],[[158,[1,[23,[5]],38]]]],[[1,12,8,8],[[159,[1]]]],[[10,[23,[5]],38,8,8],[[157,[10,[23,[5]],38]]]],0,[[[158,[1,[23,[5]],38]],[6,[5]]],[[4,[12,3]]]],[[[159,[1]],[6,[5]]],[[4,[12,3]]]],[[[157,[10,[23,[5]],38]],[6,[5]]],[[4,[12]]]],[[],6],[[],6],0,[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[1,12,37],[[159,[1]]]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[37,[43,[[0,[[40,[5]],41,42]]]],[6,[5]],[6,[[46,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]]]],[[4,[12,47]]]],[[37,[43,[[0,[[40,[5]],41,42]]]],[6,[5]],[6,[[46,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]]],[160,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]],[[4,[12,47]]]],[[],161],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[162,[41,41]]],[[4,[41,41]]]],[[161,[43,[[0,[41,42]]]]]],[[161,[43,[[0,[41,42]]]]]],[12,160],[[161,[46,[41,41,[0,[38,41]]]],12,12]],[[161,[46,[41,41,[0,[38,41]]]],12,12,[0,[130,41,151]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[],33],[[[163,[41]]],[[4,[41,153]]]],[[[163,[41]],154],[[4,[153]]]],[[[6,[5]]],8],[[[6,[5]]],52],[[[6,[5]],52]],0,[[55,[6,[5]],12,12,[6,[8]]],18],[[],55],[[[6,[5]],[6,[5]],12],12],[[[6,[5]],[6,[5]],12],12],[[[6,[5]],[6,[5]],12],12],[[[6,[5]]],8],[[55,164,[6,[5]],12],18],[[[6,[5]],[6,[5]],12],12],[[]],[[]],0,[[]],[[]],0,0,0,0,[[[6,[5]],[6,[5]],12],12],[[],4],[[],4],[[],33],0,[[]],[[]],[164,164],[[]],[[]],0,[164,16],[[]],0,0,0,0,0,0,[164,5],0,[[]],[164,5],[[],4],[[],4],[[],33],0,0,[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],5],[[]],[[]],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],[6,[5]]]],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]]],[[]],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],12]],[[]],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],[[6,[5]]]],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],12],5],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],12],[[[6,[16]]]],[[[0,[[7,[16]],[7,[8]],[7,[53]]]],109,[111,[110]],37],[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]]],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],12],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]]],112],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],[114,[113]]]],[[],4],[[],4],[[],33],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],5,5]],[[[165,[[0,[[7,[16]],[7,[8]],[7,[53]]]]]],[95,[5]],12,5,12,5]],0,0,0,0,0,0,[[37,[43,[[0,[[40,[5]],41,42]]]],[6,[5]],[6,[[46,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]]],[166,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]],[[4,[12,47]]]],[[37,[6,[5]],[6,[5]],[6,[[46,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]]],[166,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]],[[4,[12,47]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[47,28],36],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],4],[43],[43],[167],[[[0,[38,41]],41],[[46,[41,41,[0,[38,41]],[168,[41,47]]]]]],[[],43],[167,47],[[[46,[41,41,[0,[38,41]],[168,[41,47]]]]]],[[46,12,12,[0,[130,41,151]]]],[[46,12,12]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],[[],[[4,[153]]]],[[[46,[41,41,[0,[38,41]],[168,[41,47]]]]]],[43],[[[46,[41,41,[0,[38,41]],[168,[41,47]]]],[0,[38,41]],41]],[43],[154,[[4,[153]]]],[43],[[[6,[5]],12,12,12,53],18],[52,53],[52,53],[16,53],[18,53],[52,53],[53,53],[52,8],[[12,12],12],[[8,8],8],[[5,5],5],[[12,12],12],[[8,8],8],0,[16,53],0,0,[169,170],[170,169],[170,169],[169,171],[170,18],0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[37,[43,[[0,[[40,[5]],41,42]]]],[6,[5]],[6,[[46,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]]],[172,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]],[[4,[12,47]]]],[[[172,[41,41,[0,[38,41]],[0,[41,42]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[[173,[41,41,[0,[38,41]],[0,[41,42]]]]],[[4,[41,47]]]],[[[172,[41,41,[0,[38,41]],[0,[41,42]]]],[43,[[0,[41,42]]]]]],[12,[[172,[41,41,[0,[38,41]],[0,[41,42]]]]]],[12,[[172,[[44,[[0,[38,41]]]],[45,[[0,[38,41]]]],[0,[38,41]]]]]],[[[172,[41,41,[0,[38,41]],[0,[41,42]]]],[46,[41,41,[0,[38,41]]]],12,12]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],0,0,0,0,0,0,0,0,0,0,0,0,[12],[[]],[[]],[[]],[[]],[[]],[[]],[[[174,[11,[23,[5]],38]]]],[[[175,[2,[23,[5]],38]]],[[4,[3]]]],[[[176,[2]]],[[4,[3]]]],[[[174,[11,[23,[5]],38]]],4],[[]],0,0,[[]],[[]],[[]],[[[175,[2,[23,[5]],38]]],2],[[[176,[2]]],2],[[[174,[11,[23,[5]],38]]],11],[[[175,[2,[23,[5]],38]]],2],[[[176,[2]]],2],[[[174,[11,[23,[5]],38]]],11],0,[[]],[[]],[[]],[[[175,[2,[23,[5]],38]]],2],[[[176,[2]]],2],[[[174,[11,[23,[5]],38]]],11],[[],12],0,[[2,[23,[5]],38,8,8],[[175,[2,[23,[5]],38]]]],[[2,12,8,8],[[176,[2]]]],[[11,[23,[5]],38,8,8],[[174,[11,[23,[5]],38]]]],0,[[],6],[[],6],0,[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[2,12,37],[[176,[2]]]],[[[175,[2,[23,[5]],38]],[6,[5]]],[[4,[12,3]]]],[[[176,[2]],[6,[5]]],[[4,[12,3]]]],[[[174,[11,[23,[5]],38]],[6,[5]]],[[4,[12]]]],[[11,[6,[5]]],4],0,0,0,0,0,0,0,[[177,12]],[[]],[[]],[[]],[[]],[[],[[178,[[0,[26,19,26]]]]]],[177],[[]],[[]],[[]],[[]],[179,177],[[[178,[[0,[19,26]]]]],[[6,[[0,[19,26]]]]]],[[[178,[[0,[19,26]]]]],[[6,[[0,[19,26]]]]]],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],0,[[180,12,5],34],[[180,12,5],34],[[180,12,5,12,5],181],[[180,12,5,12,5],181],[[],180],[5,180],[180],[180],0,0,0,[[]],[[]],[[]],[[]],0,[180,180],[[]],[[],180],[[]],[35,180],[[]],[[]],[[]],[180,35],[[]],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],0,0,0,0,0,0,0,0,0,0,0,[[18,18,182,12,5,12,5],18],[[183,184,12,5,12,5,12],18],[[183,184,12,5,12,5],18],[[185,186,187],183],[183],[[183,5,12]],[[183,12,12]],[183,18],[183,18],[[183,12],5],[[183,12],12],[12,12],0,0,[[183,12,5]],[[183,117,8],18],0,[[183,12],5],[[],8],[[]],[[]],[[]],[[]],[[]],[[]],[[[0,[154,188]]],[[189,[18]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],0,[[185,186,187],190],[[12,5,12,5],191],[[12,5,12,5,12,5,12,8,12,9],192],[[190,12,5,12,5,12],191],[[190,12,5,12,5],191],[[12,5,12,5],192],[190],[193,5],[[190,5,12]],[[190,12,12]],[190,193],[190,5],[190,18],[190,18],[190,18],[[190,12],5],[[190,12],12],[[190,194,8]],[[190,12],5],[[],8],0,0,0,[[]],[[]],0,0,0,0,0,0,0,[[]],[[]],0,[[],4],[[],4],[[],33],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[62,62,187],190],[[12,5,12,5],191],[[12,5,12,5,12,5,12,8,12,9],192],[[190,12,5,12,5,12],191],[[190,12,5,12,5],191],[[12,5,12,5],192],[190],0,[193,5],[[190,5,12]],[[190,12,12]],[190,193],[190,5],[190,18],[190,18],[190,18],[[190,12],5],[[190,12],12],[[190,194,8]],0,[[190,12],5],[[],8],0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],0,0,0,[193,193],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[193,28],[[4,[29]]]],[[]],[[]],0,0,0,0,0,[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[12,6],[12,6],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],0,0,[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],0,0,0,0,0,[[179,12],[[195,[[0,[26,19]]]]]],[12],[[[197,[74,196]]],196],[[[197,[198,199]]],200],[[[197,[74,196]]],74],[[[197,[201,199]]],18],[[[197,[74,196]]],74],[[[197,[[6,[202]],196]]],[[197,[6,196]]]],[[[197,[202,196]]],[[197,[196]]]],[[]],[[[197,[74,196]]],74],[[]],[[]],[[]],[[[197,[74,196]]],74],[[]],[[]],[[[197,[[0,[[130,[203]],74]],196]],203]],[[[197,[[0,[[39,[203]],74]],196]],203]],[[[197,[[0,[[154,[203]],74]],196]],203]],[[[197,[204,199]]],[[62,[204]]]],[[[197,[205,199]]],[[197,[205,199]]]],[[[197,[206,199]]],[[197,[206,199]]]],[[[197,[207,199]]],[[197,[207,199]]]],[[[197,[19,[0,[196,19]]]]],[[197,[19,[0,[196,19]]]]]],[[[197,[[6,[19]],[0,[196,19]]]]],[[197,[[6,[19]],[0,[196,19]]]]]],[[[197,[208,199]]],[[197,[208,199]]]],[[[197,[19,[0,[196,19]]]],[197,[19,[0,[196,19]]]]]],[[[197,[[6,[19]],[0,[196,19]]]],[197,[[6,[19]],[0,[196,19]]]]]],[[]],[[[197,[[0,[209,74]],196]],[197,[[0,[209,74]],196]]],210],[[[197,[[0,[211,74]],199]],12]],[[],[[197,[26,199]]]],[[],[[197,[206,199]]]],[[],[[197,[6,199]]]],[[],[[197,[207,199]]]],[[],[[197,[208,199]]]],[[],[[195,[26]]]],[[[197,[74,196]]],74],[[[197,[74,196]]],74],[[[197,[204,199]]],206],[[[197,[212,196]]],[[4,[[197,[212,196]],[197,[212,196]]]]]],[[[197,[212,196]]],[[4,[[197,[212,196]],[197,[212,196]]]]]],[[[197,[212,196]]],[[4,[[197,[212,196]],[197,[212,196]]]]]],[[[197,[212,196]]],[[197,[212,196]]]],[[[197,[212,196]]],[[197,[212,196]]]],[[[197,[212,196]]],[[197,[212,196]]]],[[[197,[74,196]]]],[[[195,[26]]]],[[[197,[[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,74]]]],74]]]],74]]]],74]],196]],[197,[[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,74]]]],74]]]],74]]]],74]],196]]],17],[[],17],[[[197,[[0,[211,74]],199]]],[[4,[[6,[5]],3]]]],[[[197,[[0,[145,74]],196]]],52],[[[197,[[0,[2,74]],199]]],[[4,[3]]]],[[[197,[74,196]],28],[[4,[29]]]],[[[197,[[0,[142,74]],196]],28],[[4,[29]]]],[[[197,[[0,[213,74]],196]],28],[[4,[29]]]],[[179,[195,[[0,[26,19]]]]]],[12],[214,[[197,[206,199]]]],[204,[[197,[204,199]]]],[[],[[197,[199]]]],[206,[[197,[206,199]]]],[[[215,[[6,[19]]]]],[[197,[[6,[19]],199]]]],[207,[[197,[207,199]]]],[[[215,[206]]],[[197,[204,199]]]],[[[197,[206,196]]],[[197,[[6,[5]],196]]]],[95,[[197,[6,199]]]],[[[6,[19]]],[[197,[[6,[19]],199]]]],[[[215,[206]]],[[197,[204,199]]]],[[[215,[208]]],[[197,[208,199]]]],[[[215,[207]]],[[197,[207,199]]]],[[[0,[204,41,42]]],[[197,[204,199]]]],[216,[[197,[205,199]]]],[206,[[197,[204,199]]]],[214,[[197,[204,199]]]],[217,[[197,[207,199]]]],[[[218,[196]]],[[197,[6,196]]]],[208,[[197,[208,199]]]],[205,[[197,[205,199]]]],[[[215,[206]]],[[197,[206,199]]]],[219],[214,[[197,[204,199]]]],[220,[[197,[208,199]]]],[[]],[206,[[197,[204,199]]]],[[[215,[205]]],[[197,[205,199]]]],[[]],[[]],[221,[[197,[6,199]]]],[[],[[197,[74,199]]]],[196,[[197,[74,196]]]],[[[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]],[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]]],17],[[[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]],[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]]],17],[[[197,[[0,[223,74]],196]],145]],[[[195,[26]],12],26],[[[195,[26]],12],26],[[]],[[]],[[]],[[[197,[196]]],[[197,[6,196]]]],[[]],[[[197,[196]]]],[[]],[[[197,[74,196]]],[[224,[[197,[74,196]]]]]],[[[197,[74,196]]]],[[[197,[74,196]]]],[206,225],[206,17],[[[197,[[0,[226,74]],196]]],17],[206,17],[[[197,[[0,[1,74]],199]]],17],[206,17],[[[197,[[0,[2,74]],199]]],17],[[[197,[[0,[227,74]],196]]],62],[[[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]],[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]]],17],[[[197,[74,196]]],74],[[[197,[[0,[226,74]],196]]],12],[[[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]],[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]]],17],[[[197,[[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,74]]]],74]]]],74]]]],74]],196]],[197,[[0,[[75,[[0,[[75,[[0,[[75,[[0,[75,74]]]],74]]]],74]]]],74]],196]]],17],[[],[[197,[199]]]],[228,179],[[196,196],[[197,[196,196]]]],[[],[[197,[202,199]]]],[[196,196],[[197,[202,196,196]]]],[12,[[197,[[6,[202]],199]]]],[[12,196],[[197,[[6,[202]],196]]]],[[],[[197,[202,199]]]],[[196,196],[[197,[202,196,196]]]],[12,[[197,[[6,[202]],199]]]],[[12,196],[[197,[[6,[202]],196]]]],[[[197,[[0,[227,74]],196]]],62],[[[197,[[0,[229,74]],196]]],62],[[[197,[[0,[227,74]],196]],12],62],[[[197,[[0,[229,74]],196]],12],62],[[[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]],[197,[[0,[[222,[[0,[[222,[[0,[[222,[[0,[222,74]]]],74]]]],74]]]],74]],196]]],[[62,[210]]]],[[],[[224,[[197,[199]]]]]],[[196,196],[[224,[[197,[196,196]]]]]],[[[224,[[197,[[0,[230,231,74]],196]]]],232],233],[[[224,[[197,[[0,[234,231,74]],199]]]],232],[[233,[62]]]],[235],[[[197,[[0,[1,74]],199]],[6,[5]]],[[4,[12,3]]]],[[[197,[[0,[1,74]],199]],236],[[4,[3]]]],[[[197,[[0,[1,74]],199]],[6,[5]]],[[4,[3]]]],[[[197,[[0,[211,74]],199]],214],[[4,[12,3]]]],[[[197,[[0,[1,74]],199]],[218,[5,199]]],[[4,[12,3]]]],[[[197,[[0,[1,74]],199]],214],[[4,[12,3]]]],[[[197,[[0,[211,74]],199]],5,[218,[5,199]]],[[4,[12,3]]]],[[[197,[[0,[1,74]],199]],[6,[237]]],[[4,[12,3]]]],[[[224,[[197,[[0,[238,231,74]],196]]]]],239],[[[197,[[0,[240,74]],199]],241],[[4,[52,3]]]],[[[197,[[0,[227,74]],196]]]],[[[197,[[0,[234,231,74]],199]]]],[[[195,[26]]],[[6,[26]]]],[[[195,[26]]],[[6,[26]]]],[[[197,[204,199]]],[[62,[204]]]],[[[197,[[0,[240,74]],199]]],[[4,[52,3]]]],[206,[[62,[206]]]],[206,[[62,[206]]]],[[]],[[],214],[[],4],[[[197,[6,199]]],[[4,[[197,[95,199]]]]]],[[[218,[199]]],[[4,[[197,[95,199]]]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],[[4,[[197,[199]],242]]]],[[196,196],[[4,[[197,[196,196]],242]]]],[[],[[4,[[197,[202,199]],242]]]],[[196,196],[[4,[[197,[202,196,196]],242]]]],[12,[[4,[[197,[[6,[202]],199]],242]]]],[[],[[4,[[197,[202,199]],242]]]],[[196,196],[[4,[[197,[202,196,196]],242]]]],[12,[[4,[[197,[[6,[202]],199]],242]]]],[[],33],[[],33],[[],33],[[[197,[202,196]]],[[197,[196]]]],[[[197,[[0,[145,74]],196]],[6,[5]]]],[[[197,[[0,[2,74]],199]],[6,[5]]],[[4,[12,3]]]],[[[197,[[0,[2,74]],199]],[6,[5]]],[[4,[3]]]],[[[197,[[0,[2,74]],199]],243],[[4,[3]]]],[[[197,[[0,[145,74]],196]],244]],[[[197,[[0,[145,74]],196]],121]],[[[197,[[0,[145,74]],196]],18]],[[[197,[[0,[145,74]],196]],245]],[[[197,[[0,[145,74]],196]],246]],[[[197,[[0,[145,74]],196]],247]],[[[197,[[0,[145,74]],196]],12]],[[[197,[[0,[145,74]],196]],206]],[[[197,[[0,[145,74]],196]],248]],[[[197,[[0,[145,74]],196]],16]],[[[197,[[0,[145,74]],196]],8]],[[[197,[[0,[145,74]],196]],52]],[[[197,[[0,[145,74]],196]],5]],[[[197,[[0,[145,74]],196]],12]],[[[197,[[0,[2,74]],199]],[6,[249]]],[[4,[12,3]]]],0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[228,228],[[]],0,[[]],[14,191],[[]],[[]],[[]],[[]],[[]],0,[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[12,117,8,12,5,12,5,12,185,186,187],18],[[250,12,117,8,12,5,12,5,12,185,186,187],18],[[12,185,186,187],250],[250],[[12,12],12],0,0,[[]],[[]],[[]],[[]],[[],4],[[],4],[[],33],0,0,0,[[12,12,[6,[5]],12,12,[6,[5]],12,[13,[[7,[5]],[7,[8]],[7,[9]]]]],14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[12],0,0,0,0,0,0,[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],4],[[]],0,0,[[]],[[[251,[1,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],1],[[[251,[1,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],1],0,0,0,0,0,0,[[]],[[[251,[1,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],1],0,0,0,0,[[],12],0,0,0,0,0,0,0,0,0,0,0,0,[[1,[23,[5]],[7,[5]],[7,[8]],[7,[9]]],[[251,[1,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],[[1,[23,[5]],[7,[5]],[7,[8]],[7,[9]]],[[251,[1,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],0,0,0,0,0,0,0,0,0,0,[[[6,[5]]],[[4,[12]]]],[[[251,[1,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]],[6,[5]]],[[4,[12,3]]]],0,0,0,0,0,0,0,[[],6],[[],6],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],4],[[],4],[[],33],0,0,[[[6,[5]]],[[4,[12]]]],0,[[[6,[5]],[6,[5]],18,18],18],[[]],[[]],[[]],[[]],0,0,0,0,0,[[],4],[[],4],[[],33],0,0,0,[[12,12,[6,[5]],12,12,[6,[5]],12,[13,[[7,[5]],[7,[8]],[7,[9]]]]],14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[12],[[[253,[[252,[6]]]],12],254],[[255,12],[[21,[[0,[19,26]]]]]],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[[256,[[7,[8]],[7,[9]]]]],[[95,[[6,[9]]]]]],[255,255],[[]],[[[257,[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],[[4,[3]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[],254],[[],255],[[],[[256,[[7,[8]],[7,[9]]]]]],[254,6],[254,6],0,0,0,0,0,0,0,0,0,0,0,[[],4],[[[258,[2]]],[[4,[3]]]],[[[257,[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],[[4,[3]]]],[[255,28],[[4,[29]]]],[[]],[[[253,[[252,[6]]]],254]],[[255,[21,[[0,[19,26]]]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[[257,[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],2],[[[257,[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],2],[[[256,[[7,[8]],[7,[9]]]],8],[[6,[9]]]],[[[256,[[7,[8]],[7,[9]]]],8],[[6,[9]]]],0,0,0,0,[[254,[128,[12]]]],[[254,12]],[[254,[128,[12]]]],[[254,12]],[[[256,[[7,[8]],[7,[9]]]],[7,[8]],[7,[9]],16,16,16]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[[257,[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]],[[4,[2,2]]]],0,0,0,0,[[],12],0,0,0,0,0,0,0,0,0,0,0,0,[[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]],[[257,[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],[[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]],[[257,[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,[[[256,[[7,[8]],[7,[9]]]],[7,[8]],[7,[9]]]],0,0,0,0,0,[[],6],[254,6],[[],6],[254,6],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],0,0,[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],33],[[],33],[[],33],[[],33],[[],33],[[],33],0,0,[[[6,[5]]],[[4,[12]]]],[[[258,[2]],[6,[5]]],[[4,[12,3]]]],[[[257,[2,[23,[5]],[7,[5]],[7,[8]],[7,[9]]]],[6,[5]]],[[4,[12,3]]]],[[11,[6,[5]]],4]],"c":[],"p":[[8,"Read"],[8,"Write"],[3,"Error"],[4,"Result"],[15,"u8"],[15,"slice"],[8,"Allocator"],[15,"u32"],[3,"HuffmanCode"],[8,"CustomRead"],[8,"CustomWrite"],[15,"usize"],[3,"BrotliState"],[4,"BrotliResult"],[4,"WhichTreeGroup"],[15,"u16"],[15,"bool"],[15,"i32"],[8,"Clone"],[3,"HeapAlloc"],[3,"WrapBox"],[3,"DecompressorWriter"],[8,"SliceWrapperMut"],[3,"DecompressorWriterCustomIo"],[3,"DecompressorCustomIo"],[8,"Default"],[3,"IoWriterWrapper"],[3,"Formatter"],[3,"Error"],[3,"Decompressor"],[3,"IntoIoReader"],[3,"IoReaderWrapper"],[3,"TypeId"],[4,"BroCatliResult"],[3,"BroCatli"],[6,"Result"],[3,"BrotliEncoderParams"],[8,"BrotliAlloc"],[8,"FnMut"],[8,"SliceWrapper"],[8,"Send"],[8,"Sync"],[3,"Owned"],[3,"CompressionThreadResult"],[4,"UnionHasher"],[3,"SendAlloc"],[4,"BrotliEncoderThreadError"],[3,"H2Sub"],[3,"H3Sub"],[3,"H4Sub"],[3,"H54Sub"],[15,"u64"],[6,"floatX"],[3,"ZopfliNode"],[3,"BrotliDictionary"],[3,"Command"],[8,"BasicHashComputer"],[3,"BasicHasher"],[3,"H9"],[8,"AdvHashSpecialization"],[3,"AdvHasher"],[4,"Option"],[3,"HasherSearchResult"],[3,"Struct1"],[3,"HQ5Sub"],[3,"HQ7Sub"],[3,"H5Sub"],[3,"H6Sub"],[3,"H9Opts"],[4,"HowPrepared"],[8,"AnyHasher"],[4,"BrotliEncoderMode"],[3,"BrotliHasherParams"],[8,"Sized"],[8,"PartialEq"],[8,"Allocable"],[8,"H10Params"],[3,"H10"],[3,"BackwardMatchMut"],[3,"H10Buckets"],[3,"H10DefaultParams"],[4,"Union1"],[3,"BackwardMatch"],[3,"PosData"],[3,"StartPosQueue"],[8,"CostAccessors"],[3,"BlockSplit"],[6,"Mem256f"],[3,"HistogramLiteral"],[3,"HistogramCommand"],[3,"HistogramDistance"],[3,"HistogramPair"],[3,"HuffmanTree"],[4,"ContextType"],[15,"array"],[3,"MetaBlockSplit"],[3,"RecoderState"],[3,"SimpleSortHuffmanTree"],[3,"BlockTypeCodeCalculator"],[6,"v8"],[6,"s16"],[3,"PDF"],[6,"StaticCommand"],[3,"CombiningAllocator"],[3,"BrotliDistanceParams"],[4,"CodeBlockState"],[3,"ContextMapEntropy"],[3,"SpeedAndMax"],[3,"InputPair"],[3,"InputReferenceMut"],[3,"PredictionModeContextMap"],[3,"LiteralPredictionModeNibble"],[3,"InputReference"],[4,"Command"],[3,"BrotliEncoderStateStruct"],[4,"BrotliEncoderOperation"],[4,"BrotliEncoderParameter"],[4,"BrotliEncoderStreamState"],[4,"IsFirst"],[3,"SortHuffmanTree"],[15,"i16"],[8,"HuffmanComparator"],[6,"floatY"],[3,"EntropyPyramid"],[3,"EntropyTally"],[3,"BucketPopIndex"],[3,"EntropyBucketPopulation"],[3,"Range"],[3,"FixedQueue"],[8,"Fn"],[3,"Array264i"],[3,"Array528i"],[3,"Array712i"],[3,"EmptyIVec"],[3,"SliceOffset"],[3,"BlockSwitch"],[3,"LiteralBlockSwitch"],[3,"CopyCommand"],[3,"DictCommand"],[3,"FeatureFlagSliceType"],[3,"LiteralCommand"],[8,"Debug"],[8,"Freezable"],[8,"From"],[8,"Hasher"],[8,"Unfreezable"],[8,"IRInterpreter"],[3,"MultiThreadedSpawner"],[8,"AnyBoxConstructor"],[3,"MultiThreadedJoinable"],[8,"Copy"],[3,"MultiThreadedOwnedRetriever"],[6,"PoisonedThreadError"],[8,"FnOnce"],[3,"PriorEval"],[3,"CDF"],[3,"CompressorReaderCustomIo"],[3,"CompressorReaderCustomAlloc"],[3,"CompressorReader"],[3,"WorkerPool"],[3,"SingleThreadedSpawner"],[3,"SingleThreadedJoinable"],[3,"SingleThreadedOwnedRetriever"],[3,"DictWord"],[3,"StrideEval"],[8,"BatchSpawnableLite"],[6,"LowLevelThreadError"],[8,"Joinable"],[6,"v256"],[6,"v256i"],[15,"f32"],[3,"WorkerPool"],[3,"WorkerJoinable"],[3,"CompressorWriterCustomIo"],[3,"CompressorWriterCustomAlloc"],[3,"CompressorWriter"],[3,"BrotliSubclassableAllocator"],[3,"SendableMemoryBlock"],[3,"SubclassableAllocator"],[3,"BroccoliState"],[6,"BroccoliResult"],[4,"BrotliEncoderMode"],[3,"BrotliEncoderState"],[4,"BrotliEncoderOperation"],[6,"brotli_alloc_func"],[6,"brotli_free_func"],[4,"c_void"],[8,"UnwindSafe"],[6,"Result"],[3,"BrotliDecoderState"],[4,"BrotliDecoderResult"],[3,"BrotliDecoderReturnInfo"],[4,"BrotliDecoderErrorCode"],[4,"BrotliDecoderParameter"],[3,"MemoryBlock"],[8,"Allocator"],[3,"Box"],[8,"AsFd"],[3,"Global"],[3,"BorrowedFd"],[8,"AsRawFd"],[19,"MaybeUninit"],[8,"Tuple"],[8,"Error"],[3,"Path"],[15,"str"],[3,"CStr"],[3,"OsStr"],[8,"Ord"],[4,"Ordering"],[8,"BufRead"],[8,"Any"],[8,"Display"],[3,"String"],[4,"Cow"],[3,"PathBuf"],[3,"CString"],[3,"Vec"],[15,"never"],[3,"OsString"],[8,"IntoIterator"],[8,"PartialOrd"],[8,"Hash"],[3,"Pin"],[3,"CharPredicateSearcher"],[8,"ExactSizeIterator"],[8,"Iterator"],[3,"CAllocator"],[8,"DoubleEndedIterator"],[8,"Future"],[8,"Unpin"],[3,"Context"],[4,"Poll"],[8,"AsyncIterator"],[3,"Demand"],[3,"BorrowedCursor"],[3,"IoSliceMut"],[8,"Generator"],[4,"GeneratorState"],[8,"Seek"],[4,"SeekFrom"],[3,"AllocError"],[3,"Arguments"],[15,"i128"],[15,"i64"],[15,"i8"],[15,"isize"],[15,"u128"],[3,"IoSlice"],[3,"BrotliEncoderWorkPool"],[3,"DecompressorCustomAlloc"],[8,"AllocatedSlice"],[3,"StackAllocator"],[3,"AllocatedStackMemory"],[3,"StandardAlloc"],[3,"HuffmanTreeGroup"],[3,"DecompressorWriterCustomAlloc"],[3,"IntoIoWriter"],[3,"H40"],[3,"H41"],[3,"H42"],[3,"BankH40"],[3,"BankH41"],[3,"BankH42"],[3,"SlotH40"],[3,"SlotH41"],[3,"SlotH42"],[8,"CloneWithAlloc"],[3,"ZopfliCostModel"],[3,"BlockEncoder"],[3,"PrefixCodeRange"],[3,"BlockSplitCode"],[3,"RingBuffer"],[3,"BlockSplitIterator"],[8,"Nop"],[8,"CommandProcessor"],[3,"BlockSplitter"],[3,"ContextBlockSplitter"],[4,"WhichPrior"],[3,"Stride1Prior"],[3,"Stride2Prior"],[3,"Stride3Prior"],[3,"Stride4Prior"],[3,"CMPrior"],[3,"FastCMPrior"],[3,"SlowCMPrior"],[3,"AdvPrior"],[8,"Prior"],[4,"InternalSendAlloc"],[4,"InternalOwned"],[8,"BatchSpawnable"],[3,"CompressedFileChunk"],[8,"OwnedRetriever"],[3,"GuardedQueue"],[3,"Transform"]]},\ @@ -25,7 +25,7 @@ var searchIndex = JSON.parse('{\ "cfg_if":{"doc":"A macro for defining #[cfg] if-else statements.","t":"O","n":["cfg_if"],"q":[[0,"cfg_if"]],"d":["The main macro provided by this crate. See crate …"],"i":[0],"f":[0],"c":[],"p":[]},\ "chrono":{"doc":"Chrono: Date and Time for Rust","t":"NNNDDICNDNNIQNCNCNNNCRRSSRRSSNNNNNEDCCCCNNNCDDCDCDENENNINNCINNCNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLKLLLLLLLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLKLLLLLLKLLKLLKLLLALLLLLKLLLLLLLLLLLLLLLLLLLLLALLKLLKLLLLLLLLLLLLLLLALLLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLKLLKLLKLKLKLLKLLKLKLLKLLKLLLKLLKLLLLLLLNNDNENNNNNNDDNNNNNENNNNNNNNNNNNNNENNNNNEDEGDNNNNNNNCNNNNNNNNNNNNNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLMMMMLMMMLLLMMFFLMLLLLLLLLLLLLLLLLLLLLLAMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMDLLLLLLLLLLLLLLDDSSRRSSSRRDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNDENIQNIDLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLKLLKLLKLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCCCCCCCCCCCCCCC","n":["April","August","AutoSi","Date","DateTime","Datelike","Days","December","Duration","DurationExceedsLimit","DurationExceedsTimestamp","DurationRound","Err","February","FixedOffset","Fri","IsoWeek","January","July","June","LocalResult","MAX_DATE","MAX_DATETIME","MAX_UTC","MAX_UTC","MIN_DATE","MIN_DATETIME","MIN_UTC","MIN_UTC","March","May","Micros","Millis","Mon","Month","Months","NaiveDate","NaiveDateTime","NaiveTime","NaiveWeek","Nanos","November","October","Offset","OutOfRange","OutOfRangeError","ParseError","ParseMonthError","ParseResult","ParseWeekdayError","RoundingError","Sat","SecondsFormat","Secs","September","SubsecRound","Sun","Thu","TimeZone","Timelike","TimestampExceedsLimit","Tue","Utc","Wed","Weekday","abs","add","add","add","add","add","add","add_assign","add_assign","and_hms","and_hms_micro","and_hms_micro_opt","and_hms_milli","and_hms_milli_opt","and_hms_nano","and_hms_nano_opt","and_hms_opt","and_time","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","checked_add","checked_add_days","checked_add_months","checked_add_signed","checked_add_signed","checked_sub","checked_sub_days","checked_sub_months","checked_sub_signed","checked_sub_signed","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","date","date_naive","day","day","day","day0","day0","day0","days","default","default","description","description","div","duration_round","duration_round","duration_trunc","duration_trunc","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fixed_offset","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format","format","format_with_items","format_with_items","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_i64","from_i64","from_local","from_std","from_str","from_str","from_str","from_str","from_u32","from_u64","from_u64","from_utc","from_utc","hash","hash","hash","hash","hash","hash","hash","hash","hour","hour","hour12","hour12","hours","into","into","into","into","into","into","into","into","into","into","into","into","is_zero","iso_week","iso_week","iso_week","max_value","microseconds","milliseconds","min_value","minute","minute","minutes","month","month","month","month0","month0","month0","mul","naive","naive_local","naive_local","naive_utc","naive_utc","name","nanosecond","nanosecond","nanoseconds","neg","new","num_days","num_days_from_ce","num_days_from_ce","num_days_from_monday","num_days_from_sunday","num_hours","num_microseconds","num_milliseconds","num_minutes","num_nanoseconds","num_seconds","num_seconds_from_midnight","num_seconds_from_midnight","num_weeks","number_from_monday","number_from_month","number_from_sunday","offset","offset","offset","ordinal","ordinal","ordinal","ordinal0","ordinal0","ordinal0","parse_and_remainder","parse_from_rfc2822","parse_from_rfc3339","parse_from_str","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pred","pred","pred","pred_opt","prelude","provide","provide","provide","provide","round_subsecs","round_subsecs","second","second","seconds","signed_duration_since","signed_duration_since","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","succ","succ","succ","succ_opt","sum","sum","time","timestamp","timestamp_micros","timestamp_millis","timestamp_nanos","timestamp_subsec_micros","timestamp_subsec_millis","timestamp_subsec_nanos","timezone","timezone","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_rfc2822","to_rfc3339","to_rfc3339_opts","to_std","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","trunc_subsecs","trunc_subsecs","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","weekday","weekday","weekday","weeks","with_day","with_day","with_day","with_day0","with_day0","with_day0","with_hour","with_hour","with_minute","with_minute","with_month","with_month","with_month","with_month0","with_month0","with_month0","with_nanosecond","with_nanosecond","with_ordinal","with_ordinal","with_ordinal","with_ordinal0","with_ordinal0","with_ordinal0","with_second","with_second","with_timezone","with_timezone","with_year","with_year","with_year","year","year","year","year_ce","year_ce","years_since","years_since","zero","BadFormat","Day","DelayedFormat","Error","Fixed","Fixed","Hour","Hour12","Impossible","Internal","Internal","InternalFixed","InternalNumeric","Invalid","IsoWeek","IsoYear","IsoYearDiv100","IsoYearMod100","Item","Literal","LongMonthName","LongWeekdayName","LowerAmPm","Minute","Month","Nanosecond","Nanosecond","Nanosecond3","Nanosecond6","Nanosecond9","None","NotEnough","NumDaysFromSun","Numeric","Numeric","Ordinal","OutOfRange","OwnedLiteral","OwnedSpace","Pad","ParseError","ParseErrorKind","ParseResult","Parsed","RFC2822","RFC3339","Second","ShortMonthName","ShortWeekdayName","Space","Space","StrftimeItems","Timestamp","TimezoneName","TimezoneOffset","TimezoneOffsetColon","TimezoneOffsetColonZ","TimezoneOffsetDoubleColon","TimezoneOffsetTripleColon","TimezoneOffsetZ","TooLong","TooShort","UpperAmPm","WeekFromMon","WeekFromSun","WeekdayFromMon","Year","YearDiv100","YearMod100","Zero","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","day","default","description","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format_item","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","hash","hash","hash","hash","hash","hash","hour_div_12","hour_mod_12","into","into","into","into","into","into","into","into","into","into","isoweek","isoyear","isoyear_div_100","isoyear_mod_100","kind","minute","month","nanosecond","new","new","new_with_offset","offset","ordinal","parse","parse_and_remainder","provide","second","set_ampm","set_day","set_hour","set_hour12","set_isoweek","set_isoyear","set_isoyear_div_100","set_isoyear_mod_100","set_minute","set_month","set_nanosecond","set_offset","set_ordinal","set_second","set_timestamp","set_week_from_mon","set_week_from_sun","set_weekday","set_year","set_year_div_100","set_year_mod_100","strftime","timestamp","to_datetime","to_datetime_with_timezone","to_fixed_offset","to_naive_date","to_naive_datetime_with_offset","to_naive_time","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","week_from_mon","week_from_sun","weekday","year","year_div_100","year_mod_100","StrftimeItems","borrow","borrow_mut","clone","clone_into","fmt","from","into","into_iter","new","next","to_owned","try_from","try_into","type_id","Days","IsoWeek","MAX","MAX","MAX_DATE","MAX_DATETIME","MIN","MIN","MIN","MIN_DATE","MIN_DATETIME","NaiveDate","NaiveDateTime","NaiveTime","NaiveWeek","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","and_hms","and_hms_micro","and_hms_micro_opt","and_hms_milli","and_hms_milli_opt","and_hms_nano","and_hms_nano_opt","and_hms_opt","and_local_timezone","and_time","and_utc","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","checked_add_days","checked_add_days","checked_add_months","checked_add_months","checked_add_signed","checked_add_signed","checked_sub_days","checked_sub_days","checked_sub_months","checked_sub_months","checked_sub_signed","checked_sub_signed","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","date","day","day","day0","day0","days","default","default","default","duration_round","duration_trunc","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","first_day","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format","format","format_with_items","format_with_items","format_with_items","from","from","from","from","from","from","from","from_hms","from_hms_micro","from_hms_micro_opt","from_hms_milli","from_hms_milli_opt","from_hms_nano","from_hms_nano_opt","from_hms_opt","from_isoywd","from_isoywd_opt","from_num_days_from_ce","from_num_days_from_ce_opt","from_num_seconds_from_midnight","from_num_seconds_from_midnight_opt","from_str","from_str","from_str","from_timestamp","from_timestamp_micros","from_timestamp_millis","from_timestamp_opt","from_weekday_of_month","from_weekday_of_month_opt","from_ymd","from_ymd_opt","from_yo","from_yo_opt","hash","hash","hash","hash","hash","hour","hour","into","into","into","into","into","into","iso_week","iso_week","iter_days","iter_weeks","last_day","minute","minute","month","month","month0","month0","nanosecond","nanosecond","new","new","num_seconds_from_midnight","ordinal","ordinal","ordinal0","ordinal0","overflowing_add_signed","overflowing_sub_signed","parse_and_remainder","parse_and_remainder","parse_and_remainder","parse_from_str","parse_from_str","parse_from_str","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pred","pred_opt","round_subsecs","round_subsecs","second","second","signed_duration_since","signed_duration_since","signed_duration_since","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","succ","succ_opt","time","timestamp","timestamp_micros","timestamp_millis","timestamp_nanos","timestamp_subsec_micros","timestamp_subsec_millis","timestamp_subsec_nanos","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","trunc_subsecs","trunc_subsecs","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","week","week","week0","weekday","weekday","with_day","with_day","with_day0","with_day0","with_hour","with_hour","with_minute","with_minute","with_month","with_month","with_month0","with_month0","with_nanosecond","with_nanosecond","with_ordinal","with_ordinal","with_ordinal0","with_ordinal0","with_second","with_second","with_year","with_year","year","year","year","years_since","Ambiguous","FixedOffset","LocalResult","None","Offset","Offset","Single","TimeZone","Utc","and_hms_micro_opt","and_hms_milli_opt","and_hms_nano_opt","and_hms_opt","and_time","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","datetime_from_str","earliest","east","east_opt","eq","eq","eq","equivalent","equivalent","equivalent","fix","fix","fix","fmt","fmt","fmt","fmt","fmt","from","from","from","from_local_date","from_local_datetime","from_offset","from_offset","from_offset","from_utc_date","from_utc_datetime","hash","hash","hash","into","into","into","isoywd","isoywd_opt","latest","local_minus_utc","map","offset_from_local_date","offset_from_local_date","offset_from_local_date","offset_from_local_datetime","offset_from_local_datetime","offset_from_local_datetime","offset_from_utc_date","offset_from_utc_date","offset_from_utc_date","offset_from_utc_datetime","offset_from_utc_datetime","offset_from_utc_datetime","single","timestamp","timestamp_millis","timestamp_millis_opt","timestamp_nanos","timestamp_opt","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","unwrap","utc_minus_local","west","west_opt","with_ymd_and_hms","ymd","ymd_opt","yo","yo_opt","Date","DateTime","Datelike","FixedOffset","Month","NaiveDate","NaiveDateTime","NaiveTime","Offset","SecondsFormat","SubsecRound","TimeZone","Timelike","Utc","Weekday"],"q":[[0,"chrono"],[478,"chrono::format"],[745,"chrono::format::strftime"],[760,"chrono::naive"],[1046,"chrono::offset"],[1152,"chrono::prelude"]],"d":["April","August","Automatically select one of Secs, Millis, Micros, or Nanos …","ISO 8601 calendar date with time zone.","ISO 8601 combined date and time with time zone.","The common set of methods for date component.","","December","ISO 8601 time duration with nanosecond precision.","Error when Duration.num_nanoseconds exceeds the limit.","Error when the Duration exceeds the Duration from or until …","Extension trait for rounding or truncating a DateTime by a …","Error that can occur in rounding or truncating","February","","Friday.","","January","July","June","","The maximum possible Date.","The maximum possible DateTime<Utc>.","The maximum possible Date.","The maximum possible DateTime<Utc>.","The minimum possible Date.","The minimum possible DateTime<Utc>.","The minimum possible Date.","The minimum possible DateTime<Utc>.","March","May","Use fixed 6 subsecond digits. This corresponds to …","Use fixed 3 subsecond digits. This corresponds to …","Monday.","The month of the year.","A duration in calendar months","","","","","Use fixed 9 subsecond digits. This corresponds to …","November","October","","Out of range error type used in various converting APIs","Represents error when converting Duration to/from a …","","An error resulting from reading <Month> value with FromStr.","","An error resulting from reading Weekday value with FromStr.","An error from rounding by Duration","Saturday.","Specific formatting options for seconds. This may be …","Format whole seconds only, with no decimal point nor …","September","Extension trait for subsecond rounding or truncation to a …","Sunday.","Thursday.","","The common set of methods for time component.","Error when DateTime.timestamp_nanos exceeds the limit.","Tuesday.","","Wednesday.","The day of week.","Returns the duration as an absolute (non-negative) value.","","","","","","","","","Makes a new DateTime from the current date, hour, minute …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute …","Makes a new DateTime from the current date and given …","","","","","","","","","","","","","","","","","","","","","","","","","Add two durations, returning None if overflow occurred.","Add a duration in Days to the date part of the DateTime","Adds given Months to the current date and time.","Adds given Duration to the current date.","Adds given Duration to the current date and time.","Subtract two durations, returning None if overflow …","Subtract a duration in Days from the date part of the …","Subtracts given Months from the current date and time.","Subtracts given Duration from the current date.","Subtracts given Duration from the current date and time.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Retrieves a date component","Retrieves the Date without an associated timezone","Returns the day of month starting from 1.","","","Returns the day of month starting from 0.","","","Makes a new Duration with given number of days. Equivalent …","","","","","","Return a copy rounded by Duration.","","Return a copy truncated by Duration.","","","","","","","","","","","","","","","","","","","","","","","","","","Fix the offset from UTC to its current value, dropping the …","Format a duration using the ISO 8601 format","","","","","","","","","","","","","","","","","","","","Formatting (and parsing) utilities for date and time.","Formats the date with the specified format string. See the …","Formats the combined date and time per the specified …","Formats the date with the specified formatting items.","Formats the combined date and time with the specified …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert this DateTime<Utc> instance into a …","Convert this DateTime<FixedOffset> instance into a …","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Makes a new DateTime with given local datetime and offset …","Creates a time::Duration object from std::time::Duration","","","","","","","Returns an Option<Month> from a i64, assuming a 1-index, …","Makes a new Date with given UTC date and offset. The local …","Makes a new DateTime with given UTC datetime and offset. …","","","","","","","","","Returns the hour number from 0 to 23.","","Returns the hour number from 1 to 12 with a boolean flag, …","Returns the hour number from 1 to 12 with a boolean flag, …","Makes a new Duration with given number of hours. …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns true if the duration equals Duration::zero().","Returns the ISO week.","","","The maximum possible Duration: i64::MAX milliseconds.","Makes a new Duration with given number of microseconds.","Makes a new Duration with given number of milliseconds.","The minimum possible Duration: i64::MIN milliseconds.","Returns the minute number from 0 to 59.","","Makes a new Duration with given number of minutes. …","Returns the month number starting from 1.","","","Returns the month number starting from 0.","","","","Date and time types unconcerned with timezones.","Returns a view to the naive local date.","Returns a view to the naive local datetime.","Returns a view to the naive UTC date.","Returns a view to the naive UTC datetime.","Get the name of the month","Returns the number of nanoseconds since the whole non-leap …","","Makes a new Duration with given number of nanoseconds.","","Construct a new Months from a number of months","Returns the total number of whole days in the duration.","Counts the days in the proleptic Gregorian calendar, with …","Counts the days in the proleptic Gregorian calendar, with …","Returns a day-of-week number starting from Monday = 0.","Returns a day-of-week number starting from Sunday = 0.","Returns the total number of whole hours in the duration.","Returns the total number of whole microseconds in the …","Returns the total number of whole milliseconds in the …","Returns the total number of whole minutes in the duration.","Returns the total number of whole nanoseconds in the …","Returns the total number of whole seconds in the duration.","Returns the number of non-leap seconds past the last …","Returns the number of non-leap seconds past the last …","Returns the total number of whole weeks in the duration.","Returns a day-of-week number starting from Monday = 1. …","Returns a month-of-year number starting from January = 1.","Returns a day-of-week number starting from Sunday = 1.","The time zone, which calculates offsets from the local …","Retrieves an associated offset from UTC.","Retrieves an associated offset from UTC.","Returns the day of year starting from 1.","","","Returns the day of year starting from 0.","","","Parses a string from a user-specified format into a …","Parses an RFC 2822 date-and-time string into a …","Parses an RFC 3339 date-and-time string into a …","Parses a string from a user-specified format into a …","","","Compare two DateTimes based on their true time, ignoring …","","","Makes a new Date for the prior date.","The previous day in the week.","The previous month.","Makes a new Date for the prior date.","A convenience module appropriate for glob imports (…","","","","","Return a copy rounded to the specified number of subsecond …","","Returns the second number from 0 to 59.","","Makes a new Duration with given number of seconds. Panics …","Subtracts another Date from the current date. Returns a …","Subtracts another DateTime from the current date and time. …","","","","","","","","","","","Makes a new Date for the next date.","The next day in the week.","The next month.","Makes a new Date for the next date.","","","Retrieves a time component. Unlike date, this is not …","Returns the number of non-leap seconds since January 1, …","Returns the number of non-leap-microseconds since January …","Returns the number of non-leap-milliseconds since January …","Returns the number of non-leap-nanoseconds since January …","Returns the number of microseconds since the last second …","Returns the number of milliseconds since the last second …","Returns the number of nanoseconds since the last second …","Retrieves an associated time zone.","Retrieves an associated time zone.","","","","","","","","","","","","","Returns an RFC 2822 date and time string such as …","Returns an RFC 3339 and ISO 8601 date and time string such …","Return an RFC 3339 and ISO 8601 date and time string with …","Creates a std::time::Duration object from time::Duration","","","","","","","","","Return a copy truncated to the specified number of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the day of week.","","","Makes a new Duration with given number of weeks. …","Makes a new value with the day of month (starting from 1) …","","","Makes a new value with the day of month (starting from 0) …","","","Makes a new value with the hour number changed.","","Makes a new value with the minute number changed.","","Makes a new value with the month number (starting from 1) …","","","Makes a new value with the month number (starting from 0) …","","","Makes a new value with nanoseconds since the whole …","","Makes a new value with the day of year (starting from 1) …","","","Makes a new value with the day of year (starting from 0) …","","","Makes a new value with the second number changed.","","Changes the associated time zone. This does not change the …","Changes the associated time zone. The returned DateTime …","Makes a new value with the year number changed.","","","Returns the year number in the calendar date.","","","Returns the absolute year number starting from 1 with a …","Returns the absolute year number starting from 1 with a …","Returns the number of whole years from the given base …","Retrieve the elapsed years from now to the given DateTime.","A duration where the stored seconds and nanoseconds are …","There was an error on the formatting string, or there were …","Day of the month (FW=PW=2).","A temporary object which can be used as an argument to …","Issues a formatting error. Used to signal an invalid …","Fixed-format item types.","Fixed-format item.","Hour number in the 24-hour clocks (FW=PW=2).","Hour number in the 12-hour clocks (FW=PW=2).","There is no possible date and time value with given set of …","Internal uses only.","Internal uses only.","An opaque type representing fixed-format item types for …","An opaque type representing numeric item types for …","The input string has some invalid character sequence for …","Week number in the ISO week date (FW=PW=2).","Year in the ISO week date (FW=4, PW=∞). May accept years …","Year in the ISO week date, divided by 100 (FW=PW=2). …","Year in the ISO week date, modulo 100 (FW=PW=2). Cannot be …","A single formatting item. This is used for both formatting …","A literally printed and parsed text.","Full month names.","Full day of the week names.","AM/PM.","The number of minutes since the last whole hour (FW=PW=2).","Month (FW=PW=2).","The number of nanoseconds since the last whole second …","An optional dot plus one or more digits for left-aligned …","Same as Nanosecond but the accuracy is fixed to 3.","Same as Nanosecond but the accuracy is fixed to 6.","Same as Nanosecond but the accuracy is fixed to 9.","No padding.","Given set of fields is not enough to make a requested date …","Day of the week, where Sunday = 0 and Saturday = 6 …","Numeric item types. They have associated formatting width …","Numeric item. Can be optionally padded to the maximal …","Day of the year (FW=PW=3).","Given field is out of permitted range.","Same as Literal but with the string owned by the item.","Same as Space but with the string owned by the item.","Padding characters for numeric items.","An error from the parse function.","The category of parse error","Same as Result<T, ParseError>.","Parsed parts of date and time. There are two classes of …","RFC 2822 date and time syntax. Commonly used for email and …","RFC 3339 & ISO 8601 date and time syntax.","The number of seconds since the last whole minute …","Abbreviated month names.","Abbreviated day of the week names.","Space padding.","Whitespace. Prints literally but reads zero or more …","","The number of non-leap seconds since the midnight UTC on …","Timezone name.","Same as TimezoneOffsetColon but prints no colon. Parsing …","Offset from the local time to UTC (+09:00 or -04:00 or …","Offset from the local time to UTC (+09:00 or -04:00 or Z).","Offset from the local time to UTC with seconds (+09:00:00 …","Offset from the local time to UTC without minutes (+09 or …","Same as TimezoneOffsetColonZ but prints no colon. Parsing …","All formatting items have been read but there is a …","The input string has been prematurely ended.","AM/PM.","Week number, where the week 1 starts at the first Monday …","Week number, where the week 1 starts at the first Sunday …","Day of the week, where Monday = 1 and Sunday = 7 (FW=PW=1).","Full Gregorian year (FW=4, PW=∞). May accept years …","Gregorian year divided by 100 (century number; FW=PW=2). …","Gregorian year modulo 100 (FW=PW=2). Cannot be negative.","Zero (0) padding.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Day of the month (1–28, 1–29, 1–30 or 1–31 …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Tries to format given arguments with given formatting …","Formats single formatting item","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","Hour number divided by 12 (0–1). 0 indicates AM and 1 …","Hour number modulo 12 (0–11).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","ISO week number (1–52 or 1–53 depending on the year).","Year in the ISO week date.","Year in the ISO week date, divided by 100. Implies that …","Year in the ISO week date, modulo 100. Implies that the …","The category of parse error","Minute number (0–59).","Month (1–12).","The number of nanoseconds since the whole second (0–…","Returns the initial value of parsed parts.","Makes a new DelayedFormat value out of local date and time.","Makes a new DelayedFormat value out of local date and time …","Offset from the local time to UTC, in seconds.","Day of the year (1–365 or 1–366 depending on the year).","Tries to parse given string into parsed with given …","Tries to parse given string into parsed with given …","","Second number (0–60, accounting for leap seconds).","Tries to set the hour_div_12 field from given value. (false…","Tries to set the day field from given value.","Tries to set both hour_div_12 and hour_mod_12 fields from …","Tries to set the hour_mod_12 field from given hour number …","Tries to set the isoweek field from given value.","Tries to set the isoyear field from given value.","Tries to set the isoyear_div_100 field from given value.","Tries to set the isoyear_mod_100 field from given value.","Tries to set the minute field from given value.","Tries to set the month field from given value.","Tries to set the nanosecond field from given value.","Tries to set the offset field from given value.","Tries to set the ordinal field from given value.","Tries to set the second field from given value.","Tries to set the timestamp field from given value.","Tries to set the week_from_mon field from given value.","Tries to set the week_from_sun field from given value.","Tries to set the weekday field from given value.","Tries to set the year field from given value.","Tries to set the year_div_100 field from given value.","Tries to set the year_mod_100 field from given value.","strftime/strptime-inspired date and time formatting syntax.","The number of non-leap seconds since the midnight UTC on …","Returns a parsed timezone-aware date and time out of given …","Returns a parsed timezone-aware date and time out of given …","Returns a parsed fixed time zone offset out of given …","Returns a parsed naive date out of given fields.","Returns a parsed naive date and time out of given fields, …","Returns a parsed naive time out of given fields.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Week number, where the week 1 starts at the first Monday …","Week number, where the week 1 starts at the first Sunday …","Day of the week.","Year.","Year divided by 100. Implies that the year is >= 1 BCE …","Year modulo 100. Implies that the year is >= 1 BCE when …","Parsing iterator for strftime-like format strings.","","","","","","Returns the argument unchanged.","Calls U::from(self).","","Creates a new parsing iterator from the strftime-like …","","","","","","A duration in calendar days.","ISO 8601 week.","The maximum possible NaiveDate (December 31, 262143 CE).","The maximum possible NaiveDateTime.","The maximum possible NaiveDate (December 31, 262143 CE).","The maximum possible NaiveDateTime.","The minimum possible NaiveDate (January 1, 262145 BCE).","The minimum possible NaiveDateTime.","The earliest possible NaiveTime","The minimum possible NaiveDate (January 1, 262145 BCE).","The minimum possible NaiveDateTime.","ISO 8601 calendar date without timezone. Allows for every …","ISO 8601 combined date and time without timezone.","ISO 8601 time without timezone. Allows for the nanosecond …","A week represented by a NaiveDate and a Weekday which is …","An addition of months to NaiveDate clamped to valid days …","","","","An addition of months to NaiveDateTime clamped to valid …","","","","","","","","Makes a new NaiveDateTime from the current date, hour, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new NaiveDateTime from the current date, hour, …","Converts the NaiveDateTime into the timezone-aware …","Makes a new NaiveDateTime from the current date and given …","Converts the NaiveDateTime into the timezone-aware …","","","","","","","","","","","","","Add a duration in Days to the date","Add a duration in Days to the date part of the …","Add a duration in Months to the date","Adds given Months to the current date and time.","Adds the days part of given Duration to the current date.","Adds given Duration to the current date and time.","Subtract a duration in Days from the date","Subtract a duration in Days from the date part of the …","Subtract a duration in Months from the date","Subtracts given Months from the current date and time.","Subtracts the days part of given Duration from the current …","Subtracts given Duration from the current date and time.","","","","","","","","","","","","","","","Retrieves a date component.","Returns the day of month starting from 1.","Returns the day of month starting from 1.","Returns the day of month starting from 0.","Returns the day of month starting from 0.","Returns a RangeInclusive<T> representing the whole week …","","","","","","","","","","","","","","","","Returns a date representing the first day of the week.","","","","","","","","","","Formats the date with the specified format string. See the …","Formats the combined date and time with the specified …","Formats the time with the specified format string. See the …","Formats the date with the specified formatting items. …","Formats the combined date and time with the specified …","Formats the time with the specified formatting items. …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Makes a new NaiveTime from hour, minute and second.","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute and second.","Makes a new NaiveDate from the ISO week date (year, week …","Makes a new NaiveDate from the ISO week date (year, week …","Makes a new NaiveDate from a day’s number in the …","Makes a new NaiveDate from a day’s number in the …","Makes a new NaiveTime from the number of seconds since …","Makes a new NaiveTime from the number of seconds since …","","","","Makes a new NaiveDateTime corresponding to a UTC date and …","Creates a new NaiveDateTime from microseconds since the …","Creates a new NaiveDateTime from milliseconds since the …","Makes a new NaiveDateTime corresponding to a UTC date and …","Makes a new NaiveDate by counting the number of …","Makes a new NaiveDate by counting the number of …","Makes a new NaiveDate from the calendar date (year, month …","Makes a new NaiveDate from the calendar date (year, month …","Makes a new NaiveDate from the ordinal date (year and day …","Makes a new NaiveDate from the ordinal date (year and day …","","","","","","Returns the hour number from 0 to 23.","Returns the hour number from 0 to 23.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Returns an iterator that steps by days across all …","Returns an iterator that steps by weeks across all …","Returns a date representing the last day of the week.","Returns the minute number from 0 to 59.","Returns the minute number from 0 to 59.","Returns the month number starting from 1.","Returns the month number starting from 1.","Returns the month number starting from 0.","Returns the month number starting from 0.","Returns the number of nanoseconds since the whole non-leap …","Returns the number of nanoseconds since the whole non-leap …","Construct a new Days from a number of days","Makes a new NaiveDateTime from date and time components. …","Returns the number of non-leap seconds past the last …","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Returns the day of year starting from 0.","Returns the day of year starting from 0.","Adds given Duration to the current time, and also returns …","Subtracts given Duration from the current time, and also …","Parses a string from a user-specified format into a new …","Parses a string with the specified format string and …","Parses a string from a user-specified format into a new …","Parses a string with the specified format string and …","Parses a string with the specified format string and …","Parses a string with the specified format string and …","","","","","","Makes a new NaiveDate for the previous calendar date.","Makes a new NaiveDate for the previous calendar date.","","","Returns the second number from 0 to 59.","Returns the second number from 0 to 59.","Subtracts another NaiveDate from the current date. Returns …","Subtracts another NaiveDateTime from the current date and …","Subtracts another NaiveTime from the current time. Returns …","","","A subtraction of Months from NaiveDate clamped to valid …","","","","","","","","","","","","","Makes a new NaiveDate for the next calendar date.","Makes a new NaiveDate for the next calendar date.","Retrieves a time component.","Returns the number of non-leap seconds since the midnight …","Returns the number of non-leap microseconds since midnight …","Returns the number of non-leap milliseconds since midnight …","Returns the number of non-leap nanoseconds since midnight …","Returns the number of microseconds since the last whole …","Returns the number of milliseconds since the last whole …","Returns the number of nanoseconds since the last whole …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the NaiveWeek that the date belongs to, starting …","Returns the ISO week number starting from 1.","Returns the ISO week number starting from 0.","Returns the day of week.","Returns the day of week.","Makes a new NaiveDate with the day of month (starting from …","Makes a new NaiveDateTime with the day of month (starting …","Makes a new NaiveDate with the day of month (starting from …","Makes a new NaiveDateTime with the day of month (starting …","Makes a new NaiveDateTime with the hour number changed.","Makes a new NaiveTime with the hour number changed.","Makes a new NaiveDateTime with the minute number changed.","Makes a new NaiveTime with the minute number changed.","Makes a new NaiveDate with the month number (starting from …","Makes a new NaiveDateTime with the month number (starting …","Makes a new NaiveDate with the month number (starting from …","Makes a new NaiveDateTime with the month number (starting …","Makes a new NaiveDateTime with nanoseconds since the whole …","Makes a new NaiveTime with nanoseconds since the whole …","Makes a new NaiveDate with the day of year (starting from …","Makes a new NaiveDateTime with the day of year (starting …","Makes a new NaiveDate with the day of year (starting from …","Makes a new NaiveDateTime with the day of year (starting …","Makes a new NaiveDateTime with the second number changed.","Makes a new NaiveTime with the second number changed.","Makes a new NaiveDate with the year number changed.","Makes a new NaiveDateTime with the year number changed.","Returns the year number in the calendar date.","Returns the year number in the calendar date.","Returns the year number for this ISO week.","Returns the number of whole years from the given base …","Given local time representation has multiple results and …","The time zone with fixed offset, from UTC-23:59:59 to …","The conversion result from the local time to the …","Given local time representation is invalid. This can occur …","The offset from the local time to UTC.","An associated offset type. This type is used to store the …","Given local time representation has a single unique result.","The time zone.","The UTC time zone. This is the most efficient time zone …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute …","Makes a new DateTime from the current date and given …","","","","","","","","","","","","","Parses a string with the specified format string and …","Returns Some for the earliest possible conversion result, …","Makes a new FixedOffset for the Eastern Hemisphere with …","Makes a new FixedOffset for the Eastern Hemisphere with …","","","","","","","Returns the fixed offset from UTC to the local time stored.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Converts the local NaiveDate to the timezone-aware Date if …","Converts the local NaiveDateTime to the timezone-aware …","Reconstructs the time zone from the offset.","","","Converts the UTC NaiveDate to the local time. The UTC is …","Converts the UTC NaiveDateTime to the local time. The UTC …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Makes a new Date from ISO week date (year and week …","Makes a new Date from ISO week date (year and week …","Returns Some for the latest possible conversion result, or …","Returns the number of seconds to add to convert from UTC …","Maps a LocalResult<T> into LocalResult<U> with given …","Creates the offset(s) for given local NaiveDate if …","","","Creates the offset(s) for given local NaiveDateTime if …","","","Creates the offset for given UTC NaiveDate. This cannot …","","","Creates the offset for given UTC NaiveDateTime. This …","","","Returns Some only when the conversion result is unique, or …","Makes a new DateTime from the number of non-leap seconds …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap seconds …","","","","","","","","","","","","","","","Returns the single unique conversion result, or panics …","Returns the number of seconds to add to convert from the …","Makes a new FixedOffset for the Western Hemisphere with …","Makes a new FixedOffset for the Western Hemisphere with …","Make a new DateTime from year, month, day, time components …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, day of year (DOY or “ordinal…","Makes a new Date from year, day of year (DOY or “ordinal…","","","","","","","","","","","","","","",""],"i":[17,17,13,0,0,0,0,17,0,14,14,0,63,17,0,15,0,17,17,17,0,0,0,3,4,0,0,3,4,17,17,13,13,15,0,0,0,0,0,0,13,17,17,0,0,0,0,0,0,0,0,15,0,13,17,0,15,15,0,0,14,15,0,15,0,1,1,3,4,4,4,4,3,4,3,3,3,3,3,3,3,3,3,1,11,3,13,4,14,15,16,17,6,18,19,1,11,3,13,4,14,15,16,17,6,18,19,1,4,4,3,4,1,4,4,3,4,1,11,3,13,4,14,15,16,17,6,18,19,1,11,3,13,4,14,15,16,17,6,18,19,1,3,4,4,4,64,3,4,64,3,4,1,4,4,11,14,1,63,4,63,4,1,11,3,13,4,14,15,16,17,6,18,19,1,11,3,13,4,14,15,16,17,6,18,19,4,1,1,11,11,3,3,13,4,4,14,14,15,15,16,16,17,6,18,19,19,0,3,4,3,4,1,11,3,13,4,4,4,4,14,15,16,17,6,18,19,15,17,4,1,4,4,15,17,17,15,17,3,4,1,3,13,4,15,17,6,19,65,4,65,65,1,1,11,3,13,4,14,15,16,17,6,18,19,1,64,3,4,1,1,1,1,65,4,1,64,3,4,64,3,4,1,0,3,4,3,4,17,65,4,1,1,6,1,64,64,15,15,1,1,1,1,1,1,65,65,1,15,17,15,0,3,4,64,3,4,64,3,4,4,4,4,4,1,3,4,17,6,3,15,17,3,0,11,14,16,19,66,4,65,4,1,3,4,1,3,3,4,4,4,4,4,3,4,3,15,17,3,1,1,4,4,4,4,4,4,4,4,3,4,1,11,3,13,4,14,15,16,17,6,18,19,4,4,4,1,1,11,3,4,14,15,16,19,66,4,1,11,3,13,4,14,15,15,16,17,17,6,18,19,1,11,3,13,4,14,15,16,17,6,18,19,1,11,3,13,4,14,15,16,17,6,18,19,64,3,4,1,64,3,4,64,3,4,65,4,65,4,64,3,4,64,3,4,65,4,64,3,4,64,3,4,65,4,3,4,64,3,4,64,3,4,64,64,3,4,1,52,46,0,50,0,50,46,46,52,46,48,0,0,52,46,46,46,46,0,50,48,48,48,46,46,46,48,48,48,48,45,52,46,0,50,46,52,50,50,0,0,0,0,0,48,48,46,48,48,45,50,0,46,48,48,48,48,48,48,48,52,52,48,46,46,46,46,46,46,45,45,46,47,48,49,50,51,52,53,31,45,46,47,48,49,50,51,52,53,31,45,46,47,48,49,50,51,52,53,45,46,47,48,49,50,51,52,53,53,53,51,45,46,47,48,49,50,51,52,53,45,46,47,48,49,50,51,52,53,45,46,47,48,49,50,51,51,52,53,31,31,0,0,45,46,47,48,49,50,51,52,53,31,45,46,47,48,49,50,51,52,53,53,53,45,46,47,48,49,50,51,52,53,31,53,53,53,53,51,53,53,53,53,31,31,53,53,0,0,51,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,53,53,53,53,53,53,53,45,46,47,48,49,50,51,52,53,51,31,45,46,47,48,49,50,51,52,53,31,45,46,47,48,49,50,51,52,53,31,45,46,47,48,49,50,51,52,53,31,53,53,53,53,53,53,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,21,34,0,0,21,34,10,0,0,0,0,0,0,21,21,21,34,34,34,34,10,10,21,34,10,21,21,21,21,21,21,21,21,34,21,34,58,5,21,34,39,10,58,5,21,34,39,10,21,34,21,34,21,34,21,34,21,34,21,34,5,21,34,39,10,5,21,34,39,10,21,34,39,10,34,21,34,21,34,58,21,34,10,34,34,5,21,34,39,10,5,21,34,39,10,58,58,5,21,21,34,34,39,10,10,21,34,10,21,34,10,58,5,21,21,34,39,10,10,10,10,10,10,10,10,10,21,21,21,21,10,10,21,34,10,34,34,34,34,21,21,21,21,21,21,5,21,34,39,10,34,10,58,5,21,34,39,10,21,34,21,21,58,34,10,21,34,21,34,34,10,5,34,10,21,34,21,34,10,10,21,34,10,21,34,10,5,21,34,39,10,21,21,34,10,34,10,21,34,10,21,21,21,21,34,34,34,34,34,10,10,10,21,34,10,21,21,34,34,34,34,34,34,34,34,5,21,34,39,10,21,34,10,34,10,58,5,21,34,39,10,58,5,21,34,39,10,58,5,21,34,39,10,21,39,39,21,34,21,34,21,34,34,10,34,10,21,34,21,34,34,10,21,34,21,34,34,10,21,34,21,34,39,21,57,0,0,57,0,2,57,0,0,57,57,57,57,57,7,23,57,7,23,57,7,23,57,7,23,57,2,57,7,7,7,23,57,7,23,57,55,7,23,7,7,23,23,57,7,23,57,2,2,2,7,23,2,2,7,23,57,7,23,57,2,2,57,7,57,2,7,23,2,7,23,2,7,23,2,7,23,57,2,2,2,2,2,7,23,57,7,23,7,23,57,7,23,57,7,23,57,57,7,7,7,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,1],[[1,1],1],[[[3,[2]],1],[[3,[2]]]],[[[4,[2]],5]],[[[4,[2]],6]],[[[4,[2]],7],[[4,[2]]]],[[[4,[2]],1],[[4,[2]]]],[[[3,[2]],1]],[[[4,[2]],1]],[[[3,[2]],8,8,8],[[4,[2]]]],[[[3,[2]],8,8,8,8],[[4,[2]]]],[[[3,[2]],8,8,8,8],[[9,[[4,[2]]]]]],[[[3,[2]],8,8,8,8],[[4,[2]]]],[[[3,[2]],8,8,8,8],[[9,[[4,[2]]]]]],[[[3,[2]],8,8,8,8],[[4,[2]]]],[[[3,[2]],8,8,8,8],[[9,[[4,[2]]]]]],[[[3,[2]],8,8,8],[[9,[[4,[2]]]]]],[[[3,[2]],10],[[9,[[4,[2]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[1,1],[[9,[1]]]],[[[4,[2]],5],[[9,[[4,[2]]]]]],[[[4,[2]],6],[[9,[[4,[2]]]]]],[[[3,[2]],1],[[9,[[3,[2]]]]]],[[[4,[2]],1],[[9,[[4,[2]]]]]],[[1,1],[[9,[1]]]],[[[4,[2]],5],[[9,[[4,[2]]]]]],[[[4,[2]],6],[[9,[[4,[2]]]]]],[[[3,[2]],1],[[9,[[3,[2]]]]]],[[[4,[2]],1],[[9,[[4,[2]]]]]],[1,1],[11,11],[[[3,[[0,[12,2]]]]],[[3,[[0,[12,2]]]]]],[13,13],[[[4,[[0,[12,2]]]]],[[4,[[0,[12,2]]]]]],[14,14],[15,15],[16,16],[17,17],[6,6],[18,18],[19,19],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[1,1],20],[[[3,[2]],[3,[2]]],20],[[[4,[2]],[4,[2]]],20],[[[4,[2]]],[[3,[2]]]],[[[4,[2]]],21],[[],8],[[[3,[2]]],8],[[[4,[2]]],8],[[],8],[[[3,[2]]],8],[[[4,[2]]],8],[22,1],[[],[[4,[23]]]],[[],[[4,[7]]]],[11,24],[14,24],[[1,25],1],[1,26],[[[4,[2]],1],[[26,[[4,[2]]]]]],[1,26],[[[4,[2]],1],[[26,[[4,[2]]]]]],[[1,1],27],[[11,11],27],[[[3,[2]],[3,[2]]],27],[[13,13],27],[[[4,[2]],[4,[2]]],27],[[14,14],27],[[15,15],27],[[16,16],27],[[17,17],27],[[6,6],27],[[18,18],27],[[19,19],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[[4,[2]]],[[4,[7]]]],[[1,28],29],[[1,28],29],[[11,28],29],[[11,28],29],[[[3,[2]],28],29],[[[3,[2]],28],29],[[13,28],29],[[[4,[2]],28],29],[[[4,[2]],28],29],[[14,28],29],[[14,28],29],[[15,28],29],[[15,28],29],[[16,28],29],[[16,28],29],[[17,28],29],[[6,28],29],[[18,28],29],[[19,28],29],[[19,28],29],0,[[[3,[2]],24],[[31,[30]]]],[[[4,[2]],24],[[31,[30]]]],[[[3,[2]],[0,[32,12]]],[[31,[[0,[32,12]]]]]],[[[4,[2]],[0,[32,12]]],[[31,[[0,[32,12]]]]]],[[]],[[]],[[]],[[]],[[]],[[[4,[23]]],[[4,[7]]]],[[[4,[7]]],[[4,[23]]]],[33,[[4,[23]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[22,[[9,[15]]]],[22,[[9,[17]]]],[34,[[4,[2]]]],[35,[[26,[1,11]]]],[24,[[36,[[4,[23]]]]]],[24,[[36,[[4,[7]]]]]],[24,[[26,[15]]]],[24,[[26,[17]]]],[8,[[9,[17]]]],[37,[[9,[15]]]],[37,[[9,[17]]]],[21,[[3,[2]]]],[34,[[4,[2]]]],[[1,38]],[[[3,[2]],38]],[[13,38]],[[[4,[2]],38]],[[15,38]],[[17,38]],[[6,38]],[[19,38]],[[],8],[[[4,[2]]],8],[[]],[[]],[22,1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,27],[[],39],[[[3,[2]]],39],[[[4,[2]]],39],[[],1],[22,1],[22,1],[[],1],[[],8],[[[4,[2]]],8],[22,1],[[],8],[[[3,[2]]],8],[[[4,[2]]],8],[[],8],[[[3,[2]]],8],[[[4,[2]]],8],[[1,25],1],0,[[[3,[2]]],21],[[[4,[2]]],34],[[[3,[2]]],21],[[[4,[2]]],34],[17,24],[[],8],[[[4,[2]]],8],[22,1],[1,1],[8,6],[1,22],[[],25],[[],25],[15,8],[15,8],[1,22],[1,[[9,[22]]]],[1,22],[1,22],[1,[[9,[22]]]],[1,22],[[],8],[[],8],[1,22],[15,8],[17,8],[15,8],0,[[[3,[2]]]],[[[4,[2]]]],[[],8],[[[3,[2]]],8],[[[4,[2]]],8],[[],8],[[[3,[2]]],8],[[[4,[2]]],8],[[24,24],36],[24,[[36,[[4,[7]]]]]],[24,[[36,[[4,[7]]]]]],[[24,24],[[36,[[4,[7]]]]]],[[1,1],[[9,[20]]]],[[[3,[2]],[3,[2]]],[[9,[20]]]],[[[4,[2]],[4,[2]]],[[9,[20]]]],[[17,17],[[9,[20]]]],[[6,6],[[9,[20]]]],[[[3,[2]]],[[3,[2]]]],[15,15],[17,17],[[[3,[2]]],[[9,[[3,[2]]]]]],0,[40],[40],[40],[40],[41],[41],[[],8],[[[4,[2]]],8],[22,1],[[[3,[2]],[3,[2]]],1],[[[4,[2]],[4,[2]]],1],[[1,1],1],[[[3,[2]],1],[[3,[2]]]],[[[3,[2]],[3,[2]]],1],[[[4,[2]],6]],[[[4,[2]],7],[[4,[2]]]],[[[4,[2]],1],[[4,[2]]]],[[[4,[2]],5]],[[[4,[2]],[4,[2]]],1],[[[3,[2]],1]],[[[4,[2]],1]],[[[3,[2]]],[[3,[2]]]],[15,15],[17,17],[[[3,[2]]],[[9,[[3,[2]]]]]],[32,1],[32,1],[[[4,[2]]],10],[[[4,[2]]],22],[[[4,[2]]],22],[[[4,[2]]],22],[[[4,[2]]],22],[[[4,[2]]],8],[[[4,[2]]],8],[[[4,[2]]],8],[[[3,[2]]],2],[[[4,[2]]],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[4,[2]]],42],[[[4,[2]]],42],[[[4,[2]],13,27],42],[1,[[26,[35,11]]]],[[],42],[[],42],[[],42],[[],42],[[],42],[[],42],[[],42],[[],42],[41],[41],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[43,[[26,[15]]]],[[],26],[[],26],[[],26],[43,[[26,[17]]]],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],15],[[[3,[2]]],15],[[[4,[2]]],15],[22,1],[8,9],[[[3,[2]],8],[[9,[[3,[2]]]]]],[[[4,[2]],8],[[9,[[4,[2]]]]]],[8,9],[[[3,[2]],8],[[9,[[3,[2]]]]]],[[[4,[2]],8],[[9,[[4,[2]]]]]],[8,9],[[[4,[2]],8],[[9,[[4,[2]]]]]],[8,9],[[[4,[2]],8],[[9,[[4,[2]]]]]],[8,9],[[[3,[2]],8],[[9,[[3,[2]]]]]],[[[4,[2]],8],[[9,[[4,[2]]]]]],[8,9],[[[3,[2]],8],[[9,[[3,[2]]]]]],[[[4,[2]],8],[[9,[[4,[2]]]]]],[8,9],[[[4,[2]],8],[[9,[[4,[2]]]]]],[8,9],[[[3,[2]],8],[[9,[[3,[2]]]]]],[[[4,[2]],8],[[9,[[4,[2]]]]]],[8,9],[[[3,[2]],8],[[9,[[3,[2]]]]]],[[[4,[2]],8],[[9,[[4,[2]]]]]],[8,9],[[[4,[2]],8],[[9,[[4,[2]]]]]],[[[3,[2]],2],[[3,[2]]]],[[[4,[2]],2],[[4,[2]]]],[25,9],[[[3,[2]],25],[[9,[[3,[2]]]]]],[[[4,[2]],25],[[9,[[4,[2]]]]]],[[],25],[[[3,[2]]],25],[[[4,[2]]],25],[[]],[[]],[[[3,[2]],[3,[2]]],[[9,[8]]]],[[[4,[2]],[4,[2]]],[[9,[8]]]],[[],1],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,45],[46,46],[47,47],[48,48],[49,49],[50,50],[51,51],[52,52],[53,53],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],53],[51,24],[[45,45],27],[[46,46],27],[[47,47],27],[[48,48],27],[[49,49],27],[[50,50],27],[[51,51],27],[[52,52],27],[[53,53],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[45,28],29],[[46,28],29],[[47,28],29],[[48,28],29],[[49,28],29],[[50,28],29],[[51,28],29],[[51,28],29],[[52,28],29],[[53,28],29],[[[31,[[0,[32,12]]]],28],29],[[[31,[54]],28],29],[[28,[9,[21]],[9,[10]],9,[0,[32,12]]],29],[[28,[9,[21]],[9,[10]],9,50],29],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[45,38]],[[46,38]],[[47,38]],[[48,38]],[[49,38]],[[50,38]],[[51,38]],[[52,38]],[[53,38]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,[51,52],0,0,0,[[],53],[[[9,[21]],[9,[10]],[0,[32,12]]],[[31,[[0,[32,12]]]]]],[[[9,[21]],[9,[10]],[0,[55,56]],[0,[32,12]]],[[31,[[0,[32,12]]]]]],0,0,[[53,24,32],36],[[53,24,32],[[36,[24]]]],[40],0,[[53,27],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,22],36],[[53,15],36],[[53,22],36],[[53,22],36],[[53,22],36],0,0,[53,[[36,[[4,[7]]]]]],[[53,2],[[36,[[4,[2]]]]]],[53,[[36,[7]]]],[53,[[36,[21]]]],[[53,25],[[36,[34]]]],[53,[[36,[10]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],42],[[],42],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],0,0,0,0,0,0,0,[[]],[[]],[30,30],[[]],[[30,28],29],[[]],[[]],[[]],[24,30],[30,[[9,[50]]]],[[]],[[],26],[[],26],[[],44],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[21,6]],[[21,5]],[[21,1],21],[[34,1],34],[[34,6]],[[34,7],34],[[34,5]],[[10,1],10],[[10,7],10],[[21,1]],[[34,1]],[[10,1]],[[21,8,8,8],34],[[21,8,8,8,8],34],[[21,8,8,8,8],[[9,[34]]]],[[21,8,8,8,8],34],[[21,8,8,8,8],[[9,[34]]]],[[21,8,8,8,8],34],[[21,8,8,8,8],[[9,[34]]]],[[21,8,8,8],[[9,[34]]]],[[34,2],[[57,[[4,[2]]]]]],[[21,10],34],[34,[[4,[23]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[21,5],[[9,[21]]]],[[34,5],[[9,[34]]]],[[21,6],[[9,[21]]]],[[34,6],[[9,[34]]]],[[21,1],[[9,[21]]]],[[34,1],[[9,[34]]]],[[21,5],[[9,[21]]]],[[34,5],[[9,[34]]]],[[21,6],[[9,[21]]]],[[34,6],[[9,[34]]]],[[21,1],[[9,[21]]]],[[34,1],[[9,[34]]]],[5,5],[21,21],[34,34],[39,39],[10,10],[[]],[[]],[[]],[[]],[[]],[[21,21],20],[[34,34],20],[[39,39],20],[[10,10],20],[34,21],[21,8],[34,8],[21,8],[34,8],[58,[[59,[21]]]],[[],21],[[],34],[[],10],[[34,1],[[26,[34]]]],[[34,1],[[26,[34]]]],[[5,5],27],[[21,21],27],[[34,34],27],[[39,39],27],[[10,10],27],[[],27],[[],27],[[],27],[[],27],[[],27],[58,21],[[58,28],29],[[5,28],29],[[21,28],29],[[21,28],29],[[34,28],29],[[34,28],29],[[39,28],29],[[10,28],29],[[10,28],29],[[21,24],[[31,[30]]]],[[34,24],[[31,[30]]]],[[10,24],[[31,[30]]]],[[21,[0,[32,12]]],[[31,[[0,[32,12]]]]]],[[34,[0,[32,12]]],[[31,[[0,[32,12]]]]]],[[10,[0,[32,12]]],[[31,[[0,[32,12]]]]]],[[]],[[]],[[]],[34,21],[[]],[[]],[[]],[[8,8,8],10],[[8,8,8,8],10],[[8,8,8,8],[[9,[10]]]],[[8,8,8,8],10],[[8,8,8,8],[[9,[10]]]],[[8,8,8,8],10],[[8,8,8,8],[[9,[10]]]],[[8,8,8],[[9,[10]]]],[[25,8,15],21],[[25,8,15],[[9,[21]]]],[25,21],[25,[[9,[21]]]],[[8,8],10],[[8,8],[[9,[10]]]],[24,[[36,[21]]]],[24,[[36,[34]]]],[24,[[36,[10]]]],[[22,8],34],[22,[[9,[34]]]],[22,[[9,[34]]]],[[22,8],[[9,[34]]]],[[25,8,15,43],21],[[25,8,15,43],[[9,[21]]]],[[25,8,8],21],[[25,8,8],[[9,[21]]]],[[25,8],21],[[25,8],[[9,[21]]]],[[5,38]],[[21,38]],[[34,38]],[[39,38]],[[10,38]],[34,8],[10,8],[[]],[[]],[[]],[[]],[[]],[[]],[21,39],[34,39],0,0,[58,21],[34,8],[10,8],[21,8],[34,8],[21,8],[34,8],[34,8],[10,8],[37,5],[[21,10],34],[10,8],[21,8],[34,8],[21,8],[34,8],[[10,1]],[[10,1]],[[24,24],36],[[24,24],36],[[24,24],36],[[24,24],[[36,[21]]]],[[24,24],[[36,[34]]]],[[24,24],[[36,[10]]]],[[5,5],[[9,[20]]]],[[21,21],[[9,[20]]]],[[34,34],[[9,[20]]]],[[39,39],[[9,[20]]]],[[10,10],[[9,[20]]]],[21,21],[21,[[9,[21]]]],[41],[41],[34,8],[10,8],[[21,21],1],[[34,34],1],[[10,10],1],[[21,21],1],[[21,5]],[[21,6]],[[21,1],21],[[34,34],1],[[34,6]],[[34,5]],[[34,1],34],[[34,7],34],[[10,7],10],[[10,10],1],[[10,1],10],[[21,1]],[[34,1]],[[10,1]],[21,21],[21,[[9,[21]]]],[34,10],[34,22],[34,22],[34,22],[34,22],[34,8],[34,8],[34,8],[[]],[[]],[[]],[[]],[[]],[[],42],[[],42],[[],42],[41],[41],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[21,15],58],[39,8],[39,8],[21,15],[34,15],[[21,8],[[9,[21]]]],[[34,8],[[9,[34]]]],[[21,8],[[9,[21]]]],[[34,8],[[9,[34]]]],[[34,8],[[9,[34]]]],[[10,8],[[9,[10]]]],[[34,8],[[9,[34]]]],[[10,8],[[9,[10]]]],[[21,8],[[9,[21]]]],[[34,8],[[9,[34]]]],[[21,8],[[9,[21]]]],[[34,8],[[9,[34]]]],[[34,8],[[9,[34]]]],[[10,8],[[9,[10]]]],[[21,8],[[9,[21]]]],[[34,8],[[9,[34]]]],[[21,8],[[9,[21]]]],[[34,8],[[9,[34]]]],[[34,8],[[9,[34]]]],[[10,8],[[9,[10]]]],[[21,25],[[9,[21]]]],[[34,25],[[9,[34]]]],[21,25],[34,25],[39,25],[[21,21],[[9,[8]]]],0,0,0,0,0,0,0,0,0,[[[57,[[3,[2]]]],8,8,8,8],[[57,[[4,[2]]]]]],[[[57,[[3,[2]]]],8,8,8,8],[[57,[[4,[2]]]]]],[[[57,[[3,[2]]]],8,8,8,8],[[57,[[4,[2]]]]]],[[[57,[[3,[2]]]],8,8,8],[[57,[[4,[2]]]]]],[[[57,[[3,[2]]]],10],[[57,[[4,[2]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[7,7],[23,23],[[[57,[12]]],[[57,[12]]]],[[]],[[]],[[]],[[24,24],[[36,[4]]]],[57,9],[25,7],[25,[[9,[7]]]],[[7,7],27],[[23,23],27],[[[57,[60]],[57,[60]]],27],[[],27],[[],27],[[],27],[[],7],[7,7],[23,7],[[7,28],29],[[7,28],29],[[23,28],29],[[23,28],29],[[[57,[54]],28],29],[[]],[[]],[[]],[21,[[57,[3]]]],[34,[[57,[4]]]],[[]],[7,7],[23,23],[21,3],[34,4],[[7,38]],[[23,38]],[[[57,[61]],38]],[[]],[[]],[[]],[[25,8,15],3],[[25,8,15],[[57,[3]]]],[57,9],[7,25],[[57,62],57],[21,57],[[7,21],[[57,[7]]]],[[23,21],[[57,[23]]]],[34,57],[[7,34],[[57,[7]]]],[[23,34],[[57,[23]]]],[21],[[7,21],7],[[23,21],23],[34],[[7,34],7],[[23,34],23],[57,9],[[22,8],4],[22,4],[22,[[57,[4]]]],[22,4],[[22,8],[[57,[4]]]],[[]],[[]],[[]],[[],42],[[],42],[[],26],[[],26],[[],26],[[],26],[[],26],[[],26],[[],44],[[],44],[[],44],[[[57,[54]]],54],[7,25],[25,7],[25,[[9,[7]]]],[[25,8,8,8,8,8],[[57,[4]]]],[[25,8,8],3],[[25,8,8],[[57,[3]]]],[[25,8],3],[[25,8],[[57,[3]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"c":[3,21,22,25,26,74,75,77,79,144,329,355,764,765,769,770,787,788,790,792,880,881,883,885,888,890,892,897,901,903,905,953,977,1074,1093,1098,1106,1107,1124,1125,1145,1148,1149,1150,1151],"p":[[3,"Duration"],[8,"TimeZone"],[3,"Date"],[3,"DateTime"],[3,"Days"],[3,"Months"],[3,"FixedOffset"],[15,"u32"],[4,"Option"],[3,"NaiveTime"],[3,"OutOfRangeError"],[8,"Clone"],[4,"SecondsFormat"],[4,"RoundingError"],[4,"Weekday"],[3,"ParseWeekdayError"],[4,"Month"],[3,"ParseMonthError"],[3,"OutOfRange"],[4,"Ordering"],[3,"NaiveDate"],[15,"i64"],[3,"Utc"],[15,"str"],[15,"i32"],[4,"Result"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"StrftimeItems"],[3,"DelayedFormat"],[8,"Iterator"],[3,"SystemTime"],[3,"NaiveDateTime"],[3,"Duration"],[6,"ParseResult"],[15,"u64"],[8,"Hasher"],[3,"IsoWeek"],[3,"Demand"],[15,"u16"],[3,"String"],[15,"u8"],[3,"TypeId"],[4,"Pad"],[4,"Numeric"],[3,"InternalNumeric"],[4,"Fixed"],[3,"InternalFixed"],[4,"Item"],[3,"ParseError"],[4,"ParseErrorKind"],[3,"Parsed"],[8,"Debug"],[8,"Offset"],[8,"Display"],[4,"LocalResult"],[3,"NaiveWeek"],[3,"RangeInclusive"],[8,"PartialEq"],[8,"Hash"],[8,"FnMut"],[8,"DurationRound"],[8,"Datelike"],[8,"Timelike"],[8,"SubsecRound"]]},\ "chrono_tz":{"doc":"Chrono-TZ","t":"ANNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNANNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNANNNNNNNNNNNNANANNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNANNNNNNNNNNNNANNNNNNNNNNNNNNNNNNNNNNNANNNNNRNRANNNNNNNNANNNRNRNRNRNRNRANNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNANNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNRNRNRNRNRNRNRNRNRNRANNNNNNNNNNNNRNRNRNRNRNRNRNRNRANNNNRNRNRIINRNRANNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGNRNRNRNRNRHNRENRANNNNNNNNNNNNNRNRNRNRNRKKLLLLKLLLLLLLLLLLLLLLLLLLKRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRARRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRARRRRRRARRRRRRRRRRRRRRRRRRRRRRRRRRRRRRARRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR","n":["Africa","Africa__Abidjan","Africa__Accra","Africa__Addis_Ababa","Africa__Algiers","Africa__Asmara","Africa__Asmera","Africa__Bamako","Africa__Bangui","Africa__Banjul","Africa__Bissau","Africa__Blantyre","Africa__Brazzaville","Africa__Bujumbura","Africa__Cairo","Africa__Casablanca","Africa__Ceuta","Africa__Conakry","Africa__Dakar","Africa__Dar_es_Salaam","Africa__Djibouti","Africa__Douala","Africa__El_Aaiun","Africa__Freetown","Africa__Gaborone","Africa__Harare","Africa__Johannesburg","Africa__Juba","Africa__Kampala","Africa__Khartoum","Africa__Kigali","Africa__Kinshasa","Africa__Lagos","Africa__Libreville","Africa__Lome","Africa__Luanda","Africa__Lubumbashi","Africa__Lusaka","Africa__Malabo","Africa__Maputo","Africa__Maseru","Africa__Mbabane","Africa__Mogadishu","Africa__Monrovia","Africa__Nairobi","Africa__Ndjamena","Africa__Niamey","Africa__Nouakchott","Africa__Ouagadougou","Africa__PortoNovo","Africa__Sao_Tome","Africa__Timbuktu","Africa__Tripoli","Africa__Tunis","Africa__Windhoek","America","America__Adak","America__Anchorage","America__Anguilla","America__Antigua","America__Araguaina","America__Argentina__Buenos_Aires","America__Argentina__Catamarca","America__Argentina__ComodRivadavia","America__Argentina__Cordoba","America__Argentina__Jujuy","America__Argentina__La_Rioja","America__Argentina__Mendoza","America__Argentina__Rio_Gallegos","America__Argentina__Salta","America__Argentina__San_Juan","America__Argentina__San_Luis","America__Argentina__Tucuman","America__Argentina__Ushuaia","America__Aruba","America__Asuncion","America__Atikokan","America__Atka","America__Bahia","America__Bahia_Banderas","America__Barbados","America__Belem","America__Belize","America__BlancSablon","America__Boa_Vista","America__Bogota","America__Boise","America__Buenos_Aires","America__Cambridge_Bay","America__Campo_Grande","America__Cancun","America__Caracas","America__Catamarca","America__Cayenne","America__Cayman","America__Chicago","America__Chihuahua","America__Ciudad_Juarez","America__Coral_Harbour","America__Cordoba","America__Costa_Rica","America__Creston","America__Cuiaba","America__Curacao","America__Danmarkshavn","America__Dawson","America__Dawson_Creek","America__Denver","America__Detroit","America__Dominica","America__Edmonton","America__Eirunepe","America__El_Salvador","America__Ensenada","America__Fort_Nelson","America__Fort_Wayne","America__Fortaleza","America__Glace_Bay","America__Godthab","America__Goose_Bay","America__Grand_Turk","America__Grenada","America__Guadeloupe","America__Guatemala","America__Guayaquil","America__Guyana","America__Halifax","America__Havana","America__Hermosillo","America__Indiana__Indianapolis","America__Indiana__Knox","America__Indiana__Marengo","America__Indiana__Petersburg","America__Indiana__Tell_City","America__Indiana__Vevay","America__Indiana__Vincennes","America__Indiana__Winamac","America__Indianapolis","America__Inuvik","America__Iqaluit","America__Jamaica","America__Jujuy","America__Juneau","America__Kentucky__Louisville","America__Kentucky__Monticello","America__Knox_IN","America__Kralendijk","America__La_Paz","America__Lima","America__Los_Angeles","America__Louisville","America__Lower_Princes","America__Maceio","America__Managua","America__Manaus","America__Marigot","America__Martinique","America__Matamoros","America__Mazatlan","America__Mendoza","America__Menominee","America__Merida","America__Metlakatla","America__Mexico_City","America__Miquelon","America__Moncton","America__Monterrey","America__Montevideo","America__Montreal","America__Montserrat","America__Nassau","America__New_York","America__Nipigon","America__Nome","America__Noronha","America__North_Dakota__Beulah","America__North_Dakota__Center","America__North_Dakota__New_Salem","America__Nuuk","America__Ojinaga","America__Panama","America__Pangnirtung","America__Paramaribo","America__Phoenix","America__Port_of_Spain","America__PortauPrince","America__Porto_Acre","America__Porto_Velho","America__Puerto_Rico","America__Punta_Arenas","America__Rainy_River","America__Rankin_Inlet","America__Recife","America__Regina","America__Resolute","America__Rio_Branco","America__Rosario","America__Santa_Isabel","America__Santarem","America__Santiago","America__Santo_Domingo","America__Sao_Paulo","America__Scoresbysund","America__Shiprock","America__Sitka","America__St_Barthelemy","America__St_Johns","America__St_Kitts","America__St_Lucia","America__St_Thomas","America__St_Vincent","America__Swift_Current","America__Tegucigalpa","America__Thule","America__Thunder_Bay","America__Tijuana","America__Toronto","America__Tortola","America__Vancouver","America__Virgin","America__Whitehorse","America__Winnipeg","America__Yakutat","America__Yellowknife","Antarctica","Antarctica__Casey","Antarctica__Davis","Antarctica__DumontDUrville","Antarctica__Macquarie","Antarctica__Mawson","Antarctica__McMurdo","Antarctica__Palmer","Antarctica__Rothera","Antarctica__South_Pole","Antarctica__Syowa","Antarctica__Troll","Antarctica__Vostok","Arctic","Arctic__Longyearbyen","Asia","Asia__Aden","Asia__Almaty","Asia__Amman","Asia__Anadyr","Asia__Aqtau","Asia__Aqtobe","Asia__Ashgabat","Asia__Ashkhabad","Asia__Atyrau","Asia__Baghdad","Asia__Bahrain","Asia__Baku","Asia__Bangkok","Asia__Barnaul","Asia__Beirut","Asia__Bishkek","Asia__Brunei","Asia__Calcutta","Asia__Chita","Asia__Choibalsan","Asia__Chongqing","Asia__Chungking","Asia__Colombo","Asia__Dacca","Asia__Damascus","Asia__Dhaka","Asia__Dili","Asia__Dubai","Asia__Dushanbe","Asia__Famagusta","Asia__Gaza","Asia__Harbin","Asia__Hebron","Asia__Ho_Chi_Minh","Asia__Hong_Kong","Asia__Hovd","Asia__Irkutsk","Asia__Istanbul","Asia__Jakarta","Asia__Jayapura","Asia__Jerusalem","Asia__Kabul","Asia__Kamchatka","Asia__Karachi","Asia__Kashgar","Asia__Kathmandu","Asia__Katmandu","Asia__Khandyga","Asia__Kolkata","Asia__Krasnoyarsk","Asia__Kuala_Lumpur","Asia__Kuching","Asia__Kuwait","Asia__Macao","Asia__Macau","Asia__Magadan","Asia__Makassar","Asia__Manila","Asia__Muscat","Asia__Nicosia","Asia__Novokuznetsk","Asia__Novosibirsk","Asia__Omsk","Asia__Oral","Asia__Phnom_Penh","Asia__Pontianak","Asia__Pyongyang","Asia__Qatar","Asia__Qostanay","Asia__Qyzylorda","Asia__Rangoon","Asia__Riyadh","Asia__Saigon","Asia__Sakhalin","Asia__Samarkand","Asia__Seoul","Asia__Shanghai","Asia__Singapore","Asia__Srednekolymsk","Asia__Taipei","Asia__Tashkent","Asia__Tbilisi","Asia__Tehran","Asia__Tel_Aviv","Asia__Thimbu","Asia__Thimphu","Asia__Tokyo","Asia__Tomsk","Asia__Ujung_Pandang","Asia__Ulaanbaatar","Asia__Ulan_Bator","Asia__Urumqi","Asia__UstNera","Asia__Vientiane","Asia__Vladivostok","Asia__Yakutsk","Asia__Yangon","Asia__Yekaterinburg","Asia__Yerevan","Atlantic","Atlantic__Azores","Atlantic__Bermuda","Atlantic__Canary","Atlantic__Cape_Verde","Atlantic__Faeroe","Atlantic__Faroe","Atlantic__Jan_Mayen","Atlantic__Madeira","Atlantic__Reykjavik","Atlantic__South_Georgia","Atlantic__St_Helena","Atlantic__Stanley","Australia","Australia__ACT","Australia__Adelaide","Australia__Brisbane","Australia__Broken_Hill","Australia__Canberra","Australia__Currie","Australia__Darwin","Australia__Eucla","Australia__Hobart","Australia__LHI","Australia__Lindeman","Australia__Lord_Howe","Australia__Melbourne","Australia__NSW","Australia__North","Australia__Perth","Australia__Queensland","Australia__South","Australia__Sydney","Australia__Tasmania","Australia__Victoria","Australia__West","Australia__Yancowinna","Brazil","Brazil__Acre","Brazil__DeNoronha","Brazil__East","Brazil__West","CET","CET","CST6CDT","CST6CDT","Canada","Canada__Atlantic","Canada__Central","Canada__Eastern","Canada__Mountain","Canada__Newfoundland","Canada__Pacific","Canada__Saskatchewan","Canada__Yukon","Chile","Chile__Continental","Chile__EasterIsland","Cuba","Cuba","EET","EET","EST","EST","EST5EDT","EST5EDT","Egypt","Egypt","Eire","Eire","Etc","Etc__GMT","Etc__GMT0","Etc__GMTMinus0","Etc__GMTMinus1","Etc__GMTMinus10","Etc__GMTMinus11","Etc__GMTMinus12","Etc__GMTMinus13","Etc__GMTMinus14","Etc__GMTMinus2","Etc__GMTMinus3","Etc__GMTMinus4","Etc__GMTMinus5","Etc__GMTMinus6","Etc__GMTMinus7","Etc__GMTMinus8","Etc__GMTMinus9","Etc__GMTPlus0","Etc__GMTPlus1","Etc__GMTPlus10","Etc__GMTPlus11","Etc__GMTPlus12","Etc__GMTPlus2","Etc__GMTPlus3","Etc__GMTPlus4","Etc__GMTPlus5","Etc__GMTPlus6","Etc__GMTPlus7","Etc__GMTPlus8","Etc__GMTPlus9","Etc__Greenwich","Etc__UCT","Etc__UTC","Etc__Universal","Etc__Zulu","Europe","Europe__Amsterdam","Europe__Andorra","Europe__Astrakhan","Europe__Athens","Europe__Belfast","Europe__Belgrade","Europe__Berlin","Europe__Bratislava","Europe__Brussels","Europe__Bucharest","Europe__Budapest","Europe__Busingen","Europe__Chisinau","Europe__Copenhagen","Europe__Dublin","Europe__Gibraltar","Europe__Guernsey","Europe__Helsinki","Europe__Isle_of_Man","Europe__Istanbul","Europe__Jersey","Europe__Kaliningrad","Europe__Kiev","Europe__Kirov","Europe__Kyiv","Europe__Lisbon","Europe__Ljubljana","Europe__London","Europe__Luxembourg","Europe__Madrid","Europe__Malta","Europe__Mariehamn","Europe__Minsk","Europe__Monaco","Europe__Moscow","Europe__Nicosia","Europe__Oslo","Europe__Paris","Europe__Podgorica","Europe__Prague","Europe__Riga","Europe__Rome","Europe__Samara","Europe__San_Marino","Europe__Sarajevo","Europe__Saratov","Europe__Simferopol","Europe__Skopje","Europe__Sofia","Europe__Stockholm","Europe__Tallinn","Europe__Tirane","Europe__Tiraspol","Europe__Ulyanovsk","Europe__Uzhgorod","Europe__Vaduz","Europe__Vatican","Europe__Vienna","Europe__Vilnius","Europe__Volgograd","Europe__Warsaw","Europe__Zagreb","Europe__Zaporozhye","Europe__Zurich","GB","GB","GBEire","GBEire","GMT","GMT","GMT0","GMT0","GMTMinus0","GMTMinus0","GMTPlus0","GMTPlus0","Greenwich","Greenwich","HST","HST","Hongkong","Hongkong","Iceland","Iceland","Indian","Indian__Antananarivo","Indian__Chagos","Indian__Christmas","Indian__Cocos","Indian__Comoro","Indian__Kerguelen","Indian__Mahe","Indian__Maldives","Indian__Mauritius","Indian__Mayotte","Indian__Reunion","Iran","Iran","Israel","Israel","Jamaica","Jamaica","Japan","Japan","Kwajalein","Kwajalein","Libya","Libya","MET","MET","MST","MST","MST7MDT","MST7MDT","Mexico","Mexico__BajaNorte","Mexico__BajaSur","Mexico__General","NZ","NZ","NZCHAT","NZCHAT","Navajo","Navajo","OffsetComponents","OffsetName","PRC","PRC","PST8PDT","PST8PDT","Pacific","Pacific__Apia","Pacific__Auckland","Pacific__Bougainville","Pacific__Chatham","Pacific__Chuuk","Pacific__Easter","Pacific__Efate","Pacific__Enderbury","Pacific__Fakaofo","Pacific__Fiji","Pacific__Funafuti","Pacific__Galapagos","Pacific__Gambier","Pacific__Guadalcanal","Pacific__Guam","Pacific__Honolulu","Pacific__Johnston","Pacific__Kanton","Pacific__Kiritimati","Pacific__Kosrae","Pacific__Kwajalein","Pacific__Majuro","Pacific__Marquesas","Pacific__Midway","Pacific__Nauru","Pacific__Niue","Pacific__Norfolk","Pacific__Noumea","Pacific__Pago_Pago","Pacific__Palau","Pacific__Pitcairn","Pacific__Pohnpei","Pacific__Ponape","Pacific__Port_Moresby","Pacific__Rarotonga","Pacific__Saipan","Pacific__Samoa","Pacific__Tahiti","Pacific__Tarawa","Pacific__Tongatapu","Pacific__Truk","Pacific__Wake","Pacific__Wallis","Pacific__Yap","ParseError","Poland","Poland","Portugal","Portugal","ROC","ROC","ROK","ROK","Singapore","Singapore","TZ_VARIANTS","Turkey","Turkey","Tz","UCT","UCT","US","US__Alaska","US__Aleutian","US__Arizona","US__Central","US__EastIndiana","US__Eastern","US__Hawaii","US__IndianaStarke","US__Michigan","US__Mountain","US__Pacific","US__Samoa","UTC","UTC","Universal","Universal","WET","WET","WSU","WSU","Zulu","Zulu","abbreviation","base_utc_offset","borrow","borrow_mut","clone","clone_into","dst_offset","eq","equivalent","fmt","fmt","from","from_offset","from_str","hash","into","name","offset_from_local_date","offset_from_local_datetime","offset_from_utc_date","offset_from_utc_datetime","to_owned","to_string","try_from","try_into","type_id","tz_id","Abidjan","Accra","Addis_Ababa","Algiers","Asmara","Asmera","Bamako","Bangui","Banjul","Bissau","Blantyre","Brazzaville","Bujumbura","Cairo","Casablanca","Ceuta","Conakry","Dakar","Dar_es_Salaam","Djibouti","Douala","El_Aaiun","Freetown","Gaborone","Harare","Johannesburg","Juba","Kampala","Khartoum","Kigali","Kinshasa","Lagos","Libreville","Lome","Luanda","Lubumbashi","Lusaka","Malabo","Maputo","Maseru","Mbabane","Mogadishu","Monrovia","Nairobi","Ndjamena","Niamey","Nouakchott","Ouagadougou","PortoNovo","Sao_Tome","Timbuktu","Tripoli","Tunis","Windhoek","Adak","Anchorage","Anguilla","Antigua","Araguaina","Argentina","Aruba","Asuncion","Atikokan","Atka","Bahia","Bahia_Banderas","Barbados","Belem","Belize","BlancSablon","Boa_Vista","Bogota","Boise","Buenos_Aires","Cambridge_Bay","Campo_Grande","Cancun","Caracas","Catamarca","Cayenne","Cayman","Chicago","Chihuahua","Ciudad_Juarez","Coral_Harbour","Cordoba","Costa_Rica","Creston","Cuiaba","Curacao","Danmarkshavn","Dawson","Dawson_Creek","Denver","Detroit","Dominica","Edmonton","Eirunepe","El_Salvador","Ensenada","Fort_Nelson","Fort_Wayne","Fortaleza","Glace_Bay","Godthab","Goose_Bay","Grand_Turk","Grenada","Guadeloupe","Guatemala","Guayaquil","Guyana","Halifax","Havana","Hermosillo","Indiana","Indianapolis","Inuvik","Iqaluit","Jamaica","Jujuy","Juneau","Kentucky","Knox_IN","Kralendijk","La_Paz","Lima","Los_Angeles","Louisville","Lower_Princes","Maceio","Managua","Manaus","Marigot","Martinique","Matamoros","Mazatlan","Mendoza","Menominee","Merida","Metlakatla","Mexico_City","Miquelon","Moncton","Monterrey","Montevideo","Montreal","Montserrat","Nassau","New_York","Nipigon","Nome","Noronha","North_Dakota","Nuuk","Ojinaga","Panama","Pangnirtung","Paramaribo","Phoenix","Port_of_Spain","PortauPrince","Porto_Acre","Porto_Velho","Puerto_Rico","Punta_Arenas","Rainy_River","Rankin_Inlet","Recife","Regina","Resolute","Rio_Branco","Rosario","Santa_Isabel","Santarem","Santiago","Santo_Domingo","Sao_Paulo","Scoresbysund","Shiprock","Sitka","St_Barthelemy","St_Johns","St_Kitts","St_Lucia","St_Thomas","St_Vincent","Swift_Current","Tegucigalpa","Thule","Thunder_Bay","Tijuana","Toronto","Tortola","Vancouver","Virgin","Whitehorse","Winnipeg","Yakutat","Yellowknife","Buenos_Aires","Catamarca","ComodRivadavia","Cordoba","Jujuy","La_Rioja","Mendoza","Rio_Gallegos","Salta","San_Juan","San_Luis","Tucuman","Ushuaia","Indianapolis","Knox","Marengo","Petersburg","Tell_City","Vevay","Vincennes","Winamac","Louisville","Monticello","Beulah","Center","New_Salem","Casey","Davis","DumontDUrville","Macquarie","Mawson","McMurdo","Palmer","Rothera","South_Pole","Syowa","Troll","Vostok","Longyearbyen","Aden","Almaty","Amman","Anadyr","Aqtau","Aqtobe","Ashgabat","Ashkhabad","Atyrau","Baghdad","Bahrain","Baku","Bangkok","Barnaul","Beirut","Bishkek","Brunei","Calcutta","Chita","Choibalsan","Chongqing","Chungking","Colombo","Dacca","Damascus","Dhaka","Dili","Dubai","Dushanbe","Famagusta","Gaza","Harbin","Hebron","Ho_Chi_Minh","Hong_Kong","Hovd","Irkutsk","Istanbul","Jakarta","Jayapura","Jerusalem","Kabul","Kamchatka","Karachi","Kashgar","Kathmandu","Katmandu","Khandyga","Kolkata","Krasnoyarsk","Kuala_Lumpur","Kuching","Kuwait","Macao","Macau","Magadan","Makassar","Manila","Muscat","Nicosia","Novokuznetsk","Novosibirsk","Omsk","Oral","Phnom_Penh","Pontianak","Pyongyang","Qatar","Qostanay","Qyzylorda","Rangoon","Riyadh","Saigon","Sakhalin","Samarkand","Seoul","Shanghai","Singapore","Srednekolymsk","Taipei","Tashkent","Tbilisi","Tehran","Tel_Aviv","Thimbu","Thimphu","Tokyo","Tomsk","Ujung_Pandang","Ulaanbaatar","Ulan_Bator","Urumqi","UstNera","Vientiane","Vladivostok","Yakutsk","Yangon","Yekaterinburg","Yerevan","Azores","Bermuda","Canary","Cape_Verde","Faeroe","Faroe","Jan_Mayen","Madeira","Reykjavik","South_Georgia","St_Helena","Stanley","ACT","Adelaide","Brisbane","Broken_Hill","Canberra","Currie","Darwin","Eucla","Hobart","LHI","Lindeman","Lord_Howe","Melbourne","NSW","North","Perth","Queensland","South","Sydney","Tasmania","Victoria","West","Yancowinna","Acre","DeNoronha","East","West","Atlantic","Central","Eastern","Mountain","Newfoundland","Pacific","Saskatchewan","Yukon","Continental","EasterIsland","GMT","GMT0","GMTMinus0","GMTMinus1","GMTMinus10","GMTMinus11","GMTMinus12","GMTMinus13","GMTMinus14","GMTMinus2","GMTMinus3","GMTMinus4","GMTMinus5","GMTMinus6","GMTMinus7","GMTMinus8","GMTMinus9","GMTPlus0","GMTPlus1","GMTPlus10","GMTPlus11","GMTPlus12","GMTPlus2","GMTPlus3","GMTPlus4","GMTPlus5","GMTPlus6","GMTPlus7","GMTPlus8","GMTPlus9","Greenwich","UCT","UTC","Universal","Zulu","Amsterdam","Andorra","Astrakhan","Athens","Belfast","Belgrade","Berlin","Bratislava","Brussels","Bucharest","Budapest","Busingen","Chisinau","Copenhagen","Dublin","Gibraltar","Guernsey","Helsinki","Isle_of_Man","Istanbul","Jersey","Kaliningrad","Kiev","Kirov","Kyiv","Lisbon","Ljubljana","London","Luxembourg","Madrid","Malta","Mariehamn","Minsk","Monaco","Moscow","Nicosia","Oslo","Paris","Podgorica","Prague","Riga","Rome","Samara","San_Marino","Sarajevo","Saratov","Simferopol","Skopje","Sofia","Stockholm","Tallinn","Tirane","Tiraspol","Ulyanovsk","Uzhgorod","Vaduz","Vatican","Vienna","Vilnius","Volgograd","Warsaw","Zagreb","Zaporozhye","Zurich","Antananarivo","Chagos","Christmas","Cocos","Comoro","Kerguelen","Mahe","Maldives","Mauritius","Mayotte","Reunion","BajaNorte","BajaSur","General","Apia","Auckland","Bougainville","Chatham","Chuuk","Easter","Efate","Enderbury","Fakaofo","Fiji","Funafuti","Galapagos","Gambier","Guadalcanal","Guam","Honolulu","Johnston","Kanton","Kiritimati","Kosrae","Kwajalein","Majuro","Marquesas","Midway","Nauru","Niue","Norfolk","Noumea","Pago_Pago","Palau","Pitcairn","Pohnpei","Ponape","Port_Moresby","Rarotonga","Saipan","Samoa","Tahiti","Tarawa","Tongatapu","Truk","Wake","Wallis","Yap","Alaska","Aleutian","Arizona","Central","EastIndiana","Eastern","Hawaii","IndianaStarke","Michigan","Mountain","Pacific","Samoa"],"q":[[0,"chrono_tz"],[688,"chrono_tz::Africa"],[742,"chrono_tz::America"],[888,"chrono_tz::America::Argentina"],[901,"chrono_tz::America::Indiana"],[909,"chrono_tz::America::Kentucky"],[911,"chrono_tz::America::North_Dakota"],[914,"chrono_tz::Antarctica"],[926,"chrono_tz::Arctic"],[927,"chrono_tz::Asia"],[1026,"chrono_tz::Atlantic"],[1038,"chrono_tz::Australia"],[1061,"chrono_tz::Brazil"],[1065,"chrono_tz::Canada"],[1073,"chrono_tz::Chile"],[1075,"chrono_tz::Etc"],[1110,"chrono_tz::Europe"],[1174,"chrono_tz::Indian"],[1185,"chrono_tz::Mexico"],[1188,"chrono_tz::Pacific"],[1232,"chrono_tz::US"]],"d":["","Africa/Abidjan","Africa/Accra","Africa/Addis_Ababa","Africa/Algiers","Africa/Asmara","Africa/Asmera","Africa/Bamako","Africa/Bangui","Africa/Banjul","Africa/Bissau","Africa/Blantyre","Africa/Brazzaville","Africa/Bujumbura","Africa/Cairo","Africa/Casablanca","Africa/Ceuta","Africa/Conakry","Africa/Dakar","Africa/Dar_es_Salaam","Africa/Djibouti","Africa/Douala","Africa/El_Aaiun","Africa/Freetown","Africa/Gaborone","Africa/Harare","Africa/Johannesburg","Africa/Juba","Africa/Kampala","Africa/Khartoum","Africa/Kigali","Africa/Kinshasa","Africa/Lagos","Africa/Libreville","Africa/Lome","Africa/Luanda","Africa/Lubumbashi","Africa/Lusaka","Africa/Malabo","Africa/Maputo","Africa/Maseru","Africa/Mbabane","Africa/Mogadishu","Africa/Monrovia","Africa/Nairobi","Africa/Ndjamena","Africa/Niamey","Africa/Nouakchott","Africa/Ouagadougou","Africa/Porto-Novo","Africa/Sao_Tome","Africa/Timbuktu","Africa/Tripoli","Africa/Tunis","Africa/Windhoek","","America/Adak","America/Anchorage","America/Anguilla","America/Antigua","America/Araguaina","America/Argentina/Buenos_Aires","America/Argentina/Catamarca","America/Argentina/ComodRivadavia","America/Argentina/Cordoba","America/Argentina/Jujuy","America/Argentina/La_Rioja","America/Argentina/Mendoza","America/Argentina/Rio_Gallegos","America/Argentina/Salta","America/Argentina/San_Juan","America/Argentina/San_Luis","America/Argentina/Tucuman","America/Argentina/Ushuaia","America/Aruba","America/Asuncion","America/Atikokan","America/Atka","America/Bahia","America/Bahia_Banderas","America/Barbados","America/Belem","America/Belize","America/Blanc-Sablon","America/Boa_Vista","America/Bogota","America/Boise","America/Buenos_Aires","America/Cambridge_Bay","America/Campo_Grande","America/Cancun","America/Caracas","America/Catamarca","America/Cayenne","America/Cayman","America/Chicago","America/Chihuahua","America/Ciudad_Juarez","America/Coral_Harbour","America/Cordoba","America/Costa_Rica","America/Creston","America/Cuiaba","America/Curacao","America/Danmarkshavn","America/Dawson","America/Dawson_Creek","America/Denver","America/Detroit","America/Dominica","America/Edmonton","America/Eirunepe","America/El_Salvador","America/Ensenada","America/Fort_Nelson","America/Fort_Wayne","America/Fortaleza","America/Glace_Bay","America/Godthab","America/Goose_Bay","America/Grand_Turk","America/Grenada","America/Guadeloupe","America/Guatemala","America/Guayaquil","America/Guyana","America/Halifax","America/Havana","America/Hermosillo","America/Indiana/Indianapolis","America/Indiana/Knox","America/Indiana/Marengo","America/Indiana/Petersburg","America/Indiana/Tell_City","America/Indiana/Vevay","America/Indiana/Vincennes","America/Indiana/Winamac","America/Indianapolis","America/Inuvik","America/Iqaluit","America/Jamaica","America/Jujuy","America/Juneau","America/Kentucky/Louisville","America/Kentucky/Monticello","America/Knox_IN","America/Kralendijk","America/La_Paz","America/Lima","America/Los_Angeles","America/Louisville","America/Lower_Princes","America/Maceio","America/Managua","America/Manaus","America/Marigot","America/Martinique","America/Matamoros","America/Mazatlan","America/Mendoza","America/Menominee","America/Merida","America/Metlakatla","America/Mexico_City","America/Miquelon","America/Moncton","America/Monterrey","America/Montevideo","America/Montreal","America/Montserrat","America/Nassau","America/New_York","America/Nipigon","America/Nome","America/Noronha","America/North_Dakota/Beulah","America/North_Dakota/Center","America/North_Dakota/New_Salem","America/Nuuk","America/Ojinaga","America/Panama","America/Pangnirtung","America/Paramaribo","America/Phoenix","America/Port_of_Spain","America/Port-au-Prince","America/Porto_Acre","America/Porto_Velho","America/Puerto_Rico","America/Punta_Arenas","America/Rainy_River","America/Rankin_Inlet","America/Recife","America/Regina","America/Resolute","America/Rio_Branco","America/Rosario","America/Santa_Isabel","America/Santarem","America/Santiago","America/Santo_Domingo","America/Sao_Paulo","America/Scoresbysund","America/Shiprock","America/Sitka","America/St_Barthelemy","America/St_Johns","America/St_Kitts","America/St_Lucia","America/St_Thomas","America/St_Vincent","America/Swift_Current","America/Tegucigalpa","America/Thule","America/Thunder_Bay","America/Tijuana","America/Toronto","America/Tortola","America/Vancouver","America/Virgin","America/Whitehorse","America/Winnipeg","America/Yakutat","America/Yellowknife","","Antarctica/Casey","Antarctica/Davis","Antarctica/DumontDUrville","Antarctica/Macquarie","Antarctica/Mawson","Antarctica/McMurdo","Antarctica/Palmer","Antarctica/Rothera","Antarctica/South_Pole","Antarctica/Syowa","Antarctica/Troll","Antarctica/Vostok","","Arctic/Longyearbyen","","Asia/Aden","Asia/Almaty","Asia/Amman","Asia/Anadyr","Asia/Aqtau","Asia/Aqtobe","Asia/Ashgabat","Asia/Ashkhabad","Asia/Atyrau","Asia/Baghdad","Asia/Bahrain","Asia/Baku","Asia/Bangkok","Asia/Barnaul","Asia/Beirut","Asia/Bishkek","Asia/Brunei","Asia/Calcutta","Asia/Chita","Asia/Choibalsan","Asia/Chongqing","Asia/Chungking","Asia/Colombo","Asia/Dacca","Asia/Damascus","Asia/Dhaka","Asia/Dili","Asia/Dubai","Asia/Dushanbe","Asia/Famagusta","Asia/Gaza","Asia/Harbin","Asia/Hebron","Asia/Ho_Chi_Minh","Asia/Hong_Kong","Asia/Hovd","Asia/Irkutsk","Asia/Istanbul","Asia/Jakarta","Asia/Jayapura","Asia/Jerusalem","Asia/Kabul","Asia/Kamchatka","Asia/Karachi","Asia/Kashgar","Asia/Kathmandu","Asia/Katmandu","Asia/Khandyga","Asia/Kolkata","Asia/Krasnoyarsk","Asia/Kuala_Lumpur","Asia/Kuching","Asia/Kuwait","Asia/Macao","Asia/Macau","Asia/Magadan","Asia/Makassar","Asia/Manila","Asia/Muscat","Asia/Nicosia","Asia/Novokuznetsk","Asia/Novosibirsk","Asia/Omsk","Asia/Oral","Asia/Phnom_Penh","Asia/Pontianak","Asia/Pyongyang","Asia/Qatar","Asia/Qostanay","Asia/Qyzylorda","Asia/Rangoon","Asia/Riyadh","Asia/Saigon","Asia/Sakhalin","Asia/Samarkand","Asia/Seoul","Asia/Shanghai","Asia/Singapore","Asia/Srednekolymsk","Asia/Taipei","Asia/Tashkent","Asia/Tbilisi","Asia/Tehran","Asia/Tel_Aviv","Asia/Thimbu","Asia/Thimphu","Asia/Tokyo","Asia/Tomsk","Asia/Ujung_Pandang","Asia/Ulaanbaatar","Asia/Ulan_Bator","Asia/Urumqi","Asia/Ust-Nera","Asia/Vientiane","Asia/Vladivostok","Asia/Yakutsk","Asia/Yangon","Asia/Yekaterinburg","Asia/Yerevan","","Atlantic/Azores","Atlantic/Bermuda","Atlantic/Canary","Atlantic/Cape_Verde","Atlantic/Faeroe","Atlantic/Faroe","Atlantic/Jan_Mayen","Atlantic/Madeira","Atlantic/Reykjavik","Atlantic/South_Georgia","Atlantic/St_Helena","Atlantic/Stanley","","Australia/ACT","Australia/Adelaide","Australia/Brisbane","Australia/Broken_Hill","Australia/Canberra","Australia/Currie","Australia/Darwin","Australia/Eucla","Australia/Hobart","Australia/LHI","Australia/Lindeman","Australia/Lord_Howe","Australia/Melbourne","Australia/NSW","Australia/North","Australia/Perth","Australia/Queensland","Australia/South","Australia/Sydney","Australia/Tasmania","Australia/Victoria","Australia/West","Australia/Yancowinna","","Brazil/Acre","Brazil/DeNoronha","Brazil/East","Brazil/West","CET","","CST6CDT","","","Canada/Atlantic","Canada/Central","Canada/Eastern","Canada/Mountain","Canada/Newfoundland","Canada/Pacific","Canada/Saskatchewan","Canada/Yukon","","Chile/Continental","Chile/EasterIsland","Cuba","","EET","","EST","","EST5EDT","","Egypt","","Eire","","","Etc/GMT","Etc/GMT0","Etc/GMT-0","Etc/GMT-1","Etc/GMT-10","Etc/GMT-11","Etc/GMT-12","Etc/GMT-13","Etc/GMT-14","Etc/GMT-2","Etc/GMT-3","Etc/GMT-4","Etc/GMT-5","Etc/GMT-6","Etc/GMT-7","Etc/GMT-8","Etc/GMT-9","Etc/GMT+0","Etc/GMT+1","Etc/GMT+10","Etc/GMT+11","Etc/GMT+12","Etc/GMT+2","Etc/GMT+3","Etc/GMT+4","Etc/GMT+5","Etc/GMT+6","Etc/GMT+7","Etc/GMT+8","Etc/GMT+9","Etc/Greenwich","Etc/UCT","Etc/UTC","Etc/Universal","Etc/Zulu","","Europe/Amsterdam","Europe/Andorra","Europe/Astrakhan","Europe/Athens","Europe/Belfast","Europe/Belgrade","Europe/Berlin","Europe/Bratislava","Europe/Brussels","Europe/Bucharest","Europe/Budapest","Europe/Busingen","Europe/Chisinau","Europe/Copenhagen","Europe/Dublin","Europe/Gibraltar","Europe/Guernsey","Europe/Helsinki","Europe/Isle_of_Man","Europe/Istanbul","Europe/Jersey","Europe/Kaliningrad","Europe/Kiev","Europe/Kirov","Europe/Kyiv","Europe/Lisbon","Europe/Ljubljana","Europe/London","Europe/Luxembourg","Europe/Madrid","Europe/Malta","Europe/Mariehamn","Europe/Minsk","Europe/Monaco","Europe/Moscow","Europe/Nicosia","Europe/Oslo","Europe/Paris","Europe/Podgorica","Europe/Prague","Europe/Riga","Europe/Rome","Europe/Samara","Europe/San_Marino","Europe/Sarajevo","Europe/Saratov","Europe/Simferopol","Europe/Skopje","Europe/Sofia","Europe/Stockholm","Europe/Tallinn","Europe/Tirane","Europe/Tiraspol","Europe/Ulyanovsk","Europe/Uzhgorod","Europe/Vaduz","Europe/Vatican","Europe/Vienna","Europe/Vilnius","Europe/Volgograd","Europe/Warsaw","Europe/Zagreb","Europe/Zaporozhye","Europe/Zurich","GB","","GB-Eire","","GMT","","GMT0","","GMT-0","","GMT+0","","Greenwich","","HST","","Hongkong","","Iceland","","","Indian/Antananarivo","Indian/Chagos","Indian/Christmas","Indian/Cocos","Indian/Comoro","Indian/Kerguelen","Indian/Mahe","Indian/Maldives","Indian/Mauritius","Indian/Mayotte","Indian/Reunion","Iran","","Israel","","Jamaica","","Japan","","Kwajalein","","Libya","","MET","","MST","","MST7MDT","","","Mexico/BajaNorte","Mexico/BajaSur","Mexico/General","NZ","","NZ-CHAT","","Navajo","","Detailed timezone offset components that expose any …","Timezone offset name information.","PRC","","PST8PDT","","","Pacific/Apia","Pacific/Auckland","Pacific/Bougainville","Pacific/Chatham","Pacific/Chuuk","Pacific/Easter","Pacific/Efate","Pacific/Enderbury","Pacific/Fakaofo","Pacific/Fiji","Pacific/Funafuti","Pacific/Galapagos","Pacific/Gambier","Pacific/Guadalcanal","Pacific/Guam","Pacific/Honolulu","Pacific/Johnston","Pacific/Kanton","Pacific/Kiritimati","Pacific/Kosrae","Pacific/Kwajalein","Pacific/Majuro","Pacific/Marquesas","Pacific/Midway","Pacific/Nauru","Pacific/Niue","Pacific/Norfolk","Pacific/Noumea","Pacific/Pago_Pago","Pacific/Palau","Pacific/Pitcairn","Pacific/Pohnpei","Pacific/Ponape","Pacific/Port_Moresby","Pacific/Rarotonga","Pacific/Saipan","Pacific/Samoa","Pacific/Tahiti","Pacific/Tarawa","Pacific/Tongatapu","Pacific/Truk","Pacific/Wake","Pacific/Wallis","Pacific/Yap","","Poland","","Portugal","","ROC","","ROK","","Singapore","","An array of every known variant","Turkey","","TimeZones built at compile time from the tz database","UCT","","","US/Alaska","US/Aleutian","US/Arizona","US/Central","US/East-Indiana","US/Eastern","US/Hawaii","US/Indiana-Starke","US/Michigan","US/Mountain","US/Pacific","US/Samoa","UTC","","Universal","","WET","","W-SU","","Zulu","","The abbreviation to use in a longer timestamp (ex: EST)","The base offset from UTC; this usually doesn’t change …","","","","","The additional offset from UTC that is currently in …","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","The IANA TZDB identifier (ex: America/New_York)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,0,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,0,3,0,0,3,3,3,3,3,3,3,3,0,3,3,3,0,3,0,3,0,3,0,3,0,3,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,0,3,0,3,0,3,0,3,0,3,0,3,0,3,0,3,0,0,3,3,3,3,3,3,3,3,3,3,3,3,0,3,0,3,0,3,0,3,0,3,0,3,0,3,0,3,0,0,3,3,3,3,0,3,0,3,0,0,0,3,0,3,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,0,3,0,3,0,3,0,3,0,0,3,0,0,3,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,0,3,0,3,0,3,0,14,15,3,3,3,3,15,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],1],[[],2],[[]],[[]],[3,3],[[]],[[],2],[[3,3],4],[[],4],[[3,5],6],[[3,5],6],[[]],[[],3],[1,[[7,[3]]]],[[3,8]],[[]],[3,1],[[3,9],10],[[3,11],10],[[3,9]],[[3,11]],[[]],[[],12],[[],7],[[],7],[[],13],[[],1],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"c":[],"p":[[15,"str"],[3,"Duration"],[4,"Tz"],[15,"bool"],[3,"Formatter"],[6,"Result"],[4,"Result"],[8,"Hasher"],[3,"NaiveDate"],[4,"LocalResult"],[3,"NaiveDateTime"],[3,"String"],[3,"TypeId"],[8,"OffsetName"],[8,"OffsetComponents"]]},\ -"ciborium":{"doc":"Welcome to Ciborium!","t":"NNNNNNNNNELLOLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLFLALLALLLLAENNNNLLLLLLLLLFLLLLLLLENNLLLLLLLLLFLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNDNENDNNNNNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["Array","Bool","Bytes","Float","Integer","Map","Null","Tag","Text","Value","borrow","borrow_mut","cbor","clone","clone_into","de","deserialize","deserialized","eq","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_reader","into","into_writer","partial_cmp","ser","serialize","serialized","tag","to_owned","try_from","try_into","type_id","value","Error","Io","RecursionLimitExceeded","Semantic","Syntax","borrow","borrow_mut","custom","fmt","fmt","from","from","from","from","from_reader","into","provide","semantic","to_string","try_from","try_into","type_id","Error","Io","Value","borrow","borrow_mut","custom","fmt","fmt","from","from","from","into","into_writer","provide","to_string","try_from","try_into","type_id","Accepted","Captured","Required","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","cmp","cmp","deserialize","deserialize","deserialize","eq","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","from","hash","hash","hash","into","into","into","partial_cmp","partial_cmp","partial_cmp","serialize","serialize","serialize","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","Array","Bool","Bytes","CanonicalValue","Custom","Error","Float","Integer","Integer","Map","Null","Tag","Text","Value","as_array","as_array_mut","as_bool","as_bytes","as_bytes_mut","as_float","as_integer","as_map","as_map_mut","as_tag","as_tag_mut","as_text","as_text_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","canonical_cmp","clone","clone","clone_into","clone_into","cmp","cmp","custom","custom","deserialize","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","into","into","into","into_array","into_bool","into_bytes","into_float","into_integer","into_map","into_tag","into_text","is_array","is_bool","is_bytes","is_float","is_integer","is_map","is_null","is_tag","is_text","partial_cmp","partial_cmp","provide","serialize","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"ciborium"],[58,"ciborium::de"],[80,"ciborium::ser"],[98,"ciborium::tag"],[155,"ciborium::value"]],"d":["An array","A boolean","Bytes","A float","An integer","A map","Null","Tag","A string","A representation of a dynamic CBOR value that can handled …","","","Build a Value conveniently.","","","Serde deserialization support for CBOR","","Deserializes the Value into an object","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","Deserializes as CBOR from a type with …","Calls U::from(self).","Serializes as CBOR into a type with impl ciborium_io::Write","","Serde serialization support for CBOR","","Serializes an object into a Value","Contains helper types for dealing with CBOR tags","","","","","A dynamic CBOR value","An error occurred during deserialization","An error occurred while reading bytes","The input caused serde to recurse too much","An error occurred while processing a parsed value","An error occurred while parsing bytes","","","","","","Returns the argument unchanged.","","","","Deserializes as CBOR from a type with …","Calls U::from(self).","","A helper method for composing a semantic error","","","","","An error occurred during serialization","An error occurred while writing bytes","An error indicating a value that cannot be serialized","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","Serializes as CBOR into a type with impl ciborium_io::Write","","","","","","An optional CBOR tag","An optional CBOR tag and its data item","A required CBOR tag","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","An array","A boolean","Bytes","A CBOR Value that impl Ord and Eq to allow sorting of …","A custom error string produced by serde","The error when serializing to/from a Value","A float","An abstract integer value","An integer","A map","Null","Tag","A string","A representation of a dynamic CBOR value that can handled …","If the Value is an Array, returns a reference to the …","If the Value is an Array, returns a mutable reference to …","If the Value is a Bool, returns a copy of the associated …","If the Value is a Bytes, returns a reference to the …","If the Value is a Bytes, returns a mutable reference to …","If the Value is a Float, returns a reference to the …","If the Value is a Integer, returns a reference to the …","If the Value is a Map, returns a reference to the …","If the Value is a Map, returns a mutable reference to the …","If the Value is a Tag, returns the associated tag value …","If the Value is a Tag, returns the associated tag value …","If the Value is a Text, returns a reference to the …","If the Value is a Text, returns a mutable reference to the …","","","","","","","Compare two integers as if we were to serialize them, but …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","If the Value is a Array, returns a the associated …","If the Value is a Bool, returns a the associated bool data …","If the Value is a Bytes, returns a the associated Vec<u8> …","If the Value is a Float, returns a the associated f64 data …","If the Value is a Integer, returns a the associated Integer…","If the Value is a Map, returns a the associated …","If the Value is a Tag, returns a the associated pair of u64…","If the Value is a String, returns a the associated String …","Returns true if the Value is an Array. Returns false …","Returns true if the Value is a Bool. Returns false …","Returns true if the Value is a Bytes. Returns false …","Returns true if the Value is a Float. Returns false …","Returns true if the Value is an Integer. Returns false …","Returns true if the Value is a Map. Returns false …","Returns true if the Value is a Null. Returns false …","Returns true if the Value is a Tag. Returns false …","Returns true if the Value is a Text. Returns false …","","","","","","","","","","","","","","","","","",""],"i":[1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,1,1,0,1,1,1,1,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,0,30,30,30,30,30,30,30,0,34,34,34,34,34,34,34,34,34,34,34,0,34,34,34,34,34,0,0,0,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,1,1,1,0,5,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,20,19,5,20,19,5,19,20,19,20,19,20,19,5,5,20,20,19,20,19,20,19,5,5,20,20,19,19,19,19,19,19,19,19,19,19,19,5,19,20,19,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,20,19,5,20,20,19,5,20,19,19,19,5,20,19,5,20,19,5],"f":[0,0,0,0,0,0,0,0,0,0,[[]],[[]],0,[1,1],[[]],0,[2,[[3,[1]]]],[1,[[3,[4,5]]]],[[1,1],6],[[1,7],8],[6,1],[[[9,[1]]],1],[10,1],[11,1],[12,1],[13,1],[[[13,[1]]],1],[14,1],[15,1],[16,1],[[]],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[[[9,[23]]],1],[[[13,[23]]],1],[24,1],[25,1],[23,1],[26,1],[9,1],[27,1],[28,[[3,[29,30]]]],[[]],[[[0,[31,32]],33],[[3,[34]]]],[[1,1],[[36,[35]]]],0,[[1,37],3],[[[0,[31,32]]],[[3,[1,5]]]],0,[[]],[[],3],[[],3],[[],38],0,0,0,0,0,0,[[]],[[]],[39,[[30,[40]]]],[[[30,[40]],7],8],[[[30,[40]],7],8],[[]],[[],30],[41,30],[42],[28,[[3,[29,30]]]],[[]],[43],[[[45,[[36,[44]]]],[45,[26]]],30],[[],26],[[],3],[[],3],[[],38],0,0,0,[[]],[[]],[39,[[34,[40]]]],[[[34,[40]],7],8],[[[34,[40]],7],8],[[]],[42],[[],34],[[]],[[[0,[31,32]],33],[[3,[34]]]],[43],[[],26],[[],3],[[],3],[[],38],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[[47,[46]]],[[47,[46]]]],[[[48,[46]]],[[48,[46]]]],[[[49,[46]]],[[49,[46]]]],[[]],[[]],[[]],[[[47,[50]],[47,[50]]],35],[[[48,[50]],[48,[50]]],35],[[[49,[50]],[49,[50]]],35],[2,[[3,[[47,[4]]]]]],[2,[[3,[[48,[4]]]]]],[2,[[3,[[49,[4]]]]]],[[[47,[51]],[47,[51]]],6],[[[48,[51]],[48,[51]]],6],[[[49,[51]],[49,[51]]],6],[[],6],[[],6],[[],6],[[[47,[40]],7],8],[[[48,[40]],7],8],[[[49,[40]],7],8],[[]],[[]],[[]],[[[47,[52]],53]],[[[48,[52]],53]],[[[49,[52]],53]],[[]],[[]],[[]],[[[47,[54]],[47,[54]]],[[36,[35]]]],[[[48,[54]],[48,[54]]],[[36,[35]]]],[[[49,[54]],[49,[54]]],[[36,[35]]]],[[[47,[32]],37],3],[[[48,[32]],37],3],[[[49,[32]],37],3],[[]],[[]],[[]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],38],[[],38],[[],38],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,[[36,[[13,[1]]]]]],[1,[[36,[[13,[1]]]]]],[1,[[36,[6]]]],[1,[[36,[[13,[23]]]]]],[1,[[36,[[13,[23]]]]]],[1,[[36,[15]]]],[1,[[36,[19]]]],[1,[[36,[13]]]],[1,[[36,[13]]]],[1,36],[1,36],[1,[[36,[27]]]],[1,[[36,[26]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[19,19],35],[20,20],[19,19],[[]],[[]],[[20,20],35],[[19,19],35],[39,5],[39,5],[2,[[3,[20]]]],[[20,20],6],[[19,19],6],[[],6],[[],6],[[20,7],8],[[19,7],8],[[5,7],8],[[5,7],8],[[]],[1,20],[18,19],[22,19],[23,19],[11,19],[10,19],[55,19],[21,19],[12,19],[17,19],[44,19],[[]],[[]],[[19,53]],[[]],[[]],[[]],[1,[[3,[[13,[1]],1]]]],[1,[[3,[6,1]]]],[1,[[3,[[13,[23]],1]]]],[1,[[3,[15,1]]]],[1,[[3,[19,1]]]],[1,[[3,[13,1]]]],[1,[[3,[1]]]],[1,[[3,[26,1]]]],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[[20,20],[[36,[35]]]],[[19,19],[[36,[35]]]],[43],[[20,37],3],[[]],[[]],[[],26],[[],3],[25,[[3,[19]]]],[14,[[3,[19]]]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],38],[[],38],[[],38]],"c":[],"p":[[4,"Value"],[8,"Deserializer"],[4,"Result"],[8,"Deserialize"],[4,"Error"],[15,"bool"],[3,"Formatter"],[6,"Result"],[15,"slice"],[15,"i64"],[15,"u64"],[15,"i16"],[3,"Vec"],[15,"i128"],[15,"f64"],[15,"f32"],[15,"i8"],[15,"u32"],[3,"Integer"],[3,"CanonicalValue"],[15,"i32"],[15,"u16"],[15,"u8"],[15,"char"],[15,"u128"],[3,"String"],[15,"str"],[8,"Read"],[8,"DeserializeOwned"],[4,"Error"],[8,"Sized"],[8,"Serialize"],[8,"Write"],[4,"Error"],[4,"Ordering"],[4,"Option"],[8,"Serializer"],[3,"TypeId"],[8,"Display"],[8,"Debug"],[4,"Error"],[15,"never"],[3,"Demand"],[15,"usize"],[8,"Into"],[8,"Clone"],[3,"Captured"],[3,"Required"],[3,"Accepted"],[8,"Ord"],[8,"PartialEq"],[8,"Hash"],[8,"Hasher"],[8,"PartialOrd"],[15,"isize"]]},\ +"ciborium":{"doc":"Welcome to Ciborium!","t":"NNNNNNNNNELLOLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLFLALLALLLLAENNNNLLLLLLLLLFLLLLLLLENNLLLLLLLLLFLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNDNENDNNNNNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["Array","Bool","Bytes","Float","Integer","Map","Null","Tag","Text","Value","borrow","borrow_mut","cbor","clone","clone_into","de","deserialize","deserialized","eq","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_reader","into","into_writer","partial_cmp","ser","serialize","serialized","tag","to_owned","try_from","try_into","type_id","value","Error","Io","RecursionLimitExceeded","Semantic","Syntax","borrow","borrow_mut","custom","fmt","fmt","from","from","from","from","from_reader","into","provide","semantic","to_string","try_from","try_into","type_id","Error","Io","Value","borrow","borrow_mut","custom","fmt","fmt","from","from","from","into","into_writer","provide","to_string","try_from","try_into","type_id","Accepted","Captured","Required","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","cmp","cmp","deserialize","deserialize","deserialize","eq","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","from","from","from","hash","hash","hash","into","into","into","partial_cmp","partial_cmp","partial_cmp","serialize","serialize","serialize","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","Array","Bool","Bytes","CanonicalValue","Custom","Error","Float","Integer","Integer","Map","Null","Tag","Text","Value","as_array","as_array_mut","as_bool","as_bytes","as_bytes_mut","as_float","as_integer","as_map","as_map_mut","as_tag","as_tag_mut","as_text","as_text_mut","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","canonical_cmp","clone","clone","clone_into","clone_into","cmp","cmp","custom","custom","deserialize","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","into","into","into","into_array","into_bool","into_bytes","into_float","into_integer","into_map","into_tag","into_text","is_array","is_bool","is_bytes","is_float","is_integer","is_map","is_null","is_tag","is_text","partial_cmp","partial_cmp","provide","serialize","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"ciborium"],[58,"ciborium::de"],[80,"ciborium::ser"],[98,"ciborium::tag"],[155,"ciborium::value"]],"d":["An array","A boolean","Bytes","A float","An integer","A map","Null","Tag","A string","A representation of a dynamic CBOR value that can handled …","","","Build a Value conveniently.","","","Serde deserialization support for CBOR","","Deserializes the Value into an object","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","Deserializes as CBOR from a type with …","Calls U::from(self).","Serializes as CBOR into a type with impl ciborium_io::Write","","Serde serialization support for CBOR","","Serializes an object into a Value","Contains helper types for dealing with CBOR tags","","","","","A dynamic CBOR value","An error occurred during deserialization","An error occurred while reading bytes","The input caused serde to recurse too much","An error occurred while processing a parsed value","An error occurred while parsing bytes","","","","","","","","","Returns the argument unchanged.","Deserializes as CBOR from a type with …","Calls U::from(self).","","A helper method for composing a semantic error","","","","","An error occurred during serialization","An error occurred while writing bytes","An error indicating a value that cannot be serialized","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","Serializes as CBOR into a type with impl ciborium_io::Write","","","","","","An optional CBOR tag","An optional CBOR tag and its data item","A required CBOR tag","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","An array","A boolean","Bytes","A CBOR Value that impl Ord and Eq to allow sorting of …","A custom error string produced by serde","The error when serializing to/from a Value","A float","An abstract integer value","An integer","A map","Null","Tag","A string","A representation of a dynamic CBOR value that can handled …","If the Value is an Array, returns a reference to the …","If the Value is an Array, returns a mutable reference to …","If the Value is a Bool, returns a copy of the associated …","If the Value is a Bytes, returns a reference to the …","If the Value is a Bytes, returns a mutable reference to …","If the Value is a Float, returns a reference to the …","If the Value is a Integer, returns a reference to the …","If the Value is a Map, returns a reference to the …","If the Value is a Map, returns a mutable reference to the …","If the Value is a Tag, returns the associated tag value …","If the Value is a Tag, returns the associated tag value …","If the Value is a Text, returns a reference to the …","If the Value is a Text, returns a mutable reference to the …","","","","","","","Compare two integers as if we were to serialize them, but …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","If the Value is a Array, returns a the associated …","If the Value is a Bool, returns a the associated bool data …","If the Value is a Bytes, returns a the associated Vec<u8> …","If the Value is a Float, returns a the associated f64 data …","If the Value is a Integer, returns a the associated Integer…","If the Value is a Map, returns a the associated …","If the Value is a Tag, returns a the associated pair of u64…","If the Value is a String, returns a the associated String …","Returns true if the Value is an Array. Returns false …","Returns true if the Value is a Bool. Returns false …","Returns true if the Value is a Bytes. Returns false …","Returns true if the Value is a Float. Returns false …","Returns true if the Value is an Integer. Returns false …","Returns true if the Value is a Map. Returns false …","Returns true if the Value is a Null. Returns false …","Returns true if the Value is a Tag. Returns false …","Returns true if the Value is a Text. Returns false …","","","","","","","","","","","","","","","","","",""],"i":[1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,1,1,0,1,1,1,1,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,0,30,30,30,30,30,30,30,0,34,34,34,34,34,34,34,34,34,34,34,0,34,34,34,34,34,0,0,0,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,47,48,49,1,1,1,0,5,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,14,13,5,14,13,5,13,14,13,14,13,14,13,5,5,14,14,13,14,13,14,13,5,5,14,14,13,13,13,13,13,13,13,13,13,13,13,5,13,14,13,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,14,13,5,14,14,13,5,14,13,13,13,5,14,13,5,14,13,5],"f":[0,0,0,0,0,0,0,0,0,0,[[]],[[]],0,[1,1],[[]],0,[2,[[3,[1]]]],[1,[[3,[4,5]]]],[[1,1],6],[[1,7],8],[[[9,[1]]],1],[10,1],[9,1],[11,1],[12,1],[13,1],[14,1],[15,1],[[[16,[1]]],1],[17,1],[[]],[18,1],[19,1],[[[9,[20]]],1],[6,1],[20,1],[21,1],[22,1],[23,1],[24,1],[[[16,[20]]],1],[25,1],[16,1],[26,1],[27,1],[28,[[3,[29,30]]]],[[]],[[[0,[31,32]],33],[[3,[34]]]],[[1,1],[[36,[35]]]],0,[[1,37],3],[[[0,[31,32]]],[[3,[1,5]]]],0,[[]],[[],3],[[],3],[[],38],0,0,0,0,0,0,[[]],[[]],[39,[[30,[40]]]],[[[30,[40]],7],8],[[[30,[40]],7],8],[41,30],[[],30],[42],[[]],[28,[[3,[29,30]]]],[[]],[43],[[[45,[[36,[44]]]],[45,[11]]],30],[[],11],[[],3],[[],3],[[],38],0,0,0,[[]],[[]],[39,[[34,[40]]]],[[[34,[40]],7],8],[[[34,[40]],7],8],[[],34],[[]],[42],[[]],[[[0,[31,32]],33],[[3,[34]]]],[43],[[],11],[[],3],[[],3],[[],38],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[[47,[46]]],[[47,[46]]]],[[[48,[46]]],[[48,[46]]]],[[[49,[46]]],[[49,[46]]]],[[]],[[]],[[]],[[[47,[50]],[47,[50]]],35],[[[48,[50]],[48,[50]]],35],[[[49,[50]],[49,[50]]],35],[2,[[3,[[47,[4]]]]]],[2,[[3,[[48,[4]]]]]],[2,[[3,[[49,[4]]]]]],[[[47,[51]],[47,[51]]],6],[[[48,[51]],[48,[51]]],6],[[[49,[51]],[49,[51]]],6],[[],6],[[],6],[[],6],[[[47,[40]],7],8],[[[48,[40]],7],8],[[[49,[40]],7],8],[[]],[[]],[[]],[[[47,[52]],53]],[[[48,[52]],53]],[[[49,[52]],53]],[[]],[[]],[[]],[[[47,[54]],[47,[54]]],[[36,[35]]]],[[[48,[54]],[48,[54]]],[[36,[35]]]],[[[49,[54]],[49,[54]]],[[36,[35]]]],[[[47,[32]],37],3],[[[48,[32]],37],3],[[[49,[32]],37],3],[[]],[[]],[[]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],38],[[],38],[[],38],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,[[36,[[9,[1]]]]]],[1,[[36,[[9,[1]]]]]],[1,[[36,[6]]]],[1,[[36,[[9,[20]]]]]],[1,[[36,[[9,[20]]]]]],[1,[[36,[17]]]],[1,[[36,[13]]]],[1,[[36,[9]]]],[1,[[36,[9]]]],[1,36],[1,36],[1,[[36,[24]]]],[1,[[36,[11]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[13,13],35],[14,14],[13,13],[[]],[[]],[[14,14],35],[[13,13],35],[39,5],[39,5],[2,[[3,[14]]]],[[14,14],6],[[13,13],6],[[],6],[[],6],[[14,7],8],[[13,7],8],[[5,7],8],[[5,7],8],[[]],[1,14],[10,13],[15,13],[18,13],[12,13],[55,13],[[]],[44,13],[27,13],[19,13],[20,13],[26,13],[[]],[[13,53]],[[]],[[]],[[]],[1,[[3,[[9,[1]],1]]]],[1,[[3,[6,1]]]],[1,[[3,[[9,[20]],1]]]],[1,[[3,[17,1]]]],[1,[[3,[13,1]]]],[1,[[3,[9,1]]]],[1,[[3,[1]]]],[1,[[3,[11,1]]]],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[[14,14],[[36,[35]]]],[[13,13],[[36,[35]]]],[43],[[14,37],3],[[]],[[]],[[],11],[[],3],[22,[[3,[13]]]],[25,[[3,[13]]]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],38],[[],38],[[],38]],"c":[],"p":[[4,"Value"],[8,"Deserializer"],[4,"Result"],[8,"Deserialize"],[4,"Error"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"Vec"],[15,"i32"],[3,"String"],[15,"u64"],[3,"Integer"],[3,"CanonicalValue"],[15,"i8"],[15,"slice"],[15,"f64"],[15,"i64"],[15,"u32"],[15,"u8"],[15,"char"],[15,"u128"],[15,"f32"],[15,"str"],[15,"i128"],[15,"i16"],[15,"u16"],[8,"Read"],[8,"DeserializeOwned"],[4,"Error"],[8,"Sized"],[8,"Serialize"],[8,"Write"],[4,"Error"],[4,"Ordering"],[4,"Option"],[8,"Serializer"],[3,"TypeId"],[8,"Display"],[8,"Debug"],[4,"Error"],[15,"never"],[3,"Demand"],[15,"usize"],[8,"Into"],[8,"Clone"],[3,"Captured"],[3,"Required"],[3,"Accepted"],[8,"Ord"],[8,"PartialEq"],[8,"Hash"],[8,"Hasher"],[8,"PartialOrd"],[15,"isize"]]},\ "ciborium_io":{"doc":"Simple, Low-level I/O traits","t":"QQIIKKK","n":["Error","Error","Read","Write","flush","read_exact","write_all"],"q":[[0,"ciborium_io"]],"d":["The error type","The error type","A trait indicating a type that can read bytes","A trait indicating a type that can write bytes","Flushes all output","Reads exactly data.len() bytes or fails","Writes all bytes from data or fails"],"i":[4,5,0,0,5,4,5],"f":[0,0,0,0,[[],1],[[[3,[2]]],1],[[[3,[2]]],1]],"c":[],"p":[[4,"Result"],[15,"u8"],[15,"slice"],[8,"Read"],[8,"Write"]]},\ "ciborium_ll":{"doc":"Low level CBOR parsing tools","t":"NNNDDENENNNNDDNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLLLRRRRRR","n":["Array","Break","Bytes","Decoder","Encoder","Error","Float","Header","Io","Map","Negative","Positive","Segment","Segments","Simple","Syntax","Tag","Text","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes","bytes","clone","clone_into","eq","flush","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","left","offset","pull","pull","pull","push","push","read_exact","simple","tag","text","text","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","write_all","FALSE","NULL","TRUE","UNDEFINED","BIGNEG","BIGPOS"],"q":[[0,"ciborium_ll"],[88,"ciborium_ll::simple"],[92,"ciborium_ll::tag"]],"d":["An array item","The “break” value","A bytes item","A decoder for deserializing CBOR items","An encoder for serializing CBOR items","An error that occurred while decoding","A floating point value","A semantic representation of a CBOR item header","An error occurred while reading bytes","An map item","A negative integer","A positive integer","A CBOR segment","A sequence of CBOR segments","A “simple” value","An error occurred while parsing bytes","A tag","A text item","","","","","","","","","","","","","Process an incoming bytes item","Serialize a byte slice as CBOR","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Gets the number of unprocessed bytes","Gets the current byte offset into the stream","Pulls the next header from the input","Gets the next parsed chunk within the segment","Gets the next segment in the stream","Push a single header into the input buffer","Push a Header to the wire","","Simple value constants","Tag constants","Process an incoming text item","Serialize a string slice as CBOR","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[12,12,12,0,0,0,12,0,15,12,12,12,0,0,12,15,12,12,2,7,19,5,15,12,2,7,19,5,15,12,2,7,12,12,12,7,15,12,2,2,2,7,7,7,19,5,15,15,15,12,2,7,19,5,15,12,19,2,2,19,5,2,7,2,0,0,2,7,12,2,7,19,5,15,12,2,7,19,5,15,12,2,7,19,5,15,12,7,0,0,0,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[2,[1]],[4,[3]]],[[5,[1,0]]]],[[[7,[6]],[9,[8]],[10,[[4,[3]]]]],11],[12,12],[[]],[[12,12],13],[[[7,[6]]],11],[[[15,[14]],16],17],[[12,16],17],[18],[[]],[1,[[2,[1]]]],[[]],[18],[6,[[7,[6]]]],[[]],[[]],[18],[[],15],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[19,[1,0]]],3],[[[2,[1]]],3],[[[2,[1]]],[[11,[12,15]]]],[[[19,[1,0]],[9,[8]]],[[11,[4,15]]]],[[[5,[1,0]]],[[11,[[4,[[19,[1,0]]]],15]]]],[[[2,[1]],12]],[[[7,[6]],12],11],[[[2,[1]],[9,[8]]],11],0,0,[[[2,[1]],[4,[3]]],[[5,[1,0]]]],[[[7,[6]],20,[10,[[4,[3]]]]],11],[[]],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],21],[[],21],[[],21],[[],21],[[],21],[[],21],[[[7,[6]],[9,[8]]],11],0,0,0,0,0,0],"c":[],"p":[[8,"Read"],[3,"Decoder"],[15,"usize"],[4,"Option"],[3,"Segments"],[8,"Write"],[3,"Encoder"],[15,"u8"],[15,"slice"],[8,"Into"],[4,"Result"],[4,"Header"],[15,"bool"],[8,"Debug"],[4,"Error"],[3,"Formatter"],[6,"Result"],[15,"never"],[3,"Segment"],[15,"str"],[3,"TypeId"]]},\ "comfy_table":{"doc":"","t":"NNENNNNNNNNDEDNEDDEENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNDNDENNNNNNNNNNNENLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLALLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMRRRRRRRRRRRRRRR","n":["Absolute","AnsiValue","Attribute","Black","Blue","Bold","BottomBorder","BottomBorderIntersections","BottomLeftCorner","BottomRightCorner","Boundaries","Cell","CellAlignment","Cells","Center","Color","Column","ColumnCellIter","ColumnConstraint","ContentArrangement","ContentWidth","CrossedOut","Cyan","DarkBlue","DarkCyan","DarkGreen","DarkGrey","DarkMagenta","DarkRed","DarkYellow","Dim","Disabled","DoubleUnderlined","Dynamic","DynamicFullWidth","Encircled","Fixed","Fraktur","Framed","Green","Grey","HeaderLines","Hidden","Hidden","HorizontalLines","Italic","Left","LeftBorder","LeftBorderIntersections","LeftHeaderIntersection","LowerBoundary","Magenta","MiddleHeaderIntersections","MiddleIntersections","NoBlink","NoBold","NoHidden","NoItalic","NoReverse","NoUnderline","NormalIntensity","NotCrossedOut","NotFramedOrEncircled","NotOverLined","OverLined","Percentage","RapidBlink","Red","Reset","Reset","Reverse","Rgb","Right","RightBorder","RightBorderIntersections","RightHeaderIntersection","Row","SlowBlink","Table","TableComponent","TopBorder","TopBorderIntersections","TopLeftCorner","TopRightCorner","Undercurled","Underdashed","Underdotted","Underlined","UpperBoundary","VerticalLines","White","Width","Yellow","add_attribute","add_attributes","add_cell","add_row","add_row_if","add_rows","add_rows_if","apply_modifier","bg","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cell_count","cell_iter","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","column","column_cells_iter","column_cells_with_header_iter","column_iter","column_iter_mut","column_max_content_widths","column_mut","constraint","content","content_arrangement","current_style_as_preset","default","default","discover_columns","enforce_styling","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","fg","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","force_no_tty","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","header","index","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","is_hidden","is_tty","iter","lines","load_preset","max_height","modifiers","new","new","new","new","next","padding_width","partial_cmp","partial_cmp","presets","remove_constraint","remove_style","row","row_iter","row_iter_mut","row_mut","set_alignment","set_cell_alignment","set_constraint","set_constraints","set_content_arrangement","set_delimiter","set_delimiter","set_delimiter","set_header","set_padding","set_style","set_width","should_style","style","style_text_only","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","trim_fmt","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","use_stderr","width","b","g","r","lower","upper","UTF8_ROUND_CORNERS","UTF8_SOLID_INNER_BORDERS","ASCII_BORDERS_ONLY","ASCII_BORDERS_ONLY_CONDENSED","ASCII_FULL","ASCII_FULL_CONDENSED","ASCII_HORIZONTAL_ONLY","ASCII_MARKDOWN","ASCII_NO_BORDERS","NOTHING","UTF8_BORDERS_ONLY","UTF8_FULL","UTF8_FULL_CONDENSED","UTF8_HORIZONTAL_ONLY","UTF8_NO_BORDERS"],"q":[[0,"comfy_table"],[314,"comfy_table::Color"],[317,"comfy_table::ColumnConstraint"],[319,"comfy_table::modifiers"],[321,"comfy_table::presets"]],"d":["Enforce a absolute width for a column.","An ANSI color. See 256 colors - cheat sheet for more info.","Represents an attribute.","Black color.","Light blue color.","Increases the text intensity.","","","","","Specify both, an upper and a lower boundary.","A stylable table cell with content.","This can be set on columns and cells.","A simple wrapper type for a Vec<Cell>.","","Represents a color.","A representation of a table’s column. Useful for styling …","An iterator over cells of a specific column. A dedicated …","A Constraint can be added to a columns.","Specify how comfy_table should arrange the content in your …","Force the column to be as long as it’s content. Use with …","Crosses the text.","Light cyan color.","Dark blue color.","Dark cyan color.","Dark green color.","Dark grey color.","Dark magenta color.","Dark red color.","Dark yellow color.","Decreases the text intensity.","Don’t do any content arrangement. Tables with this mode …","Double underlines the text.","Dynamically determine the width of columns in regard to …","This is mode is the same as the ContentArrangement::Dynamic…","Makes the text encircled.","A fixed amount of characters.","Sets the Fraktur typeface.","Makes the text framed.","Light green color.","Grey color.","","Hides the text (also known as Conceal).","This will completely hide a column.","","Emphasises the text.","","","","","Specify a lower boundary, either fixed or as percentage of …","Light magenta color.","","","Turns off the text blinking (SlowBlink or RapidBlink).","Turns off the Bold attribute. - Inconsistent - Prefer to …","Turns off the Hidden attribute.","Turns off the Italic attribute.","Turns off the Reverse attribute.","Turns off the Underlined attribute.","Switches the text back to normal intensity (no bold, …","Turns off the CrossedOut attribute.","Turns off the Frame and Encircled attributes.","Turns off the OverLined attribute.","Draws a line at the top of the text.","A width equivalent to a certain percentage of the …","Makes the text blinking (>= 150 per minute).","Light red color.","Resets all the attributes.","Resets the terminal color.","Swaps foreground and background colors.","An RGB color. See RGB color model for more info.","","","","","Each row contains Cells and can be added to a Table.","Makes the text blinking (< 150 per minute).","This is the main interface for building a table. Each …","All configurable table components. A character can be …","","","","","Undercurls the text.","Underdashes the text.","Underdots the text.","Underlines the text.","Specify a upper boundary, either fixed or as percentage of …","","White color.","","Light yellow color.","Add a styling attribute to the content cell. Those can be …","Same as add_attribute, but you can pass a vector of …","Add a cell to the row.","Add a new row to the table.","Add a new row to the table if the predicate evaluates to …","Add multiple rows to the table.","Add multiple rows to the table if the predicate evaluates …","Modify a preset with a modifier string from modifiers.","Set the background color for this cell.","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the amount of cells on this row.","Returns an iterator over all cells of this row","","","","","","","","","","","","","","","","","","","","","Get a reference to a specific column.","Get a mutable iterator over cells of a column. The …","Get a mutable iterator over cells of a column, including …","Iterator over all columns","Get a mutable iterator over all columns.","Return a vector representing the maximum amount of …","Get a mutable reference to a specific column.","Get the constraint that is used for this column.","Return a copy of the content contained in this cell.","Get the current content arrangement of the table.","Returns the current style as a preset string.","","","Calling this might be necessary if you add new cells to …","Enforce terminal styling.","","","","","","","","","","","Set the foreground text color for this cell.","","","","","","","","","","","","","In case you are sure you don’t want export tables to a …","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","The index of the column","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Returns wheather the columns is hidden via …","Returns whether the table will be handled as if it’s …","","This is an alternative to fmt, but rather returns an …","This function creates a TableStyle from a given preset …","Truncate content of cells which occupies more than X lines …","Contains modifiers, that can be used to alter certain …","Create a new Cell","","","Create a new table with default ASCII styling.","","Convenience helper that returns the total width of the …","","","This module provides styling presets for tables. Every …","Remove any constraint on this column","Remove the style for a specific component of the table. By …","Reference to a specific row","Iterator over all rows","Get a mutable iterator over all rows.","Mutable reference to a specific row","Set the alignment of content for this cell.","Set the alignment for content inside of cells for this …","Constraints allow to influence the auto-adjustment …","Convenience method to set a ColumnConstraint for all …","Specify how Comfy Table should arrange the content in your …","Set the delimiter used to split text for this cell. …","Set the delimiter used to split text for this column’s …","Set the delimiter used to split text in all cells.","Set the header row of the table. This is usually the title …","Set the padding for all cells of this column.","Define the char that will be used to draw a specific …","Enforce a max width that should be used in combination …","Returns whether the content of this table should be styled …","Get a copy of the char that’s currently used for drawing …","By default, the whole content of a cells will be styled. …","","","","","","","","","","","This is an alternative fmt function, which simply removes …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Use this function to check whether stderr is a tty.","Get the expected width of the table.","","","","","","A modifier, that when applied will convert the outer …","A modifier, that when applied will convert the inner …","Just like ASCII_FULL, but without vertical/horizontal …","Just like ASCII_BORDERS_ONLY, but without spacing between …","The default style for tables.","Just like ASCII_FULL, but without dividers between rows.","Just like ASCII_FULL, but without vertical/horizontal …","Markdown like table styles.","Just like ASCII_FULL, but without any borders.","Don’t draw any borders or other lines. Useful, if you …","Just like the UTF8_FULL style, but without …","The UTF8 enabled version of the default style for tables. …","Default UTF8 style, but without dividers between rows.","Only display vertical lines.","Default UTF8 style, but without any borders."],"i":[14,10,0,10,10,2,17,17,17,17,14,0,0,0,13,0,0,0,0,0,14,2,10,10,10,10,10,10,10,10,2,16,2,16,16,2,15,2,2,10,10,17,2,14,17,2,13,17,17,17,14,10,17,17,2,2,2,2,2,2,2,2,2,2,2,15,2,10,2,10,2,10,13,17,17,17,0,2,0,0,17,17,17,17,2,2,2,2,14,17,10,0,10,1,1,4,5,5,5,5,5,1,28,21,1,19,4,2,13,10,14,15,16,17,5,28,21,1,19,4,2,13,10,14,15,16,17,5,4,4,1,4,2,13,10,14,15,16,17,1,4,2,13,10,14,15,16,17,2,10,5,5,5,5,5,5,5,19,1,5,5,4,5,5,5,2,10,14,15,17,2,10,14,15,17,1,1,19,4,2,13,10,14,15,16,17,5,5,5,28,28,21,1,1,1,19,4,4,2,13,10,14,15,16,17,5,2,10,17,5,19,28,21,1,19,4,2,13,10,14,15,16,17,5,21,19,5,17,5,5,4,0,1,19,4,5,21,19,2,10,0,19,5,5,5,5,5,1,19,19,5,5,1,19,5,5,19,5,5,5,5,5,1,4,2,13,10,14,15,16,17,5,5,28,21,1,19,4,2,13,10,14,15,16,17,5,28,21,1,19,4,2,13,10,14,15,16,17,5,28,21,1,19,4,2,13,10,14,15,16,17,5,5,5,36,36,36,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],1],[[1,[3,[2]]],1],[[4,1],4],[[5,[6,[4]]],5],[[5,7,[6,[4]]],5],[[5,8],5],[[5,7,8],5],[[5,9],5],[[1,10],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[4,11],[4,[[12,[1]]]],[1,1],[4,4],[2,2],[13,13],[10,10],[14,14],[15,15],[16,16],[17,17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[2,2],18],[[10,10],18],[[5,11],[[20,[19]]]],[[5,11],21],0,[5,[[12,[19]]]],[5,[[22,[19]]]],[5,[[3,[23]]]],[[5,11],[[20,[19]]]],[19,[[20,[14]]]],[1,24],[5,16],[5,24],[[],4],[[],5],[5],[5,5],[[2,2],25],[[10,10],25],[[14,14],25],[[15,15],25],[[17,17],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[1,10],1],[[1,26],27],[[19,26],27],[[4,26],27],[[2,26],27],[[13,26],27],[[10,26],27],[[14,26],27],[[15,26],27],[[16,26],27],[[17,26],27],[[5,26],27],[[5,26],27],[5,5],[[]],[8,28],[[]],[29,1],[30],[[]],[[]],[[]],[[[6,[28]]],4],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[2,31]],[[10,31]],[[17,31]],[5,[[20,[4]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[19,25],[5,25],0,[5,32],[[5,9],5],[[4,11],4],0,[29,1],[11,19],[[],4],[[],5],[21,[[20,[[20,[1]]]]]],[19,23],[[2,2],[[20,[18]]]],[[10,10],[[20,[18]]]],0,[19,19],[[5,17],5],[[5,11],[[20,[4]]]],[5,[[12,[4]]]],[5,[[22,[4]]]],[[5,11],[[20,[4]]]],[[1,13],1],[[19,13]],[[19,14],19],[[5,8],5],[[5,16],5],[[1,33],1],[[19,33],19],[[5,33],5],[[5,[6,[4]]],5],[19,19],[[5,17,33],5],[[5,23],5],[5,25],[[5,17],[[20,[33]]]],[5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],24],[5,24],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[5,5],[5,[[20,[23]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"c":[],"p":[[3,"Cell"],[4,"Attribute"],[3,"Vec"],[3,"Row"],[3,"Table"],[8,"Into"],[8,"Fn"],[8,"IntoIterator"],[15,"str"],[4,"Color"],[15,"usize"],[3,"Iter"],[4,"CellAlignment"],[4,"ColumnConstraint"],[4,"Width"],[4,"ContentArrangement"],[4,"TableComponent"],[4,"Ordering"],[3,"Column"],[4,"Option"],[3,"ColumnCellIter"],[3,"IterMut"],[15,"u16"],[3,"String"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"Cells"],[8,"ToString"],[15,"never"],[8,"Hasher"],[8,"Iterator"],[15,"char"],[4,"Result"],[3,"TypeId"],[13,"Rgb"],[13,"Boundaries"]]},\ @@ -65,7 +65,7 @@ var searchIndex = JSON.parse('{\ "glob":{"doc":"Support for matching file paths against Unix shell style …","t":"DGDDDDLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLMLLLLLLMLLMMLLLLLLLLLLLLLLLLLLLL","n":["GlobError","GlobResult","MatchOptions","Paths","Pattern","PatternError","as_str","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","case_sensitive","cause","clone","clone","clone_into","clone_into","cmp","cmp","default","default","description","description","eq","eq","equivalent","equivalent","error","escape","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_str","glob","glob_with","hash","hash","into","into","into","into","into","into_error","into_iter","matches","matches_path","matches_path_with","matches_with","msg","new","new","next","partial_cmp","partial_cmp","path","pos","provide","provide","require_literal_leading_dot","require_literal_separator","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id"],"q":[[0,"glob"]],"d":["A glob iteration error.","An alias for a glob iteration result.","Configuration options to modify the behaviour of …","An iterator that yields Paths from the filesystem that …","A compiled Unix shell style pattern.","A pattern parsing error.","Access the original glob pattern.","","","","","","","","","","","Whether or not patterns should be matched in a …","","","","","","","","","","","","","","","","The error in question.","Escape metacharacters within the given string by …","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Return an iterator that produces all the Paths that match …","Return an iterator that produces all the Paths that match …","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Consumes self, returning the raw underlying io::Error","","Return if the given str matches this Pattern using the …","Return if the given Path, when converted to a str, matches …","Return if the given Path, when converted to a str, matches …","Return if the given str matches this Pattern using the …","A message describing the error.","This function compiles Unix shell style patterns.","Constructs a new MatchOptions with default field values. …","","","","The Path that the error corresponds to.","The approximate character index of where the error …","","","Whether or not paths that contain components that start …","Whether or not path-component separator characters (e.g. / …","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,1,12,3,8,1,6,12,3,8,1,6,6,3,1,6,1,6,1,6,1,6,3,8,1,6,1,6,3,1,12,3,3,8,8,1,1,6,12,3,8,1,6,1,0,0,1,6,12,3,8,1,6,3,12,1,1,1,1,8,1,6,12,1,6,3,8,3,8,6,6,1,6,3,8,1,12,3,8,1,6,12,3,8,1,6,12,3,8,1,6],"f":[0,0,0,0,0,0,[1,2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[3,[[5,[4]]]],[1,1],[6,6],[[]],[[]],[[1,1],7],[[6,6],7],[[],1],[[],6],[3,2],[8,2],[[1,1],9],[[6,6],9],[[],9],[[],9],[3,10],[2,11],[[12,13],14],[[3,13],14],[[3,13],14],[[8,13],14],[[8,13],14],[[1,13],14],[[1,13],14],[[6,13],14],[[]],[[]],[[]],[[]],[[]],[2,[[15,[1,8]]]],[2,[[15,[12,8]]]],[[2,6],[[15,[12,8]]]],[[1,16]],[[6,16]],[[]],[[]],[[]],[[]],[[]],[3,10],[[]],[[1,2],9],[[1,17],9],[[1,17,6],9],[[1,2,6],9],0,[2,[[15,[1,8]]]],[[],6],[12,[[5,[18]]]],[[1,1],[[5,[7]]]],[[6,6],[[5,[7]]]],[3,17],0,[19],[19],0,0,[[]],[[]],[[],11],[[],11],[[],11],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],20],[[],20],[[],20],[[],20],[[],20]],"c":[],"p":[[3,"Pattern"],[15,"str"],[3,"GlobError"],[8,"Error"],[4,"Option"],[3,"MatchOptions"],[4,"Ordering"],[3,"PatternError"],[15,"bool"],[3,"Error"],[3,"String"],[3,"Paths"],[3,"Formatter"],[6,"Result"],[4,"Result"],[8,"Hasher"],[3,"Path"],[6,"GlobResult"],[3,"Demand"],[3,"TypeId"]]},\ "h2":{"doc":"An asynchronous, HTTP/2 server and client implementation.","t":"SSSSDSSDSSSSSDDDSDDSSDDLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["CANCEL","COMPRESSION_ERROR","CONNECT_ERROR","ENHANCE_YOUR_CALM","Error","FLOW_CONTROL_ERROR","FRAME_SIZE_ERROR","FlowControl","HTTP_1_1_REQUIRED","INADEQUATE_SECURITY","INTERNAL_ERROR","NO_ERROR","PROTOCOL_ERROR","Ping","PingPong","Pong","REFUSED_STREAM","Reason","RecvStream","SETTINGS_TIMEOUT","STREAM_CLOSED","SendStream","StreamId","as_u32","available_capacity","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","client","clone","clone","clone","clone_into","clone_into","clone_into","data","description","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","ext","flow_control","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","get_io","hash","into","into","into","into","into","into","into","into","into","into_io","is_end_stream","is_go_away","is_io","is_library","is_remote","is_reset","opaque","ping","poll_capacity","poll_data","poll_reset","provide","reason","release_capacity","reserve_capacity","send_data","send_reset","send_trailers","server","stream_id","stream_id","stream_id","to_owned","to_owned","to_owned","to_string","to_string","trailers","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","used_capacity","Builder","Connection","PushPromise","PushPromises","PushedResponseFuture","ReadySendRequest","ResponseFuture","SendRequest","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","default","enable_push","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","handshake","handshake","initial_connection_window_size","initial_max_send_streams","initial_window_size","into","into","into","into","into","into","into","into","into_future","into_future","into_future","into_future","into_parts","is_extended_connect_protocol_enabled","max_concurrent_recv_streams","max_concurrent_reset_streams","max_concurrent_send_streams","max_concurrent_streams","max_frame_size","max_header_list_size","max_pending_accept_reset_streams","max_send_buffer_size","new","ping_pong","poll","poll","poll","poll","poll_ready","push_promise","push_promises","ready","request","request_mut","reset_stream_duration","send_request","set_initial_window_size","set_target_window_size","stream_id","stream_id","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_poll","try_poll","try_poll","try_poll","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","Protocol","as_ref","as_str","borrow","borrow_mut","clone","clone_into","eq","equivalent","equivalent","fmt","from","from","from_static","into","to_owned","try_from","try_into","type_id","Builder","Connection","Handshake","SendPushedResponse","SendResponse","abrupt_shutdown","accept","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","default","enable_connect_protocol","enable_connect_protocol","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","graceful_shutdown","handshake","handshake","initial_connection_window_size","initial_window_size","into","into","into","into","into","into_future","max_concurrent_recv_streams","max_concurrent_reset_streams","max_concurrent_send_streams","max_concurrent_streams","max_frame_size","max_header_list_size","max_pending_accept_reset_streams","max_send_buffer_size","new","ping_pong","poll","poll_closed","poll_reset","poll_reset","push_request","reset_stream_duration","send_reset","send_reset","send_response","send_response","set_initial_window_size","set_target_window_size","stream_id","stream_id","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_poll","type_id","type_id","type_id","type_id","type_id"],"q":[[0,"h2"],[152,"h2::client"],[273,"h2::ext"],[292,"h2::server"]],"d":["Used by the endpoint to indicate that the stream is no …","The endpoint is unable to maintain the header compression …","The connection established in response to a CONNECT …","The endpoint detected that its peer is exhibiting a …","Represents HTTP/2 operation errors.","The endpoint detected that its peer violated the …","The endpoint received a frame with an invalid size.","A handle to release window capacity to a remote stream.","The endpoint requires that HTTP/1.1 be used instead of …","The underlying transport has properties that do not meet …","The endpoint encountered an unexpected internal error.","The associated condition is not a result of an error.","The endpoint detected an unspecific protocol error.","Sent via PingPong to send a PING frame to a peer.","A handle to send and receive PING frames with the peer.","Received via PingPong when a peer acknowledges a Ping.","The endpoint refused the stream prior to performing any …","HTTP/2 error codes.","Receives the body stream and trailers from the remote peer.","The endpoint sent a SETTINGS frame but did not receive a …","The endpoint received a frame after a stream was …","Sends the body stream and trailers to the remote peer.","A stream identifier, as described in Section 5.1.1 of RFC …","Returns the u32 corresponding to this StreamId","Get the current available capacity of data this stream …","","","","","","","","","","","","","","","","","","","Returns the stream’s current send capacity.","Client implementation of the HTTP/2 protocol.","","","","","","","Get the next data frame.","Get a string description of the error code.","","","","","","","","Extensions specific to the HTTP/2 protocol.","Get a mutable reference to this stream’s FlowControl.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the error if the error is an io::Error","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns the error if the error is an io::Error","Returns true if the receive half has reached the end of …","Returns true if the error is from a GOAWAY.","Returns true if the error is an io::Error","Returns true if the error was created by h2.","Returns true if the error was received in a frame from the …","Returns true if the error is from a RST_STREAM.","Creates a new opaque Ping to be sent via a PingPong.","Send a PING frame and wait for the peer to send the pong.","Requests to be notified when the stream’s capacity …","Poll for the next data frame.","Polls to be notified when the client resets this stream.","","If the error was caused by the remote peer, the error …","Release window capacity back to remote stream.","Requests capacity to send data.","Sends a single data frame to the remote peer.","Resets the stream.","Sends trailers to the remote peer.","Server implementation of the HTTP/2 protocol.","Returns the stream ID of this stream.","Returns the stream ID of this SendStream.","Returns the stream ID of the stream whose capacity will be …","","","","","","Get optional trailers for this stream.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the currently used capacity for this stream.","Builds client connections with custom configuration values.","Manages all state associated with an HTTP/2 client …","A pushed response and corresponding request headers","A stream of pushed responses and corresponding promised …","A future of a pushed HTTP response.","Returns a SendRequest instance once it is ready to send at …","A future of an HTTP response.","Initializes new HTTP/2 streams on a connection by sending …","","","","","","","","","","","","","","","","","","","","","","Enables or disables server push promises.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates a new configured HTTP/2 client with default …","Creates a new configured HTTP/2 client backed by io.","Indicates the initial window size (in octets) for …","Sets the initial maximum of locally initiated (send) …","Indicates the initial window size (in octets) for …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Consumes self, returning the push promise’s request …","Returns whether the extended CONNECT protocol is enabled …","Returns the maximum number of concurrent streams that may …","Sets the maximum number of concurrent locally reset …","Returns the maximum number of concurrent streams that may …","Sets the maximum number of concurrent streams.","Indicates the size (in octets) of the largest HTTP/2 frame …","Sets the max size of received header frames.","Sets the maximum number of pending-accept remotely-reset …","Sets the maximum send buffer size per stream.","Returns a new client builder instance initialized with …","Takes a PingPong instance from the connection.","","","","","Returns Ready when the connection can initialize a new …","Get the next PushPromise.","Returns a stream of PushPromises","Consumes self, returning a future that returns self back …","Returns a reference to the push promise’s request …","Returns a mutable reference to the push promise’s …","Sets the duration to remember locally reset streams.","Sends a HTTP/2 request to the server.","Set a new INITIAL_WINDOW_SIZE setting (in octets) for …","Sets the target window size for the whole connection.","Returns the stream ID of the response stream.","Returns the stream ID of the response stream.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Represents the :protocol pseudo-header used by the …","","Returns a str representation of the header.","","","","","","","","","Returns the argument unchanged.","","Converts a static string to a protocol name.","Calls U::from(self).","","","","","Builds server connections with custom configuration values.","Accepts inbound HTTP/2 streams on a connection.","In progress HTTP/2 connection handshake future.","Send a response to a promised request","Send a response back to the client","Sets the connection to a GOAWAY state.","Accept the next incoming request on this connection.","","","","","","","","","","","","","","Enables the extended CONNECT protocol.","Enables the extended CONNECT protocol.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Starts a graceful shutdown process.","Creates a new configured HTTP/2 server with default …","Creates a new configured HTTP/2 server backed by io.","Indicates the initial window size (in octets) for …","Indicates the initial window size (in octets) for …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Returns the maximum number of concurrent streams that may …","Sets the maximum number of concurrent locally reset …","Returns the maximum number of concurrent streams that may …","Sets the maximum number of concurrent streams.","Indicates the size (in octets) of the largest HTTP/2 frame …","Sets the max size of received header frames.","Sets the maximum number of pending-accept remotely-reset …","Sets the maximum send buffer size per stream.","Returns a new server builder instance initialized with …","Takes a PingPong instance from the connection.","","Returns Ready when the underlying connection has closed.","Polls to be notified when the client resets this stream.","Polls to be notified when the client resets this stream.","Push a request and response to the client","Sets the maximum number of concurrent locally reset …","Send a stream reset to the peer.","Send a stream reset to the peer.","Send a response to a promised request.","Send a response to a client request.","Set a new INITIAL_WINDOW_SIZE setting (in octets) for …","Sets the target window size for the whole connection.","Returns the stream ID of the response stream.","Returns the stream ID of the response stream.","","","","","","","","","","","","","","","","",""],"i":[8,8,8,8,0,8,8,0,8,8,8,8,8,0,0,0,8,0,0,8,8,0,0,1,3,9,18,19,20,11,8,6,1,3,9,18,19,20,11,8,6,1,3,6,0,8,1,3,8,1,3,9,8,9,8,1,8,8,1,1,0,9,9,18,19,20,11,11,8,8,6,1,3,9,18,19,20,11,11,8,8,6,1,3,11,1,9,18,19,20,11,8,6,1,3,11,9,11,11,11,11,11,19,18,6,9,6,11,11,3,6,6,6,6,0,9,6,3,8,1,3,11,8,9,9,18,19,20,11,8,6,1,3,9,18,19,20,11,8,6,1,3,9,18,19,20,11,8,6,1,3,3,0,0,0,0,0,0,0,0,30,34,35,36,37,38,39,31,30,34,35,36,37,38,39,31,30,31,30,31,31,31,30,34,35,36,37,38,39,31,30,34,35,36,37,38,39,31,0,31,31,31,31,30,34,35,36,37,38,39,31,34,35,36,37,38,30,34,31,34,31,31,31,31,31,31,34,34,35,36,37,30,39,36,30,38,38,31,30,34,34,36,37,30,31,30,34,35,36,37,38,39,31,30,34,35,36,37,38,39,31,34,35,36,37,30,34,35,36,37,38,39,31,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,48,48,50,48,51,49,52,50,48,51,49,52,49,49,49,48,49,50,48,51,49,52,50,48,51,49,52,48,0,49,49,49,50,48,51,49,52,50,48,49,48,49,49,49,49,49,49,48,50,48,51,52,52,49,51,52,51,52,48,48,51,52,49,50,48,51,49,52,50,48,51,49,52,50,50,48,51,49,52],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[3,4],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[6,[5]]],7],0,[8,8],[1,1],[3,3],[[]],[[]],[[]],[9,[[13,[[12,[10,11]]]]]],[8,14],[9],[[8,8],15],[[1,1],15],[[],15],[[],15],[[],15],[[],15],0,[9,3],[[9,16],17],[[18,16],17],[[19,16],17],[[20,16],17],[[11,16],17],[[11,16],17],[[8,16],17],[[8,16],17],[[[6,[21]],16],17],[[1,16],17],[[3,16],17],[[]],[[]],[[]],[[]],[8,11],[[]],[2,8],[[]],[[]],[[]],[[]],[11,[[13,[22]]]],[[1,23]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[11,[[13,[22]]]],[9,15],[11,15],[11,15],[11,15],[11,15],[11,15],[[],19],[[18,19],[[12,[20,11]]]],[[[6,[5]],24],[[25,[[13,[[12,[7,11]]]]]]]],[[9,24],[[25,[[13,[[12,[10,11]]]]]]]],[[[6,[5]],24],[[25,[[12,[8,11]]]]]],[26],[11,[[13,[8]]]],[[3,7],[[12,[11]]]],[[[6,[5]],7]],[[[6,[5]],5,15],[[12,[11]]]],[[[6,[5]],8]],[[[6,[5]],27],[[12,[11]]]],0,[9,1],[[[6,[5]]],1],[3,1],[[]],[[]],[[]],[[],28],[[],28],[9,[[12,[[13,[27]],11]]]],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[3,7],0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[30,[5]]],[[30,[5]]]],[31,31],[[]],[[]],[[],31],[[31,15],31],[[[30,[5]],16],17],[[[34,[[0,[32,33,21]],[0,[21,5]]]],16],17],[[[35,[[0,[21,5]]]],16],17],[[36,16],17],[[37,16],17],[[38,16],17],[[39,16],17],[[31,16],17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[0,[32,33,40]]],[[12,[11]]]],[[31,[0,[32,33,40]]],41],[[31,2],31],[[31,7],31],[[31,2],31],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[38],[[[30,[5]]],15],[[[34,[[0,[32,33,40]],5]]],7],[[31,7],31],[[[34,[[0,[32,33,40]],5]]],7],[[31,2],31],[[31,2],31],[[31,2],31],[[31,7],31],[[31,7],31],[[],31],[[[34,[[0,[32,33,40]],5]]],[[13,[18]]]],[[[42,[[34,[[0,[32,33,40]],5]]]],24],25],[[[42,[[35,[5]]]],24],25],[[[42,[36]],24],25],[[[42,[37]],24],25],[[[30,[5]],24],[[25,[[12,[11]]]]]],[39,[[13,[[12,[38,11]]]]]],[36,39],[[[30,[5]]],[[35,[5]]]],[38,43],[38,43],[[31,44],31],[[[30,[5]],43,15],[[12,[11]]]],[[[34,[[0,[32,33,40]],5]],2],[[12,[11]]]],[[[34,[[0,[32,33,40]],5]],2]],[36,1],[37,1],[[]],[[]],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[42,24],25],[[42,24],25],[[42,24],25],[[42,24],25],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],0,[45,[[47,[46]]]],[45,14],[[]],[[]],[45,45],[[]],[[45,45],15],[[],15],[[],15],[[45,16],17],[[]],[14,45],[14,45],[[]],[[]],[[],12],[[],12],[[],29],0,0,0,0,0,[[[48,[[0,[32,33,40]],5]],8]],[[[48,[[0,[32,33,40]],5]]],[[13,[[12,[11]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[49,49],[[]],[[],49],[[[48,[[0,[32,33,40]],5]]],[[12,[11]]]],[49,49],[[[50,[[0,[32,33,21]],[0,[21,5]]]],16],17],[[[48,[21,[0,[21,5]]]],16],17],[[[51,[[0,[5,21]]]],16],17],[[49,16],17],[[[52,[[0,[21,5]]]],16],17],[[]],[[]],[[]],[[]],[[]],[[[48,[[0,[32,33,40]],5]]]],[[[0,[32,33,40]]],[[50,[[0,[32,33,40]],10]]]],[[49,[0,[32,33,40]]],[[50,[[0,[32,33,40]],5]]]],[[49,2],49],[[49,2],49],[[]],[[]],[[]],[[]],[[]],[[]],[[[48,[[0,[32,33,40]],5]]],7],[[49,7],49],[[[48,[[0,[32,33,40]],5]]],7],[[49,2],49],[[49,2],49],[[49,2],49],[[49,7],49],[[49,7],49],[[],49],[[[48,[[0,[32,33,40]],5]]],[[13,[18]]]],[[[42,[[50,[[0,[32,33,40]],5]]]],24],25],[[[48,[[0,[32,33,40]],5]],24],[[25,[[12,[11]]]]]],[[[51,[5]],24],[[25,[[12,[8,11]]]]]],[[[52,[5]],24],[[25,[[12,[8,11]]]]]],[[[52,[5]],43],[[12,[[51,[5]],11]]]],[[49,44],49],[[[51,[5]],8]],[[[52,[5]],8]],[[[51,[5]],53,15],[[12,[[6,[5]],11]]]],[[[52,[5]],53,15],[[12,[[6,[5]],11]]]],[[[48,[[0,[32,33,40]],5]],2],[[12,[11]]]],[[[48,[[0,[32,33,40]],5]],2]],[[[51,[5]]],1],[[[52,[5]]],1],[[]],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[42,24],25],[[],29],[[],29],[[],29],[[],29],[[],29]],"c":[],"p":[[3,"StreamId"],[15,"u32"],[3,"FlowControl"],[15,"isize"],[8,"Buf"],[3,"SendStream"],[15,"usize"],[3,"Reason"],[3,"RecvStream"],[3,"Bytes"],[3,"Error"],[4,"Result"],[4,"Option"],[15,"str"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"PingPong"],[3,"Ping"],[3,"Pong"],[8,"Debug"],[3,"Error"],[8,"Hasher"],[3,"Context"],[4,"Poll"],[3,"Demand"],[3,"HeaderMap"],[3,"String"],[3,"TypeId"],[3,"SendRequest"],[3,"Builder"],[8,"AsyncRead"],[8,"AsyncWrite"],[3,"Connection"],[3,"ReadySendRequest"],[3,"ResponseFuture"],[3,"PushedResponseFuture"],[3,"PushPromise"],[3,"PushPromises"],[8,"Unpin"],[8,"Future"],[3,"Pin"],[3,"Request"],[3,"Duration"],[3,"Protocol"],[15,"u8"],[15,"slice"],[3,"Connection"],[3,"Builder"],[3,"Handshake"],[3,"SendPushedResponse"],[3,"SendResponse"],[3,"Response"]]},\ "half":{"doc":"A crate that provides support for half-precision 16-bit …","t":"SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCCCCIIKKKKKKKK","n":["DIGITS","DIGITS","E","E","EPSILON","EPSILON","FRAC_1_PI","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2","FRAC_2_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_2","FRAC_PI_3","FRAC_PI_3","FRAC_PI_4","FRAC_PI_4","FRAC_PI_6","FRAC_PI_6","FRAC_PI_8","FRAC_PI_8","INFINITY","INFINITY","LN_10","LN_10","LN_2","LN_2","LOG10_2","LOG10_2","LOG10_E","LOG10_E","LOG2_10","LOG2_10","LOG2_E","LOG2_E","MANTISSA_DIGITS","MANTISSA_DIGITS","MAX","MAX","MAX_10_EXP","MAX_10_EXP","MAX_EXP","MAX_EXP","MAX_SUBNORMAL","MAX_SUBNORMAL","MIN","MIN","MIN_10_EXP","MIN_10_EXP","MIN_EXP","MIN_EXP","MIN_POSITIVE","MIN_POSITIVE","MIN_POSITIVE_SUBNORMAL","MIN_POSITIVE_SUBNORMAL","NAN","NAN","NEG_INFINITY","NEG_INFINITY","NEG_ONE","NEG_ONE","NEG_ZERO","NEG_ZERO","ONE","ONE","PI","PI","RADIX","RADIX","SQRT_2","SQRT_2","ZERO","ZERO","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","bf16","borrow","borrow","borrow_mut","borrow_mut","clamp","clamp","classify","classify","clone","clone","copysign","copysign","default","default","div","div","div","div","div","div","div","div","div_assign","div_assign","div_assign","div_assign","eq","eq","f16","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_be_bytes","from_be_bytes","from_bits","from_bits","from_f32","from_f32","from_f64","from_f64","from_le_bytes","from_le_bytes","from_ne_bytes","from_ne_bytes","from_str","from_str","ge","ge","gt","gt","into","into","is_finite","is_finite","is_infinite","is_infinite","is_nan","is_nan","is_normal","is_normal","is_sign_negative","is_sign_negative","is_sign_positive","is_sign_positive","le","le","lt","lt","max","max","min","min","mul","mul","mul","mul","mul","mul","mul","mul","mul_assign","mul_assign","mul_assign","mul_assign","neg","neg","partial_cmp","partial_cmp","prelude","product","product","product","product","rem","rem","rem","rem","rem","rem","rem","rem","rem_assign","rem_assign","rem_assign","rem_assign","signum","signum","slice","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sum","sum","sum","sum","to_be_bytes","to_be_bytes","to_bits","to_bits","to_f32","to_f32","to_f64","to_f64","to_le_bytes","to_le_bytes","to_ne_bytes","to_ne_bytes","try_from","try_from","try_into","try_into","type_id","type_id","HalfBitsSliceExt","HalfFloatSliceExt","bf16","f16","HalfBitsSliceExt","HalfFloatSliceExt","convert_from_f32_slice","convert_from_f64_slice","convert_to_f32_slice","convert_to_f64_slice","reinterpret_cast","reinterpret_cast","reinterpret_cast_mut","reinterpret_cast_mut"],"q":[[0,"half"],[250,"half::prelude"],[254,"half::slice"]],"d":["Approximate number of bf16 significant digits in base 10","Approximate number of f16 significant digits in base 10","bf16 Euler’s number (ℯ)","f16 Euler’s number (ℯ)","bf16 machine epsilon value","f16 machine epsilon value","bf16 1/π","f16 1/π","bf16 1/√2","f16 1/√2","bf16 2/π","f16 2/π","bf16 2/√π","f16 2/√π","bf16 π/2","f16 π/2","bf16 π/3","f16 π/3","bf16 π/4","f16 π/4","bf16 π/6","f16 π/6","bf16 π/8","f16 π/8","bf16 positive Infinity (+∞)","f16 positive Infinity (+∞)","bf16 𝗅𝗇 10","f16 𝗅𝗇 10","bf16 𝗅𝗇 2","f16 𝗅𝗇 2","bf16 𝗅𝗈𝗀₁₀2","f16 𝗅𝗈𝗀₁₀2","bf16 𝗅𝗈𝗀₁₀ℯ","f16 𝗅𝗈𝗀₁₀ℯ","bf16 𝗅𝗈𝗀₂10","f16 𝗅𝗈𝗀₂10","bf16 𝗅𝗈𝗀₂ℯ","f16 𝗅𝗈𝗀₂ℯ","Number of bf16 significant digits in base 2","Number of f16 significant digits in base 2","Largest finite bf16 value","Largest finite f16 value","Maximum possible bf16 power of 10 exponent","Maximum possible f16 power of 10 exponent","Maximum possible bf16 power of 2 exponent","Maximum possible f16 power of 2 exponent","Maximum subnormal bf16 value","Maximum subnormal f16 value","Smallest finite bf16 value","Smallest finite f16 value","Minimum possible normal bf16 power of 10 exponent","Minimum possible normal f16 power of 10 exponent","One greater than the minimum possible normal bf16 power of …","One greater than the minimum possible normal f16 power of …","Smallest positive normal bf16 value","Smallest positive normal f16 value","Minimum positive subnormal bf16 value","Minimum positive subnormal f16 value","bf16 Not a Number (NaN)","f16 Not a Number (NaN)","bf16 negative infinity (-∞).","f16 negative infinity (-∞)","bf16 -1","f16 -1","bf16 -0","f16 -0","bf16 1","f16 1","bf16 Archimedes’ constant (π)","f16 Archimedes’ constant (π)","The radix or base of the internal representation of bf16","The radix or base of the internal representation of f16","bf16 √2","f16 √2","bf16 0","f16 0","","","","","","","","","","","","","A 16-bit floating point type implementing the bfloat16 …","","","","","Restrict a value to a certain interval unless it is NaN.","Restrict a value to a certain interval unless it is NaN.","Returns the floating point category of the number.","Returns the floating point category of the number.","","","Returns a number composed of the magnitude of self and the …","Returns a number composed of the magnitude of self and the …","","","","","","","","","","","","","","","","","A 16-bit floating point type implementing the IEEE …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Creates a floating point value from its representation as …","Creates a floating point value from its representation as …","Constructs a bf16 value from the raw bits.","Constructs a 16-bit floating point value from the raw bits.","Constructs a bf16 value from a 32-bit floating point value.","Constructs a 16-bit floating point value from a 32-bit …","Constructs a bf16 value from a 64-bit floating point value.","Constructs a 16-bit floating point value from a 64-bit …","Creates a floating point value from its representation as …","Creates a floating point value from its representation as …","Creates a floating point value from its representation as …","Creates a floating point value from its representation as …","","","","","","","Calls U::from(self).","Calls U::from(self).","Returns true if this number is neither infinite nor NaN.","Returns true if this number is neither infinite nor NaN.","Returns true if this value is ±∞ and false otherwise.","Returns true if this value is ±∞ and false. otherwise.","Returns true if this value is NaN and false otherwise.","Returns true if this value is NaN and false otherwise.","Returns true if the number is neither zero, infinite, …","Returns true if the number is neither zero, infinite, …","Returns true if and only if self has a negative sign, …","Returns true if and only if self has a negative sign, …","Returns true if and only if self has a positive sign, …","Returns true if and only if self has a positive sign, …","","","","","Returns the maximum of the two numbers.","Returns the maximum of the two numbers.","Returns the minimum of the two numbers.","Returns the minimum of the two numbers.","","","","","","","","","","","","","","","","","A collection of the most used items and traits in this …","","","","","","","","","","","","","","","","","Returns a number that represents the sign of self.","Returns a number that represents the sign of self.","Contains utility functions and traits to convert between …","","","","","","","","","","","","","","","","","Returns the memory representation of the underlying bit …","Returns the memory representation of the underlying bit …","Converts a bf16 into the underlying bit representation.","Converts a f16 into the underlying bit representation.","Converts a bf16 value into an f32 value.","Converts a f16 value into a f32 value.","Converts a bf16 value into an f64 value.","Converts a f16 value into a f64 value.","Returns the memory representation of the underlying bit …","Returns the memory representation of the underlying bit …","Returns the memory representation of the underlying bit …","Returns the memory representation of the underlying bit …","","","","","","","","","","","Extensions to [u16] slices to support reinterpret …","Extensions to [f16] and [bf16] slices to support …","Converts all of the elements of a [f32] slice into f16 or …","Converts all of the elements of a [f64] slice into f16 or …","Converts all of the f16 or bf16 elements of self into f32 …","Converts all of the f16 or bf16 elements of self into f64 …","Reinterprets a slice of f16 or bf16 numbers as a slice of …","Reinterprets a slice of u16 bits as a slice of f16 or bf16 …","Reinterprets a mutable slice of f16 or bf16 numbers as a …","Reinterprets a mutable slice of u16 bits as a mutable …"],"i":[1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,1,1,1,2,2,2,2,1,1,2,2,0,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,1,1,1,2,2,2,2,1,1,2,2,1,2,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,1,1,1,2,2,2,2,1,1,2,2,1,2,1,2,0,1,1,2,2,1,1,1,1,2,2,2,2,1,1,2,2,1,2,0,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,0,0,0,0,0,0,21,21,21,21,21,22,21,22],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,1]],[[1,1]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],[[2,2]],[[2,2]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],0,[[]],[[]],[[]],[[]],[[1,1,1],1],[[2,2,2],2],[1,3],[2,3],[1,1],[2,2],[[1,1],1],[[2,2],2],[[],1],[[],2],[[1,1]],[[1,1]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],[[2,2]],[[2,2]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],[[1,1],4],[[2,2],4],0,[[1,5],[[7,[6]]]],[[1,5],[[7,[6]]]],[[1,5],[[7,[6]]]],[[1,5],[[7,[6]]]],[[1,5],[[7,[6]]]],[[1,5],[[7,[6]]]],[[1,5],[[7,[6]]]],[[1,5],[[7,[6]]]],[[2,5],[[7,[6]]]],[[2,5],[[7,[6]]]],[[2,5],[[7,[6]]]],[[2,5],[[7,[6]]]],[[2,5],[[7,[6]]]],[[2,5],[[7,[6]]]],[[2,5],[[7,[6]]]],[[2,5],[[7,[6]]]],[[]],[8,1],[9,1],[[]],[8,2],[9,2],[[[10,[8]]],1],[[[10,[8]]],2],[11,1],[11,2],[12,1],[12,2],[13,1],[13,2],[[[10,[8]]],1],[[[10,[8]]],2],[[[10,[8]]],1],[[[10,[8]]],2],[14,[[7,[1,15]]]],[14,[[7,[2,15]]]],[[1,1],4],[[2,2],4],[[1,1],4],[[2,2],4],[[]],[[]],[1,4],[2,4],[1,4],[2,4],[1,4],[2,4],[1,4],[2,4],[1,4],[2,4],[1,4],[2,4],[[1,1],4],[[2,2],4],[[1,1],4],[[2,2],4],[[1,1],1],[[2,2],2],[[1,1],1],[[2,2],2],[[1,1]],[[1,1]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],[[2,2]],[[2,2]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],[1],[2],[[1,1],[[17,[16]]]],[[2,2],[[17,[16]]]],0,[18,1],[18,1],[18,2],[18,2],[[1,1]],[[1,1]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],[[2,2]],[[2,2]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],[1,1],[2,2],0,[[1,1]],[[1,1]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],[[2,2]],[[2,2]],[[1,1]],[[1,1]],[[2,2]],[[2,2]],[18,1],[18,1],[18,2],[18,2],[1,[[10,[8]]]],[2,[[10,[8]]]],[1,11],[2,11],[1,12],[2,12],[1,13],[2,13],[1,[[10,[8]]]],[2,[[10,[8]]]],[1,[[10,[8]]]],[2,[[10,[8]]]],[[],7],[[],7],[[],7],[[],7],[[],19],[[],19],0,0,0,0,0,0,[[[20,[12]]]],[[[20,[13]]]],[[[20,[12]]]],[[[20,[13]]]],[[],[[20,[11]]]],[[],[[20,[0]]]],[[],[[20,[11]]]],[[],[[20,[0]]]]],"c":[],"p":[[3,"bf16"],[3,"f16"],[4,"FpCategory"],[15,"bool"],[3,"Formatter"],[3,"Error"],[4,"Result"],[15,"u8"],[15,"i8"],[15,"array"],[15,"u16"],[15,"f32"],[15,"f64"],[15,"str"],[3,"ParseFloatError"],[4,"Ordering"],[4,"Option"],[8,"Iterator"],[3,"TypeId"],[15,"slice"],[8,"HalfFloatSliceExt"],[8,"HalfBitsSliceExt"]]},\ -"halfbrown":{"doc":"Halfbrown is a hashmap implementation that provides high …","t":"GDEGDDDDNNDDDEDDDNNDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["DefaultHashBuilder","Drain","Entry","HashMap","IntoIter","Iter","IterMut","Keys","Occupied","Occupied","OccupiedEntry","RawEntryBuilder","RawEntryBuilderMut","RawEntryMut","RawOccupiedEntryMut","RawVacantEntryMut","SizedHashMap","Vacant","Vacant","VacantEntry","Values","ValuesMut","and_modify","and_modify","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clear","clone","clone","clone_into","clone_into","contains_key","default","deserialize","drain","entry","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_hash","from_hash","from_iter","from_key","from_key","from_key_hashed_nocheck","from_key_hashed_nocheck","get","get","get","get_key_value","get_key_value_mut","get_mut","get_mut","get_mut","hasher","hashmap","index","insert","insert","insert","insert","insert","insert","insert_hashed_nocheck","insert_key","insert_nocheck","insert_with_hasher","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_key","into_key","into_key_value","into_mut","into_mut","is_empty","is_empty","is_map","is_vec","iter","iter_mut","key","key","key","key","key_mut","keys","len","len","len","len","len","new","next","next","next","next","next","next","next","or_default","or_insert","or_insert","or_insert_with","or_insert_with","raw_entry","raw_entry_mut","remove","remove","remove","remove_entry","remove_entry","remove_entry","replace_entry","replace_key","reserve","retain","serialize","shrink_to_fit","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","values","values_mut","vec_with_capacity","with_capacity","with_capacity_and_hasher","with_hasher"],"q":[[0,"halfbrown"]],"d":["Default hasher for HashMap.","Drains the map","A view into a single entry in a map, which may either be …","SizedHashMap implementation that alternates between a …","Into iterator for a Halfbrown map","Iterator over the key value pairs of a Halfbrown map","Mutable iterator over the key value pairs","Iterator over the keys","An occupied entry.","An occupied entry.","A view into an occupied entry in a HashMap. It is part of …","A builder for computing where in a [HashMap] a key-value …","A builder for computing where in a [HashMap] a key-value …","A view into a single entry in a map, which may either be …","A view into an occupied entry in a HashMap. It is part of …","A view into a vacant entry in a HashMap. It is part of the …","Maximum nymber of elements before the representaiton is …","A vacant entry.","A vacant entry.","A view into a vacant entry in a HashMap. It is part of the …","Iterator over the values","Mutable iterator over the values","Provides in-place mutable access to an occupied entry …","Provides in-place mutable access to an occupied entry …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of elements the map can hold without …","Clears the map, removing all key-value pairs. Keeps the …","","","","","Returns true if the map contains a value for the specified …","","","Clears the map, returning all key-value pairs as an …","Gets the given key’s corresponding entry in the map for …","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates a RawEntryMut from the given hash.","Access an entry by hash.","","Creates a RawEntryMut from the given key.","Access an entry by key.","Creates a RawEntryMut from the given key and its hash.","Access an entry by a key and its hash.","Gets a reference to the value in the entry.","Gets a reference to the value in the entry.","Returns a reference to the value corresponding to the key.","Gets a reference to the key and value in the entry.","Gets a mutable reference to the key and value in the entry.","Gets a mutable reference to the value in the entry.","Gets a mutable reference to the value in the entry.","Returns a mutable reference to the value corresponding to …","Returns a reference to the map’s BuildHasher.","Create a HashMap from a list of key-value pairs","Returns a reference to the value corresponding to the …","Sets the value of the entry, and returns the entry’s old …","Sets the value of the entry with the VacantEntry’s key, …","Sets the value of the entry, and returns a …","Sets the value of the entry, and returns the entry’s old …","Sets the value of the entry with the VacantEntry’s key, …","Inserts a key-value pair into the map.","Sets the value of the entry with the VacantEntry’s key, …","Sets the value of the entry, and returns the entry’s old …","Inserts element, this ignores check in the vector map if …","Set the value of an entry with a custom hasher function.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","Take ownership of the key.","Converts the entry into a mutable reference to the key in …","Converts the OccupiedEntry into a mutable reference to the …","Converts the OccupiedEntry into a mutable reference to the …","Converts the OccupiedEntry into a mutable reference to the …","If this iteratoris empty","Returns true if the map contains no elements.","Checks if the current backend is a map, if so returns true.","Checks if the current backend is a vector, if so returns …","An iterator visiting all key-value pairs in arbitrary …","An iterator visiting all key-value pairs in arbitrary …","Returns a reference to this entry’s key.","Gets a reference to the key in the entry.","Gets a reference to the key that would be used when …","Gets a reference to the key in the entry.","Gets a mutable reference to the key in the entry.","An iterator visiting all keys in arbitrary order. The …","The length of this iterator","","","","Returns the number of elements in the map.","Creates an empty HashMap.","","","","","","","","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the result of …","Ensures a value is in the entry by inserting the result of …","Creates a raw immutable entry builder for the HashMap.","Creates a raw entry builder for the HashMap.","Takes the value out of the entry, and returns it.","Takes the value out of the entry, and returns it.","Removes a key from the map, returning the value at the key …","Take the ownership of the key and value from the map.","Take the ownership of the key and value from the map.","Removes a key from the map, returning the stored key and …","Replaces the entry, returning the old key and value. The …","Replaces the key in the hash map with the key used to …","Reserves capacity for at least additional more elements to …","Retains only the elements specified by the predicate.","","Shrinks the capacity of the map as much as possible. It …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An iterator visiting all values in arbitrary order. The …","An iterator visiting all values mutably in arbitrary order.","Same as with capacity with the difference that it, despite …","Creates an empty HashMap with the specified capacity.","Creates an empty HashMap with the specified capacity, …","Creates an empty HashMap which will use the given hash …"],"i":[0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,1,4,0,0,0,1,4,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,5,5,7,5,7,5,5,5,5,5,5,5,5,5,1,23,24,25,4,26,27,28,7,5,1,1,23,24,40,41,25,25,4,4,26,26,27,27,28,28,42,44,45,18,7,5,25,28,5,25,28,25,28,23,26,5,26,26,23,26,5,5,0,5,23,24,4,26,27,5,27,26,5,27,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,40,41,42,44,45,18,7,5,5,24,26,26,23,26,40,5,5,5,5,5,1,23,24,26,26,5,40,40,41,7,5,5,40,41,42,44,45,18,7,1,1,4,1,4,5,5,23,26,5,23,26,5,23,23,5,5,5,5,40,41,42,44,45,18,7,7,5,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,5,5,5,5,5,5],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],1],[[[4,[3]],2],[[4,[3]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[5,6],[5],[7,7],[[[5,[8,8,8]]],[[5,[8,8,8]]]],[[]],[[]],[[[5,[[12,[[0,[9,10,11]]]],[0,[10,9]],3]],[0,[9,10,11]]],13],[[],[[5,[14]]]],[15,[[17,[[5,[[0,[10,9,16]],16,[0,[14,3]]]]]]]],[5,18],[[[5,[[0,[10,9]],14,3]],[0,[10,9]]],[[1,[[0,[10,9]],14,3]]]],[[[5,[[0,[10,9]],19]],[5,[[0,[10,9]],19,3]]],13],[[],13],[[],13],[[[1,[20,20]],21],22],[[[23,[20,20]],21],22],[[[24,[20]],21],22],[[25,21],22],[[[4,[20,20,3]],21],22],[[[26,[20,20,3]],21],22],[[27,21],22],[[28,21],22],[[[7,[20,20]],21],22],[[[5,[20,20]],21],22],[29,1],[[]],[[]],[[]],[[]],[[]],[[]],[30,25],[[]],[31,4],[[]],[32,26],[[]],[33,27],[34,28],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[25,[3]],35,36],[[4,[3]]]],[[[28,[3]],35,36],37],[38,[[5,[[0,[10,9]],[0,[3,14]]]]]],[[[25,[[12,[[0,[9,10,11]]]],3]],[0,[9,10,11]]],[[4,[[12,[[0,[9,10,11]]]],3]]]],[[[28,[[12,[[0,[9,10,11]]]],3]],[0,[9,10,11]]],37],[[[25,[[12,[[0,[10,11]]]],3]],35,[0,[10,11]]],[[4,[[12,[[0,[10,11]]]],3]]]],[[[28,[[12,[[0,[9,10,11]]]],3]],35,[0,[9,10,11]]],37],[23],[[[26,[3]]]],[[[5,[[12,[[0,[11,9,10]]]],[0,[10,9]],3]],[0,[11,9,10]]],37],[[[26,[3]]]],[[[26,[3]]]],[23],[[[26,[3]]]],[[[5,[[12,[[0,[9,10,11]]]],[0,[10,9]],3]],[0,[9,10,11]]],37],[5],0,[[[5,[[0,[10,9,[12,[[0,[10,9,11]]]]]],3]],[0,[10,9,11]]]],[23],[[[24,[9,3]]]],[[[4,[9,3,3]],9],[[26,[9,3,3]]]],[[[26,[3]]]],[[[27,[9,3,3]],9]],[[[5,[[0,[10,9]],14,3]],[0,[10,9]]],37],[[[27,[9,3,3]],35,9]],[[[26,[3]]]],[[[5,[[0,[10,9]],14,3]],[0,[10,9]]]],[[[27,[3,3]],35,39]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[5,7],[5,40],[24],[[[26,[3]]]],[[[26,[3]]]],[23],[[[26,[3]]]],[40,13],[5,13],[[[5,[[0,[10,9]],3]]],13],[[[5,[[0,[10,9]],3]]],13],[5,7],[5,41],[1],[23],[24],[[[26,[3]]]],[[[26,[3]]]],[5,42],[40,6],[40,6],[41,6],[7,6],[5,6],[[],[[5,[43]]]],[40,37],[41,37],[42,37],[44,37],[45,37],[18,37],[7,37],[[[1,[9,14,3]]],14],[[[1,[9,3]]]],[[[4,[9,3,3]],9]],[[[1,[9,3]],2]],[[[4,[9,3,3]],2]],[[[5,[[0,[10,9]],3]]],[[28,[[0,[10,9]],3]]]],[[[5,[[0,[10,9]],14,3]]],[[25,[[0,[10,9]],14,3]]]],[23],[[[26,[3]]]],[[[5,[[12,[[0,[9,10,11]]]],[0,[10,9]],3]],[0,[9,10,11]]],37],[23],[[[26,[3]]]],[[[5,[[12,[[0,[9,10,11]]]],[0,[10,9]],3]],[0,[9,10,11]]],37],[23],[23],[[[5,[[0,[10,9]],3]],6]],[[[5,[[0,[10,9]],3]],36]],[[[5,[[0,[10,9,46]],46]],47],17],[[[5,[[0,[10,9]],3]]]],[40],[41],[42],[44],[45],[18],[7],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[5,44],[5,45],[6,[[5,[43]]]],[6,[[5,[43]]]],[6,5],[[],5]],"c":[],"p":[[4,"Entry"],[8,"FnOnce"],[8,"BuildHasher"],[4,"RawEntryMut"],[3,"SizedHashMap"],[15,"usize"],[3,"Iter"],[8,"Clone"],[8,"Hash"],[8,"Eq"],[8,"Sized"],[8,"Borrow"],[15,"bool"],[8,"Default"],[8,"Deserializer"],[8,"Deserialize"],[4,"Result"],[3,"Drain"],[8,"PartialEq"],[8,"Debug"],[3,"Formatter"],[6,"Result"],[3,"OccupiedEntry"],[3,"VacantEntry"],[3,"RawEntryBuilderMut"],[3,"RawOccupiedEntryMut"],[3,"RawVacantEntryMut"],[3,"RawEntryBuilder"],[4,"Entry"],[3,"RawEntryBuilderMut"],[4,"RawEntryMut"],[3,"RawOccupiedEntryMut"],[3,"RawVacantEntryMut"],[3,"RawEntryBuilder"],[15,"u64"],[8,"FnMut"],[4,"Option"],[8,"IntoIterator"],[8,"Fn"],[3,"IntoIter"],[3,"IterMut"],[3,"Keys"],[6,"DefaultHashBuilder"],[3,"Values"],[3,"ValuesMut"],[8,"Serialize"],[8,"Serializer"],[3,"TypeId"]]},\ +"halfbrown":{"doc":"Halfbrown is a hashmap implementation that provides high …","t":"GDEGDDDDNNDDDEDDDNNDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["DefaultHashBuilder","Drain","Entry","HashMap","IntoIter","Iter","IterMut","Keys","Occupied","Occupied","OccupiedEntry","RawEntryBuilder","RawEntryBuilderMut","RawEntryMut","RawOccupiedEntryMut","RawVacantEntryMut","SizedHashMap","Vacant","Vacant","VacantEntry","Values","ValuesMut","and_modify","and_modify","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clear","clone","clone","clone_into","clone_into","contains_key","default","deserialize","drain","entry","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_hash","from_hash","from_iter","from_key","from_key","from_key_hashed_nocheck","from_key_hashed_nocheck","get","get","get","get_key_value","get_key_value_mut","get_mut","get_mut","get_mut","hasher","hashmap","index","insert","insert","insert","insert","insert","insert","insert_hashed_nocheck","insert_key","insert_nocheck","insert_with_hasher","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_key","into_key","into_key_value","into_mut","into_mut","is_empty","is_empty","is_map","is_vec","iter","iter_mut","key","key","key","key","key_mut","keys","len","len","len","len","len","new","next","next","next","next","next","next","next","or_default","or_insert","or_insert","or_insert_with","or_insert_with","raw_entry","raw_entry_mut","remove","remove","remove","remove_entry","remove_entry","remove_entry","replace_entry","replace_key","reserve","retain","serialize","shrink_to_fit","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","values","values_mut","vec_with_capacity","with_capacity","with_capacity_and_hasher","with_hasher"],"q":[[0,"halfbrown"]],"d":["Default hasher for HashMap.","Drains the map","A view into a single entry in a map, which may either be …","SizedHashMap implementation that alternates between a …","Into iterator for a Halfbrown map","Iterator over the key value pairs of a Halfbrown map","Mutable iterator over the key value pairs","Iterator over the keys","An occupied entry.","An occupied entry.","A view into an occupied entry in a HashMap. It is part of …","A builder for computing where in a [HashMap] a key-value …","A builder for computing where in a [HashMap] a key-value …","A view into a single entry in a map, which may either be …","A view into an occupied entry in a HashMap. It is part of …","A view into a vacant entry in a HashMap. It is part of the …","Maximum nymber of elements before the representaiton is …","A vacant entry.","A vacant entry.","A view into a vacant entry in a HashMap. It is part of the …","Iterator over the values","Mutable iterator over the values","Provides in-place mutable access to an occupied entry …","Provides in-place mutable access to an occupied entry …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of elements the map can hold without …","Clears the map, removing all key-value pairs. Keeps the …","","","","","Returns true if the map contains a value for the specified …","","","Clears the map, returning all key-value pairs as an …","Gets the given key’s corresponding entry in the map for …","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates a RawEntryMut from the given hash.","Access an entry by hash.","","Creates a RawEntryMut from the given key.","Access an entry by key.","Creates a RawEntryMut from the given key and its hash.","Access an entry by a key and its hash.","Gets a reference to the value in the entry.","Gets a reference to the value in the entry.","Returns a reference to the value corresponding to the key.","Gets a reference to the key and value in the entry.","Gets a mutable reference to the key and value in the entry.","Gets a mutable reference to the value in the entry.","Gets a mutable reference to the value in the entry.","Returns a mutable reference to the value corresponding to …","Returns a reference to the map’s BuildHasher.","Create a HashMap from a list of key-value pairs","Returns a reference to the value corresponding to the …","Sets the value of the entry, and returns the entry’s old …","Sets the value of the entry with the VacantEntry’s key, …","Sets the value of the entry, and returns a …","Sets the value of the entry, and returns the entry’s old …","Sets the value of the entry with the VacantEntry’s key, …","Inserts a key-value pair into the map.","Sets the value of the entry with the VacantEntry’s key, …","Sets the value of the entry, and returns the entry’s old …","Inserts element, this ignores check in the vector map if …","Set the value of an entry with a custom hasher function.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","Take ownership of the key.","Converts the entry into a mutable reference to the key in …","Converts the OccupiedEntry into a mutable reference to the …","Converts the OccupiedEntry into a mutable reference to the …","Converts the OccupiedEntry into a mutable reference to the …","If this iteratoris empty","Returns true if the map contains no elements.","Checks if the current backend is a map, if so returns true.","Checks if the current backend is a vector, if so returns …","An iterator visiting all key-value pairs in arbitrary …","An iterator visiting all key-value pairs in arbitrary …","Returns a reference to this entry’s key.","Gets a reference to the key in the entry.","Gets a reference to the key that would be used when …","Gets a reference to the key in the entry.","Gets a mutable reference to the key in the entry.","An iterator visiting all keys in arbitrary order. The …","","The length of this iterator","","","Returns the number of elements in the map.","Creates an empty HashMap.","","","","","","","","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the result of …","Ensures a value is in the entry by inserting the result of …","Creates a raw immutable entry builder for the HashMap.","Creates a raw entry builder for the HashMap.","Takes the value out of the entry, and returns it.","Takes the value out of the entry, and returns it.","Removes a key from the map, returning the value at the key …","Take the ownership of the key and value from the map.","Take the ownership of the key and value from the map.","Removes a key from the map, returning the stored key and …","Replaces the entry, returning the old key and value. The …","Replaces the key in the hash map with the key used to …","Reserves capacity for at least additional more elements to …","Retains only the elements specified by the predicate.","","Shrinks the capacity of the map as much as possible. It …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An iterator visiting all values in arbitrary order. The …","An iterator visiting all values mutably in arbitrary order.","Same as with capacity with the difference that it, despite …","Creates an empty HashMap with the specified capacity.","Creates an empty HashMap with the specified capacity, …","Creates an empty HashMap which will use the given hash …"],"i":[0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,1,4,0,0,0,1,4,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,5,5,7,5,7,5,5,5,5,5,5,5,5,5,1,23,24,25,4,26,27,28,7,5,1,1,23,24,40,41,25,25,4,4,26,26,27,27,28,28,42,44,45,18,7,5,25,28,5,25,28,25,28,23,26,5,26,26,23,26,5,5,0,5,23,24,4,26,27,5,27,26,5,27,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,40,41,42,44,45,18,7,5,5,24,26,26,23,26,40,5,5,5,5,5,1,23,24,26,26,5,40,40,41,7,5,5,40,41,42,44,45,18,7,1,1,4,1,4,5,5,23,26,5,23,26,5,23,23,5,5,5,5,40,41,42,44,45,18,7,7,5,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,1,23,24,40,41,25,4,26,27,28,42,44,45,18,7,5,5,5,5,5,5,5],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],1],[[[4,[3]],2],[[4,[3]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[5,6],[5],[7,7],[[[5,[8,8,8]]],[[5,[8,8,8]]]],[[]],[[]],[[[5,[[12,[[0,[9,10,11]]]],[0,[10,9]],3]],[0,[9,10,11]]],13],[[],[[5,[14]]]],[15,[[17,[[5,[[0,[10,9,16]],16,[0,[14,3]]]]]]]],[5,18],[[[5,[[0,[10,9]],14,3]],[0,[10,9]]],[[1,[[0,[10,9]],14,3]]]],[[[5,[[0,[10,9]],19]],[5,[[0,[10,9]],19,3]]],13],[[],13],[[],13],[[[1,[20,20]],21],22],[[[23,[20,20]],21],22],[[[24,[20]],21],22],[[25,21],22],[[[4,[20,20,3]],21],22],[[[26,[20,20,3]],21],22],[[27,21],22],[[28,21],22],[[[7,[20,20]],21],22],[[[5,[20,20]],21],22],[29,1],[[]],[[]],[[]],[[]],[[]],[[]],[30,25],[31,4],[[]],[[]],[32,26],[[]],[33,27],[[]],[34,28],[[]],[[]],[[]],[[]],[[]],[[]],[[[25,[3]],35,36],[[4,[3]]]],[[[28,[3]],35,36],37],[38,[[5,[[0,[10,9]],[0,[3,14]]]]]],[[[25,[[12,[[0,[9,10,11]]]],3]],[0,[9,10,11]]],[[4,[[12,[[0,[9,10,11]]]],3]]]],[[[28,[[12,[[0,[9,10,11]]]],3]],[0,[9,10,11]]],37],[[[25,[[12,[[0,[10,11]]]],3]],35,[0,[10,11]]],[[4,[[12,[[0,[10,11]]]],3]]]],[[[28,[[12,[[0,[9,10,11]]]],3]],35,[0,[9,10,11]]],37],[23],[[[26,[3]]]],[[[5,[[12,[[0,[11,9,10]]]],[0,[10,9]],3]],[0,[11,9,10]]],37],[[[26,[3]]]],[[[26,[3]]]],[23],[[[26,[3]]]],[[[5,[[12,[[0,[9,10,11]]]],[0,[10,9]],3]],[0,[9,10,11]]],37],[5],0,[[[5,[[0,[10,9,[12,[[0,[10,9,11]]]]]],3]],[0,[10,9,11]]]],[23],[[[24,[9,3]]]],[[[4,[9,3,3]],9],[[26,[9,3,3]]]],[[[26,[3]]]],[[[27,[9,3,3]],9]],[[[5,[[0,[10,9]],14,3]],[0,[10,9]]],37],[[[27,[9,3,3]],35,9]],[[[26,[3]]]],[[[5,[[0,[10,9]],14,3]],[0,[10,9]]]],[[[27,[3,3]],35,39]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[5,7],[5,40],[24],[[[26,[3]]]],[[[26,[3]]]],[23],[[[26,[3]]]],[40,13],[5,13],[[[5,[[0,[10,9]],3]]],13],[[[5,[[0,[10,9]],3]]],13],[5,7],[5,41],[1],[23],[24],[[[26,[3]]]],[[[26,[3]]]],[5,42],[40,6],[40,6],[41,6],[7,6],[5,6],[[],[[5,[43]]]],[40,37],[41,37],[42,37],[44,37],[45,37],[18,37],[7,37],[[[1,[9,14,3]]],14],[[[1,[9,3]]]],[[[4,[9,3,3]],9]],[[[1,[9,3]],2]],[[[4,[9,3,3]],2]],[[[5,[[0,[10,9]],3]]],[[28,[[0,[10,9]],3]]]],[[[5,[[0,[10,9]],14,3]]],[[25,[[0,[10,9]],14,3]]]],[23],[[[26,[3]]]],[[[5,[[12,[[0,[9,10,11]]]],[0,[10,9]],3]],[0,[9,10,11]]],37],[23],[[[26,[3]]]],[[[5,[[12,[[0,[9,10,11]]]],[0,[10,9]],3]],[0,[9,10,11]]],37],[23],[23],[[[5,[[0,[10,9]],3]],6]],[[[5,[[0,[10,9]],3]],36]],[[[5,[[0,[10,9,46]],46]],47],17],[[[5,[[0,[10,9]],3]]]],[40],[41],[42],[44],[45],[18],[7],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[5,44],[5,45],[6,[[5,[43]]]],[6,[[5,[43]]]],[6,5],[[],5]],"c":[],"p":[[4,"Entry"],[8,"FnOnce"],[8,"BuildHasher"],[4,"RawEntryMut"],[3,"SizedHashMap"],[15,"usize"],[3,"Iter"],[8,"Clone"],[8,"Hash"],[8,"Eq"],[8,"Sized"],[8,"Borrow"],[15,"bool"],[8,"Default"],[8,"Deserializer"],[8,"Deserialize"],[4,"Result"],[3,"Drain"],[8,"PartialEq"],[8,"Debug"],[3,"Formatter"],[6,"Result"],[3,"OccupiedEntry"],[3,"VacantEntry"],[3,"RawEntryBuilderMut"],[3,"RawOccupiedEntryMut"],[3,"RawVacantEntryMut"],[3,"RawEntryBuilder"],[4,"Entry"],[3,"RawEntryBuilderMut"],[4,"RawEntryMut"],[3,"RawOccupiedEntryMut"],[3,"RawVacantEntryMut"],[3,"RawEntryBuilder"],[15,"u64"],[8,"FnMut"],[4,"Option"],[8,"IntoIterator"],[8,"Fn"],[3,"IntoIter"],[3,"IterMut"],[3,"Keys"],[6,"DefaultHashBuilder"],[3,"Values"],[3,"ValuesMut"],[8,"Serialize"],[8,"Serializer"],[3,"TypeId"]]},\ "hash_hasher":{"doc":"A std::hash::Hasher which is designed to work with …","t":"GDGGLLLLLLLLLLLLL","n":["HashBuildHasher","HashHasher","HashedMap","HashedSet","borrow","borrow_mut","clone","clone_into","default","finish","from","into","to_owned","try_from","try_into","type_id","write"],"q":[[0,"hash_hasher"]],"d":["Alias for a BuildHasherDefault<HashHasher>.","A hasher which does minimal work to create the required u64…","Alias for a …","Alias for a std::collections::HashSet<K, HashBuildHasher>.","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","",""],"i":[0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1],"f":[0,0,0,0,[[]],[[]],[1,1],[[]],[[],1],[1,2],[[]],[[]],[[]],[[],3],[[],3],[[],4],[[1,[6,[5]]]]],"c":[],"p":[[3,"HashHasher"],[15,"u64"],[4,"Result"],[3,"TypeId"],[15,"u8"],[15,"slice"]]},\ "hashbrown":{"doc":"This crate is a Rust port of Google’s high-performance …","t":"NNIDDELLLLLLLLKLLLLAALLALLLLMGDEEDDDDDDDDNNNDDDDDEDDNNNDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDEDDDDDNDDDNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["AllocError","CapacityOverflow","Equivalent","HashMap","HashSet","TryReserveError","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","fmt","from","hash_map","hash_set","init","into","raw","to_owned","try_from","try_into","type_id","layout","DefaultHashBuilder","Drain","Entry","EntryRef","ExtractIf","HashMap","IntoIter","IntoKeys","IntoValues","Iter","IterMut","Keys","Occupied","Occupied","Occupied","OccupiedEntry","OccupiedEntryRef","OccupiedError","RawEntryBuilder","RawEntryBuilderMut","RawEntryMut","RawOccupiedEntryMut","RawVacantEntryMut","Vacant","Vacant","Vacant","VacantEntry","VacantEntryRef","Values","ValuesMut","allocator","and_modify","and_modify","and_modify","and_replace_entry_with","and_replace_entry_with","and_replace_entry_with","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clear","clone","clone","clone","clone","clone_from","clone_into","clone_into","clone_into","clone_into","contains_key","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drain","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","entry","entry","entry_ref","eq","equivalent","equivalent","extend","extend","extend","extract_if","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_hash","from_hash","from_iter","from_key","from_key","from_key_hashed_nocheck","from_key_hashed_nocheck","from_par_iter","get","get","get","get","get_key_value","get_key_value","get_key_value_mut","get_key_value_mut","get_many_key_value_mut","get_many_key_value_unchecked_mut","get_many_mut","get_many_unchecked_mut","get_mut","get_mut","get_mut","get_mut","hasher","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert","insert_hashed_nocheck","insert_key","insert_unique_unchecked","insert_with_hasher","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_key","into_key","into_key","into_key_value","into_keys","into_mut","into_mut","into_mut","into_par_iter","into_par_iter","into_par_iter","into_values","is_empty","iter","iter_mut","key","key","key","key","key","key","key","key_mut","keys","len","len","len","len","len","len","len","len","len","len","new","new_in","next","next","next","next","next","next","next","next","next","next","or_default","or_default","or_insert","or_insert","or_insert","or_insert_with","or_insert_with","or_insert_with","or_insert_with_key","or_insert_with_key","par_drain","par_eq","par_extend","par_extend","par_iter","par_iter_mut","par_keys","par_values","par_values_mut","raw_entry","raw_entry_mut","raw_table","raw_table_mut","rayon","remove","remove","remove","remove","remove_entry","remove_entry","remove_entry","remove_entry","replace_entry","replace_entry","replace_entry_with","replace_entry_with","replace_entry_with","replace_key","replace_key","reserve","retain","shrink_to","shrink_to_fit","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_insert","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_reserve","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value","values","values_mut","with_capacity","with_capacity_and_hasher","with_capacity_and_hasher_in","with_capacity_in","with_hasher","with_hasher_in","IntoParIter","ParDrain","ParIter","ParIterMut","ParKeys","ParValues","ParValuesMut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","Difference","Drain","Entry","ExtractIf","HashSet","Intersection","IntoIter","Iter","Occupied","OccupiedEntry","SymmetricDifference","Union","Vacant","VacantEntry","allocator","bitand","bitor","bitxor","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clear","clone","clone","clone","clone","clone","clone","clone_from","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","contains","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","difference","drain","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","entry","eq","equivalent","equivalent","extend","extend","extract_if","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_par_iter","get","get","get","get","get_or_insert","get_or_insert_owned","get_or_insert_with","hasher","init","init","init","init","init","init","init","init","init","init","init","init","insert","insert","insert","insert_unique_unchecked","intersection","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_par_iter","into_par_iter","into_value","is_disjoint","is_empty","is_subset","is_superset","iter","len","len","len","len","new","new_in","next","next","next","next","next","next","next","next","or_insert","par_difference","par_drain","par_eq","par_extend","par_extend","par_intersection","par_is_disjoint","par_is_subset","par_is_superset","par_iter","par_symmetric_difference","par_union","raw_table","raw_table_mut","rayon","remove","remove","replace","replace","reserve","retain","shrink_to","shrink_to_fit","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","sub","symmetric_difference","take","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_reserve","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","union","with_capacity","with_capacity_and_hasher","with_capacity_and_hasher_in","with_capacity_in","with_hasher","with_hasher_in","IntoParIter","ParDifference","ParDrain","ParIntersection","ParIter","ParSymmetricDifference","ParUnion","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","from","from","from","from","from","from","from","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","Bucket","InsertSlot","RawDrain","RawIntoIter","RawIter","RawIterHash","RawTable","allocation_info","allocator","as_mut","as_ptr","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bucket","bucket_index","buckets","capacity","clear","clear_no_drop","clone","clone","clone","clone_from","clone_from_with_hasher","clone_into","clone_into","clone_into","copy_from_nonoverlapping","data_end","data_start","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drain","drain_iter_from","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","erase","erase_entry","find","find_or_find_insert_slot","from","from","from","from","from","from","from","get","get_many_mut","get_many_unchecked_mut","get_mut","init","init","init","init","init","init","init","insert","insert_entry","insert_in_slot","insert_no_grow","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter_from","into_par_iter","is_bucket_full","is_empty","iter","iter","iter","iter_hash","len","new","new_in","next","next","next","next","par_drain","par_iter","rayon","reflect_insert","reflect_remove","remove","remove_entry","replace_bucket_with","reserve","shrink_to","size_hint","size_hint","size_hint","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_insert_no_grow","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_reserve","try_with_capacity","try_with_capacity_in","type_id","type_id","type_id","type_id","type_id","type_id","type_id","with_capacity","with_capacity_in","RawIntoParIter","RawParDrain","RawParIter","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","from","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"hashbrown"],[28,"hashbrown::TryReserveError"],[29,"hashbrown::hash_map"],[535,"hashbrown::hash_map::rayon"],[649,"hashbrown::hash_set"],[934,"hashbrown::hash_set::rayon"],[1032,"hashbrown::raw"],[1198,"hashbrown::raw::rayon"]],"d":["The memory allocator returned an error","Error due to the computed capacity exceeding the collection…","Key equivalence trait.","A hash map implemented with quadratic probing and SIMD …","A hash set implemented as a HashMap where the value is ().","The error type for try_reserve methods.","","","","","","","","","Checks if this value is equivalent to the given key.","","","","Returns the argument unchanged.","A hash map implemented with quadratic probing and SIMD …","A hash set implemented as a HashMap where the value is ().","","Calls U::from(self).","Experimental and unsafe RawTable API. This module is only …","","","","","The layout of the allocation request that failed.","Default hasher for HashMap.","A draining iterator over the entries of a HashMap in …","A view into a single entry in a map, which may either be …","A view into a single entry in a map, which may either be …","A draining iterator over entries of a HashMap which don’…","A hash map implemented with quadratic probing and SIMD …","An owning iterator over the entries of a HashMap in …","An owning iterator over the keys of a HashMap in arbitrary …","An owning iterator over the values of a HashMap in …","An iterator over the entries of a HashMap in arbitrary …","A mutable iterator over the entries of a HashMap in …","An iterator over the keys of a HashMap in arbitrary order. …","An occupied entry.","An occupied entry.","An occupied entry.","A view into an occupied entry in a HashMap. It is part of …","A view into an occupied entry in a HashMap. It is part of …","The error returned by try_insert when the key already …","A builder for computing where in a HashMap a key-value …","A builder for computing where in a HashMap a key-value …","A view into a single entry in a map, which may either be …","A view into an occupied entry in a HashMap. It is part of …","A view into a vacant entry in a HashMap. It is part of the …","A vacant entry.","A vacant entry.","A vacant entry.","A view into a vacant entry in a HashMap. It is part of the …","A view into a vacant entry in a HashMap. It is part of the …","An iterator over the values of a HashMap in arbitrary …","A mutable iterator over the values of a HashMap in …","Returns a reference to the underlying allocator.","Provides in-place mutable access to an occupied entry …","Provides in-place mutable access to an occupied entry …","Provides in-place mutable access to an occupied entry …","Provides shared access to the key and owned access to the …","Provides shared access to the key and owned access to the …","Provides shared access to the key and owned access to the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of elements the map can hold without …","Clears the map, removing all key-value pairs. Keeps the …","","","","","","","","","","Returns true if the map contains a value for the specified …","Creates an empty HashMap<K, V, S, A>, with the Default …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Clears the map, returning all key-value pairs as an …","","","","","","","","","","","","","","","","","","","","","","","","Gets the given key’s corresponding entry in the map for …","The entry in the map that was already occupied.","Gets the given key’s corresponding entry by reference in …","","","","Inserts all new key-values from the iterator to existing …","Inserts all new key-values from the iterator to existing …","Inserts all new key-values from the iterator to existing …","Drains elements which are true under the given predicate, …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Examples","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates a RawEntryMut from the given hash and matching …","Access an immutable entry by hash and matching function.","","Creates a RawEntryMut from the given key.","Access an immutable entry by key.","Creates a RawEntryMut from the given key and its hash.","Access an immutable entry by a key and its hash.","","Returns a reference to the value corresponding to the key.","Gets a reference to the value in the entry.","Gets a reference to the value in the entry.","Gets a reference to the value in the entry.","Returns the key-value pair corresponding to the supplied …","Gets a reference to the key and value in the entry.","Returns the key-value pair corresponding to the supplied …","Gets a mutable reference to the key and value in the entry.","Attempts to get mutable references to N values in the map …","Attempts to get mutable references to N values in the map …","Attempts to get mutable references to N values in the map …","Attempts to get mutable references to N values in the map …","Returns a mutable reference to the value corresponding to …","Gets a mutable reference to the value in the entry.","Gets a mutable reference to the value in the entry.","Gets a mutable reference to the value in the entry.","Returns a reference to the map’s BuildHasher.","Returns a reference to the value corresponding to the …","","","","","","","","","","","","","","","","","","","","","","","","Inserts a key-value pair into the map.","Sets the value of the entry, and returns a …","Sets the value of the entry, and returns the entry’s old …","Sets the value of the entry with the VacantEntry’s key, …","Sets the value of the entry, and returns an OccupiedEntry.","Sets the value of the entry, and returns the entry’s old …","Sets the value of the entry with the VacantEntry’s key, …","Sets the value of the entry, and returns an …","Sets the value of the entry, and returns the entry’s old …","Sets the value of the entry with the VacantEntryRef’s …","Sets the value of the entry with the VacantEntry’s key, …","Sets the value of the entry, and returns the entry’s old …","Insert a key-value pair into the map without checking if …","Set the value of an entry with a custom hasher function.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates an iterator over the entries of a HashMap in …","Creates an iterator over the entries of a HashMap in …","Creates a consuming iterator, that is, one that moves each …","","","","","","","","","","","Converts the entry into a mutable reference to the key in …","Take ownership of the key.","Take ownership of the key.","Converts the OccupiedEntry into a mutable reference to the …","Creates a consuming iterator visiting all the keys in …","Converts the OccupiedEntry into a mutable reference to the …","Converts the OccupiedEntry into a mutable reference to the …","Converts the OccupiedEntryRef into a mutable reference to …","","","","Creates a consuming iterator visiting all the values in …","Returns true if the map contains no elements.","An iterator visiting all key-value pairs in arbitrary …","An iterator visiting all key-value pairs in arbitrary …","Gets a reference to the key in the entry.","Returns a reference to this entry’s key.","Gets a reference to the key in the entry.","Gets a reference to the key that would be used when …","Returns a reference to this entry’s key.","Gets a reference to the key in the entry.","Gets a reference to the key that would be used when …","Gets a mutable reference to the key in the entry.","An iterator visiting all keys in arbitrary order. The …","Returns the number of elements in the map.","","","","","","","","","","Creates an empty HashMap.","Creates an empty HashMap using the given allocator.","","","","","","","","","","","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the result of …","Ensures a value is in the entry by inserting the result of …","Ensures a value is in the entry by inserting the result of …","Ensures a value is in the entry by inserting, if empty, …","Ensures a value is in the entry by inserting, if empty, …","Consumes (potentially in parallel) all values in an …","Returns true if the map is equal to another, i.e. both …","","","","","Visits (potentially in parallel) immutably borrowed keys …","Visits (potentially in parallel) immutably borrowed values …","Visits (potentially in parallel) mutably borrowed values …","Creates a raw immutable entry builder for the HashMap.","Creates a raw entry builder for the HashMap.","Returns a reference to the RawTable used underneath HashMap…","Returns a mutable reference to the RawTable used …","rayon-based parallel iterator types for hash maps. You …","Removes a key from the map, returning the value at the key …","Takes the value out of the entry, and returns it.","Takes the value out of the entry, and returns it. Keeps …","Takes the value out of the entry, and returns it. Keeps …","Removes a key from the map, returning the stored key and …","Take the ownership of the key and value from the map.","Take the ownership of the key and value from the map. …","Take the ownership of the key and value from the map. …","Replaces the entry, returning the old key and value. The …","Replaces the entry, returning the old key and value. The …","Provides shared access to the key and owned access to the …","Provides shared access to the key and owned access to the …","Provides shared access to the key and owned access to the …","Replaces the key in the hash map with the key used to …","Replaces the key in the hash map with the key used to …","Reserves capacity for at least additional more elements to …","Retains only the elements specified by the predicate. …","Shrinks the capacity of the map with a lower limit. It …","Shrinks the capacity of the map as much as possible. It …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Tries to insert a key-value pair into the map, and returns …","","","","","","","","","","","","","","","","","","","","","","","","Tries to reserve capacity for at least additional more …","","","","","","","","","","","","","","","","","","","","","","","","The value which was not inserted, because the entry was …","An iterator visiting all values in arbitrary order. The …","An iterator visiting all values mutably in arbitrary order.","Creates an empty HashMap with the specified capacity.","Creates an empty HashMap with the specified capacity, …","Creates an empty HashMap with the specified capacity, …","Creates an empty HashMap with the specified capacity using …","Creates an empty HashMap which will use the given hash …","Creates an empty HashMap which will use the given hash …","Parallel iterator over entries of a consumed map.","Parallel draining iterator over entries of a map.","Parallel iterator over shared references to entries in a …","Parallel iterator over mutable references to entries in a …","Parallel iterator over shared references to keys in a map.","Parallel iterator over shared references to values in a …","Parallel iterator over mutable references to values in a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A lazy iterator producing elements in the difference of …","A draining iterator over the items of a HashSet.","A view into a single entry in a set, which may either be …","A draining iterator over entries of a HashSet which don’…","A hash set implemented as a HashMap where the value is ().","A lazy iterator producing elements in the intersection of …","An owning iterator over the items of a HashSet.","An iterator over the items of a HashSet.","An occupied entry.","A view into an occupied entry in a HashSet. It is part of …","A lazy iterator producing elements in the symmetric …","A lazy iterator producing elements in the union of HashSet…","A vacant entry.","A view into a vacant entry in a HashSet. It is part of the …","Returns a reference to the underlying allocator.","Returns the intersection of self and rhs as a new …","Returns the union of self and rhs as a new HashSet<T, S>.","Returns the symmetric difference of self and rhs as a new …","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of elements the set can hold without …","Clears the set, removing all values.","","","","","","","","","","","","","","Returns true if the set contains a value.","Creates an empty HashSet<T, S> with the Default value for …","","","","","","","","","","","","","","","","","","","","","","","","","Visits the values representing the difference, i.e., the …","Clears the set, returning all elements in an iterator.","","","","","","","","","","","","","Gets the given value’s corresponding entry in the set …","","","","","","Drains elements which are true under the given predicate, …","","","","","","","","","","","","Returns the argument unchanged.","","Examples","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns a reference to the value in the set, if any, that …","Returns a reference to this entry’s value.","Gets a reference to the value in the entry.","Gets a reference to the value that would be used when …","Inserts the given value into the set if it is not present, …","Inserts an owned copy of the given value into the set if …","Inserts a value computed from f into the set if the given …","Returns a reference to the set’s BuildHasher.","","","","","","","","","","","","","Adds a value to the set.","Sets the value of the entry, and returns an OccupiedEntry.","Sets the value of the entry with the VacantEntry’s value.","Insert a value the set without checking if the value …","Visits the values representing the intersection, i.e., the …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a consuming iterator, that is, one that moves each …","","","","","","","","","","","","Take ownership of the value.","Returns true if self has no elements in common with other. …","Returns true if the set contains no elements.","Returns true if the set is a subset of another, i.e., other…","Returns true if the set is a superset of another, i.e., …","An iterator visiting all elements in arbitrary order. The …","Returns the number of elements in the set.","","","","Creates an empty HashSet.","Creates an empty HashSet.","","","","","","","","","Ensures a value is in the entry by inserting if it was …","Visits (potentially in parallel) the values representing …","Consumes (potentially in parallel) all values in an …","Returns true if the set is equal to another, i.e. both …","","","Visits (potentially in parallel) the values representing …","Returns true if self has no elements in common with other. …","Returns true if the set is a subset of another, i.e. other …","Returns true if the set is a superset of another, i.e. self…","","Visits (potentially in parallel) the values representing …","Visits (potentially in parallel) the values representing …","Returns a reference to the RawTable used underneath HashSet…","Returns a mutable reference to the RawTable used …","rayon-based parallel iterator types for hash sets. You …","Removes a value from the set. Returns whether the value was","Takes the value out of the entry, and returns it. Keeps …","Adds a value to the set, replacing the existing value, if …","Replaces the entry, returning the old value. The new value …","Reserves capacity for at least additional more elements to …","Retains only the elements specified by the predicate.","Shrinks the capacity of the set with a lower limit. It …","Shrinks the capacity of the set as much as possible. It …","","","","","","","","","Returns the difference of self and rhs as a new …","Visits the values representing the symmetric difference, …","Removes and returns the value in the set, if any, that is …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Tries to reserve capacity for at least additional more …","","","","","","","","","","","","","Visits the values representing the union, i.e., all the …","Creates an empty HashSet with the specified capacity.","Creates an empty HashSet with the specified capacity, using","Creates an empty HashSet with the specified capacity, using","Creates an empty HashSet with the specified capacity.","Creates a new empty hash set which will use the given …","Creates a new empty hash set which will use the given …","Parallel iterator over elements of a consumed set.","Parallel iterator over shared references to elements in …","Parallel draining iterator over entries of a set.","Parallel iterator over shared references to elements in …","Parallel iterator over shared references to elements in a …","Parallel iterator over shared references to elements in …","Parallel iterator over shared references to elements in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A reference to a hash table bucket containing a T.","A reference to an empty bucket into which an can be …","Iterator which consumes elements without freeing the table …","Iterator which consumes a table and returns elements.","Iterator which returns a raw pointer to every full bucket …","Iterator over occupied buckets that could match a given …","A raw hash table with an unsafe API.","Return the information about memory allocated by the table.","Returns a reference to the underlying allocator.","Returns a unique mutable reference to the value.","Acquires the underlying raw pointer *mut T to data.","Returns a shared immutable reference to the value.","","","","","","","","","","","","","","","Returns a pointer to an element in the table.","Returns the index of a bucket from a Bucket.","Returns the number of buckets in the table.","Returns the number of elements the map can hold without …","Removes all elements from the table without freeing the …","Marks all table buckets as empty without dropping their …","","","","","Variant of clone_from to use when a hasher is available.","","","","Copies size_of<T> bytes from other to self. The source and …","Returns pointer to one past last element of data table.","Returns pointer to start of data table.","","","","","","","","","","","","","","","","Returns an iterator which removes all elements from the …","Returns an iterator which removes all elements from the …","","","","","","","","","","","Erases an element from the table, dropping it in place.","Finds and erases an element from the table, dropping it in …","Searches for an element in the table.","Searches for an element in the table. If the element is …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Gets a reference to an element in the table.","Attempts to get mutable references to N entries in the …","","Gets a mutable reference to an element in the table.","","","","","","","","Inserts a new element into the table, and returns its raw …","Inserts a new element into the table, and returns a …","Inserts a new element into the table in the given slot, …","Inserts a new element into the table, without growing the …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","Returns an iterator which consumes all elements from the …","Returns a parallel iterator over the elements in a RawTable…","Checks whether the bucket at index is full.","Returns true if the table contains no elements.","Returns an iterator over every element in the table. It is …","","","Returns an iterator over occupied buckets that could match …","Returns the number of elements in the table.","Creates a new empty hash table without allocating any …","Creates a new empty hash table without allocating any …","","","","","Returns a parallel iterator which consumes all elements of …","Returns a parallel iterator over the elements in a RawTable…","rayon-based parallel iterator types for hash maps. You …","Refresh the iterator so that it reflects an insertion into …","Refresh the iterator so that it reflects a removal from …","Removes an element from the table, returning it.","Finds and removes an element from the table, returning it.","Temporary removes a bucket, applying the given function to …","Ensures that at least additional items can be inserted …","Shrinks the table to fit max(self.len(), min_size) …","","","","","","","","","","","","","","Attempts to insert a new element without growing the table …","","","","","","","","Tries to ensure that at least additional items can be …","Attempts to allocate a new hash table with at least enough …","Attempts to allocate a new hash table using the given …","","","","","","","","Allocates a new hash table with at least enough capacity …","Allocates a new hash table using the given allocator, with …","Parallel iterator which consumes a table and returns …","Parallel iterator which consumes elements without freeing …","Parallel iterator which returns a raw pointer to every …","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","",""],"i":[1,1,0,0,0,0,1,1,1,1,1,1,1,1,22,1,1,1,1,0,0,1,1,0,1,1,1,1,96,0,0,0,0,0,0,0,0,0,0,0,0,11,13,15,0,0,0,0,0,0,0,0,11,13,15,0,0,0,0,10,11,13,15,11,13,15,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,10,10,10,16,17,18,10,10,16,17,18,10,10,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,10,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,10,45,10,10,10,10,10,10,10,10,10,16,31,32,33,34,17,18,24,35,36,11,37,38,39,13,40,41,15,43,44,45,45,10,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,36,39,10,36,39,36,39,10,10,37,40,43,10,37,10,37,10,10,10,10,10,37,40,43,10,10,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,10,11,37,38,13,40,41,15,43,44,38,37,10,38,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,10,10,10,16,31,32,33,34,17,18,24,29,35,37,41,44,37,10,37,40,43,10,10,10,10,10,10,10,37,13,40,41,15,43,44,37,10,10,16,31,32,33,34,17,18,24,35,10,10,16,31,32,33,34,17,18,24,29,35,13,15,11,13,15,11,13,15,13,15,10,10,10,10,10,10,10,10,10,10,10,10,10,0,10,37,40,43,10,37,40,43,40,43,37,40,43,40,43,10,10,10,10,16,31,32,33,34,17,18,24,29,35,10,16,17,18,45,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,10,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,10,10,16,31,32,33,34,17,18,24,29,35,36,11,37,38,39,13,40,41,15,43,44,45,45,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,62,57,58,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,62,57,58,64,59,65,56,62,57,58,64,59,65,56,62,57,58,64,59,65,56,0,0,0,0,0,0,0,0,73,0,0,0,73,0,66,66,66,66,66,67,75,72,74,68,69,70,71,73,76,77,66,67,75,72,74,68,69,70,71,73,76,77,66,66,66,67,68,69,70,71,66,66,67,68,69,70,71,66,66,66,67,75,72,74,68,69,70,71,73,76,77,66,67,75,72,74,68,69,70,71,73,76,77,66,66,66,67,75,72,74,68,69,70,71,73,76,77,66,66,66,66,66,66,66,66,67,75,72,68,69,70,71,73,76,77,66,66,66,67,75,72,74,68,69,70,71,73,76,77,66,66,66,73,76,77,66,66,66,66,66,67,75,72,74,68,69,70,71,73,76,77,66,73,77,66,66,66,67,75,72,74,68,69,70,71,73,76,77,66,66,67,75,72,74,68,69,70,71,66,66,77,66,66,66,66,66,66,67,75,72,66,66,67,75,72,74,68,69,70,71,73,66,66,66,66,66,66,66,66,66,66,66,66,66,66,0,66,76,66,76,66,66,66,66,67,75,72,74,68,69,70,71,66,66,66,66,67,68,69,70,71,66,67,75,72,74,68,69,70,71,73,76,77,66,67,75,72,74,68,69,70,71,73,76,77,66,66,67,75,72,74,68,69,70,71,73,76,77,66,66,66,66,66,66,66,0,0,0,0,0,0,0,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,84,80,85,79,82,81,83,0,0,0,0,0,0,0,60,60,86,86,86,91,86,60,87,90,89,93,91,86,60,87,90,89,93,60,60,60,60,60,60,86,60,87,60,60,86,60,87,86,60,60,60,91,86,60,87,90,89,93,91,86,60,87,90,89,93,60,60,91,86,60,60,87,90,90,89,89,93,60,60,60,60,91,86,60,87,90,89,93,60,60,60,60,91,86,60,87,90,89,93,60,60,60,60,91,86,60,87,90,89,93,60,87,90,89,93,60,60,60,60,60,90,89,60,60,60,60,87,90,89,93,60,60,0,87,87,60,60,60,60,60,87,90,89,86,60,87,91,86,60,87,90,89,93,60,91,86,60,87,90,89,93,60,60,60,91,86,60,87,90,89,93,60,60,0,0,0,95,92,94,95,92,94,95,95,95,92,94,95,92,94,95,92,94,95,92,94,94,95,95,92,94,95,92,94,95,92,94,95,92,94,95,95,92,94,95,92,94,95,92,94],"f":[0,0,0,0,0,0,[[]],[[]],[1,1],[[]],[2],[2],[2],[[1,1],3],[[],3],[[],3],[[],3],[[1,4],5],[[]],0,0,[[],2],[[]],0,[[]],[[],6],[[],6],[[],7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[10,[[0,[8,9]]]]],[[0,[8,9]]]],[[[11,[[0,[8,9]]]],12],[[11,[[0,[8,9]]]]]],[[[13,[[0,[8,9]]]],12],[[13,[[0,[8,9]]]]]],[[[15,[14,[0,[8,9]]]],12],[[15,[14,[0,[8,9]]]]]],[[[11,[[0,[8,9]]]],12],[[11,[[0,[8,9]]]]]],[[[13,[[0,[8,9]]]],12],[[13,[[0,[8,9]]]]]],[[[15,[14,[0,[8,9]]]],12],[[15,[14,[0,[8,9]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[10,[[0,[8,9]]]]],2],[[[10,[[0,[8,9]]]]]],[[[10,[9,9,9,[0,[8,9]]]]],[[10,[9,9,9,[0,[8,9]]]]]],[16,16],[17,17],[18,18],[[[10,[9,9,9,[0,[8,9]]]],[10,[9,9,9,[0,[8,9]]]]]],[[]],[[]],[[]],[[]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],3],[[],[[10,[23,[0,[23,8,9]]]]]],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[10,[[0,[8,9]]]]],[[24,[[0,[8,9]]]]]],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[19,20]]],[[13,[[0,[19,20]],21,[0,[8,9]]]]]],0,[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],[[15,[[0,[19,20]],[0,[20,[22,[[0,[19,20]]]],14]],21,[0,[8,9]]]]]],[[[10,[[0,[19,20]],25,21,[0,[8,9]]]],[10,[[0,[19,20]],25,21,[0,[8,9]]]]],3],[[],3],[[],3],[[[10,[[0,[19,20]],21,[0,[8,9]]]],26]],[[[10,[[0,[19,20,27]],27,21,[0,[8,9]]]],26]],[[[10,[[0,[19,20,27]],27,21,[0,[8,9]]]],26]],[[[10,[[0,[8,9]]]],28],[[29,[28,[0,[8,9]]]]]],[[[10,[30,30,[0,[8,9]]]],4],5],[[[16,[30,30]],4],5],[[[31,[30,30]],4],5],[[[32,[30,30,[0,[8,9]]]],4],5],[[[33,[30,30,[0,[8,9]]]],4],5],[[[34,[30,[0,[8,9]]]],4],5],[[[17,[30]],4],5],[[[18,[30]],4],5],[[[24,[30,30,[0,[8,9]]]],4],5],[[[35,[30]],4],5],[[[36,[[0,[8,9]]]],4],5],[[[11,[30,30,[0,[8,9]]]],4],5],[[[37,[30,30,[0,[8,9]]]],4],5],[[[38,[[0,[8,9]]]],4],5],[[[39,[[0,[8,9]]]],4],5],[[[13,[30,30,[0,[8,9]]]],4],5],[[[40,[30,30,[0,[8,9]]]],4],5],[[[41,[30,[0,[8,9]]]],4],5],[[[15,[[42,[[0,[14,30]]]],[0,[14,30]],30,[0,[8,9]]]],4],5],[[[43,[[42,[[0,[14,30]]]],[0,[14,30]],30,[0,[8,9]]]],4],5],[[[44,[[42,[[0,[14,30]]]],[0,[14,30]],[0,[8,9]]]],4],5],[[[45,[30,30,[0,[8,9]]]],4],5],[[[45,[30,30,[0,[8,9]]]],4],5],[[]],[46,[[10,[[0,[19,20]],47,[0,[23,8,9]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[36,[[0,[8,9]]]],48,28],[[11,[[0,[8,9]]]]]],[[[39,[[0,[8,9]]]],48,28],49],[26,[[10,[[0,[19,20]],[0,[21,23]],[0,[23,8,9]]]]]],[[[36,[21,[0,[8,9]]]],[0,[20,22,14]]],[[11,[21,[0,[8,9]]]]]],[[[39,[21,[0,[8,9]]]],[0,[20,22,14]]],49],[[[36,[[0,[8,9]]]],48,[0,[22,14]]],[[11,[[0,[8,9]]]]]],[[[39,[[0,[8,9]]]],48,[0,[22,14]]],49],[50,[[10,[[0,[19,20,51]],51,[0,[21,23]],52]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],49],[[[37,[[0,[8,9]]]]]],[[[40,[[0,[8,9]]]]]],[[[43,[14,[0,[8,9]]]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],49],[[[37,[[0,[8,9]]]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],49],[[[37,[[0,[8,9]]]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[46,[[0,[20,[22,[[0,[19,20]]]],14]]]]],[[49,[46]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[46,[[0,[20,[22,[[0,[19,20]]]],14]]]]],[[49,[46]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[46,[[0,[20,[22,[[0,[19,20]]]],14]]]]],[[49,[46]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[46,[[0,[20,[22,[[0,[19,20]]]],14]]]]],[[49,[46]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],49],[[[37,[[0,[8,9]]]]]],[[[40,[[0,[8,9]]]]]],[[[43,[14,[0,[8,9]]]]]],[[[10,[[0,[8,9]]]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[19,20]]],49],[[[11,[20,21,[0,[8,9]]]],20],[[37,[20,21,[0,[8,9]]]]]],[[[37,[[0,[8,9]]]]]],[[[38,[20,21,[0,[8,9]]]],20]],[[[13,[20,21,[0,[8,9]]]]],[[40,[20,21,[0,[8,9]]]]]],[[[40,[[0,[8,9]]]]]],[[[41,[20,21,[0,[8,9]]]]]],[[[15,[[0,[20,[53,[14]]]],14,21,[0,[8,9]]]]],[[43,[[0,[20,[53,[14]]]],14,21,[0,[8,9]]]]]],[[[43,[14,[0,[8,9]]]]]],[[[44,[[0,[20,[53,[14]]]],14,21,[0,[8,9]]]]]],[[[38,[20,21,[0,[8,9]]]],48,20]],[[[37,[[0,[8,9]]]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[19,20]]]],[[[38,[[0,[8,9]]]],48,54]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[10,[[0,[8,9]]]]],16],[[[10,[[0,[8,9]]]]],31],[[[10,[[0,[8,9]]]]],[[32,[[0,[8,9]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[37,[[0,[8,9]]]]]],[[[41,[[0,[8,9]]]]]],[[[44,[[53,[14]],14,[0,[8,9]]]]],[[53,[14]]]],[[[37,[[0,[8,9]]]]]],[[[10,[[0,[8,9]]]]],[[33,[[0,[8,9]]]]]],[[[37,[[0,[8,9]]]]]],[[[40,[[0,[8,9]]]]]],[[[43,[14,[0,[8,9]]]]]],[[[10,[51,51,[0,[8,9,51]]]]]],[[[10,[55,55,[0,[8,9]]]]]],[[[10,[55,51,[0,[8,9]]]]]],[[[10,[[0,[8,9]]]]],[[34,[[0,[8,9]]]]]],[[[10,[[0,[8,9]]]]],3],[[[10,[[0,[8,9]]]]],16],[[[10,[[0,[8,9]]]]],31],[[[37,[[0,[8,9]]]]]],[[[13,[[0,[8,9]]]]]],[[[40,[[0,[8,9]]]]]],[[[41,[[0,[8,9]]]]]],[[[15,[[42,[14]],14,[0,[8,9]]]]],14],[[[43,[14,[0,[8,9]]]]]],[[[44,[[42,[14]],14,[0,[8,9]]]]],14],[[[37,[[0,[8,9]]]]]],[[[10,[[0,[8,9]]]]],17],[[[10,[[0,[8,9]]]]],2],[16,2],[31,2],[[[32,[[0,[8,9]]]]],2],[[[33,[[0,[8,9]]]]],2],[[[34,[[0,[8,9]]]]],2],[17,2],[18,2],[[[24,[[0,[8,9]]]]],2],[35,2],[[],[[10,[47]]]],[[[0,[8,9]]],[[10,[47,[0,[8,9]]]]]],[16,49],[31,49],[[[32,[[0,[8,9]]]]],49],[[[33,[[0,[8,9]]]]],49],[[[34,[[0,[8,9]]]]],49],[17,49],[18,49],[[[24,[[0,[8,9]]]]],49],[[[29,[28,[0,[8,9]]]]],49],[35,49],[[[13,[20,23,21,[0,[8,9]]]]],23],[[[15,[[0,[20,[53,[14]]]],14,23,21,[0,[8,9]]]]],23],[[[11,[20,21,[0,[8,9]]]],20]],[[[13,[20,21,[0,[8,9]]]]]],[[[15,[[0,[20,[53,[14]]]],14,21,[0,[8,9]]]]]],[[[11,[20,21,[0,[8,9]]]],12]],[[[13,[20,21,[0,[8,9]]]],12]],[[[15,[[0,[20,[53,[14]]]],14,21,[0,[8,9]]]],12]],[[[13,[20,21,[0,[8,9]]]],12]],[[[15,[[0,[20,[42,[14]],[53,[14]]]],14,21,[0,[8,9]]]],12]],[[[10,[51,51,[0,[8,9]]]]],[[56,[51,51,[0,[8,9]]]]]],[[[10,[[0,[19,20,55]],[0,[25,55]],[0,[21,55]],[0,[8,9,55]]]],[10,[[0,[19,20,55]],[0,[25,55]],[0,[21,55]],[0,[8,9,55]]]]],3],[[[10,[[0,[27,19,20,55]],[0,[27,55]],21,[0,[8,9]]]],50]],[[[10,[[0,[19,20,51]],51,21,[0,[8,9]]]],50]],[[]],[[]],[[[10,[55,55,[0,[8,9]]]]],[[57,[55,55]]]],[[[10,[55,55,[0,[8,9]]]]],[[58,[55,55]]]],[[[10,[51,51,[0,[8,9]]]]],[[59,[51,51]]]],[[[10,[[0,[8,9]]]]],[[39,[[0,[8,9]]]]]],[[[10,[[0,[8,9]]]]],[[36,[[0,[8,9]]]]]],[[[10,[[0,[8,9]]]]],[[60,[[0,[8,9]]]]]],[[[10,[[0,[8,9]]]]],[[60,[[0,[8,9]]]]]],0,[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],49],[[[37,[[0,[8,9]]]]]],[[[40,[[0,[8,9]]]]]],[[[43,[14,[0,[8,9]]]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],49],[[[37,[[0,[8,9]]]]]],[[[40,[[0,[8,9]]]]]],[[[43,[14,[0,[8,9]]]]]],[[[40,[[0,[8,9]]]]]],[[[43,[[53,[14]],14,[0,[8,9]]]]]],[[[37,[[0,[8,9]]]],12],[[11,[[0,[8,9]]]]]],[[[40,[[0,[8,9]]]],12],[[13,[[0,[8,9]]]]]],[[[43,[14,[0,[8,9]]]],12],[[15,[14,[0,[8,9]]]]]],[[[40,[[0,[8,9]]]]]],[[[43,[[53,[14]],14,[0,[8,9]]]]],[[53,[14]]]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],2]],[[[10,[[0,[8,9]]]],28]],[[[10,[[0,[19,20]],21,[0,[8,9]]]],2]],[[[10,[[0,[19,20]],21,[0,[8,9]]]]]],[16],[31],[[[32,[[0,[8,9]]]]]],[[[33,[[0,[8,9]]]]]],[[[34,[[0,[8,9]]]]]],[17],[18],[[[24,[[0,[8,9]]]]]],[[[29,[28,[0,[8,9]]]]]],[35],[[]],[[]],[[]],[[]],[[],61],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[[10,[[0,[19,20]],21,[0,[8,9]]]],[0,[19,20]]],[[6,[[45,[[0,[19,20]],21,[0,[8,9]]]]]]]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[[10,[[0,[19,20]],21,[0,[8,9]]]],2],[[6,[1]]]],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],0,[[[10,[[0,[8,9]]]]],18],[[[10,[[0,[8,9]]]]],35],[2,[[10,[47]]]],[2,10],[[2,[0,[8,9]]],[[10,[[0,[8,9]]]]]],[[2,[0,[8,9]]],[[10,[47,[0,[8,9]]]]]],[[],10],[[[0,[8,9]]],[[10,[[0,[8,9]]]]]],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[62,62],[57,57],[58,58],[[]],[[]],[[]],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[62,[55,55]],63]],[[[57,[55,55]],63]],[[[58,[55,55]],63]],[[[64,[55,51]],63]],[[[59,[55,51]],63]],[[[65,[51,51,[0,[8,9,51]]]],63]],[[[56,[51,51,[0,[8,9,55]]]],63]],[2],[2],[2],[2],[2],[2],[2],[[[62,[[0,[30,19,20]],30]],4],5],[[[57,[[0,[30,19,20]]]],4],5],[[[58,[[0,[19,20]],30]],4],5],[[[64,[[0,[30,19,20]],30]],4],5],[[[59,[[0,[19,20]],30]],4],5],[[[65,[[0,[30,19,20]],30,[0,[8,9]]]],4],5],[[[56,[[0,[30,19,20]],30,[0,[8,9]]]],4],5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[66,[[0,[8,9]]]]],[[0,[8,9]]]],[[[66,[[0,[19,20,9]],[0,[21,23]],[0,[8,9]]]],[66,[[0,[19,20,9]],[0,[21,23]],[0,[8,9]]]]],[[66,[[0,[19,20,9]],[0,[21,23]]]]]],[[[66,[[0,[19,20,9]],[0,[21,23]],[0,[8,9]]]],[66,[[0,[19,20,9]],[0,[21,23]],[0,[8,9]]]]],[[66,[[0,[19,20,9]],[0,[21,23]]]]]],[[[66,[[0,[19,20,9]],[0,[21,23]]]],[66,[[0,[19,20,9]],[0,[21,23]]]]],[[66,[[0,[19,20,9]],[0,[21,23]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[66,[[0,[8,9]]]]],2],[[[66,[[0,[8,9]]]]]],[[[66,[9,9,[0,[8,9]]]]],[[66,[9,9,[0,[8,9]]]]]],[67,67],[[[68,[[0,[8,9]]]]],[[68,[[0,[8,9]]]]]],[[[69,[[0,[8,9]]]]],[[69,[[0,[8,9]]]]]],[[[70,[[0,[8,9]]]]],[[70,[[0,[8,9]]]]]],[[[71,[[0,[8,9]]]]],[[71,[[0,[8,9]]]]]],[[[66,[9,9,[0,[8,9]]]],[66,[9,9,[0,[8,9]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],3],[[],[[66,[23,[0,[23,8,9]]]]]],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[66,[[0,[19,20]],21,[0,[8,9]]]]],[[69,[[0,[19,20]],21,[0,[8,9]]]]]],[[[66,[[0,[8,9]]]]],[[72,[[0,[8,9]]]]]],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[19,20]]],[[73,[[0,[19,20]],21,[0,[8,9]]]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[66,[[0,[19,20]],21,[0,[8,9]]]]],3],[[],3],[[],3],[[[66,[[0,[19,20,27]],21,[0,[8,9]]]],26]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],26]],[[[66,[[0,[8,9]]]],28],[[74,[28,[0,[8,9]]]]]],[[[66,[30,[0,[8,9]]]],4],5],[[[67,[30]],4],5],[[[75,[30,[0,[8,9]]]],4],5],[[[72,[30,[0,[8,9]]]],4],5],[[[68,[[0,[30,19,20]],21,[0,[8,9]]]],4],5],[[[69,[[0,[30,19,20]],21,[0,[8,9]]]],4],5],[[[70,[[0,[30,19,20]],21,[0,[8,9]]]],4],5],[[[71,[[0,[30,19,20]],21,[0,[8,9]]]],4],5],[[[73,[30,[0,[8,9]]]],4],5],[[[76,[30,[0,[8,9]]]],4],5],[[[77,[30,[0,[8,9]]]],4],5],[[]],[[[10,[[0,[8,9]]]]],[[66,[[0,[8,9]]]]]],[[[46,[[0,[19,20]]]]],[[66,[[0,[19,20]],47,[0,[23,8,9]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[26,[[66,[[0,[19,20]],[0,[21,23]],[0,[23,8,9]]]]]],[50,[[66,[[0,[19,20,51]],[0,[21,23]],52]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],[[49,[[0,[19,20]]]]]],[[[73,[[0,[8,9]]]]]],[[[76,[[0,[8,9]]]]]],[[[77,[[0,[8,9]]]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[19,20]]],[[0,[19,20]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],78,14]]],[[0,[19,20]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]],12],[[0,[19,20]]]],[[[66,[[0,[8,9]]]]]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[19,20]]],3],[[[73,[20,21,[0,[8,9]]]]],[[76,[20,21,[0,[8,9]]]]]],[[[77,[20,21,[0,[8,9]]]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[19,20]]],[[0,[19,20]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[66,[[0,[19,20]],21,[0,[8,9]]]]],[[68,[[0,[19,20]],21,[0,[8,9]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[66,[[0,[8,9]]]]],[[75,[[0,[8,9]]]]]],[[[66,[[0,[8,9]]]]],67],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[66,[55,[0,[8,9]]]]]],[[[66,[51,[0,[8,9,51]]]]]],[[[77,[[0,[8,9]]]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[66,[[0,[19,20]],21,[0,[8,9]]]]],3],[[[66,[[0,[8,9]]]]],3],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[66,[[0,[19,20]],21,[0,[8,9]]]]],3],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[66,[[0,[19,20]],21,[0,[8,9]]]]],3],[[[66,[[0,[8,9]]]]],67],[[[66,[[0,[8,9]]]]],2],[67,2],[[[75,[[0,[8,9]]]]],2],[[[72,[[0,[8,9]]]]],2],[[],[[66,[47]]]],[[[0,[8,9]]],[[66,[[0,[20,19]],47,[0,[8,9]]]]]],[67,49],[[[75,[[0,[8,9]]]]],49],[[[72,[[0,[8,9]]]]],49],[[[74,[28,[0,[8,9]]]]],49],[[[68,[[0,[19,20]],21,[0,[8,9]]]]],[[49,[[0,[19,20]]]]]],[[[69,[[0,[19,20]],21,[0,[8,9]]]]],[[49,[[0,[19,20]]]]]],[[[70,[[0,[19,20]],21,[0,[8,9]]]]],[[49,[[0,[19,20]]]]]],[[[71,[[0,[19,20]],21,[0,[8,9]]]]],[[49,[[0,[19,20]]]]]],[[[73,[20,21,[0,[8,9]]]]]],[[[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]],[[79,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]]],[[[66,[[0,[19,20,51]],[0,[8,9,51]]]]],[[80,[[0,[19,20,51]],[0,[8,9,51]]]]]],[[[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]],3],[[[66,[[0,[27,19,20,55]],21,52]],50]],[[[66,[[0,[19,20,51]],21,52]],50]],[[[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]],[[81,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]]],[[[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]],3],[[[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]],3],[[[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]],3],[[]],[[[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]],[[82,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]]],[[[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],[66,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]],[[83,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]]]],[[[66,[[0,[8,9]]]]],[[60,[[0,[8,9]]]]]],[[[66,[[0,[8,9]]]]],[[60,[[0,[8,9]]]]]],0,[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],3],[[[76,[[0,[8,9]]]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[19,20]]],[[49,[[0,[19,20]]]]]],[[[76,[[0,[8,9]]]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],2]],[[[66,[[0,[8,9]]]],28]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],2]],[[[66,[[0,[19,20]],21,[0,[8,9]]]]]],[67],[[[75,[[0,[8,9]]]]]],[[[72,[[0,[8,9]]]]]],[[[74,[28,[0,[8,9]]]]]],[[[68,[[0,[19,20]],21,[0,[8,9]]]]]],[[[69,[[0,[19,20]],21,[0,[8,9]]]]]],[[[70,[[0,[19,20]],21,[0,[8,9]]]]]],[[[71,[[0,[19,20]],21,[0,[8,9]]]]]],[[[66,[[0,[19,20,9]],[0,[21,23]]]],[66,[[0,[19,20,9]],[0,[21,23]]]]],[[66,[[0,[19,20,9]],[0,[21,23]]]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[66,[[0,[19,20]],21,[0,[8,9]]]]],[[70,[[0,[19,20]],21,[0,[8,9]]]]]],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[0,[20,[22,[[0,[19,20]]]],14]]],[[49,[[0,[19,20]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[[66,[[0,[19,20]],21,[0,[8,9]]]],2],[[6,[1]]]],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[[66,[[0,[19,20]],21,[0,[8,9]]]],[66,[[0,[19,20]],21,[0,[8,9]]]]],[[71,[[0,[19,20]],21,[0,[8,9]]]]]],[2,[[66,[47]]]],[2,[[66,[52]]]],[[2,[0,[8,9]]],[[66,[[0,[8,9]]]]]],[[2,[0,[8,9]]],[[66,[[0,[20,19]],47,[0,[8,9]]]]]],[[],[[66,[52]]]],[[[0,[8,9]]],[[66,[[0,[8,9]]]]]],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[84,[51,[0,[8,9,51]]]],63]],[[[80,[51,[0,[8,9,51,55]]]],63]],[[[85,[55]],63]],[[[79,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],63]],[[[82,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],63]],[[[81,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],63]],[[[83,[[0,[19,20,55]],[0,[21,55]],[0,[8,9,55]]]],63]],[2],[2],[2],[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],0,0,0,0,0,0,0,[[[60,[[0,[8,9]]]]]],[[[60,[[0,[8,9]]]]],[[0,[8,9]]]],[86],[86],[86],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[60,[[0,[8,9]]]],2],86],[[[60,[[0,[8,9]]]],86],2],[[[60,[[0,[8,9]]]]],2],[[[60,[[0,[8,9]]]]],2],[[[60,[[0,[8,9]]]]]],[[[60,[[0,[8,9]]]]]],[86,86],[[[60,[9,[0,[8,9]]]]],[[60,[9,[0,[8,9]]]]]],[87,87],[[[60,[9,[0,[8,9]]]],[60,[9,[0,[8,9]]]]]],[[[60,[9,[0,[8,9]]]],[60,[9,[0,[8,9]]]],54]],[[]],[[]],[[]],[[86,86]],[[[60,[[0,[8,9]]]]],88],[[[60,[[0,[8,9]]]]],88],[[],[[60,[[0,[8,9,23]]]]]],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[60,[[0,[8,9]]]]],[[89,[[0,[8,9]]]]]],[[[60,[[0,[8,9]]]],87],[[89,[[0,[8,9]]]]]],[2],[2],[[[60,[[0,[8,9]]]]]],[2],[2],[2],[[[90,[[0,[8,9]]]]]],[[[89,[[0,[8,9]]]]]],[2],[2],[[[60,[[0,[8,9]]]],86]],[[[60,[[0,[8,9]]]],48,28],3],[[[60,[[0,[8,9]]]],48,28],[[49,[86]]]],[[[60,[[0,[8,9]]]],48,28,54],[[6,[86,91]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[60,[[0,[8,9]]]],48,28],49],[[[60,[[0,[8,9]]]],[46,[48]],28],[[49,[46]]]],[[[60,[[0,[8,9]]]],[46,[48]],28],[[49,[46]]]],[[[60,[[0,[8,9]]]],48,28],49],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[[60,[[0,[8,9]]]],48,54],86],[[[60,[[0,[8,9]]]],48,54]],[[[60,[[0,[8,9]]]],48,91],86],[[[60,[[0,[8,9]]]],48],86],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[60,[[0,[8,9]]]]],[[90,[[0,[8,9]]]]]],[[]],[[]],[[]],[[]],[[[60,[[0,[8,9]]]],87],[[90,[[0,[8,9]]]]]],[[[60,[[0,[8,9]]]]],[[92,[[0,[8,9]]]]]],[[[60,[[0,[8,9]]]],2],3],[[[60,[[0,[8,9]]]]],3],[[[60,[[0,[8,9]]]]],87],[[[90,[[0,[8,9]]]]],87],[[[89,[[0,[8,9]]]]],87],[[[60,[[0,[8,9]]]],48],93],[[[60,[[0,[8,9]]]]],2],[[],[[60,[52]]]],[[[0,[8,9]]],[[60,[[0,[8,9]]]]]],[87,[[49,[86]]]],[[[90,[[0,[8,9]]]]],49],[[[89,[[0,[8,9]]]]],49],[93,[[49,[86]]]],[[[60,[[0,[8,9]]]]],[[94,[[0,[8,9]]]]]],[[[60,[[0,[8,9]]]]],95],0,[[87,86]],[[87,86]],[[[60,[[0,[8,9]]]],86]],[[[60,[[0,[8,9]]]],48,28],49],[[[60,[[0,[8,9]]]],86,12],3],[[[60,[[0,[8,9]]]],2,54]],[[[60,[[0,[8,9]]]],2,54]],[87],[[[90,[[0,[8,9]]]]]],[[[89,[[0,[8,9]]]]]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[[60,[[0,[8,9]]]],48],[[6,[86]]]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[[60,[[0,[8,9]]]],2,54],[[6,[1]]]],[2,[[6,[[60,[52]],1]]]],[[2,[0,[8,9]]],[[6,[[60,[[0,[8,9]]]],1]]]],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[2,[[60,[52]]]],[[2,[0,[8,9]]],[[60,[[0,[8,9]]]]]],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[95,95],[[]],[2],[2],[2],[2],[2],[2],[[95,63]],[[[92,[51,[0,[8,9,51]]]],63]],[[[94,[51,[0,[8,9]]]],63]],[2],[2],[[[94,[[0,[8,9]]]]]],[2],[[]],[87,95],[[]],[[]],[[],2],[[],2],[[],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],7],[[],7],[[],7]],"c":[],"p":[[4,"TryReserveError"],[15,"usize"],[15,"bool"],[3,"Formatter"],[6,"Result"],[4,"Result"],[3,"TypeId"],[8,"Allocator"],[8,"Clone"],[3,"HashMap"],[4,"RawEntryMut"],[8,"FnOnce"],[4,"Entry"],[8,"Sized"],[4,"EntryRef"],[3,"Iter"],[3,"Keys"],[3,"Values"],[8,"Eq"],[8,"Hash"],[8,"BuildHasher"],[8,"Equivalent"],[8,"Default"],[3,"Drain"],[8,"PartialEq"],[8,"IntoIterator"],[8,"Copy"],[8,"FnMut"],[3,"ExtractIf"],[8,"Debug"],[3,"IterMut"],[3,"IntoIter"],[3,"IntoKeys"],[3,"IntoValues"],[3,"ValuesMut"],[3,"RawEntryBuilderMut"],[3,"RawOccupiedEntryMut"],[3,"RawVacantEntryMut"],[3,"RawEntryBuilder"],[3,"OccupiedEntry"],[3,"VacantEntry"],[8,"Borrow"],[3,"OccupiedEntryRef"],[3,"VacantEntryRef"],[3,"OccupiedError"],[15,"array"],[6,"DefaultHashBuilder"],[15,"u64"],[4,"Option"],[8,"IntoParallelIterator"],[8,"Send"],[3,"Global"],[8,"From"],[8,"Fn"],[8,"Sync"],[3,"ParDrain"],[3,"ParKeys"],[3,"ParValues"],[3,"ParValuesMut"],[3,"RawTable"],[3,"String"],[3,"ParIter"],[8,"UnindexedConsumer"],[3,"ParIterMut"],[3,"IntoParIter"],[3,"HashSet"],[3,"Iter"],[3,"Intersection"],[3,"Difference"],[3,"SymmetricDifference"],[3,"Union"],[3,"Drain"],[4,"Entry"],[3,"ExtractIf"],[3,"IntoIter"],[3,"OccupiedEntry"],[3,"VacantEntry"],[8,"ToOwned"],[3,"ParDifference"],[3,"ParDrain"],[3,"ParIntersection"],[3,"ParSymmetricDifference"],[3,"ParUnion"],[3,"IntoParIter"],[3,"ParIter"],[3,"Bucket"],[3,"RawIter"],[3,"NonNull"],[3,"RawDrain"],[3,"RawIntoIter"],[3,"InsertSlot"],[3,"RawIntoParIter"],[3,"RawIterHash"],[3,"RawParDrain"],[3,"RawParIter"],[13,"AllocError"]]},\ "heck":{"doc":"heck is a case conversion library.","t":"DDDDDDDDDDDKIIIIIIIIIIILLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKKKKLLLLLLLLKKKLLLLLLLLLLLLLLLLLLLLLLLL","n":["AsKebabCase","AsLowerCamelCase","AsPascalCase","AsShoutyKebabCase","AsShoutySnakeCase","AsShoutySnekCase","AsSnakeCase","AsSnekCase","AsTitleCase","AsTrainCase","AsUpperCamelCase","TO_SHOUTY_SNEK_CASE","ToKebabCase","ToLowerCamelCase","ToPascalCase","ToShoutyKebabCase","ToShoutySnakeCase","ToShoutySnekCase","ToSnakeCase","ToSnekCase","ToTitleCase","ToTrainCase","ToUpperCamelCase","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","to_kebab_case","to_lower_camel_case","to_pascal_case","to_shouty_kebab_case","to_shouty_snake_case","to_snake_case","to_snek_case","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_title_case","to_train_case","to_upper_camel_case","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id"],"q":[[0,"heck"]],"d":["This wrapper performs a kebab case conversion in …","This wrapper performs a lower camel case conversion in …","This wrapper performs a upper camel case conversion in …","This wrapper performs a kebab case conversion in …","This wrapper performs a shouty snake case conversion in …","This wrapper performs a shouty snake case conversion in …","This wrapper performs a snake case conversion in …","This wrapper performs a snake case conversion in …","This wrapper performs a title case conversion in …","This wrapper performs a train case conversion in …","This wrapper performs a upper camel case conversion in …","CONVERT THIS TYPE TO SNEK CASE.","This trait defines a kebab case conversion.","This trait defines a lower camel case conversion.","ToPascalCase is an alias for ToUpperCamelCase. See …","This trait defines a shouty kebab case conversion.","This trait defines a shouty snake case conversion.","Oh heck, ToShoutySnekCase is an alias for …","This trait defines a snake case conversion.","Oh heck, SnekCase is an alias for ToSnakeCase. See …","This trait defines a title case conversion.","This trait defines a train case conversion.","This trait defines an upper camel case conversion.","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Convert this type to kebab case.","Convert this type to lower camel case.","Convert this type to upper camel case.","Convert this type to shouty kebab case.","Convert this type to shouty snake case.","Convert this type to snake case.","Convert this type to snek case.","","","","","","","","","Convert this type to title case.","Convert this type to Train-Case.","Convert this type to upper camel case.","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,3,6,7,8,9,10,11,12,3,6,7,8,9,10,11,12,3,6,7,8,9,10,11,12,3,6,7,8,9,10,11,12,3,6,7,8,9,10,11,12,17,18,19,20,21,22,23,3,6,7,8,9,10,11,12,24,25,26,3,6,7,8,9,10,11,12,3,6,7,8,9,10,11,12,3,6,7,8,9,10,11,12],"f":[0,0,0,0,0,0,0,0,0,0,0,[[]],0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[3,[[2,[1]]]],4],5],[[[6,[[2,[1]]]],4],5],[[[7,[[2,[1]]]],4],5],[[[8,[[2,[1]]]],4],5],[[[9,[[2,[1]]]],4],5],[[[10,[[2,[1]]]],4],5],[[[11,[[2,[1]]]],4],5],[[[12,[[2,[1]]]],4],5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[]],[[]],[[]],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15]],"c":[],"p":[[15,"str"],[8,"AsRef"],[3,"AsKebabCase"],[3,"Formatter"],[6,"Result"],[3,"AsLowerCamelCase"],[3,"AsShoutyKebabCase"],[3,"AsShoutySnakeCase"],[3,"AsSnakeCase"],[3,"AsTitleCase"],[3,"AsTrainCase"],[3,"AsUpperCamelCase"],[3,"String"],[4,"Result"],[3,"TypeId"],[8,"ToShoutySnekCase"],[8,"ToKebabCase"],[8,"ToLowerCamelCase"],[8,"ToPascalCase"],[8,"ToShoutyKebabCase"],[8,"ToShoutySnakeCase"],[8,"ToSnakeCase"],[8,"ToSnekCase"],[8,"ToTitleCase"],[8,"ToTrainCase"],[8,"ToUpperCamelCase"]]},\ @@ -118,7 +118,7 @@ var searchIndex = JSON.parse('{\ "num_cpus":{"doc":"A crate with utilities to determine the number of CPUs …","t":"FF","n":["get","get_physical"],"q":[[0,"num_cpus"]],"d":["Returns the number of available CPUs of the current system.","Returns the number of physical cores of the current system."],"i":[0,0],"f":[[[],1],[[],1]],"c":[],"p":[[15,"usize"]]},\ "num_integer":{"doc":"Integer trait and functions.","t":"IDIDIFKFKFLLLLFLLLLFLFKFLFKKLLLLLLLFKMFLLLLKKKFKFKFLLLFKLFLLLLLLLLLMM","n":["Average","ExtendedGcd","Integer","IterBinomial","Roots","average_ceil","average_ceil","average_floor","average_floor","binomial","borrow","borrow","borrow_mut","borrow_mut","cbrt","cbrt","cbrt","clone","clone_into","div_ceil","div_ceil","div_floor","div_floor","div_mod_floor","div_mod_floor","div_rem","div_rem","divides","eq","equivalent","extended_gcd","extended_gcd_lcm","fmt","from","from","gcd","gcd","gcd","gcd_lcm","gcd_lcm","into","into","into_iter","is_even","is_multiple_of","is_odd","lcm","lcm","mod_floor","mod_floor","multinomial","new","next","next_multiple_of","nth_root","nth_root","prev_multiple_of","sqrt","sqrt","sqrt","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","x","y"],"q":[[0,"num_integer"]],"d":["Provides methods to compute the average of two integers, …","Greatest common divisor and Bézout coefficients","","An iterator over binomial coefficients.","Provides methods to compute an integer’s square root, …","Returns the ceiling value of the average of x and y – …","Returns the ceiling value of the average of self and other.","Returns the floor value of the average of x and y – see …","Returns the floor value of the average of self and other. …","Calculate the binomial coefficient.","","","","","Returns the truncated principal cube root of an integer –","Returns the truncated principal cube root of an integer –","Returns the truncated principal cube root of an integer –","","","Ceiled integer division","Ceiled integer division.","Floored integer division","Floored integer division.","Simultaneous floored integer division and modulus","Simultaneous floored integer division and modulus. Returns …","Simultaneous integer division and modulus","Simultaneous truncated integer division and modulus. …","Deprecated, use is_multiple_of instead.","","","Greatest common divisor and Bézout coefficients.","Greatest common divisor, least common multiple, and …","","Returns the argument unchanged.","Returns the argument unchanged.","Calculates the Greatest Common Divisor (GCD) of the number …","Greatest Common Divisor (GCD).","","Calculates the Greatest Common Divisor (GCD) and Lowest …","Greatest Common Divisor (GCD) and Lowest Common Multiple …","Calls U::from(self).","Calls U::from(self).","","Returns true if the number is even.","Returns true if self is a multiple of other.","Returns true if the number is odd.","Calculates the Lowest Common Multiple (LCM) of the number …","Lowest Common Multiple (LCM).","Floored integer modulus","Floored integer modulo, satisfying:","Calculate the multinomial coefficient.","For a given n, iterate over all binomial coefficients …","","Rounds up to nearest multiple of argument.","Returns the truncated principal nth root of an integer – …","Returns the truncated principal nth root of an integer – …","Rounds down to nearest multiple of argument.","Returns the truncated principal square root of an integer …","Returns the truncated principal square root of an integer …","Returns the truncated principal square root of an integer …","","","","","","","","",""],"i":[0,0,0,0,0,0,1,0,1,0,14,5,14,5,0,4,4,5,5,0,2,0,2,0,2,0,2,2,5,5,2,2,5,14,5,0,2,5,0,2,14,5,14,2,2,2,0,2,0,2,0,14,14,2,0,4,2,0,4,4,5,14,5,14,5,14,5,5,5],"f":[0,0,0,0,0,[[1,1],1],[[]],[[1,1],1],[[]],[[[0,[2,3]],[0,[2,3]]],[[0,[2,3]]]],[[]],[[]],[[]],[[]],[4,4],[[]],[[]],[[[5,[3]]],[[5,[3]]]],[[]],[[2,2],2],[[]],[[2,2],2],[[]],[[2,2]],[[]],[[2,2]],[[]],[[],6],[[[5,[7]],[5,[7]]],6],[[],6],[[3,3],[[5,[3]]]],[[[0,[3,8]],[0,[3,8]]]],[[[5,[9]],10],11],[[]],[[]],[[2,2],2],[[]],0,[[2,2]],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[2,2],2],[[]],[[2,2],2],[[]],[[[13,[[0,[[12,[[0,[[12,[[0,[[12,[[0,[12,2,3]]]],2,3]]]],2,3]]]],2,3]]]]],[[0,[[12,[[0,[[12,[[0,[[12,[[0,[[12,[[0,[12,2,3]]]],2,3]]]],2,3]]]],2,3]]]],2,3]]]],[2,[[14,[2]]]],[[[14,[[0,[2,3]]]]],[[15,[[0,[2,3]]]]]],[[3,3],3],[[4,16],4],[16],[[3,3],3],[4,4],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],18],[[],18],0,0],"c":[],"p":[[8,"Average"],[8,"Integer"],[8,"Clone"],[8,"Roots"],[3,"ExtendedGcd"],[15,"bool"],[8,"PartialEq"],[8,"Signed"],[8,"Debug"],[3,"Formatter"],[6,"Result"],[8,"Add"],[15,"slice"],[3,"IterBinomial"],[4,"Option"],[15,"u32"],[4,"Result"],[3,"TypeId"]]},\ "num_traits":{"doc":"Numeric traits for generic mathematics","t":"CCCCCCCCCCCNCCCECCQCNCCIIIICIICDCCICCCCCCCCCCCCCCCCCLLLLAACCFFFALLLLLKAALLMCAACAACLLLLLLLCIIIKKKKIIIIKFKLLLLLKLLLLLKLLLLLLLKLLLLLKLLKKKKKKKKKKIIIKKLKLKKKLKLKKKKKKKKKKLKKLKKKLKKKKLKLKKKKKKLKLKLKLKLKLLLKKKKKKLKKKLKKKKKKKKKKKKKLKLKLKLKKKKKKKLKLKLIILKFKLLFKIKKKKLKKLKKKKKKKLKKKAAAAAAAAQQIIIKKLKKLIIIIIIIIKKKKKKKKIIKKKKIQKIIQKKIIIKKKIIIIKKKKKIIIIIIKKKKKKQIFFKIKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKIIFKFKKKFK","n":["AsPrimitive","Bounded","CheckedAdd","CheckedDiv","CheckedEuclid","CheckedMul","CheckedNeg","CheckedRem","CheckedShl","CheckedShr","CheckedSub","Empty","Euclid","Float","FloatConst","FloatErrorKind","FromBytes","FromPrimitive","FromStrRadixErr","Inv","Invalid","MulAdd","MulAddAssign","Num","NumAssign","NumAssignOps","NumAssignRef","NumCast","NumOps","NumRef","One","ParseFloatError","Pow","PrimInt","RefNum","Saturating","SaturatingAdd","SaturatingMul","SaturatingSub","Signed","ToBytes","ToPrimitive","Unsigned","WrappingAdd","WrappingMul","WrappingNeg","WrappingShl","WrappingShr","WrappingSub","Zero","abs","abs_sub","borrow","borrow","borrow_mut","borrow_mut","bounds","cast","cast","checked_pow","clamp","clamp_max","clamp_min","float","fmt","fmt","fmt","from","from","from_str_radix","identities","int","into","into","kind","one","ops","pow","pow","real","sign","signum","to_string","try_from","try_from","try_into","try_into","type_id","type_id","zero","Bounded","LowerBounded","UpperBounded","max_value","max_value","min_value","min_value","AsPrimitive","FromPrimitive","NumCast","ToPrimitive","as_","cast","from","from_f32","from_f64","from_i128","from_i16","from_i32","from_i64","from_i8","from_isize","from_u128","from_u16","from_u32","from_u64","from_u8","from_usize","to_f32","to_f64","to_i128","to_i16","to_i32","to_i64","to_i8","to_isize","to_u128","to_u16","to_u32","to_u64","to_u8","to_usize","E","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","Float","FloatConst","FloatCore","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PI","SQRT_2","TAU","abs","abs","abs_sub","acos","acosh","asin","asinh","atan","atan2","atanh","cbrt","ceil","ceil","classify","classify","copysign","cos","cosh","epsilon","epsilon","exp","exp2","exp_m1","floor","floor","fract","fract","hypot","infinity","infinity","integer_decode","integer_decode","is_finite","is_finite","is_infinite","is_infinite","is_nan","is_nan","is_normal","is_normal","is_sign_negative","is_sign_negative","is_sign_positive","is_sign_positive","is_subnormal","is_subnormal","ln","ln_1p","log","log10","log2","max","max","max_value","max_value","min","min","min_positive_value","min_positive_value","min_value","min_value","mul_add","nan","nan","neg_infinity","neg_infinity","neg_zero","neg_zero","powf","powi","powi","recip","recip","round","round","signum","signum","sin","sin_cos","sinh","sqrt","tan","tanh","to_degrees","to_degrees","to_radians","to_radians","trunc","trunc","One","Zero","is_one","is_zero","one","one","set_one","set_zero","zero","zero","PrimInt","count_ones","count_zeros","from_be","from_le","leading_ones","leading_zeros","pow","reverse_bits","rotate_left","rotate_right","signed_shl","signed_shr","swap_bytes","to_be","to_le","trailing_ones","trailing_zeros","unsigned_shl","unsigned_shr","bytes","checked","euclid","inv","mul_add","overflowing","saturating","wrapping","Bytes","Bytes","FromBytes","NumBytes","ToBytes","from_be_bytes","from_le_bytes","from_ne_bytes","to_be_bytes","to_le_bytes","to_ne_bytes","CheckedAdd","CheckedDiv","CheckedMul","CheckedNeg","CheckedRem","CheckedShl","CheckedShr","CheckedSub","checked_add","checked_div","checked_mul","checked_neg","checked_rem","checked_shl","checked_shr","checked_sub","CheckedEuclid","Euclid","checked_div_euclid","checked_rem_euclid","div_euclid","rem_euclid","Inv","Output","inv","MulAdd","MulAddAssign","Output","mul_add","mul_add_assign","OverflowingAdd","OverflowingMul","OverflowingSub","overflowing_add","overflowing_mul","overflowing_sub","Saturating","SaturatingAdd","SaturatingMul","SaturatingSub","saturating_add","saturating_add","saturating_mul","saturating_sub","saturating_sub","WrappingAdd","WrappingMul","WrappingNeg","WrappingShl","WrappingShr","WrappingSub","wrapping_add","wrapping_mul","wrapping_neg","wrapping_shl","wrapping_shr","wrapping_sub","Output","Pow","checked_pow","pow","pow","Real","abs","abs_sub","acos","acosh","asin","asinh","atan","atan2","atanh","cbrt","ceil","cos","cosh","epsilon","exp","exp2","exp_m1","floor","fract","hypot","is_sign_negative","is_sign_positive","ln","ln_1p","log","log10","log2","max","max_value","min","min_positive_value","min_value","mul_add","powf","powi","recip","round","signum","sin","sin_cos","sinh","sqrt","tan","tanh","to_degrees","to_radians","trunc","Signed","Unsigned","abs","abs","abs_sub","abs_sub","is_negative","is_positive","signum","signum"],"q":[[0,"num_traits"],[90,"num_traits::bounds"],[97,"num_traits::cast"],[132,"num_traits::float"],[243,"num_traits::identities"],[253,"num_traits::int"],[273,"num_traits::ops"],[281,"num_traits::ops::bytes"],[292,"num_traits::ops::checked"],[308,"num_traits::ops::euclid"],[314,"num_traits::ops::inv"],[317,"num_traits::ops::mul_add"],[322,"num_traits::ops::overflowing"],[328,"num_traits::ops::saturating"],[337,"num_traits::ops::wrapping"],[349,"num_traits::pow"],[354,"num_traits::real"],[402,"num_traits::sign"]],"d":["","","","","","","","","","","","","","","","","","","","","","","","The base trait for numeric types, covering 0 and 1 values, …","The trait for Num types which also implement assignment …","Generic trait for types implementing numeric assignment …","The trait for NumAssign types which also implement …","","Generic trait for types implementing basic numeric …","The trait for Num types which also implement numeric …","","","","","The trait for Num references which implement numeric …","","","","","","","","","","","","","","","","","","","","","","","","","","A value bounded by a minimum and a maximum","A value bounded by a maximum value","A value bounded by a minimum value","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Convert from a string and radix (typically 2..=36).","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","Numbers which have upper and lower bounds","Numbers which have lower bounds","Numbers which have upper bounds","Returns the largest finite number this type can represent","Returns the largest finite number this type can represent","Returns the smallest finite number this type can represent","Returns the smallest finite number this type can represent","A generic interface for casting between machine scalars …","A generic trait for converting a number to a value.","An interface for casting between machine scalars.","A generic trait for converting a value to a number.","Convert a value to another, using the as operator.","Cast from one machine scalar to another.","Creates a number from another value that can be converted …","Converts a f32 to return an optional value of this type. …","Converts a f64 to return an optional value of this type. …","Converts an i128 to return an optional value of this type. …","Converts an i16 to return an optional value of this type. …","Converts an i32 to return an optional value of this type. …","Converts an i64 to return an optional value of this type. …","Converts an i8 to return an optional value of this type. …","Converts an isize to return an optional value of this …","Converts an u128 to return an optional value of this type. …","Converts an u16 to return an optional value of this type. …","Converts an u32 to return an optional value of this type. …","Converts an u64 to return an optional value of this type. …","Converts an u8 to return an optional value of this type. …","Converts a usize to return an optional value of this type. …","Converts the value of self to an f32. Overflows may map to …","Converts the value of self to an f64. Overflows may map to …","Converts the value of self to an i128. If the value cannot …","Converts the value of self to an i16. If the value cannot …","Converts the value of self to an i32. If the value cannot …","Converts the value of self to an i64. If the value cannot …","Converts the value of self to an i8. If the value cannot be","Converts the value of self to an isize. If the value …","Converts the value of self to a u128. If the value cannot …","Converts the value of self to a u16. If the value cannot be","Converts the value of self to a u32. If the value cannot be","Converts the value of self to a u64. If the value cannot be","Converts the value of self to a u8. If the value cannot be …","Converts the value of self to a usize. If the value cannot …","Return Euler’s number.","Return 1.0 / π.","Return 1.0 / sqrt(2.0).","Return 2.0 / π.","Return 2.0 / sqrt(π).","Return π / 2.0.","Return π / 3.0.","Return π / 4.0.","Return π / 6.0.","Return π / 8.0.","Generic trait for floating point numbers","","Generic trait for floating point numbers that works with …","Return ln(10.0).","Return ln(2.0).","Return log10(2.0).","Return log10(e).","Return log2(10.0).","Return log2(e).","Return Archimedes’ constant π.","Return sqrt(2.0).","Return the full circle constant τ.","Computes the absolute value of self. Returns Float::nan() …","Computes the absolute value of self. Returns …","The positive difference of two numbers.","Computes the arccosine of a number. Return value is in …","Inverse hyperbolic cosine function.","Computes the arcsine of a number. Return value is in …","Inverse hyperbolic sine function.","Computes the arctangent of a number. Return value is in …","Computes the four quadrant arctangent of self (y) and other…","Inverse hyperbolic tangent function.","Take the cubic root of a number.","Returns the smallest integer greater than or equal to a …","Returns the smallest integer greater than or equal to a …","Returns the floating point category of the number. If only …","Returns the floating point category of the number. If only …","Returns a number composed of the magnitude of self and the …","Computes the cosine of a number (in radians).","Hyperbolic cosine function.","Returns epsilon, a small positive value.","Returns epsilon, a small positive value.","Returns e^(self), (the exponential function).","Returns 2^(self).","Returns e^(self) - 1 in a way that is accurate even if the …","Returns the largest integer less than or equal to a number.","Returns the largest integer less than or equal to a number.","Returns the fractional part of a number.","Returns the fractional part of a number.","Calculate the length of the hypotenuse of a right-angle …","Returns positive infinity.","Returns the infinite value.","Returns the mantissa, base 2 exponent, and sign as …","Returns the mantissa, base 2 exponent, and sign as …","Returns true if this number is neither infinite nor NaN.","Returns true if the number is neither infinite or NaN.","Returns true if this value is positive infinity or …","Returns true if the number is infinite.","Returns true if this value is NaN and false otherwise.","Returns true if the number is NaN.","Returns true if the number is neither zero, infinite, …","Returns true if the number is neither zero, infinite, …","Returns true if self is negative, including -0.0, …","Returns true if self is negative, including -0.0 and …","Returns true if self is positive, including +0.0, …","Returns true if self is positive, including +0.0 and …","Returns true if the number is subnormal.","Returns true if the number is subnormal.","Returns the natural logarithm of the number.","Returns ln(1+n) (natural logarithm) more accurately than if","Returns the logarithm of the number with respect to an …","Returns the base 10 logarithm of the number.","Returns the base 2 logarithm of the number.","Returns the maximum of the two numbers.","Returns the maximum of the two numbers.","Returns the largest finite value that this type can …","Returns the largest finite value that this type can …","Returns the minimum of the two numbers.","Returns the minimum of the two numbers.","Returns the smallest positive, normalized value that this …","Returns the smallest positive, normalized value that this …","Returns the smallest finite value that this type can …","Returns the smallest finite value that this type can …","Fused multiply-add. Computes (self * a) + b with only one …","Returns NaN.","Returns the NaN value.","Returns negative infinity.","Returns the negative infinite value.","Returns -0.0.","Returns -0.0.","Raise a number to a floating point power.","Raise a number to an integer power.","Raise a number to an integer power.","Take the reciprocal (inverse) of a number, 1/x.","Returns the reciprocal (multiplicative inverse) of the …","Returns the nearest integer to a number. Round half-way …","Returns the nearest integer to a number. Round half-way …","Returns a number that represents the sign of self.","Returns a number that represents the sign of self.","Computes the sine of a number (in radians).","Simultaneously computes the sine and cosine of the number, …","Hyperbolic sine function.","Take the square root of a number.","Computes the tangent of a number (in radians).","Hyperbolic tangent function.","Converts to degrees, assuming the number is in radians.","Converts radians to degrees.","Converts to radians, assuming the number is in degrees.","Converts degrees to radians.","Return the integer part of a number.","Return the integer part of a number.","Defines a multiplicative identity element for Self.","Defines an additive identity element for Self.","Returns true if self is equal to the multiplicative …","Returns true if self is equal to the additive identity.","Returns the multiplicative identity, 1.","Returns the multiplicative identity element of Self, 1.","Sets self to the multiplicative identity element of Self, 1…","Sets self to the additive identity element of Self, 0.","Returns the additive identity, 0.","Returns the additive identity element of Self, 0.","Generic trait for primitive integers.","Returns the number of ones in the binary representation of …","Returns the number of zeros in the binary representation …","Convert an integer from big endian to the target’s …","Convert an integer from little endian to the target’s …","Returns the number of leading ones in the binary …","Returns the number of leading zeros in the binary …","Raises self to the power of exp, using exponentiation by …","Reverses the order of bits in the integer.","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Reverses the byte order of the integer.","Convert self to big endian from the target’s endianness.","Convert self to little endian from the target’s …","Returns the number of trailing ones in the binary …","Returns the number of trailing zeros in the binary …","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","","","","","","","","","","","","","","Create a number from its representation as a byte array in …","Create a number from its representation as a byte array in …","Create a number from its memory representation as a byte …","Return the memory representation of this number as a byte …","Return the memory representation of this number as a byte …","Return the memory representation of this number as a byte …","Performs addition that returns None instead of wrapping …","Performs division that returns None instead of panicking …","Performs multiplication that returns None instead of …","Performs negation that returns None if the result can’t …","Performs an integral remainder that returns None instead …","Performs a left shift that returns None on shifts larger …","Performs a right shift that returns None on shifts larger …","Performs subtraction that returns None instead of wrapping …","Adds two numbers, checking for overflow. If overflow …","Divides two numbers, checking for underflow, overflow and …","Multiplies two numbers, checking for underflow or …","Negates a number, returning None for results that can’t …","Finds the remainder of dividing two numbers, checking for …","Checked shift left. Computes self << rhs, returning None …","Checked shift right. Computes self >> rhs, returning None …","Subtracts two numbers, checking for underflow. If …","","","Performs euclid division that returns None instead of …","Finds the euclid remainder of dividing two numbers, …","Calculates Euclidean division, the matching method for …","Calculates the least nonnegative remainder of self (mod v).","Unary operator for retrieving the multiplicative inverse, …","The result after applying the operator.","Returns the multiplicative inverse of self.","Fused multiply-add. Computes (self * a) + b with only one …","The fused multiply-add assignment operation …","The resulting type after applying the fused multiply-add.","Performs the fused multiply-add operation (self * a) + b","Performs the fused multiply-add assignment operation …","Performs addition with a flag for overflow.","Performs multiplication with a flag for overflow.","Performs substraction with a flag for overflow.","Returns a tuple of the sum along with a boolean indicating …","Returns a tuple of the product along with a boolean …","Returns a tuple of the difference along with a boolean …","Saturating math operations. Deprecated, use SaturatingAdd, …","Performs addition that saturates at the numeric bounds …","Performs multiplication that saturates at the numeric …","Performs subtraction that saturates at the numeric bounds …","Saturating addition operator. Returns a+b, saturating at …","Saturating addition. Computes self + other, saturating at …","Saturating multiplication. Computes self * other, …","Saturating subtraction operator. Returns a-b, saturating …","Saturating subtraction. Computes self - other, saturating …","Performs addition that wraps around on overflow.","Performs multiplication that wraps around on overflow.","Performs a negation that does not panic.","Performs a left shift that does not panic.","Performs a right shift that does not panic.","Performs subtraction that wraps around on overflow.","Wrapping (modular) addition. Computes self + other, …","Wrapping (modular) multiplication. Computes self * other, …","Wrapping (modular) negation. Computes -self, wrapping …","Panic-free bitwise shift-left; yields self << mask(rhs), …","Panic-free bitwise shift-right; yields self >> mask(rhs), …","Wrapping (modular) subtraction. Computes self - other, …","The result after applying the operator.","Binary operator for raising a value to a power.","Raises a value to the power of exp, returning None if an …","Raises a value to the power of exp, using exponentiation …","Returns self to the power rhs.","A trait for real number types that do not necessarily have …","Computes the absolute value of self. Returns Float::nan() …","The positive difference of two numbers.","Computes the arccosine of a number. Return value is in …","Inverse hyperbolic cosine function.","Computes the arcsine of a number. Return value is in …","Inverse hyperbolic sine function.","Computes the arctangent of a number. Return value is in …","Computes the four quadrant arctangent of self (y) and other…","Inverse hyperbolic tangent function.","Take the cubic root of a number.","Returns the smallest integer greater than or equal to a …","Computes the cosine of a number (in radians).","Hyperbolic cosine function.","Returns epsilon, a small positive value.","Returns e^(self), (the exponential function).","Returns 2^(self).","Returns e^(self) - 1 in a way that is accurate even if the …","Returns the largest integer less than or equal to a number.","Returns the fractional part of a number.","Calculate the length of the hypotenuse of a right-angle …","Returns true if self is negative, including -0.0, …","Returns true if self is positive, including +0.0, …","Returns the natural logarithm of the number.","Returns ln(1+n) (natural logarithm) more accurately than if","Returns the logarithm of the number with respect to an …","Returns the base 10 logarithm of the number.","Returns the base 2 logarithm of the number.","Returns the maximum of the two numbers.","Returns the largest finite value that this type can …","Returns the minimum of the two numbers.","Returns the smallest positive, normalized value that this …","Returns the smallest finite value that this type can …","Fused multiply-add. Computes (self * a) + b with only one …","Raise a number to a real number power.","Raise a number to an integer power.","Take the reciprocal (inverse) of a number, 1/x.","Returns the nearest integer to a number. Round half-way …","Returns a number that represents the sign of self.","Computes the sine of a number (in radians).","Simultaneously computes the sine and cosine of the number, …","Hyperbolic sine function.","Take the square root of a number.","Computes the tangent of a number (in radians).","Hyperbolic tangent function.","Converts radians to degrees.","Converts degrees to radians.","Return the integer part of a number.","Useful functions for signed numbers (i.e. numbers that can …","A trait for values which cannot be negative","Computes the absolute value.","Computes the absolute value.","The positive difference of two numbers.","The positive difference of two numbers.","Returns true if the number is negative and false if the …","Returns true if the number is positive and false if the …","Returns the sign of the number.","Returns the sign of the number."],"i":[0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,2,5,0,0,0,0,0,0,0,0,2,5,5,2,5,39,0,0,2,5,5,0,0,0,0,0,0,0,5,2,5,2,5,2,5,0,0,0,0,40,41,40,42,0,0,0,0,43,0,11,44,44,44,44,44,44,44,44,44,44,44,44,44,44,13,13,13,13,13,13,13,13,13,13,13,13,13,13,45,45,45,45,45,45,45,45,45,45,0,0,0,45,45,45,45,45,45,45,45,45,46,47,46,46,46,46,46,46,46,46,46,46,47,47,46,46,46,46,47,46,46,46,46,46,47,46,47,46,47,46,47,46,46,47,46,47,46,47,46,47,46,47,46,47,47,46,46,46,46,46,46,46,47,47,46,46,47,47,46,47,46,46,47,46,47,46,47,46,46,46,47,46,47,46,47,46,47,46,46,46,46,46,46,47,46,47,46,46,47,0,0,33,34,0,33,33,34,0,34,0,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,49,50,0,0,0,50,50,50,49,49,49,0,0,0,0,0,0,0,0,51,52,36,53,54,55,56,57,0,0,58,58,59,59,0,60,60,0,0,61,61,62,0,0,0,63,64,65,0,0,0,0,66,67,68,66,69,0,0,0,0,0,0,70,71,72,73,74,75,76,0,0,0,76,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,38,0,38,38,38,0,38],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],0,0,0,0,[[1,1,1],1],[[1,1],1],[[1,1],1],0,[[2,3],4],[[5,3],4],[[5,3],4],[[]],[[]],[[6,7],8],0,0,[[]],[[]],0,0,0,0,0,0,0,0,[[],9],[[],8],[[],8],[[],8],[[],8],[[],10],[[],10],0,0,0,0,[[]],[[]],[[]],[[]],0,0,0,0,[[]],[11,[[12,[11]]]],[13,12],[14,12],[15,12],[16,12],[17,12],[18,12],[19,12],[20,12],[21,12],[22,12],[23,12],[7,12],[24,12],[25,12],[26,12],[[],[[12,[14]]]],[[],[[12,[15]]]],[[],[[12,[16]]]],[[],[[12,[17]]]],[[],[[12,[18]]]],[[],[[12,[19]]]],[[],[[12,[20]]]],[[],[[12,[21]]]],[[],[[12,[22]]]],[[],[[12,[23]]]],[[],[[12,[7]]]],[[],[[12,[24]]]],[[],[[12,[25]]]],[[],[[12,[26]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[]],[[]],[[],[[0,[27,[28,[[0,[27,[28,[[0,[27,[28,[[0,[27,[28,[[0,[27,28]]]]]]]]]]]]]]]]]]]],[[]],[[],[[0,[27,[28,[[0,[27,[28,[[0,[27,[28,[[0,[27,[28,[[0,[27,28]]]]]]]]]]]]]]]]]]]],[[]],[[]],[[]],[[],[[0,[27,[29,[[0,[27,[29,[[0,[27,[29,[[0,[27,[29,[[0,[27,29]]]]]]]]]]]]]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],30],[[],30],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[18],[18],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[32,31],[[],31],[[],33],[[]],[[]],[[]],[[],34],[[]],0,[[],7],[[],7],[[]],[[]],[[],7],[[],7],[7],[[]],[7],[7],[7],[7],[[]],[[]],[[]],[[],7],[[],7],[7],[7],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[[],12],[[],12],[[],12],[[],12],[[],12],[7,12],[7,12],[[],12],0,0,[[],12],[[],12],[[]],[[]],0,0,[[]],0,0,0,[[]],[[]],0,0,0,[[]],[[]],[[]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,[[]],[[]],[[]],[7],[7],[[]],0,0,[[[0,[35,33,36]],26],[[12,[[0,[35,33,36]]]]]],[[[0,[35,33,[37,[[0,[35,33,[37,[[0,[35,33,[37,[[0,[35,33,[37,[[0,[35,33,37]]]]]]]]]]]]]]]]]],26],[[0,[35,33,[37,[[0,[35,33,[37,[[0,[35,33,[37,[[0,[35,33,[37,[[0,[35,33,37]]]]]]]]]]]]]]]]]]]],[[]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],31],[[],31],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[18],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[38,38],[[]],[[38,38],38],[[]],[[],31],[[],31],[38,38],[[]]],"c":[],"p":[[8,"PartialOrd"],[4,"FloatErrorKind"],[3,"Formatter"],[6,"Result"],[3,"ParseFloatError"],[15,"str"],[15,"u32"],[4,"Result"],[3,"String"],[3,"TypeId"],[8,"NumCast"],[4,"Option"],[8,"ToPrimitive"],[15,"f32"],[15,"f64"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[15,"isize"],[15,"u128"],[15,"u16"],[15,"u64"],[15,"u8"],[15,"usize"],[8,"Sized"],[8,"Div"],[8,"Add"],[4,"FpCategory"],[15,"bool"],[8,"PartialEq"],[8,"One"],[8,"Zero"],[8,"Clone"],[8,"CheckedMul"],[8,"Mul"],[8,"Signed"],[8,"Num"],[8,"Bounded"],[8,"UpperBounded"],[8,"LowerBounded"],[8,"AsPrimitive"],[8,"FromPrimitive"],[8,"FloatConst"],[8,"Float"],[8,"FloatCore"],[8,"PrimInt"],[8,"ToBytes"],[8,"FromBytes"],[8,"CheckedAdd"],[8,"CheckedDiv"],[8,"CheckedNeg"],[8,"CheckedRem"],[8,"CheckedShl"],[8,"CheckedShr"],[8,"CheckedSub"],[8,"CheckedEuclid"],[8,"Euclid"],[8,"Inv"],[8,"MulAdd"],[8,"MulAddAssign"],[8,"OverflowingAdd"],[8,"OverflowingMul"],[8,"OverflowingSub"],[8,"Saturating"],[8,"SaturatingAdd"],[8,"SaturatingMul"],[8,"SaturatingSub"],[8,"WrappingAdd"],[8,"WrappingMul"],[8,"WrappingNeg"],[8,"WrappingShl"],[8,"WrappingShr"],[8,"WrappingSub"],[8,"Pow"],[8,"Real"]]},\ -"object_store":{"doc":"object_store","t":"NGENNDENNDGNNNNDINGNNKLLLLLLLLLLLLLLLALLMKKLKLALMLLLLLLLLLLLLLLLLKLLKMMMMLLLLLLMAKKLAMAMFFAALKKMLLMLALLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMDLLLLLLLLLLLLLLLLLLLLLLLFDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLNNRRNEDNNDDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMM","n":["AlreadyExists","DynObjectStore","Error","File","Generic","GetOptions","GetResult","InvalidPath","JoinError","ListResult","MultipartId","NotFound","NotImplemented","NotModified","NotSupported","ObjectMeta","ObjectStore","Precondition","Result","Stream","UnknownConfigurationKey","abort_multipart","append","as_error_source","backtrace","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes","cause","chunked","clone","clone_into","common_prefixes","copy","copy_if_not_exists","default","delete","delete_stream","delimited","description","e_tag","eq","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","get","get_opts","get_range","get_ranges","head","if_match","if_modified_since","if_none_match","if_unmodified_since","into","into","into","into","into","into_stream","last_modified","limit","list","list_with_delimiter","list_with_offset","local","location","memory","objects","parse_url","parse_url_opts","path","prefix","provide","put","put_multipart","range","rename","rename_if_not_exists","size","source","throttle","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","key","path","path","path","path","source","source","source","source","source","source","source","source","store","store","ChunkedStore","abort_multipart","borrow","borrow_mut","copy","copy_if_not_exists","delete","fmt","fmt","from","get_opts","get_range","head","into","list","list_with_delimiter","list_with_offset","new","put","put_multipart","to_string","try_from","try_into","type_id","newline_delimited_stream","LimitStore","abort_multipart","append","borrow","borrow_mut","copy","copy_if_not_exists","delete","delete_stream","fmt","fmt","from","get","get_opts","get_range","get_ranges","head","into","list","list_with_delimiter","list_with_offset","new","put","put_multipart","rename","rename_if_not_exists","to_string","try_from","try_into","type_id","LocalFileSystem","abort_multipart","append","borrow","borrow_mut","copy","copy_if_not_exists","default","delete","fmt","fmt","from","get_opts","get_range","get_ranges","head","into","list","list_with_delimiter","new","new_with_prefix","put","put_multipart","rename","to_string","try_from","try_into","type_id","InMemory","abort_multipart","append","borrow","borrow_mut","clone","copy","copy_if_not_exists","default","delete","fmt","fmt","from","get_opts","get_range","get_ranges","head","into","list","list_with_delimiter","new","put","put_multipart","to_string","try_from","try_into","type_id","BadSegment","Canonicalize","DELIMITER","DELIMITER_BYTE","EmptySegment","Error","InvalidPart","InvalidPath","NonUnicode","Path","PathPart","PrefixMismatch","as_error_source","as_error_source","as_ref","as_ref","backtrace","backtrace","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","cause","child","clone","clone","clone_into","clone_into","cmp","cmp","default","default","description","description","eq","eq","equivalent","equivalent","extension","filename","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from_absolute_path","from_filesystem_path","from_iter","from_url_path","hash","hash","into","into","into","into","parse","parse","partial_cmp","partial_cmp","parts","prefix_match","prefix_matches","provide","provide","source","source","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","path","path","path","path","path","path","prefix","source","source","source","PrefixStore","abort_multipart","append","borrow","borrow_mut","clone","clone_into","copy","copy_if_not_exists","delete","fmt","fmt","from","get","get_opts","get_range","get_ranges","head","into","list","list_with_delimiter","list_with_offset","new","put","put_multipart","rename","rename_if_not_exists","to_owned","to_string","try_from","try_into","type_id","ThrottleConfig","ThrottledStore","abort_multipart","append","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","config","config_mut","copy","copy_if_not_exists","default","delete","fmt","fmt","fmt","from","from","get","get_opts","get_range","get_ranges","head","into","into","list","list_with_delimiter","list_with_offset","new","put","put_multipart","rename","rename_if_not_exists","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","wait_delete_per_call","wait_get_per_byte","wait_get_per_call","wait_list_per_call","wait_list_per_entry","wait_list_with_delimiter_per_call","wait_list_with_delimiter_per_entry","wait_put_per_call"],"q":[[0,"object_store"],[118,"object_store::Error"],[133,"object_store::chunked"],[157,"object_store::delimited"],[158,"object_store::limit"],[188,"object_store::local"],[216,"object_store::memory"],[243,"object_store::path"],[342,"object_store::path::Error"],[352,"object_store::prefix"],[384,"object_store::throttle"]],"d":["","An alias for a dynamically dispatched object store …","A specialized Error for object store-related errors","A file and its path on the local filesystem","","Options for a get request, such as range","Result for a get request","","","Result of a list call that includes objects, prefixes …","Id type for multi-part uploads.","","","","","The metadata that describes an object.","Universal API to multiple object store services.","","A specialized Result for object store-related errors","An asynchronous stream","","Cleanup an aborted upload.","Returns an AsyncWrite that can be used to append to the …","","","","","","","","","","","","","Collects the data into a Bytes","","A ChunkedStore that can be used to test streaming behaviour","","","Prefixes that are common (like directories)","Copy an object from one path to another in the same object …","Copy an object from one path to another, only if …","","Delete the object at the specified location.","Delete all the objects at the specified locations","Utility for streaming newline delimited files from object …","","The unique identifier for the object","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Return the bytes that are stored at the specified location.","Perform a get request with options","Return the bytes that are stored at the specified location …","Return the bytes that are stored at the specified location …","Return the metadata for the specified location","Request will succeed if the ObjectMeta::e_tag matches …","Request will succeed if the object has been modified since","Request will succeed if the ObjectMeta::e_tag does not …","Request will succeed if the object has not been modified …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts this into a byte stream","The last modified time","An object store that limits the maximum concurrency of the …","List all the objects with the given prefix.","List objects with the given prefix and an implementation …","List all the objects with the given prefix and a location …","An object store implementation for a local filesystem","The full path to the object","An in-memory object store implementation","Object metadata for the listing","Create an ObjectStore based on the provided url","Create an ObjectStore based on the provided url and options","Path abstraction for Object Storage","An object store wrapper handling a constant path prefix","","Save the provided bytes to the specified location","Get a multi-part upload that allows writing data in chunks","Request transfer of only the specified range of bytes …","Move an object from one path to another in the same object …","Move an object from one path to another in the same object …","The size in bytes of the object","","A throttling object store wrapper","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Wraps a ObjectStore and makes its get response return …","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","Creates a new ChunkedStore with the specified chunk_size","","","","","","","Given a Stream of Bytes returns a Stream where each …","Store wrapper that wraps an inner store and limits the …","","","","","","","","","","","Returns the argument unchanged.","","","","","","Calls U::from(self).","","","","Create new limit store that will limit the maximum number …","","","","","","","","","Local filesystem storage providing an ObjectStore …","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","Create new filesystem storage with no prefix","Create new filesystem storage with prefix applied to all …","","","","","","","","In-memory storage suitable for testing or for opting out …","","","","","Creates a clone of the store","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","The memory implementation returns all results, as opposed …","Create new in-memory storage.","","","","","","","","","The delimiter to separate object namespaces, creating a …","The path delimiter as a single byte","","Error returned by Path::parse","Error returned by PathPart::parse","","","A parsed path representation that can be safely written to …","The PathPart type exists to validate the directory/file …","","","","","","","","","","","","","","","","","","Creates a new child of this Path","","","","","","","","","","","","","","","Returns the extension of the file stored in this Path, if …","Returns the last path segment containing the filename …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Convert an absolute filesystem path to a Path relative to …","Convert a filesystem path to a Path relative to the …","","Parse a url encoded string as a Path, returning a Error if …","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Parse the provided path segment as a PathPart returning an …","Parse a string as a Path, returning a Error if invalid, as …","","","Returns the PathPart of this Path","Returns an iterator of the PathPart of this Path after …","Returns true if this Path starts with prefix","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Store wrapper that applies a constant prefix to all paths …","","","","","","","","","","","","Returns the argument unchanged.","","","","","","Calls U::from(self).","","","","Create a new instance of PrefixStore","","","","","","","","","","Configuration settings for throttled store","Store wrapper that wraps an inner store with some sleep …","","","","","","","","","Return copy of current config.","Mutate config.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Calls U::from(self).","Calls U::from(self).","","","","Create new wrapper with zero waiting times.","","","","","","","","","","","","","Sleep duration for every call to delete.","Sleep duration for every byte received during get.","Sleep duration for every call to get.","Sleep duration for every call to list.","Sleep duration for every entry received during list.","Sleep duration for every call to list_with_delimiter.","Sleep duration for every entry received during …","Sleep duration for every call to put."],"i":[7,0,0,10,7,0,0,7,7,0,0,7,7,7,7,0,0,7,0,10,7,33,33,7,7,10,20,13,14,7,10,20,13,14,7,10,7,0,13,13,20,33,33,14,33,33,0,7,13,13,13,10,20,13,14,7,7,10,20,13,14,7,7,7,33,33,33,33,33,14,14,14,14,10,20,13,14,7,10,13,0,33,33,33,0,13,0,20,0,0,0,0,7,33,33,14,33,33,13,7,0,13,7,10,20,13,14,7,10,20,13,14,7,10,20,13,14,7,55,56,57,58,59,60,56,61,62,63,57,58,59,60,55,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,0,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,0,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,21,21,0,0,21,0,0,21,21,0,0,21,44,21,43,1,44,21,44,43,21,1,44,43,21,1,44,21,1,43,1,43,1,43,1,43,1,44,21,43,1,43,1,1,1,44,44,43,21,21,1,1,44,43,43,43,43,21,1,1,1,1,1,1,1,43,1,44,43,21,1,43,1,43,1,1,1,1,44,21,44,21,43,1,44,21,1,44,43,21,1,44,43,21,1,44,43,21,1,64,65,66,67,68,69,69,65,66,68,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,52,52,53,52,53,52,53,53,52,52,52,52,53,52,53,52,52,53,52,52,52,52,52,52,53,52,52,52,52,52,52,52,52,52,53,52,53,52,53,52,53,52,53,53,53,53,53,53,53,53],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],[[5,[[4,[3]]]]]],[1,[[5,[[4,[3]]]]]],[[],6],[7,[[9,[8]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[10,[[12,[11]]]],[7,[[9,[6]]]],0,[13,13],[[]],0,[[1,1],[[5,[[4,[3]]]]]],[[1,1],[[5,[[4,[3]]]]]],[[],14],[1,[[5,[[4,[3]]]]]],[[[15,[[12,[1]]]]],[[15,[[12,[1]]]]]],0,[7,16],0,[[13,13],17],[[],17],[[10,18],19],[[20,18],19],[[13,18],19],[[14,18],19],[[7,18],19],[[7,18],19],[[]],[[]],[[]],[[]],[[]],[21,7],[22,7],[1,[[5,[[4,[3]]]]]],[[1,14],[[5,[[4,[3]]]]]],[[1,[24,[23]]],[[5,[[4,[3]]]]]],[[1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[1,[[5,[[4,[3]]]]]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[10,[[15,[[12,[11]]]]]],0,0,[[[9,[1]]],[[5,[[4,[3]]]]]],[[[9,[1]]],[[5,[[4,[3]]]]]],[[[9,[1]],1],[[5,[[4,[3]]]]]],0,0,0,0,[26,[[27,[7]]]],[[26,28],[[27,[7]]]],0,0,[29],[[1,11],[[5,[[4,[3]]]]]],[1,[[5,[[4,[3]]]]]],0,[[1,1],[[5,[[4,[3]]]]]],[[1,1],[[5,[[4,[3]]]]]],0,[7,[[9,[6]]]],0,[[]],[[],30],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],31],[[],31],[[],31],[[],31],[[],31],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[32,1,2],[[5,[[4,[3]]]]]],[[]],[[]],[[32,1,1],[[5,[[4,[3]]]]]],[[32,1,1],[[5,[[4,[3]]]]]],[[32,1],[[5,[[4,[3]]]]]],[[32,18],19],[[32,18],19],[[]],[[32,1,14],[[5,[[4,[3]]]]]],[[32,1,[24,[23]]],[[5,[[4,[3]]]]]],[[32,1],[[5,[[4,[3]]]]]],[[]],[[32,[9,[1]]],[[5,[[4,[3]]]]]],[[32,[9,[1]]],[[5,[[4,[3]]]]]],[[32,[9,[1]],1],[[5,[[4,[3]]]]]],[[[34,[33]],23],32],[[32,1,11],[[5,[[4,[3]]]]]],[[32,1],[[5,[[4,[3]]]]]],[[],30],[[],27],[[],27],[[],31],[[[0,[35,36]]],35],0,[[[37,[33]],1,2],[[5,[[4,[3]]]]]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[]],[[]],[[[37,[33]],1,1],[[5,[[4,[3]]]]]],[[[37,[33]],1,1],[[5,[[4,[3]]]]]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[[37,[33]],[15,[[12,[1]]]]],[[15,[[12,[1]]]]]],[[[37,[[0,[38,33]]]],18],19],[[[37,[33]],18],19],[[]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[[37,[33]],1,14],[[5,[[4,[3]]]]]],[[[37,[33]],1,[24,[23]]],[[5,[[4,[3]]]]]],[[[37,[33]],1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[]],[[[37,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[37,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[37,[33]],[9,[1]],1],[[5,[[4,[3]]]]]],[[33,23],[[37,[33]]]],[[[37,[33]],1,11],[[5,[[4,[3]]]]]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[[37,[33]],1,1],[[5,[[4,[3]]]]]],[[[37,[33]],1,1],[[5,[[4,[3]]]]]],[[],30],[[],27],[[],27],[[],31],0,[[39,1,2],[[5,[[4,[3]]]]]],[[39,1],[[5,[[4,[3]]]]]],[[]],[[]],[[39,1,1],[[5,[[4,[3]]]]]],[[39,1,1],[[5,[[4,[3]]]]]],[[],39],[[39,1],[[5,[[4,[3]]]]]],[[39,18],19],[[39,18],19],[[]],[[39,1,14],[[5,[[4,[3]]]]]],[[39,1,[24,[23]]],[[5,[[4,[3]]]]]],[[39,1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[39,1],[[5,[[4,[3]]]]]],[[]],[[39,[9,[1]]],[[5,[[4,[3]]]]]],[[39,[9,[1]]],[[5,[[4,[3]]]]]],[[],39],[[[41,[40]]],[[12,[39]]]],[[39,1,11],[[5,[[4,[3]]]]]],[[39,1],[[5,[[4,[3]]]]]],[[39,1,1],[[5,[[4,[3]]]]]],[[],30],[[],27],[[],27],[[],31],0,[[42,1,2],[[5,[[4,[3]]]]]],[[42,1],[[5,[[4,[3]]]]]],[[]],[[]],[42,42],[[42,1,1],[[5,[[4,[3]]]]]],[[42,1,1],[[5,[[4,[3]]]]]],[[],42],[[42,1],[[5,[[4,[3]]]]]],[[42,18],19],[[42,18],19],[[]],[[42,1,14],[[5,[[4,[3]]]]]],[[42,1,[24,[23]]],[[5,[[4,[3]]]]]],[[42,1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[42,1],[[5,[[4,[3]]]]]],[[]],[[42,[9,[1]]],[[5,[[4,[3]]]]]],[[42,[9,[1]]],[[5,[[4,[3]]]]]],[[],42],[[42,1,11],[[5,[[4,[3]]]]]],[[42,1],[[5,[[4,[3]]]]]],[[],30],[[],27],[[],27],[[],31],0,0,0,0,0,0,0,0,0,0,0,0,[[],6],[[],6],[43,16],[1,16],[44,[[9,[8]]]],[21,[[9,[8]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44,[[9,[6]]]],[21,[[9,[6]]]],[[1,[45,[43]]],1],[43,43],[1,1],[[]],[[]],[[43,43],46],[[1,1],46],[[],43],[[],1],[44,16],[21,16],[[43,43],17],[[1,1],17],[[],17],[[],17],[1,[[9,[16]]]],[1,[[9,[16]]]],[[44,18],19],[[44,18],19],[[43,18],19],[[21,18],19],[[21,18],19],[[1,18],19],[[1,18],19],[[]],[[]],[[[25,[47]]],43],[30,43],[16,43],[[]],[30,1],[[]],[16,1],[[[41,[40]]],[[27,[1,21]]]],[[[41,[40]]],[[27,[1,21]]]],[28,1],[[[41,[16]]],[[27,[1,21]]]],[[43,48]],[[1,48]],[[]],[[]],[[]],[[]],[16,[[27,[43,44]]]],[[[41,[16]]],[[27,[1,21]]]],[[43,43],[[9,[46]]]],[[1,1],[[9,[46]]]],[1,49],[[1,1],[[9,[49]]]],[[1,1],17],[29],[29],[44,[[9,[6]]]],[21,[[9,[6]]]],[[]],[[]],[[],30],[[],30],[[],30],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],31],[[],31],[[],31],[[],31],0,0,0,0,0,0,0,0,0,0,0,[[[50,[33]],1,2],[[5,[[4,[3]]]]]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[]],[[]],[[[50,[[0,[51,33]]]]],[[50,[[0,[51,33]]]]]],[[]],[[[50,[33]],1,1],[[5,[[4,[3]]]]]],[[[50,[33]],1,1],[[5,[[4,[3]]]]]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[[50,[33]],18],19],[[[50,[[0,[38,33]]]],18],19],[[]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[[50,[33]],1,14],[[5,[[4,[3]]]]]],[[[50,[33]],1,[24,[23]]],[[5,[[4,[3]]]]]],[[[50,[33]],1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[]],[[[50,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[50,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[50,[33]],[9,[1]],1],[[5,[[4,[3]]]]]],[[33,[45,[1]]],[[50,[33]]]],[[[50,[33]],1,11],[[5,[[4,[3]]]]]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[[50,[33]],1,1],[[5,[[4,[3]]]]]],[[[50,[33]],1,1],[[5,[[4,[3]]]]]],[[]],[[],30],[[],27],[[],27],[[],31],0,0,[[[52,[33]],1,2],[[5,[[4,[3]]]]]],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[]],[[]],[[]],[[]],[53,53],[[]],[[[52,[33]]],53],[[[52,[33]],54]],[[[52,[33]],1,1],[[5,[[4,[3]]]]]],[[[52,[33]],1,1],[[5,[[4,[3]]]]]],[[],53],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[53,18],19],[[[52,[[0,[38,33]]]],18],19],[[[52,[33]],18],19],[[]],[[]],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[[52,[33]],1,14],[[5,[[4,[3]]]]]],[[[52,[33]],1,[24,[23]]],[[5,[[4,[3]]]]]],[[[52,[33]],1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[]],[[]],[[[52,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[52,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[52,[33]],[9,[1]],1],[[5,[[4,[3]]]]]],[[33,53],[[52,[33]]]],[[[52,[33]],1,11],[[5,[[4,[3]]]]]],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[[52,[33]],1,1],[[5,[[4,[3]]]]]],[[[52,[33]],1,1],[[5,[[4,[3]]]]]],[[]],[[],30],[[],27],[[],27],[[],27],[[],27],[[],31],[[],31],0,0,0,0,0,0,0,0],"c":[],"p":[[3,"Path"],[6,"MultipartId"],[8,"Future"],[3,"Box"],[3,"Pin"],[8,"Error"],[4,"Error"],[3,"Backtrace"],[4,"Option"],[4,"GetResult"],[3,"Bytes"],[6,"Result"],[3,"ObjectMeta"],[3,"GetOptions"],[6,"BoxStream"],[15,"str"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"ListResult"],[4,"Error"],[3,"JoinError"],[15,"usize"],[3,"Range"],[15,"slice"],[3,"Url"],[4,"Result"],[8,"IntoIterator"],[3,"Demand"],[3,"String"],[3,"TypeId"],[3,"ChunkedStore"],[8,"ObjectStore"],[3,"Arc"],[8,"Stream"],[8,"Unpin"],[3,"LimitStore"],[8,"Debug"],[3,"LocalFileSystem"],[3,"Path"],[8,"AsRef"],[3,"InMemory"],[3,"PathPart"],[3,"InvalidPart"],[8,"Into"],[4,"Ordering"],[15,"u8"],[8,"Hasher"],[8,"Iterator"],[3,"PrefixStore"],[8,"Clone"],[3,"ThrottledStore"],[3,"ThrottleConfig"],[8,"Fn"],[13,"UnknownConfigurationKey"],[13,"NotFound"],[13,"AlreadyExists"],[13,"Precondition"],[13,"NotModified"],[13,"Generic"],[13,"InvalidPath"],[13,"JoinError"],[13,"NotSupported"],[13,"EmptySegment"],[13,"BadSegment"],[13,"Canonicalize"],[13,"InvalidPath"],[13,"NonUnicode"],[13,"PrefixMismatch"]]},\ +"object_store":{"doc":"object_store","t":"NGENNDENNDGNNNNDINGNNKLLLLLLLLLLLLLLLALLMKKLKLALMLLLLLLLLLLLLLLLLKLLKMMMMLLLLLLMAKKLAMAMFFAALKKMLLMLALLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMDLLLLLLLLLLLLLLLLLLLLLLLFDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLNNRRNEDNNDDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMM","n":["AlreadyExists","DynObjectStore","Error","File","Generic","GetOptions","GetResult","InvalidPath","JoinError","ListResult","MultipartId","NotFound","NotImplemented","NotModified","NotSupported","ObjectMeta","ObjectStore","Precondition","Result","Stream","UnknownConfigurationKey","abort_multipart","append","as_error_source","backtrace","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes","cause","chunked","clone","clone_into","common_prefixes","copy","copy_if_not_exists","default","delete","delete_stream","delimited","description","e_tag","eq","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","get","get_opts","get_range","get_ranges","head","if_match","if_modified_since","if_none_match","if_unmodified_since","into","into","into","into","into","into_stream","last_modified","limit","list","list_with_delimiter","list_with_offset","local","location","memory","objects","parse_url","parse_url_opts","path","prefix","provide","put","put_multipart","range","rename","rename_if_not_exists","size","source","throttle","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","key","path","path","path","path","source","source","source","source","source","source","source","source","store","store","ChunkedStore","abort_multipart","borrow","borrow_mut","copy","copy_if_not_exists","delete","fmt","fmt","from","get_opts","get_range","head","into","list","list_with_delimiter","list_with_offset","new","put","put_multipart","to_string","try_from","try_into","type_id","newline_delimited_stream","LimitStore","abort_multipart","append","borrow","borrow_mut","copy","copy_if_not_exists","delete","delete_stream","fmt","fmt","from","get","get_opts","get_range","get_ranges","head","into","list","list_with_delimiter","list_with_offset","new","put","put_multipart","rename","rename_if_not_exists","to_string","try_from","try_into","type_id","LocalFileSystem","abort_multipart","append","borrow","borrow_mut","copy","copy_if_not_exists","default","delete","fmt","fmt","from","get_opts","get_range","get_ranges","head","into","list","list_with_delimiter","new","new_with_prefix","put","put_multipart","rename","to_string","try_from","try_into","type_id","InMemory","abort_multipart","append","borrow","borrow_mut","clone","copy","copy_if_not_exists","default","delete","fmt","fmt","from","get_opts","get_range","get_ranges","head","into","list","list_with_delimiter","new","put","put_multipart","to_string","try_from","try_into","type_id","BadSegment","Canonicalize","DELIMITER","DELIMITER_BYTE","EmptySegment","Error","InvalidPart","InvalidPath","NonUnicode","Path","PathPart","PrefixMismatch","as_error_source","as_error_source","as_ref","as_ref","backtrace","backtrace","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","cause","child","clone","clone","clone_into","clone_into","cmp","cmp","default","default","description","description","eq","eq","equivalent","equivalent","extension","filename","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from_absolute_path","from_filesystem_path","from_iter","from_url_path","hash","hash","into","into","into","into","parse","parse","partial_cmp","partial_cmp","parts","prefix_match","prefix_matches","provide","provide","source","source","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","path","path","path","path","path","path","prefix","source","source","source","PrefixStore","abort_multipart","append","borrow","borrow_mut","clone","clone_into","copy","copy_if_not_exists","delete","fmt","fmt","from","get","get_opts","get_range","get_ranges","head","into","list","list_with_delimiter","list_with_offset","new","put","put_multipart","rename","rename_if_not_exists","to_owned","to_string","try_from","try_into","type_id","ThrottleConfig","ThrottledStore","abort_multipart","append","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","config","config_mut","copy","copy_if_not_exists","default","delete","fmt","fmt","fmt","from","from","get","get_opts","get_range","get_ranges","head","into","into","list","list_with_delimiter","list_with_offset","new","put","put_multipart","rename","rename_if_not_exists","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","wait_delete_per_call","wait_get_per_byte","wait_get_per_call","wait_list_per_call","wait_list_per_entry","wait_list_with_delimiter_per_call","wait_list_with_delimiter_per_entry","wait_put_per_call"],"q":[[0,"object_store"],[118,"object_store::Error"],[133,"object_store::chunked"],[157,"object_store::delimited"],[158,"object_store::limit"],[188,"object_store::local"],[216,"object_store::memory"],[243,"object_store::path"],[342,"object_store::path::Error"],[352,"object_store::prefix"],[384,"object_store::throttle"]],"d":["","An alias for a dynamically dispatched object store …","A specialized Error for object store-related errors","A file and its path on the local filesystem","","Options for a get request, such as range","Result for a get request","","","Result of a list call that includes objects, prefixes …","Id type for multi-part uploads.","","","","","The metadata that describes an object.","Universal API to multiple object store services.","","A specialized Result for object store-related errors","An asynchronous stream","","Cleanup an aborted upload.","Returns an AsyncWrite that can be used to append to the …","","","","","","","","","","","","","Collects the data into a Bytes","","A ChunkedStore that can be used to test streaming behaviour","","","Prefixes that are common (like directories)","Copy an object from one path to another in the same object …","Copy an object from one path to another, only if …","","Delete the object at the specified location.","Delete all the objects at the specified locations","Utility for streaming newline delimited files from object …","","The unique identifier for the object","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Return the bytes that are stored at the specified location.","Perform a get request with options","Return the bytes that are stored at the specified location …","Return the bytes that are stored at the specified location …","Return the metadata for the specified location","Request will succeed if the ObjectMeta::e_tag matches …","Request will succeed if the object has been modified since","Request will succeed if the ObjectMeta::e_tag does not …","Request will succeed if the object has not been modified …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts this into a byte stream","The last modified time","An object store that limits the maximum concurrency of the …","List all the objects with the given prefix.","List objects with the given prefix and an implementation …","List all the objects with the given prefix and a location …","An object store implementation for a local filesystem","The full path to the object","An in-memory object store implementation","Object metadata for the listing","Create an ObjectStore based on the provided url","Create an ObjectStore based on the provided url and options","Path abstraction for Object Storage","An object store wrapper handling a constant path prefix","","Save the provided bytes to the specified location","Get a multi-part upload that allows writing data in chunks","Request transfer of only the specified range of bytes …","Move an object from one path to another in the same object …","Move an object from one path to another in the same object …","The size in bytes of the object","","A throttling object store wrapper","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Wraps a ObjectStore and makes its get response return …","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","Creates a new ChunkedStore with the specified chunk_size","","","","","","","Given a Stream of Bytes returns a Stream where each …","Store wrapper that wraps an inner store and limits the …","","","","","","","","","","","Returns the argument unchanged.","","","","","","Calls U::from(self).","","","","Create new limit store that will limit the maximum number …","","","","","","","","","Local filesystem storage providing an ObjectStore …","","","","","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","","Create new filesystem storage with no prefix","Create new filesystem storage with prefix applied to all …","","","","","","","","In-memory storage suitable for testing or for opting out …","","","","","Creates a clone of the store","","","","","","","Returns the argument unchanged.","","","","","Calls U::from(self).","","The memory implementation returns all results, as opposed …","Create new in-memory storage.","","","","","","","","","The delimiter to separate object namespaces, creating a …","The path delimiter as a single byte","","Error returned by Path::parse","Error returned by PathPart::parse","","","A parsed path representation that can be safely written to …","The PathPart type exists to validate the directory/file …","","","","","","","","","","","","","","","","","","Creates a new child of this Path","","","","","","","","","","","","","","","Returns the extension of the file stored in this Path, if …","Returns the last path segment containing the filename …","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Convert an absolute filesystem path to a Path relative to …","Convert a filesystem path to a Path relative to the …","","Parse a url encoded string as a Path, returning a Error if …","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Parse the provided path segment as a PathPart returning an …","Parse a string as a Path, returning a Error if invalid, as …","","","Returns the PathPart of this Path","Returns an iterator of the PathPart of this Path after …","Returns true if this Path starts with prefix","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Store wrapper that applies a constant prefix to all paths …","","","","","","","","","","","","Returns the argument unchanged.","","","","","","Calls U::from(self).","","","","Create a new instance of PrefixStore","","","","","","","","","","Configuration settings for throttled store","Store wrapper that wraps an inner store with some sleep …","","","","","","","","","Return copy of current config.","Mutate config.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Calls U::from(self).","Calls U::from(self).","","","","Create new wrapper with zero waiting times.","","","","","","","","","","","","","Sleep duration for every call to delete.","Sleep duration for every byte received during get.","Sleep duration for every call to get.","Sleep duration for every call to list.","Sleep duration for every entry received during list.","Sleep duration for every call to list_with_delimiter.","Sleep duration for every entry received during …","Sleep duration for every call to put."],"i":[7,0,0,10,7,0,0,7,7,0,0,7,7,7,7,0,0,7,0,10,7,33,33,7,7,10,20,13,14,7,10,20,13,14,7,10,7,0,13,13,20,33,33,14,33,33,0,7,13,13,13,10,20,13,14,7,7,10,20,13,14,7,7,7,33,33,33,33,33,14,14,14,14,10,20,13,14,7,10,13,0,33,33,33,0,13,0,20,0,0,0,0,7,33,33,14,33,33,13,7,0,13,7,10,20,13,14,7,10,20,13,14,7,10,20,13,14,7,55,56,57,58,59,60,56,61,62,63,57,58,59,60,55,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,0,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,0,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,22,22,0,0,22,0,0,22,22,0,0,22,44,22,43,1,44,22,44,43,22,1,44,43,22,1,44,22,1,43,1,43,1,43,1,43,1,44,22,43,1,43,1,1,1,44,44,43,22,22,1,1,44,43,43,43,43,22,1,1,1,1,1,1,1,43,1,44,43,22,1,43,1,43,1,1,1,1,44,22,44,22,43,1,44,22,1,44,43,22,1,44,43,22,1,44,43,22,1,64,65,66,67,68,69,69,65,66,68,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,52,52,53,52,53,52,53,53,52,52,52,52,53,52,53,52,52,53,52,52,52,52,52,52,53,52,52,52,52,52,52,52,52,52,53,52,53,52,53,52,53,52,53,53,53,53,53,53,53,53],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],[[5,[[4,[3]]]]]],[1,[[5,[[4,[3]]]]]],[[],6],[7,[[9,[8]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[10,[[12,[11]]]],[7,[[9,[6]]]],0,[13,13],[[]],0,[[1,1],[[5,[[4,[3]]]]]],[[1,1],[[5,[[4,[3]]]]]],[[],14],[1,[[5,[[4,[3]]]]]],[[[15,[[12,[1]]]]],[[15,[[12,[1]]]]]],0,[7,16],0,[[13,13],17],[[],17],[[10,18],19],[[20,18],19],[[13,18],19],[[14,18],19],[[7,18],19],[[7,18],19],[[]],[[]],[[]],[[]],[21,7],[22,7],[[]],[1,[[5,[[4,[3]]]]]],[[1,14],[[5,[[4,[3]]]]]],[[1,[24,[23]]],[[5,[[4,[3]]]]]],[[1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[1,[[5,[[4,[3]]]]]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[10,[[15,[[12,[11]]]]]],0,0,[[[9,[1]]],[[5,[[4,[3]]]]]],[[[9,[1]]],[[5,[[4,[3]]]]]],[[[9,[1]],1],[[5,[[4,[3]]]]]],0,0,0,0,[26,[[27,[7]]]],[[26,28],[[27,[7]]]],0,0,[29],[[1,11],[[5,[[4,[3]]]]]],[1,[[5,[[4,[3]]]]]],0,[[1,1],[[5,[[4,[3]]]]]],[[1,1],[[5,[[4,[3]]]]]],0,[7,[[9,[6]]]],0,[[]],[[],30],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],31],[[],31],[[],31],[[],31],[[],31],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[32,1,2],[[5,[[4,[3]]]]]],[[]],[[]],[[32,1,1],[[5,[[4,[3]]]]]],[[32,1,1],[[5,[[4,[3]]]]]],[[32,1],[[5,[[4,[3]]]]]],[[32,18],19],[[32,18],19],[[]],[[32,1,14],[[5,[[4,[3]]]]]],[[32,1,[24,[23]]],[[5,[[4,[3]]]]]],[[32,1],[[5,[[4,[3]]]]]],[[]],[[32,[9,[1]]],[[5,[[4,[3]]]]]],[[32,[9,[1]]],[[5,[[4,[3]]]]]],[[32,[9,[1]],1],[[5,[[4,[3]]]]]],[[[34,[33]],23],32],[[32,1,11],[[5,[[4,[3]]]]]],[[32,1],[[5,[[4,[3]]]]]],[[],30],[[],27],[[],27],[[],31],[[[0,[35,36]]],35],0,[[[37,[33]],1,2],[[5,[[4,[3]]]]]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[]],[[]],[[[37,[33]],1,1],[[5,[[4,[3]]]]]],[[[37,[33]],1,1],[[5,[[4,[3]]]]]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[[37,[33]],[15,[[12,[1]]]]],[[15,[[12,[1]]]]]],[[[37,[33]],18],19],[[[37,[[0,[38,33]]]],18],19],[[]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[[37,[33]],1,14],[[5,[[4,[3]]]]]],[[[37,[33]],1,[24,[23]]],[[5,[[4,[3]]]]]],[[[37,[33]],1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[]],[[[37,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[37,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[37,[33]],[9,[1]],1],[[5,[[4,[3]]]]]],[[33,23],[[37,[33]]]],[[[37,[33]],1,11],[[5,[[4,[3]]]]]],[[[37,[33]],1],[[5,[[4,[3]]]]]],[[[37,[33]],1,1],[[5,[[4,[3]]]]]],[[[37,[33]],1,1],[[5,[[4,[3]]]]]],[[],30],[[],27],[[],27],[[],31],0,[[39,1,2],[[5,[[4,[3]]]]]],[[39,1],[[5,[[4,[3]]]]]],[[]],[[]],[[39,1,1],[[5,[[4,[3]]]]]],[[39,1,1],[[5,[[4,[3]]]]]],[[],39],[[39,1],[[5,[[4,[3]]]]]],[[39,18],19],[[39,18],19],[[]],[[39,1,14],[[5,[[4,[3]]]]]],[[39,1,[24,[23]]],[[5,[[4,[3]]]]]],[[39,1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[39,1],[[5,[[4,[3]]]]]],[[]],[[39,[9,[1]]],[[5,[[4,[3]]]]]],[[39,[9,[1]]],[[5,[[4,[3]]]]]],[[],39],[[[41,[40]]],[[12,[39]]]],[[39,1,11],[[5,[[4,[3]]]]]],[[39,1],[[5,[[4,[3]]]]]],[[39,1,1],[[5,[[4,[3]]]]]],[[],30],[[],27],[[],27],[[],31],0,[[42,1,2],[[5,[[4,[3]]]]]],[[42,1],[[5,[[4,[3]]]]]],[[]],[[]],[42,42],[[42,1,1],[[5,[[4,[3]]]]]],[[42,1,1],[[5,[[4,[3]]]]]],[[],42],[[42,1],[[5,[[4,[3]]]]]],[[42,18],19],[[42,18],19],[[]],[[42,1,14],[[5,[[4,[3]]]]]],[[42,1,[24,[23]]],[[5,[[4,[3]]]]]],[[42,1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[42,1],[[5,[[4,[3]]]]]],[[]],[[42,[9,[1]]],[[5,[[4,[3]]]]]],[[42,[9,[1]]],[[5,[[4,[3]]]]]],[[],42],[[42,1,11],[[5,[[4,[3]]]]]],[[42,1],[[5,[[4,[3]]]]]],[[],30],[[],27],[[],27],[[],31],0,0,0,0,0,0,0,0,0,0,0,0,[[],6],[[],6],[43,16],[1,16],[44,[[9,[8]]]],[22,[[9,[8]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44,[[9,[6]]]],[22,[[9,[6]]]],[[1,[45,[43]]],1],[43,43],[1,1],[[]],[[]],[[43,43],46],[[1,1],46],[[],43],[[],1],[44,16],[22,16],[[43,43],17],[[1,1],17],[[],17],[[],17],[1,[[9,[16]]]],[1,[[9,[16]]]],[[44,18],19],[[44,18],19],[[43,18],19],[[22,18],19],[[22,18],19],[[1,18],19],[[1,18],19],[[]],[[[25,[47]]],43],[16,43],[30,43],[[]],[[]],[[]],[16,1],[30,1],[[[41,[40]]],[[27,[1,22]]]],[[[41,[40]]],[[27,[1,22]]]],[28,1],[[[41,[16]]],[[27,[1,22]]]],[[43,48]],[[1,48]],[[]],[[]],[[]],[[]],[16,[[27,[43,44]]]],[[[41,[16]]],[[27,[1,22]]]],[[43,43],[[9,[46]]]],[[1,1],[[9,[46]]]],[1,49],[[1,1],[[9,[49]]]],[[1,1],17],[29],[29],[44,[[9,[6]]]],[22,[[9,[6]]]],[[]],[[]],[[],30],[[],30],[[],30],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],31],[[],31],[[],31],[[],31],0,0,0,0,0,0,0,0,0,0,0,[[[50,[33]],1,2],[[5,[[4,[3]]]]]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[]],[[]],[[[50,[[0,[51,33]]]]],[[50,[[0,[51,33]]]]]],[[]],[[[50,[33]],1,1],[[5,[[4,[3]]]]]],[[[50,[33]],1,1],[[5,[[4,[3]]]]]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[[50,[[0,[38,33]]]],18],19],[[[50,[33]],18],19],[[]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[[50,[33]],1,14],[[5,[[4,[3]]]]]],[[[50,[33]],1,[24,[23]]],[[5,[[4,[3]]]]]],[[[50,[33]],1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[]],[[[50,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[50,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[50,[33]],[9,[1]],1],[[5,[[4,[3]]]]]],[[33,[45,[1]]],[[50,[33]]]],[[[50,[33]],1,11],[[5,[[4,[3]]]]]],[[[50,[33]],1],[[5,[[4,[3]]]]]],[[[50,[33]],1,1],[[5,[[4,[3]]]]]],[[[50,[33]],1,1],[[5,[[4,[3]]]]]],[[]],[[],30],[[],27],[[],27],[[],31],0,0,[[[52,[33]],1,2],[[5,[[4,[3]]]]]],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[]],[[]],[[]],[[]],[53,53],[[]],[[[52,[33]]],53],[[[52,[33]],54]],[[[52,[33]],1,1],[[5,[[4,[3]]]]]],[[[52,[33]],1,1],[[5,[[4,[3]]]]]],[[],53],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[53,18],19],[[[52,[[0,[38,33]]]],18],19],[[[52,[33]],18],19],[[]],[[]],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[[52,[33]],1,14],[[5,[[4,[3]]]]]],[[[52,[33]],1,[24,[23]]],[[5,[[4,[3]]]]]],[[[52,[33]],1,[25,[[24,[23]]]]],[[5,[[4,[3]]]]]],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[]],[[]],[[[52,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[52,[33]],[9,[1]]],[[5,[[4,[3]]]]]],[[[52,[33]],[9,[1]],1],[[5,[[4,[3]]]]]],[[33,53],[[52,[33]]]],[[[52,[33]],1,11],[[5,[[4,[3]]]]]],[[[52,[33]],1],[[5,[[4,[3]]]]]],[[[52,[33]],1,1],[[5,[[4,[3]]]]]],[[[52,[33]],1,1],[[5,[[4,[3]]]]]],[[]],[[],30],[[],27],[[],27],[[],27],[[],27],[[],31],[[],31],0,0,0,0,0,0,0,0],"c":[],"p":[[3,"Path"],[6,"MultipartId"],[8,"Future"],[3,"Box"],[3,"Pin"],[8,"Error"],[4,"Error"],[3,"Backtrace"],[4,"Option"],[4,"GetResult"],[3,"Bytes"],[6,"Result"],[3,"ObjectMeta"],[3,"GetOptions"],[6,"BoxStream"],[15,"str"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"ListResult"],[3,"JoinError"],[4,"Error"],[15,"usize"],[3,"Range"],[15,"slice"],[3,"Url"],[4,"Result"],[8,"IntoIterator"],[3,"Demand"],[3,"String"],[3,"TypeId"],[3,"ChunkedStore"],[8,"ObjectStore"],[3,"Arc"],[8,"Stream"],[8,"Unpin"],[3,"LimitStore"],[8,"Debug"],[3,"LocalFileSystem"],[3,"Path"],[8,"AsRef"],[3,"InMemory"],[3,"PathPart"],[3,"InvalidPart"],[8,"Into"],[4,"Ordering"],[15,"u8"],[8,"Hasher"],[8,"Iterator"],[3,"PrefixStore"],[8,"Clone"],[3,"ThrottledStore"],[3,"ThrottleConfig"],[8,"Fn"],[13,"UnknownConfigurationKey"],[13,"NotFound"],[13,"AlreadyExists"],[13,"Precondition"],[13,"NotModified"],[13,"Generic"],[13,"InvalidPath"],[13,"JoinError"],[13,"NotSupported"],[13,"EmptySegment"],[13,"BadSegment"],[13,"Canonicalize"],[13,"InvalidPath"],[13,"NonUnicode"],[13,"PrefixMismatch"]]},\ "once_cell":{"doc":"Overview","t":"AAADDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["race","sync","unsync","OnceBool","OnceBox","OnceNonZeroUsize","OnceRef","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","default","default","default","default","drop","fmt","fmt","fmt","fmt","from","from","from","from","get","get","get","get","get_or_init","get_or_init","get_or_init","get_or_init","get_or_try_init","get_or_try_init","get_or_try_init","get_or_try_init","into","into","into","into","new","new","new","new","set","set","set","set","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","Lazy","OnceCell","borrow","borrow","borrow_mut","borrow_mut","clone","clone_from","clone_into","default","default","deref","deref_mut","eq","equivalent","fmt","fmt","force","force_mut","from","from","from","from","get","get","get_mut","get_mut","get_or_init","get_or_try_init","get_unchecked","into","into","into_inner","into_value","new","new","set","take","to_owned","try_from","try_from","try_insert","try_into","try_into","type_id","type_id","wait","with_value","Lazy","OnceCell","borrow","borrow","borrow_mut","borrow_mut","clone","clone_from","clone_into","default","default","deref","deref_mut","eq","equivalent","fmt","fmt","force","force_mut","from","from","from","from","get","get","get_mut","get_mut","get_or_init","get_or_try_init","into","into","into_inner","into_value","new","new","set","take","to_owned","try_from","try_from","try_insert","try_into","try_into","type_id","type_id","with_value"],"q":[[0,"once_cell"],[3,"once_cell::race"],[64,"once_cell::sync"],[112,"once_cell::unsync"]],"d":["Thread-safe, non-blocking, “first one wins” flavor of …","Thread-safe, blocking version of OnceCell.","Single-threaded version of OnceCell.","A thread-safe cell which can be written to only once.","A thread-safe cell which can be written to only once.","A thread-safe cell which can be written to only once.","A thread-safe cell which can be written to only once.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Gets a reference to the underlying value.","Gets a reference to the underlying value.","Gets the underlying value.","Gets the underlying value.","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a new empty cell.","Creates a new empty cell.","Creates a new empty cell.","Creates a new empty cell.","Sets the contents of this cell to value.","Sets the contents of this cell to value.","Sets the contents of this cell to value.","Sets the contents of this cell to value.","","","","","","","","","","","","","A value which is initialized on the first access.","A thread-safe cell which can be written to only once.","","","","","","","","","Creates a new lazy value using Default as the initializing …","","","","","","","Forces the evaluation of this lazy value and returns a …","Forces the evaluation of this lazy value and returns a …","Returns the argument unchanged.","","","Returns the argument unchanged.","Gets the reference to the underlying value.","Gets the reference to the result of this lazy value if it …","Gets the mutable reference to the underlying value.","Gets the reference to the result of this lazy value if it …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Get the reference to the underlying value, without …","Calls U::from(self).","Calls U::from(self).","Consumes the OnceCell, returning the wrapped value. Returns","Consumes this Lazy returning the stored value.","Creates a new empty cell.","Creates a new lazy value with the given initializing …","Sets the contents of this cell to value.","Takes the value out of this OnceCell, moving it back to an …","","","","Like set, but also returns a reference to the final cell …","","","","","Gets the reference to the underlying value, blocking the …","Creates a new initialized cell.","A value which is initialized on the first access.","A cell which can be written to only once. It is not thread …","","","","","","","","","Creates a new lazy value using Default as the initializing …","","","","","","","Forces the evaluation of this lazy value and returns a …","Forces the evaluation of this lazy value and returns a …","","Returns the argument unchanged.","","Returns the argument unchanged.","Gets a reference to the underlying value.","Gets the reference to the result of this lazy value if it …","Gets a mutable reference to the underlying value.","Gets the mutable reference to the result of this lazy …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Calls U::from(self).","Calls U::from(self).","Consumes the OnceCell, returning the wrapped value.","Consumes this Lazy returning the stored value.","Creates a new empty cell.","Creates a new lazy value with the given initializing …","Sets the contents of this cell to value.","Takes the value out of this OnceCell, moving it back to an …","","","","Like set, but also returns a reference to the final cell …","","","","","Creates a new initialized cell."],"i":[0,0,0,0,0,0,0,1,2,3,4,1,2,3,4,1,2,3,4,2,1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4,0,0,15,17,15,17,15,15,15,15,17,17,17,15,15,15,17,17,17,15,15,15,17,15,17,15,17,15,15,15,15,17,15,17,15,17,15,15,15,15,17,15,15,17,15,17,15,15,0,0,21,22,21,22,21,21,21,21,22,22,22,21,21,21,22,22,22,21,21,21,22,21,22,21,22,21,21,21,22,21,22,21,22,21,21,21,21,22,21,21,22,21,22,21],"f":[0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],1],[[],2],[[],3],[[],4],[2],[[1,5],6],[[2,5],6],[[3,5],6],[[4,5],6],[[]],[[]],[[]],[[]],[1,7],[2,7],[3,[[7,[8]]]],[4,[[7,[9]]]],[[1,10]],[[2,10]],[[3,10],8],[[4,10],9],[[1,10],11],[[2,10],11],[[3,10],[[11,[8]]]],[[4,10],[[11,[9]]]],[[]],[[]],[[]],[[]],[[],1],[[],2],[[],3],[[],4],[1,11],[[2,12],[[11,[12]]]],[[3,8],11],[[4,9],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],11],[[],13],[[],13],[[],13],[[],13],0,0,[[]],[[]],[[]],[[]],[[[15,[14]]],[[15,[14]]]],[[[15,[14]],[15,[14]]]],[[]],[[],15],[[],[[17,[16]]]],[[[17,[10]]]],[[[17,[10]]]],[[[15,[18]],[15,[18]]],9],[[],9],[[[15,[19]],5],6],[[[17,[19]],5],6],[[[17,[10]]]],[[[17,[10]]]],[[]],[20],[[],15],[[]],[15,7],[[[17,[10]]],7],[15,7],[[[17,[10]]],7],[[15,10]],[[15,10],11],[15],[[]],[[]],[15,7],[17,11],[[],15],[[],17],[15,11],[15,7],[[]],[[],11],[[],11],[15,11],[[],11],[[],11],[[],13],[[],13],[15],[[],15],0,0,[[]],[[]],[[]],[[]],[[[21,[14]]],[[21,[14]]]],[[[21,[14]],[21,[14]]]],[[]],[[],21],[[],[[22,[16]]]],[[[22,[10]]]],[[[22,[10]]]],[[[21,[18]],[21,[18]]],9],[[],9],[[[21,[19]],5],6],[[[22,[19]],5],6],[[[22,[10]]]],[[[22,[10]]]],[20],[[]],[[],21],[[]],[21,7],[[[22,[10]]],7],[21,7],[[[22,[10]]],7],[[21,10]],[[21,10],11],[[]],[[]],[21,7],[22,11],[[],21],[[],22],[21,11],[21,7],[[]],[[],11],[[],11],[21,11],[[],11],[[],11],[[],13],[[],13],[[],21]],"c":[],"p":[[3,"OnceRef"],[3,"OnceBox"],[3,"OnceNonZeroUsize"],[3,"OnceBool"],[3,"Formatter"],[6,"Result"],[4,"Option"],[3,"NonZeroUsize"],[15,"bool"],[8,"FnOnce"],[4,"Result"],[3,"Box"],[3,"TypeId"],[8,"Clone"],[3,"OnceCell"],[8,"Default"],[3,"Lazy"],[8,"PartialEq"],[8,"Debug"],[15,"never"],[3,"OnceCell"],[3,"Lazy"]]},\ "parking_lot":{"doc":"This library provides implementations of Mutex, RwLock, …","t":"DNGGNGGGGGGGNDENDDDDGGGGGGDLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["Condvar","Done","FairMutex","FairMutexGuard","InProgress","MappedFairMutexGuard","MappedMutexGuard","MappedReentrantMutexGuard","MappedRwLockReadGuard","MappedRwLockWriteGuard","Mutex","MutexGuard","New","Once","OnceState","Poisoned","RawFairMutex","RawMutex","RawRwLock","RawThreadId","ReentrantMutex","ReentrantMutexGuard","RwLock","RwLockReadGuard","RwLockUpgradableReadGuard","RwLockWriteGuard","WaitTimeoutResult","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bump","bump","bump_exclusive","bump_shared","bump_upgradable","call_once","call_once_force","clone","clone","clone_into","clone_into","const_fair_mutex","const_mutex","const_reentrant_mutex","const_rwlock","default","default","done","downgrade","downgrade_to_upgradable","downgrade_upgradable","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","is_locked","is_locked","is_locked","is_locked_exclusive","lock","lock","lock_api","lock_exclusive","lock_shared","lock_shared_recursive","lock_upgradable","new","new","nonzero_thread_id","notify_all","notify_one","poisoned","state","timed_out","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_lock","try_lock","try_lock_exclusive","try_lock_exclusive_for","try_lock_exclusive_until","try_lock_for","try_lock_for","try_lock_shared","try_lock_shared_for","try_lock_shared_recursive","try_lock_shared_recursive_for","try_lock_shared_recursive_until","try_lock_shared_until","try_lock_until","try_lock_until","try_lock_upgradable","try_lock_upgradable_for","try_lock_upgradable_until","try_upgrade","try_upgrade_for","try_upgrade_until","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unlock","unlock","unlock_exclusive","unlock_exclusive_fair","unlock_fair","unlock_fair","unlock_shared","unlock_shared_fair","unlock_upgradable","unlock_upgradable_fair","upgrade","wait","wait_for","wait_until","wait_while","wait_while_for","wait_while_until"],"q":[[0,"parking_lot"]],"d":["A Condition Variable","A closure has completed successfully.","A mutual exclusive primitive that is always fair, useful …","An RAII implementation of a “scoped lock” of a mutex. …","A thread is currently executing a closure.","An RAII mutex guard returned by FairMutexGuard::map, which …","An RAII mutex guard returned by MutexGuard::map, which can …","An RAII mutex guard returned by ReentrantMutexGuard::map, …","An RAII read lock guard returned by RwLockReadGuard::map, …","An RAII write lock guard returned by RwLockWriteGuard::map…","A mutual exclusion primitive useful for protecting shared …","An RAII implementation of a “scoped lock” of a mutex. …","A closure has not been executed yet","A synchronization primitive which can be used to run a …","Current state of a Once.","A closure was executed but panicked.","Raw fair mutex type backed by the parking lot.","Raw mutex type backed by the parking lot.","Raw reader-writer lock type backed by the parking lot.","Implementation of the GetThreadId trait for …","A mutex which can be recursively locked by a single thread.","An RAII implementation of a “scoped lock” of a …","A reader-writer lock","RAII structure used to release the shared read access of a …","RAII structure used to release the upgradable read access …","RAII structure used to release the exclusive write access …","A type indicating whether a timed wait on a condition …","","","","","","","","","","","","","","","","","","","","","","Performs an initialization routine once and only once. The …","Performs the same function as call_once except ignores …","","","","","Creates a new fair mutex in an unlocked state ready for …","Creates a new mutex in an unlocked state ready for use.","Creates a new reentrant mutex in an unlocked state ready …","Creates a new instance of an RwLock<T> which is unlocked.","","","Returns whether the associated Once has successfully …","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","Creates a new condition variable which is ready to be …","Creates a new Once value.","","Wakes up all blocked threads on this condvar.","Wakes up one blocked thread on this condvar.","Returns whether the associated Once has been poisoned.","Returns the current state of this Once.","Returns whether the wait was known to have timed out.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Blocks the current thread until this condition variable …","Waits on this condition variable for a notification, …","Waits on this condition variable for a notification, …","Blocks the current thread until this condition variable …","Waits on this condition variable for a notification, …","Waits on this condition variable for a notification, …"],"i":[0,7,0,0,7,0,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,12,4,1,2,3,16,6,7,12,4,1,2,3,16,6,7,1,2,3,3,3,4,4,6,7,6,7,0,0,0,0,12,4,7,3,3,3,6,7,6,7,12,4,6,7,12,4,1,2,3,16,6,7,12,4,1,2,3,16,6,7,1,2,3,3,1,2,0,3,3,3,3,12,4,16,12,12,7,4,6,6,7,12,4,1,2,3,16,6,7,12,4,1,2,3,16,6,7,1,2,3,3,3,1,2,3,3,3,3,3,3,1,2,3,3,3,3,3,3,12,4,1,2,3,16,6,7,1,2,3,3,1,2,3,3,3,3,3,12,12,12,12,12,12],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1],[2],[3],[3],[3],[[4,5]],[[4,5]],[6,6],[7,7],[[]],[[]],[[],8],[[],9],[[],10],[[],11],[[],12],[[],4],[7,13],[3],[3],[3],[[6,6],13],[[7,7],13],[[],13],[[],13],[[12,14],15],[[4,14],15],[[6,14],15],[[7,14],15],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,13],[2,13],[3,13],[3,13],[1],[2],0,[3],[3],[3],[3],[[],12],[[],4],[16,17],[12,18],[12,13],[7,13],[4,7],[6,13],[[]],[[]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[1,13],[2,13],[3,13],[[3,20],13],[[3,21],13],[1,13],[[2,20],13],[3,13],[3,13],[3,13],[3,13],[3,13],[3,13],[1,13],[[2,21],13],[3,13],[[3,20],13],[[3,21],13],[3,13],[[3,20],13],[[3,21],13],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[1],[2],[3],[3],[1],[2],[3],[3],[3],[3],[3],[[12,[24,[23]]]],[[12,[24,[23]],20],6],[[12,[24,[23]],21],6],[[12,[24,[23]],25]],[[12,[24,[23]],25,20],6],[[12,[24,[23]],25,21],6]],"c":[],"p":[[3,"RawFairMutex"],[3,"RawMutex"],[3,"RawRwLock"],[3,"Once"],[8,"FnOnce"],[3,"WaitTimeoutResult"],[4,"OnceState"],[6,"FairMutex"],[6,"Mutex"],[6,"ReentrantMutex"],[6,"RwLock"],[3,"Condvar"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"RawThreadId"],[3,"NonZeroUsize"],[15,"usize"],[4,"Result"],[3,"Duration"],[3,"Instant"],[3,"TypeId"],[8,"Sized"],[6,"MutexGuard"],[8,"FnMut"]]},\ "parking_lot_core":{"doc":"This library exposes a low-level API for creating your own …","t":"NRRENEDNNENDNNNNNDDNMLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLFMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFMFF","n":["Abort","DEFAULT_PARK_TOKEN","DEFAULT_UNPARK_TOKEN","FilterOp","Invalid","ParkResult","ParkToken","RequeueAll","RequeueOne","RequeueOp","Skip","SpinWait","Stop","TimedOut","Unpark","UnparkOne","UnparkOneRequeueRest","UnparkResult","UnparkToken","Unparked","be_fair","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","deadlock","default","default","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","have_more_threads","into","into","into","into","into","into","into","is_unparked","new","park","requeued_threads","reset","spin","spin_no_yield","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unpark_all","unpark_filter","unpark_one","unpark_requeue","unparked_threads","acquire_resource","release_resource"],"q":[[0,"parking_lot_core"],[122,"parking_lot_core::deadlock"]],"d":["Abort the operation without doing anything.","A default park token to use.","A default unpark token to use.","Operation that unpark_filter should perform for each …","The validation callback returned false.","Result of a park operation.","A value associated with a parked thread which can be used …","Requeue all threads onto the target queue.","Requeue one thread and leave the rest parked on the …","Operation that unpark_requeue should perform.","Don’t unpark the thread and continue scanning the list …","A counter used to perform exponential backoff in spin …","Don’t unpark the thread and stop scanning the list of …","The timeout expired.","Unpark the thread and continue scanning the list of parked …","Unpark one thread and leave the rest parked. No requeuing …","Unpark one thread and requeue the rest onto the target …","Result of an unpark operation.","A value which is passed from an unparker to a parked …","We were unparked by another thread with the given token.","This is set to true on average once every 0.5ms for any …","","","","","","","","","","","","","","","","","","","","","","","","","","","[Experimental] Deadlock detection","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Whether there are any threads remaining in the queue. This …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns true if we were unparked by another thread.","Creates a new SpinWait.","Parks the current thread in the queue associated with the …","The number of threads that were requeued.","Resets a SpinWait to its initial state.","Spins until the sleep threshold has been reached.","Spins without yielding the thread to the OS.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Unparks all threads in the queue associated with the given …","Unparks a number of threads from the front of the queue …","Unparks one thread from the queue associated with the …","Removes all threads from the queue associated with key_from…","The number of threads that were unparked.","Acquire a resource identified by key in the deadlock …","Release a resource identified by key in the deadlock …"],"i":[3,0,0,0,1,0,0,3,3,0,4,0,4,1,4,3,3,0,0,1,2,1,2,3,4,5,6,7,1,2,3,4,5,6,7,1,2,3,4,5,6,1,2,3,4,5,6,0,2,7,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,7,2,1,2,3,4,5,6,7,1,7,0,2,7,7,7,1,2,3,4,5,6,1,2,3,4,5,6,7,1,2,3,4,5,6,7,1,2,3,4,5,6,7,0,0,0,0,2,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,1],[2,2],[3,3],[4,4],[5,5],[6,6],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],2],[[],7],[[1,1],8],[[2,2],8],[[3,3],8],[[4,4],8],[[5,5],8],[[6,6],8],[[],8],[[],8],[[],8],[[],8],[[],8],[[],8],[[1,9],10],[[2,9],10],[[3,9],10],[[4,9],10],[[5,9],10],[[6,9],10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,8],[[],7],[[11,12,12,12,6,[14,[13]]],1],0,[7],[7,8],[7],[[]],[[]],[[]],[[]],[[]],[[]],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[11,5],11],[[11,17,12],2],[[11,12],2],[[11,11,12,12],2],0,[11],[11]],"c":[],"p":[[4,"ParkResult"],[3,"UnparkResult"],[4,"RequeueOp"],[4,"FilterOp"],[3,"UnparkToken"],[3,"ParkToken"],[3,"SpinWait"],[15,"bool"],[3,"Formatter"],[6,"Result"],[15,"usize"],[8,"FnOnce"],[3,"Instant"],[4,"Option"],[4,"Result"],[3,"TypeId"],[8,"FnMut"]]},\ @@ -130,27 +130,27 @@ var searchIndex = JSON.parse('{\ "pin_project_lite":{"doc":"A lightweight version of pin-project written with …","t":"O","n":["pin_project"],"q":[[0,"pin_project_lite"]],"d":["A macro that creates a projection type covering all the …"],"i":[0],"f":[0],"c":[],"p":[]},\ "pin_utils":{"doc":"Utilities for pinning","t":"OOO","n":["pin_mut","unsafe_pinned","unsafe_unpinned"],"q":[[0,"pin_utils"]],"d":["Pins a value on the stack.","A pinned projection of a struct field.","An unpinned projection of a struct field."],"i":[0,0,0],"f":[0,0,0],"c":[],"p":[]},\ "planus":{"doc":"Planus – alternative flatbuffer implementation","t":"CDCDIGCDCIIIIIIIILLLLLLLLLLLLALLLLLLLLLLLKLLLLLLLLLLLALDEDNNNNNNDNDNLLLLLLLLLLMLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLMLLLLLLLMMMMDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["ArrayWithStartOffset","Builder","Error","Offset","ReadAsRoot","Result","SliceWithStartOffset","UnionOffset","Vector","VectorRead","VectorWrite","WriteAs","WriteAsDefault","WriteAsOffset","WriteAsOptional","WriteAsOptionalUnion","WriteAsUnion","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clear","clone","clone","clone_into","clone_into","default","errors","finish","fmt","from","from","from","into","into","into","is_empty","len","new","read_as_root","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vectors","with_capacity","Error","ErrorKind","ErrorLocation","InvalidLength","InvalidOffset","InvalidUtf8","InvalidVtableLength","MissingNullTerminator","MissingRequired","UnknownEnumTag","UnknownEnumTag","UnknownEnumTagKind","UnknownUnionTag","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","byte_offset","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","error_kind","error_kind","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","into","into","into","into","into","method","provide","provide","provide","provide","source","source","source","source_location","source_location","tag","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_","type_id","type_id","type_id","type_id","type_id","with_error_location","with_error_location","length","source","source","tag","Vector","VectorIter","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","fmt","fmt","from","from","get","into","into","into_iter","into_iter","is_empty","iter","len","next","to_owned","to_owned","to_vec","to_vec_result","try_from","try_from","try_into","try_into","type_id","type_id"],"q":[[0,"planus"],[55,"planus::errors"],[154,"planus::errors::ErrorKind"],[158,"planus::vectors"]],"d":["","Builder for serializing flatbuffers.","","An offset to a serialized value of type T inside a buffer …","Interface for getting a view into serialized data.","A type alias for Result with a Planus error","","An offset to a serialized union value of type T inside a …","","Trait used by generated code to read elements from vectors.","Trait used by generated code to write elements to vectors.","Trait used by generated code to serialize primitive types.","Trait used by generated code to serialize primitive types …","Trait used by generated code to serialize offsets to …","Trait used by generated code to serialize optional …","Trait used by generated code to serialize offsets to …","Trait used by generated code to serialize offsets to …","","","","","","","Resets the builders internal state and clears the internal …","","","","","","Error types for serialization/deserialization","Finish writing the internal buffer and return a byte slice …","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns true if the internal buffer is empty.","Gets the length of the internal buffer in bytes.","Creates a new Builder.","Takes a slice assumed to be of this type and returns a …","","","","","","","","","","","","Types for interacting with vectors in serialized data","Creates a new builder with a specific internal capacity …","The main error type for Planus","The possible errors in planus when reading data from a …","The location of the error in both the generated code and …","The buffer was too short while validating a length field.","The offset was out of bounds.","A string contained invalid utf-8.","A vtable had an invalid length (too large, too small or …","A string null terminator was missing.","A required field was missing.","Information about an unrecognized enum tag.","An enum contained an unknown value. For forward …","The value of an unknown enum tag.","An union contained an unknown variant. For forward …","","","","","","","","","","","Offset into the flatbuffers buffer where the error was …","","","","","","","","","","","The kind of error","The unknown tag.","","","","","","","","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The generated method where the error was encountered.","","","","","","","","The location of the error","The location of the unknown tag.","The unknown tag.","","","","","","","","","","","","","","","","","","","","","The flatbuffers type where the error was encountered.","","","","","","Helper function that adds an error location to this error.","Helper function that adds an error location to this error.","The length of the vtable.","The enum value that wasn’t recognized.","The utf-8 error triggered by the string.","The union tag that wasn’t recognized.","A Vec like view into a serialized buffer that deserializes …","An iterator over the elements of a Vector.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the element at the given index, or None if out of …","Calls U::from(self).","Calls U::from(self).","","","Checks if the vector is empty.","Returns an iterator over the vector.","Returns the number of elements in the vector.","","","","Copies self into a new Vec.","Copies self into a new Vec.","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,1,3,4,1,1,3,4,3,4,1,0,1,1,3,4,1,3,4,1,1,1,1,36,3,4,3,4,1,3,4,1,3,4,1,0,1,0,0,0,18,18,18,18,18,18,0,18,0,18,17,18,19,20,21,17,18,19,20,21,21,17,18,19,20,21,17,18,19,20,21,17,19,17,17,18,18,19,19,20,20,21,21,17,17,17,18,18,18,19,20,21,17,18,19,20,21,21,17,18,19,20,17,18,19,17,19,20,17,18,19,20,21,17,18,19,20,21,17,18,19,20,21,17,18,19,20,21,21,17,18,19,20,21,18,20,37,38,39,40,0,0,28,30,28,30,28,30,28,30,28,30,28,30,28,28,30,28,30,28,28,28,30,28,30,28,28,28,30,28,30,28,30],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[1],[[[3,[2]]],[[3,[2]]]],[[[4,[2]]],[[4,[2]]]],[[]],[[]],[[],1],0,[[1,5,[8,[[7,[6]]]]],[[9,[6]]]],[[1,10],11],[[]],[[]],[[]],[[]],[[]],[[]],[1,12],[1,13],[[],1],[[[9,[6]]],14],[[]],[[]],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],16],[[],16],[[],16],0,[13,1],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[17,17],[18,18],[19,19],[20,20],[21,21],[[]],[[]],[[]],[[]],[[]],0,0,[[17,10],11],[[17,10],11],[[18,10],11],[[18,10],11],[[19,10],11],[[19,10],11],[[20,10],11],[[20,10],11],[[21,10],11],[[21,10],11],[[]],[22,17],[19,17],[20,18],[23,18],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[24],[24],[24],[24],[17,[[8,[25]]]],[18,[[8,[25]]]],[19,[[8,[25]]]],0,0,0,[[]],[[]],[[]],[[]],[[]],[[],26],[[],26],[[],26],[[],26],[[],26],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],0,[[],16],[[],16],[[],16],[[],16],[[],16],[[18,27,27,13],17],[[20,27,27,13],19],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[[28,[2]]],[[28,[2]]]],[[[30,[[0,[29,2]]]]],[[30,[[0,[29,2]]]]]],[[]],[[]],[[[28,[[0,[31,32]]]],10],11],[[[30,[[0,[32,31]]]],10],11],[[]],[[]],[[[28,[32]],13],[[8,[32]]]],[[]],[[]],[[[28,[32]]]],[[]],[[[28,[2]]],12],[[[28,[32]]],[[30,[32]]]],[[[28,[2]]],13],[[[30,[32]]],[[8,[32]]]],[[]],[[]],[[[28,[32]]],[[14,[[34,[[33,[32]]]]]]]],[[[28,[[15,[0,35]]]]],[[14,[[34,[[33,[0]]]]]]]],[[],15],[[],15],[[],15],[[],15],[[],16],[[],16]],"c":[],"p":[[3,"Builder"],[8,"Sized"],[3,"Offset"],[3,"UnionOffset"],[8,"WriteAsOffset"],[15,"u8"],[15,"array"],[4,"Option"],[15,"slice"],[3,"Formatter"],[6,"Result"],[15,"bool"],[15,"usize"],[6,"Result"],[4,"Result"],[3,"TypeId"],[3,"Error"],[4,"ErrorKind"],[3,"UnknownEnumTag"],[3,"UnknownEnumTagKind"],[3,"ErrorLocation"],[4,"Infallible"],[3,"Utf8Error"],[3,"Demand"],[8,"Error"],[3,"String"],[15,"str"],[3,"Vector"],[8,"Clone"],[3,"VectorIter"],[8,"Debug"],[8,"VectorRead"],[8,"TryFrom"],[3,"Vec"],[8,"From"],[8,"ReadAsRoot"],[13,"InvalidVtableLength"],[13,"UnknownEnumTag"],[13,"InvalidUtf8"],[13,"UnknownUnionTag"]]},\ -"polars":{"doc":"Polars: DataFrames in Rust","t":"ROAAOAAFAAAACCAAACFGDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIKKKKKKKDDDDDIDDIDDIDDDLLLKKLLLLLLLLKLLKLLLLLLLLLLMMMLLLLLLLLLLLLLLLLKLLLLLALLLLKKKKFLLLLLLLLLALLLLKLLLLLLLLLLLLLLLLLLDDDDIDDKLKMLLLFLDDDDIDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAANEDNNNGGENDIDENDIENNNNNNGDNDDDDDNNNGDDNDNNDDDIIIIIIIIIIIIIIIIIIIIIIIIIIIDIGNNNDENNNNGDNNGDNNNNGDNNGNNNNGDGNDGENNNDNNNNGDNNNGDNNNIIIIINNDEGQNRNGGGGIEIINGDNNNGDNNNGDNNNGDNNNGDNIIIINNIIIIQQQQQNNDENGNGGNNNINNNNDDIGIDDDDDNNDINNNNNNDNNNNNNNNNNIIINNQNNINNNNNIIDDDINNDGNDDDNNNQDQGGGGGIIEIIIIIIGIDIENEDIEEDDDDNNGNDINNNNNIDDIDNNNNDNNEIIEEIQDINNNNGDEGNNNNGDNNNGDNNNGDNNNGDNENNNNGDNDDDIIINLLLLLLLLLLLLLLLLLLLLKLKKLLLKKLLLLLLLLLLLLLKLLLLLLLKLLLLLLKKKKKKKKKLLKLKLLLLLLLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLKAMMMKKKKALMKKLLKLKKKLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLALLLLLLLLLMAFFFMLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLOKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLMLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLMKKKLKLLLLLALLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLLKLLKLKKKKKLKKKKLLLLLLLLLLLLLLLLKLKLLLKLLLLLKLLLKKLLLLLLLLLLLLLLLLLLKLKLKKLLLLLMMLKLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKLLLLLLLLKKLLMLLLLLLLLLLMKLLLAKLKMLLLLLLLLKLLFMMMLLLMLLKKMMLLLKMMLKKKLLLLLLLLLLLLKKLLLLLKKAKLMMLLLLLLOOOOMLLLLLKLKAKKLKLLLKKMLLKKKKLLKKKLLKLLLAKLMKLKLLKKLLLLLLLKLKLMMALKKMLLKKKKLKKKKLLKLKLLLLLLLLLLLLLLLLLLLLLLMMKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLAMLLMLMLLKLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMKLLLLLKMMDLLLLLLLLLLLLLLLLLLLLLLDDDNNNNEEDNNDENNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLENNGEEINNNGNDNNNGDDNNDDDGENNNNGDNNGDNNNNGDNNNNGDNDNNDNNNNGDNNNGDINNQRGGGGIGDNNNGDNNNGDNNNGDNNNGDNNNNNNNGDNNDINNNNNNNQNNNINNGNDDQGGGGGIIIIIEENDNNNDNNNNNGDEGNNNNGDNNNGDNNNGDNNNGDNNNNNGNDKKKMLLKKFMKKIIIKKKDLLLLLLLLLLLLLLLLLLMDLLFLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLIGGKKFFFFKIKKDFFFFIILLNNDDDDIIIIIIIIIIIIIIIIIIIIIIIIIIGGENIIIIQQQQNNDDNNNNNNNDDDDDNINNNDDIEIIEEIQDIDDNKKKKKKKKKLKKKKKKKKLLLLMMKKLKKKAKKKKKKLLKKLLLKKMLLLLLMMLKKKMMLLLLKLKKKKKAKKLKLKKKKKKLAKFAFFFFFFAFFFFFFFFIENNGEEINNNGNDNNNGDDNNDDDGENNNNGDNNGDNNNNGDNNNNGDNDNNDNNNNGDNNNGDINNQRGGGGIGDNNNGDNNNGDNNNGDNNNGDNNNNNNNGDNNDINNNNNNNQNNNINNGNDDQGGGGGIIIIIEENDNNNDNNNNNGDEGNNNNGDNNNGDNNNGDNNNGDNNNNNGNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLMLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKDDDNNNNEEDADLLLLLLLFLLLLFLLLFLFAAAAAAAAAAAAENNNNDNNNNNNNNNNEGNNNNNLLLLLLLLLLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLFLLLLLLFOOOOLLFLFLLLLLLLLLLLLLLLLFDDDGIGIDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLALLLLLLLLLLLLLLLLKKLLLLLLLLLLLLIDKFDENNLAALLAALLAALLLLLLLLLLLALLALLLLLLLLLLLLLLLLLLAALALAALALLLAALLLLIDDGDGGDIDDGGGGGGIGGGGGGGGGGGGSDGDGGIDDDDDDDDDDDDDDIDIIIGGGGGGGGDDGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLFLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLFLLLLLLLLLLKLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLIDDDDDDDDDDDDLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGFFFFDDDLLLFLLLFFLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLFLLLLLLLLLLFLLLLLLLLLLLLLLLLLLFFLLALLLLFIIDDDDNNDEDLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLKFFLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLKLLLLFFFLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAAAAAAAAAAAAAAASSIIFFFFFFFKKFFFFFKKFFKKKFFFIIIIIIIIIIIIIIIIIIIFKFAFFFFFFKKKKKAFKFFKFFKKKFKKKKFKFAKKKIFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDLFFFFFFFFFFLLFFLLFFFFFFLLLFFFLFFFLLLFLFFMFFFFFFFFFFFFFFFFFFFLLLLFFFFFFFFFLMFFQIIIIAAFFFFFFFFFFFFFKFFFFFKKFKFKFFFKFKFFFKFFFAAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFGFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFNNNNENNNNNNNNNNNDNNNNNNNNNNNNNNNNNNNNNNNNENENNNNNNNNNNGNNNNNNNENEDGNNNNNNENNNNNNNNNNNNNNNENNNLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLFLLLLLLLLLLLLLLLLMLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLENNNNNNNGDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLFFFLLLLLLLLFFLLLLLLLLALLLLLLLLLLLLLLLLLLFFAAAADDLLALLLLLLLLLLLLLMLLLLMMLLLLLLLLMALLLLLLLLLLAGNDDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNENDDENNNLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLFFFFLLMMLMLLLLLLLLLLLLLLLLLLLLLMLLLLLLMMMMMMMMMMEDNDDDNLLLLLLLLLLLLLLLLLLLLMLFLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLALLLLLLLLLLLLLLLLLLLLLLLLLFLLDLLLLLLLLLLLLLLLLLDDLLMLLLLLLLLLLLLLLLADIDQIDDQDDDDDDDDDKKLLLFLFLLLLKLLLLLLLLLLLLFAQIDQDKLLLLLLLLKLLLLLLLLLLLAAGDNNNNDDDNENNNNDNNNNQQINNDDNNNENENNNNNNNNNNQQNNNNNNNINGDNEGDIEEEENEENDDDDNENNDNNNNNNNNNNNNNNNNLLLLLLLLLLFFFKKLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFMLLLLLFFMLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLFFFFFLLLLLLAFLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLFMLLLLLLLLLLLLLLLLLLLLLLMLLLMLLLFFFFFFFMALMLLLLALLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLMMMMMMMMDIDQIDDQDDDDDDDKKLLLFLFLLLLKLLLLLLLLLLLLDEDDNNLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLMMMMLMMFFMMMLLLLLLLLLLLLLLLLLLDNDENDMMFMMMFFMMMMMMMMDLLLLFMLLLLLLLMMMLLLLNNNDNNDEEDNNNNNDNNNDDEQIDDDDNNNNDNNNQDNNNNNEEEENNNNNNGDDNNDNNNEDNDLLLLLLLLLLLLLLLLKLLLLFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLFLLMLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLFLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMLLLLMMMLLMLLLLLLLLLLLLMMFLLLLLLLLLLLLMLLLLMFMMLLLMMLLLLLLLFFLLLLLLLLFFLLLLLLLLLLLLLLLLFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLFFFMLLLLMMMMFFSIDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDIDDDLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLRRRRRRFFFFFFFFFFFFFFFFFFFFFFFFFIIDDQNSNNNSIDNNNNNNNIISENNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLKKLLLLLLKLLLLKKLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLALLLKLLLLLLKLLLLKLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLQISQQIIQLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLFFFNNNNDDIDNDNNIQNDNDNNNDESSRRSSSSSRRSSNNNNNEDDDDDNNNNIQDDDDGDENENNNINNIINNDNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLKLLLLKLLLLKLLLLLALLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLKLLLKLLLKLLLKLLLKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLKLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLKLLLLKLLLLKLLLKLLLKLLLLKLLLLKLLLKLLLLKLLLLKLLLLLKLLLLLKLLLLLLLLLLLLLLNNDNENNNNNNDDNNNNNENNNNNNNNNNNNNNENNNNNEDEGDNNNNNNNDNNNNNNNNNNNNNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLMMMMMMMLLLLLMMFFMLLLLLLLLLLLLLLLLLLLLLAMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMDDDRRRRDDDDNDDENIQNIDLKLLKLLLLKKKKLLLLLLLLLLNNNDDINNDNNNNDNNNNNEDDDNNNIQNENNINNIINDNELKKKLLKLLKLKLLKKKKLLKKKKKKKKLLLLLKKKKKKKKKKKKKLKLLLLLIIQQIIIIIIIIIKNIKKKKKKKKKIIEIIQINKKLKLKIIIIIIIIIIQQQKDIIIKIIIIILIIIIIIIIIIFKKFKKKKKKKKKKLLLLAAFKKKKKKKFKKKKKFFFKLKKKKLLLLKLLLKKKAKLLLKKLLKKLLLLLKLLKKLKLLLKLLKAKLLAKLLKKKKKKLKKKLKMLKKKKKKKKKKKKKKKKKKKFKAAFKKKKAKKLKKKKKKKKLLAKKFKKKKKKKKKKKLLLLLLKLLKKLLLLLLKLLLKKLLLLLLKKLLKKKKKKFKIIIKKKKIIIIKFKLLLLLKLLLLLKLLLLLLLKLLLLLKLLKKKKKKKKKKIIIKKLKLKKKLKLKKKKKKKKKKLKKLKKKLKKKKLKLKKKKKKLKLKLKLKLKLLLKKKKKKLKKKLKKKKKKKKKKKKKLKLKLKLKKKKKKKLKLKLIILKFKLLFKIKKKKLKKLKKKKKKKLKKKAAAAAAAAQQIIIKKLKKLIIIIIIIIKKKKKKKKIIKKKKIQKIIQKKIIIKKKIIIIKKKKKIIIIIIKKKKKKQIFFKIKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKIIFKFKKKFKAAADDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNDNDDDDDDELALLLLLLLLLLLLLLLLLLLFLLLLLLAFLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLFLLLLLLLLLLLLLLLLLLLLLLAFLFFLLLLLLALALAAALFLFLALFLLFLLLFLLLLLLAALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLFLFLDLLLLLLLLLLLLLLLLLLLLLLLAAAAAAADDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDEDDDDDDDDDDDDIIDDDDIIIQQQQQQQQQQQDNDDDDDDDDIIIIIDDDDNDDDDDDDDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKLKKLLLLLALLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIIQQQQQIIIQQQIIFFFKKKLKLKKKKLLKKKKKKDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIIIIIQQQQQQQQQQQIIIIIIIILLKKKLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLKLLLLLLKLKLLLLLLLLLLLLLKLLLLLLLKKLKKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDIIDDDDDDDLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDIDDDLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDNEDDDDDDDIDDDDDDDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDDDIDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNGDNNNNEDNDELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLMLLMLLLLMMMLGNNDENDEEDDGNNGNINNNNNNNNNNNDNNNLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLALLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMIFFFFFFFFKIKKNGGGNNGDEENGNNNNNLLLFFFFFFLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLFMLMLLLLLLLLLLLLLLMLLLNNEENNNNNNNNNNNNNNNNNDNNNNNNNNNNNNLLLLLLFLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLFFFFFFFNNENNDNNNNGNNINDNNNEDINNNNGNDGENDIGDEIINDIIENNNNNDNNNNGDNNINDDDIDDNNNNNGDEDGNDDNDNNNDNNNDDDEDNDDIIIIIIIIIIIIIIIIIIIIIIIIIIIDIINEGNNNNNNNNNNNNEDDNNNNNDIINNENNNNNGINDNNDGIDNNNNGDNNNNNNNNGNDNNNNDGIDGDNNNNNENNNEINNDNNGENNNNNNDNNNNNGDNNNNGDNNNNNNIIINEIIIGGNNDENDEEDDGNNNNDNQNRNNGGGGGNNIEIINGDNNNNGDNNNNGDNNNNGDNNNNGDNENIIIIIINNEDDDDDDDNINIINNINNNNNQQQQQNNNNDDDENEDNDDNNNGNGGNNNNDIDDDNNNNINNNNNDDIGNIDIIDDDDDINENNNNNIDEINNNNNNNNNNNNNNNNNNNDDNNNNNNNNNNNNNNNNIRNNNNIINNNNQNNNINDNNNNNNDNNNNNEIIDDDINNGNDDDNEDNNNQDQEEDDDINIDGGGGGNIIEIIIIIIIGIIIIINDNNNIENNINNEDNIIEENNNIDDDDDDIDNNNNDDDDNNGENNNIIDNIIIIIINNNNNNNNNNNNIDNNNNDDDENNIDNNDNNNDDNNDNNNNNEIIEEIQDININDNNNNNNGIDEGNINNNDNNNNNGDNNNNGDNNNNGDNNNNGDINNNDNENNNNNNNGDIINDDDINNIINDNDNNEDNNNNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLKLLLKLLLALFLFLMLLLLLLLFLKKLLKKKLLFKLKKLLFKKKKFLLLLLLLLKLLKLLKLLFLKLLFMLAALLKLLLLLKLLLLLKLLKKLKLLFLKFLLLFLLLLLLLLALFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKMMMLMMMKKKMMFKKKLKALLLMMMKKMMKLKKAKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMALMLFFLFFLLMMFLFLLFFLLLLLLLLFLLFLLLLFLLLLLLFLLLMLMAFAFFFFLLLMKLMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLMOFLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFALKLMFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKKMMMLLLLLLLLKAMLLLLLLLLLLLLMMLLLLKKKLLKKKKLLLLLLLLLLLLLLKLLLFLLLALLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFMMMMFLMMFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLLKLLLLKLLLKKLLKAKKLKKKKLKLKLLLLKLLLKKLLKLLLKKKLLLKLLLKLKLLFFKLKLLLLLKLMLLLLLLLLLLLLLLLLLLLLLKLLMKMLMMLFMMMKFLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFMFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKKLKLLLFLLLLLLLLLLLLLLLFKLFKLMLLLLLKLLLLLLLLLLALFLLLKMLLLKLLLLLFKLLLLLLMMLLLLMLLLLLLLLLLLLLLLLLLKLKLMMMLLLFLLLLLLFLLFMFLLLLLLLFFLLLLLFLLLLKLLMLFLMMMMKMKMFLLLLLLLFMMMMKLLMKMLLLLLLMKKLLKLLKMMLLKLLMMMMLLLKMMMLLAKLLKLMKLLKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLFLKKAKLLMLMMMMLKLLLLLLMLLLLLMLLMMLKKLLMLKLLLLLLFMMLOOOOLLMMALMLLLMFLLLKLLLLLFLALKKLLMMMFKLKKLLFLLLLLLLFLFKKLLLMLLLLLFFKLLKLLKLLKLLKLLKLLKLLKLLLKLLLLKLLMMMMMMLLLLLKLLLLLLLLLLMMFKLLMKMLAKKKKKLLLLLLLLLLKKLLLKLLLKLLMLLLLMMAKLLLLLMMKLKLLLLLAKLLLLLKLLFLMLLMLLLKLLKLLLLMMMLMLALKLKLLMFLLLLLLFLLLLLKKLKKLKKKKLLFFLLLFLLLLLLKLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMLKMLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKMLKLLLLLLLLLFLLKKMLMALMLLLLMMLLLLLKLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMMFLLMMMMLLLLLKLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMAKMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMIFFFFFFFFKIILLLLLKAQIDQDLKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLDENNIIIIDDIILLLLLLLLMMMMLLMMLLKLLLLMMLKLKLLLLLLKKMMKLKLLKLKLLKKLLLKKKKKKKKKLKLLLMLMFALLLLLMMMMLLINNNNNEILLLLLLKLLLLLLLLLLLLLLLALLLLLLLLDQIILLLLLLLLLFLLMLKLLMLLKLLLLLNNDENNENNGEEINNNGNDNNNGDDNNDDDGENNNNGDNNGDNNNNGDNNNNGDNDNNDNNNNGDNNNGDINNQRGGGGIGDNNNGDNNNGDNNNGDNNNGDNNNNNNNGDNNDINNNNNNNQNNNINNGNDDQGGGGGIIIIIEENDNNNDNNNNNGDEGNNNNGDNNNGDNNNGDNNNGDNNNNNGNDKKAKMLLKKFMKKDDDNNNNEEDADFFFFFIIIKKKDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIKKDMADIDQIDDQDDDDDDDDDLKLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFFDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLIIIIKLLLLLLLKLLLLLLLLLLLLLLKLLLLIKKFAFFFFFFDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFNINIEQNDDGILLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLKKLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLKLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLKLLLKLLLKLLLLLLALLLLLLLLLKLLLLLLLKKLLLLKLLLKLLLKLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLKLLLKLLLKALLLLLLLKLLLKLLLKLLLLLLLLLLLLLLLKLLLLKLLLLLLLLLLLLLLKLKKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLIIIQFKKLAKKLKKLKKLKKLIIKLKLNNELLLLLLLLALLLLLLLLLLLLLLLLGDLLLLLLLLLLLLLLLLLLLLLL","n":["VERSION","apply_method_all_arrow_series","chunked_array","datatypes","df","doc","docs","enable_string_cache","error","export","frame","functions","io","lazy","prelude","series","testing","time","using_string_cache","ChunkIdIter","ChunkedArray","__clone_box","_can_fast_explode","abs","add","add","add","add","add","add","add","add","add","add","add","add","add_to","agg_list","agg_list","agg_list","agg_list","agg_list","agg_list","agg_list","all","all_3val","amortized_iter","amortized_iter","amortized_iter_with_name","amortized_iter_with_name","any","any_3val","append","apply","apply","apply","apply","apply","apply","apply_amortized","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_in_place","apply_kernel","apply_kernel","apply_kernel","apply_kernel","apply_kernel_cast","apply_kernel_cast","apply_kernel_cast","apply_kernel_cast","apply_mut","apply_mut","apply_mut","apply_on_opt","apply_on_opt","apply_on_opt","apply_on_opt","apply_on_opt","apply_on_opt","apply_to_inner","apply_to_inner","apply_to_slice","apply_to_slice","apply_to_slice","apply_to_slice","apply_to_slice","apply_to_slice","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_unique","arg_unique","arg_unique","arg_unique","arg_unique","arg_unique","arg_unique","arithmetic","as_array","as_binary","as_binary","as_list","as_ref","as_ref_dtype","as_utf8","as_utf8","bitand","bitand","bitand","bitor","bitor","bitor","bitxor","bitxor","bitxor","borrow","borrow_mut","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","builder","cast","cast","cast","cast","cast","cast","cast","cast_and_apply_in_place","cast_unchecked","cast_unchecked","cast_unchecked","cast_unchecked","cast_unchecked","cast_unchecked","checked_div","checked_div_num","chunk_id","chunks","chunks_mut","clone","clone_into","comparison","cont_slice","cummax","cummin","cumprod","cumsum","data_views","default","deref","deref_mut","div","div","div","div","divide","drop","drop","dtype","equal","equal","equal","equal","equal","equal","equal","equal","equal","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","explode","explode_and_offsets","explode_and_offsets","explode_and_offsets","extend","fill_null_with_values","fill_null_with_values","fill_null_with_values","filter","filter","filter","filter","filter","filter","filter","first_non_null","float","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_chunks","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter_options","from_iter_options","from_iter_options","from_iter_options","from_iter_options","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_values","from_iter_values","from_iter_values","from_iter_values","from_iter_values","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice_options","from_slice_options","from_slice_options","from_slice_options","from_slice_options","from_trusted_len_iter_rev","from_trusted_len_iter_rev","from_vec","full","full","full","full","full","full","full","full_null","full_null","full_null","full_null","full_null","full_null","full_null","full_null_with_dtype","full_null_with_dtype","get","get","get","get","get","get","get","get","get","get","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_inner","get_inner","get_object","get_object_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_values_size","get_values_size","get_values_size","get_values_size","group_tuples","group_tuples","group_tuples","group_tuples","group_tuples","group_tuples","group_tuples","group_tuples_perfect","gt","gt","gt","gt","gt","gt","gt","gt","gt","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","has_validity","head","init","init_rand","inner_dtype","inner_dtype","into","into_date","into_datetime","into_decimal","into_decimal_unchecked","into_duration","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_no_null_iter","into_series","into_series","into_time","is_empty","is_finite","is_in","is_in","is_in","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_optimal_aligned","is_sorted_flag","iter_validities","iterator","kernels","last_non_null","len","lhs_div","lhs_rem","lhs_sub","limit","lt","lt","lt","lt","lt","lt","lt","lt","lt","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","max","max","max_as_series","max_as_series","max_as_series","max_as_series","max_as_series","max_as_series","mean","mean","median","median","median","median_as_series","median_as_series","median_as_series","min","min","min_as_series","min_as_series","min_as_series","min_as_series","min_as_series","min_as_series","mmap_slice","mmap_slice","mode","mode","mode","mode","mode","mul","mul","mul","mul","multiply","n_unique","n_unique","n_unique","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_from_index","new_from_index","new_from_index","new_from_index","new_from_index","new_from_index","new_from_index","new_from_owned_with_null_bitmap","new_from_vec","new_vec","none_to_nan","not","not","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal_and_validity","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","null_count","object","ops","par_iter","par_iter","par_iter_indexed","par_iter_indexed","peak_max","peak_min","prod_as_series","quantile","quantile","quantile","quantile_as_series","quantile_as_series","quantile_as_series","rand_bernoulli","rand_normal","rand_standard_normal","rand_uniform","rechunk","ref_field","rem","rem","rem","rem","remainder","rename","repeat_by","repeat_by","repeat_by","repeat_by","reverse","reverse","reverse","reverse","reverse","reverse","reverse","rolling_apply","rolling_apply_float","sample_frac","sample_n","set","set","set","set","set_at_idx","set_at_idx","set_at_idx","set_at_idx","set_at_idx2","set_at_idx2","set_at_idx2","set_at_idx_with","set_at_idx_with","set_at_idx_with","set_at_idx_with","set_fast_explode","set_inner_dtype","set_sorted_flag","shift","shift","shift","shift","shift","shift","shift","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","shrink_to_fit","slice","sort","sort","sort","sort","sort","sort","sort_with","sort_with","sort_with","sort_with","sort_with","sort_with","std","std","std","std_as_series","std_as_series","std_as_series","str_concat","str_concat","sub","sub","sub","sub","subtract","sum","sum","sum_as_series","sum_as_series","sum_as_series","sum_as_series","sum_as_series","sum_as_series","tail","take","take","take","take","take","take","take","take_rand","take_rand","take_rand","take_rand","take_rand","take_rand","take_unchecked","take_unchecked","take_unchecked","take_unchecked","take_unchecked","take_unchecked","take_unchecked","temporal","tile","to_decimal","to_ndarray","to_ndarray","to_ops","to_ops","to_ops","to_ops","to_ops","to_ops","to_owned","to_physical","to_physical","to_utf8","to_vec","to_vec_null_aware","try_apply","try_apply","try_apply","try_apply","try_apply","try_apply","try_apply_amortized","try_apply_amortized","try_from","try_into","type_id","unique","unique","unique","unique","unique","unique","unique","unpack_series_matching_type","unset_fast_explode_list","upstream_traits","var","var","var","var_as_series","var_as_series","var_as_series","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vzip","width","with_chunks","zip_with","zip_with","zip_with","zip_with","zip_with","zip_with","zip_with","ArrayArithmetics","add","div","div_scalar","mul","rem","rem_scalar","sub","AnonymousListBuilder","AnonymousOwnedListBuilder","BinaryChunkedBuilder","BinaryChunkedBuilderCow","BooleanChunkedBuilder","ChunkedBuilder","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListPrimitiveChunkedBuilder","ListUtf8ChunkedBuilder","NewChunkedArray","PrimitiveChunkedBuilder","Utf8ChunkedBuilder","Utf8ChunkedBuilderCow","append_array","append_empty","append_empty","append_null","append_null","append_null","append_null","append_null","append_null","append_opt_array","append_opt_series","append_opt_series","append_option","append_series","append_series","append_series","append_value","append_value","append_value","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","capacity","capacity","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","fast_explode","field","finish","finish","finish","finish","finish","finish","fixed_size_list","from","from","from","from","from_iter_options","from_iter_values","from_slice","from_slice_options","get_list_builder","init","init","init","init","inner_array","into","into","into","into","list","new","new","new","new","shrink_to_fit","shrink_to_fit","shrink_to_fit","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","AnonymousListBuilder","AnonymousOwnedListBuilder","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListPrimitiveChunkedBuilder","ListUtf8ChunkedBuilder","append_null","append_opt_series","append_series","builder","fast_explode","field","finish","get_list_builder","inner_array","BinaryIterNoNull","BoolIterNoNull","FixedSizeListIterNoNull","ListIterNoNull","PolarsIterator","SomeIterator","StructIter","Utf8IterNoNull","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","from","from","from","from","from","from","from","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_vec","into_vec","new","new","new","new","new","next","next","next","next","next","next","next","next_back","next_back","next_back","next_back","next_back","next_back","par","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","list","utf8","Any","AnyValue","Arc","Array","Array","Array","ArrayChunked","ArrayRef","ArrowDataType","ArrowError","ArrowField","ArrowGetItem","ArrowSchema","ArrowTimeUnit","AsOf","AsOfOptions","AsRefDataType","AsofStrategy","Average","Backward","Backward","Binary","Binary","Binary","BinaryChunked","BinaryChunkedBuilder","BinaryOwned","BinaryTakeRandom","BinaryTakeRandomSingleChunk","BinaryType","BoolTakeRandom","BoolTakeRandomSingleChunk","Boolean","Boolean","Boolean","BooleanChunked","BooleanChunkedBuilder","BooleanType","C","CatIter","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalType","ChunkAgg","ChunkAggSeries","ChunkAnyValue","ChunkApply","ChunkApplyKernel","ChunkBytes","ChunkCast","ChunkCompare","ChunkCumAgg","ChunkExpandAtIndex","ChunkExplode","ChunkFillNullValue","ChunkFilter","ChunkFull","ChunkFullNull","ChunkPeaks","ChunkQuantile","ChunkReverse","ChunkRollApply","ChunkSet","ChunkShift","ChunkShiftFill","ChunkSort","ChunkTake","ChunkUnique","ChunkVar","ChunkZip","ChunkedArray","ChunkedBuilder","CloudOptions","ColumnNotFound","ComputeError","Cross","DataFrame","DataType","Date","Date","Date32","Date64","DateChunked","DateType","Datetime","Datetime","DatetimeChunked","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dense","Dictionary","Dummy","Duplicate","Duration","Duration","Duration","DurationChunked","DurationType","DynArgs","Extension","Field","FillNullLimit","FillNullStrategy","First","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","Fortran","Forward","Forward","FromData","FromDataBinary","FromDataUtf8","FxHash","GetAnyValue","Global","GlobalFinished","GroupsIdx","GroupsProxy","GroupsSlice","HashMap","Higher","IDX_DTYPE","Idx","IdxArr","IdxCa","IdxSize","IdxType","IndexOfSchema","IndexOrder","IndexToUsize","InitHashMaps","Inner","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","IntoGroupsProxy","IntoSeries","IntoTakeRandom","IntoVec","InvalidOperation","Io","IsFirst","IsFloat","IsIn","IsLast","Item","Item","Item","Item","Item","Iter","IterNulls","JoinArgs","JoinType","LargeBinary","LargeBinaryArray","LargeList","LargeListArray","LargeStringArray","LargeUtf8","Last","Left","LhsNumOps","Linear","List","List","List","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListChunked","ListFromIter","ListPrimitiveChunkedBuilder","ListTakeRandom","ListTakeRandomSingleChunk","ListType","ListUtf8ChunkedBuilder","Local","Local","Logical","LogicalType","Lower","Map","Max","Max","MaxBound","Mean","MeltArgs","Microsecond","Microseconds","Midpoint","Millisecond","Milliseconds","Min","Min","MinBound","Multi","Multi","MutableBitmapExtension","NamedFrom","NamedFromOwned","Nanosecond","Nanoseconds","Native","Nearest","Nearest","NewChunkedArray","NoData","None","Null","Null","Null","NumOpsDispatch","NumOpsDispatchChecked","NumTakeRandomChunked","NumTakeRandomCont","NumTakeRandomSingleChunk","NumericNative","Object","Object","ObjectArray","ObjectChunked","ObjectOwned","ObjectTakeRandom","ObjectTakeRandomSingleChunk","ObjectType","One","Ordinal","Outer","Output","OwnedObject","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsArray","PolarsDataType","PolarsError","PolarsFloatType","PolarsIntegerType","PolarsIterator","PolarsNumericType","PolarsObject","PolarsObjectSafe","PolarsResult","PolarsSingleType","PrimitiveChunkedBuilder","QuantileAggSeries","QuantileInterpolOptions","Random","RankMethod","RankOptions","RepeatBy","RevMapping","RevMappingBuilder","RollingOptionsFixedWindow","RollingQuantileParams","RollingVarParams","Schema","SchemaFieldNotFound","SchemaMismatch","SchemaRef","Second","Series","SeriesTrait","ShapeMismatch","Single","Single","SingleNoNull","Slice","SlicedArray","SortMultipleOptions","SortOptions","StrConcat","StrHashLocal","StringCacheMismatch","Struct","Struct","Struct","StructChunked","StructFieldNotFound","StructOwned","TakeIdx","TakeIterator","TakeIteratorNulls","TakeRandBranch2","TakeRandBranch3","TakeRandom","TakeRandom","TakeRandomBitmap","TakeRandomUtf8","Time","Time","Time32","Time64","TimeChunked","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","UniqueKeepStrategy","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8ChunkedBuilder","Utf8Owned","Utf8TakeRandom","Utf8TakeRandomSingleChunk","Utf8Type","ValueSize","VarAggSeries","VecHash","Zero","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_fx_hash","_sum_as_series","add","add_to","append_iter","append_iter","append_iter_values","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_opt_series","append_opt_slice","append_option","append_option","append_option","append_series","append_series","append_series","append_series","append_series","append_slice","append_trusted_len_iter","append_trusted_len_iter","append_value","append_value","append_value","append_value","append_value","append_values_iter","append_values_iter","apply","apply_cast_numeric","apply_kernel","apply_kernel_cast","apply_on_opt","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arg_sort","arg_sort","arg_sort_multiple","arg_unique","arg_unique","as_any","as_any","as_any","as_any_mut","as_any_mut","as_fd","as_ptr","as_raw_fd","as_ref","as_ref_dtype","as_single_ptr","as_slice_mut","assume_init","assume_init","bitand","bitor","bitxor","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed_clone","boxed_clone","boxed_clone","boxed_clone","branch_apply_cast_numeric_no_null","builder","builder","capacity","capacity","cast","cast","cast","cast_unchecked","categorical","cause","center","check_bounds","check_bounds","check_bounds","check_bounds","checked_div","checked_div","checked_div_num","chunk_lengths","chunks","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_inner","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloud","cmp","compare","contains","cummax","cummin","cumprod","cumsum","data_type","data_type","data_type","datatypes","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","ddof","decrement_strong_count","default","default","default","default","default","default","default","default","default","default","default_arrays","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descending","descending","descending","description","df","div","divide","downcast","downcast_unchecked","downgrade","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_nulls","dtype","dtype","dtype","encode_hex","encode_hex_upper","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","equal_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","explode","explode_and_offsets","fast_explode","fast_explode","fast_explode","fast_explode","fast_explode","field","field","field","field","field","field","fields","fill_null_with_values","filter","filter","filter","finish","finish","finish","finish","finish","finish","fixed_size_list","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fn_params","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_data_default","from_data_unchecked_default","from_data_unchecked_default","from_iter","from_iter","from_iter_binary_trusted_len","from_iter_bool_trusted_len","from_iter_options","from_iter_primitive_trusted_len","from_iter_utf8_trusted_len","from_iter_values","from_raw","from_slice","from_slice_options","from_vec","full","full_null","ge","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_at_index","get_at_index_mut","get_dtype","get_field","get_full","get_k","get_mut","get_mut_unchecked","get_names","get_names","get_names","get_object","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_values_size","group_tuples","gt","gt","gt_eq","has_validity","has_validity","hash","hash","hash","hash","how","id_vars","increment_strong_count","index_of","index_of","index_of","indexes_to_usizes","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_array","inner_array","inner_array","inner_array","inner_array","insert_at_index","interpol","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_inner","into_iter","into_iter","into_raw","into_series","into_series","into_vec","is_empty","is_empty","is_first","is_float","is_in","is_in","is_last","is_nan","is_not_null","is_null","is_null_unchecked","is_null_unchecked","is_nullable","is_series","is_sorted_flag","is_tty","is_valid_unchecked","is_valid_unchecked","iter","iter_dtypes","iter_fields","iter_names","le","left_by","len","len","len","limit","list","lt","lt","lt_eq","maintain_order","make_mut","max","max_as_series","max_as_series","mean","mean","median","median","median_as_series","median_as_series","merge","merge_dtypes","metadata","metadata","method","min","min_as_series","min_as_series","min_periods","mode","mode","mul","multiply","multithreaded","multithreaded","n_chunks","n_unique","n_unique","name","name","name","ne","negative_to_usize","new","new","new","new","new","new","new","new","new","new","new","new","new","new_cyclic","new_from_index","new_from_index","new_inserting_at_index","new_uninit","new_uninit_slice","new_zeroed","new_zeroed_slice","not_equal","not_equal_missing","null","null_count","null_count","nulls_last","other","partial_cmp","peak_max","peak_max","peak_min","peak_min","pin","polars_bail","polars_ensure","polars_err","polars_warn","prob","prod_as_series","provide","provide","ptr_eq","quantile","quantile_as_series","quantile_as_series","rechunk","registry","rem","remainder","remove","rename","rename","repeat_by","repeat_by","reverse","reverse","right_by","rolling_apply","rolling_apply","set","set_at_idx","set_at_idx_with","set_bit_unchecked","set_dtype","set_dtype_at_index","shift","shift","shift_and_fill","shift_remove","shift_remove_index","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","slice","slice","slice","slice","slice_typed","slice_typed","slice_typed_unchecked","slice_typed_unchecked","slice_unchecked","sort","sort_with","sort_with","source","spawn_local_obj","spawn_obj","status","status_local","std","std_as_series","std_as_series","str_concat","str_concat","strategy","streamable","stringcache","strong_count","sub","subtract","suffix","sum","sum_as_series","take","take","take_iter","take_iter_unchecked","take_opt_iter","take_opt_iter_unchecked","take_rand","take_unchecked","take_unchecked","tile","to_arrow","to_boxed","to_boxed","to_byte_slices","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_supertype","tolerance","tolerance_str","try_apply","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_get","try_get_at_index","try_get_field","try_get_full","try_get_mut","try_index_of","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new_uninit","try_new_zeroed","try_pin","try_unwrap","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_name","type_name","unique","unique","unwrap","unwrap_or_clone","utf8","validation","validity","value","value_name","value_unchecked","value_vars","values","var","var_as_series","var_as_series","variable_name","vec_hash","vec_hash_combine","view","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weak_count","weights","window_size","with_capacity","with_capacity","with_column","with_metadata","with_metadata","with_validity","zip_with","groups","rolling","ObjectChunkedBuilder","append_null","append_null","append_option","append_value","append_value","append_value_from_any","borrow","borrow_mut","default","deref","deref_mut","drop","finish","from","init","into","new","to_series","try_from","try_into","type_id","vzip","CatIter","CategoricalChunked","CategoricalChunkedBuilder","Global","GlobalFinished","Local","Local","RevMapping","RevMappingBuilder","StrHashLocal","Aws","Azure","CloudOptions","CloudType","File","Gcp","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","from","from","from_str","from_untyped_config","init","init","into","into","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","AnyValue","Array","Array","ArrayChunked","ArrowDataType","ArrowTimeUnit","AsRefDataType","Binary","Binary","Binary","BinaryChunked","BinaryOwned","BinaryType","Boolean","Boolean","Boolean","BooleanChunked","BooleanType","CatIter","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalType","CloudOptions","DataType","Date","Date","Date32","Date64","DateChunked","DateType","Datetime","Datetime","DatetimeChunked","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dictionary","Duration","Duration","Duration","DurationChunked","DurationType","Extension","Field","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","GetAnyValue","Global","GlobalFinished","HashMap","IDX_DTYPE","IdxArr","IdxCa","IdxSize","IdxType","InitHashMaps","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","LargeBinary","LargeList","LargeUtf8","List","List","List","ListChunked","ListType","Local","Local","Logical","LogicalType","Map","Microsecond","Microseconds","Millisecond","Milliseconds","Nanosecond","Nanoseconds","Native","Null","Null","Null","NumericNative","Object","Object","ObjectChunked","ObjectOwned","ObjectType","OwnedObject","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsDataType","PolarsFloatType","PolarsIntegerType","PolarsNumericType","PolarsSingleType","RevMapping","RevMappingBuilder","Second","StrHashLocal","Struct","Struct","Struct","StructChunked","StructOwned","Time","Time","Time32","Time64","TimeChunked","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8Owned","Utf8Type","as_ref_dtype","cast","dtype","dtype","get_any_value","get_any_value_unchecked","get_dtype","get_unchecked","merge_dtypes","name","new","with_capacity","FromData","FromDataBinary","FromDataUtf8","from_data_default","from_data_unchecked_default","from_data_unchecked_default","AnonymousBuilder","borrow","borrow_mut","default","deref","deref_mut","drop","finish","from","init","into","is_empty","new","push","push_null","try_from","try_into","type_id","vzip","width","AnonymousBuilder","borrow","borrow_mut","convert_inner_type","deref","deref_mut","drop","finish","from","init","into","is_empty","new","offsets","push","push_empty","push_multiple","push_null","push_opt","take_offsets","try_from","try_into","type_id","vzip","MutableNullArray","as_any","as_box","as_mut_any","borrow","borrow_mut","data_type","default","deref","deref_mut","drop","fmt","from","init","into","len","push_null","reserve","shrink_to_fit","try_from","try_into","type_id","validity","vzip","AnonymousObjectBuilder","BuilderConstructor","ObjectConverter","append_null","append_value","get_object_builder","get_object_converter","is_object_builder_registered","register_object_builder","to_series","SlicedArray","slice_typed","slice_typed_unchecked","IUseStringCache","enable_string_cache","reset_string_cache","using_string_cache","with_string_cache","BinaryFromIter","Utf8FromIter","from_values_iter","from_values_iter","Array","Backward","BinaryTakeRandom","BinaryTakeRandomSingleChunk","BoolTakeRandom","BoolTakeRandomSingleChunk","ChunkAgg","ChunkAnyValue","ChunkApply","ChunkApplyKernel","ChunkBytes","ChunkCast","ChunkCompare","ChunkCumAgg","ChunkExpandAtIndex","ChunkExplode","ChunkFillNullValue","ChunkFilter","ChunkFull","ChunkFullNull","ChunkPeaks","ChunkQuantile","ChunkReverse","ChunkRollApply","ChunkSet","ChunkShift","ChunkShiftFill","ChunkSort","ChunkTake","ChunkUnique","ChunkVar","ChunkZip","Dummy","FillNullLimit","FillNullStrategy","Forward","IntoTakeRandom","IsFirst","IsIn","IsLast","Item","Item","Item","Item","Iter","IterNulls","ListTakeRandom","ListTakeRandomSingleChunk","Max","MaxBound","Mean","Min","MinBound","Multi","Multi","NumTakeRandomChunked","NumTakeRandomCont","NumTakeRandomSingleChunk","ObjectTakeRandom","ObjectTakeRandomSingleChunk","One","RepeatBy","Single","Single","SingleNoNull","SortMultipleOptions","SortOptions","StrConcat","TakeIdx","TakeIterator","TakeIteratorNulls","TakeRandBranch2","TakeRandBranch3","TakeRandom","TakeRandom","TakeRandomBitmap","TakeRandomUtf8","Utf8TakeRandom","Utf8TakeRandomSingleChunk","Zero","apply","apply_cast_numeric","apply_kernel","apply_kernel_cast","apply_on_opt","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arg_sort","arg_sort_multiple","arg_unique","boxed_clone","boxed_clone","branch_apply_cast_numeric_no_null","cast","cast_unchecked","check_bounds","check_bounds","cummax","cummin","cumprod","cumsum","descending","descending","equal","equal_missing","explode","explode_and_offsets","fill_null_with_values","filter","full","full","full_null","get","get","get_any_value","get_any_value_unchecked","get_unchecked","get_unchecked","gt","gt_eq","is_first","is_in","is_last","lt","lt_eq","maintain_order","max","mean","median","min","mode","multithreaded","multithreaded","n_unique","new_from_index","not_equal","not_equal_missing","nulls_last","other","peak_max","peak_min","quantile","repeat_by","reverse","rolling_apply","set","set_at_idx","set_at_idx_with","shift","shift_and_fill","sort","sort","sort_with","std","str_concat","sum","take","take_rand","take_unchecked","to_byte_slices","try_apply","unique","var","zip","zip_with","_broadcast_descending","arg_sort_multiple","arg_sort_no_nulls","sort_slice_ascending","sort_slice_descending","_get_rows_encoded","_get_rows_encoded_ca","_get_rows_encoded_compat_array","conversion","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","time_to_time64ns","unix_time","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","PolarsAsRef","AnyValue","Array","Array","ArrayChunked","ArrowDataType","ArrowTimeUnit","AsRefDataType","Binary","Binary","Binary","BinaryChunked","BinaryOwned","BinaryType","Boolean","Boolean","Boolean","BooleanChunked","BooleanType","CatIter","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalType","CloudOptions","DataType","Date","Date","Date32","Date64","DateChunked","DateType","Datetime","Datetime","DatetimeChunked","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dictionary","Duration","Duration","Duration","DurationChunked","DurationType","Extension","Field","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","GetAnyValue","Global","GlobalFinished","HashMap","IDX_DTYPE","IdxArr","IdxCa","IdxSize","IdxType","InitHashMaps","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","LargeBinary","LargeList","LargeUtf8","List","List","List","ListChunked","ListType","Local","Local","Logical","LogicalType","Map","Microsecond","Microseconds","Millisecond","Milliseconds","Nanosecond","Nanoseconds","Native","Null","Null","Null","NumericNative","Object","Object","ObjectChunked","ObjectOwned","ObjectType","OwnedObject","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsDataType","PolarsFloatType","PolarsIntegerType","PolarsNumericType","PolarsSingleType","RevMapping","RevMappingBuilder","Second","StrHashLocal","Struct","Struct","Struct","StructChunked","StructOwned","Time","Time","Time32","Time64","TimeChunked","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8Owned","Utf8Type","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_iter_struct_av","_materialize_struct_av","add","add","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","agg_list","append","append_null","append_value","arg_sort","as_borrowed","as_date_iter","as_datetime_iter","as_ref_dtype","as_time_iter","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast_time_unit","cast_time_unit","categorical","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","coerce","convert_time_zone","data_type","days","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","divide","divide","divide","divide","divide","divide","divide","divide","divide","divide","divide","drain_iter","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dtype","dtype","dtype","dtype","dtype","dtype","dtype","dtype","dtype","dtype","eq","eq","eq","eq","eq","eq","eq","eq","equal","equal_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exits","field","field_by_name","fields","fields_mut","find","finish","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cats_and_rev_map_unchecked","from_duration","from_duration_options","from_global_indices_unchecked","from_naive_date","from_naive_date_options","from_naive_datetime","from_naive_datetime_options","from_naive_time","from_naive_time_options","from_owned","full_null","full_null","get","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_categories","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_optional","get_rev_map","get_str","get_unchecked","gt","gt_eq","hash","hash","hash","hash","hash","hash","hour","hours","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_dtype","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_series","into_series","into_series","into_series","into_series","into_series","into_series","into_static","is_empty","is_empty","is_float","is_global","is_in","is_integer","is_local","is_logical","is_nested_null","is_nested_null","is_numeric","is_primitive","is_signed","is_signed","is_temporal","is_unsigned","is_unsigned","iter_str","len","len","len","logical","lt","lt_eq","merge_dtypes","microseconds","milliseconds","minute","minutes","month_end","month_end","month_start","month_start","mul","multiply","multiply","multiply","multiply","multiply","multiply","multiply","multiply","multiply","multiply","multiply","n_unique","name","name","name","name","nanosecond","nanoseconds","new","new","new","new","new","new","new","new","new","new","new","new","next","not_equal","not_equal_missing","null_count","parse_from_str_slice","parse_from_str_slice","partial_cmp","precision","rechunk","ref_field","remainder","remainder","remainder","remainder","remainder","remainder","remainder","remainder","remainder","remainder","remainder","rename","round","round","same_src","scale","second","seconds","set_lexical_sorted","set_name","set_time_unit","set_time_unit","set_time_zone","size_hint","sort","sort_with","strftime","strftime","strftime","sub","subtract","subtract","subtract","subtract","subtract","subtract","subtract","subtract","subtract","subtract","subtract","time_unit","time_unit","time_zone","to_arrow","to_arrow","to_arrow","to_ascii","to_logical_type","to_ops","to_ops","to_ops","to_ops","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_physical_type","to_string","to_string","to_string","to_string","to_string","to_string","truncate","truncate","try_extract","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unique","unnest","value_counts","value_within_range","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","CatIter","CategoricalChunked","CategoricalChunkedBuilder","Global","GlobalFinished","Local","Local","RevMapping","RevMappingBuilder","StrHashLocal","stringcache","IUseStringCache","borrow","borrow_mut","default","deref","deref_mut","drop","drop","enable_string_cache","from","hold","init","into","reset_string_cache","try_from","try_into","type_id","using_string_cache","vzip","with_string_cache","changelog","v0_10_0_11","v0_3","v0_4","v0_5","v0_6","v0_7","v0_8","v0_9","eager","lazy","performance","ArrowError","ArrowError","ColumnNotFound","ComputeError","Duplicate","ErrString","External","ExternalFormat","InvalidArgumentError","InvalidOperation","Io","Io","NoData","NotYetImplemented","OutOfSpec","Overflow","PolarsError","PolarsResult","SchemaFieldNotFound","SchemaMismatch","ShapeMismatch","StringCacheMismatch","StructFieldNotFound","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","feature_gated","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_external_error","get_warning_function","init","init","init","into","into","into","map_err","polars_bail","polars_ensure","polars_err","polars_warn","provide","provide","set_warning_function","source","to_compute_err","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","wrap_msg","_boost_hash_combine","AHashMap","AHashSet","AHasher","HashMap","HashMapExt","HashSet","HashSetExt","RandomState","__clone_box","__clone_box","__clone_box","bitand","bitor","bitxor","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","build_hasher","clone","clone","clone","clone_into","clone_into","clone_into","default","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","extend","extend","finish","fmt","fmt","fmt","from","from","from","from","from","from_iter","generate_with","hash_one","hash_one","init","init","init","into","into","into","into","into_iter","into_iter","into_vec","into_vec","new","new","new","new","random_state","sub","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_capacity","with_capacity","with_capacity","with_capacity_and_hasher","with_hasher","with_seed","with_seeds","write","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","RandomSource","RandomState","gen_hasher_seed","set_random_source","AHashMap","Either","Left","Right","__clone_box","array","bitmap","borrow","borrow_mut","buffer","chunk","clone","clone_into","compute","datatypes","default","deref","deref","deref_mut","deref_mut","drop","eq","equivalent","equivalent","equivalent","equivalent","error","extend","extend","ffi","fmt","from","from","from","from_iter","get","get_key_value","get_mut","index","init","insert","into","into","into_iter","into_iter","into_iter","into_keys","into_values","io","mmap","new","offset","remove","scalar","temporal_conversions","to_owned","trusted_len","try_from","try_into","type_id","types","util","vzip","with_capacity","with_capacity_and_hasher","with_hasher","Array","ArrayValuesIter","BinaryArray","BinaryValueIter","BooleanArray","DaysMsArray","DaysMsVec","DictionaryArray","DictionaryKey","FixedSizeBinaryArray","FixedSizeListArray","Float16Array","Float16Vec","Float32Array","Float32Vec","Float64Array","Float64Vec","GenericBinaryArray","Int128Array","Int128Vec","Int16Array","Int16Vec","Int256Array","Int256Vec","Int32Array","Int32Vec","Int64Array","Int64Vec","Int8Array","Int8Vec","KEY_TYPE","ListArray","ListValuesIter","MapArray","MonthsDaysNsArray","MonthsDaysNsVec","MutableArray","MutableBinaryArray","MutableBinaryValuesArray","MutableBooleanArray","MutableDictionaryArray","MutableFixedSizeBinaryArray","MutableFixedSizeListArray","MutableListArray","MutableNullArray","MutablePrimitiveArray","MutableStructArray","MutableUtf8Array","MutableUtf8ValuesArray","NullArray","PrimitiveArray","PushUnchecked","StructArray","TryExtend","TryExtendFromSelf","TryPush","UInt16Array","UInt16Vec","UInt32Array","UInt32Vec","UInt64Array","UInt64Vec","UInt8Array","UInt8Vec","UnionArray","Utf8Array","Utf8ValuesIter","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","add","add","always_fits_usize","append_null","append_series","apply_validity","apply_validity","apply_validity","apply_validity","apply_values","apply_values_mut","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_ref","as_usize","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed_clone","boxed_clone","capacity","capacity","capacity","capacity","capacity","check_bounds","check_bounds","checked_add","checked_add","checked_add","checked_div","checked_div","checked_div","checked_mul","checked_mul","checked_mul","checked_rem","checked_rem","checked_sub","checked_sub","checked_sub","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","default","default","default","default","default","default","default","default","default","default","default_data_type","default_data_type","default_data_type","default_data_type","default_datatype","default_datatype","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","div","div","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","extend","extend","extend","extend","extend","extend","extend_constant","extend_from_slice","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_values","extend_values","field","fields","finish","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_data_default","from_data_default","from_data_unchecked_default","from_data_unchecked_default","from_inner","from_inner_unchecked","from_inner_unchecked","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_values","from_iter_values","from_iter_values","from_iter_values","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_values","from_vec","from_vec","get","get","get","get","get","get","get","get","get","get","get","get","get_child_field","get_child_type","get_display","get_fields","get_mut_values","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_value_display","get_values_size","get_values_size","get_values_size","get_values_size","growable","index","index_unchecked","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_arc","into_arc","into_arc","into_arc","into_arc","into_arc","into_arc","into_box","into_box","into_data","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_mut","into_mut","into_mut","into_mut","into_vec","into_vec","is_empty","is_empty","is_null","is_null_unchecked","is_null_unchecked","is_null_unchecked","is_null_unchecked","is_null_unchecked","is_null_unchecked","is_ordered","is_sparse","is_valid","is_valid","is_valid_unchecked","is_valid_unchecked","is_valid_unchecked","is_valid_unchecked","is_valid_unchecked","is_valid_unchecked","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter_typed","iter_values","key_value","keys","keys","keys_iter","keys_values_iter","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","map","mul","mul","mul","mut_values","mut_values","mut_values","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty_array","new_from","new_from","new_from_mutable","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null_array","new_unchecked","new_unchecked","new_unchecked","new_with_capacity","new_with_field","new_with_field","next","next_back","nth","null_count","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","ord","overflowing_add","overflowing_add","overflowing_mul","overflowing_mul","overflowing_sub","overflowing_sub","pop","pop","pop","pop","pop","pop","pop","push","push","push","push","push","push","push","push","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_unchecked","push_unchecked","push_valid","rem","rem","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","saturating_add","saturating_add","saturating_add","saturating_mul","saturating_mul","saturating_mul","saturating_sub","saturating_sub","saturating_sub","set","set","set_unchecked","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_values","set_values","set_values","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","size","size","size","size","size_hint","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sub","sub","sub","to","to","to","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend_from_lengths","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_iter","try_from_iter","try_from_iter","try_from_iter","try_from_keys","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_get_child","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new_unchecked","try_new_unchecked","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push_valid","try_push_valid","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","value","value","value","value","value","value","value","value","value","value","value","value","value","value","value","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter_typed","values_mut_slice","values_mut_slice","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacities","with_capacities","with_capacities","with_capacities","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity_from","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_values","with_values","wrapping_add","wrapping_mul","wrapping_sub","Growable","GrowableBinary","GrowableBoolean","GrowableDictionary","GrowableFixedSizeBinary","GrowableFixedSizeList","GrowableList","GrowableMap","GrowableNull","GrowablePrimitive","GrowableStruct","GrowableUnion","GrowableUtf8","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","from","from","from","from","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","len","len","len","len","len","len","len","len","len","len","len","len","len","make_growable","new","new","new","new","new","new","new","new","new","new","new","new","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","DynComparator","build_compare","total_cmp","total_cmp_f32","total_cmp_f64","Bitmap","IntoIter","MutableBitmap","__clone_box","__clone_box","__clone_box","and","as_slice","as_slice","as_slice_mut","binary","binary_assign","bitand","bitand","bitand_assign","bitor","bitor","bitor_assign","bitxor","bitxor","bitxor_assign","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","capacity","chunk_iter_to_vec","chunks","clear","clone","clone","clone","clone_into","clone_into","clone_into","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","eq","extend_constant","extend_from_bitmap","extend_from_slice","extend_from_slice_unchecked","extend_from_trusted_len_iter","extend_from_trusted_len_iter_unchecked","fmt","fmt","fmt","from","from","from","from","from","from","from_chunk_iter_unchecked","from_inner","from_inner_unchecked","from_iter","from_iter","from_len_set","from_len_zeroed","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_u8_slice","from_u8_vec","from_vec","get","get","get_bit","get_bit_unchecked","init","init","init","into","into","into","into_inner","into_iter","into_iter","into_iter","into_iter","into_mut","is_empty","is_empty","iter","iter","len","len","make_mut","new","new","new","new_zeroed","next","next_back","not","not","nth","null_count","null_count","null_count_range","or","par_bridge","pop","push","push_unchecked","quaternary","reserve","set","set_bit_unchecked","set_unchecked","shrink_to_fit","size_hint","slice","slice_unchecked","sliced","sliced_unchecked","ternary","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_into","try_into","try_into","try_new","try_new","type_id","type_id","type_id","unary","unary_assign","unset_bits","unset_bits","utils","vzip","vzip","vzip","with_capacity","xor","BitChunk","BitChunkIterExact","BitChunks","BitChunksExact","BitChunksExactMut","BitmapIter","Optional","Required","SlicesIterator","ZipValidity","ZipValidityIter","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed_clone","boxed_clone","bytes_for","check_bounds","check_bounds","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","count_zeros","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_ne_bytes","get_bit","get_bit_unchecked","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_vec","into_vec","into_vec","into_vec","is_empty","is_set","len","len","new","new","new","new","new","new","new","new_with_validity","next","next","next","next","next","next","next","next_back","next_back","next_back","nth","nth","nth","remainder","remainder","remainder","remainder","remainder","remainder","remainder_iter","remainder_len","remainder_len","remainder_len","remainder_len","remainder_len","set","set_bit","set_bit_unchecked","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","slots","to_ne_bytes","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap_optional","unwrap_required","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Buffer","Bytes","__clone_box","as_slice","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","from","from","from","from","from","from_inner_unchecked","from_iter","get_mut","get_mut_slice","init","init","into","into","into_inner","into_iter","into_mut","into_vec","into_vec","is_empty","is_sliced","len","new","offset","set_len","shared_count_strong","shared_count_weak","slice","slice_unchecked","sliced","sliced_unchecked","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Chunk","__clone_box","arrays","borrow","borrow_mut","clone","clone_into","columns","deref","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","from","init","into","into_arrays","is_empty","len","new","to_owned","try_from","try_into","try_new","type_id","vzip","aggregate","arithmetics","arity","arity_assign","boolean","boolean_kleene","cast","comparison","concatenate","filter","if_then_else","like","substring","take","temporal","MAX","MIN","SimdOrd","Sum","can_max","can_min","can_sum","estimated_bytes_size","max","max_binary","max_boolean","max_element","max_lane","max_primitive","max_string","min","min_binary","min_boolean","min_element","min_lane","min_primitive","min_string","new_max","new_min","simd_sum","sum","sum_primitive","sum_slice","ArrayAdd","ArrayCheckedAdd","ArrayCheckedDiv","ArrayCheckedMul","ArrayCheckedRem","ArrayCheckedSub","ArrayDiv","ArrayMul","ArrayOverflowingAdd","ArrayOverflowingMul","ArrayOverflowingSub","ArrayRem","ArraySaturatingAdd","ArraySaturatingMul","ArraySaturatingSub","ArraySub","ArrayWrappingAdd","ArrayWrappingMul","ArrayWrappingSub","add","add","add_scalar","basic","can_add","can_div","can_mul","can_neg","can_rem","can_sub","checked_add","checked_div","checked_mul","checked_rem","checked_sub","decimal","div","div","div_scalar","mul","mul","mul_scalar","neg","overflowing_add","overflowing_mul","overflowing_sub","rem","rem","saturating_add","saturating_mul","saturating_sub","sub","sub","sub_scalar","time","wrapping_add","wrapping_mul","wrapping_sub","NativeArithmetics","add","add_scalar","checked_add","checked_add_scalar","checked_div","checked_div_scalar","checked_mul","checked_mul_scalar","checked_negate","checked_powf_scalar","checked_rem","checked_rem_scalar","checked_sub","checked_sub_scalar","div","div_scalar","mul","mul_scalar","negate","overflowing_add","overflowing_add_scalar","overflowing_mul","overflowing_mul_scalar","overflowing_sub","overflowing_sub_scalar","powf_scalar","rem","rem_scalar","saturating_add","saturating_add_scalar","saturating_mul","saturating_mul_scalar","saturating_sub","saturating_sub_scalar","sub","sub_scalar","wrapping_add","wrapping_add_scalar","wrapping_mul","wrapping_mul_scalar","wrapping_negate","wrapping_sub","wrapping_sub_scalar","adaptive_add","adaptive_div","adaptive_mul","adaptive_sub","add","checked_add","checked_div","checked_mul","checked_sub","div","div_scalar","mul","mul_scalar","saturating_add","saturating_div","saturating_mul","saturating_sub","sub","add_duration","add_duration_scalar","add_interval","add_interval_scalar","sub_duration_scalar","sub_timestamps_scalar","subtract_duration","subtract_timestamps","binary","binary_checked","binary_with_bitmap","try_binary","try_unary","unary","unary_checked","unary_with_bitmap","binary","unary","all","and","and_scalar","any","is_not_null","is_null","not","or","or_scalar","all","and","and_scalar","any","or","or_scalar","CastOptions","__clone_box","binary_large_to_binary","binary_to_dictionary","binary_to_large_binary","binary_to_large_utf8","binary_to_list","binary_to_primitive","binary_to_utf8","boolean_to_binary","boolean_to_primitive","boolean_to_utf8","borrow","borrow_mut","can_cast_types","cast","clone","clone_into","date32_to_date64","date64_to_date32","days_ms_to_months_days_ns","decimal_to_decimal","decimal_to_float","decimal_to_integer","default","deref","deref_mut","dictionary_to_dictionary_keys","dictionary_to_dictionary_values","dictionary_to_values","drop","f16_to_f32","fixed_size_binary_binary","float_to_decimal","fmt","from","init","integer_to_decimal","into","months_to_months_days_ns","naive_timestamp_to_utf8","partial","partial_binary_to_primitive","partial_utf8_to_primitive","primitive_as_primitive","primitive_to_binary","primitive_to_boolean","primitive_to_dictionary","primitive_to_primitive","primitive_to_same_primitive","primitive_to_utf8","time32_to_time64","time32ms_to_time32s","time32s_to_time32ms","time64_to_time32","time64ns_to_time64us","time64us_to_time64ns","timestamp_to_date32","timestamp_to_date64","timestamp_to_timestamp","timestamp_to_utf8","to_owned","try_from","try_into","type_id","utf8_large_to_utf8","utf8_to_binary","utf8_to_date32","utf8_to_date64","utf8_to_dictionary","utf8_to_large_utf8","utf8_to_naive_timestamp_ns","utf8_to_primitive","utf8_to_timestamp_ns","vzip","wrapped","wrapping_dictionary_to_dictionary_keys","wrapping_dictionary_to_dictionary_values","Simd","Simd8","Simd8Lanes","Simd8PartialEq","Simd8PartialOrd","binary","boolean","can_eq","can_eq_scalar","can_gt","can_gt_eq","can_gt_eq_scalar","can_gt_scalar","can_lt","can_lt_eq","can_lt_eq_scalar","can_lt_scalar","can_neq","can_neq_scalar","eq","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","finish_eq_validities","finish_neq_validities","from_chunk","from_incomplete_chunk","gt","gt","gt_eq","gt_eq","gt_eq_scalar","gt_scalar","lt","lt","lt_eq","lt_eq","lt_eq_scalar","lt_scalar","neq","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","primitive","utf8","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","compare_op_scalar","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","compare_op_scalar","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","concatenate","Filter","build_filter","filter","filter_chunk","if_then_else","like_binary","like_binary_scalar","like_utf8","like_utf8_scalar","nlike_binary","nlike_binary_scalar","nlike_utf8","nlike_utf8_scalar","can_substring","substring","can_take","take","can_day","can_hour","can_iso_week","can_minute","can_month","can_nanosecond","can_second","can_weekday","can_year","day","hour","iso_week","minute","month","nanosecond","second","weekday","year","Binary","Binary","Boolean","Boolean","DataType","Date32","Date64","DayTime","DaysMs","Decimal","Decimal256","Dense","Dictionary","Dictionary","Duration","Extension","Field","FixedSizeBinary","FixedSizeBinary","FixedSizeList","FixedSizeList","Float16","Float16","Float32","Float32","Float64","Float64","Int128","Int16","Int16","Int16","Int256","Int32","Int32","Int32","Int64","Int64","Int64","Int8","Int8","Int8","IntegerType","Interval","IntervalUnit","LargeBinary","LargeBinary","LargeList","LargeList","LargeUtf8","LargeUtf8","List","List","Map","Map","Metadata","Microsecond","Millisecond","MonthDayNano","MonthDayNano","Nanosecond","Null","Null","PhysicalType","Primitive","PrimitiveType","Schema","SchemaRef","Second","Sparse","Struct","Struct","Time32","Time64","TimeUnit","Timestamp","UInt16","UInt16","UInt16","UInt32","UInt32","UInt32","UInt64","UInt64","UInt64","UInt8","UInt8","UInt8","Union","Union","UnionMode","Utf8","Utf8","YearMonth","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq_primitive","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","get_extension","hash","hash","hash","hash","hash","init","init","init","init","init","into","into","into","into","into","is_dense","is_nullable","is_sparse","metadata","metadata","name","sparse","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","Error","External","ExternalFormat","InvalidArgumentError","Io","NotYetImplemented","OutOfSpec","Overflow","Result","ArrowArray","ArrowArrayStream","ArrowArrayStreamReader","ArrowSchema","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","empty","empty","empty","export_array_to_c","export_field_to_c","export_iterator","field","fmt","fmt","fmt","from","from","from","from","import_array_from_c","import_field_from_c","init","init","init","init","into","into","into","into","mmap","next","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_new","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","bitmap","slice","ipc","json","ndjson","parquet","IpcField","IpcSchema","__clone_box","__clone_box","append","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","default","deref","deref","deref_mut","deref_mut","dictionary_id","drop","drop","eq","eq","fields","fields","fmt","fmt","from","from","init","init","into","into","is_little_endian","read","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","Dictionaries","ExpectedBuffer","FileMetadata","FileReader","InvalidBitmap","InvalidBuffer","InvalidBuffersLength","InvalidDataType","InvalidFlatbufferBlock","InvalidFlatbufferBodyLength","InvalidFlatbufferBuffers","InvalidFlatbufferCompression","InvalidFlatbufferData","InvalidFlatbufferDictionaries","InvalidFlatbufferFooter","InvalidFlatbufferHeader","InvalidFlatbufferId","InvalidFlatbufferIsDelta","InvalidFlatbufferMessage","InvalidFlatbufferNodes","InvalidFlatbufferRecordBatches","InvalidFlatbufferSchema","InvalidFlatbufferVersion","InvalidFooter","InvalidHeader","InvalidId","InvalidIdDataType","MissingData","MissingFields","MissingMessageBuffers","MissingMessageHeader","MissingMessageNodes","MissingRecordBatches","MissingSchema","NegativeFooterLength","OutOfSpecKind","Some","StreamMetadata","StreamReader","StreamState","UnexpectedMessageType","UnexpectedNegativeInteger","Waiting","__clone_box","__clone_box","blocks","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deserialize_schema","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","from","from","from","from","from","from","get_scratches","init","init","init","init","init","init","into","into","into","into","into","into","into_inner","into_iter","into_iter","ipc_schema","ipc_schema","is_finished","metadata","metadata","new","new","next","next","next_record_batch","next_record_batch","read_batch","read_file_dictionaries","read_file_metadata","read_stream_metadata","schema","schema","schema","schema","set_scratches","size","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","unwrap","version","vzip","vzip","vzip","vzip","vzip","vzip","buffer_length","buffers_size","file_size","length","length","number_of_bits","requested_id","requested_id","required_number_of_bytes","type_name","Compression","FileWriter","LZ4","Record","StreamWriter","WriteOptions","ZSTD","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","columns","compression","default","default_ipc_fields","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","file_async","finish","finish","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","get_scratches","hash","hash","init","init","init","init","init","into","into","into","into","into","into_inner","into_inner","new","new","schema_to_bytes","set_scratches","start","start","stream_async","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from_file","try_into","try_into","try_into","try_into","try_into","try_new","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","write","write","write","FileSink","borrow","borrow_mut","deref","deref_mut","drop","from","init","into","new","poll_close","poll_flush","poll_ready","start_send","try_from","try_into","type_id","vzip","StreamSink","WriteOptions","borrow","borrow_mut","compression","deref","deref_mut","drop","from","init","into","new","poll_close","poll_flush","poll_ready","start_send","try_from","try_into","type_id","vzip","write","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","RecordSerializer","Serializer","Skip","SkipWhile","Take","TakeWhile","advance","advance_back","all","any","by_ref","convert","count","empty","filter","find","for_each","fuse","get","map","map_err","map_ref","next","next_back","nth","position","size_hint","skip","skip_while","take","take_while","write","write","Error","FallibleStreamingIterator","FileWriter","Item","Serializer","advance","all","any","by_ref","count","filter","find","for_each","fuse","get","map","map_err","map_ref","next","nth","position","size_hint","skip","skip_while","take","take_while","read","write","ArrayIter","BasicDecompressor","Boolean","Bson","Bson","ByteArray","ColumnChunkMetaData","ColumnDescriptor","CompressedDataPage","Data","DataPageHeader","Date","Date","Decimal","Decimal","Decompressor","Dict","Double","Enum","Enum","Error","Error","FallibleStreamingIterator","FeatureNotActive","FeatureNotSupported","FileMetaData","FileReader","Finished","FixedLenByteArray","Float","GroupLogicalType","GroupType","InitNested","Int16","Int32","Int32","Int64","Int64","Int8","Int96","Integer","Interval","InvalidParameter","Item","Item","Json","Json","List","List","Map","Microseconds","Milliseconds","MutStreamingIterator","Nanoseconds","NestedArrayIter","NestedState","OutOfSpec","Page","PageFilter","PageReader","Pages","ParquetError","ParquetTimeUnit","ParquetType","PhysicalType","Primitive","PrimitiveConvertedType","PrimitiveLogicalType","PrimitiveType","ReadColumnIterator","RowGroupDeserializer","RowGroupMetaData","RowGroupReader","Some","State","String","Struct","StructIterator","Time","TimeMicros","TimeMillis","Timestamp","TimestampMicros","TimestampMillis","Uint16","Uint32","Uint64","Uint8","Unknown","Utf8","Uuid","V1","V2","WouldOverAllocate","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_read_columns_indexes","_read_metadata","_read_metadata_async","advance","advance","advance","advance","advance","all","any","base_type","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","byte_range","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","column_chunk","column_encoding","column_iter_to_arrays","column_orders","columns","compressed_size","compressed_size","compression","count","create_list","create_map","created_by","data_page_offset","decompress","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descriptor","descriptor","dictionary_page_offset","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","file_offset","file_path","filter","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get_column_iterator","get_field_columns","get_field_pages","get_page_iterator","get_page_stream","has_index_page","hash","hash","hash","hash","index_page_offset","indexes","infer_schema","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init_nested","int96_to_i64_ns","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_buffers","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_thrift","key_value_metadata","len","map","map_err","map_ref","metadata","n_columns","nested","new","new","new","new","new","new","new","new","new","new","new","new","new_with_page_meta","next","next","next","next","next","next","nth","num_rows","num_rows","num_rows","num_values","num_values","par_bridge","path_in_schema","physical_type","position","provide","read_columns","read_columns_async","read_columns_many","read_columns_many_async","read_metadata","read_metadata_async","read_pages_locations","row_groups","schema","schema","schema_descr","size_hint","size_hint","skip","skip_while","statistics","statistics","swap_buffer","take","take_while","to_deserializer","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","total_byte_size","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uncompressed_size","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","converted_type","field_info","fields","logical_type","is_adjusted_to_utc","is_adjusted_to_utc","unit","unit","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","Skip","SkipWhile","Take","TakeWhile","advance","advance_back","all","any","by_ref","convert","count","empty","filter","find","for_each","fuse","get","map","map_err","map_ref","next","next_back","nth","position","size_hint","skip","skip_while","take","take_while","ColumnPageStatistics","FieldPageStatistics","FilteredPage","Interval","Multiple","Single","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","compute_page_row_intervals","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","has_indexes","hash","hash","init","init","init","init","into","into","into","into","length","length","max","min","new","null_count","num_rows","read_columns_indexes","read_filtered_pages","selected_rows","start","start","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","FileMetaData","GroupType","KeyValue","ParquetType","PrimitiveType","SchemaDescriptor","column_orders","created_by","infer_schema","key","key_value_metadata","num_rows","parquet_to_arrow_schema","read_schema_from_metadata","row_groups","schema_descr","value","version","converted_type","field_info","fields","logical_type","Statistics","borrow","borrow_mut","deref","deref_mut","deserialize","distinct_count","drop","eq","fmt","from","from","init","into","max_value","min_value","null_count","try_from","try_into","type_id","vzip","BitPacked","Boolean","Brotli","BrotliLevel","ByteArray","ByteStreamSplit","CompressedDataPage","CompressedPage","CompressionOptions","Compressor","Data","Data","DeltaBinaryPacked","DeltaByteArray","DeltaLengthByteArray","Descriptor","Dict","Dict","Double","DynIter","DynStreamingIterator","Encoding","Error","FallibleStreamingIterator","FieldInfo","FileMetaData","FileSink","FileWriter","FixedLenByteArray","Float","GroupType","Gzip","GzipLevel","Int32","Int64","Int96","Item","KeyValue","LargeList","List","Lz4","Lz4Raw","Lzo","Nested","Page","ParquetPhysicalType","ParquetType","Plain","PlainDictionary","Primitive","PrimitiveType","Rle","RleDictionary","RowGroupIter","RowGroupIterator","SchemaDescriptor","Snappy","Struct","ThriftFileMetaData","Uncompressed","V1","V2","Version","WriteOptions","Zstd","ZstdLevel","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","advance","advance","advance","all","any","array_to_columns","array_to_page","array_to_page_simple","array_to_pages","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer_mut","by_ref","can_encode","check_contains","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","column_order","column_orders","column_orders","columns","compare","compare","compress","compressed_size","compression","compression","compression_level","compression_level","compression_level","count","created_by","created_by","data_pagesize_limit","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encryption_algorithm","end","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","filter","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","footer_signing_key_metadata","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_converted","from_group","from_physical","fuse","get","get","get","get_field_info","get_max_length","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","header","id","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_inner","into_inner","into_inner_and_metadata","into_iter","into_iter","into_thrift","into_vec","into_vec","is_compressed","key","key_value_metadata","key_value_metadata","key_value_metadata","len","map","map_err","map_ref","max_def_level","max_rep_level","metadata","name","name","name","new","new","new","new","new","new","new","new_from_vec","next","next","next","nth","num_rows","num_rows","num_values","num_values","options","options","parquet_schema","parquet_schema","parquet_schema","partial_cmp","partial_cmp","poll_close","poll_flush","poll_ready","position","primitive_type","read_from_in_protocol","read_from_in_protocol","read_from_in_protocol","read_from_in_protocol","repetition","row_group_iter","row_groups","row_groups","schema","schema","schema","schema","schema_descr","select_rows","selected_rows","size_hint","size_hint","size_hint","skip","skip_while","slice_nested_leaf","slice_parquet_array","start_send","statistics","stream_from_in_protocol","stream_from_in_protocol","stream_from_in_protocol","stream_from_in_protocol","take","take_while","to_leaves","to_nested","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_parquet_leaves","to_parquet_schema","to_parquet_type","transverse","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_message","try_from_primitive","try_from_thrift","try_from_thrift","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_new","try_new","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uncompressed_size","value","version","version","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","write_def_levels","write_metadata_sidecar","write_rep_and_def","write_statistics","write_to_out_protocol","write_to_out_protocol","write_to_out_stream_protocol","write_to_out_stream_protocol","converted_type","field_info","fields","logical_type","mmap_dictionaries_unchecked","mmap_unchecked","IS_LARGE","Offset","Offsets","OffsetsBuffer","__clone_box","__clone_box","as_slice","as_slice","borrow","borrow","borrow_mut","borrow_mut","buffer","capacity","clone","clone","clone_into","clone_into","default","default","deref","deref","deref","deref_mut","deref_mut","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","extend_constant","first","fmt","fmt","from","from","from","from","from","init","init","into","into","into_inner","into_inner","into_mut","last","last","len","len","len_proxy","len_proxy","lengths","new","new","new_unchecked","new_unchecked","new_zeroed","pop","range","reserve","shrink_to_fit","slice","slice_unchecked","start_end","start_end","start_end_unchecked","start_end_unchecked","to_owned","to_owned","try_extend_from_lengths","try_extend_from_self","try_extend_from_slice","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_iter","try_from_lengths","try_into","try_into","try_push","try_push_usize","type_id","type_id","vzip","vzip","with_capacity","BinaryScalar","BooleanScalar","DictionaryScalar","FixedSizeBinaryScalar","FixedSizeListScalar","ListScalar","MapScalar","NullScalar","PrimitiveScalar","Scalar","StructScalar","UnionScalar","Utf8Scalar","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","new","new","new","new","new","new","new","new","new","new","new","new","new_scalar","to","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value","value","value","value","value","value","value","values","values","values","values","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","EPOCH_DAYS_FROM_CE","MICROSECONDS","MILLISECONDS","MILLISECONDS_IN_DAY","NANOSECONDS","SECONDS_IN_DAY","add_interval","add_naive_interval","date32_to_date","date32_to_datetime","date64_to_date","date64_to_datetime","parse_offset","parse_offset_tz","time32ms_to_time","time32s_to_time","time64ns_to_time","time64us_to_time","timestamp_ms_to_datetime","timestamp_ns_to_datetime","timestamp_s_to_datetime","timestamp_to_datetime","timestamp_to_naive_datetime","timestamp_us_to_datetime","timeunit_scale","utf8_to_naive_timestamp_ns","utf8_to_naive_timestamp_ns_scalar","utf8_to_naive_timestamp_scalar","utf8_to_timestamp_ns","utf8_to_timestamp_ns_scalar","utf8_to_timestamp_scalar","TrustedLen","BitChunk","BitChunkIter","BitChunkOnes","Bytes","DaysMs","EPSILON","Float16","Float32","Float64","IS_LARGE","Index","IndexRange","Int128","Int16","Int256","Int32","Int64","Int8","MonthDayNano","NativeType","Offset","PRIMITIVE","PrimitiveType","UInt16","UInt32","UInt64","UInt8","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","compare","days","days","days_ms","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","f16","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_as_usize","from_be_bytes","from_be_bytes","from_be_bytes","from_be_bytes","from_be_bytes","from_bits","from_f32","from_le_bytes","from_le_bytes","from_le_bytes","from_le_bytes","from_le_bytes","from_ne_bytes","from_usize","from_words","hash","hash","hash","i256","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_vec","into_vec","is_valid_bit_pattern","is_valid_bit_pattern","is_valid_bit_pattern","is_valid_bit_pattern","milliseconds","months","months_days_ns","neg","neg","neg","new","new","new","new","new","next","next","next","ns","partial_cmp","range","simd","size_hint","size_hint","size_hint","to_be_bytes","to_be_bytes","to_be_bytes","to_be_bytes","to_be_bytes","to_bits","to_f32","to_le_bytes","to_le_bytes","to_le_bytes","to_le_bytes","to_le_bytes","to_ne_bytes","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_usize","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Chunk","FromMaskChunk","LANES","Mask","Native","NativeSimd","Simd","Simd","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","align","align","align","align","align","align","align","align","align","align","align","align","align","align","align","align","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","days_msx8","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","f16x32","f32x16","f64x8","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","i128x8","i16x32","i256x8","i32x16","i64x8","i8x64","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","months_days_nsx8","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","select","select","select","select","select","select","select","select","select","select","select","select","select","select","select","select","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","u16x32","u32x16","u64x8","u8x64","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","lexical_to_bytes","lexical_to_bytes_mut","lexical_to_string","Ambiguous","April","August","AutoSi","Date","DateTime","Datelike","Days","December","Duration","DurationExceedsLimit","DurationExceedsTimestamp","DurationRound","Err","February","FixedOffset","Fri","IsoWeek","January","July","June","Local","LocalResult","MAX","MAX","MAX_DATE","MAX_DATETIME","MAX_UTC","MAX_UTC","MIN","MIN","MIN","MIN_DATE","MIN_DATETIME","MIN_UTC","MIN_UTC","March","May","Micros","Millis","Mon","Month","Months","NaiveDate","NaiveDateTime","NaiveTime","NaiveWeek","Nanos","None","November","October","Offset","Offset","OutOfRange","OutOfRangeError","ParseError","ParseMonthError","ParseResult","ParseWeekdayError","RoundingError","Sat","SecondsFormat","Secs","September","Single","SubsecRound","Sun","Thu","TimeZone","Timelike","TimestampExceedsLimit","Tue","Utc","Wed","Weekday","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","abs","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","and_hms","and_hms","and_hms_micro","and_hms_micro","and_hms_micro_opt","and_hms_micro_opt","and_hms_micro_opt","and_hms_milli","and_hms_milli","and_hms_milli_opt","and_hms_milli_opt","and_hms_milli_opt","and_hms_nano","and_hms_nano","and_hms_nano_opt","and_hms_nano_opt","and_hms_nano_opt","and_hms_opt","and_hms_opt","and_hms_opt","and_local_timezone","and_time","and_time","and_time","and_utc","beginning_of_day","beginning_of_day","beginning_of_day","beginning_of_day","beginning_of_hour","beginning_of_hour","beginning_of_hour","beginning_of_hour","beginning_of_minute","beginning_of_minute","beginning_of_minute","beginning_of_minute","beginning_of_month","beginning_of_month","beginning_of_month","beginning_of_month","beginning_of_quarter","beginning_of_quarter","beginning_of_quarter","beginning_of_quarter","beginning_of_week","beginning_of_week","beginning_of_week","beginning_of_week","beginning_of_week_with_start_day","beginning_of_week_with_start_day","beginning_of_week_with_start_day","beginning_of_week_with_start_day","beginning_of_year","beginning_of_year","beginning_of_year","beginning_of_year","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","checked_add","checked_add_days","checked_add_days","checked_add_days","checked_add_months","checked_add_months","checked_add_months","checked_add_signed","checked_add_signed","checked_add_signed","checked_add_signed","checked_sub","checked_sub_days","checked_sub_days","checked_sub_days","checked_sub_months","checked_sub_months","checked_sub_months","checked_sub_signed","checked_sub_signed","checked_sub_signed","checked_sub_signed","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","compare","compare","compare","compare","compare","compare","compare","date","date","date_naive","datetime_from_str","day","day","day","day","day","day0","day0","day0","day0","day0","days","days","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","description","description","div","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","duration_round","duration_round","duration_round","duration_trunc","duration_trunc","duration_trunc","earliest","east","east_opt","end_of_day","end_of_day","end_of_day","end_of_day","end_of_hour","end_of_hour","end_of_hour","end_of_hour","end_of_minute","end_of_minute","end_of_minute","end_of_minute","end_of_month","end_of_month","end_of_month","end_of_month","end_of_quarter","end_of_quarter","end_of_quarter","end_of_quarter","end_of_week","end_of_week","end_of_week","end_of_week","end_of_week_with_start_day","end_of_week_with_start_day","end_of_week_with_start_day","end_of_week_with_start_day","end_of_year","end_of_year","end_of_year","end_of_year","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","first_day","fix","fix","fix","fixed_offset","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format","format","format","format","format","format_with_items","format_with_items","format_with_items","format_with_items","format_with_items","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_hms","from_hms_micro","from_hms_micro_opt","from_hms_milli","from_hms_milli_opt","from_hms_nano","from_hms_nano_opt","from_hms_opt","from_i64","from_i64","from_isoywd","from_isoywd_opt","from_local","from_local_date","from_local_datetime","from_num_days_from_ce","from_num_days_from_ce_opt","from_num_seconds_from_midnight","from_num_seconds_from_midnight_opt","from_offset","from_offset","from_offset","from_offset","from_std","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_timestamp","from_timestamp_micros","from_timestamp_millis","from_timestamp_opt","from_u32","from_u64","from_u64","from_utc","from_utc","from_utc_date","from_utc_datetime","from_weekday_of_month","from_weekday_of_month_opt","from_ymd","from_ymd_opt","from_yo","from_yo_opt","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hour","hour","hour","hour","hour12","hours","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_zero","iso_week","iso_week","iso_week","iso_week","iso_week","isoywd","isoywd_opt","iter_days","iter_weeks","kind","last_day","latest","lit","lit","lit","local_minus_utc","map","max_value","microseconds","milliseconds","min_value","minute","minute","minute","minute","minutes","month","month","month","month","month","month0","month0","month0","month0","month0","mul","naive","naive_local","naive_local","naive_utc","naive_utc","name","nanosecond","nanosecond","nanosecond","nanosecond","nanoseconds","neg","new","new","new","now","now","now","now","now","num_days","num_days_from_ce","num_days_from_monday","num_days_from_sunday","num_hours","num_microseconds","num_milliseconds","num_minutes","num_nanoseconds","num_seconds","num_seconds_from_midnight","num_seconds_from_midnight","num_weeks","number_from_monday","number_from_month","number_from_sunday","offset","offset","offset","offset_from_local_date","offset_from_local_date","offset_from_local_date","offset_from_local_date","offset_from_local_datetime","offset_from_local_datetime","offset_from_local_datetime","offset_from_local_datetime","offset_from_utc_date","offset_from_utc_date","offset_from_utc_date","offset_from_utc_date","offset_from_utc_datetime","offset_from_utc_datetime","offset_from_utc_datetime","offset_from_utc_datetime","ordinal","ordinal","ordinal","ordinal","ordinal","ordinal0","ordinal0","ordinal0","ordinal0","ordinal0","overflowing_add_signed","overflowing_sub_signed","parse_and_remainder","parse_and_remainder","parse_and_remainder","parse_and_remainder","parse_from_rfc2822","parse_from_rfc3339","parse_from_str","parse_from_str","parse_from_str","parse_from_str","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pred","pred","pred","pred","pred_opt","pred_opt","prelude","provide","provide","provide","provide","provide","round_subsecs","round_subsecs","round_subsecs","round_subsecs","second","second","second","second","seconds","signed_duration_since","signed_duration_since","signed_duration_since","signed_duration_since","signed_duration_since","single","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","succ","succ","succ","succ","succ_opt","succ_opt","sum","sum","time","time","timestamp","timestamp","timestamp","timestamp_micros","timestamp_micros","timestamp_millis","timestamp_millis","timestamp_millis","timestamp_millis_opt","timestamp_nanos","timestamp_nanos","timestamp_nanos","timestamp_opt","timestamp_subsec_micros","timestamp_subsec_micros","timestamp_subsec_millis","timestamp_subsec_millis","timestamp_subsec_nanos","timestamp_subsec_nanos","timezone","timezone","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_rfc2822","to_rfc3339","to_rfc3339_opts","to_std","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","today","today","trunc_subsecs","trunc_subsecs","trunc_subsecs","trunc_subsecs","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap","utc_minus_local","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","week","week","week0","week_of_year","weekday","weekday","weekday","weekday","weekday","weeks","west","west_opt","with_day","with_day","with_day","with_day","with_day","with_day0","with_day0","with_day0","with_day0","with_day0","with_hour","with_hour","with_hour","with_hour","with_minute","with_minute","with_minute","with_minute","with_month","with_month","with_month","with_month","with_month","with_month0","with_month0","with_month0","with_month0","with_month0","with_nanosecond","with_nanosecond","with_nanosecond","with_nanosecond","with_ordinal","with_ordinal","with_ordinal","with_ordinal","with_ordinal","with_ordinal0","with_ordinal0","with_ordinal0","with_ordinal0","with_ordinal0","with_second","with_second","with_second","with_second","with_timezone","with_timezone","with_year","with_year","with_year","with_year","with_year","with_ymd_and_hms","year","year","year","year","year","year","year_ce","years_since","years_since","years_since","ymd","ymd_opt","yo","yo_opt","zero","BadFormat","Day","DelayedFormat","Error","Fixed","Fixed","Hour","Hour12","Impossible","Internal","Internal","InternalFixed","InternalNumeric","Invalid","IsoWeek","IsoYear","IsoYearDiv100","IsoYearMod100","Item","Literal","LongMonthName","LongWeekdayName","LowerAmPm","Minute","Month","Nanosecond","Nanosecond","Nanosecond3","Nanosecond6","Nanosecond9","None","NotEnough","NumDaysFromSun","Numeric","Numeric","Ordinal","OutOfRange","OwnedLiteral","OwnedSpace","Pad","ParseError","ParseErrorKind","ParseResult","Parsed","RFC2822","RFC3339","Second","ShortMonthName","ShortWeekdayName","Space","Space","StrftimeItems","Timestamp","TimezoneName","TimezoneOffset","TimezoneOffsetColon","TimezoneOffsetColonZ","TimezoneOffsetDoubleColon","TimezoneOffsetTripleColon","TimezoneOffsetZ","TooLong","TooShort","UpperAmPm","WeekFromMon","WeekFromSun","WeekdayFromMon","Year","YearDiv100","YearMod100","Zero","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","day","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format_item","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","hash","hash","hash","hash","hash","hour_div_12","hour_mod_12","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into_iter","isoweek","isoyear","isoyear_div_100","isoyear_mod_100","minute","month","nanosecond","new","new","new","new_with_offset","next","offset","ordinal","parse","parse_and_remainder","second","set_ampm","set_day","set_hour","set_hour12","set_isoweek","set_isoyear","set_isoyear_div_100","set_isoyear_mod_100","set_minute","set_month","set_nanosecond","set_offset","set_ordinal","set_second","set_timestamp","set_week_from_mon","set_week_from_sun","set_weekday","set_year","set_year_div_100","set_year_mod_100","strftime","timestamp","to_datetime","to_datetime_with_timezone","to_fixed_offset","to_naive_date","to_naive_datetime_with_offset","to_naive_time","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","week_from_mon","week_from_sun","weekday","year","year_div_100","year_mod_100","StrftimeItems","Days","IsoWeek","MAX_DATE","MAX_DATETIME","MIN_DATE","MIN_DATETIME","NaiveDate","NaiveDateTime","NaiveTime","NaiveWeek","Ambiguous","FixedOffset","Local","LocalResult","None","Offset","Offset","Single","TimeZone","Utc","datetime_from_str","fix","from_local_date","from_local_datetime","from_offset","from_utc_date","from_utc_datetime","isoywd","isoywd_opt","offset_from_local_date","offset_from_local_datetime","offset_from_utc_date","offset_from_utc_datetime","timestamp","timestamp_millis","timestamp_millis_opt","timestamp_nanos","timestamp_opt","with_ymd_and_hms","ymd","ymd_opt","yo","yo_opt","April","August","AutoSi","Date","DateTime","Datelike","December","February","FixedOffset","Fri","January","July","June","Local","March","May","Micros","Millis","Mon","Month","NaiveDate","NaiveDateTime","NaiveTime","Nanos","November","October","Offset","Offset","Sat","SecondsFormat","Secs","September","SubsecRound","Sun","Thu","TimeZone","Timelike","Tue","Utc","Wed","Weekday","datetime_from_str","day","day0","fix","from_local_date","from_local_datetime","from_offset","from_utc_date","from_utc_datetime","hour","hour12","iso_week","isoywd","isoywd_opt","minute","month","month0","nanosecond","num_days_from_ce","num_seconds_from_midnight","offset_from_local_date","offset_from_local_datetime","offset_from_utc_date","offset_from_utc_datetime","ordinal","ordinal0","round_subsecs","second","timestamp","timestamp_millis","timestamp_millis_opt","timestamp_nanos","timestamp_opt","trunc_subsecs","weekday","with_day","with_day0","with_hour","with_minute","with_month","with_month0","with_nanosecond","with_ordinal","with_ordinal0","with_second","with_year","with_ymd_and_hms","year","year_ce","ymd","ymd_opt","yo","yo_opt","AsPrimitive","Bounded","Bytes","Bytes","CheckedAdd","CheckedDiv","CheckedEuclid","CheckedMul","CheckedNeg","CheckedRem","CheckedShl","CheckedShr","CheckedSub","E","Empty","Euclid","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","Float","FloatConst","FloatErrorKind","FromBytes","FromPrimitive","FromStrRadixErr","Inv","Invalid","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","MulAdd","MulAddAssign","Num","NumAssign","NumAssignOps","NumAssignRef","NumCast","NumOps","NumRef","One","Output","Output","Output","PI","ParseFloatError","Pow","PrimInt","RefNum","SQRT_2","Saturating","SaturatingAdd","SaturatingMul","SaturatingSub","Signed","TAU","ToBytes","ToPrimitive","Unsigned","WrappingAdd","WrappingMul","WrappingNeg","WrappingShl","WrappingShr","WrappingSub","Zero","abs","abs","abs","abs_sub","abs_sub","abs_sub","acos","acosh","as_","asin","asinh","atan","atan2","atanh","borrow","borrow","borrow_mut","borrow_mut","bounds","cast","cast","cbrt","ceil","checked_add","checked_div","checked_div_euclid","checked_mul","checked_neg","checked_pow","checked_rem","checked_rem_euclid","checked_shl","checked_shr","checked_sub","clamp","clamp_max","clamp_min","classify","copysign","cos","cosh","count_ones","count_zeros","deref","deref","deref_mut","deref_mut","div_euclid","drop","drop","epsilon","exp","exp2","exp_m1","float","floor","fmt","fmt","fmt","fract","from","from","from","from_be","from_be_bytes","from_f32","from_f64","from_i128","from_i16","from_i32","from_i64","from_i8","from_isize","from_le","from_le_bytes","from_ne_bytes","from_str_radix","from_u128","from_u16","from_u32","from_u64","from_u8","from_usize","hypot","identities","infinity","init","init","int","integer_decode","into","into","inv","is_finite","is_infinite","is_nan","is_negative","is_normal","is_one","is_positive","is_sign_negative","is_sign_positive","is_subnormal","is_zero","kind","leading_ones","leading_zeros","ln","ln_1p","log","log10","log2","max","max_value","max_value","min","min_positive_value","min_value","min_value","mul_add","mul_add","mul_add_assign","nan","neg_infinity","neg_zero","one","one","ops","pow","pow","pow","pow","powf","powi","real","recip","rem_euclid","reverse_bits","rotate_left","rotate_right","round","saturating_add","saturating_add","saturating_mul","saturating_sub","saturating_sub","set_one","set_zero","sign","signed_shl","signed_shr","signum","signum","signum","sin","sin_cos","sinh","sqrt","swap_bytes","tan","tanh","to_be","to_be_bytes","to_degrees","to_f32","to_f64","to_i128","to_i16","to_i32","to_i64","to_i8","to_isize","to_le","to_le_bytes","to_ne_bytes","to_radians","to_string","to_u128","to_u16","to_u32","to_u64","to_u8","to_usize","trailing_ones","trailing_zeros","trunc","try_from","try_from","try_into","try_into","type_id","type_id","unsigned_shl","unsigned_shr","vzip","vzip","wrapping_add","wrapping_mul","wrapping_neg","wrapping_shl","wrapping_shr","wrapping_sub","zero","zero","Bounded","LowerBounded","UpperBounded","max_value","max_value","min_value","min_value","AsPrimitive","FromPrimitive","NumCast","ToPrimitive","as_","cast","from","from_f32","from_f64","from_i128","from_i16","from_i32","from_i64","from_i8","from_isize","from_u128","from_u16","from_u32","from_u64","from_u8","from_usize","to_f32","to_f64","to_i128","to_i16","to_i32","to_i64","to_i8","to_isize","to_u128","to_u16","to_u32","to_u64","to_u8","to_usize","E","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","Float","FloatConst","FloatCore","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PI","SQRT_2","TAU","abs","abs","abs_sub","acos","acosh","asin","asinh","atan","atan2","atanh","cbrt","ceil","ceil","classify","classify","copysign","cos","cosh","epsilon","epsilon","exp","exp2","exp_m1","floor","floor","fract","fract","hypot","infinity","infinity","integer_decode","integer_decode","is_finite","is_finite","is_infinite","is_infinite","is_nan","is_nan","is_normal","is_normal","is_sign_negative","is_sign_negative","is_sign_positive","is_sign_positive","is_subnormal","is_subnormal","ln","ln_1p","log","log10","log2","max","max","max_value","max_value","min","min","min_positive_value","min_positive_value","min_value","min_value","mul_add","nan","nan","neg_infinity","neg_infinity","neg_zero","neg_zero","powf","powi","powi","recip","recip","round","round","signum","signum","sin","sin_cos","sinh","sqrt","tan","tanh","to_degrees","to_degrees","to_radians","to_radians","trunc","trunc","One","Zero","is_one","is_zero","one","one","set_one","set_zero","zero","zero","PrimInt","count_ones","count_zeros","from_be","from_le","leading_ones","leading_zeros","pow","reverse_bits","rotate_left","rotate_right","signed_shl","signed_shr","swap_bytes","to_be","to_le","trailing_ones","trailing_zeros","unsigned_shl","unsigned_shr","bytes","checked","euclid","inv","mul_add","overflowing","saturating","wrapping","Bytes","Bytes","FromBytes","NumBytes","ToBytes","from_be_bytes","from_le_bytes","from_ne_bytes","to_be_bytes","to_le_bytes","to_ne_bytes","CheckedAdd","CheckedDiv","CheckedMul","CheckedNeg","CheckedRem","CheckedShl","CheckedShr","CheckedSub","checked_add","checked_div","checked_mul","checked_neg","checked_rem","checked_shl","checked_shr","checked_sub","CheckedEuclid","Euclid","checked_div_euclid","checked_rem_euclid","div_euclid","rem_euclid","Inv","Output","inv","MulAdd","MulAddAssign","Output","mul_add","mul_add_assign","OverflowingAdd","OverflowingMul","OverflowingSub","overflowing_add","overflowing_mul","overflowing_sub","Saturating","SaturatingAdd","SaturatingMul","SaturatingSub","saturating_add","saturating_add","saturating_mul","saturating_sub","saturating_sub","WrappingAdd","WrappingMul","WrappingNeg","WrappingShl","WrappingShr","WrappingSub","wrapping_add","wrapping_mul","wrapping_neg","wrapping_shl","wrapping_shr","wrapping_sub","Output","Pow","checked_pow","pow","pow","Real","abs","abs_sub","acos","acosh","asin","asinh","atan","atan2","atanh","cbrt","ceil","cos","cosh","epsilon","exp","exp2","exp_m1","floor","fract","hypot","is_sign_negative","is_sign_positive","ln","ln_1p","log","log10","log2","max","max_value","min","min_positive_value","min_value","mul_add","powf","powi","recip","round","signum","sin","sin_cos","sinh","sqrt","tan","tanh","to_degrees","to_radians","trunc","Signed","Unsigned","abs","abs","abs_sub","abs_sub","is_negative","is_positive","signum","signum","race","sync","unsync","OnceBool","OnceBox","OnceNonZeroUsize","OnceRef","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","default","default","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","get","get","get","get","get_or_init","get_or_init","get_or_init","get_or_init","get_or_try_init","get_or_try_init","get_or_try_init","get_or_try_init","init","init","init","init","into","into","into","into","new","new","new","new","set","set","set","set","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","Lazy","OnceCell","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_from","clone_into","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","force","force_mut","from","from","from","from","get","get","get_mut","get_mut","get_or_init","get_or_try_init","get_unchecked","init","init","into","into","into_inner","into_value","new","new","set","take","to_owned","try_from","try_from","try_insert","try_into","try_into","type_id","type_id","vzip","vzip","wait","with_value","Lazy","OnceCell","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_from","clone_into","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","force","force_mut","from","from","from","from","get","get","get_mut","get_mut","get_or_init","get_or_try_init","init","init","into","into","into_inner","into_value","new","new","set","take","to_owned","try_from","try_from","try_insert","try_into","try_into","type_id","type_id","vzip","vzip","with_value","BroadcastContext","Executed","FnContext","Idle","Scope","ScopeFifo","ThreadBuilder","ThreadPool","ThreadPoolBuildError","ThreadPoolBuilder","Yield","__clone_box","array","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","breadth_first","broadcast","broadcast","build","build_global","build_scoped","clone","clone_into","collections","current_num_threads","current_num_threads","current_thread_has_pending_tasks","current_thread_index","current_thread_index","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","exit_handler","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","in_place_scope","in_place_scope","in_place_scope_fifo","in_place_scope_fifo","index","index","init","init","init","init","init","init","init","init","init","install","into","into","into","into","into","into","into","into","into","iter","join","join","join_context","max_num_threads","migrated","name","new","new","num_threads","num_threads","option","panic_handler","prelude","provide","range","range_inclusive","result","run","scope","scope","scope_fifo","scope_fifo","slice","source","spawn","spawn","spawn","spawn_broadcast","spawn_broadcast","spawn_broadcast","spawn_broadcast","spawn_fifo","spawn_fifo","spawn_fifo","spawn_handler","stack_size","stack_size","start_handler","str","string","thread_name","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vec","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","yield_local","yield_local","yield_now","yield_now","IntoIter","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drive","drive_unindexed","drop","fmt","from","init","into","into_par_iter","len","opt_len","to_owned","try_from","try_into","type_id","vzip","with_producer","binary_heap","btree_map","btree_set","hash_map","hash_set","linked_list","vec_deque","Drain","IntoIter","Iter","__clone_box","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","len","len","len","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_producer","with_producer","with_producer","IntoIter","Iter","IterMut","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","opt_len","opt_len","opt_len","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","IntoIter","Iter","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drop","drop","fmt","fmt","from","from","init","init","into","into","into_par_iter","into_par_iter","opt_len","opt_len","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Drain","IntoIter","Iter","IterMut","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","init","init","init","init","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","opt_len","opt_len","opt_len","opt_len","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","Drain","IntoIter","Iter","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","opt_len","opt_len","opt_len","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","IntoIter","Iter","IterMut","__clone_box","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","Drain","IntoIter","Iter","IterMut","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","init","init","init","init","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","len","len","len","len","opt_len","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","with_producer","with_producer","with_producer","with_producer","Chain","Chunks","Cloned","Copied","Either","Empty","Enumerate","Filter","FilterMap","FlatMap","FlatMapIter","Flatten","FlattenIter","Fold","FoldChunks","FoldChunksWith","FoldWith","FromParallelIterator","IndexedParallelIterator","Inspect","Interleave","InterleaveShortest","Intersperse","IntoParallelIterator","IntoParallelRefIterator","IntoParallelRefMutIterator","Item","Item","Item","Item","Item","Item","Iter","Iter","Iter","Iter","Iter","IterBridge","Left","Map","MapInit","MapWith","MaxLen","MinLen","MultiZip","Once","PanicFuse","ParallelBridge","ParallelDrainFull","ParallelDrainRange","ParallelExtend","ParallelIterator","Positions","Repeat","RepeatN","Rev","Right","Skip","SkipAny","SkipAnyWhile","Split","StepBy","Take","TakeAny","TakeAnyWhile","TryFold","TryFoldWith","Update","WhileSome","Zip","ZipEq","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","all","all","any","any","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_pin_mut","as_pin_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","chain","chunks","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_from","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloned","cmp","cmp","collect","collect","collect_into_vec","compare","consume","copied","count","count","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","either","either_into","either_with","empty","encode_hex","encode_hex_upper","enumerate","eq","eq","equivalent","equivalent","equivalent","equivalent","execute","expect_left","expect_right","extend","factor_err","factor_first","factor_none","factor_ok","factor_second","fill_buf","filter","filter_map","find","find_any","find_first","find_last","find_map","find_map_any","find_map_first","find_map_last","flat_map","flat_map_iter","flatten","flatten_iter","flip","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold","fold","fold_chunks","fold_chunks_with","fold_with","for_each","for_each","for_each_init","for_each_with","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_par_iter","ge","gt","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inspect","interleave","interleave_shortest","intersperse","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_future","into_inner","into_iter","into_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_vec","into_vec","is_left","is_right","last","le","left","left_and_then","left_or","left_or_default","left_or_else","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","lt","map","map","map_either","map_either_with","map_init","map_left","map_right","map_with","max","max_by","max_by_key","min","min_by","min_by_key","ne","next","next_back","nth","once","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","panic_fuse","par_bridge","par_drain","par_drain","par_extend","par_extend","par_iter","par_iter_mut","partial_cmp","partial_cmp","partition","partition","partition_map","plumbing","poll","position","position_any","position_first","position_last","positions","product","provide","queue","read","read_exact","read_line","read_to_end","read_to_string","read_until","read_varint","reduce","reduce_with","repeat","repeatn","rev","rfind","rfold","right","right_and_then","right_or","right_or_default","right_or_else","seek","size_hint","skip","skip_any","skip_any_while","source","split","step_by","sum","sync_update","take","take","take_any","take_any_while","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_fold","try_fold_with","try_for_each","try_for_each_init","try_for_each_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_poll","try_reduce","try_reduce_with","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap_left","unwrap_right","unzip","unzip_into_vecs","update","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","while_some","with_max_len","with_min_len","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","write","write_all","write_fmt","write_varint","zip","zip","zip_eq","Consumer","Folder","Folder","IntoIter","Item","Item","Output","Producer","ProducerCallback","Reducer","Reducer","Result","Result","UnindexedConsumer","UnindexedProducer","bridge","bridge_producer_consumer","bridge_unindexed","callback","complete","consume","consume_iter","fold_with","fold_with","full","full","into_folder","into_iter","max_len","min_len","reduce","split","split_at","split_at","split_off_left","to_reducer","IntoIter","Iter","IterMut","__clone_box","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","len","len","len","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_producer","with_producer","with_producer","FromParallelIterator","IndexedParallelIterator","IntoParallelIterator","IntoParallelRefIterator","IntoParallelRefMutIterator","Item","Item","Item","Item","Item","Item","Iter","Iter","Iter","Iter","Iter","ParallelBridge","ParallelDrainFull","ParallelDrainRange","ParallelExtend","ParallelIterator","ParallelSlice","ParallelSliceMut","ParallelString","all","any","as_parallel_slice","as_parallel_slice_mut","as_parallel_string","chain","chunks","cloned","cmp","collect","collect_into_vec","copied","count","drive","drive_unindexed","enumerate","eq","filter","filter_map","find_any","find_first","find_last","find_map_any","find_map_first","find_map_last","flat_map","flat_map_iter","flatten","flatten_iter","fold","fold_chunks","fold_chunks_with","fold_with","for_each","for_each_init","for_each_with","from_par_iter","ge","gt","inspect","interleave","interleave_shortest","intersperse","into_par_iter","le","len","lt","map","map_init","map_with","max","max_by","max_by_key","min","min_by","min_by_key","ne","opt_len","panic_fuse","par_bridge","par_bytes","par_char_indices","par_chars","par_chunks","par_chunks_exact","par_chunks_exact_mut","par_chunks_mut","par_drain","par_drain","par_encode_utf16","par_extend","par_iter","par_iter_mut","par_lines","par_match_indices","par_matches","par_rchunks","par_rchunks_exact","par_rchunks_exact_mut","par_rchunks_mut","par_sort","par_sort_by","par_sort_by_cached_key","par_sort_by_key","par_sort_unstable","par_sort_unstable_by","par_sort_unstable_by_key","par_split","par_split","par_split_mut","par_split_terminator","par_split_whitespace","par_windows","partial_cmp","partition","partition_map","position_any","position_first","position_last","positions","product","reduce","reduce_with","rev","skip","skip_any","skip_any_while","step_by","sum","take","take_any","take_any_while","try_fold","try_fold_with","try_for_each","try_for_each_init","try_for_each_with","try_reduce","try_reduce_with","unzip","unzip_into_vecs","update","while_some","with_max_len","with_min_len","with_producer","zip","zip_eq","Iter","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drive","drive","drive_unindexed","drive_unindexed","drop","fmt","from","init","into","into_par_iter","len","len","opt_len","opt_len","to_owned","try_from","try_into","type_id","vzip","with_producer","with_producer","Iter","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drive","drive","drive_unindexed","drive_unindexed","drop","fmt","from","init","into","into_par_iter","len","len","opt_len","opt_len","to_owned","try_from","try_into","type_id","vzip","with_producer","with_producer","IntoIter","Iter","IterMut","__clone_box","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","len","len","len","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_producer","with_producer","with_producer","Chunks","ChunksExact","ChunksExactMut","ChunksMut","Iter","IterMut","ParallelSlice","ParallelSliceMut","RChunks","RChunksExact","RChunksExactMut","RChunksMut","Split","SplitMut","Windows","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_parallel_slice","as_parallel_slice_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_remainder","into_remainder","len","len","len","len","len","len","len","len","len","len","len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","par_chunks","par_chunks_exact","par_chunks_exact_mut","par_chunks_mut","par_rchunks","par_rchunks_exact","par_rchunks_exact_mut","par_rchunks_mut","par_sort","par_sort_by","par_sort_by_cached_key","par_sort_by_key","par_sort_unstable","par_sort_unstable_by","par_sort_unstable_by_key","par_split","par_split_mut","par_windows","remainder","remainder","remainder","remainder","take_remainder","take_remainder","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","Bytes","CharIndices","Chars","EncodeUtf16","Lines","MatchIndices","Matches","ParallelString","Split","SplitTerminator","SplitWhitespace","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_parallel_string","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","par_bytes","par_char_indices","par_chars","par_encode_utf16","par_lines","par_match_indices","par_matches","par_split","par_split_terminator","par_split_whitespace","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Drain","borrow","borrow_mut","deref","deref_mut","drive_unindexed","drop","drop","fmt","from","init","into","into_par_iter","try_from","try_into","type_id","vzip","Drain","IntoIter","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref_mut","deref_mut","drive","drive","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","from","from","init","init","into","into","into_par_iter","into_par_iter","len","len","opt_len","opt_len","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","with_producer","with_producer","CaptureLocations","CaptureMatches","CaptureNames","Captures","CompiledTooBig","Error","Match","Matches","NoExpand","Regex","RegexBuilder","RegexSet","RegexSetBuilder","Replacer","ReplacerRef","SetMatches","SetMatchesIntoIter","SetMatchesIter","Split","SplitN","SubCaptureMatches","Syntax","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_str","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","by_ref","bytes","capture_locations","capture_names","captures","captures_at","captures_iter","captures_len","captures_read","captures_read_at","case_insensitive","case_insensitive","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","count","count","count","count","crlf","crlf","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","dfa_size_limit","dfa_size_limit","dot_matches_new_line","dot_matches_new_line","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","end","eq","eq","equivalent","equivalent","equivalent","equivalent","escape","expand","extract","find","find_at","find_iter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","get","get","ignore_whitespace","ignore_whitespace","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_vec","into_vec","into_vec","into_vec","is_empty","is_empty","is_match","is_match","is_match_at","is_match_at","iter","iter","len","len","len","len","len","line_terminator","line_terminator","matched","matched_any","matches","matches_at","multi_line","multi_line","name","nest_limit","nest_limit","new","new","new","new","next","next","next","next","next","next","next","next","next_back","next_back","no_expansion","no_expansion","no_expansion","octal","octal","par_bridge","patterns","provide","range","replace","replace_all","replace_append","replace_append","replace_append","replacen","shortest_match","shortest_match_at","size_hint","size_hint","size_hint","size_hint","size_hint","size_limit","size_limit","split","splitn","start","static_captures_len","swap_greed","swap_greed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unicode","unicode","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","CaptureLocations","CaptureMatches","CaptureNames","Captures","Match","Matches","NoExpand","Regex","RegexBuilder","RegexSet","RegexSetBuilder","Replacer","ReplacerRef","SetMatches","SetMatchesIntoIter","SetMatchesIter","Split","SplitN","SubCaptureMatches","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_bytes","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","by_ref","capture_locations","capture_names","captures","captures_at","captures_iter","captures_len","captures_read","captures_read_at","case_insensitive","case_insensitive","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","count","count","count","count","crlf","crlf","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dfa_size_limit","dfa_size_limit","dot_matches_new_line","dot_matches_new_line","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","end","eq","equivalent","equivalent","equivalent","equivalent","expand","extract","find","find_at","find_iter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","get","get","ignore_whitespace","ignore_whitespace","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","is_empty","is_empty","is_match","is_match","is_match_at","is_match_at","iter","iter","len","len","len","len","len","line_terminator","line_terminator","matched","matched_any","matches","matches_at","multi_line","multi_line","name","nest_limit","nest_limit","new","new","new","new","next","next","next","next","next","next","next","next","next_back","next_back","no_expansion","no_expansion","no_expansion","octal","octal","par_bridge","patterns","range","replace","replace_all","replace_append","replace_append","replace_append","replacen","shortest_match","shortest_match_at","size_hint","size_hint","size_hint","size_hint","size_hint","size_limit","size_limit","split","splitn","start","static_captures_len","swap_greed","swap_greed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unicode","unicode","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Any","ArrowChunk","DataFrame","First","Ignore","Last","None","NullStrategy","PhysRecordBatchIter","Propagate","RecordBatchIter","UniqueKeepStrategy","__clone_box","__clone_box","__clone_box","_add_columns","_create_left_df_from_slice","_filter_seq","_finish_left_join","_left_join_from_series","_outer_join_from_series","_slice_and_realloc","agg_chunks","align_chunks","apply","apply_at_idx","as_single_chunk","as_single_chunk_par","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear","clone","clone","clone","clone_into","clone_into","clone_into","column","columns","cross_join","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","describe","drop","drop","drop","drop","drop","drop","drop_in_place","drop_many","drop_many_amortized","drop_nulls","dtypes","empty","eq","eq","equivalent","equivalent","equivalent","equivalent","estimated_size","explode","explode","explode_impl","extend","fields","fill_null","filter","find_idx_by_name","fmt","fmt","fmt","fmt","frame_equal","frame_equal_missing","frame_equal_schema","from","from","from","from","from","from","from","from_iter","from_rows","from_rows_and_schema","from_rows_iter_and_schema","get","get_column_names","get_column_names_owned","get_columns","get_columns_mut","get_row","get_row_amortized","get_row_amortized_unchecked","get_supertype","groupby","groupby","groupby_dynamic","groupby_rolling","groupby_stable","groupby_with_series","hash_join","head","height","hmax","hmean","hmin","hstack","hstack_mut","hstack_mut_unchecked","hsum","index","index","index","index","index","index","index","index","init","init","init","init","init","insert_at_idx","into","into","into","into","into","into_iter","into_iter","into_struct","is_duplicated","is_empty","is_unique","iter","iter_chunks","iter_chunks_physical","join_asof","join_asof_by","lazy","max","mean","median","melt","melt2","min","n_chunks","new","new_no_checks","next","next","null_count","pipe","pipe_mut","pipe_with_args","pop","ptr_equal","quantile","rename","replace","replace_at_idx","replace_or_add","reverse","row","sample_frac","sample_n","schema","select","select_at_idx","select_by_range","select_physical","select_series","select_with_schema","select_with_schema_unchecked","set_column_names","shape","shift","should_rechunk","shrink_to_fit","size_hint","size_hint","slice","slice_par","sort","sort_impl","sort_in_place","sort_with_options","std","sum","tail","take","take_iter","take_iter_unchecked","take_opt_iter_unchecked","to_ndarray","to_owned","to_owned","to_owned","to_string","top_k","transpose","try_apply","try_apply_at_idx","try_find_idx_by_name","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_rows_iter_and_schema","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unique","unique_impl","unique_stable","unnest","upsample","upsample_stable","var","vstack","vstack_mut","vzip","vzip","vzip","vzip","vzip","width","with_column","with_column_and_schema","with_column_unchecked","with_row_count","with_row_count_mut","MeltArgs","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","eq","fmt","from","id_vars","init","into","streamable","to_owned","try_from","try_into","type_id","value_name","value_vars","variable_name","vzip","BorrowIdxItem","Count","First","GroupBy","GroupByMethod","Groups","GroupsIdx","GroupsIndicator","GroupsProxy","GroupsProxyIter","GroupsProxyParIter","GroupsSlice","Idx","Idx","IdxItem","Implode","IntoGroupsProxy","Last","Max","Mean","Median","Min","NUnique","NanMax","NanMin","Quantile","Slice","Slice","SlicedGroups","Std","Sum","Var","__clone_box","__clone_box","__clone_box","__clone_box","agg_list","aggregations","all","apply","as_list_chunked","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","count","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","df","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expr","first","first","first","first_mut","fmt","fmt","fmt","fmt","fmt","fmt_groupby_column","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_par_iter","get","get_groups","get_groups_mut","group_count","group_lengths","group_tuples","groups","idx_mut","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into_idx","into_iter","into_iter","into_iter","into_par_iter","into_par_iter","into_par_iter","is_empty","is_empty","is_sorted_flag","iter","iter","keys","keys_sliced","last","len","len","max","mean","median","min","n_unique","new","new","next","nth","par_apply","par_iter","par_iter","quantile","select","slice","sort","sort","std","sum","take_group_firsts","take_groups","take_groups_mut","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unroll","unwrap_idx","unwrap_slice","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","groups","rolling","AggList","_agg_helper_idx","_agg_helper_idx_no_null","_agg_helper_slice","_agg_helper_slice_no_null","_rolling_apply_agg_window_no_nulls","_rolling_apply_agg_window_nulls","_slice_from_offsets","_use_rolling_kernels","agg_list","PhysicalAggExpr","evaluate","root_name","AsOf","ChunkId","ChunkJoinIds","ChunkJoinOptIds","Cross","Inner","InnerJoinIds","JoinArgs","JoinType","JoinValidation","Left","LeftJoinIds","ManyToMany","ManyToOne","OneToMany","OneToOne","Outer","__clone_box","__clone_box","__clone_box","_check_categorical_src","_inner_join_multiple_keys","_join_suffix_name","_left_join_multiple_keys","_outer_join_multiple_keys","_sort_or_hash_inner","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","default","default_join_ids","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","how","init","init","init","into","into","into","is_valid_join","needs_checks","new","private_left_join_multiple_keys","slice","suffix","suffix","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","validation","vzip","vzip","vzip","All","All","AnyValueBuffer","AnyValueBufferTrusted","Boolean","Boolean","Date","Datetime","Duration","Float32","Float32","Float64","Float64","Int16","Int16","Int32","Int32","Int64","Int64","Int8","Int8","Row","Struct","Time","UInt16","UInt16","UInt32","UInt32","UInt64","UInt64","UInt8","UInt8","Utf8","Utf8","__clone_box","__clone_box","__clone_box","add","add_unchecked_borrowed_physical","add_unchecked_owned_physical","any_values_to_dtype","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","coerce_data_type","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","from","from","from","from","from","infer_schema","init","init","init","into","into","into","into_series","into_series","new","new","new","reset","reset","rows_to_schema_first_non_null","rows_to_schema_supertypes","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","concat_str","cov_f","cov_i","diag_concat_df","hor_concat_df","pearson_corr_f","pearson_corr_i","Abs","Agg","AggExpr","AggGroups","Aggregate","AggregationContext","Alias","All","AllColumns","AllColumnsSingle","AllowedOptimizations","And","AnonymousFunction","AnonymousScan","AnonymousScan","AnonymousScanOptions","Any","Any","Any","AnyValue","Arc","ArgAgg","ArgWhere","Array","Array","Array","ArrayChunked","ArrayExpr","ArrayNameSpace","ArrayRef","ArrowDataType","ArrowError","ArrowField","ArrowGetItem","ArrowResult","ArrowSchema","ArrowTimeUnit","AsBinary","AsList","AsOf","AsOfOptions","AsRefDataType","AsUtf8","AsofStrategy","Atan2","Auto","Average","Backward","Backward","BatchedParquetReader","Binary","Binary","Binary","Binary","BinaryChunked","BinaryChunkedBuilder","BinaryExpr","BinaryExpr","BinaryNameSpaceImpl","BinaryOwned","BinaryTakeRandom","BinaryTakeRandomSingleChunk","BinaryType","BinaryUdfOutputField","BoolTakeRandom","BoolTakeRandomSingleChunk","Boolean","Boolean","Boolean","Boolean","Boolean","BooleanChunked","BooleanChunkedBuilder","BooleanFunction","BooleanType","BorrowIdxItem","Both","Bounds","BoundsIter","Brotli","BrotliLevel","C","Cache","Cast","CatIter","Categorical","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalNameSpace","CategoricalOrdering","CategoricalType","Ceil","ChainedThen","ChainedWhen","ChunkAgg","ChunkAggSeries","ChunkAnyValue","ChunkApply","ChunkApplyKernel","ChunkBytes","ChunkCast","ChunkCompare","ChunkCumAgg","ChunkExpandAtIndex","ChunkExplode","ChunkFillNullValue","ChunkFilter","ChunkFull","ChunkFullNull","ChunkPeaks","ChunkQuantile","ChunkReverse","ChunkRollApply","ChunkSet","ChunkShift","ChunkShiftFill","ChunkSort","ChunkTake","ChunkUnique","ChunkVar","ChunkZip","ChunkedArray","ChunkedBuilder","ChunkedSet","Clip","ClosedWindow","CloudOptions","Coalesce","Column","ColumnNotFound","Columns","Columns","ComputeError","ConcatExpr","Correlation","Count","Count","Count","Cross","CsvEncoding","CsvReader","CsvWriter","Cumcount","Cummax","Cummin","Cumprod","Cumsum","DataFrame","DataFrameJoinOps","DataFrameOps","DataFrameScan","DataPoint","DataType","Date","Date","Date","Date32","Date64","DateChunked","DateMethods","DateTime","DateType","Datetime","Datetime","DatetimeArgs","DatetimeChunked","DatetimeMethods","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dense","Dictionary","Diff","Distinct","Divide","DropNans","Dtype","DtypeColumn","Dummy","Duplicate","Duration","Duration","Duration","Duration","Duration","DurationArgs","DurationChunked","DurationMethods","DurationType","DynArgs","DynamicGroupOptions","Entropy","Eq","EqValidity","Error","Exclude","Excluded","Exp","Explode","Explode","Expr","ExprEvalExtension","ExtContext","Extension","Field","FileSink","FillNull","FillNullLimit","FillNullStrategy","Filter","First","First","First","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64","Float64Chunked","Float64Type","Floor","FloorDivide","Fortran","Forward","Forward","Friday","FromData","FromDataBinary","FromDataUtf8","Function","FunctionExpr","FunctionOutputField","FxHash","GetAnyValue","GetOutput","GlobIterator","Global","GlobalFinished","GroupBy","GroupByMethod","Groups","GroupsIdx","GroupsIndicator","GroupsProxy","GroupsProxyIter","GroupsProxyParIter","GroupsSlice","GroupsToRows","Gt","GtEq","Gzip","GzipLevel","HStack","HashMap","Higher","IDX_DTYPE","Idx","Idx","IdxArr","IdxCa","IdxItem","IdxSize","IdxType","Implode","Implode","IndexOfSchema","IndexOrder","IndexToUsize","InitHashMaps","Inner","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8","Int8Chunked","Int8Type","Interpolate","InterpolationMethod","Interval","IntoGroupsProxy","IntoLazy","IntoListNameSpace","IntoSeries","IntoTakeRandom","IntoVec","InvalidOperation","Io","IpcCompression","IpcReader","IpcStreamReader","IpcStreamWriter","IpcStreamWriterOption","IpcWriter","IpcWriterOption","IpcWriterOptions","IsFinite","IsFirst","IsFirst","IsFloat","IsIn","IsIn","IsInfinite","IsLast","IsNan","IsNot","IsNotNan","IsNotNull","IsNull","Item","Item","Item","Item","Item","Iter","IterNulls","Join","Join","JoinArgs","JoinBuilder","JoinOptions","JoinType","Json","JsonFormat","JsonLineReader","JsonLines","JsonReader","JsonWriter","KeepName","LZ4","LargeBinary","LargeBinaryArray","LargeList","LargeListArray","LargeStringArray","LargeUtf8","Last","Last","Last","LazyCsvReader","LazyFileListReader","LazyFrame","LazyGroupBy","LazyJsonLineReader","Left","Left","Left","Lexical","LhsNumOps","Linear","Linear","List","List","List","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListChunked","ListExpr","ListFromIter","ListNameSpace","ListNameSpaceExtension","ListNameSpaceImpl","ListPrimitiveChunkedBuilder","ListTakeRandom","ListTakeRandomSingleChunk","ListType","ListUtf8ChunkedBuilder","Literal","Literal","LiteralValue","Local","Local","LocalProjection","Log","Log1p","LogSeries","Logical","LogicalPlan","LogicalType","LossyUtf8","Lower","LowerBound","Lt","LtEq","Lz4Raw","Lzo","Map","MapFunction","Max","Max","Max","Max","MaxBound","Mean","Mean","Mean","Median","Median","MeltArgs","MetaNameSpace","Microsecond","Microseconds","Midpoint","Millisecond","Milliseconds","Min","Min","Min","Min","MinBound","Minus","Modulus","Monday","Multi","Multi","Multiply","MutableBitmapExtension","NULL","NUnique","NUnique","Name","Named","NamedFrom","NamedFromOwned","NanMax","NanMin","Nanosecond","Nanoseconds","Native","Nearest","Nearest","Nearest","NewChunkedArray","NoData","NoNull","None","None","None","NotEq","NotEqValidity","Nth","Null","Null","Null","Null","Null","NullCount","NullValues","NumOpsDispatch","NumOpsDispatchChecked","NumTakeRandomChunked","NumTakeRandomCont","NumTakeRandomSingleChunk","NumericNative","Object","Object","ObjectChunked","ObjectOwned","ObjectTakeRandom","ObjectTakeRandomSingleChunk","ObjectType","One","Operator","OptState","Or","Ordinal","Outer","Output","OwnedObject","POLARSTYPE","ParallelStrategy","ParquetCompression","ParquetReader","ParquetWriteOptions","ParquetWriter","PartitionedAggregation","Physical","PhysicalExpr","PhysicalIoHelper","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","Plus","PolarsArray","PolarsDataType","PolarsError","PolarsFloatType","PolarsIntegerType","PolarsIterator","PolarsMonthEnd","PolarsMonthStart","PolarsNumericType","PolarsObject","PolarsResult","PolarsRound","PolarsSingleType","PolarsTemporalGroupby","PolarsTruncate","PolarsUpsample","Pow","PrimitiveChunkedBuilder","Projection","Quantile","Quantile","QuantileAggSeries","QuantileInterpolOptions","Random","Random","Range","Range","Range","RankMethod","RankOptions","RenameAlias","RenameAliasFn","RepeatBy","RevMapping","RevMappingBuilder","Reverse","Right","Right","RollingAgg","RollingCovOptions","RollingGroupOptions","RollingOptions","RollingOptionsFixedWindow","RollingOptionsImpl","RollingQuantileParams","RollingSeries","RollingVarParams","Round","RowGroups","Saturday","Scan","ScanArgsAnonymous","ScanArgsIpc","ScanArgsParquet","Schema","SchemaFieldNotFound","SchemaMismatch","SchemaRef","SearchSortedSide","Second","Selection","Selector","SerReader","SerWriter","Series","Series","SeriesBinaryUdf","SeriesMethods","SeriesOpsTime","SeriesSealed","SeriesTrait","SeriesUdf","SetSortedFlag","ShapeMismatch","Shift","ShiftAndFill","ShrinkType","Single","Single","SingleNoNull","Slice","Slice","Slice","Slice","SlicedArray","SlicedGroups","Snappy","Sort","Sort","SortBy","SortMultipleOptions","SortOptions","SpecialEq","StartBy","Std","Std","StrConcat","StrHashLocal","StringCacheMismatch","StringExpr","StrptimeOptions","Struct","Struct","Struct","StructArray","StructChunked","StructExpr","StructFieldNotFound","StructNameSpace","StructOwned","Sum","Sum","Sunday","Take","TakeIdx","TakeIterator","TakeIteratorNulls","TakeRandBranch2","TakeRandBranch3","TakeRandom","TakeRandom","TakeRandomBitmap","TakeRandomUtf8","TemporalExpr","TemporalMethods","Ternary","Then","Thursday","Time","Time","Time","Time32","Time64","TimeChunked","TimeMethods","TimeType","TimeUnit","TimeZone","Timestamp","ToDummies","ToPhysical","Trigonometry","TrueDivide","TruncateOptions","Tuesday","UInt16","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","UdfSchema","Uncompressed","Union","Union","UnionArgs","Unique","UniqueKeepStrategy","Unknown","UpperBound","Utf8","Utf8","Utf8","Utf8","Utf8","Utf8Chunked","Utf8ChunkedBuilder","Utf8Methods","Utf8NameSpaceImpl","Utf8Owned","Utf8TakeRandom","Utf8TakeRandomSingleChunk","Utf8Type","ValueSize","Var","Var","VarAggSeries","VecHash","Wednesday","When","Wildcard","Window","Window","WindowBound","WindowMapping","WindowOptions","Xor","ZSTD","Zero","Zstd","ZstdLevel","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_finish_with_scan_ops","_fx_hash","_into_selector","_selector_add","_selector_and","_selector_sub","_sum_as_series","_to_dummies","abs","add","add","add_ms","add_ns","add_to","add_us","agg","agg_groups","aggregations","alias","all","all","all_horizontal","allow_parallel","allow_parallel","allows_predicate_pushdown","allows_projection_pushdown","allows_projection_pushdown","allows_slice_pushdown","and","anonymous_scan","any","any_horizontal","append","append_null","append_null","append_opt_series","append_option","append_series","append_value","apply","apply","apply","apply_binary","apply_cast_numeric","apply_children","apply_kernel","apply_kernel_cast","apply_many","apply_many_private","apply_multiple","apply_on_opt","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arange","arccos","arccosh","arced","arcsin","arcsinh","arctan","arctan2","arctanh","arg_max","arg_max","arg_max","arg_min","arg_min","arg_min","arg_sort","arg_sort","arg_sort","arg_sort_by","arg_sort_multiple","arg_unique","arg_unique","arg_unique","arg_where","args","arr","array","arrow_ndjson","arrow_schema","arrow_schema","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_binary","as_date","as_date_not_exact","as_datetime","as_datetime_not_exact","as_expression","as_list","as_partitioned_aggregator","as_ref","as_ref_dtype","as_series","as_single_ptr","as_slice_mut","as_stats_evaluator","as_stats_evaluator","as_struct","as_time","as_utf8","avg","backward_fill","base64_decode","base64_encode","base_utc_offset","batched","batched","batched","batched_async","batched_borrowed_mmap","batched_borrowed_read","batched_mmap","batched_read","binary","binary","binary_expr","bitand","bitor","bitxor","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_k","boxed","boxed_clone","boxed_clone","branch_apply_cast_numeric_no_null","builder","by","by","cache","cache","cache","cache","call","call_udf","call_udf","capacity","capacity","cast","cast","cast","cast","cast","cast_unchecked","cat","cat","cbrt","ceil","center","center","center","check_bounds","check_bounds","check_sorted","check_sorted","checked_div","checked_div","checked_div_num","chunk_lengths","chunkedarray","chunks","clip","clip_max","clip_min","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_inner","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closed_window","closed_window","closed_window","closed_window","cloud","cloud_options","cloud_options","cmp","coalesce","col","collect","collect_all","cols","columns_to_dummies","compare","compression","compression","concat","concat","concat_expr","concat_impl","concat_impl","concat_list","concat_str","contains","contains","contains","contains_literal","contains_literal","cos","cosh","cot","count","count","count_match","cov","create_writer","create_writer","cross_join","cumcount","cumfold_exprs","cummax","cummax","cummin","cummin","cumprod","cumprod","cumreduce_exprs","cumsum","cumsum","cumulative_eval","data_pagesize_limit","data_type","data_type","datatypes","date_ranges","datetime","datetime","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","day","day","day","day","days","days","days","days_only","ddof","ddof","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default_arrays","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descending","descending","descending","describe","describe_optimized_plan","describe_plan","df","df","diag_concat_lf","diff","diff","div","div","divide","dot","dot","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_columns","drop_nans","drop_nulls","drop_nulls","drop_nulls","dst_offset","dt","dt","dtype","dtype","dtype","dtype_col","dtype_cols","duration","ends_with","ends_with","entropy","entropy","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_missing","equal","equal_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","eval","evaluate","evaluate","evaluate_on_groups","evaluate_partitioned","every","every","exact","exclude","exclude_dtype","exp","exp","explain","explode","explode","explode","explode_and_offsets","expr","expr","extension","extension","extract","extract_all","extract_all_many","fast_explode","fetch","field","field","field_by_index","field_by_name","fields","fields","file_caching","fill_nan","fill_nan","fill_null","fill_null","fill_null_with_values","filter","filter","filter","filter","finalize","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish_no_glob","finish_no_glob","finish_no_glob","finish_with_scan_ops","first","first","first","first","fixed_size_list","flatten","float_type","floor","floor_div","floor_div_series","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_groupby_column","fmt_str","fn_params","fn_params","fn_params","fold_exprs","force_parallel","force_parallel","format","format_str","forward_fill","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_data_default","from_data_unchecked_default","from_data_unchecked_default","from_iter","from_iter","from_iter_binary_trusted_len","from_iter_bool_trusted_len","from_iter_options","from_iter_primitive_trusted_len","from_iter_trusted_length","from_iter_trusted_length","from_iter_utf8_trusted_len","from_iter_values","from_par_iter","from_path","from_path","from_slice","from_slice_options","from_trusted_len_iter_rev","from_type","from_vec","full","full","full_null","function_with_options","get","get","get","get","get","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_categories","get_current_optimizations","get_datatype","get_dtype","get_earliest_bounds_ms","get_earliest_bounds_ns","get_earliest_bounds_us","get_field","get_field","get_fields","get_k","get_names","get_object","get_output","get_overlapping_bounds_iter","get_schema","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_values_size","glob","group_tuples","groupby","groupby_dynamic","groupby_dynamic","groupby_rolling","groupby_rolling","groupby_stable","groupby_values","groupby_windows","gt","gt","gt_eq","gt_eq","has_header","has_header","has_header","has_multiple_outputs","has_validity","has_validity","has_window_function","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","head","head","head","hex_decode","hex_encode","hour","hour","hour","hour","hours","hours","how","how","id_vars","implode","in_nanoseconds_window","include_boundaries","index_column","index_column","index_of","indexes_to_usizes","infer_schema","infer_schema_len","infer_schema_len","infer_schema_length","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_array","inner_join","inner_join","int_range","int_ranges","interpol","interpolate","interpolate","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_data","into_inner","into_iter","into_iter","into_iter","into_list_name_space","into_list_name_space","into_range","into_series","into_tree_formatter","into_vec","is_constant_duration","is_empty","is_finite","is_first","is_first","is_first","is_float","is_in","is_in","is_in","is_infinite","is_last","is_leap_year","is_leap_year","is_leap_year","is_literal","is_nan","is_nan","is_not_nan","is_not_null","is_not_null","is_not_null","is_null","is_null","is_null","is_nullable","is_regex_projection","is_series","is_simple_projection","is_sorted","is_sorted_flag","is_valid_aggregation","is_zero","iso_year","iso_year","iso_year","iter","iter","join","join","join","join_builder","json","keep_name","last","last","last","last","lazy","left_by","left_join","left_join","left_on","len","len","lengths","limit","limit","list","lit","lit","lit","lit","log","log","log1p","log1p","logical_plan","logical_plan","low_memory","low_memory","low_memory","low_memory","low_memory","lower_bound","lst_arg_max","lst_arg_min","lst_concat","lst_diff","lst_get","lst_join","lst_lengths","lst_max","lst_mean","lst_min","lst_reverse","lst_shift","lst_slice","lst_sort","lst_sum","lst_unique","lst_unique_stable","lt","lt","lt_eq","lt_eq","maintain_order","maintain_order","maintain_order","map","map","map_alias","map_binary","map_children","map_dtype","map_dtypes","map_field","map_fields","map_list","map_list_multiple","map_many","map_many_private","map_multiple","mapping","max","max","max","max","max","max","max_as_series","max_as_series","max_horizontal","mean","mean","mean","mean","mean","mean","median","median","median","median","median","median_as_series","median_as_series","melt","memmap","memory_mapped","merge_dtypes","meta","metadata","metadata","method","microsecond","microseconds","microseconds","milliseconds","milliseconds","min","min","min","min","min","min","min_as_series","min_as_series","min_horizontal","min_periods","min_periods","min_periods","min_periods","minute","minute","minute","minute","minutes","minutes","mode","mode","mode","month","month","month","month","month_end","month_start","months","months_only","mul","mul","mul","multiply","multithreaded","multithreaded","mutate","n_chunks","n_rows","n_rows","n_rows","n_rows","n_rows","n_rows","n_rows","n_unique","n_unique","n_unique","name","name","name","name","nan_max","nan_min","nan_propagating_aggregate","nanosecond","nanosecond","nanosecond","nanoseconds","nanoseconds","nanoseconds","negative_to_usize","neq","neq_missing","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_async","new_empty","new_from_index","new_from_index","new_null","next","next_batches","nodes","nodes_mut","not","not","not_equal","not_equal_missing","null","null_count","null_count","null_count","nulls_last","num_rows","offset","offset","offset","offset","on","ops_time_dtype","optimize","or","ordinal","ordinal","ordinal_day","ordinal_year","other","otherwise","otherwise","outer_join","outer_join","output_name","output_schema","over","over_with_options","parallel","parallel","parse","parse_from_str_slice","parse_from_str_slice","parse_from_str_slice","parse_int","parsed_int","partial_cmp","path","path","path","peak_max","peak_max","peak_min","peak_min","pearson_corr","period","period","pi","polars_bail","polars_ensure","polars_err","polars_warn","pop","pow","predicate","predicate_pushdown","predicates","prefix","prob","prod_as_series","product","profile","projection_pushdown","quantile","quantile","quantile","quantile","quantile_as_series","quantile_as_series","quarter","quarter","quarter","radians","range","rank","read_impl","read_parallel","rechunk","rechunk","rechunk","rechunk","rechunk","rechunk","rechunk","reduce_exprs","rem","rem","remainder","rename","rename","rename_fields","repeat","repeat_by","repeat_by","repeat_by","replace","replace_all","replace_literal","replace_literal_all","replace_time_zone","reshape","resolve_homedir","reverse","reverse","reverse","reverse","reverse","right_by","right_on","rolling_apply","rolling_apply","rolling_apply","rolling_apply_float","rolling_corr","rolling_cov","rolling_max","rolling_max","rolling_max","rolling_mean","rolling_mean","rolling_mean","rolling_median","rolling_median","rolling_median","rolling_min","rolling_min","rolling_min","rolling_quantile","rolling_quantile","rolling_quantile","rolling_std","rolling_std","rolling_std","rolling_sum","rolling_sum","rolling_sum","rolling_var","rolling_var","rolling_var","root_names","round","round","round_ms","round_ns","round_us","row_count","row_count","row_count","row_count","row_count","row_count","row_group_size","rows_left","rows_right","same_type","same_type","sample_frac","sample_n","sample_size","scan","scan","scan_ipc","scan_parquet","schema","schema","schema","schema","schema","schema","schema","schema","schema","search_sorted","second","second","second","second","seconds","seconds","select","series","set","set_at_idx","set_at_idx2","set_at_idx_with","set_bit_unchecked","set_low_memory","set_ordering","set_parallel","set_rechunk","set_rechunk","set_rechunk","set_rechunk","set_rechunk","set_sorted_flag","set_validity","shift","shift","shift","shift","shift","shift_and_fill","shift_and_fill","shift_and_fill","shrink_dtype","shrink_to_fit","shrink_to_fit","shuffle","simplify_expr","sin","sinh","sink_ipc","sink_parquet","skip_rows","skip_rows","slice","slice","slice","slice","slice","slice","slice","slice","slice_pushdown","slice_typed","slice_typed","slice_typed_unchecked","slice_typed_unchecked","slice_unchecked","slice_unchecked","sliced","sliced_unchecked","sort","sort","sort","sort","sort","sort_by","sort_by_exprs","sort_with","sort_with","sort_with","spearman_rank_corr","sqrt","start_by","starts_with","starts_with","statistics","std","std","std","std_as_series","std_as_series","str","str_concat","str_concat","str_lengths","str_n_chars","str_slice","strategy","streamable","streaming","strftime","strict","strict_cast","string","struct_","sub","sub","subtract","suffix","suffix","suffix","sum","sum","sum","sum","sum","sum","sum_as_series","sum_horizontal","super_type","tail","tail","tail","tail","take","take","take","take_iter","take_iter_unchecked","take_opt_iter","take_opt_iter_unchecked","take_rand","take_unchecked","take_unchecked","tan","tanh","temporal_range_vec","ternary_expr","then","then","tile","time_ranges","timestamp","to_alp","to_alp","to_alp_optimized","to_anyvalue","to_boxed","to_byte_slices","to_dot","to_dot","to_dummies","to_dummies","to_field","to_field","to_lowercase","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_string","to_string","to_string","to_string","to_string","to_supertypes","to_uppercase","tolerance","tolerance_str","top_k","truncate","truncate","truncate_impl","truncate_ms","truncate_ms","truncate_no_offset_ms","truncate_no_offset_ns","truncate_no_offset_us","truncate_ns","truncate_ns","truncate_us","truncate_us","try_apply","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_index_of","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_serialize","tu","type_coercion","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_name","tz","undo_aliases","unique","unique","unique","unique","unique","unique","unique_stable","unique_stable","unique_stable","unique_stable","unix_time","unnest","upper_bound","upsample","upsample_stable","use_earliest","use_statistics","use_statistics","utils","validate","validation","validity","validity","value_counts","value_counts","value_name","value_vars","values","values_iter","var","var","var","var_as_series","var_as_series","variable_name","vec_hash","vec_hash_combine","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","week","week","week","weekday","weekday","weekday","weekday","weeks","weeks","weeks_only","weights","weights","weights","when","when","when","window_size","window_size","window_size","window_size","with","with_batch_size","with_batch_size","with_batch_size","with_cache","with_capacity","with_chunk_size","with_chunk_size","with_column","with_columns","with_columns","with_columns","with_columns","with_columns","with_columns","with_comment_char","with_comment_char","with_compression","with_compression","with_compression","with_compression","with_compression","with_context","with_data_pagesize_limit","with_date_format","with_datetime_format","with_day","with_days","with_delimiter","with_delimiter","with_delimiter","with_dtype_overwrite","with_dtypes","with_dtypes_slice","with_encoding","with_encoding","with_end_of_line_char","with_end_of_line_char","with_extension","with_extension","with_float_precision","with_fractional_seconds","with_hms","with_hms","with_hour","with_hours","with_ignore_errors","with_ignore_errors","with_ignore_errors","with_infer_schema_length","with_infer_schema_length","with_json_format","with_json_format","with_microsecond","with_microseconds","with_milliseconds","with_minute","with_minutes","with_missing_is_null","with_missing_is_null","with_month","with_n_rows","with_n_rows","with_n_rows","with_n_rows","with_n_rows","with_n_rows","with_n_rows","with_n_threads","with_n_threads","with_nanoseconds","with_null_value","with_null_values","with_null_values","with_optimizations","with_path","with_path","with_path","with_path","with_path","with_predicate","with_predicate_pushdown","with_projection","with_projection","with_projection","with_projection","with_projection","with_projection_pushdown","with_quote_char","with_quote_char","with_quoting_char","with_rechunk","with_rechunk","with_rechunk","with_rechunk","with_rechunk","with_row_count","with_row_count","with_row_count","with_row_count","with_row_count","with_row_count","with_row_count","with_row_group_size","with_schema","with_schema","with_schema","with_schema","with_schema","with_schema_modify","with_schema_overwrite","with_schema_overwrite","with_second","with_seconds","with_simplify_expr","with_skip_rows","with_skip_rows","with_skip_rows_after_header","with_skip_rows_after_header","with_slice_pushdown","with_statistics","with_streaming","with_time_format","with_try_parse_dates","with_try_parse_dates","with_type_coercion","with_validity","with_validity","with_weeks","with_year","without_optimizations","xor","year","year","year","year","zip","zip_with","expr","input","input","interpol","propagate_nans","propagate_nans","quantile","drop_nulls","drop_nulls","by","by","data_type","descending","expr","expr","expr","expr","expr","falsy","function","function","function","function","idx","input","input","input","input","left","length","offset","op","options","options","options","options","order_by","output_type","partition_by","predicate","right","strict","truthy","atomic_seed","base","base","ddof","decimals","fixed_seed","max","method","method","min","normalize","periods","reverse","reverse","reverse","reverse","reverse","seed","super_type","groups","rolling","data_type","high","low","aggs","apply","args","by_column","contexts","count","df","err","expr","expr","exprs","file_info","file_info","file_options","function","function","id","input","input","input","input","input","input","input","input","input","input","input","input","input","input_left","input_right","inputs","keys","left_on","len","maintain_order","offset","options","options","options","options","options","output_schema","path","payload","predicate","predicate","predicate","projection","right_on","scan_type","schema","schema","schema","schema","schema","schema","schema","selection","AggList","_agg_helper_idx","_agg_helper_idx_no_null","_agg_helper_slice","_agg_helper_slice_no_null","_rolling_apply_agg_window_no_nulls","_rolling_apply_agg_window_nulls","_slice_from_offsets","_use_rolling_kernels","agg_list","ArrayNameSpace","AsArray","array_max","array_min","array_sum","array_unique","array_unique_stable","as_array","write","Error","FallibleStreamingIterator","FileWriter","Item","Serializer","__clone_box","advance","advance","all","any","borrow","borrow","borrow_mut","borrow_mut","by_ref","clone","clone_into","count","deref","deref","deref_mut","deref_mut","drop","drop","filter","find","fmt","for_each","from","from","fuse","get","get","init","init","into","into","into_inner","into_iter","map","map_err","map_ref","new","new","next","next","nth","position","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","BinaryNameSpace","borrow","borrow_mut","contains_literal","deref","deref_mut","drop","ends_with","from","init","into","starts_with","try_from","try_into","type_id","vzip","CategoricalNameSpace","CategoricalOrdering","Lexical","Physical","DateMethods","DatetimeMethods","DurationMethods","RollingAgg","RollingOptions","RollingOptionsImpl","TimeMethods","Utf8Methods","__clone_box","as_date","as_date_not_exact","as_datetime","as_datetime_not_exact","as_time","borrow","borrow_mut","by","by","center","center","clone","clone_into","closed_window","closed_window","day","day","days","default","deref","deref_mut","drop","fn_params","fn_params","from","hour","hour","hours","init","into","is_leap_year","is_leap_year","iso_year","iso_year","microseconds","milliseconds","min_periods","min_periods","minute","minute","minutes","month","month","nanosecond","nanosecond","nanoseconds","ordinal","ordinal","parse_from_str_slice","parse_from_str_slice","parse_from_str_slice","quarter","quarter","rolling_max","rolling_mean","rolling_median","rolling_min","rolling_quantile","rolling_std","rolling_sum","rolling_var","second","second","seconds","to_owned","try_from","try_into","tu","type_id","tz","unix_time","utf8","vzip","week","week","weekday","weekday","weights","weights","window_size","window_size","year","year","AsUtf8","DateDMY","DateYMD","DatetimeDMY","DatetimeYMD","DatetimeYMDZ","Pattern","Utf8Methods","__clone_box","as_date","as_date_not_exact","as_datetime","as_datetime_not_exact","as_time","as_utf8","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","from","hash","infer","init","into","is_inferable","to_owned","try_from","try_into","type_id","vzip","DatetimeInfer","Error","StrpTimeParser","TryFromWithUnit","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","from","infer_pattern_single","init","into","logical_type","parse","parse_bytes","parse_bytes","parse_bytes","pattern","to_owned","try_from","try_from_with_unit","try_from_with_unit","try_from_with_unit","try_into","type_id","vzip","Aws","Azure","CloudOptions","CloudType","File","Gcp","AnyValue","Array","Array","ArrayChunked","ArrowDataType","ArrowTimeUnit","AsRefDataType","Binary","Binary","Binary","BinaryChunked","BinaryOwned","BinaryType","Boolean","Boolean","Boolean","BooleanChunked","BooleanType","CatIter","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalType","CloudOptions","DataType","Date","Date","Date32","Date64","DateChunked","DateType","Datetime","Datetime","DatetimeChunked","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dictionary","Duration","Duration","Duration","DurationChunked","DurationType","Extension","Field","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","GetAnyValue","Global","GlobalFinished","HashMap","IDX_DTYPE","IdxArr","IdxCa","IdxSize","IdxType","InitHashMaps","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","LargeBinary","LargeList","LargeUtf8","List","List","List","ListChunked","ListType","Local","Local","Logical","LogicalType","Map","Microsecond","Microseconds","Millisecond","Milliseconds","Nanosecond","Nanoseconds","Native","Null","Null","Null","NumericNative","Object","Object","ObjectChunked","ObjectOwned","ObjectType","OwnedObject","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsDataType","PolarsFloatType","PolarsIntegerType","PolarsNumericType","PolarsSingleType","RevMapping","RevMappingBuilder","Second","StrHashLocal","Struct","Struct","Struct","StructChunked","StructOwned","Time","Time","Time32","Time64","TimeChunked","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8Owned","Utf8Type","as_ref_dtype","cast","categorical","dtype","dtype","get_any_value","get_any_value_unchecked","get_dtype","get_unchecked","merge_dtypes","name","new","with_capacity","CatIter","CategoricalChunked","CategoricalChunkedBuilder","Global","GlobalFinished","Local","Local","RevMapping","RevMappingBuilder","StrHashLocal","stringcache","IUseStringCache","enable_string_cache","reset_string_cache","using_string_cache","with_string_cache","replace_time_zone","FromData","FromDataBinary","FromDataUtf8","from_data_default","from_data_unchecked_default","from_data_unchecked_default","DateLikeNameSpace","base_utc_offset","borrow","borrow_mut","cast_time_unit","combine","convert_time_zone","date","datetime","day","deref","deref_mut","drop","dst_offset","from","hour","init","into","is_leap_year","iso_year","microsecond","millisecond","minute","month","nanosecond","ordinal_day","quarter","replace_time_zone","round","second","strftime","time","timestamp","to_string","truncate","try_from","try_into","type_id","vzip","week","weekday","with_time_unit","year","PhysicalAggExpr","evaluate","root_name","AnonymousBuilder","width","write","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","RecordSerializer","Serializer","Skip","SkipWhile","Take","TakeWhile","__clone_box","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance_back","advance_back","advance_back","advance_back","advance_back","advance_back","all","any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","clone","clone_into","convert","count","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","filter","find","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get","get","get","get","get","get","get","get","get","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","map","map_err","map_ref","new","new","next","next","next","next_back","next_back","nth","position","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","group_agg_nan_max_s","group_agg_nan_min_s","nan_max_s","nan_min_s","MutableNullArray","BatchStats","ColumnStats","borrow","borrow","borrow_mut","borrow_mut","deref","deref","deref_mut","deref_mut","drop","drop","dtype","fmt","from","from","get_stats","init","init","into","into","null_count","schema","to_max","to_min","to_min_max","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","BatchedCsvReaderMmap","BatchedCsvReaderRead","OwnedBatchedCsvReader","OwnedBatchedCsvReaderMmap","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","from","from","from","from","init","init","init","init","into","into","into","into","next_batches","next_batches","next_batches","next_batches","to_batched_owned_mmap","to_batched_owned_read","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","AsSeries","IntoSeriesOps","SeriesOpsTime","TemporalMethods","as_series","day","hour","is_leap_year","iso_year","minute","month","nanosecond","ops_time_dtype","ordinal_day","ordinal_year","quarter","rolling_max","rolling_mean","rolling_median","rolling_min","rolling_quantile","rolling_std","rolling_sum","rolling_var","second","strftime","timestamp","to_ops","to_string","week","weekday","year","SlicedArray","slice_typed","slice_typed_unchecked","_broadcast_descending","arg_sort_multiple","arg_sort_no_nulls","sort_slice_ascending","sort_slice_descending","_get_rows_encoded","_get_rows_encoded_ca","_get_rows_encoded_compat_array","StringNameSpace","borrow","borrow_mut","concat","contains","contains_literal","count_match","deref","deref_mut","drop","ends_with","explode","extract","extract_all","from","from_radix","init","into","lengths","lstrip","n_chars","replace","replace_all","replace_n","rstrip","split","split_exact","split_exact_inclusive","split_inclusive","splitn","starts_with","str_slice","strip","strptime","to_date","to_datetime","to_decimal","to_lowercase","to_time","to_uppercase","try_from","try_into","type_id","vzip","get_reader_bytes","infer_file_schema","infer_file_schema_inner","is_compressed","Ascending","ChunkCompare","Descending","IntoSeries","IsSorted","Item","Not","Series","SeriesIter","SeriesPhysIter","SeriesTrait","__clone_box","__clone_box","_sum_as_series","abs","add","add","add","add","append","arg_max","arg_min","arg_sort","arg_unique","arithmetic","array","array_ref","as_any","as_any_mut","as_list","as_mut","as_ref","as_ref","as_series","as_series","as_single_ptr","as_single_ptr","binary","bitand","bitor","bitxor","bool","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","cast","cast","cast_unchecked","categorical","ceil","checked_div","checked_div","checked_div_num","chunk_lengths","chunks","chunks_mut","clear","clip","clip_max","clip_min","clone","clone","clone_inner","clone_into","clone_into","cummax","cummin","cumprod","cumsum","date","datetime","decimal","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","div","div","div","div","drop","drop","drop","drop_nulls","dtype","duration","eq","eq","equal","equal","equal","equal","equal_missing","equal_missing","equal_missing","equal_missing","equivalent","equivalent","equivalent","equivalent","estimated_size","explode","extend","extend_constant","f32","f64","field","fill_null","filter","filter_threaded","floor","fmt","fmt","fmt","fmt_list","from","from","from","from","from","from","from","from","from_any_values","from_any_values_and_dtype","from_chunks_and_dtype_unchecked","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","full_null","get","get_data_ptr","get_object","get_unchecked","gt","gt","gt","gt","gt_eq","gt_eq","gt_eq","gt_eq","has_validity","head","i16","i32","i64","i8","idx","implementations","implode","init","init","init","into","into","into","into_frame","into_iter","into_series","into_series","is_empty","is_finite","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_series","is_series","is_sorted_flag","iter","len","limit","list","lit","lt","lt","lt","lt","lt_eq","lt_eq","lt_eq","lt_eq","max","max_as_series","mean","mean_as_series","median","median_as_series","min","min_as_series","mode","mul","mul","mul","mul","n_chunks","n_unique","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_from_index","new_null","next","not_equal","not_equal","not_equal","not_equal","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","null_count","ops","ops_time_dtype","peak_max","peak_min","phys_iter","product","quantile_as_series","rank","rechunk","rem","rem","rem","rename","rename","repeat_by","reshape","reverse","rolling_apply","rolling_max","rolling_mean","rolling_median","rolling_min","rolling_quantile","rolling_std","rolling_sum","rolling_var","round","sample_frac","sample_n","series_equal","series_equal_missing","set_sorted_flag","shift","shrink_to_fit","shrink_to_fit","shuffle","size_hint","slice","sort","sort_with","std_as_series","str_concat","str_value","strict_cast","struct_","sub","sub","sub","sub","sum","sum_as_series","tail","take","take_every","take_iter","take_iter_unchecked","take_opt_iter","take_opt_iter_unchecked","take_threaded","take_unchecked","take_unchecked_from_slice","take_unchecked_threaded","tile","time","to_arrow","to_dummies","to_ops","to_owned","to_owned","to_physical_repr","to_string","try_add","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","u16","u32","u64","u8","unique","unique_stable","unpack","unstable","utf8","var_as_series","vzip","vzip","vzip","zip_with","LhsNumOps","NumOpsDispatch","NumOpsDispatchInner","Output","_struct_arithmetic","add","add_to","add_to","checked","div","divide","divide","mul","multiply","multiply","rem","remainder","remainder","sub","subtract","subtract","NumOpsDispatchChecked","NumOpsDispatchCheckedInner","checked_div","checked_div","checked_div_num","checked_div_num","Drop","Ignore","NullBehavior","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","diff","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","from","hash","init","into","to_owned","try_from","try_into","type_id","vzip","ArrayBox","UnstableSeries","__clone_box","as_mut","as_ref","borrow","borrow_mut","clone","clone_into","deep_clone","deref","deref_mut","drop","from","init","into","new","swap","to_owned","try_from","try_into","type_id","vzip","with_array"],"q":[[0,"polars"],[19,"polars::chunked_array"],[762,"polars::chunked_array::arithmetic"],[770,"polars::chunked_array::builder"],[880,"polars::chunked_array::builder::list"],[896,"polars::chunked_array::iterator"],[1022,"polars::chunked_array::iterator::par"],[1024,"polars::chunked_array::object"],[2580,"polars::chunked_array::object::GroupsProxy"],[2582,"polars::chunked_array::object::builder"],[2605,"polars::chunked_array::object::categorical"],[2615,"polars::chunked_array::object::cloud"],[2654,"polars::chunked_array::object::datatypes"],[2850,"polars::chunked_array::object::default_arrays"],[2856,"polars::chunked_array::object::fixed_size_list"],[2876,"polars::chunked_array::object::list"],[2900,"polars::chunked_array::object::null"],[2924,"polars::chunked_array::object::registry"],[2934,"polars::chunked_array::object::slice"],[2937,"polars::chunked_array::object::stringcache"],[2942,"polars::chunked_array::object::utf8"],[2946,"polars::chunked_array::ops"],[3112,"polars::chunked_array::ops::sort"],[3117,"polars::chunked_array::ops::sort::arg_sort_multiple"],[3120,"polars::chunked_array::temporal"],[3126,"polars::chunked_array::temporal::conversion"],[3129,"polars::chunked_array::upstream_traits"],[3130,"polars::datatypes"],[4256,"polars::datatypes::categorical"],[4267,"polars::datatypes::categorical::stringcache"],[4287,"polars::doc"],[4288,"polars::doc::changelog"],[4296,"polars::docs"],[4299,"polars::error"],[4394,"polars::export"],[4395,"polars::export::ahash"],[4502,"polars::export::ahash::random_state"],[4506,"polars::export::arrow"],[4572,"polars::export::arrow::array"],[6077,"polars::export::arrow::array::growable"],[6313,"polars::export::arrow::array::ord"],[6318,"polars::export::arrow::bitmap"],[6477,"polars::export::arrow::bitmap::utils"],[6666,"polars::export::arrow::buffer"],[6726,"polars::export::arrow::chunk"],[6757,"polars::export::arrow::compute"],[6772,"polars::export::arrow::compute::aggregate"],[6800,"polars::export::arrow::compute::arithmetics"],[6857,"polars::export::arrow::compute::arithmetics::basic"],[6901,"polars::export::arrow::compute::arithmetics::decimal"],[6919,"polars::export::arrow::compute::arithmetics::time"],[6927,"polars::export::arrow::compute::arity"],[6935,"polars::export::arrow::compute::arity_assign"],[6937,"polars::export::arrow::compute::boolean"],[6946,"polars::export::arrow::compute::boolean_kleene"],[6952,"polars::export::arrow::compute::cast"],[7030,"polars::export::arrow::compute::comparison"],[7077,"polars::export::arrow::compute::comparison::binary"],[7093,"polars::export::arrow::compute::comparison::boolean"],[7110,"polars::export::arrow::compute::comparison::primitive"],[7127,"polars::export::arrow::compute::comparison::utf8"],[7143,"polars::export::arrow::compute::concatenate"],[7144,"polars::export::arrow::compute::filter"],[7148,"polars::export::arrow::compute::if_then_else"],[7149,"polars::export::arrow::compute::like"],[7157,"polars::export::arrow::compute::substring"],[7159,"polars::export::arrow::compute::take"],[7161,"polars::export::arrow::compute::temporal"],[7179,"polars::export::arrow::datatypes"],[7398,"polars::export::arrow::error"],[7407,"polars::export::arrow::ffi"],[7477,"polars::export::arrow::ffi::mmap"],[7479,"polars::export::arrow::io"],[7483,"polars::export::arrow::io::ipc"],[7529,"polars::export::arrow::io::ipc::read"],[7684,"polars::export::arrow::io::ipc::read::OutOfSpecKind"],[7694,"polars::export::arrow::io::ipc::write"],[7816,"polars::export::arrow::io::ipc::write::file_async"],[7834,"polars::export::arrow::io::ipc::write::stream_async"],[7854,"polars::export::arrow::io::json"],[7855,"polars::export::arrow::io::json::write"],[7898,"polars::export::arrow::io::ndjson"],[7899,"polars::export::arrow::io::ndjson::write"],[7925,"polars::export::arrow::io::parquet"],[7927,"polars::export::arrow::io::parquet::read"],[8480,"polars::export::arrow::io::parquet::read::ParquetType"],[8484,"polars::export::arrow::io::parquet::read::PrimitiveLogicalType"],[8488,"polars::export::arrow::io::parquet::read::fallible_streaming_iterator"],[8528,"polars::export::arrow::io::parquet::read::indexes"],[8623,"polars::export::arrow::io::parquet::read::schema"],[8641,"polars::export::arrow::io::parquet::read::schema::ParquetType"],[8645,"polars::export::arrow::io::parquet::read::statistics"],[8666,"polars::export::arrow::io::parquet::write"],[9355,"polars::export::arrow::io::parquet::write::ParquetType"],[9359,"polars::export::arrow::mmap"],[9361,"polars::export::arrow::offset"],[9455,"polars::export::arrow::scalar"],[9779,"polars::export::arrow::temporal_conversions"],[9810,"polars::export::arrow::trusted_len"],[9811,"polars::export::arrow::types"],[10040,"polars::export::arrow::types::simd"],[10512,"polars::export::arrow::util"],[10515,"polars::export::chrono"],[11693,"polars::export::chrono::format"],[12038,"polars::export::chrono::format::strftime"],[12039,"polars::export::chrono::naive"],[12049,"polars::export::chrono::offset"],[12082,"polars::export::chrono::prelude"],[12176,"polars::export::num"],[12454,"polars::export::num::bounds"],[12461,"polars::export::num::cast"],[12496,"polars::export::num::float"],[12607,"polars::export::num::identities"],[12617,"polars::export::num::int"],[12637,"polars::export::num::ops"],[12645,"polars::export::num::ops::bytes"],[12656,"polars::export::num::ops::checked"],[12672,"polars::export::num::ops::euclid"],[12678,"polars::export::num::ops::inv"],[12681,"polars::export::num::ops::mul_add"],[12686,"polars::export::num::ops::overflowing"],[12692,"polars::export::num::ops::saturating"],[12701,"polars::export::num::ops::wrapping"],[12713,"polars::export::num::pow"],[12718,"polars::export::num::real"],[12766,"polars::export::num::sign"],[12776,"polars::export::once_cell"],[12779,"polars::export::once_cell::race"],[12860,"polars::export::once_cell::sync"],[12922,"polars::export::once_cell::unsync"],[12982,"polars::export::rayon"],[13192,"polars::export::rayon::array"],[13216,"polars::export::rayon::collections"],[13223,"polars::export::rayon::collections::binary_heap"],[13292,"polars::export::rayon::collections::btree_map"],[13347,"polars::export::rayon::collections::btree_set"],[13385,"polars::export::rayon::collections::hash_map"],[13457,"polars::export::rayon::collections::hash_set"],[13512,"polars::export::rayon::collections::linked_list"],[13571,"polars::export::rayon::collections::vec_deque"],[13660,"polars::export::rayon::iter"],[15033,"polars::export::rayon::iter::plumbing"],[15069,"polars::export::rayon::option"],[15137,"polars::export::rayon::prelude"],[15289,"polars::export::rayon::range"],[15318,"polars::export::rayon::range_inclusive"],[15347,"polars::export::rayon::result"],[15415,"polars::export::rayon::slice"],[15725,"polars::export::rayon::str"],[15937,"polars::export::rayon::string"],[15954,"polars::export::rayon::vec"],[15999,"polars::export::regex"],[16455,"polars::export::regex::bytes"],[16880,"polars::frame"],[17144,"polars::frame::explode"],[17169,"polars::frame::groupby"],[17405,"polars::frame::groupby::GroupsProxy"],[17407,"polars::frame::groupby::aggregations"],[17417,"polars::frame::groupby::expr"],[17420,"polars::frame::hash_join"],[17525,"polars::frame::row"],[17631,"polars::functions"],[17638,"polars::prelude"],[21089,"polars::prelude::AggExpr"],[21096,"polars::prelude::BooleanFunction"],[21098,"polars::prelude::Expr"],[21132,"polars::prelude::FunctionExpr"],[21151,"polars::prelude::GroupsProxy"],[21153,"polars::prelude::LiteralValue"],[21156,"polars::prelude::LogicalPlan"],[21216,"polars::prelude::aggregations"],[21226,"polars::prelude::array"],[21234,"polars::prelude::arrow_ndjson"],[21235,"polars::prelude::arrow_ndjson::write"],[21297,"polars::prelude::binary"],[21313,"polars::prelude::cat"],[21317,"polars::prelude::chunkedarray"],[21409,"polars::prelude::chunkedarray::utf8"],[21448,"polars::prelude::chunkedarray::utf8::infer"],[21478,"polars::prelude::cloud"],[21484,"polars::prelude::datatypes"],[21681,"polars::prelude::datatypes::categorical"],[21692,"polars::prelude::datatypes::categorical::stringcache"],[21697,"polars::prelude::datetime"],[21698,"polars::prelude::default_arrays"],[21704,"polars::prelude::dt"],[21747,"polars::prelude::expr"],[21750,"polars::prelude::fixed_size_list"],[21752,"polars::prelude::json"],[21753,"polars::prelude::json::write"],[22004,"polars::prelude::nan_propagating_aggregate"],[22008,"polars::prelude::null"],[22009,"polars::prelude::predicates"],[22043,"polars::prelude::read_impl"],[22103,"polars::prelude::series"],[22135,"polars::prelude::slice"],[22138,"polars::prelude::sort"],[22143,"polars::prelude::sort::arg_sort_multiple"],[22146,"polars::prelude::string"],[22190,"polars::prelude::utils"],[22194,"polars::series"],[22606,"polars::series::arithmetic"],[22627,"polars::series::arithmetic::checked"],[22633,"polars::series::ops"],[22661,"polars::series::unstable"]],"d":["Polars crate version","","The typed heart of every Series column.","Data types supported by Polars.","","Other documentation","","Use a global string cache for the Categorical Types.","","","DataFrame module.","Functions","","","","Type agnostic columnar data structure.","Testing utilities.","","Check if string cache is set.","","ChunkedArray","","","Convert all values to their absolute/positive value.","","","","","","","","","","","","","","","","","","","","","Check if all values are true","","This is an iterator over a ListChunked that save …","This is an iterator over a ListChunked that save …","","","Check if any value is true","","Append in place. This is done by adding the chunks of other…","","Apply a closure F elementwise.","","","","","Apply a closure F elementwise.","","","","","","","Cast a numeric array to another numeric data type and …","","","","","","","","","","","","","","","","","","Ignore the list indices and apply func to the inner type …","Ignore the list indices and apply func to the inner type …","","","","","","","","","","Apply a closure elementwise. The closure gets the index of …","","","","","","","","Apply a closure elementwise. The closure gets the index of …","","","","","","","Panics","Panics","","Panics","Panics","Panics","","","","","","","","Implementations of arithmetic operations on ChunkedArray’…","","","","","","","","","","","","","","","","","","","","","","","","","","","Implementations of the ChunkCast Trait.","","","","","","","Cast a numeric array to another numeric data type and …","","","","","","","","","Unique id representing the number of chunks","A reference to the chunks","A mutable reference to the chunks","","","","Contiguous slice","","","","","Get slices of the underlying arrow data. NOTE: null values …","","","","","","","","","","","Get data type of ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","Extend the memory backed by this array with the values …","","","","","","","","","","","Get the index of the first non null value in this …","","","","","","","","","Returns the argument unchanged.","","","","","","","","Create a new ChunkedArray from existing chunks.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","","","","","","","","","","","","","","","","","","","Create a new ChunkedArray by taking ownership of the Vec. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the inner values as Series, ignoring the list offsets.","Get the inner values as Series","Get a hold to an object that can be formatted or …","Get a hold to an object that can be formatted or …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return if any the chunks in this [ChunkedArray] have a …","Get the head of the ChunkedArray","","","Get the inner data type of the list.","Get the inner data type of the fixed size list.","Calls U::from(self).","","","","","","","","","","","","","","","","","Check if ChunkedArray is empty.","","","","","","","","","Get a mask of the valid values.","Get a mask of the null values.","Returns true if contains a single chunk and has no null …","","Get the buffer of bits representing null values","","","Get the index of the last non null value in this …","Get the length of the ChunkedArray","Apply lhs / self","Apply lhs % self","Apply lhs - self","Take a view of top n elements","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a temporary ChunkedArray from a slice.","Create a temporary ChunkedArray from a slice.","","","","","","","","","","","","","","Name of the ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Nullify values in slice with an existing null bitmap","","Specialization that prevents an allocation prefer this …","Convert missing values to NaN values.","","","","","","","","","","","","","","","","","","","","","","Count the null values.","","Traits for miscellaneous operations on ChunkedArray","","","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","","","","","","","","Create ChunkedArray with samples from a Bernoulli …","Create ChunkedArray with samples from a Normal …","Create ChunkedArray with samples from a Standard Normal …","Create ChunkedArray with samples from a Uniform …","","Get a reference to the field.","","","","","","Rename this ChunkedArray.","","","","","","","","","","","","Apply a rolling custom function. This is pretty slow …","Apply a rolling custom function. This is pretty slow …","Sample a fraction between 0.0-1.0 of this ChunkedArray.","Sample n datapoints from this ChunkedArray.","","","","","","","","","","","","","","","","","","Set the ‘sorted’ bit meta info.","","","","","","","","","","","","","","","Shrink the capacity of this array to fit its length.","Slice the array. The chunks are reallocated the underlying …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the tail of the ChunkedArray","","","","","","","","","","","","","","","","","","","","","Traits and utilities for temporal data.","","Convert an Utf8Chunked to a Series of DataType::Decimal. …","If data is aligned in a single chunk and has no Null …","If all nested Series have the same length, a 2 dimensional …","","","","","","","","","","Safety","Convert to a Vec of Option<T::Native>.","Convert to a Vec but don’t return Option<T::Native> if …","","","","","","","","","","","","","","","","","","","Series to ChunkedArray<T>","","Implementations of upstream traits for ChunkedArray<T>","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The no null iterator for a BooleanArray","","","A PolarsIterator is an iterator over a ChunkedArray which …","Wrapper struct to convert an iterator of type T into one …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","create a new iterator","create a new iterator","create a new iterator","create a new iterator","create a new iterator","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Keep any of the unique rows This allows more optimizations","","A thread-safe reference-counting pointer. ‘Arc’ stands …","","","A nested list with a fixed size in each row","","","The set of supported logical types in this crate.","","Represents Arrow’s metadata of a “column”.","","An ordered sequence of Fields with associated Metadata.","The time units defined in Arrow.","","","","","","previous value in array","selects the last row in the right DataFrame whose ‘on’ …","","","Opaque binary data of variable length whose offsets are …","","","","","","","","","A binary true or false.","","true and false.","","","","","","","","","","","Aggregation operations","Aggregations that return Series of unit length. Those can …","","Fastest way to do elementwise operations on a …","Apply kernels on the arrow array chunks in a ChunkedArray.","","Cast ChunkedArray<T> to ChunkedArray<N>","Compare Series and ChunkedArray’s and get a boolean mask …","","Create a new ChunkedArray filled with values at that index.","Explode/ flatten a List or Utf8 Series","Replace None values with a value","Filter values by a boolean mask.","Fill a ChunkedArray with one value.","","Find local minima/ maxima","Quantile and median aggregation","Reverse a ChunkedArray<T>","This differs from ChunkWindowCustom and ChunkWindow by not …","Create a ChunkedArray with new values by index or by …","","Shift the values of a ChunkedArray by a number of periods.","Sort operations on ChunkedArray.","Fast access by index.","Get unique values in a ChunkedArray","Variance and standard deviation aggregation.","Combine two ChunkedArray based on some predicate.","ChunkedArray","","","","","","A contiguous growable collection of Series that have the …","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","","A dictionary encoded array (key_type, value_type), where …","Dummy type, we need to instantiate all generic types, so …","","","","Measure of elapsed time. This elapsed time is a physical …","","","","Extension type.","Characterizes the name and the DataType of a column.","","","Keep the first unique row.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","next value in array","selects the first row in the right DataFrame whose …","","","","Ensure that the same hash is used as with VecHash.","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Indexes of the groups, the first index is stored …","","Every group is indicated by an array where the","","","","","","","The type used by polars to index data.","","This trait exists to be unify the API of polars Schema and …","","","","","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Used to create the tuples for a groupby operation.","Used to convert a ChunkedArray, &dyn SeriesTrait and Series","Create a type that implements a faster TakeRandom.","","","","Mask the first unique values as true","Safety","Check if element is member of list array","Mask the last unique values as true","","","","","","","","","","Opaque binary data of variable length whose offsets are …","","A list of some logical data type whose offsets are …","","","A variable-length UTF-8 encoded string whose offsets are …","Keep the last unique row.","","","","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","","","","","","","","","Utf8Array: caches the string values","Utf8Array: caches the string values","Maps a logical type to a a chunked array implementation of …","","","A nested type that is represented as","","maximum value in array","replace with the maximum value of that data type","mean value of array","Arguments for [DataFrame::melt] function","Time in microseconds.","","","Time in milliseconds.","","","minimal value in array","replace with the minimal value of that data type","","","","","","Time in nanoseconds.","","","","selects the right in the right DataFrame whose ‘on’ …","","","Keep None of the unique rows.","","","Null type","","","","","","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","","replace with the value one","","","","","","","","This hashmap has the uses an IdHasher","","","","","","","","A PolarsIterator is an iterator over a ChunkedArray which …","","Values need to implement this so that they can be stored …","Trimmed down object safe polars object","","Any type that is not nested","","","","","","","Repeat the values n times.","","","","","","A map from field/column name (String) to the type of that …","","","","Time in seconds.","Series","","","","","","Slice is always sorted in ascending order.","Utility trait to slice concrete arrow arrays whilst …","","","Concat the values into a string array.","","","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","","One of the three arguments allowed in unchecked_take","","","","","Random access","","","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","","An UTF8 encoded string type.","","","","","","","replace with the value zero","","","","","","","","","","","","","","","","","","","","","","Get the sum of the Series as a new Series of length 1.","","","","Appends from an iterator over values","Appends from an iterator over values","","","Appends a null slot into the builder","","","","","Appends a null slot into the builder","Appends a null slot into the builder","Appends a null slot into the builder","","","","","","","","","","","","","","","Appends a value of type T into the builder","Appends a value of type T into the builder","Appends a value of type T into the builder","Appends a value of type T into the builder","","","Apply a closure elementwise. This is fastest when the null …","Apply a closure elementwise and cast to a Numeric …","Apply kernel and return result as a new ChunkedArray.","Apply a kernel that outputs an array of different type.","Apply a closure elementwise including null values.","Apply a closure elementwise and write results to a mutable …","Apply a closure elementwise. The closure gets the index of …","Apply a closure elementwise. The closure gets the index of …","Retrieve the indexes needed to sort this array.","Retrieve the indexes needed for a sort.","Retrieve the indexes need to sort this and the other …","Get first index of the unique values in a ChunkedArray. …","Get first indexes of unique values.","","Get a hold to self as Any trait reference. Only …","","Get a hold to self as Any trait reference. Only …","","","Provides a raw pointer to the data.","","","","Rechunk and return a pointer to the start of the Series. …","","Converts to Arc<[T]>.","Converts to Arc<T>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Apply a closure on optional values and cast to Numeric …","","","","","Cast a [ChunkedArray] to [DataType]","","","Does not check if the cast is a valid one and may …","","","Set the labels at the center of the window.","","","","","Checked integer division. Computes self / rhs, returning …","","","Get the lengths of the underlying chunks","Underlying chunks.","","","","Makes a clone of the Arc pointer.","","","","","","","","","","","","","","","","","Clone inner ChunkedArray and wrap in a new Arc","","","","","","","","","","","","","","","","","","","","","","Comparison for two Arcs.","","Whether the schema contains a field named name","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","Returns the Field’s DataType.","Its logical DataType","Data types supported by Polars.","","","","","Decrements the strong reference count on the Arc<T> …","","Creates a new Arc<T>, with the Default value for T.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Attempt to downcast the Arc<dyn Any + Send + Sync> to a …","Downcasts the Arc<dyn Any + Send + Sync> to a concrete …","Creates a new Weak pointer to this allocation.","","","","","","","","","","","","","","","","","","","","","","","","","","Drops the Arc.","","","","","","","","","","","","","","","","","","Drop all null values and return a new Series.","Get data type of ChunkedArray.","Get datatype of series.","","","","","","","Equality for two Arcs.","","","","","","","","Check for equality.","Check for equality where None == None.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get field (used in schema)","The fields composing this schema.","Replace None values with a give value T.","Filter values in the ChunkedArray with a boolean mask.","Filter by boolean mask. This operation clones data.","Returns a new Schema with a subset of all fields whose …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Converts a T into an Arc<T>","Converts a &CStr into a Arc<CStr>, by copying the contents …","","Copies the string into a newly allocated Arc<OsStr>.","Allocate a reference-counted slice and move v’s items …","Converts a Path into an Arc by copying the Path data into …","Converts an OsString into an Arc<OsStr> by moving the …","Converts an atomically reference-counted string slice into …","Converts a PathBuf into an Arc<Path> by moving the PathBuf …","Converts a CString into an Arc<CStr> by moving the CString …","Move a boxed object to a new, reference-counted allocation.","Create an atomically reference-counted pointer from a …","Allocate a reference-counted str and copy v into it.","Allocate a reference-counted slice and fill it by cloning v…","Allocate a reference-counted str and copy v into it.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Safety","Safety","Takes each element in the Iterator and collects it into an …","","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a new ChunkedArray from an iterator.","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a new ChunkedArray from an iterator.","Constructs an Arc<T> from a raw pointer.","","","Initialize by name and values.","Create a ChunkedArray with a single value.","","‘Greater than or equal to’ comparison for two Arcs.","","Get a nullable value by index.","Get a nullable value by index.","Get a single value by index. Don’t use this operation …","","","","","","","","","","","","","","","","Get a reference to the dtype of the field named name, or …","Get a single value. Beware this is slow.","Gets AnyValue from LogicalType","Get a single value. Beware this is slow. If you need to …","Safety","Get references to the name and dtype of the field at index","Get mutable references to the name and dtype of the field …","","Look up the name in the schema and return an owned Field …","Return all data about the field named name: its index in …","","Returns a mutable reference into the given Arc, if there …","Returns a mutable reference into the given Arc, without …","Get a vector of all column names.","","","Get the value at this index as a downcastable Any trait …","Safety","Safety","","","","","","","","","","","","","","","","Get a value by index and ignore the null bit.","Get a value by index and ignore the null bit.","Get a single value by index. Don’t use this operation …","Useful for a Utf8 or a List to get underlying value size. …","Create the tuples need for a groupby operation. * The …","Greater than comparison.","Greater-than comparison for two Arcs.","Greater than or equal comparison.","Return if any the chunks in this [ChunkedArray] have a …","","","","","","","","Increments the strong reference count on the Arc<T> …","Get the index of a column by name.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Insert a field with name and dtype at the given index into …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns the inner value, if the Arc has exactly one strong …","","","Consumes the Arc, returning the wrapped pointer.","","","","Check if Series is empty.","","","","Check if elements of this array are in the right Series, …","Check if elements of this Series are in the right Series, …","","","Get a mask of the non-null values.","Get a mask of the null values.","Check validity","","Its nullability","","Check if Series is sorted.","","Check validity","","Iterates over the (&name, &dtype) pairs in this schema","Iterates over references to the dtypes in this schema","Iterates the Fields in this schema, constructing them anew …","Iterates over references to the names in this schema","‘Less than or equal to’ comparison for two Arcs.","","Get length of series.","","The number of fields in the schema","Take num_elements from the top as a zero copy view.","","Less than comparison.","Less-than comparison for two Arcs.","Less than or equal comparison","","Makes a mutable reference into the given Arc.","Returns the maximum value in the array, according to the …","Get the max of the ChunkedArray as a new Series of length …","Get the max of the Series as a new Series of length 1.","Returns the mean value in the array. Returns None if the …","Returns the mean value in the array Returns an option …","Returns the mean value in the array. Returns None if the …","Returns the median value in the array Returns an option …","Get the median of the ChunkedArray as a new Series of …","Get the median of the Series as a new Series of length 1.","Merge other into self","","Additional custom (opaque) metadata.","Optional metadata.","","","Get the min of the ChunkedArray as a new Series of length …","Get the min of the Series as a new Series of length 1.","Amount of elements in the window that should be filled …","The most occurring value(s). Can return multiple Values","Compute the most occurring element in the array.","","","","","Number of chunks in this Series","Number of unique values in the ChunkedArray","Get unique values in the Series.","Name of series.","","Its name","Inequality for two Arcs.","Translate the negative index to an offset.","","Initialize by name and values.","Create a new UtfChunkedBuilder","","","","","Constructs a new Arc<T>.","","","Create a new UtfChunkedBuilder","Create a new, empty schema","Creates a new Field.","Constructs a new Arc<T> while giving you a Weak<T> to the …","Create a new ChunkedArray filled with values at that index.","Create a new Series filled with values from the given …","Create a new schema from this one, inserting a field with …","Constructs a new Arc with uninitialized contents.","Constructs a new atomically reference-counted slice with …","Constructs a new Arc with uninitialized contents, with the …","Constructs a new atomically reference-counted slice with …","Check for inequality.","Check for inequality where None == None.","","Count the null values.","","","","Partial comparison for two Arcs.","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Get a boolean mask of the local minimum peaks.","Constructs a new Pin<Arc<T>>. If T does not implement Unpin…","","","","","","Get the product of the ChunkedArray as a new Series of …","","","Returns true if the two Arcs point to the same allocation …","Aggregate a given quantile of the ChunkedArray. Returns …","Get the quantile of the ChunkedArray as a new Series of …","Get the quantile of the ChunkedArray as a new Series of …","Aggregate all chunks to a contiguous array of memory.","This is a heap allocated utility that can be used to …","","","Swap-remove a field by name and, if the field existed, …","Rename the Series.","Rename field old to new, and return the (owned) old name","Repeat the values n times, where n is determined by the …","","Return a reversed version of this array.","return a Series in reversed order","","","Apply a custom function over a rolling/ moving window of …","Set the values where the mask evaluates to true to some …","Set the values at indexes idx to some optional value …","Set the values at indexes idx by applying a closure to …","Safety","Change the field named name to the given dtype and return …","Change the field at the given index to the given dtype and …","","Shift the values by a given period and fill the parts that …","Shift the values by a given period and fill the parts that …","Remove a field by name, preserving order, and, if the …","Remove a field by name, preserving order, and, if the …","","Shrink the capacity of this array to fit its length.","","","","Get a zero copy view of the data.","","","Slices this Array.","","Slices the Array.","","","Returned a sorted ChunkedArray.","","","","","","","","Compute the standard deviation of this ChunkedArray/Series.","Get the standard deviation of the ChunkedArray as a new …","Get the standard deviation of the Series as a new Series …","Concat the values into a string array.","Concat the values into a string array.","","Whether the melt may be done in the streaming engine This …","","Gets the number of strong (Arc) pointers to this …","","","","Aggregate the sum of the ChunkedArray. Returns None if not …","Get the sum of the ChunkedArray as a new Series of length …","Take values from ChunkedArray by index. Note that the …","Take by index. This operation is clone.","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Create a type that implements TakeRandom.","Take values from ChunkedArray by index.","Take by index if ChunkedArray contains a single chunk.","","Convert self to ArrowSchema by cloning the fields","","","","","","","","","","","","","","","","","","","","","","","","","Take another Schema and try to find the supertypes between …","A tolerance in the same unit as the asof column","An timedelta given as","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a reference to the dtype of the field named name, or …","","Look up the name in the schema and return an owned Field …","Return all data about the field named name: its index in …","Get a mutable reference to the dtype of the field named …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Constructs a new Arc<T>, returning an error if allocation …","Constructs a new Arc with uninitialized contents, …","Constructs a new Arc with uninitialized contents, with the …","Constructs a new Pin<Arc<T>>, return an error if …","Returns the inner value, if the Arc has exactly one strong …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This should be used as type information. Consider this a …","Get unique values of a ChunkedArray","Get unique values in the Series.","","If we have the only reference to T then unwrap it. …","","","","Get a value at a certain index location","","Get a value at a certain index location","","Get a reference to the underlying data","Compute the variance of this ChunkedArray/Series.","Get the variance of the ChunkedArray as a new Series of …","Get the variance of the Series as a new Series of length 1.","","Compute the hash for all values in the array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Gets the number of Weak pointers to this allocation.","An optional slice with the same length as the window that …","The length of the window.","","Create a new, empty schema with capacity","Insert a new column in the Schema","Creates a new Field with metadata.","Attaches a Metadata to Schema","","Create a new ChunkedArray with values from self where the …","","","","","Appends a null slot into the builder","","Appends a value of type T into the builder","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Utf8Array: caches the string values","Utf8Array: caches the string values","","","","","","Options to connect to various cloud providers.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Parse a configuration from a Hashmap. This is the …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","A nested list with a fixed size in each row","","The set of supported logical types in this crate.","The time units defined in Arrow.","","","","Opaque binary data of variable length whose offsets are …","","","","A binary true or false.","","true and false.","","","","","","","","","","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","A dictionary encoded array (key_type, value_type), where …","","","Measure of elapsed time. This elapsed time is a physical …","","","Extension type.","Characterizes the name and the DataType of a column.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","","","","","The type used by polars to index data.","","","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Opaque binary data of variable length whose offsets are …","A list of some logical data type whose offsets are …","A variable-length UTF-8 encoded string whose offsets are …","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","Utf8Array: caches the string values","Utf8Array: caches the string values","Maps a logical type to a a chunked array implementation of …","","A nested type that is represented as","Time in microseconds.","","Time in milliseconds.","","Time in nanoseconds.","","","","","Null type","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","","","This hashmap has the uses an IdHasher","","","","","","","Any type that is not nested","","","Time in seconds.","","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","An UTF8 encoded string type.","","","","Get data type of ChunkedArray.","","Gets AnyValue from LogicalType","Safety","","Safety","","","","","","","","","Safety","Safety","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","Cast null arrays to inner type and ensure that all offsets …","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","This trait can be registered, after which that global …","","","Append a null value.","Append a T of ObjectChunked<T> made generic via the Any …","","","","","Take the current state and materialize as a Series the …","Utility trait to slice concrete arrow arrays whilst …","Slices this Array.","Slices the Array.","RAII for the string cache If an operation creates …","Use a global string cache for the Categorical Types.","Reset the global string cache used for the Categorical …","Check if string cache is set.","","","","","","","previous value in array","","","","","Aggregation operations","","Fastest way to do elementwise operations on a …","Apply kernels on the arrow array chunks in a ChunkedArray.","","Cast ChunkedArray<T> to ChunkedArray<N>","Compare Series and ChunkedArray’s and get a boolean mask …","","Create a new ChunkedArray filled with values at that index.","Explode/ flatten a List or Utf8 Series","Replace None values with a value","Filter values by a boolean mask.","Fill a ChunkedArray with one value.","","Find local minima/ maxima","Quantile and median aggregation","Reverse a ChunkedArray<T>","This differs from ChunkWindowCustom and ChunkWindow by not …","Create a ChunkedArray with new values by index or by …","","Shift the values of a ChunkedArray by a number of periods.","Sort operations on ChunkedArray.","Fast access by index.","Get unique values in a ChunkedArray","Variance and standard deviation aggregation.","Combine two ChunkedArray based on some predicate.","Dummy type, we need to instantiate all generic types, so …","","","next value in array","Create a type that implements a faster TakeRandom.","Mask the first unique values as true","Check if element is member of list array","Mask the last unique values as true","","","","","","","","","maximum value in array","replace with the maximum value of that data type","mean value of array","minimal value in array","replace with the minimal value of that data type","","","","","","","","replace with the value one","Repeat the values n times.","","","","","","Concat the values into a string array.","One of the three arguments allowed in unchecked_take","","","","","Random access","","","","","","replace with the value zero","Apply a closure elementwise. This is fastest when the null …","Apply a closure elementwise and cast to a Numeric …","Apply kernel and return result as a new ChunkedArray.","Apply a kernel that outputs an array of different type.","Apply a closure elementwise including null values.","Apply a closure elementwise and write results to a mutable …","Apply a closure elementwise. The closure gets the index of …","Apply a closure elementwise. The closure gets the index of …","Retrieve the indexes needed to sort this array.","Retrieve the indexes need to sort this and the other …","Get first index of the unique values in a ChunkedArray. …","","","Apply a closure on optional values and cast to Numeric …","Cast a [ChunkedArray] to [DataType]","Does not check if the cast is a valid one and may …","","","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","Check for equality.","Check for equality where None == None.","","","Replace None values with a give value T.","Filter values in the ChunkedArray with a boolean mask.","","Create a ChunkedArray with a single value.","","Get a nullable value by index.","Get a nullable value by index.","Get a single value. Beware this is slow.","Get a single value. Beware this is slow. If you need to …","Get a value by index and ignore the null bit.","Get a value by index and ignore the null bit.","Greater than comparison.","Greater than or equal comparison.","","Check if elements of this array are in the right Series, …","","Less than comparison.","Less than or equal comparison","","Returns the maximum value in the array, according to the …","Returns the mean value in the array. Returns None if the …","Returns the mean value in the array. Returns None if the …","","The most occurring value(s). Can return multiple Values","","","Number of unique values in the ChunkedArray","Create a new ChunkedArray filled with values at that index.","Check for inequality.","Check for inequality where None == None.","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Aggregate a given quantile of the ChunkedArray. Returns …","Repeat the values n times, where n is determined by the …","Return a reversed version of this array.","","Set the values where the mask evaluates to true to some …","Set the values at indexes idx to some optional value …","Set the values at indexes idx by applying a closure to …","","Shift the values by a given period and fill the parts that …","","Returned a sorted ChunkedArray.","","Compute the standard deviation of this ChunkedArray/Series.","Concat the values into a string array.","Aggregate the sum of the ChunkedArray. Returns None if not …","Take values from ChunkedArray by index. Note that the …","Create a type that implements TakeRandom.","Take values from ChunkedArray by index.","","","Get unique values of a ChunkedArray","Compute the variance of this ChunkedArray/Series.","","Create a new ChunkedArray with values from self where the …","","","","used a lot, ensure there is a single impl","","","","","","","","","","","","","","Local AsRef<T> trait to circumvent the orphan rule.","","","A nested list with a fixed size in each row","","The set of supported logical types in this crate.","The time units defined in Arrow.","","","","Opaque binary data of variable length whose offsets are …","","","","A binary true or false.","","true and false.","","","","","","","","","","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","A dictionary encoded array (key_type, value_type), where …","","","Measure of elapsed time. This elapsed time is a physical …","","","Extension type.","Characterizes the name and the DataType of a column.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","","","","","The type used by polars to index data.","","","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Opaque binary data of variable length whose offsets are …","A list of some logical data type whose offsets are …","A variable-length UTF-8 encoded string whose offsets are …","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","Utf8Array: caches the string values","Utf8Array: caches the string values","Maps a logical type to a a chunked array implementation of …","","A nested type that is represented as","Time in microseconds.","","Time in milliseconds.","","Time in nanoseconds.","","","","","Null type","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","","","This hashmap has the uses an IdHasher","","","","","","","Any type that is not nested","","","Time in seconds.","","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","An UTF8 encoded string type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Retrieve the indexes needed to sort this array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Change the underlying TimeUnit. And update the data …","Change the underlying TimeUnit. And update the data …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the Field datatype.","","Returns a reference to the Field datatype.","Extract the days from a Duration","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Appends all the values in a single lock of the global …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get data type of ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check if this categorical already exists","","Get access to one of this [StructChunked]’s fields","","","str to Categorical","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Create a CategoricalChunked from an array of idx and an …","Construct a new DurationChunked from an iterator over …","Construct a new DurationChunked from an iterator over …","Create a CategoricalChunked from a categorical indices. …","Construct a new DateChunked from an iterator over NaiveDate…","Construct a new DateChunked from an iterator over optional …","Construct a new DatetimeChunked from an iterator over …","","Construct a new TimeChunked from an iterator over NaiveTime…","Construct a new TimeChunked from an iterator over optional …","","","","Categorical to str","","","","","","Gets AnyValue from LogicalType","","Gets AnyValue from LogicalType","","","","","","Safety","","","Get the categories in this RevMapping","","","","","","","","","","","","","","","","","","","","","","","","","","Get a reference to the mapping of categorical types to the …","Get a reference to the &str contained within AnyValue.","Safety","","","","","","","","","Extract hour from underlying NaiveDateTime representation. …","Extract the hours from a Duration","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","Try to coerce to an AnyValue with static lifetime. This …","","","","","","","","Check if this DataType is a logical type","","","Check if this DataType is a numeric type.","Check if datatype is a primitive type. By that we mean that","","","Check if this DataType is a temporal type","","","Create an [Iterator] that iterates over the &str values of …","Get the length of the RevMapping","","","Get a reference to the logical array (the categories).","","","","Extract the microseconds from a Duration","Extract the milliseconds from a Duration","Extract minute from underlying NaiveDateTime …","Extract the seconds from a Duration","","","","","","","","","","","","","","","","","","","","Returns a reference to the Field name.","","Extract second from underlying NaiveDateTime …","Extract the nanoseconds from a Duration","","","","","","","","","","","","Creates a new Field.","","","","","","","Only implemented for the same types and physical types!","","","Get a reference to the Field of array.","","","","","","","","","","","","","","","Check if the categoricals are created under the same …","","Extract second from underlying NaiveDateTime …","Extract the seconds from a Duration","","Sets the Field name.","Change the underlying TimeUnit. This does not modify the …","Change the underlying TimeUnit. This does not modify the …","Change the underlying TimeZone. This does not modify the …","","Returned a sorted ChunkedArray.","","Convert from Date into Utf8 with the given format. See …","Convert from Datetime into Utf8 with the given format. See …","Convert from Time into Utf8 with the given format. See …","","","","","","","","","","","","","","","","Convert to an Arrow data type.","Converts the Field to an arrow::datatypes::Field.","","","Returns &self for all but DataType::Extension. For …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert to the physical data type","the PhysicalType of this DataType.","Convert from Datetime into Utf8 with the given format. See …","Convert from Time into Utf8 with the given format. See …","Convert from Date into Utf8 with the given format. See …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Utf8Array: caches the string values","Utf8Array: caches the string values","","","","","RAII for the string cache If an operation creates …","","","","","","","","Use a global string cache for the Categorical Types.","Returns the argument unchanged.","Hold the StringCache","","Calls U::from(self).","Reset the global string cache used for the Categorical …","","","","Check if string cache is set.","","","","Changelog v0.10 / v0.11","Changelog v0.3","Changelog v0.4","Changelog v0.5","Changelog v0.6","Changelog v0.7","Changelog v0.8","Changelog v0.9","Polars Eager cookbook","Polars Lazy cookbook","Performance","Enum with all errors in this crate.","","","","","","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","","","Wrapper for IO errors","","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Wraps an external error in an Error.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Set the function that will be called by the polars_warn! …","","","","","","","","","","","","","","","","","","","","A HashMap using RandomState to hash the items. (Requires …","A HashSet using RandomState to hash the items. (Requires …","A Hasher for hashing an arbitrary stream of bytes.","Type alias for HashMap<K, V, ahash::RandomState>","A convenience trait that can be used together with the …","Type alias for HashSet<K, ahash::RandomState>","A convenience trait that can be used together with the …","Provides a Hasher factory. This is typically used (e.g. by …","","","","Returns the intersection of self and rhs as a new …","Returns the union of self and rhs as a new AHashSet<T, S>.","Returns the symmetric difference of self and rhs as a new …","","","","","","","Constructs a new AHasher with keys based on this …","","","","","","","Constructs a new AHasher with fixed keys. If std is …","Creates an empty AHashSet<T, S> with the Default value for …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Examples","Returns the argument unchanged.","","Returns the argument unchanged.","This crates a hashset from the provided iterator using …","Create a new RandomState BuildHasher based on the provided …","Calculates the hash of a single value. This provides a …","Calculates the hash of a single value. This provides a …","","","","Calls U::from(self).","","Calls U::from(self).","Calls U::from(self).","","","","","Constructs a new HashMap","Constructs a new HashSet","This crates a hashset using RandomState::new. See the …","Create a new RandomState BuildHasher using random keys.","","Returns the difference of self and rhs as a new …","","","","","","","","","","","","","","","","Constructs a new HashMap with a given initial capacity","Constructs a new HashSet with a given initial capacity","This crates a hashset with the specified capacity using …","","","Build a RandomState from a single key. The provided key …","Allows for explicitly setting the seeds to used. All …","","","","","","","","A supplier of Randomness used for different hashers. See …","Provides a Hasher factory. This is typically used (e.g. by …","","Provides an optional way to manually supply a source of …","A HashMap using RandomState to hash the items. (Requires …","The enum Either with variants Left and Right is a general …","A value of type L.","A value of type R.","","Contains the Array and MutableArray trait objects …","contains Bitmap and MutableBitmap, containers of bool.","","","Contains Buffer, an immutable container for all Arrow …","Contains Chunk, a container of Array where every array has …","","","contains a wide range of compute operations (e.g. …","Contains all metadata, such as PhysicalType, DataType, …","","","","","","","","","","","","Defines Error, representing all errors returned by this …","","","contains FFI bindings to import and export Array via Arrow…","","","Examples","Returns the argument unchanged.","This crates a hashmap from the provided iterator using …","Returns a reference to the value corresponding to the key.","Returns the key-value pair corresponding to the supplied …","Returns a mutable reference to the value corresponding to …","Returns a reference to the value corresponding to the …","","Inserts a key-value pair into the map.","","Calls U::from(self).","","","","Creates a consuming iterator visiting all the keys in …","Creates a consuming iterator visiting all the values in …","Contains modules to interface with other formats such as […","Memory maps regions defined on the IPC format into Array.","This crates a hashmap using RandomState::new which obtains …","Contains the declaration of Offset","Removes a key from the map, returning the value at the key …","contains the Scalar trait object representing individual …","Conversion methods for dates and times.","","Declares TrustedLen.","","","","Sealed traits and implementations to handle all physical …","Misc utilities used in different places in the crate.","","This crates a hashmap with the specified capacity using …","","","A trait representing an immutable Arrow array. Arrow …","Iterator of values of an ArrayAccessor.","A BinaryArray is Arrow’s semantically equivalent of an …","Iterator of values of an BinaryArray.","A BooleanArray is Arrow’s semantically equivalent of an …","A type definition PrimitiveArray for days_ms","A type definition MutablePrimitiveArray for days_ms","An Array whose values are stored as indices. This Array is …","Trait denoting NativeTypes that can be used as keys of a …","The Arrow’s equivalent to an immutable …","The Arrow’s equivalent to an immutable …","A type definition PrimitiveArray for f16","A type definition MutablePrimitiveArray for f16","A type definition PrimitiveArray for f32","A type definition MutablePrimitiveArray for f32","A type definition PrimitiveArray for f64","A type definition MutablePrimitiveArray for f64","Trait that BinaryArray and Utf8Array implement for the …","A type definition PrimitiveArray for i128","A type definition MutablePrimitiveArray for i128","A type definition PrimitiveArray for i16","A type definition MutablePrimitiveArray for i16","A type definition PrimitiveArray for i256","A type definition MutablePrimitiveArray for i256","A type definition PrimitiveArray for i32","A type definition MutablePrimitiveArray for i32","A type definition PrimitiveArray for i64","A type definition MutablePrimitiveArray for i64","A type definition PrimitiveArray for i8","A type definition MutablePrimitiveArray for i8","The corresponding IntegerType of this key","An Array semantically equivalent to …","Iterator of values of a ListArray.","An array representing a (key, value), both of arbitrary …","A type definition PrimitiveArray for months_days_ns","A type definition MutablePrimitiveArray for months_days_ns","A trait describing a mutable array; i.e. an array whose …","The Arrow’s equivalent to Vec<Option<Vec<u8>>>. …","A MutableArray that builds a BinaryArray. It differs from …","The Arrow’s equivalent to Vec<Option<bool>>, but with …","A mutable, strong-typed version of DictionaryArray.","The Arrow’s equivalent to a mutable …","The mutable version of FixedSizeListArray.","The mutable version of ListArray.","A distinct type to disambiguate clashing methods","The Arrow’s equivalent to Vec<Option<T>> where T is …","Converting a MutableStructArray into a StructArray is O(1).","A MutableArray that builds a Utf8Array. It differs from …","A MutableArray that builds a Utf8Array. It differs from …","The concrete Array of DataType::Null.","A PrimitiveArray is Arrow’s semantically equivalent of …","A trait describing the ability of a struct to receive new …","A StructArray is a nested Array with an optional validity …","A trait describing the ability of a struct to create …","A trait describing the ability of a struct to extend from …","A trait describing the ability of a struct to receive new …","A type definition PrimitiveArray for u16","A type definition MutablePrimitiveArray for u16","A type definition PrimitiveArray for u32","A type definition MutablePrimitiveArray for u32","A type definition PrimitiveArray for u64","A type definition MutablePrimitiveArray for u64","A type definition PrimitiveArray for u8","A type definition MutablePrimitiveArray for u8","UnionArray represents an array whose each slot can contain …","A Utf8Array is arrow’s semantic equivalent of an …","Iterator of values of an Utf8Array.","","","","","","","","","","","","","","","","","","","","","","","","","If the key type always can be converted to usize.","","","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the values of this array, cloning …","Applies a function f to the values of this array, cloning …","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Converts itself to a reference of Any, which enables …","Convert to Any, to enable dynamic casting.","","","","","","","","","","","","","","","","","","","","","","","","Converts itself to a mutable reference of Any, which …","","","","","","","","","","","","Convert itself to an (immutable) atomically reference …","","","","","","","","","","","","Convert itself to an (immutable) Array.","","","","","","","","","","","","","Convert to mutable Any, to enable dynamic casting.","","","","","","","","","","","","","","Represents this key as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","","","Returns the capacity in number of items","Returns the capacity of this array","Returns the capacity of this MutablePrimitiveArray.","Reserves additional elements and additional_values on the …","Returns the capacity in number of items","","","","","","","","","","","","","","","","","Clones a dynamic Array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The DataType of the Array. In combination with …","The DataType of the array.","","","","Returns the DataType of this array.","","Returns the arrays’ DataType.","","","Returns the DataType of this DictionaryArray","","","","","","","","","","","","","Returns the arrays’ DataType.","","","","","Returns the DataType of this array.","","","","","","","","","","","","Returns the default DataType of this container: …","Returns the default DataType, DataType::Binary or …","Returns the default DataType of this container: …","Returns a default DataType of this array, which depends on …","Returns a DataType consistent with FixedSizeListArray.","Returns a default DataType: inner field is named “item”…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Logically compares two Arrays. Two arrays are logically …","","","","","","","Extends the MutablePrimitiveArray with a constant","Extends the MutablePrimitiveArray from a slice","Extends the MutableBinaryValuesArray from a TrustedLen","Extends the MutableBinaryArray from an iterator of …","Extends the MutableBooleanArray from an iterator of …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of trusted …","Extends the MutableUtf8ValuesArray from a TrustedLen","Extends MutableBinaryValuesArray from an iterator of …","Extends the MutableBinaryArray from an iterator of …","Extends the MutableBooleanArray from an iterator of …","Extends the MutablePrimitiveArray from an iterator of …","Extends MutableUtf8Array from an iterator of trusted len.","Extends MutableUtf8ValuesArray from an iterator of trusted …","Extends the MutableBinaryArray from an iterator of trusted …","Extends the MutableBooleanArray from an iterator of values …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of values of …","Extends the MutableBinaryArray from an iterator of values …","Extends the MutableBooleanArray from an iterator of values …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of values of …","Extends the MutableBinaryArray from an iterator of values. …","Extends the MutableUtf8Array from an iterator of values. …","Returns the field (guaranteed to be a Struct)","The fields.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Creates a new MutableBinaryArray from a slice of optional …","","","Returns the argument unchanged.","Creates a new BinaryArray from a slice of optional &[u8].","","","Creates a new MutableBooleanArray out of a slice of …","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Creates a new MutableFixedSizeBinaryArray from a slice of …","Returns the argument unchanged.","Creates a new FixedSizeBinaryArray from a slice of …","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Creates a new MutableUtf8Array from a slice of optional …","Returns the argument unchanged.","Returns the argument unchanged.","","Returns a new Utf8Array from a slice of &str.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Creates a [PrimitiveArray] from its internal …","Creates a [BooleanArray] from its internal representation. …","Creates a [PrimitiveArray] from its internal …","","","","","","Creates a FixedSizeBinaryArray from an iterator of …","","","","","","","","","","Creates a new MutableBinaryArray from a Iterator of &[u8].","Returns a new BinaryArray from a Iterator of &[u8].","Creates a new MutableUtf8Array from a Iterator of &str.","Creates a new Utf8Array from a Iterator of &str.","Creates a new BinaryArray from slices of &[u8].","Creates a new MutableBooleanArray from a slice of bool.","Creates a new BooleanArray from a slice of bool.","Creates a FixedSizeBinaryArray from a slice of arrays of …","Creates a MutablePrimitiveArray from a slice of values.","Creates a (non-null) PrimitiveArray from a slice of values.","Returns a Utf8Array from a slice of &str.","Creates a MutableBinaryValuesArray from a TrustedLen","Creates a MutableBinaryArray from an iterator of trusted …","Creates a BinaryArray from a TrustedLen","Creates a BooleanArray from a TrustedLen.","Creates a BooleanArray from a TrustedLen.","Creates a MutablePrimitiveArray from a TrustedLen.","Creates a PrimitiveArray from a TrustedLen of optional …","Creates a MutableUtf8Array from an iterator of trusted …","Creates a MutableUtf8ValuesArray from a TrustedLen","Creates a Utf8Array from an iterator of trusted length.","Returns a new MutableBinaryValuesArray from an iterator of …","Creates a MutableBinaryArray from an iterator of trusted …","Creates a BinaryArray from an iterator of trusted length.","Creates a BooleanArray from an iterator of trusted length. …","Creates a BooleanArray from an iterator of trusted length. …","Creates a MutablePrimitiveArray from an iterator of …","Creates a PrimitiveArray from an iterator of optional …","Creates a MutableUtf8Array from an iterator of trusted …","Returns a new MutableUtf8ValuesArray from an iterator of …","Creates a Utf8Array from an iterator of trusted length.","Creates a new BinaryArray from a TrustedLen of &[u8].","Returns a BinaryArray from an iterator of trusted length.","Creates a new MutableBooleanArray from an TrustedLen of …","Creates a new BooleanArray from an TrustedLen of bool.","Creates a new MutablePrimitiveArray out an iterator over …","Creates a (non-null) PrimitiveArray from a TrustedLen of …","Creates a new MutableUtf8Array from a TrustedLen of &str.","Returns a (non-null) Utf8Array created from a TrustedLen …","Creates a new BinaryArray from a TrustedLen of &[u8].","Creates a new MutableBooleanArray from an TrustedLen of …","Creates a new BooleanArray from an TrustedLen of bool. Use …","Creates a new MutablePrimitiveArray from an iterator over …","Creates a new PrimitiveArray from an iterator over values","Creates a MutableUtf8Array from an iterator of trusted …","Creates a (non-null) PrimitiveArray from an iterator of …","Creates a (non-null) MutablePrimitiveArray from a vector …","Creates a (non-null) PrimitiveArray from a vector of …","","Returns the element at index i or None if it is null","","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","","","Returns the element at index i or None if it is null","","Returns the element at index i or None if it is null","","Returns a the inner Field","Returns a the inner DataType","Returns a function that writes the element of array at …","Returns all fields from DataType::Union.","Returns an option of a mutable reference to the values of …","","","","","","","Returns a function that writes the value of the element of …","","","","","Contains the trait Growable and corresponding concreate …","Returns the index and slot of the field to select from …","Returns the index and slot of the field to select from …","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts itself into an Array.","Converts itself into an Array.","converts itself into Arc<dyn Array>","Converts itself into an Array.","Converts itself into an Array.","Converts itself into an Array.","Converts itself into an Array.","converts itself into Box<dyn Array>","converts itself into Box<dyn Array>","Extract the low-end APIs from the MutableUtf8Array.","Extract the low-end APIs from the MutableBinaryValuesArray.","Returns its internal representation","Returns its internal representation","Extract the low-end APIs from the MutablePrimitiveArray.","Returns its internal representation","Extract the low-end APIs from the MutableStructArray.","Extract the low-end APIs from the MutableUtf8ValuesArray.","Returns its internal representation","","","","","","","","","","","","","","","","","","","Try to convert this BinaryArray to a MutableBinaryArray","Try to convert this BooleanArray to a MutableBooleanArray","Try to convert this PrimitiveArray to a …","Try to convert this Utf8Array to a MutableUtf8Array","","","whether the array is empty","Whether the array is empty.","Returns whether slot i is null.","","","","","","","Returns whether the values of this DictionaryArray are …","Returns whether the DataType::Union is sparse or not.","Returns whether slot i is valid.","Whether index is valid / set.","","","","","","","Returns an iterator of &[u8]","Returns an iterator of Option<&[u8]>","Returns an iterator of Option<&[u8]> over every element of …","Returns an iterator over the optional values of this …","Returns an iterator over the optional values of this …","Returns an iterator of Option<Box<dyn Scalar>>.","constructs a new iterator","constructs a new iterator","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator over Option<T>","Returns an iterator over the values and validity, …","constructs a new iterator","Returns an iterator of Option<&str>","Returns an iterator of &str","Returns an iterator of Option<&str>","Returns an iterator over the the optional values of …","Returns iterator over the values of …","Returns the keys’ value of the DictionaryArray as usize","Returns the dictionary keys","Returns the keys of the DictionaryArray. These keys can be …","Returns an iterator of the keys’ of the DictionaryArray …","Returns an iterator of the keys’ values of the …","The length of the Array. Every array has a length …","The length of the array.","","Returns the length of this array","","","Returns the length of this array","","Returns the length of this array","","","Returns the length of this array","","Returns the length of this array","","Returns the length of this array","","","The length of this array","Returns the length of this array","","","Returns the length of this array","Returns the length of this array","","","Returns the length of this array","","","","Returns the length of this array","","","Returns the length of this array","","","Returns the length of this array","","Returns the length of this array","Returns the length of this array","","Returns the dictionary map","","","","The values as a mutable reference","The values","The mutable values","Returns an empty MutableBinaryValuesArray.","Creates a new empty MutableBinaryArray.","Alias for unwrapping Self::try_new","Creates an new empty MutableBooleanArray.","Alias to Self::try_new().unwrap()","Creates an empty MutableDictionaryArray.","Creates a new empty MutableFixedSizeBinaryArray.","Creates a new FixedSizeBinaryArray.","Creates a new MutableFixedSizeListArray from a MutableArray…","Alias to Self::try_new(...).unwrap()","Creates a new empty MutableListArray.","Creates a new ListArray.","Creates a new MapArray.","Returns a new NullArray.","Returns a new MutableNullArray.","Creates a new empty MutablePrimitiveArray.","Alias for Self::try_new(..).unwrap().","Creates a new MutableStructArray.","Returns a new UnionArray.","Initializes a new empty MutableUtf8Array.","Returns an empty MutableUtf8ValuesArray.","Creates a new Utf8Array.","Creates a new ArrayValuesIter","Creates an empty BinaryArray, i.e. whose .len is zero.","Returns a new empty BooleanArray.","Returns a new empty DictionaryArray.","Returns a new empty FixedSizeBinaryArray.","Returns a new empty FixedSizeListArray.","Returns a new empty ListArray.","Returns a new empty MapArray.","Returns a new empty NullArray.","Returns a new empty (zero-length) PrimitiveArray.","Creates a new empty UnionArray.","Returns a new empty Utf8Array.","Creates a new Array with a Array::len of 0.","Creates a new MutableFixedSizeListArray from a MutableArray…","Creates a new MutableListArray from a MutableArray and …","Creates a new MutableListArray from a MutableArray, Offsets…","Creates an null BinaryArray, i.e. whose …","Returns a new BooleanArray whose all slots are null / None.","Returns an DictionaryArray whose all elements are null","Returns a new null FixedSizeBinaryArray.","Returns a new null FixedSizeListArray.","Returns a new null ListArray.","Returns a new null MapArray of length.","Returns a new NullArray.","Returns a new PrimitiveArray where all slots are null / …","Creates a new null UnionArray.","Returns a new Utf8Array whose all slots are null / None.","Creates a new Array of DataType data_type and length. The …","Create a MutableUtf8Array out of low-end APIs.","Returns a MutableUtf8ValuesArray created from its internal …","Creates a new Utf8Array without checking for offsets …","Creates a new MutableListArray from a MutableArray and …","Creates a new MutableFixedSizeListArray from a MutableArray…","Creates a new MutableListArray from a MutableArray.","","","","The number of null slots on this Array.","The offsets of the array","returns its offsets.","returns its offsets.","","Returns the offsets of this BinaryArray.","The offsets","The offsets [Buffer].","returns the offsets","The optional offsets.","returns its offsets.","returns its offsets.","Returns the offsets of this Utf8Array.","","Contains functions and function factories to order values …","","","","","","","Pop the last entry from MutableBinaryValuesArray. This …","Pop the last entry from MutableBinaryArray. This function …","Pop an entry from MutableBooleanArray. Note If the values …","Pop the last entry from MutableFixedSizeBinaryArray. This …","Pop a value from the array. Note if the values is empty, …","Pop the last entry from MutableUtf8Array. This function …","Pop the last entry from MutableUtf8ValuesArray. This …","Pushes a new item to the array.","Pushes a new element to the array.","Pushes a new entry to MutableBooleanArray.","pushes a new entry to MutableFixedSizeBinaryArray.","Adds a new value to the array.","Call this once for each “row” of children you push.","Pushes a new element to the array.","Pushes a new item to the array.","Adds a new null element to the array.","","","","pushes a null value","","","","","","","","","","Push a new element that holds the invariants of the struct.","Safety","Needs to be called when a valid value was extended to this …","","","Reserves additional slots to its capacity.","","Reserves additional elements and additional_values on the …","","Reserves additional elements and additional_values on the …","","Reserves additional slots.","","Reserves additional slots.","Reserves additional slots.","","Reserves additional slots.","","","Reserves additional slots.","","","Reserves additional entries.","","Reserves additional entries.","","Reserves additional elements and additional_values on the …","Reserves additional elements and additional_values on the …","","","","","","","","","","","Sets position index to value. Note that if it is the first …","Sets position index to value. Note that if it is the first …","Sets position index to value. Note that if it is the first …","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of the keys of this DictionaryArray.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity.","Sets the validity of this array.","Sets the validity.","Sets the validity of this array.","Sets the values of this BooleanArray.","Sets values.","Update the values of this PrimitiveArray.","Shrink the array to fit its length.","Shrinks the capacity of the MutableBinaryValuesArray to …","","","Shrinks the capacity of the MutableBinaryArray to fit its …","","Shrinks the capacity of the MutableBooleanArray to fit its …","Shrinks the capacity of the MutableDictionaryArray to fit …","","","Shrinks the capacity of the MutableFixedSizeBinaryArray to …","Shrinks the capacity of the MutableFixedSizeListArray to …","","Shrinks the capacity of the MutableListArray to fit its …","","","","Shrinks the capacity of the MutablePrimitiveArray to fit …","Shrinks the capacity of the MutableStructArray to fit its …","","Shrinks the capacity of the MutableUtf8Array to fit its …","","","Shrinks the capacity of the MutableUtf8ValuesArray to fit …","returns the (fixed) size of the MutableFixedSizeBinaryArray…","Returns the size","Returns the size (number of elements per slot) of this …","Returns the size (number of elements per slot) of this …","","Slices this Array.","Slices this BinaryArray.","","","Slices this BooleanArray.","Slices this DictionaryArray.","","","Slices this FixedSizeBinaryArray.","","Slices this FixedSizeListArray.","","Slices this ListArray.","","Returns a slice of this MapArray.","Returns a slice of the NullArray.","","Slices this PrimitiveArray by an offset and length.","","Returns a slice of this UnionArray.","","Slices this Utf8Array.","","","","","","","","","","","","","","","","","","","","","","","","Slices the Array.","Slices this BinaryArray.","","","Slices this BooleanArray.","Slices this DictionaryArray.","","Slices this FixedSizeBinaryArray.","","","Slices this FixedSizeListArray.","","Slices this ListArray.","","Returns a slice of this MapArray.","","Returns a slice of the NullArray.","Slices this PrimitiveArray by an offset and length.","","Returns a slice of this UnionArray.","","","Slices this Utf8Array.","Returns a slice of this Array.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns a slice of this Array.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","","","","Returns a new FixedSizeBinaryArray with a different …","Changes the arrays’ DataType, returning a new …","Returns a new PrimitiveArray with a different logical type.","Clone a &dyn Array to an owned Box<dyn Array>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Fallible version of Extend::extend.","","","This is infalible and is implemented for consistency with …","","","","This is infalible and is implemented for consistency with …","","","Expand this array, using elements from the underlying …","Tries to extend itself with elements from other, failing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a new MutableBinaryValuesArray from an iterator.","Creates a new MutableFixedSizeBinaryArray from an iterator …","Creates a FixedSizeBinaryArray from an fallible iterator …","Returns a new MutableUtf8ValuesArray from an iterator.","Returns a new DictionaryArray.","Creates a MutableBinaryArray from an falible iterator of …","Creates a BinaryArray from an fallible iterator of trusted …","Creates a BooleanArray from a TrustedLen.","Creates a BooleanArray from a TrustedLen.","Creates a MutablePrimitiveArray from an fallible iterator …","Creates a MutableUtf8Array from an falible iterator of …","Creates a Utf8Array from an fallible iterator of trusted …","Creates a MutableBinaryArray from an falible iterator of …","Creates a BinaryArray from an falible iterator of trusted …","Creates a BooleanArray from an falible iterator of trusted …","Creates a BooleanArray from an falible iterator of trusted …","Creates a MutablePrimitiveArray from an fallible iterator …","Creates a MutableUtf8Array from an falible iterator of …","Creates a Utf8Array from an falible iterator of trusted …","Returns a the inner Field","","","","","","","","","","","","","","","","","","","","","","","","","Returns a MutableBinaryValuesArray created from its …","Returns a MutableBinaryArray created from its internal …","Returns a BinaryArray created from its internal …","The canonical method to create a MutableBooleanArray out …","The canonical method to create a BooleanArray out of …","Returns a new DictionaryArray.","Creates a new MutableFixedSizeBinaryArray.","Creates a new FixedSizeBinaryArray.","Creates a new FixedSizeListArray.","Creates a new ListArray.","Returns a new MapArray.","Returns a new NullArray.","The canonical method to create a MutablePrimitiveArray out …","The canonical method to create a PrimitiveArray out of its …","Create a MutableStructArray out of low-end APIs.","Returns a new UnionArray.","Returns a MutableUtf8Array created from its internal …","Returns a MutableUtf8ValuesArray created from its internal …","Returns a Utf8Array created from its internal …","Returns a new DictionaryArray.","Creates a new Utf8Array without checking for offsets …","Tries to push a new element.","","","This is infalible and is implemented for consistency with …","","tries to push a new entry to MutableFixedSizeBinaryArray.","","","This is infalible and is implemented for consistency with …","","","Needs to be called when a valid value was extended to this …","Needs to be called when a valid value was extended to this …","","","","","","","","","","","","","","","","","","","","","","","","","The types.","The validity of the Array: every array has an optional …","The optional validity of the array.","","","","The optional validity.","","","Returns the optional validity.","","The optional validity. Equivalent to self.keys().validity()…","","","","The optional validity.","","","The optional validity.","","The optional validity.","","","","","","Returns the optional validity.","","","","","","The optional validity.","","Returns the value of the element at index i.","Returns the element at index i","Returns the value at index i","Returns the value of the DictionaryArray at position i.","Returns the element at index i as &[u8]","Returns value at position i.","Returns the Vec<T> at position i.","Returns the element at index i","Returns the element at index i.","Returns the value at slot i.","Return the ith child array.","Returns the slot index as a Scalar.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the element at index i","Returns the element at index i as bool","Returns the element at index i as &[u8]","Returns the element at index i as &str","Returns the Vec<T> at position i.","Returns the element at index i as &str","Returns the element at index i.","Returns the value at index i. The value on null slots is …","Returns the slot index as a Scalar.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the value of the element at index i, ignoring the …","The values of the array","returns its values.","returns its values.","","Returns the values of this BinaryArray.","Returns its values.","The values Bitmap. Values on null slots are undetermined …","returns a reference to the inner values.","Returns the values of the DictionaryArray.","Returns its values.","Returns the values allocated on this FixedSizeBinaryArray.","The inner values","Returns the inner array.","The values","The values.","Returns its values.","The values Buffer. Values on null slots are undetermined …","The values","returns its values.","returns its values.","Returns the values of this Utf8Array.","","Returns an iterator over the values of this array","Returns an iterator of &[u8] over every element of this …","Returns an iterator over the values of this …","Returns an iterator over the values of this BooleanArray.","Returns an iterator of Box<dyn Scalar>","Returns iterator over the values of FixedSizeBinaryArray","Returns an iterator of Box<dyn Array>","Returns an iterator of Box<dyn Array>","Returns an iterator of Box<dyn Array>","Returns an iterator of T","Returns an iterator of the values, &T, ignoring the arrays…","Returns an iterator of &str","Returns an iterator of &str","Returns an iterator over the the values [V::IterValue].","Returns a mutable slice of values.","Returns a mutable slice of values.","","","","","","","","","","","","","","","","","","","","","","","","","Initializes a new MutableBinaryValuesArray with a …","Initializes a new MutableBinaryArray with a pre-allocated …","Initializes a new MutableUtf8Array with a pre-allocated …","Initializes a new MutableUtf8ValuesArray with a …","Initializes a new MutableBinaryValuesArray with a …","Initializes a new MutableBinaryArray with a pre-allocated …","Creates an new MutableBooleanArray with a capacity of …","Creates a new MutableFixedSizeBinaryArray with capacity …","Creates a new MutableListArray with a capacity.","Creates a new MutablePrimitiveArray with a capacity.","Initializes a new MutableUtf8Array with a pre-allocated …","Initializes a new MutableUtf8ValuesArray with a …","Creates a new MutablePrimitiveArray from a capacity and …","Clones this Array with a new new assigned bitmap.","Returns this array with a new validity.","","Returns this array with a new validity.","Returns this array with a new validity.","","Returns this DictionaryArray with a new validity.","","Returns this array with a new validity.","","","Returns this array with a new validity.","Returns this array with a new validity.","","","Returns this array with a new validity.","","","Returns this array with a new validity.","","","Returns this array with a new validity.","Returns a clone of this BooleanArray with new values.","Returns this PrimitiveArray with new values.","","","","Describes a struct that can be extended from slices of …","Concrete Growable for the BinaryArray.","Concrete Growable for the BooleanArray.","Concrete Growable for the DictionaryArray.","Concrete Growable for the FixedSizeBinaryArray.","Concrete Growable for the FixedSizeListArray.","Concrete Growable for the ListArray.","Concrete Growable for the MapArray.","Concrete Growable for the NullArray.","Concrete Growable for the PrimitiveArray.","Concrete Growable for the StructArray.","Concrete Growable for the UnionArray.","Concrete Growable for the Utf8Array.","","","","","","","","","","","","","Converts this Growable to an Arc<dyn Array>, thereby …","Converts this Growable to an Box<dyn Array>, thereby …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extends this Growable with elements from the bounded Array …","","","","","","","","","","","","","Extends this Growable with null elements, disregarding the …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The current length of the Growable.","","","","","","","","","","","","","Creates a new Growable from an arbitrary number of Arrays.","Creates a new GrowableBinary bound to arrays with a …","Creates a new GrowableUnion bound to arrays with a …","Creates a new GrowableBoolean bound to arrays with a …","Creates a new GrowableFixedSizeBinary bound to arrays with …","Creates a new GrowableNull.","Creates a new GrowablePrimitive bound to arrays with a …","Creates a new GrowableList bound to arrays with a …","Creates a new GrowableMap bound to arrays with a …","Creates a new GrowableStruct bound to arrays with a …","Creates a new GrowableFixedSizeList bound to arrays with a …","Creates a new GrowableUtf8 bound to arrays with a …","Creates a new GrowableDictionary bound to arrays with a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compare the values at two arbitrary indices in two arrays.","returns a comparison function that compares values at two …","Total order of all native types whose Rust implementation …","implements comparison using IEEE 754 total ordering for f32","implements comparison using IEEE 754 total ordering for f64","An immutable container semantically equivalent to …","This crates’ equivalent of std::vec::IntoIter for Bitmap.","A container of booleans. MutableBitmap is semantically …","","","","Compute bitwise AND operation","Returns the byte slice of this Bitmap.","Returns the slice of bytes of this MutableBitmap. Note …","","Apply a bitwise operation op to two inputs and return the …","Apply a bitwise binary operation to a MutableBitmap.","","","","","","","","","","","","","","","","Returns the capacity of MutableBitmap in number of bits.","Creates a Vec<u8> from a TrustedLen of BitChunk.","Returns an iterator over bits in bit chunks BitChunk.","Empties the MutableBitmap.","","","","","","","","","","","","","","","","","","","","Extends MutableBitmap by additional values of constant …","Extends the MutableBitmap from a Bitmap.","Extends the MutableBitmap from a slice of bytes with …","Extends the MutableBitmap from a slice of bytes with …","Extends self from a TrustedLen iterator.","Extends self from an iterator of trusted len.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Creates a Vec from an Iterator of BitChunk.","Creates a [Bitmap] from its internal representation. This …","Creates a [Bitmap] from its internal representation. This …","","","Initializes a MutableBitmap with all values set to valid/ …","Initializes a zeroed MutableBitmap.","Creates a new Bitmap from an iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from an iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from a slice and length.","Alias for Bitmap::try_new().unwrap() This function is O(1)","Initializes a MutableBitmap from a Vec<u8> and a length. …","Returns whether the bit at position i is set.","Returns whether the position index is set.","Returns whether the bit at position i is set.","Unsafely returns whether the bit at position i is set.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns its internal representation","","","","","Converts this Bitmap to MutableBitmap, returning itself if …","Returns whether Bitmap is empty","Returns whether MutableBitmap is empty.","Returns a new iterator of bool over this bitmap","constructs a new iterator over the bits of MutableBitmap.","Returns the length of the Bitmap.","Returns the length of the MutableBitmap.","Converts this Bitmap into a MutableBitmap, cloning its …","Initializes an empty Bitmap.","Creates a new IntoIter from a Bitmap","Initializes an empty MutableBitmap.","Initializes an new Bitmap filled with unset values.","","","","","","Returns the number of unset bits on this Bitmap.","Returns the number of unset bits on this MutableBitmap.","Counts the nulls (unset bits) starting from offset bits …","Compute bitwise OR operation","","Pop the last bit from the MutableBitmap. Note if the …","Pushes a new bit to the MutableBitmap, re-sizing it if …","Pushes a new bit to the MutableBitmap","Apply a bitwise operation op to four inputs and return the …","Reserves additional bits in the MutableBitmap, potentially …","Sets the position index to value","","Sets the position index to value","Shrinks the capacity of the MutableBitmap to fit its …","","Slices self, offsetting by offset and truncating up to …","Slices self, offseting by offset and truncating up to …","Slices self, offsetting by offset and truncating up to …","Slices self, offseting by offset and truncating up to …","Apply a bitwise operation op to three inputs and return …","","","","","","","Creates a new Bitmap from a fallible iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from a fallible iterator of booleans.","Creates a new MutableBitmap from an falible iterator of …","","","","Initializes a new Bitmap from vector of bytes and a length.","Initializes a new MutableBitmap from a Vec<u8> and a …","","","","Apply a bitwise operation op to one input and return the …","Applies a function to every bit of this MutableBitmap in …","Returns the number of unset bits on this Bitmap.","Returns the number of unset bits on this MutableBitmap.","General utilities for bitmaps representing items where LSB …","","","","Initializes a pre-allocated MutableBitmap with capacity …","Compute bitwise XOR operation","A chunk of bits. This is used to create masks of a given …","Trait representing an exact iterator over bytes in BitChunk…","This struct is used to efficiently iterate over bit masks …","An iterator over a slice of bytes in BitChunks.","An iterator over mutable slices of bytes of exact size.","An iterator over bits according to the LSB, i.e. the bytes …","There are null values","There are no null values","Iterator over a bitmap that returns slices of set regions …","An Iterator over Option<T> This enum can be used in two …","An Iterator over validity and values.","","","","","","","","","","","","","","","","","","","","","Returns the number of bytes required to hold bits bits.","","","","","","","","","","","Returns the number of zero bits in the slice offsetted by …","","","","","","","","","","","","","","","","","","","","","","Formats bytes taking into account an offset and length of …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","convert itself from bytes.","Returns whether bit at position i in data is set","Returns whether bit at position i in data is set or not.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","Returns whether there are still elements in this iterator","Returns whether bit at position i in byte is set or not","Returns the number of chunks of this iterator","","Creates a new BitChunksExact.","Creates a BitChunks.","Returns a new BitChunksExactMut","Creates a new BitmapIter.","Creates a new SlicesIterator","Creates a new ZipValidityIter.","Returns a new ZipValidity","Returns a new ZipValidity and drops the validity if all …","","","","","","","","","","","","","","The remainder of the iterator.","","Returns the remaining BitChunk. It is zero iff len / 8 == 0…","","Returns the remainder BitChunk.","The remainder slice","An iterator over individual items of the remainder","The number of items in the remainder","","Returns the remainder bits in BitChunks::remainder.","","The length of the remainder slice in bits.","Sets bit at position i in byte","Sets bit at position i in data","Sets bit at position i in data without doing bound checks","","","","","","","Returns the total number of slots. It corresponds to the …","convert itself into bytes.","","","","","","","","","","","","","","","","","","","","","","","","","","Unwrap into an iterator that has null values.","Unwrap into an iterator that has no null values.","","","","","","","","Buffer is a contiguous memory region that can be shared …","Bytes representation.","","Returns the byte slice stored in this buffer","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Creates a [Bitmap] from its internal representation. This …","","Returns a mutable reference to its underlying Vec, if …","Returns a mutable reference to its slice, if possible.","","","Calls U::from(self).","Calls U::from(self).","Returns its internal representation","","Returns a mutable reference to its underlying Vec, if …","","","Returns whether the buffer is empty.","Returns whether underlying data is sliced. If sliced the …","Returns the number of bytes in the buffer","Creates an empty Buffer.","Returns the offset of this buffer.","Safety","Get the strong count of underlying Arc data buffer.","Get the weak count of underlying Arc data buffer.","Slices this buffer starting at offset.","Slices this buffer starting at offset.","Returns a new Buffer that is a slice of this buffer …","Returns a new Buffer that is a slice of this buffer …","","","","","","","","","","A vector of trait objects of Array where every item has …","","returns the Arrays in Chunk","","","","","returns the Arrays in Chunk","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","Consumes Chunk into its underlying arrays. The arrays are …","returns whether the columns have any rows","returns the number of rows of every array","Creates a new Chunk.","","","","Creates a new Chunk.","","","Contains different aggregation functions","Defines basic arithmetic kernels for PrimitiveArrays.","Defines kernels suitable to perform operations to …","Defines generics suitable to perform operations to …","null-preserving operators such as and, or and not.","Boolean operators of Kleene logic.","Defines different casting operators such as cast or …","Contains comparison operators","Contains the concatenate kernel","Contains operators to filter arrays such as filter.","Contains the operator if_then_else.","Contains “like” operators such as like_utf8 and …","Defines kernel to extract a substring of a [Large…","Defines take kernel for Array","Defines temporal kernels for time and date related …","The maximum value","The minimum value","Trait describing a type describing multiple lanes with an …","Object that can reduce itself to a number. This is used in …","Whether max supports data_type","Whether min supports data_type","Whether sum supports data_type","Returns the total (heap) allocated size of the array in …","Returns the maximum of Array. The scalar is null when all …","Returns the maximum value in the binary array, according …","Returns the maximum value in the boolean array","reduce itself to the minimum","lane-wise maximum between two instances","Returns the maximum value in the array, according to the …","Returns the maximum value in the string array, according …","Returns the minimum of Array. The scalar is null when all …","Returns the minimum value in the binary array, according …","Returns the minimum value in the boolean array.","reduce itself to the maximum","lane-wise minimum between two instances","Returns the minimum value in the array, according to the …","Returns the minimum value in the string array, according …","returns a new instance with all lanes equal to MAX","returns a new instance with all lanes equal to MIN","Reduces this element to a single value.","Returns the sum of all elements in array as a Scalar of …","Returns the sum of values in the array.","Compute the sum of a slice","Defines basic addition operation for primitive arrays","Defines checked addition operation for primitive arrays","Defines checked division operation for primitive arrays","Defines checked multiplication operation for primitive …","Defines checked reminder operation for primitive arrays","Defines checked subtraction operation for primitive arrays","Defines basic division operation for primitive arrays","Defines basic multiplication operation for primitive arrays","Defines Overflowing addition operation for primitive arrays","Defines Overflowing multiplication operation for primitive …","Defines Overflowing subtraction operation for primitive …","Defines basic reminder operation for primitive arrays","Defines saturating addition operation for primitive arrays","Defines saturating multiplication operation for primitive …","Defines saturating subtraction operation for primitive …","Defines basic subtraction operation for primitive arrays","Defines wrapping addition operation for primitive arrays","Defines wrapping multiplication operation for primitive …","Defines wrapping subtraction operation for primitive arrays","Adds two Arrays.","Adds itself to rhs","Adds an Array and a Scalar.","Contains arithemtic functions for PrimitiveArrays.","Returns whether two DataTypes can be added by add.","Returns whether two DataTypes can be divided by div.","Returns whether two DataTypes can be multiplied by mul.","Whether neg is supported for a given DataType","Returns whether two DataTypes “can be remainder” by rem…","Returns whether two DataTypes can be subtracted by sub.","Checked add","checked division","checked multiplication","checked remainder","checked subtraction","Defines the arithmetic kernels for Decimal PrimitiveArrays…","Divide of two Arrays.","division","Divide an Array with a Scalar.","Multiply two Arrays.","multiplication","Multiply an Array with a Scalar.","Negates an Array.","Overflowing add","overflowing multiplication","overflowing subtraction","Remainder of two Arrays.","remainder","Saturating add","saturating multiplication","saturarting subtraction","Subtracts two Arrays.","subtraction","Adds an Array and a Scalar.","Defines the arithmetic kernels for adding a Duration to a …","Adds itself to rhs using wrapping addition","wrapping multiplication","wrapping subtraction","Trait describing a NativeType whose semantics of …","Adds two primitive arrays with the same type. Panics if …","Adds a scalar T to a primitive array of type T. Panics if …","Checked addition of two primitive arrays. If the result …","Checked addition of a scalar T to a primitive array of …","Checked division of two primitive arrays. If the result …","Checked division of a primitive array of type T by a …","Checked multiplication of two primitive arrays. If the …","Checked multiplication of a scalar T to a primitive array …","Checked negates values from array.","Checked operation of raising an array of primitives to the …","Checked remainder of two primitive arrays. If the result …","Checked remainder of a primitive array of type T by a …","Checked subtraction of two primitive arrays. If the result …","Checked subtraction of a scalar T to a primitive array of …","Divides two primitive arrays with the same type. Panics if …","Divide a primitive array of type T by a scalar T. Panics …","Multiplies two primitive arrays with the same type. Panics …","Multiply a scalar T to a primitive array of type T. Panics …","Negates values from array.","Overflowing addition of two primitive arrays. If the …","Overflowing addition of a scalar T to a primitive array of …","Overflowing multiplication of two primitive arrays. If the …","Overflowing multiplication of a scalar T to a primitive …","Overflowing subtraction of two primitive arrays. If the …","Overflowing subtraction of a scalar T to a primitive array …","Raises an array of primitives to the power of exponent. …","Remainder of two primitive arrays with the same type. …","Remainder a primitive array of type T by a scalar T. …","Saturating addition of two primitive arrays. If the result …","Saturated addition of a scalar T to a primitive array of …","Saturating multiplication of two primitive arrays. If the …","Saturated multiplication of a scalar T to a primitive …","Saturating subtraction of two primitive arrays. If the …","Saturated subtraction of a scalar T to a primitive array …","Subtracts two primitive arrays with the same type. Panics …","Subtract a scalar T to a primitive array of type T. Panics …","Wrapping addition of two PrimitiveArrays. It wraps around …","Wrapping addition of a scalar T to a PrimitiveArray of …","Wrapping multiplication of two PrimitiveArrays. It wraps …","Wrapping multiplication of a scalar T to a PrimitiveArray …","Wrapping negates values from array.","Wrapping subtraction of two PrimitiveArrays. It wraps …","Wrapping subtraction of a scalar T to a PrimitiveArray of …","Adaptive addition of two decimal primitive arrays with …","Adaptive division of two decimal primitive arrays with …","Adaptive multiplication of two decimal primitive arrays …","Adaptive subtract of two decimal primitive arrays with …","Adds two decimal PrimitiveArray with the same precision …","Checked addition of two decimal primitive arrays with the …","Checked division of two decimal primitive arrays with the …","Checked multiplication of two decimal primitive arrays …","Checked subtract of two decimal primitive arrays with the …","Divide two decimal primitive arrays with the same …","Multiply a decimal PrimitiveArray with a PrimitiveScalar …","Multiply two decimal primitive arrays with the same …","Multiply a decimal PrimitiveArray with a PrimitiveScalar …","Saturated addition of two decimal primitive arrays with …","Saturated division of two decimal primitive arrays with …","Saturated multiplication of two decimal primitive arrays …","Saturated subtraction of two decimal primitive arrays with …","Subtract two decimal primitive arrays with the same …","Adds a duration to a time array (Timestamp, Time and …","Adds a duration to a time array (Timestamp, Time and …","Adds an interval to a DataType::Timestamp.","Adds an interval to a DataType::Timestamp.","Subtract a duration to a time array (Timestamp, Time and …","Calculates the difference between two timestamps as …","Subtract a duration to a time array (Timestamp, Time and …","Calculates the difference between two timestamps returning …","Applies a binary operations to two primitive arrays. This …","Version of binary that creates a mutable bitmap that is …","Version of binary that returns an array and bitmap. Used …","Version of binary that checks for errors in the closure …","Version of unary that checks for errors in the closure …","Applies an unary and infallible function to a …","Version of unary that creates a mutable bitmap that is …","Version of unary that returns an array and bitmap. Used …","Applies a binary function to two PrimitiveArrays, …","Applies an unary function to a PrimitiveArray, optionally …","Check if all of the values in the array are true","Performs && operation on two BooleanArray, combining the …","Performs AND operation on an array and a scalar value. If …","Returns whether any of the values in the array is true","Returns a non-null BooleanArray with whether each value of …","Returns a non-null BooleanArray with whether each value of …","Performs unary NOT operation on an arrays. If value is …","Performs || operation on two BooleanArray, combining the …","Performs OR operation on an array and a scalar value. If …","Returns whether all values in the array are true","Logical ‘and’ operation on two arrays with Kleene logic","Logical ‘and’ operation on an array and a scalar value …","Returns whether any of the values in the array is true","Logical ‘or’ operation on two arrays with Kleene logic","Logical ‘or’ operation on an array and a scalar value …","options defining how Cast kernels behave","","Conversion of binary","Cast BinaryArray to DictionaryArray, also known as packing.","Conversion of binary","Conversion to utf8","Conversion of binary","Casts a BinaryArray to a PrimitiveArray, making any …","Conversion to utf8","Casts the BooleanArray to a BinaryArray, casting trues to …","Casts the BooleanArray to a PrimitiveArray.","Casts the BooleanArray to a Utf8Array, casting trues to "1"…","","","Return true if a value of type from_type can be cast into a","Cast array to the provided data type and return a new Array…","","","Conversion of dates","Conversion of dates","Casts days_mss to months_days_ns. This operation is …","Returns a PrimitiveArray<i128> with the casted values. …","Returns a PrimitiveArray<i128> with the casted values. …","Returns a PrimitiveArray<i128> with the casted values. …","","","","Casts a DictionaryArray to a new DictionaryArray backed by …","Casts a DictionaryArray to a new DictionaryArray by …","Casts a DictionaryArray to its values’ DataType, also …","","Casts f16 into f32","Conversion of FixedSizeBinary to Binary.","Returns a PrimitiveArray<i128> with the casted values. …","","Returns the argument unchanged.","","Returns a PrimitiveArray<i128> with the casted values. …","Calls U::from(self).","Casts months represented as i32s to months_days_ns. This …","Returns a Utf8Array where every element is the utf8 …","default to false whether to cast to an integer at the …","Casts a BinaryArray to a PrimitiveArray at best-effort …","Casts a Utf8Array to a PrimitiveArray at best-effort using …","Cast PrimitiveArray as a PrimitiveArray Same as …","Returns a BinaryArray where every element is the binary …","Returns a BooleanArray where every element is different …","Cast PrimitiveArray to DictionaryArray. Also known as …","Cast PrimitiveArray to a PrimitiveArray of another …","Cast PrimitiveArray to a PrimitiveArray of the same …","Returns a Utf8Array where every element is the utf8 …","Conversion of time","Conversion of times","Conversion of times","Conversion of time","Conversion of times","Conversion of times","Conversion of timestamp","Conversion of timestamp","Conversion of timestamp","Returns a Utf8Array where every element is the utf8 …","","","","","Conversion of utf8","Conversion to binary","Casts a Utf8Array to a Date32 primitive, making any …","Casts a Utf8Array to a Date64 primitive, making any …","Cast Utf8Array to DictionaryArray, also known as packing.","Conversion of utf8","crate::temporal_conversions::utf8_to_timestamp_ns applied …","Casts a Utf8Array to a PrimitiveArray, making any …","crate::temporal_conversions::utf8_to_timestamp_ns applied …","","default to false whether an overflowing cast should be …","Similar to dictionary_to_dictionary_keys, but overflowing …","Similar to dictionary_to_dictionary_values, but …","The 8 lane representation of Self","NativeType that supports a representation of 8 lanes","Trait declaring an 8-lane multi-data.","Trait implemented by implementors of Simd8Lanes whose Simd8…","Trait implemented by implementors of Simd8Lanes whose Simd8…","Comparison functions for BinaryArray","Comparison functions for BooleanArray","Returns whether a DataType is comparable is supported by eq…","Returns whether a DataType is supported by eq_scalar.","Returns whether a DataType is comparable is supported by gt…","Returns whether a DataType is comparable is supported by …","Returns whether a DataType is supported by gt_eq_scalar.","Returns whether a DataType is supported by gt_scalar.","Returns whether a DataType is comparable is supported by lt…","Returns whether a DataType is comparable is supported by lt…","Returns whether a DataType is supported by lt_eq_scalar.","Returns whether a DataType is supported by lt_scalar.","Returns whether a DataType is comparable is supported by …","Returns whether a DataType is supported by neq_scalar.","== between two Arrays. Use can_eq to check whether the …","Equal","== between two Arrays and includes validities in …","== between an Array and a Scalar. Use can_eq_scalar to …","== between an Array and a Scalar and includes validities …","Utility for low level end users that implement their own …","Utility for low level end users that implement their own …","loads a complete chunk","loads an incomplete chunk, filling the remaining items …","> between two Arrays. Use can_gt to check whether the …","Greater than",">= between two Arrays. Use can_gt_eq to check whether the …","Greater than or equal to",">= between an Array and a Scalar. Use can_gt_eq_scalar to …","> between an Array and a Scalar. Use can_gt_scalar to …","< between two Arrays. Use can_lt to check whether the …","Less than","<= between two Arrays. Use can_lt_eq to check whether the …","Less than or equal to","<= between an Array and a Scalar. Use can_lt_eq_scalar to …","< between an Array and a Scalar. Use can_lt_scalar to …","!= between two Arrays. Use can_neq to check whether the …","Not equal","!= between two Arrays and includes validities in …","!= between an Array and a Scalar. Use can_neq_scalar to …","!= between an Array and a Scalar and includes validities …","Comparison functions for PrimitiveArray","Comparison functions for Utf8Array","Perform lhs == rhs operation on BinaryArray.","Perform lhs == rhs operation on BinaryArray and include …","Perform lhs == rhs operation on BinaryArray and a scalar.","Perform lhs == rhs operation on BinaryArray and a scalar …","Perform lhs > rhs operation on BinaryArray.","Perform lhs >= rhs operation on BinaryArray.","Perform lhs >= rhs operation on BinaryArray and a scalar.","Perform lhs > rhs operation on BinaryArray and a scalar.","Perform lhs < rhs operation on BinaryArray.","Perform lhs <= rhs operation on BinaryArray.","Perform lhs <= rhs operation on BinaryArray and a scalar.","Perform lhs < rhs operation on BinaryArray and a scalar.","Perform lhs != rhs operation on BinaryArray.","Perform lhs != rhs operation on BinaryArray.","Perform lhs != rhs operation on BinaryArray and a scalar.","Perform lhs != rhs operation on BinaryArray and a scalar …","Evaluate op(left, right) for BooleanArray and scalar using …","Perform lhs == rhs operation on two BooleanArrays.","Perform lhs == rhs operation on two BooleanArrays and …","Perform lhs == rhs operation on a BooleanArray and a …","Perform lhs == rhs operation on a BooleanArray and a …","Perform left > right operation on two arrays. Non-null …","Perform left >= right operation on two arrays. Non-null …","Perform left >= right operation on an array and a scalar …","Perform left > right operation on an array and a scalar …","Perform left < right operation on two arrays.","Perform left <= right operation on two arrays.","Perform left <= right operation on an array and a scalar …","Perform left < right operation on an array and a scalar …","lhs != rhs for BooleanArray","lhs != rhs for BooleanArray and include validities in …","Perform left != right operation on an array and a scalar …","Perform left != right operation on an array and a scalar …","Evaluate op(left, right) for PrimitiveArray and scalar …","Perform lhs == rhs operation on two arrays.","Perform lhs == rhs operation on two arrays and include …","Perform left == right operation on an array and a scalar …","Perform left == right operation on an array and a scalar …","Perform left > right operation on two arrays. Non-null …","Perform left >= right operation on two arrays. Non-null …","Perform left >= right operation on an array and a scalar …","Perform left > right operation on an array and a scalar …","Perform left < right operation on two arrays.","Perform left <= right operation on two arrays.","Perform left <= right operation on an array and a scalar …","Perform left < right operation on an array and a scalar …","Perform left != right operation on two arrays.","Perform left != right operation on two arrays and include …","Perform left != right operation on an array and a scalar …","Perform left != right operation on an array and a scalar …","Perform lhs == rhs operation on Utf8Array.","Perform lhs == rhs operation on Utf8Array and include …","Perform lhs == rhs operation on Utf8Array and a scalar.","Perform lhs == rhs operation on Utf8Array and a scalar. …","Perform lhs > rhs operation on Utf8Array.","Perform lhs >= rhs operation on Utf8Array.","Perform lhs >= rhs operation on Utf8Array and a scalar.","Perform lhs > rhs operation on Utf8Array and a scalar.","Perform lhs < rhs operation on Utf8Array.","Perform lhs <= rhs operation on Utf8Array.","Perform lhs <= rhs operation on Utf8Array and a scalar.","Perform lhs < rhs operation on Utf8Array and a scalar.","Perform lhs != rhs operation on Utf8Array.","Perform lhs != rhs operation on Utf8Array and include …","Perform lhs != rhs operation on Utf8Array and a scalar.","Perform lhs != rhs operation on Utf8Array and a scalar. …","Concatenate multiple Array of the same type into a single …","Function that can filter arbitrary arrays","Returns a prepared function optimized to filter multiple …","Filters an Array, returning elements matching the filter …","Returns a new Chunk with arrays containing only values …","Returns the values from lhs if the predicate is true or …","Returns lhs LIKE rhs operation on two BinaryArray.","Returns lhs LIKE rhs operation.","Returns lhs LIKE rhs operation on two Utf8Array.","Returns lhs LIKE rhs operation.","Returns lhs NOT LIKE rhs operation on two BinaryArrays.","Returns lhs NOT LIKE rhs operation on two BinaryArrays.","Returns lhs NOT LIKE rhs operation on two Utf8Array.","Returns lhs NOT LIKE rhs operation.","Checks if an array of type datatype can perform substring …","Returns an ArrayRef with a substring starting from start …","Checks if an array of type datatype can perform take …","Returns a new Array with only indices at indices. Null …","Checks if an array of type datatype can perform day …","Checks if an array of type datatype can perform hour …","Checks if an array of type data_type can perform ISO week …","Checks if an array of type datatype can perform minute …","Checks if an array of type datatype can perform month …","Checks if an array of type datatype can perform nanosecond …","Checks if an array of type datatype can perform second …","Checks if an array of type data_type can perform weekday …","Checks if an array of type datatype can perform year …","Extracts the days of a temporal array as …","Extracts the hours of a temporal array as …","Extracts ISO week of a temporal array as …","Extracts the minutes of a temporal array as …","Extracts the months of a temporal array as …","Extracts the nanoseconds of a temporal array as …","Extracts the seconds of a temporal array as …","Extracts weekday of a temporal array as PrimitiveArray<u32>…","Extracts the years of a temporal array as …","Opaque binary data of variable length.","Opaque binary data of variable length whose offsets are …","A boolean represented as a single bit.","true and false.","The set of supported logical types in this crate.","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","The number of elapsed days and milliseconds, stored as 2 …","Two i32 representing days and ms","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","Dense union","A dictionary encoded array by IntegerType.","A dictionary encoded array (key_type, value_type), where …","Measure of elapsed time. This elapsed time is a physical …","Extension type.","Represents Arrow’s metadata of a “column”.","Opaque binary data of fixed size.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some data type with fixed length.","A list of some logical data type with a fixed number of …","A 16-bit floating point number.","An 16-bit float","A 32-bit floating point number.","A f32","A 64-bit floating point number.","A f64","A signed 128-bit integer.","A signed 16-bit integer.","A signed 16-bit integer.","An i16","A signed 256-bit integer.","A signed 32-bit integer.","A signed 32-bit integer.","An i32","A signed 64-bit integer.","A signed 64-bit integer.","An i64","A signed 8-bit integer.","A signed 8-bit integer.","An i8","the set of valid indices types of a dictionary-encoded …","A “calendar” interval modeling elapsed time that takes …","Interval units defined in Arrow","Opaque binary data of variable length and 64-bit offsets.","Opaque binary data of variable length whose offsets are …","A list of some data type with variable length and 64-bit …","A list of some logical data type whose offsets are …","A variable-length string in Unicode with UFT-8 encoding …","A variable-length UTF-8 encoded string whose offsets are …","A list of some data type with variable length.","A list of some logical data type whose offsets are …","A nested type.","A nested type that is represented as","typedef for BTreeMap<String, String> denoting Field’s …","Time in microseconds.","Time in milliseconds.","months_days_ns(i32, i32, i64)","The number of elapsed months (i32), days (i32) and …","Time in nanoseconds.","A Null with no allocation.","Null type","The set of physical types: unique in-memory …","An array where each slot has a known compile-time size.","The set of all implementations of the sealed trait …","An ordered sequence of Fields with associated Metadata.","typedef for Arc<Schema>.","Time in seconds.","Sparse union","A nested type that contains an arbitrary number of fields.","A nested DataType with a given number of Fields.","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","The time units defined in Arrow.","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer.","An unsigned 16-bit integer.","An u16","An unsigned 32-bit integer.","An unsigned 32-bit integer.","An u32","An unsigned 64-bit integer.","An unsigned 64-bit integer.","An u64","An unsigned 8-bit integer.","An unsigned 8-bit integer.","An u8","A nested type that represents slots of differing types.","A nested datatype that can represent slots of differing …","Mode of DataType::Union","A variable-length string in Unicode with UTF-8 encoding.","A variable-length UTF-8 encoded string whose offsets are …","The number of elapsed whole months.","","","","","","","","","","","","","","","","","","","","","","","","","","Its logical DataType","","","","","","","","","","","","","","","","","","","","","Whether this physical type equals PhysicalType::Primitive …","","","","","","","","","","","","","","","","","","","","","The fields composing this schema.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","support get extension for metadata","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns whether the mode is dense","Its nullability","Returns whether the mode is sparse","Additional custom (opaque) metadata.","Optional metadata.","Its name","Constructs a UnionMode::Sparse if the input bool is true, …","","","","","","","","","","","","","","","","","","","","","","","","","","Enum with all errors in this crate.","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","Wrapper for IO errors","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","Typedef for a std::result::Result of an Error.","ABI-compatible struct for ArrowArray","ABI-compatible struct for ArrowArrayStream.","Implements an iterator of Array consumed from the C stream …","ABI-compatible struct for ArrowSchema","","","","","","","","","","","","","","","","","","","","","","","","create an empty ArrowSchema","creates an empty ArrowArray, which can be used to import …","Creates an empty ArrowArrayStream used to import from a …","Exports an Box<dyn Array> to the C data interface.","Exports a Field to the C data interface.","Exports an iterator to the C stream interface","Returns the field provided by the stream","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Imports an Array from the C data interface.","Imports a Field from the C data interface.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Functionality to mmap in-memory data regions.","Advances this iterator by one array","","","","","","","","","Returns a new ArrowArrayStreamReader","","","","","","","","","Creates a (non-null) BooleanArray from a slice of bits. …","Creates a (non-null) PrimitiveArray from a slice of values.","APIs to read from and write to Arrow’s IPC format.","Convert data between the Arrow memory format and JSON …","APIs to read from and write to NDJSON","APIs to read from and write to Parquet format.","Struct containing dictionary_id and nested IpcField, …","Struct containing fields and whether the file is written …","","","A struct adapter of Read+Seek+Write to append to IPC files","","","","","","","","","","","","","","dictionary id","","","","","optional children","The fields in the schema","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Endianness of the file","APIs to read Arrow’s IPC format.","","","","","","","","","","","APIs to write to Arrow’s IPC format.","how dictionaries are tracked in this crate","The record contains a number of buffers that does not …","Metadata of an Arrow IPC file, written in the footer of …","An iterator of Chunks from an Arrow IPC file.","A bitmap’s size is smaller than the required for the …","A buffer’s size is smaller than the required for the …","A buffer’s size is larger than the file size","FixedSizeBinaryArray has invalid datatype.","The block is an invalid flatbuffer","The message’s body length is an invalid flatbuffer","The message’s buffers is an invalid flatbuffer","The compression is an invalid flatbuffer","The message’s data is an invalid flatbuffer","The footer’s dictionaries is an invalid flatbuffer","The footer is an invalid flatbuffer","The message’s header is an invalid flatbuffer","The dictionary id is an invalid flatbuffer","The dictionary is_delta is an invalid flatbuffer","The dictionary message is an invalid flatbuffer","The message’s nodes is an invalid flatbuffer","The footer’s record batches is an invalid flatbuffer","The footer’s schema is an invalid flatbuffer","The version is an invalid flatbuffer","The IPC file does not end with [b’A’, b’R’, b’R…","The IPC file does not start with [b’A’, b’R’, b’R…","Invalid dictionary id","Field id is not a dictionary","The message does not contain data","The file’s schema does not contain fields","RecordBatch messages do not contain buffers","The message does not contain a header","RecordBatch messages does not contain nodes","The file’s footer does not contain record batches","The file’s footer does not contain a schema","The first 4 bytes of the last 10 bytes is < 0","The different types of errors that reading from IPC can …","Next item in the stream","Metadata of an Arrow IPC stream, written at the start of …","Arrow Stream reader.","Encodes the stream’s status after each read.","dictionaries can only contain dictionary messages; record …","Relative positions in the file is < 0","A live stream without data","","","The blocks in the file","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Deserialize an flatbuffers-encoded Schema message into …","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Get the inner memory scratches so they can be reused in a …","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Consumes this FileReader, returning the underlying reader","","","The files’ IpcSchema","The IPC fields tracking dictionaries","Check if the stream is finished","Returns the FileMetadata","Return the schema of the stream","Creates a new FileReader. Use projection to only take …","Try to create a new stream reader","","","","","Reads the record batch at position index from the reader.","Reads all file’s dictionaries, if any This function is …","Read the Arrow IPC file’s metadata","Reads the metadata of the stream","Return the schema of the file","Return the schema of the file","The schema that is read from the file footer","The schema that is read from the stream’s first message","Set the inner memory scratches so they can be reused in a …","The total size of the file in bytes","","","","","","","","","","","","","","","","","","","","","Return the data inside this wrapper.","The IPC version of the stream","","","","","","","The size of the IPC buffer","number of bytes of all buffers in the record","the size of the file","Declared number of elements in the buffer","Declared length of the bitmap","Number of bits on the IPC buffer","The requested dictionary id","The requested dictionary id","Bytes required for the length and type","The name of the NativeType","Compression codec","Arrow file writer","LZ4 (framed)","An array Chunk with optional accompanying IPC fields.","Arrow stream writer","Options declaring the behaviour of writing to IPC","ZSTD","","","","","","","","","","","","","","","","","","","","Get the Arrow columns in this record.","Whether the buffers should be compressed and which codec …","","Assigns every dictionary field a unique ID","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the IPC fields for this record.","Async writer for IPC files.","Write continuation bytes, and mark the stream as done","Write footer and closing tag, then mark the writer as done","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Get the inner memory scratches so they can be reused in a …","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Consumes itself, returning the inner writer.","Consumes itself into the inner writer","Creates a new StreamWriter","Creates a new FileWriter.","Converts a Schema and IpcFields to a flatbuffers-encoded …","Set the inner memory scratches so they can be reused in a …","Starts the stream by writing a Schema message to it. Use …","Writes the header and first (schema) message to the file.","async writing of arrow streams","","","","","","","","","Creates a new FileWriter from an existing file, seeking to …","","","","","","Creates a new FileWriter and writes the header to writer","","","","","","","","","","","Writes an Array to arrow_data","Writes Chunk to the stream","Writes Chunk to the file","Sink that writes array chunks as an IPC file.","","","","","","Returns the argument unchanged.","","Calls U::from(self).","Create a new file writer.","","","","","","","","","A sink that writes array chunks as an IPC stream.","Options declaring the behaviour of writing to IPC","","","Whether the buffers should be compressed and which codec …","","","","Returns the argument unchanged.","","Calls U::from(self).","Create a new StreamSink.","","","","","","","","","APIs to write to JSON","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","FallibleStreamingIterator that serializes a Chunk into …","FallibleStreamingIterator that serializes an Array to …","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","Advances the iterator to the next position.","Advances the state of the iterator to the next item from …","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Borrows an iterator, rather than consuming it.","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","Calls a closure on each element of an iterator.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Advances the iterator, returning the next element.","Advances the back of the iterator, returning the last …","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Writes valid JSON from an iterator of (assumed …","APIs to serialize and write to NDJSON.","The error type of iteration.","A fallible, streaming iterator.","An iterator adapter that receives an implementer of Write …","The type being iterated over.","FallibleStreamingIterator that serializes an Array to …","Advances the iterator to the next position.","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Borrows an iterator, rather than consuming it.","Returns the number of remaining elements in the iterator.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","Calls a closure on each element of an iterator.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Advances the iterator, returning the next element.","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","APIs to read from Parquet format.","APIs to write to Parquet format.","Type def for a sharable, boxed dyn Iterator of arrays","A FallibleStreamingIterator that decompresses …","","","An embedded BSON document","","Metadata for a column chunk.","A descriptor for leaf-level primitive columns. This …","A CompressedDataPage is compressed, encoded representation …","A DataPage","","","A Date","","A decimal value.","Decompressor that allows re-using the page buffer of …","A DictPage","","","an enum is converted into a binary field","The error type of iteration.","","A fallible, streaming iterator.","Error presented when trying to use a code branch that …","Error presented when trying to use a feature from parquet …","Metadata for a Parquet file.","An iterator of Chunks coming from row groups of a parquet …","Iterator finished","","","","","The initial info of nested data types.","","","","","","A signed integer value.","","","An interval of time","When encoding, the user passed an invalid parameter","The type being iterated over.","","","An embedded JSON document","","List data types","","","","A special kind of fallible streaming iterator where advance…","","Type def for a sharable, boxed dyn Iterator of …","The state of nested data types.","When the parquet file is known to be out of spec.","A Page is an uncompressed, encoded representation of a …","Type declaration for a page filter","A fallible Iterator of CompressedDataPage. This iterator …","Trait describing a FallibleStreamingIterator of Page","Errors generated by this crate","","Representation of a Parquet type describing primitive and …","The set of all physical types representable in Parquet","Primitive data types","","","","A MutStreamingIterator of pre-read column chunks","An Iterator of Chunk that (dynamically) adapts a vector of …","Metadata for a row group.","An [Iterator<Item=RowGroupDeserializer>] from row groups …","Iterator still has elements","State of MutStreamingIterator.","","Struct data types","An iterator adapter over NestedArrayIter assumed to be …","","A time.","A time","","A date/time combination","A date/time combination","","","","An unsigned integer value.","","","","","","When decoding or decompressing, the page would allocate …","","","","","","","","","","","Reads the column indexes of all ColumnChunkMetaData and …","Reads a FileMetaData from the reader, located at the end …","Asynchronously reads the files’ metadata","Advances the iterator to the next position.","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","The ParquetType this descriptor is a leaf of","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","Returns the offset and length in bytes of the column chunk …","","","","","","","","","","","","","","","","","","","","","Returns this column’s ColumnChunk","Returns the encoding for this column","An iterator adapter that maps multiple iterators of Pages …","Column (sort) order used for min and max values of each …","Returns slice of column chunk metadata.","Returns the total compressed data size of this column …","Total size of all compressed column data in this row group.","Compression for this column.","Returns the number of remaining elements in the iterator.","Creates a new ListArray or FixedSizeListArray.","Creates a new MapArray.","String message for application that wrote this file.","Returns the offset for the column data.","Decompresses the page, using buffer for decompression. If …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The ColumnDescriptor for this column. This descriptor …","The descriptor this columns’ leaf.","Returns the offset for the dictionary page, if any.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Byte offset in file_path().","File where the column chunk is stored.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","","","","","","","","","","","","","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","Returns a ColumnIterator of column chunks corresponding to …","Returns all ColumnChunkMetaData associated to field_name. …","Returns all ColumnChunkMetaData associated to field_name. …","Creates a new iterator of compressed pages.","Returns a stream of compressed data pages","Returns true if this column chunk contains a index page, …","","","","","Returns the offset for the index page.","API to perform page-level filtering (also known as indexes)","Infers a Schema from parquet’s FileMetaData. This first …","","","","","","","","","","","","","","","","","","","","","Initialize NestedState from &[InitNested].","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns two buffers: the first buffer corresponds to the …","Returns its internal buffer, consuming itself.","Returns the reader and this Readers’ interval buffer","","","","","","Method to convert to Thrift.","key_value_metadata of this file.","The number of rows in this state","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","The column’s ColumnMetaData","Returns the number of (parquet) columns that a DataType …","The nesteds composing NestedState.","Creates a new Decompressor.","Returns a new BasicDecompressor.","Returns a new PageReader.","Returns a new ColumnChunkMetaData","Creates new descriptor for leaf-level column.","Create a new RowGroupMetaData","Returns a new ReadColumnIterator","Creates a new StructIterator with iters and fields.","Returns a new FileReader.","Returns a new RowGroupReader","Creates a new RowGroupDeserializer.","Creates a new NestedState.","Create a a new PageReader with PageMetaData.","Advances the iterator, returning the next element.","","","","","","Returns the nth element of the iterator.","Number of rows in this row group.","Returns the number of rows on this row group","number of rows in the file.","Total number of values in this column chunk. Note that …","","","The path of this column. For instance, “a.b.c.d”.","The PhysicalType of this column.","Returns the position of the first element matching a …","","Reads all columns that are part of the parquet field …","Reads all columns that are part of the parquet field …","Returns a vector of iterators of Array (ArrayIter) …","Returns a vector of iterators of Array corresponding to …","Reads parquets’ metadata syncronously.","Reads parquets’ metadata asynchronously.","Read PageLocations from the ColumnChunkMetaDatas. Returns …","The row groups of this file","APIs to handle Parquet <-> Arrow schemas.","Returns the Schema associated to this file.","schema descriptor.","Returns bounds on the number of remaining elements in the …","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","APIs exposing parquet2’s statistics as arrow’s …","Decodes the raw statistics into Statistics.","","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Converts a vector of columns associated with the parquet …","","","","","","","","","","","","Total byte size of all uncompressed column data in this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the total uncompressed data size of this column …","version of this file.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","Advances the iterator to the next position.","Advances the state of the iterator to the next item from …","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Borrows an iterator, rather than consuming it.","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","Calls a closure on each element of an iterator.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Advances the iterator, returning the next element.","Advances the back of the iterator, returning the last …","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","ColumnPageStatistics contains the minimum, maximum, and …","Page statistics of an Arrow field.","An enum describing a page that was either selected in a …","An interval","Variant used for fields with multiple parquet columns …","Variant used for fields with a single parquet column (e.g. …","","","","","","","","","","","","","","","Returns the set of (row) intervals of the pages.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Checks whether the row group have page index information …","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Its length","","The maximum values in the pages","The minimum values in the pages","Create a new interal","The number of null values in the pages.","","Reads the column indexes from the reader assuming a valid …","Reads all page locations and index locations (IO-bounded) …","rows to select from the page","Its start","Location of the page in the file","","","","","","","","","","","","","","","","","","","Metadata for a Parquet file.","","Wrapper struct to store key values","Representation of a Parquet type describing primitive and …","","A schema descriptor. This encapsulates the top-level …","Column (sort) order used for min and max values of each …","String message for application that wrote this file.","Infers a Schema from parquet’s FileMetaData. This first …","","key_value_metadata of this file.","number of rows in the file.","Converts ParquetTypes to a Field, ignoring parquet fields …","Reads an arrow schema from Parquet’s file metadata. …","The row groups of this file","schema descriptor.","","version of this file.","","","","","Arrow-deserialized parquet Statistics of a file","","","","","Deserializes the statistics in the column chunks from all …","number of dictinct values. This is a UInt64Array for …","","","","","Returns the argument unchanged.","","Calls U::from(self).","Maximum","Minimum","number of nulls. This is a UInt64Array for non-nested types","","","","","Bit packed encoding. This can only be used if the data …","","","Represents a valid brotli compression level.","","Encoding for floating-point data. K byte-streams are …","A CompressedDataPage is compressed, encoded representation …","A CompressedPage is a compressed, encoded representation …","Defines the compression settings for writing a parquet …","A FallibleStreamingIterator that consumes Page and yields …","A DataPage","","Delta encoding for integers. This can be used for int …","Incremental-encoded byte array. Prefix lengths are encoded …","Encoding for byte arrays to separate the length values and …","A descriptor of a parquet column. It contains the …","A DictPage","","","DynIter is an implementation of a single-threaded, …","Dynamically-typed FallibleStreamingIterator.","","The error type of iteration.","A fallible, streaming iterator.","Common type information.","Metadata for a Parquet file.","Sink that writes array chunks as a Parquet file.","An interface to write a parquet to a Write","","","","","Represents a valid gzip compression level.","","","","The type being iterated over.","Wrapper struct to store key values","a list","a list","","","","Descriptor of nested information of a field","A Page is an uncompressed, encoded representation of a …","The set of all physical types representable in Parquet","Representation of a Parquet type describing primitive and …","Default encoding. BOOLEAN - 1 bit per value. 0 is false; 1 …","Deprecated: Dictionary encoding. The values in the …","a primitive (leaf or parquet column) bitmap, _, length","","Group packed run length encoding. Usable for …","Dictionary encoding: the ids are encoded using the RLE …","","An iterator adapter that converts an iterator over Chunk …","A schema descriptor. This encapsulates the top-level …","","a struct","Description for file metadata","","","","The parquet version to use","Currently supported options to write to parquet","","Represents a valid zstd compression level.","","","","","","","","","","","","","","","","","Advances the iterator to the next position.","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Returns a vector of iterators of Page, one per leaf column …","Converts an Array to a CompressedPage based on options, …","Converts an Array to a CompressedPage based on options, …","Returns an iterator of Page.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","Checks whether the data_type can be encoded as encoding. …","Checks if sub_type schema is part of current schema. This …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns column order for ith column in this file. If …","Sort order used for the min_value and max_value fields in …","Column (sort) order used for min and max values of each …","The ColumnDescriptor (leafs) of this schema.","","","Compresses an [EncodedPage] into a CompressedPage using …","","The compression of the data in this page. Note that what …","The compression to apply to every page","Returns the compression level.","Returns the compression level.","Returns the compression level.","Returns the number of remaining elements in the iterator.","String for application that wrote this file. This should …","String message for application that wrote this file.","The size to flush a page, defaults to 1024 * 1024 if None","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Encryption algorithm. This field is set only in encrypted …","Writes the footer of the parquet file. Returns the total …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The schemas’ fields.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","","","","","","","","","","","","","","","","","","","Retrieval metadata of key used for signing the footer. …","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Helper method to create a ParquetType::PrimitiveType …","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","Returns FieldInfo information about the type.","Get the length of Array that should be sliced.","","","","","","","","","","","","","the optional id, to select fields by id","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Deconstructs itself into its iterator and scratch buffer.","Consumes this writer and returns the inner writer","Returns the underlying writer and ThriftFileMetaData","","","Serializes itself to thrift’s …","","","","","returns the metadata","Optional key/value metadata *","key_value_metadata of this file.","Returns the length (number of rows) of the element","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","The maximum definition level","The maximum repetition level","Key-value metadata that will be written to the file on …","The schemas’ name.","Returns this type’s field name.","The field name","Creates a new Compressor","Returns a new DynIter, boxing the incoming iterator","Returns a new DynStreamingIterator, boxing the incoming …","","","Creates new schema descriptor from Parquet schema.","Returns a new CompressedDataPage.","Creates a new Compressor (same as new)","Advances the iterator, returning the next element.","","","Returns the nth element of the iterator.","Number of rows in this file *","number of rows in the file.","return number values of the nested","","The options assigned to the file","The write options for the file.","The SchemaDescriptor assigned to this file","Returns the SchemaDescriptor of the RowGroupIterator.","The Parquet SchemaDescriptor for the file.","","","","","","Returns the position of the first element matching a …","The PrimitiveType of this column","","","","","The repetition","Maps a Chunk and parquet-specific options to an …","Row groups in this file *","The row groups of this file","Returns the SchemaDescriptor that describes schema of this …","The Schema assigned to this file","The Arrow Schema for the file.","Parquet schema for this file. This schema contains …","schema descriptor.","","the rows to be selected by this page. When None, all rows …","Returns bounds on the number of remaining elements in the …","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","returns offset and length to slice the leaf values","Slices the Array to Box<dyn Array> and Vec<Nested>.","","Decodes the raw statistics into a statistics","","","","","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Convert Array to Vec<&dyn Array> leaves in DFS order.","Constructs the necessary Vec<Vec<Nested>> to write the rep …","","","","","","","","","","","","","","","","","Convert ParquetType to Vec<ParquetPrimitiveType> leaves in …","Creates a parquet SchemaDescriptor from a Schema.","Creates a ParquetType from a Field.","Transverses the data_type up to its (parquet) columns and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a schema from","Error","Deserializes crate::thrift_format::FileMetaData into this …","Method to convert from Thrift.","","","","","","","","","","","","","","","","","","","","","","","","","","Attempts to create a brotli compression level.","Attempts to create a gzip compression level.","Attempts to create a zstd compression level from a given …","Returns a new FileWriter.","Creates a new RowGroupIterator from an iterator over Chunk.","Create a new sink that writes arrays to the provided writer…","","","","","","","","","","","","","","","","","","","","","","","","","","","","Version of this file *","version of this file.","The page and file version to use","","","","","","","","","","","","","","","","","","","","","","","","","","Writes a row group to the file.","writes the def levels to a Vec<u8> and returns it.","Writes a parquet file containing only the header and footer","Write repetition_levels and definition_levels to buffer.","Whether to write statistics","","","","","","","","","Memory maps dictionaries from an IPC file into","Memory maps an record batch from an IPC file into a Chunk.","Whether it is i32 (false) or i64 (true).","Sealed trait describing the subset (i32 and i64) of Index …","A wrapper type of Vec<O> representing the invariants of …","A wrapper type of Buffer<O> that is guaranteed to:","","","Returns the byte slice stored in this buffer","Returns the byte slice stored in this buffer","","","","","Returns a reference to its internal Buffer.","Returns the capacity of Offsets.","","","","","","","","","","","","","","","","","","","","Extends itself with additional elements equal to the last …","Returns the first offset.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Returns the inner Vec.","Returns the inner Buffer.","Copy-on-write API to convert OffsetsBuffer into Offsets.","Returns the last offset of this container.","Returns the last offset.","Returns the number of offsets in this container.","Returns the number of offsets in this container.","Returns the length an array with these offsets would be.","Returns the length an array with these offsets would be.","Returns an iterator with the lengths of the offsets","Returns an empty Offsets (i.e. with a single element, the …","Returns an empty OffsetsBuffer (i.e. with a single …","Returns Offsets assuming that offsets fulfills its …","Safety","Returns an Offsets whose all lengths are zero.","Pops the last element","Returns the range of the offsets.","Reserves additional entries.","Shrinks the capacity of self to fit.","Slices this OffsetsBuffer.","Slices this OffsetsBuffer starting at offset.","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","","","Try extend from an iterator of lengths","Extends itself from another Offsets","Extends itself from another Offsets sliced by start, length","","","","","","","","Creates a new Offsets from an iterator of lengths","Try to create a new Offsets from a sequence of lengths","","","Pushes a new element with a given length.","Pushes a new element with a given length.","","","","","Returns a new Offsets with a capacity, allocating at least …","The Scalar implementation of binary (Option<Vec<u8>>).","The Scalar implementation of a boolean.","The DictionaryArray equivalent of Array for Scalar.","The Scalar implementation of fixed size binary ([…","The scalar equivalent of FixedSizeListArray. Like …","The scalar equivalent of ListArray. Like ListArray, this …","The scalar equivalent of MapArray. Like MapArray, this …","The representation of a single entry of a …","The implementation of Scalar for primitive, semantically …","Trait object declaring an optional value with a DataType. …","A single entry of a crate::array::StructArray.","A single entry of a crate::array::UnionArray.","The implementation of Scalar for utf8, semantically …","","","","","","","","","","","","","convert itself to","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","the logical type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","whether it is valid","","","","","","","","","","","","","returns a new DictionaryScalar","Returns a new PrimitiveScalar.","Returns a new Utf8Scalar","Returns a new BinaryScalar.","Returns a new BooleanScalar","returns a new ListScalar","returns a new MapScalar","A new NullScalar","Returns a new StructScalar","returns a new FixedSizeListScalar","Returns a new FixedSizeBinaryScalar.","Returns a new UnionScalar","creates a new Scalar from an Array.","Returns a new PrimitiveScalar with the same value but …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the type of the union scalar","","","","","","","","","","","","","The values of the DictionaryScalar","Returns the optional value.","Returns the value irrespectively of the validity.","Its value","The value","Its value","Returns the inner value","The values of the ListScalar","The values of the MapScalar","Returns the values irrespectively of the validity.","The values of the FixedSizeListScalar","","","","","","","","","","","","","Number of days between 0001-01-01 and 1970-01-01","Number of microseconds in a second","Number of milliseconds in a second","Number of milliseconds in a day","Number of nanoseconds in a second","Number of seconds in a day","Adds an interval to a timestamp in time_unit units and …","Adds an interval to a timestamp in time_unit units without …","converts a i32 representing a date32 to NaiveDate","converts a i32 representing a date32 to NaiveDateTime","converts a i64 representing a date64 to NaiveDate","converts a i64 representing a date64 to NaiveDateTime","Parses an offset of the form "+WX:YZ" or "UTC" into …","Parses value to a chrono_tz::Tz with the Arrow’s …","converts a i32 representing a time32(ms) to NaiveTime","converts a i32 representing a time32(s) to NaiveTime","converts a i64 representing a time64(ns) to NaiveTime","converts a i64 representing a time64(us) to NaiveTime","converts a i64 representing a timestamp(ms) to …","converts a i64 representing a timestamp(ns) to …","converts a i64 representing a timestamp(s) to NaiveDateTime","Converts a timestamp in time_unit and timezone into …","Converts a timestamp in time_unit and timezone into …","converts a i64 representing a timestamp(us) to …","Calculates the scale factor between two TimeUnits. The …","Parses a Utf8Array to naive timestamp, i.e. …","Parses value to Option<i64> consistent with the Arrow’s …","Parses value to Option<i64> consistent with the Arrow’s …","Parses a Utf8Array to a timeozone-aware timestamp, i.e. …","Parses value to Option<i64> consistent with the Arrow’s …","Parses value to Option<i64> consistent with the Arrow’s …","An iterator of known, fixed size. A trait denoting Rusts’…","A chunk of bits. This is used to create masks of a given …","An [Iterator<Item=bool>] over a BitChunk. This iterator is …","An [Iterator<Item=usize>] over a BitChunk returning the …","Type denoting its representation as bytes. This is [u8; N] …","Two i32 representing days and ms","The difference between 1.0 and the next largest …","A 16-bit floating point number.","A 32-bit floating point number.","A 64-bit floating point number.","Whether it is i32 (false) or i64 (true).","Sealed trait describing the subset of NativeType (i32, i64…","Range of Index, equivalent to (a..b). Step is unstable in …","A signed 128-bit integer.","A signed 16-bit integer.","A signed 256-bit integer.","A signed 32-bit integer.","A signed 64-bit integer.","A signed 8-bit integer.","months_days_ns(i32, i32, i64)","Sealed trait implemented by all physical types that can be …","Sealed trait describing the subset (i32 and i64) of Index …","The corresponding variant of PrimitiveType.","The set of all implementations of the sealed trait …","An unsigned 16-bit integer.","An unsigned 32-bit integer.","An unsigned 64-bit integer.","An unsigned 8-bit integer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The number of days","The number of days","The in-memory representation of the DayMillisecond variant …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Type representation of the Float16 physical type","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert itself from usize.","From bytes in big endian","","","","","Casts from u16.","Casts an f32 into f16","From bytes in little endian","","","","","convert itself from bytes.","Convert itself from usize.","Returns a new i256 from two i128.","","","","Physical representation of a decimal","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","The number of milliseconds","The number of months","The in-memory representation of the MonthDayNano variant …","","","","Creates a new BitChunkIter with len bits.","Creates a new BitChunkOnes with len bits.","Returns a new IndexRange.","A new days_ms.","A new months_days_ns.","","","","The number of nanoseconds","","An iterator from (inclusive) start to (exclusive) end.","Contains traits and implementations of multi-data used in …","","","","To bytes in big endian","","","","","Casts to u16.","Casts this f16 to f32","To bytes in little endian","","","","","convert itself into bytes.","","","","","","","","","Convert itself to usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The type holding bits for masks.","Describes the ability to convert itself from a BitChunk.","Number of lanes","Type used for masking.","The NativeType of this struct. E.g. f32 for a …","A struct that lends itself well to be compiled leveraging …","Trait implemented by some NativeType that have a SIMD …","The SIMD type associated with this trait. This type …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a tuple of 3 items whose middle item is itself, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert itself from a slice.","Convert itself from a slice.","","","","","","","","","","","","","","","","creates a new Self from v by populating items from v up to …","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","Sets values to default based on mask.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","Converts numeric type to a String","Converts numeric type to a String","Converts numeric type to a String","Given local time representation has multiple results and …","April","August","Automatically select one of Secs, Millis, Micros, or Nanos …","ISO 8601 calendar date with time zone.","ISO 8601 combined date and time with time zone.","The common set of methods for date component.","A duration in calendar days.","December","ISO 8601 time duration with nanosecond precision.","Error when Duration.num_nanoseconds exceeds the limit.","Error when the Duration exceeds the Duration from or until …","Extension trait for rounding or truncating a DateTime by a …","Error that can occur in rounding or truncating","February","The time zone with fixed offset, from UTC-23:59:59 to …","Friday.","ISO 8601 week.","January","July","June","The local timescale. This is implemented via the standard …","The conversion result from the local time to the …","The maximum possible NaiveDate (December 31, 262143 CE).","The maximum possible NaiveDateTime.","The maximum possible Date.","The maximum possible DateTime<Utc>.","The maximum possible Date.","The maximum possible DateTime<Utc>.","The minimum possible NaiveDate (January 1, 262145 BCE).","The minimum possible NaiveDateTime.","The earliest possible NaiveTime","The minimum possible Date.","The minimum possible DateTime<Utc>.","The minimum possible Date.","The minimum possible DateTime<Utc>.","March","May","Use fixed 6 subsecond digits. This corresponds to …","Use fixed 3 subsecond digits. This corresponds to …","Monday.","The month of the year.","A duration in calendar months","ISO 8601 calendar date without timezone. Allows for every …","ISO 8601 combined date and time without timezone.","ISO 8601 time without timezone. Allows for the nanosecond …","A week represented by a NaiveDate and a Weekday which is …","Use fixed 9 subsecond digits. This corresponds to …","Given local time representation is invalid. This can occur …","November","October","The offset from the local time to UTC.","An associated offset type. This type is used to store the …","Out of range error type used in various converting APIs","Represents error when converting Duration to/from a …","An error from the parse function.","An error resulting from reading <Month> value with FromStr.","Same as Result<T, ParseError>.","An error resulting from reading Weekday value with FromStr.","An error from rounding by Duration","Saturday.","Specific formatting options for seconds. This may be …","Format whole seconds only, with no decimal point nor …","September","Given local time representation has a single unique result.","Extension trait for subsecond rounding or truncation to a …","Sunday.","Thursday.","The time zone.","The common set of methods for time component.","Error when DateTime.timestamp_nanos exceeds the limit.","Tuesday.","The UTC time zone. This is the most efficient time zone …","Wednesday.","The day of week.","","","","","","","","","","","","","","","","","","","","","","","Returns the duration as an absolute (non-negative) value.","","","","","","","","An addition of months to NaiveDate clamped to valid days …","","An addition of months to NaiveDateTime clamped to valid …","","","","","","","","","","","Makes a new DateTime from the current date, hour, minute …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute …","Converts the NaiveDateTime into the timezone-aware …","Makes a new DateTime from the current date and given …","Makes a new NaiveDateTime from the current date and given …","Makes a new DateTime from the current date and given …","Converts the NaiveDateTime into the timezone-aware …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Add two durations, returning None if overflow occurred.","Add a duration in Days to the date part of the DateTime","Add a duration in Days to the date","Add a duration in Days to the date part of the …","Adds given Months to the current date and time.","Add a duration in Months to the date","Adds given Months to the current date and time.","Adds given Duration to the current date.","Adds given Duration to the current date and time.","Adds the days part of given Duration to the current date.","Adds given Duration to the current date and time.","Subtract two durations, returning None if overflow …","Subtract a duration in Days from the date part of the …","Subtract a duration in Days from the date","Subtract a duration in Days from the date part of the …","Subtracts given Months from the current date and time.","Subtract a duration in Months from the date","Subtracts given Months from the current date and time.","Subtracts given Duration from the current date.","Subtracts given Duration from the current date and time.","Subtracts the days part of given Duration from the current …","Subtracts given Duration from the current date and time.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Retrieves a date component","Retrieves a date component.","Retrieves the Date without an associated timezone","Parses a string with the specified format string and …","Returns the day of month starting from 1.","","","Returns the day of month starting from 1.","Returns the day of month starting from 1.","Returns the day of month starting from 0.","","","Returns the day of month starting from 0.","Returns the day of month starting from 0.","Makes a new Duration with given number of days. Equivalent …","Returns a RangeInclusive<T> representing the whole week …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return a copy rounded by Duration.","","","Return a copy truncated by Duration.","","","Returns Some for the earliest possible conversion result, …","Makes a new FixedOffset for the Eastern Hemisphere with …","Makes a new FixedOffset for the Eastern Hemisphere with …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a date representing the first day of the week.","Returns the fixed offset from UTC to the local time stored.","","","Fix the offset from UTC to its current value, dropping the …","Format a duration using the ISO 8601 format","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Formatting (and parsing) utilities for date and time.","Formats the date with the specified format string. See the …","Formats the combined date and time per the specified …","Formats the date with the specified format string. See the …","Formats the combined date and time with the specified …","Formats the time with the specified format string. See the …","Formats the date with the specified formatting items.","Formats the combined date and time with the specified …","Formats the date with the specified formatting items. …","Formats the combined date and time with the specified …","Formats the time with the specified formatting items. …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert this DateTime<Local> instance into a DateTime<Utc> …","","Convert this DateTime<Utc> instance into a …","Convert this DateTime<FixedOffset> instance into a …","","Convert this DateTime<Utc> instance into a DateTime<Local> …","Convert this DateTime<Local> instance into a …","Convert this DateTime<FixedOffset> instance into a …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Makes a new NaiveTime from hour, minute and second.","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute and second.","","","Makes a new NaiveDate from the ISO week date (year, week …","Makes a new NaiveDate from the ISO week date (year, week …","Makes a new DateTime with given local datetime and offset …","Converts the local NaiveDate to the timezone-aware Date if …","Converts the local NaiveDateTime to the timezone-aware …","Makes a new NaiveDate from a day’s number in the …","Makes a new NaiveDate from a day’s number in the …","Makes a new NaiveTime from the number of seconds since …","Makes a new NaiveTime from the number of seconds since …","Reconstructs the time zone from the offset.","","","","Creates a time::Duration object from std::time::Duration","","","","","","","","","Makes a new NaiveDateTime corresponding to a UTC date and …","Creates a new NaiveDateTime from microseconds since the …","Creates a new NaiveDateTime from milliseconds since the …","Makes a new NaiveDateTime corresponding to a UTC date and …","","","Returns an Option<Month> from a i64, assuming a 1-index, …","Makes a new Date with given UTC date and offset. The local …","Makes a new DateTime with given UTC datetime and offset. …","Converts the UTC NaiveDate to the local time. The UTC is …","Converts the UTC NaiveDateTime to the local time. The UTC …","Makes a new NaiveDate by counting the number of …","Makes a new NaiveDate by counting the number of …","Makes a new NaiveDate from the calendar date (year, month …","Makes a new NaiveDate from the calendar date (year, month …","Makes a new NaiveDate from the ordinal date (year and day …","Makes a new NaiveDate from the ordinal date (year and day …","","","","","","","","","","","","","","","","","","Returns the hour number from 0 to 23.","","Returns the hour number from 0 to 23.","Returns the hour number from 0 to 23.","Returns the hour number from 1 to 12 with a boolean flag, …","Makes a new Duration with given number of hours. …","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns true if the duration equals Duration::zero().","Returns the ISO week.","","","","","Makes a new Date from ISO week date (year and week …","Makes a new Date from ISO week date (year and week …","Returns an iterator that steps by days across all …","Returns an iterator that steps by weeks across all …","The category of parse error","Returns a date representing the last day of the week.","Returns Some for the latest possible conversion result, or …","","","","Returns the number of seconds to add to convert from UTC …","Maps a LocalResult<T> into LocalResult<U> with given …","The maximum possible Duration: i64::MAX milliseconds.","Makes a new Duration with given number of microseconds.","Makes a new Duration with given number of milliseconds.","The minimum possible Duration: i64::MIN milliseconds.","Returns the minute number from 0 to 59.","","Returns the minute number from 0 to 59.","Returns the minute number from 0 to 59.","Makes a new Duration with given number of minutes. …","Returns the month number starting from 1.","","","Returns the month number starting from 1.","Returns the month number starting from 1.","Returns the month number starting from 0.","","","Returns the month number starting from 0.","Returns the month number starting from 0.","","Date and time types unconcerned with timezones.","Returns a view to the naive local date.","Returns a view to the naive local datetime.","Returns a view to the naive UTC date.","Returns a view to the naive UTC datetime.","Get the name of the month","Returns the number of nanoseconds since the whole non-leap …","","Returns the number of nanoseconds since the whole non-leap …","Returns the number of nanoseconds since the whole non-leap …","Makes a new Duration with given number of nanoseconds.","","Construct a new Days from a number of days","Makes a new NaiveDateTime from date and time components. …","Construct a new Months from a number of months","","","Returns a DateTime which corresponds to the current date …","","Returns a DateTime which corresponds to the current date …","Returns the total number of whole days in the duration.","Counts the days in the proleptic Gregorian calendar, with …","Returns a day-of-week number starting from Monday = 0.","Returns a day-of-week number starting from Sunday = 0.","Returns the total number of whole hours in the duration.","Returns the total number of whole microseconds in the …","Returns the total number of whole milliseconds in the …","Returns the total number of whole minutes in the duration.","Returns the total number of whole nanoseconds in the …","Returns the total number of whole seconds in the duration.","Returns the number of non-leap seconds past the last …","Returns the number of non-leap seconds past the last …","Returns the total number of whole weeks in the duration.","Returns a day-of-week number starting from Monday = 1. …","Returns a month-of-year number starting from January = 1.","Returns a day-of-week number starting from Sunday = 1.","The time zone, which calculates offsets from the local …","Retrieves an associated offset from UTC.","Retrieves an associated offset from UTC.","Creates the offset(s) for given local NaiveDate if …","","","","Creates the offset(s) for given local NaiveDateTime if …","","","","Creates the offset for given UTC NaiveDate. This cannot …","","","","Creates the offset for given UTC NaiveDateTime. This …","","","","Returns the day of year starting from 1.","","","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Returns the day of year starting from 0.","","","Returns the day of year starting from 0.","Returns the day of year starting from 0.","Adds given Duration to the current time, and also returns …","Subtracts given Duration from the current time, and also …","Parses a string from a user-specified format into a …","Parses a string from a user-specified format into a new …","Parses a string with the specified format string and …","Parses a string from a user-specified format into a new …","Parses an RFC 2822 date-and-time string into a …","Parses an RFC 3339 date-and-time string into a …","Parses a string from a user-specified format into a …","Parses a string with the specified format string and …","Parses a string with the specified format string and …","Parses a string with the specified format string and …","","","Compare two DateTimes based on their true time, ignoring …","","","","","","","","Makes a new Date for the prior date.","Makes a new NaiveDate for the previous calendar date.","The previous day in the week.","The previous month.","Makes a new Date for the prior date.","Makes a new NaiveDate for the previous calendar date.","A convenience module appropriate for glob imports (…","","","","","","Return a copy rounded to the specified number of subsecond …","","","","Returns the second number from 0 to 59.","","Returns the second number from 0 to 59.","Returns the second number from 0 to 59.","Makes a new Duration with given number of seconds. Panics …","Subtracts another Date from the current date. Returns a …","Subtracts another DateTime from the current date and time. …","Subtracts another NaiveDate from the current date. Returns …","Subtracts another NaiveDateTime from the current date and …","Subtracts another NaiveTime from the current time. Returns …","Returns Some only when the conversion result is unique, or …","","","","","","","","","A subtraction of Months from NaiveDate clamped to valid …","","","","","","","","","","","","","","","","","Makes a new Date for the next date.","Makes a new NaiveDate for the next calendar date.","The next day in the week.","The next month.","Makes a new Date for the next date.","Makes a new NaiveDate for the next calendar date.","","","Retrieves a time component. Unlike date, this is not …","Retrieves a time component.","Makes a new DateTime from the number of non-leap seconds …","Returns the number of non-leap seconds since January 1, …","Returns the number of non-leap seconds since the midnight …","Returns the number of non-leap-microseconds since January …","Returns the number of non-leap microseconds since midnight …","Makes a new DateTime from the number of non-leap …","Returns the number of non-leap-milliseconds since January …","Returns the number of non-leap milliseconds since midnight …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Returns the number of non-leap-nanoseconds since January …","Returns the number of non-leap nanoseconds since midnight …","Makes a new DateTime from the number of non-leap seconds …","Returns the number of microseconds since the last second …","Returns the number of microseconds since the last whole …","Returns the number of milliseconds since the last second …","Returns the number of milliseconds since the last whole …","Returns the number of nanoseconds since the last second …","Returns the number of nanoseconds since the last whole …","Retrieves an associated time zone.","Retrieves an associated time zone.","","","","","","","","","","","","","","","","","","","","","","","Returns an RFC 2822 date and time string such as …","Returns an RFC 3339 and ISO 8601 date and time string such …","Return an RFC 3339 and ISO 8601 date and time string with …","Creates a std::time::Duration object from time::Duration","","","","","","","","","","","","","","","Returns a Date which corresponds to the current date.","Returns a Date which corresponds to the current date.","Return a copy truncated to the specified number of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the single unique conversion result, or panics …","Returns the number of seconds to add to convert from the …","","","","","","","","","","","","","","","","","","","","","","","","Returns the NaiveWeek that the date belongs to, starting …","Returns the ISO week number starting from 1.","Returns the ISO week number starting from 0.","","Returns the day of week.","","","Returns the day of week.","Returns the day of week.","Makes a new Duration with given number of weeks. …","Makes a new FixedOffset for the Western Hemisphere with …","Makes a new FixedOffset for the Western Hemisphere with …","Makes a new value with the day of month (starting from 1) …","","","Makes a new NaiveDate with the day of month (starting from …","Makes a new NaiveDateTime with the day of month (starting …","Makes a new value with the day of month (starting from 0) …","","","Makes a new NaiveDate with the day of month (starting from …","Makes a new NaiveDateTime with the day of month (starting …","Makes a new value with the hour number changed.","","Makes a new NaiveDateTime with the hour number changed.","Makes a new NaiveTime with the hour number changed.","Makes a new value with the minute number changed.","","Makes a new NaiveDateTime with the minute number changed.","Makes a new NaiveTime with the minute number changed.","Makes a new value with the month number (starting from 1) …","","","Makes a new NaiveDate with the month number (starting from …","Makes a new NaiveDateTime with the month number (starting …","Makes a new value with the month number (starting from 0) …","","","Makes a new NaiveDate with the month number (starting from …","Makes a new NaiveDateTime with the month number (starting …","Makes a new value with nanoseconds since the whole …","","Makes a new NaiveDateTime with nanoseconds since the whole …","Makes a new NaiveTime with nanoseconds since the whole …","Makes a new value with the day of year (starting from 1) …","","","Makes a new NaiveDate with the day of year (starting from …","Makes a new NaiveDateTime with the day of year (starting …","Makes a new value with the day of year (starting from 0) …","","","Makes a new NaiveDate with the day of year (starting from …","Makes a new NaiveDateTime with the day of year (starting …","Makes a new value with the second number changed.","","Makes a new NaiveDateTime with the second number changed.","Makes a new NaiveTime with the second number changed.","Changes the associated time zone. This does not change the …","Changes the associated time zone. The returned DateTime …","Makes a new value with the year number changed.","","","Makes a new NaiveDate with the year number changed.","Makes a new NaiveDateTime with the year number changed.","Make a new DateTime from year, month, day, time components …","Returns the year number in the calendar date.","","","Returns the year number in the calendar date.","Returns the year number in the calendar date.","Returns the year number for this ISO week.","Returns the absolute year number starting from 1 with a …","Returns the number of whole years from the given base …","Retrieve the elapsed years from now to the given DateTime.","Returns the number of whole years from the given base …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, day of year (DOY or “ordinal…","Makes a new Date from year, day of year (DOY or “ordinal…","A duration where the stored seconds and nanoseconds are …","There was an error on the formatting string, or there were …","Day of the month (FW=PW=2).","A temporary object which can be used as an argument to …","Issues a formatting error. Used to signal an invalid …","Fixed-format item types.","Fixed-format item.","Hour number in the 24-hour clocks (FW=PW=2).","Hour number in the 12-hour clocks (FW=PW=2).","There is no possible date and time value with given set of …","Internal uses only.","Internal uses only.","An opaque type representing fixed-format item types for …","An opaque type representing numeric item types for …","The input string has some invalid character sequence for …","Week number in the ISO week date (FW=PW=2).","Year in the ISO week date (FW=4, PW=∞). May accept years …","Year in the ISO week date, divided by 100 (FW=PW=2). …","Year in the ISO week date, modulo 100 (FW=PW=2). Cannot be …","A single formatting item. This is used for both formatting …","A literally printed and parsed text.","Full month names.","Full day of the week names.","AM/PM.","The number of minutes since the last whole hour (FW=PW=2).","Month (FW=PW=2).","The number of nanoseconds since the last whole second …","An optional dot plus one or more digits for left-aligned …","Same as Nanosecond but the accuracy is fixed to 3.","Same as Nanosecond but the accuracy is fixed to 6.","Same as Nanosecond but the accuracy is fixed to 9.","No padding.","Given set of fields is not enough to make a requested date …","Day of the week, where Sunday = 0 and Saturday = 6 …","Numeric item types. They have associated formatting width …","Numeric item. Can be optionally padded to the maximal …","Day of the year (FW=PW=3).","Given field is out of permitted range.","Same as Literal but with the string owned by the item.","Same as Space but with the string owned by the item.","Padding characters for numeric items.","An error from the parse function.","The category of parse error","Same as Result<T, ParseError>.","Parsed parts of date and time. There are two classes of …","RFC 2822 date and time syntax. Commonly used for email and …","RFC 3339 & ISO 8601 date and time syntax.","The number of seconds since the last whole minute …","Abbreviated month names.","Abbreviated day of the week names.","Space padding.","Whitespace. Prints literally but reads zero or more …","Parsing iterator for strftime-like format strings.","The number of non-leap seconds since the midnight UTC on …","Timezone name.","Same as TimezoneOffsetColon but prints no colon. Parsing …","Offset from the local time to UTC (+09:00 or -04:00 or …","Offset from the local time to UTC (+09:00 or -04:00 or Z).","Offset from the local time to UTC with seconds (+09:00:00 …","Offset from the local time to UTC without minutes (+09 or …","Same as TimezoneOffsetColonZ but prints no colon. Parsing …","All formatting items have been read but there is a …","The input string has been prematurely ended.","AM/PM.","Week number, where the week 1 starts at the first Monday …","Week number, where the week 1 starts at the first Sunday …","Day of the week, where Monday = 1 and Sunday = 7 (FW=PW=1).","Full Gregorian year (FW=4, PW=∞). May accept years …","Gregorian year divided by 100 (century number; FW=PW=2). …","Gregorian year modulo 100 (FW=PW=2). Cannot be negative.","Zero (0) padding.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Day of the month (1–28, 1–29, 1–30 or 1–31 …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Tries to format given arguments with given formatting …","Formats single formatting item","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Hour number divided by 12 (0–1). 0 indicates AM and 1 …","Hour number modulo 12 (0–11).","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","ISO week number (1–52 or 1–53 depending on the year).","Year in the ISO week date.","Year in the ISO week date, divided by 100. Implies that …","Year in the ISO week date, modulo 100. Implies that the …","Minute number (0–59).","Month (1–12).","The number of nanoseconds since the whole second (0–…","Returns the initial value of parsed parts.","Creates a new parsing iterator from the strftime-like …","Makes a new DelayedFormat value out of local date and time.","Makes a new DelayedFormat value out of local date and time …","","Offset from the local time to UTC, in seconds.","Day of the year (1–365 or 1–366 depending on the year).","Tries to parse given string into parsed with given …","Tries to parse given string into parsed with given …","Second number (0–60, accounting for leap seconds).","Tries to set the hour_div_12 field from given value. (false…","Tries to set the day field from given value.","Tries to set both hour_div_12 and hour_mod_12 fields from …","Tries to set the hour_mod_12 field from given hour number …","Tries to set the isoweek field from given value.","Tries to set the isoyear field from given value.","Tries to set the isoyear_div_100 field from given value.","Tries to set the isoyear_mod_100 field from given value.","Tries to set the minute field from given value.","Tries to set the month field from given value.","Tries to set the nanosecond field from given value.","Tries to set the offset field from given value.","Tries to set the ordinal field from given value.","Tries to set the second field from given value.","Tries to set the timestamp field from given value.","Tries to set the week_from_mon field from given value.","Tries to set the week_from_sun field from given value.","Tries to set the weekday field from given value.","Tries to set the year field from given value.","Tries to set the year_div_100 field from given value.","Tries to set the year_mod_100 field from given value.","strftime/strptime-inspired date and time formatting syntax.","The number of non-leap seconds since the midnight UTC on …","Returns a parsed timezone-aware date and time out of given …","Returns a parsed timezone-aware date and time out of given …","Returns a parsed fixed time zone offset out of given …","Returns a parsed naive date out of given fields.","Returns a parsed naive date and time out of given fields, …","Returns a parsed naive time out of given fields.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Week number, where the week 1 starts at the first Monday …","Week number, where the week 1 starts at the first Sunday …","Day of the week.","Year.","Year divided by 100. Implies that the year is >= 1 BCE …","Year modulo 100. Implies that the year is >= 1 BCE when …","Parsing iterator for strftime-like format strings.","A duration in calendar days.","ISO 8601 week.","The maximum possible NaiveDate (December 31, 262143 CE).","The maximum possible NaiveDateTime.","The minimum possible NaiveDate (January 1, 262145 BCE).","The minimum possible NaiveDateTime.","ISO 8601 calendar date without timezone. Allows for every …","ISO 8601 combined date and time without timezone.","ISO 8601 time without timezone. Allows for the nanosecond …","A week represented by a NaiveDate and a Weekday which is …","Given local time representation has multiple results and …","The time zone with fixed offset, from UTC-23:59:59 to …","The local timescale. This is implemented via the standard …","The conversion result from the local time to the …","Given local time representation is invalid. This can occur …","The offset from the local time to UTC.","An associated offset type. This type is used to store the …","Given local time representation has a single unique result.","The time zone.","The UTC time zone. This is the most efficient time zone …","Parses a string with the specified format string and …","Returns the fixed offset from UTC to the local time stored.","Converts the local NaiveDate to the timezone-aware Date if …","Converts the local NaiveDateTime to the timezone-aware …","Reconstructs the time zone from the offset.","Converts the UTC NaiveDate to the local time. The UTC is …","Converts the UTC NaiveDateTime to the local time. The UTC …","Makes a new Date from ISO week date (year and week …","Makes a new Date from ISO week date (year and week …","Creates the offset(s) for given local NaiveDate if …","Creates the offset(s) for given local NaiveDateTime if …","Creates the offset for given UTC NaiveDate. This cannot …","Creates the offset for given UTC NaiveDateTime. This …","Makes a new DateTime from the number of non-leap seconds …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap seconds …","Make a new DateTime from year, month, day, time components …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, day of year (DOY or “ordinal…","Makes a new Date from year, day of year (DOY or “ordinal…","April","August","Automatically select one of Secs, Millis, Micros, or Nanos …","ISO 8601 calendar date with time zone.","ISO 8601 combined date and time with time zone.","The common set of methods for date component.","December","February","The time zone with fixed offset, from UTC-23:59:59 to …","Friday.","January","July","June","The local timescale. This is implemented via the standard …","March","May","Use fixed 6 subsecond digits. This corresponds to …","Use fixed 3 subsecond digits. This corresponds to …","Monday.","The month of the year.","ISO 8601 calendar date without timezone. Allows for every …","ISO 8601 combined date and time without timezone.","ISO 8601 time without timezone. Allows for the nanosecond …","Use fixed 9 subsecond digits. This corresponds to …","November","October","The offset from the local time to UTC.","An associated offset type. This type is used to store the …","Saturday.","Specific formatting options for seconds. This may be …","Format whole seconds only, with no decimal point nor …","September","Extension trait for subsecond rounding or truncation to a …","Sunday.","Thursday.","The time zone.","The common set of methods for time component.","Tuesday.","The UTC time zone. This is the most efficient time zone …","Wednesday.","The day of week.","Parses a string with the specified format string and …","Returns the day of month starting from 1.","Returns the day of month starting from 0.","Returns the fixed offset from UTC to the local time stored.","Converts the local NaiveDate to the timezone-aware Date if …","Converts the local NaiveDateTime to the timezone-aware …","Reconstructs the time zone from the offset.","Converts the UTC NaiveDate to the local time. The UTC is …","Converts the UTC NaiveDateTime to the local time. The UTC …","Returns the hour number from 0 to 23.","Returns the hour number from 1 to 12 with a boolean flag, …","Returns the ISO week.","Makes a new Date from ISO week date (year and week …","Makes a new Date from ISO week date (year and week …","Returns the minute number from 0 to 59.","Returns the month number starting from 1.","Returns the month number starting from 0.","Returns the number of nanoseconds since the whole non-leap …","Counts the days in the proleptic Gregorian calendar, with …","Returns the number of non-leap seconds past the last …","Creates the offset(s) for given local NaiveDate if …","Creates the offset(s) for given local NaiveDateTime if …","Creates the offset for given UTC NaiveDate. This cannot …","Creates the offset for given UTC NaiveDateTime. This …","Returns the day of year starting from 1.","Returns the day of year starting from 0.","Return a copy rounded to the specified number of subsecond …","Returns the second number from 0 to 59.","Makes a new DateTime from the number of non-leap seconds …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap seconds …","Return a copy truncated to the specified number of …","Returns the day of week.","Makes a new value with the day of month (starting from 1) …","Makes a new value with the day of month (starting from 0) …","Makes a new value with the hour number changed.","Makes a new value with the minute number changed.","Makes a new value with the month number (starting from 1) …","Makes a new value with the month number (starting from 0) …","Makes a new value with nanoseconds since the whole …","Makes a new value with the day of year (starting from 1) …","Makes a new value with the day of year (starting from 0) …","Makes a new value with the second number changed.","Makes a new value with the year number changed.","Make a new DateTime from year, month, day, time components …","Returns the year number in the calendar date.","Returns the absolute year number starting from 1 with a …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, day of year (DOY or “ordinal…","Makes a new Date from year, day of year (DOY or “ordinal…","A generic interface for casting between machine scalars …","Numbers which have upper and lower bounds","","","Performs addition that returns None instead of wrapping …","Performs division that returns None instead of panicking …","","Performs multiplication that returns None instead of …","Performs negation that returns None if the result can’t …","Performs an integral remainder that returns None instead …","Performs a left shift that returns None on shifts larger …","Performs a right shift that returns None on shifts larger …","Performs subtraction that returns None instead of wrapping …","Return Euler’s number.","","","Return 1.0 / π.","Return 1.0 / sqrt(2.0).","Return 2.0 / π.","Return 2.0 / sqrt(π).","Return π / 2.0.","Return π / 3.0.","Return π / 4.0.","Return π / 6.0.","Return π / 8.0.","Generic trait for floating point numbers","","","","A generic trait for converting a number to a value.","","Unary operator for retrieving the multiplicative inverse, …","","Return ln(10.0).","Return ln(2.0).","Return log10(2.0).","Return log10(e).","Return log2(10.0).","Return log2(e).","Fused multiply-add. Computes (self * a) + b with only one …","The fused multiply-add assignment operation …","The base trait for numeric types, covering 0 and 1 values, …","The trait for Num types which also implement assignment …","Generic trait for types implementing numeric assignment …","The trait for NumAssign types which also implement …","An interface for casting between machine scalars.","Generic trait for types implementing basic numeric …","The trait for Num types which also implement numeric …","Defines a multiplicative identity element for Self.","The result after applying the operator.","The resulting type after applying the fused multiply-add.","The result after applying the operator.","Return Archimedes’ constant π.","","Binary operator for raising a value to a power.","Generic trait for primitive integers.","The trait for Num references which implement numeric …","Return sqrt(2.0).","Saturating math operations. Deprecated, use SaturatingAdd, …","Performs addition that saturates at the numeric bounds …","Performs multiplication that saturates at the numeric …","Performs subtraction that saturates at the numeric bounds …","Useful functions for signed numbers (i.e. numbers that can …","Return the full circle constant τ.","","A generic trait for converting a value to a number.","A trait for values which cannot be negative","Performs addition that wraps around on overflow.","Performs multiplication that wraps around on overflow.","Performs a negation that does not panic.","Performs a left shift that does not panic.","Performs a right shift that does not panic.","Performs subtraction that wraps around on overflow.","Defines an additive identity element for Self.","Computes the absolute value.","Computes the absolute value of self. Returns Float::nan() …","Computes the absolute value.","The positive difference of two numbers.","The positive difference of two numbers.","The positive difference of two numbers.","Computes the arccosine of a number. Return value is in …","Inverse hyperbolic cosine function.","Convert a value to another, using the as operator.","Computes the arcsine of a number. Return value is in …","Inverse hyperbolic sine function.","Computes the arctangent of a number. Return value is in …","Computes the four quadrant arctangent of self (y) and other…","Inverse hyperbolic tangent function.","","","","","","","Cast from one machine scalar to another.","Take the cubic root of a number.","Returns the smallest integer greater than or equal to a …","Adds two numbers, checking for overflow. If overflow …","Divides two numbers, checking for underflow, overflow and …","Performs euclid division that returns None instead of …","Multiplies two numbers, checking for underflow or …","Negates a number, returning None for results that can’t …","Raises a value to the power of exp, returning None if an …","Finds the remainder of dividing two numbers, checking for …","Finds the euclid remainder of dividing two numbers, …","Checked shift left. Computes self << rhs, returning None …","Checked shift right. Computes self >> rhs, returning None …","Subtracts two numbers, checking for underflow. If …","A value bounded by a minimum and a maximum","A value bounded by a maximum value","A value bounded by a minimum value","Returns the floating point category of the number. If only …","Returns a number composed of the magnitude of self and the …","Computes the cosine of a number (in radians).","Hyperbolic cosine function.","Returns the number of ones in the binary representation of …","Returns the number of zeros in the binary representation …","","","","","Calculates Euclidean division, the matching method for …","","","Returns epsilon, a small positive value.","Returns e^(self), (the exponential function).","Returns 2^(self).","Returns e^(self) - 1 in a way that is accurate even if the …","","Returns the largest integer less than or equal to a number.","","","","Returns the fractional part of a number.","Creates a number from another value that can be converted …","Returns the argument unchanged.","Returns the argument unchanged.","Convert an integer from big endian to the target’s …","Create a number from its representation as a byte array in …","Converts a f32 to return an optional value of this type. …","Converts a f64 to return an optional value of this type. …","Converts an i128 to return an optional value of this type. …","Converts an i16 to return an optional value of this type. …","Converts an i32 to return an optional value of this type. …","Converts an i64 to return an optional value of this type. …","Converts an i8 to return an optional value of this type. …","Converts an isize to return an optional value of this …","Convert an integer from little endian to the target’s …","Create a number from its representation as a byte array in …","Create a number from its memory representation as a byte …","Convert from a string and radix (typically 2..=36).","Converts an u128 to return an optional value of this type. …","Converts an u16 to return an optional value of this type. …","Converts an u32 to return an optional value of this type. …","Converts an u64 to return an optional value of this type. …","Converts an u8 to return an optional value of this type. …","Converts a usize to return an optional value of this type. …","Calculate the length of the hypotenuse of a right-angle …","","Returns the infinite value.","","","","Returns the mantissa, base 2 exponent, and sign as …","Calls U::from(self).","Calls U::from(self).","Returns the multiplicative inverse of self.","Returns true if this number is neither infinite nor NaN.","Returns true if this value is positive infinity or …","Returns true if this value is NaN and false otherwise.","Returns true if the number is negative and false if the …","Returns true if the number is neither zero, infinite, …","Returns true if self is equal to the multiplicative …","Returns true if the number is positive and false if the …","Returns true if self is negative, including -0.0, …","Returns true if self is positive, including +0.0, …","Returns true if the number is subnormal.","Returns true if self is equal to the additive identity.","","Returns the number of leading ones in the binary …","Returns the number of leading zeros in the binary …","Returns the natural logarithm of the number.","Returns ln(1+n) (natural logarithm) more accurately than if","Returns the logarithm of the number with respect to an …","Returns the base 10 logarithm of the number.","Returns the base 2 logarithm of the number.","Returns the maximum of the two numbers.","Returns the largest finite number this type can represent","Returns the largest finite value that this type can …","Returns the minimum of the two numbers.","Returns the smallest positive, normalized value that this …","Returns the smallest finite number this type can represent","Returns the smallest finite value that this type can …","Fused multiply-add. Computes (self * a) + b with only one …","Performs the fused multiply-add operation (self * a) + b","Performs the fused multiply-add assignment operation …","Returns the NaN value.","Returns the negative infinite value.","Returns -0.0.","Returns the multiplicative identity, 1.","Returns the multiplicative identity element of Self, 1.","","","Raises a value to the power of exp, using exponentiation …","Raises self to the power of exp, using exponentiation by …","Returns self to the power rhs.","Raise a number to a floating point power.","Raise a number to an integer power.","","Take the reciprocal (inverse) of a number, 1/x.","Calculates the least nonnegative remainder of self (mod v).","Reverses the order of bits in the integer.","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Returns the nearest integer to a number. Round half-way …","Saturating addition operator. Returns a+b, saturating at …","Saturating addition. Computes self + other, saturating at …","Saturating multiplication. Computes self * other, …","Saturating subtraction operator. Returns a-b, saturating …","Saturating subtraction. Computes self - other, saturating …","Sets self to the multiplicative identity element of Self, 1…","Sets self to the additive identity element of Self, 0.","","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Returns the sign of the number.","Returns a number that represents the sign of self.","Returns the sign of the number.","Computes the sine of a number (in radians).","Simultaneously computes the sine and cosine of the number, …","Hyperbolic sine function.","Take the square root of a number.","Reverses the byte order of the integer.","Computes the tangent of a number (in radians).","Hyperbolic tangent function.","Convert self to big endian from the target’s endianness.","Return the memory representation of this number as a byte …","Converts radians to degrees.","Converts the value of self to an f32. Overflows may map to …","Converts the value of self to an f64. Overflows may map to …","Converts the value of self to an i128. If the value cannot …","Converts the value of self to an i16. If the value cannot …","Converts the value of self to an i32. If the value cannot …","Converts the value of self to an i64. If the value cannot …","Converts the value of self to an i8. If the value cannot be","Converts the value of self to an isize. If the value …","Convert self to little endian from the target’s …","Return the memory representation of this number as a byte …","Return the memory representation of this number as a byte …","Converts degrees to radians.","","Converts the value of self to a u128. If the value cannot …","Converts the value of self to a u16. If the value cannot be","Converts the value of self to a u32. If the value cannot be","Converts the value of self to a u64. If the value cannot be","Converts the value of self to a u8. If the value cannot be …","Converts the value of self to a usize. If the value cannot …","Returns the number of trailing ones in the binary …","Returns the number of trailing zeros in the binary …","Return the integer part of a number.","","","","","","","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","","","Wrapping (modular) addition. Computes self + other, …","Wrapping (modular) multiplication. Computes self * other, …","Wrapping (modular) negation. Computes -self, wrapping …","Panic-free bitwise shift-left; yields self << mask(rhs), …","Panic-free bitwise shift-right; yields self >> mask(rhs), …","Wrapping (modular) subtraction. Computes self - other, …","Returns the additive identity, 0.","Returns the additive identity element of Self, 0.","Numbers which have upper and lower bounds","Numbers which have lower bounds","Numbers which have upper bounds","Returns the largest finite number this type can represent","Returns the largest finite number this type can represent","Returns the smallest finite number this type can represent","Returns the smallest finite number this type can represent","A generic interface for casting between machine scalars …","A generic trait for converting a number to a value.","An interface for casting between machine scalars.","A generic trait for converting a value to a number.","Convert a value to another, using the as operator.","Cast from one machine scalar to another.","Creates a number from another value that can be converted …","Converts a f32 to return an optional value of this type. …","Converts a f64 to return an optional value of this type. …","Converts an i128 to return an optional value of this type. …","Converts an i16 to return an optional value of this type. …","Converts an i32 to return an optional value of this type. …","Converts an i64 to return an optional value of this type. …","Converts an i8 to return an optional value of this type. …","Converts an isize to return an optional value of this …","Converts an u128 to return an optional value of this type. …","Converts an u16 to return an optional value of this type. …","Converts an u32 to return an optional value of this type. …","Converts an u64 to return an optional value of this type. …","Converts an u8 to return an optional value of this type. …","Converts a usize to return an optional value of this type. …","Converts the value of self to an f32. Overflows may map to …","Converts the value of self to an f64. Overflows may map to …","Converts the value of self to an i128. If the value cannot …","Converts the value of self to an i16. If the value cannot …","Converts the value of self to an i32. If the value cannot …","Converts the value of self to an i64. If the value cannot …","Converts the value of self to an i8. If the value cannot be","Converts the value of self to an isize. If the value …","Converts the value of self to a u128. If the value cannot …","Converts the value of self to a u16. If the value cannot be","Converts the value of self to a u32. If the value cannot be","Converts the value of self to a u64. If the value cannot be","Converts the value of self to a u8. If the value cannot be …","Converts the value of self to a usize. If the value cannot …","Return Euler’s number.","Return 1.0 / π.","Return 1.0 / sqrt(2.0).","Return 2.0 / π.","Return 2.0 / sqrt(π).","Return π / 2.0.","Return π / 3.0.","Return π / 4.0.","Return π / 6.0.","Return π / 8.0.","Generic trait for floating point numbers","","Generic trait for floating point numbers that works with …","Return ln(10.0).","Return ln(2.0).","Return log10(2.0).","Return log10(e).","Return log2(10.0).","Return log2(e).","Return Archimedes’ constant π.","Return sqrt(2.0).","Return the full circle constant τ.","Computes the absolute value of self. Returns Float::nan() …","Computes the absolute value of self. Returns …","The positive difference of two numbers.","Computes the arccosine of a number. Return value is in …","Inverse hyperbolic cosine function.","Computes the arcsine of a number. Return value is in …","Inverse hyperbolic sine function.","Computes the arctangent of a number. Return value is in …","Computes the four quadrant arctangent of self (y) and other…","Inverse hyperbolic tangent function.","Take the cubic root of a number.","Returns the smallest integer greater than or equal to a …","Returns the smallest integer greater than or equal to a …","Returns the floating point category of the number. If only …","Returns the floating point category of the number. If only …","Returns a number composed of the magnitude of self and the …","Computes the cosine of a number (in radians).","Hyperbolic cosine function.","Returns epsilon, a small positive value.","Returns epsilon, a small positive value.","Returns e^(self), (the exponential function).","Returns 2^(self).","Returns e^(self) - 1 in a way that is accurate even if the …","Returns the largest integer less than or equal to a number.","Returns the largest integer less than or equal to a number.","Returns the fractional part of a number.","Returns the fractional part of a number.","Calculate the length of the hypotenuse of a right-angle …","Returns positive infinity.","Returns the infinite value.","Returns the mantissa, base 2 exponent, and sign as …","Returns the mantissa, base 2 exponent, and sign as …","Returns true if this number is neither infinite nor NaN.","Returns true if the number is neither infinite or NaN.","Returns true if this value is positive infinity or …","Returns true if the number is infinite.","Returns true if this value is NaN and false otherwise.","Returns true if the number is NaN.","Returns true if the number is neither zero, infinite, …","Returns true if the number is neither zero, infinite, …","Returns true if self is negative, including -0.0, …","Returns true if self is negative, including -0.0 and …","Returns true if self is positive, including +0.0, …","Returns true if self is positive, including +0.0 and …","Returns true if the number is subnormal.","Returns true if the number is subnormal.","Returns the natural logarithm of the number.","Returns ln(1+n) (natural logarithm) more accurately than if","Returns the logarithm of the number with respect to an …","Returns the base 10 logarithm of the number.","Returns the base 2 logarithm of the number.","Returns the maximum of the two numbers.","Returns the maximum of the two numbers.","Returns the largest finite value that this type can …","Returns the largest finite value that this type can …","Returns the minimum of the two numbers.","Returns the minimum of the two numbers.","Returns the smallest positive, normalized value that this …","Returns the smallest positive, normalized value that this …","Returns the smallest finite value that this type can …","Returns the smallest finite value that this type can …","Fused multiply-add. Computes (self * a) + b with only one …","Returns NaN.","Returns the NaN value.","Returns negative infinity.","Returns the negative infinite value.","Returns -0.0.","Returns -0.0.","Raise a number to a floating point power.","Raise a number to an integer power.","Raise a number to an integer power.","Take the reciprocal (inverse) of a number, 1/x.","Returns the reciprocal (multiplicative inverse) of the …","Returns the nearest integer to a number. Round half-way …","Returns the nearest integer to a number. Round half-way …","Returns a number that represents the sign of self.","Returns a number that represents the sign of self.","Computes the sine of a number (in radians).","Simultaneously computes the sine and cosine of the number, …","Hyperbolic sine function.","Take the square root of a number.","Computes the tangent of a number (in radians).","Hyperbolic tangent function.","Converts to degrees, assuming the number is in radians.","Converts radians to degrees.","Converts to radians, assuming the number is in degrees.","Converts degrees to radians.","Return the integer part of a number.","Return the integer part of a number.","Defines a multiplicative identity element for Self.","Defines an additive identity element for Self.","Returns true if self is equal to the multiplicative …","Returns true if self is equal to the additive identity.","Returns the multiplicative identity, 1.","Returns the multiplicative identity element of Self, 1.","Sets self to the multiplicative identity element of Self, 1…","Sets self to the additive identity element of Self, 0.","Returns the additive identity, 0.","Returns the additive identity element of Self, 0.","Generic trait for primitive integers.","Returns the number of ones in the binary representation of …","Returns the number of zeros in the binary representation …","Convert an integer from big endian to the target’s …","Convert an integer from little endian to the target’s …","Returns the number of leading ones in the binary …","Returns the number of leading zeros in the binary …","Raises self to the power of exp, using exponentiation by …","Reverses the order of bits in the integer.","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Reverses the byte order of the integer.","Convert self to big endian from the target’s endianness.","Convert self to little endian from the target’s …","Returns the number of trailing ones in the binary …","Returns the number of trailing zeros in the binary …","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","","","","","","","","","","","","","","Create a number from its representation as a byte array in …","Create a number from its representation as a byte array in …","Create a number from its memory representation as a byte …","Return the memory representation of this number as a byte …","Return the memory representation of this number as a byte …","Return the memory representation of this number as a byte …","Performs addition that returns None instead of wrapping …","Performs division that returns None instead of panicking …","Performs multiplication that returns None instead of …","Performs negation that returns None if the result can’t …","Performs an integral remainder that returns None instead …","Performs a left shift that returns None on shifts larger …","Performs a right shift that returns None on shifts larger …","Performs subtraction that returns None instead of wrapping …","Adds two numbers, checking for overflow. If overflow …","Divides two numbers, checking for underflow, overflow and …","Multiplies two numbers, checking for underflow or …","Negates a number, returning None for results that can’t …","Finds the remainder of dividing two numbers, checking for …","Checked shift left. Computes self << rhs, returning None …","Checked shift right. Computes self >> rhs, returning None …","Subtracts two numbers, checking for underflow. If …","","","Performs euclid division that returns None instead of …","Finds the euclid remainder of dividing two numbers, …","Calculates Euclidean division, the matching method for …","Calculates the least nonnegative remainder of self (mod v).","Unary operator for retrieving the multiplicative inverse, …","The result after applying the operator.","Returns the multiplicative inverse of self.","Fused multiply-add. Computes (self * a) + b with only one …","The fused multiply-add assignment operation …","The resulting type after applying the fused multiply-add.","Performs the fused multiply-add operation (self * a) + b","Performs the fused multiply-add assignment operation …","Performs addition with a flag for overflow.","Performs multiplication with a flag for overflow.","Performs substraction with a flag for overflow.","Returns a tuple of the sum along with a boolean indicating …","Returns a tuple of the product along with a boolean …","Returns a tuple of the difference along with a boolean …","Saturating math operations. Deprecated, use SaturatingAdd, …","Performs addition that saturates at the numeric bounds …","Performs multiplication that saturates at the numeric …","Performs subtraction that saturates at the numeric bounds …","Saturating addition operator. Returns a+b, saturating at …","Saturating addition. Computes self + other, saturating at …","Saturating multiplication. Computes self * other, …","Saturating subtraction operator. Returns a-b, saturating …","Saturating subtraction. Computes self - other, saturating …","Performs addition that wraps around on overflow.","Performs multiplication that wraps around on overflow.","Performs a negation that does not panic.","Performs a left shift that does not panic.","Performs a right shift that does not panic.","Performs subtraction that wraps around on overflow.","Wrapping (modular) addition. Computes self + other, …","Wrapping (modular) multiplication. Computes self * other, …","Wrapping (modular) negation. Computes -self, wrapping …","Panic-free bitwise shift-left; yields self << mask(rhs), …","Panic-free bitwise shift-right; yields self >> mask(rhs), …","Wrapping (modular) subtraction. Computes self - other, …","The result after applying the operator.","Binary operator for raising a value to a power.","Raises a value to the power of exp, returning None if an …","Raises a value to the power of exp, using exponentiation …","Returns self to the power rhs.","A trait for real number types that do not necessarily have …","Computes the absolute value of self. Returns Float::nan() …","The positive difference of two numbers.","Computes the arccosine of a number. Return value is in …","Inverse hyperbolic cosine function.","Computes the arcsine of a number. Return value is in …","Inverse hyperbolic sine function.","Computes the arctangent of a number. Return value is in …","Computes the four quadrant arctangent of self (y) and other…","Inverse hyperbolic tangent function.","Take the cubic root of a number.","Returns the smallest integer greater than or equal to a …","Computes the cosine of a number (in radians).","Hyperbolic cosine function.","Returns epsilon, a small positive value.","Returns e^(self), (the exponential function).","Returns 2^(self).","Returns e^(self) - 1 in a way that is accurate even if the …","Returns the largest integer less than or equal to a number.","Returns the fractional part of a number.","Calculate the length of the hypotenuse of a right-angle …","Returns true if self is negative, including -0.0, …","Returns true if self is positive, including +0.0, …","Returns the natural logarithm of the number.","Returns ln(1+n) (natural logarithm) more accurately than if","Returns the logarithm of the number with respect to an …","Returns the base 10 logarithm of the number.","Returns the base 2 logarithm of the number.","Returns the maximum of the two numbers.","Returns the largest finite value that this type can …","Returns the minimum of the two numbers.","Returns the smallest positive, normalized value that this …","Returns the smallest finite value that this type can …","Fused multiply-add. Computes (self * a) + b with only one …","Raise a number to a real number power.","Raise a number to an integer power.","Take the reciprocal (inverse) of a number, 1/x.","Returns the nearest integer to a number. Round half-way …","Returns a number that represents the sign of self.","Computes the sine of a number (in radians).","Simultaneously computes the sine and cosine of the number, …","Hyperbolic sine function.","Take the square root of a number.","Computes the tangent of a number (in radians).","Hyperbolic tangent function.","Converts radians to degrees.","Converts degrees to radians.","Return the integer part of a number.","Useful functions for signed numbers (i.e. numbers that can …","A trait for values which cannot be negative","Computes the absolute value.","Computes the absolute value.","The positive difference of two numbers.","The positive difference of two numbers.","Returns true if the number is negative and false if the …","Returns true if the number is positive and false if the …","Returns the sign of the number.","Returns the sign of the number.","Thread-safe, non-blocking, “first one wins” flavor of …","Thread-safe, blocking version of OnceCell.","Single-threaded version of OnceCell.","A thread-safe cell which can be written to only once.","A thread-safe cell which can be written to only once.","A thread-safe cell which can be written to only once.","A thread-safe cell which can be written to only once.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Gets a reference to the underlying value.","Gets a reference to the underlying value.","Gets the underlying value.","Gets the underlying value.","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a new empty cell.","Creates a new empty cell.","Creates a new empty cell.","Creates a new empty cell.","Sets the contents of this cell to value.","Sets the contents of this cell to value.","Sets the contents of this cell to value.","Sets the contents of this cell to value.","","","","","","","","","","","","","","","","","A value which is initialized on the first access.","A thread-safe cell which can be written to only once.","","","","","","","","","","Creates a new lazy value using Default as the initializing …","","","","","","","","","","","","","","","","Forces the evaluation of this lazy value and returns a …","Forces the evaluation of this lazy value and returns a …","","","Returns the argument unchanged.","Returns the argument unchanged.","Gets the reference to the underlying value.","Gets the reference to the result of this lazy value if it …","Gets the mutable reference to the underlying value.","Gets the reference to the result of this lazy value if it …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Get the reference to the underlying value, without …","","","Calls U::from(self).","Calls U::from(self).","Consumes the OnceCell, returning the wrapped value. Returns","Consumes this Lazy returning the stored value.","Creates a new empty cell.","Creates a new lazy value with the given initializing …","Sets the contents of this cell to value.","Takes the value out of this OnceCell, moving it back to an …","","","","Like set, but also returns a reference to the final cell …","","","","","","","Gets the reference to the underlying value, blocking the …","Creates a new initialized cell.","A value which is initialized on the first access.","A cell which can be written to only once. It is not thread …","","","","","","","","","","Creates a new lazy value using Default as the initializing …","","","","","","","","","","","","","","","","Forces the evaluation of this lazy value and returns a …","Forces the evaluation of this lazy value and returns a …","","Returns the argument unchanged.","","Returns the argument unchanged.","Gets a reference to the underlying value.","Gets the reference to the result of this lazy value if it …","Gets a mutable reference to the underlying value.","Gets the mutable reference to the result of this lazy …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","","","Calls U::from(self).","Calls U::from(self).","Consumes the OnceCell, returning the wrapped value.","Consumes this Lazy returning the stored value.","Creates a new empty cell.","Creates a new lazy value with the given initializing …","Sets the contents of this cell to value.","Takes the value out of this OnceCell, moving it back to an …","","","","Like set, but also returns a reference to the final cell …","","","","","","","Creates a new initialized cell.","Provides context to a closure called by broadcast.","Work was found and executed.","Provides the calling context to a closure called by …","No available work was found.","Represents a fork-join scope which can be used to spawn …","Represents a fork-join scope which can be used to spawn …","Thread builder used for customization via …","Represents a user created thread-pool.","Error when initializing a thread pool.","Used to create a new ThreadPool or to configure the global …","Result of yield_now() or yield_local().","","Parallel iterator types for arrays ([T; N])","","","","","","","","","","","","","","","","","","","(DEPRECATED) Suggest to worker threads that they execute …","Executes op within every thread in the current threadpool. …","Executes op within every thread in the threadpool. Any …","Creates a new ThreadPool initialized using this …","Initializes the global thread pool. This initialization is …","Creates a scoped ThreadPool initialized using this …","","","Parallel iterator types for standard collections","Returns the number of threads in the current registry. If …","Returns the (current) number of threads in the thread pool.","Returns true if the current worker thread currently has “…","If called from a Rayon worker thread, returns the index of …","If called from a Rayon worker thread in this thread-pool, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets a callback to be invoked on thread exit.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates a “fork-join” scope s and invokes the closure …","Creates a scope that spawns work into this thread-pool.","Creates a “fork-join” scope s with FIFO order, and …","Creates a scope that spawns work into this thread-pool in …","Our index amongst the broadcast threads (ranges from …","Gets the index of this thread in the pool, within …","","","","","","","","","","Executes op within the threadpool. Any attempts to use join…","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Traits for writing parallel programs using an …","Takes two closures and potentially runs them in parallel. …","Execute oper_a and oper_b in the thread-pool and return …","Identical to join, except that the closures have a …","Returns the maximum number of threads that Rayon supports …","Returns true if the closure was called from a different …","Gets the string that was specified by …","Deprecated in favor of ThreadPoolBuilder::build.","Creates and returns a valid rayon thread pool builder, but …","The number of threads receiving the broadcast in the …","Sets the number of threads to be used in the rayon …","Parallel iterator types for options","Normally, whenever Rayon catches a panic, it tries to …","The rayon prelude imports the various ParallelIterator …","","Parallel iterator types for ranges, the type for values …","Parallel iterator types for inclusive ranges, the type for …","Parallel iterator types for results","Executes the main loop for this thread. This will not …","Creates a “fork-join” scope s and invokes the closure …","Creates a scope that executes within this thread-pool. …","Creates a “fork-join” scope s with FIFO order, and …","Creates a scope that executes within this thread-pool. …","Parallel iterator types for slices","","Fires off a task into the Rayon threadpool in the “static…","Spawns a job into the fork-join scope self. This job will …","Spawns an asynchronous task in this thread-pool. This task …","Spawns an asynchronous task on every thread in this …","Spawns a job into every thread of the fork-join scope self…","Spawns a job into every thread of the fork-join scope self…","Spawns an asynchronous task on every thread in this …","Fires off a task into the Rayon threadpool in the “static…","Spawns a job into the fork-join scope self. This job will …","Spawns an asynchronous task in this thread-pool. This task …","Sets a custom function for spawning threads.","Gets the value that was specified by …","Sets the stack size of the worker threads","Sets a callback to be invoked on thread start.","Parallel iterator types for strings","This module contains the parallel iterator types for owned …","Sets a closure which takes a thread index and returns the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel iterator types for vectors (Vec<T>)","","","","","","","","","","Cooperatively yields execution to local Rayon work.","Cooperatively yields execution to local Rayon work.","Cooperatively yields execution to Rayon.","Cooperatively yields execution to Rayon.","Parallel iterator that moves out of an array.","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","This module contains the parallel iterator types for heaps …","This module contains the parallel iterator types for …","This module contains the parallel iterator types for …","This module contains the parallel iterator types for hash …","This module contains the parallel iterator types for hash …","This module contains the parallel iterator types for …","This module contains the parallel iterator types for …","Draining parallel iterator that moves out of a binary heap,","Parallel iterator over a binary heap","Parallel iterator over an immutable reference to a binary …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel iterator over a B-Tree map","Parallel iterator over an immutable reference to a B-Tree …","Parallel iterator over a mutable reference to a B-Tree map","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Parallel iterator over a B-Tree set","Parallel iterator over an immutable reference to a B-Tree …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Draining parallel iterator that moves out of a hash map, …","Parallel iterator over a hash map","Parallel iterator over an immutable reference to a hash map","Parallel iterator over a mutable reference to a hash map","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","Draining parallel iterator that moves out of a hash set, …","Parallel iterator over a hash set","Parallel iterator over an immutable reference to a hash set","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Parallel iterator over a linked list","Parallel iterator over an immutable reference to a linked …","Parallel iterator over a mutable reference to a linked list","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Draining parallel iterator that moves a range out of a …","Parallel iterator over a double-ended queue","Parallel iterator over an immutable reference to a …","Parallel iterator over a mutable reference to a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Chain is an iterator that joins b after a in one …","Chunks is an iterator that groups elements of an …","Cloned is an iterator that clones the elements of an …","Copied is an iterator that copies the elements of an …","The enum Either with variants Left and Right is a general …","Iterator adaptor for the empty() function.","Enumerate is an iterator that returns the current count …","Filter takes a predicate filter_op and filters out …","FilterMap creates an iterator that uses filter_op to both …","FlatMap maps each element to a parallel iterator, then …","FlatMapIter maps each element to a serial iterator, then …","Flatten turns each element to a parallel iterator, then …","FlattenIter turns each element to a serial iterator, then …","Fold is an iterator that applies a function over an …","FoldChunks is an iterator that groups elements of an …","FoldChunksWith is an iterator that groups elements of an …","FoldWith is an iterator that applies a function over an …","FromParallelIterator implements the creation of a …","An iterator that supports “random access” to its data, …","Inspect is an iterator that calls a function with a …","Interleave is an iterator that interleaves elements of …","InterleaveShortest is an iterator that works similarly to …","Intersperse is an iterator that inserts a particular item …","IntoParallelIterator implements the conversion to a …","IntoParallelRefIterator implements the conversion to a …","IntoParallelRefMutIterator implements the conversion to a …","The type of item that the parallel iterator will produce.","The type of item that the parallel iterator will produce. …","The type of item that will be produced; this is typically …","The type of item that this parallel iterator produces. For …","The type of item that the parallel iterator will produce. …","The type of item that the parallel iterator will produce. …","The parallel iterator type that will be created.","The type of the parallel iterator that will be returned.","The type of iterator that will be created.","The draining parallel iterator type that will be created.","The draining parallel iterator type that will be created.","IterBridge is a parallel iterator that wraps a sequential …","A value of type L.","Map is an iterator that transforms the elements of an …","MapInit is an iterator that transforms the elements of an …","MapWith is an iterator that transforms the elements of an …","MaxLen is an iterator that imposes a maximum length on …","MinLen is an iterator that imposes a minimum length on …","MultiZip is an iterator that zips up a tuple of parallel …","Iterator adaptor for the once() function.","PanicFuse is an adaptor that wraps an iterator with a fuse …","Conversion trait to convert an Iterator to a …","ParallelDrainFull creates a parallel iterator that moves …","ParallelDrainRange creates a parallel iterator that moves …","ParallelExtend extends an existing collection with items …","Parallel version of the standard iterator trait.","Positions takes a predicate predicate and filters out …","Iterator adaptor for the repeat() function.","Iterator adaptor for the repeatn() function.","Rev is an iterator that produces elements in reverse …","A value of type R.","Skip is an iterator that skips over the first n elements. …","SkipAny is an iterator that skips over n elements from …","SkipAnyWhile is an iterator that skips over elements from …","Split is a parallel iterator using arbitrary data and a …","StepBy is an iterator that skips n elements between each …","Take is an iterator that iterates over the first n …","TakeAny is an iterator that iterates over n elements from …","TakeAnyWhile is an iterator that iterates over elements …","TryFold is an iterator that applies a function over an …","TryFoldWith is an iterator that applies a function over an …","Update is an iterator that mutates the elements of an …","WhileSome is an iterator that yields the Some elements of …","Zip is an iterator that zips up a and b into a single …","An IndexedParallelIterator that iterates over two parallel …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Tests that every item in the parallel iterator matches the …","","Searches for some item in the parallel iterator that …","","","","","","Convert &mut Either<L, R> to Either<&mut L, &mut R>.","","Convert Pin<&mut Either<L, R>> to …","Convert Pin<&Either<L, R>> to Either<Pin<&L>, Pin<&R>>, …","","","","","","","Convert &Either<L, R> to Either<&L, &R>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Takes two iterators and creates a new iterator over both.","Splits an iterator up into fixed-size chunks.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates an iterator which clones all of its elements. …","","Lexicographically compares the elements of this …","","Creates a fresh collection containing all the elements …","Collects the results of the iterator into the specified …","","","Creates an iterator which copies all of its elements. …","","Counts the number of items in this parallel iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Internal method used to define the behavior of this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Internal method used to define the behavior of this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Apply one of two functions depending on contents, unifying …","Convert the contained value into T","Like either, but provide some context to whichever of the …","Creates a parallel iterator that produces nothing.","","","Yields an index along with each item.","","Determines if the elements of this ParallelIterator are …","","","","","Executes the given command directly.","Returns the left value","Returns the right value","","Factors out a homogenous type from an Either of Result.","Factor out a homogeneous type from an either of pairs.","Factors out None from an Either of Option.","Factors out a homogenous type from an Either of Result.","Factor out a homogeneous type from an either of pairs.","","Applies filter_op to each item of this iterator, producing …","Applies filter_op to each item of this iterator to get an …","","Searches for some item in the parallel iterator that …","Searches for the sequentially first item in the parallel …","Searches for the sequentially last item in the parallel …","","Applies the given predicate to the items in the parallel …","Applies the given predicate to the items in the parallel …","Applies the given predicate to the items in the parallel …","Applies map_op to each item of this iterator to get nested …","Applies map_op to each item of this iterator to get nested …","An adaptor that flattens parallel-iterable Items into one …","An adaptor that flattens serial-iterable Items into one …","Convert Either<L, R> to Either<R, L>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel fold is similar to sequential fold except that the","Splits an iterator into fixed-size chunks, performing a …","Splits an iterator into fixed-size chunks, performing a …","Applies fold_op to the given init value with each item of …","","Executes OP on each item produced by the iterator, in …","Executes OP on a value returned by init with each item …","Executes OP on the given init value with each item …","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates an instance of the collection from the parallel …","Determines if the elements of this ParallelIterator are …","Determines if the elements of this ParallelIterator are …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Applies inspect_op to a reference to each item of this …","Interleaves elements of this iterator and the other given …","Interleaves elements of this iterator and the other given …","Intersperses clones of an element between items of this …","Calls U::from(self).","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Extract the value of an either over two equivalent types.","Convert the inner value to an iterator.","","Converts self into a parallel iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return true if the value is the Left variant.","Return true if the value is the Right variant.","","Determines if the elements of this ParallelIterator are …","Convert the left side of Either<L, R> to an Option<L>.","Apply the function f on the value in the Left variant if …","Return left value or given value","Return left or a default","Returns left value or computes it from a closure","Produces an exact count of how many items this iterator …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Determines if the elements of this ParallelIterator are …","Map f over the contained value and return the result in the","Applies map_op to each item of this iterator, producing a …","Apply the functions f and g to the Left and Right variants …","Similar to [map_either], with an added context ctx …","Applies map_op to a value returned by init with each item …","Apply the function f on the value in the Left variant if …","Apply the function f on the value in the Right variant if …","Applies map_op to the given init value with each item of …","Computes the maximum of all the items in the iterator. If …","Computes the maximum of all the items in the iterator with …","Computes the item that yields the maximum value for the …","Computes the minimum of all the items in the iterator. If …","Computes the minimum of all the items in the iterator with …","Computes the item that yields the minimum value for the …","Determines if the elements of this ParallelIterator are …","","","","Creates a parallel iterator that produces an element …","","","Internal method used to define the behavior of this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Wraps an iterator with a fuse in case of panics, to halt …","Creates a bridge from this type to a ParallelIterator.","Returns a draining parallel iterator over an entire …","Returns a draining parallel iterator over a range of the …","Extends an instance of the collection with the elements …","","Converts self into a parallel iterator.","Creates the parallel iterator from self.","","Lexicographically compares the elements of this …","","Partitions the items of a parallel iterator into a pair of …","Partitions and maps the items of a parallel iterator into …","Traits and functions used to implement parallel iteration. …","","","Searches for some item in the parallel iterator that …","Searches for the sequentially first item in the parallel …","Searches for the sequentially last item in the parallel …","Searches for items in the parallel iterator that match the …","Multiplies all the items in the iterator.","","Queues the given command for further execution.","","","","","","","","Reduces the items in the iterator into one item using op. …","Reduces the items in the iterator into one item using op. …","Creates a parallel iterator that endlessly repeats elt (by …","Creates a parallel iterator that produces n repeats of elt …","Produces a new iterator with the elements of this iterator …","","","Convert the right side of Either<L, R> to an Option<R>.","Apply the function f on the value in the Right variant if …","Return right value or given value","Return right or a default","Returns right value or computes it from a closure","","","Creates an iterator that skips the first n elements.","Creates an iterator that skips n elements from anywhere in …","Creates an iterator that skips elements from anywhere in …","","The split function takes arbitrary data and a closure that …","Creates an iterator that steps by the given amount","Sums up the items in the iterator.","Performs a set of actions within a synchronous update.","Creates an iterator that yields the first n elements.","Takes only n repeats of the element, similar to the general","Creates an iterator that yields n elements from anywhere …","Creates an iterator that takes elements from anywhere in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Performs a fallible parallel fold.","Performs a fallible parallel fold with a cloneable init …","Executes a fallible OP on each item produced by the …","Executes a fallible OP on a value returned by init with …","Executes a fallible OP on the given init value with each …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Reduces the items in the iterator into one item using a …","Reduces the items in the iterator into one item using a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the left value","Returns the right value","Unzips the items of a parallel iterator into a pair of …","Unzips the results of the iterator into the specified …","Mutates each item of this iterator before yielding it.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates an iterator over the Some items of this iterator, …","Sets the maximum length of iterators desired to process in …","Sets the minimum length of iterators desired to process in …","Internal method used to define the behavior of this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Iterates over tuples (A, B), where the items A are from …","Iterates tuples, repeating the element with items from …","The same as Zip, but requires that both iterators have the …","A consumer is effectively a generalized “fold” …","The Folder trait encapsulates the standard fold operation. …","The type of folder that this consumer can be converted …","The type of iterator we will become.","The type of item that will be produced by this producer …","The type of item returned by this producer.","The type of value returned by this callback. Analogous to …","A Producer is effectively a “splittable IntoIterator”. …","The ProducerCallback trait is a kind of generic closure, …","The reducer is the final step of a Consumer – after a …","The type of reducer that is produced if this consumer is …","The type of result that this consumer will ultimately …","The type of result that will ultimately be produced by the …","A stateless consumer can be freely copied. These consumers …","A variant on Producer which does not know its exact length …","This helper function is used to “connect” a parallel …","This helper function is used to “connect” a producer …","A variant of bridge_producer_consumer where the producer …","Invokes the callback with the given producer as argument. …","Finish consuming items, produce final result.","Consume next item and return new sequential state.","Consume items from the iterator until full, and return new …","Iterate the producer, feeding each element to folder, and …","Iterate the producer, feeding each element to folder, and …","Hint whether this Consumer would like to stop processing …","Hint whether this Folder would like to stop processing …","Convert the consumer into a folder that can consume items …","Convert self into an iterator; at this point, no more …","The maximum number of items that we will process …","The minimum number of items that we will process …","Reduce two final results into one; this is executed after a","Split midway into a new producer if possible, otherwise …","Split into two producers; one produces items 0..index, the …","Divide the consumer into two consumers, one processing …","Splits off a “left” consumer and returns it. The self …","Creates a reducer that can be used to combine the results …","A parallel iterator over the value in Some variant of an …","A parallel iterator over a reference to the Some variant …","A parallel iterator over a mutable reference to the Some …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","FromParallelIterator implements the creation of a …","An iterator that supports “random access” to its data, …","IntoParallelIterator implements the conversion to a …","IntoParallelRefIterator implements the conversion to a …","IntoParallelRefMutIterator implements the conversion to a …","The type of item that the parallel iterator will produce.","The type of item that the parallel iterator will produce. …","The type of item that will be produced; this is typically …","The type of item that this parallel iterator produces. For …","The type of item that the parallel iterator will produce. …","The type of item that the parallel iterator will produce. …","The parallel iterator type that will be created.","The type of the parallel iterator that will be returned.","The type of iterator that will be created.","The draining parallel iterator type that will be created.","The draining parallel iterator type that will be created.","Conversion trait to convert an Iterator to a …","ParallelDrainFull creates a parallel iterator that moves …","ParallelDrainRange creates a parallel iterator that moves …","ParallelExtend extends an existing collection with items …","Parallel version of the standard iterator trait.","Parallel extensions for slices.","Parallel extensions for mutable slices.","Parallel extensions for strings.","Tests that every item in the parallel iterator matches the …","Searches for some item in the parallel iterator that …","Returns a plain slice, which is used to implement the rest …","Returns a plain mutable slice, which is used to implement …","Returns a plain string slice, which is used to implement …","Takes two iterators and creates a new iterator over both.","Splits an iterator up into fixed-size chunks.","Creates an iterator which clones all of its elements. …","Lexicographically compares the elements of this …","Creates a fresh collection containing all the elements …","Collects the results of the iterator into the specified …","Creates an iterator which copies all of its elements. …","Counts the number of items in this parallel iterator.","Internal method used to define the behavior of this …","Internal method used to define the behavior of this …","Yields an index along with each item.","Determines if the elements of this ParallelIterator are …","Applies filter_op to each item of this iterator, producing …","Applies filter_op to each item of this iterator to get an …","Searches for some item in the parallel iterator that …","Searches for the sequentially first item in the parallel …","Searches for the sequentially last item in the parallel …","Applies the given predicate to the items in the parallel …","Applies the given predicate to the items in the parallel …","Applies the given predicate to the items in the parallel …","Applies map_op to each item of this iterator to get nested …","Applies map_op to each item of this iterator to get nested …","An adaptor that flattens parallel-iterable Items into one …","An adaptor that flattens serial-iterable Items into one …","Parallel fold is similar to sequential fold except that the","Splits an iterator into fixed-size chunks, performing a …","Splits an iterator into fixed-size chunks, performing a …","Applies fold_op to the given init value with each item of …","Executes OP on each item produced by the iterator, in …","Executes OP on a value returned by init with each item …","Executes OP on the given init value with each item …","Creates an instance of the collection from the parallel …","Determines if the elements of this ParallelIterator are …","Determines if the elements of this ParallelIterator are …","Applies inspect_op to a reference to each item of this …","Interleaves elements of this iterator and the other given …","Interleaves elements of this iterator and the other given …","Intersperses clones of an element between items of this …","Converts self into a parallel iterator.","Determines if the elements of this ParallelIterator are …","Produces an exact count of how many items this iterator …","Determines if the elements of this ParallelIterator are …","Applies map_op to each item of this iterator, producing a …","Applies map_op to a value returned by init with each item …","Applies map_op to the given init value with each item of …","Computes the maximum of all the items in the iterator. If …","Computes the maximum of all the items in the iterator with …","Computes the item that yields the maximum value for the …","Computes the minimum of all the items in the iterator. If …","Computes the minimum of all the items in the iterator with …","Computes the item that yields the minimum value for the …","Determines if the elements of this ParallelIterator are …","Internal method used to define the behavior of this …","Wraps an iterator with a fuse in case of panics, to halt …","Creates a bridge from this type to a ParallelIterator.","Returns a parallel iterator over the bytes of a string.","Returns a parallel iterator over the characters of a …","Returns a parallel iterator over the characters of a …","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over at most chunk_size …","Returns a draining parallel iterator over an entire …","Returns a draining parallel iterator over a range of the …","Returns a parallel iterator over a string encoded as …","Extends an instance of the collection with the elements …","Converts self into a parallel iterator.","Creates the parallel iterator from self.","Returns a parallel iterator over the lines of a string, …","Returns a parallel iterator over substrings that match a …","Returns a parallel iterator over substrings that match a …","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over at most chunk_size …","Sorts the slice in parallel.","Sorts the slice in parallel with a comparator function.","Sorts the slice in parallel with a key extraction function.","Sorts the slice in parallel with a key extraction function.","Sorts the slice in parallel, but might not preserve the …","Sorts the slice in parallel with a comparator function, …","Sorts the slice in parallel with a key extraction …","Returns a parallel iterator over subslices separated by …","Returns a parallel iterator over substrings separated by a …","Returns a parallel iterator over mutable subslices …","Returns a parallel iterator over substrings terminated by a","Returns a parallel iterator over the sub-slices of a …","Returns a parallel iterator over all contiguous windows of …","Lexicographically compares the elements of this …","Partitions the items of a parallel iterator into a pair of …","Partitions and maps the items of a parallel iterator into …","Searches for some item in the parallel iterator that …","Searches for the sequentially first item in the parallel …","Searches for the sequentially last item in the parallel …","Searches for items in the parallel iterator that match the …","Multiplies all the items in the iterator.","Reduces the items in the iterator into one item using op. …","Reduces the items in the iterator into one item using op. …","Produces a new iterator with the elements of this iterator …","Creates an iterator that skips the first n elements.","Creates an iterator that skips n elements from anywhere in …","Creates an iterator that skips elements from anywhere in …","Creates an iterator that steps by the given amount","Sums up the items in the iterator.","Creates an iterator that yields the first n elements.","Creates an iterator that yields n elements from anywhere …","Creates an iterator that takes elements from anywhere in …","Performs a fallible parallel fold.","Performs a fallible parallel fold with a cloneable init …","Executes a fallible OP on each item produced by the …","Executes a fallible OP on a value returned by init with …","Executes a fallible OP on the given init value with each …","Reduces the items in the iterator into one item using a …","Reduces the items in the iterator into one item using a …","Unzips the items of a parallel iterator into a pair of …","Unzips the results of the iterator into the specified …","Mutates each item of this iterator before yielding it.","Creates an iterator over the Some items of this iterator, …","Sets the maximum length of iterators desired to process in …","Sets the minimum length of iterators desired to process in …","Internal method used to define the behavior of this …","Iterates over tuples (A, B), where the items A are from …","The same as Zip, but requires that both iterators have the …","Parallel iterator over a range, implemented for all …","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","Parallel iterator over an inclusive range, implemented for …","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","Parallel iterator over a result","Parallel iterator over an immutable reference to a result","Parallel iterator over a mutable reference to a result","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel iterator over immutable non-overlapping chunks of …","Parallel iterator over immutable non-overlapping chunks of …","Parallel iterator over mutable non-overlapping chunks of a …","Parallel iterator over mutable non-overlapping chunks of a …","Parallel iterator over immutable items in a slice","Parallel iterator over mutable items in a slice","Parallel extensions for slices.","Parallel extensions for mutable slices.","Parallel iterator over immutable non-overlapping chunks of …","Parallel iterator over immutable non-overlapping chunks of …","Parallel iterator over mutable non-overlapping chunks of a …","Parallel iterator over mutable non-overlapping chunks of a …","Parallel iterator over slices separated by a predicate","Parallel iterator over mutable slices separated by a …","Parallel iterator over immutable overlapping windows of a …","","","","","","","","Returns a plain slice, which is used to implement the rest …","Returns a plain mutable slice, which is used to implement …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","","","","","","","","","","","","","","","","","","","","","","","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over at most chunk_size …","Sorts the slice in parallel.","Sorts the slice in parallel with a comparator function.","Sorts the slice in parallel with a key extraction function.","Sorts the slice in parallel with a key extraction function.","Sorts the slice in parallel, but might not preserve the …","Sorts the slice in parallel with a comparator function, …","Sorts the slice in parallel with a key extraction …","Returns a parallel iterator over subslices separated by …","Returns a parallel iterator over mutable subslices …","Returns a parallel iterator over all contiguous windows of …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel iterator over the bytes of a string","Parallel iterator over the characters of a string, with …","Parallel iterator over the characters of a string","Parallel iterator over a string encoded as UTF-16","Parallel iterator over lines in a string","Parallel iterator over substrings that match a pattern, …","Parallel iterator over substrings that match a pattern","Parallel extensions for strings.","Parallel iterator over substrings separated by a pattern","Parallel iterator over substrings separated by a …","Parallel iterator over substrings separated by whitespace","","","","","","","","","","","Returns a plain string slice, which is used to implement …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Returns a parallel iterator over the bytes of a string.","Returns a parallel iterator over the characters of a …","Returns a parallel iterator over the characters of a …","Returns a parallel iterator over a string encoded as …","Returns a parallel iterator over the lines of a string, …","Returns a parallel iterator over substrings that match a …","Returns a parallel iterator over substrings that match a …","Returns a parallel iterator over substrings separated by a …","Returns a parallel iterator over substrings terminated by a","Returns a parallel iterator over the sub-slices of a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draining parallel iterator that moves a range of …","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","Draining parallel iterator that moves a range out of a …","Parallel iterator that moves out of a vector.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","A low level representation of the byte offsets of each …","An iterator over all non-overlapping capture matches in a …","An iterator over the names of all capture groups in a …","Represents the capture groups for a single match.","The compiled program exceeded the set size limit. The …","An error that occurred during parsing or compiling a …","Represents a single match of a regex in a haystack.","An iterator over all non-overlapping matches in a haystack.","A helper type for forcing literal string replacement.","A compiled regular expression for searching Unicode …","A configurable builder for a Regex.","Match multiple, possibly overlapping, regexes in a single …","A configurable builder for a RegexSet.","A trait for types that can be used to replace matches in a …","A by-reference adaptor for a Replacer.","A set of matches returned by a regex set.","An owned iterator over the set of matches from a regex set.","A borrowed iterator over the set of matches from a regex …","An iterator over all substrings delimited by a regex match.","An iterator over at most N substrings delimited by a regex …","An iterator over all group matches in a Captures value.","A syntax error.","","","","","","","","","","","","","Returns the original string of this regex.","Returns the substring of the haystack that matched.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compiles the pattern given to RegexBuilder::new with the …","Compiles the patterns given to RegexSetBuilder::new with …","Returns a type that implements Replacer, but that borrows …","Search for regex matches in &[u8] haystacks.","Returns a fresh allocated set of capture locations that can","Returns an iterator over the capture names in this regex.","This routine searches for the first match of this regex in …","Returns the same as Regex::captures, but starts the search …","Returns an iterator that yields successive non-overlapping …","Returns the number of captures groups in this regex.","This is like Regex::captures, but writes the byte offsets …","Returns the same as Regex::captures_read, but starts the …","This configures whether to enable case insensitive …","This configures whether to enable case insensitive …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures CRLF mode for the entire pattern.","This configures CRLF mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Set the approximate capacity, in bytes, of the cache of …","Set the approximate capacity, in bytes, of the cache of …","This configures dot-matches-new-line mode for the entire …","This configures dot-matches-new-line mode for the entire …","","","","","","","","","","","","","","","","","","","","Create a new empty regex set.","Returns the byte offset of the end of the match in the …","","","","","","","Escapes all regular expression meta characters in pattern.","Expands all instances of $ref in replacement to the …","This is a convenience routine for extracting the substrings","This routine searches for the first match of this regex in …","Returns the same as Regex::find, but starts the search at …","Returns an iterator that yields successive non-overlapping …","","","","","","Shows the original regular expression.","Shows the original regular expression.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Attempts to parse a string into a regular expression","Returns the Match associated with the capture group at …","Returns the start and end byte offsets of the capture …","This configures verbose mode for the entire pattern.","This configures verbose mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns true if and only if this match has a length of …","Returns true if this set contains no regexes.","Returns true if and only if there is a match for the regex …","Returns true if and only if one of the regexes in this set …","Returns the same as Regex::is_match, but starts the search …","Returns true if and only if one of the regexes in this set …","Returns an iterator over all capture groups. This includes …","Returns an iterator over the indices of the regexes that …","Returns the total number of capture groups. This includes …","Returns the length, in bytes, of this match.","Returns the total number of capture groups (even if they …","Returns the total number of regexes in this set.","The total number of regexes in the set that created these …","Configures the line terminator to be used by the regex.","Configures the line terminator to be used by the regex.","Whether the regex at the given index matched.","Whether this set contains any matches.","Returns the set of regexes that match in the given …","Returns the set of regexes that match in the given …","This configures multi-line mode for the entire pattern.","This configures multi-line mode for all of the patterns.","Returns the Match associated with the capture group named …","Set the nesting limit for this parser.","Set the nesting limit for this parser.","Create a new builder with a default configuration for the …","Create a new builder with a default configuration for the …","Compiles a regular expression. Once compiled, it can be …","Create a new regex set with the given regular expressions.","","","","","","","","","","","Return a fixed unchanging replacement string.","","","This configures octal mode for the entire pattern.","This configures octal mode for all of the patterns.","","Returns the regex patterns that this regex set was …","","Returns the range over the starting and ending byte …","Replaces the leftmost-first match in the given haystack …","Replaces all non-overlapping matches in the haystack with …","Appends possibly empty data to dst to replace the current …","","","Replaces at most limit non-overlapping matches in the …","Returns the end byte offset of the first match in the …","Returns the same as Regex::shortest_match, but starts the …","","","","","","Sets the approximate size limit, in bytes, of the compiled …","Sets the approximate size limit, in bytes, of the compiled …","Returns an iterator of substrings of the haystack given, …","Returns an iterator of at most limit substrings of the …","Returns the byte offset of the start of the match in the …","Returns the total number of capturing groups that appear …","This configures swap-greed mode for the entire pattern.","This configures swap-greed mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","Attempts to parse a string into a regular expression","Attempts to parse a string into a regular expression","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures Unicode mode for the entire pattern.","This configures Unicode mode for the all of the patterns.","","","","","","","","","","","","","","","","","","","","A low level representation of the byte offsets of each …","An iterator over all non-overlapping capture matches in a …","An iterator over the names of all capture groups in a …","Represents the capture groups for a single match.","Represents a single match of a regex in a haystack.","An iterator over all non-overlapping matches in a haystack.","A helper type for forcing literal string replacement.","A compiled regular expression for searching Unicode …","A configurable builder for a Regex.","Match multiple, possibly overlapping, regexes in a single …","A configurable builder for a RegexSet.","A trait for types that can be used to replace matches in a …","A by-reference adaptor for a Replacer.","A set of matches returned by a regex set.","An owned iterator over the set of matches from a regex set.","A borrowed iterator over the set of matches from a regex …","An iterator over all substrings delimited by a regex match.","An iterator over at most N substrings delimited by a regex …","An iterator over all group matches in a Captures value.","","","","","","","","","","","","Returns the substring of the haystack that matched.","Returns the original string of this regex.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compiles the pattern given to RegexBuilder::new with the …","Compiles the patterns given to RegexSetBuilder::new with …","Returns a type that implements Replacer, but that borrows …","Returns a fresh allocated set of capture locations that can","Returns an iterator over the capture names in this regex.","This routine searches for the first match of this regex in …","Returns the same as Regex::captures, but starts the search …","Returns an iterator that yields successive non-overlapping …","Returns the number of captures groups in this regex.","This is like Regex::captures, but writes the byte offsets …","Returns the same as Regex::captures_read, but starts the …","This configures whether to enable case insensitive …","This configures whether to enable case insensitive …","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures CRLF mode for the entire pattern.","This configures CRLF mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Set the approximate capacity, in bytes, of the cache of …","Set the approximate capacity, in bytes, of the cache of …","This configures dot-matches-new-line mode for the entire …","This configures dot-matches-new-line mode for the entire …","","","","","","","","","","","","","","","","","","","Create a new empty regex set.","Returns the byte offset of the end of the match in the …","","","","","","Expands all instances of $ref in replacement to the …","This is a convenience routine for extracting the substrings","This routine searches for the first match of this regex in …","Returns the same as Regex::find, but starts the search at …","Returns an iterator that yields successive non-overlapping …","","","","Shows the original regular expression.","Shows the original regular expression.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Attempts to parse a string into a regular expression","Returns the Match associated with the capture group at …","Returns the start and end byte offsets of the capture …","This configures verbose mode for the entire pattern.","This configures verbose mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Returns true if and only if this match has a length of …","Returns true if this set contains no regexes.","Returns true if and only if there is a match for the regex …","Returns true if and only if one of the regexes in this set …","Returns the same as Regex::is_match, but starts the search …","Returns true if and only if one of the regexes in this set …","Returns an iterator over all capture groups. This includes …","Returns an iterator over the indices of the regexes that …","Returns the total number of capture groups. This includes …","Returns the length, in bytes, of this match.","Returns the total number of capture groups (even if they …","Returns the total number of regexes in this set.","The total number of regexes in the set that created these …","Configures the line terminator to be used by the regex.","Configures the line terminator to be used by the regex.","Whether the regex at the given index matched.","Whether this set contains any matches.","Returns the set of regexes that match in the given …","Returns the set of regexes that match in the given …","This configures multi-line mode for the entire pattern.","This configures multi-line mode for all of the patterns.","Returns the Match associated with the capture group named …","Set the nesting limit for this parser.","Set the nesting limit for this parser.","Create a new builder with a default configuration for the …","Create a new builder with a default configuration for the …","Compiles a regular expression. Once compiled, it can be …","Create a new regex set with the given regular expressions.","","","","","","","","","","","Return a fixed unchanging replacement byte string.","","","This configures octal mode for the entire pattern.","This configures octal mode for all of the patterns.","","Returns the regex patterns that this regex set was …","Returns the range over the starting and ending byte …","Replaces the leftmost-first match in the given haystack …","Replaces all non-overlapping matches in the haystack with …","Appends possibly empty data to dst to replace the current …","","","Replaces at most limit non-overlapping matches in the …","Returns the end byte offset of the first match in the …","Returns the same as shortest_match, but starts the search …","","","","","","Sets the approximate size limit, in bytes, of the compiled …","Sets the approximate size limit, in bytes, of the compiled …","Returns an iterator of substrings of the haystack given, …","Returns an iterator of at most limit substrings of the …","Returns the byte offset of the start of the match in the …","Returns the total number of capturing groups that appear …","This configures swap-greed mode for the entire pattern.","This configures swap-greed mode for all of the patterns.","","","","","","","","","","","","","","","","Attempts to parse a string into a regular expression","Attempts to parse a string into a regular expression","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures Unicode mode for the entire pattern.","This configures Unicode mode for the all of the patterns.","","","","","","","","","","","","","","","","","","","Keep any of the unique rows This allows more optimizations","","A contiguous growable collection of Series that have the …","Keep the first unique row.","","Keep the last unique row.","Keep None of the unique rows.","","","","","","","","","","Safety","Same as filter but does not parallelize.","","","","","Aggregate all chunks to contiguous memory.","Ensure all the chunks in the DataFrame are aligned.","Apply a closure to a column. This is the recommended way …","Apply a closure to a column at index idx. This is the …","Aggregate all the chunks in the DataFrame to a single …","Aggregate all the chunks in the DataFrame to a single …","","","","","","","","","","","","","","","","","","Select a single column by name.","Selected multiple columns by name.","Creates the cartesian product from both frames, preserves …","","","","","","","","","","","","","Summary statistics for a DataFrame. Only summarizes …","","","","","Drop a column by name. This is a pure method and will …","","Remove a column by name and return the column removed.","Drop columns that are in names.","Drop columns that are in names without allocating a HashSet…","Return a new DataFrame where all null values are dropped.","Get the data types of the columns in the DataFrame.","Creates an empty DataFrame usable in a compile time …","","","","","","","Returns an estimation of the total (heap) allocated size …","","Explode DataFrame to long format by exploding a column …","","Extend the memory backed by this DataFrame with the values …","Get a reference to the schema fields of the DataFrame.","Replace None values with one of the following strategies:","Take the DataFrame rows by a boolean mask.","Get column index of a Series by name.","","","","","Check if DataFrames are equal. Note that None == None …","Check if all values in DataFrames are equal where …","Check if DataFrames schemas are equal.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Panics","Create a new DataFrame from rows. This should only be used …","Create a new DataFrame from rows. This should only be used …","Create a new DataFrame from an iterator over rows. This …","Get a row in the DataFrame. Beware this is slow.","Example","Get the Vec<String> representing the column names.","Get a reference to the DataFrame columns.","Get mutable access to the underlying columns.","Get a row from a DataFrame. Use of this is discouraged as …","Amortize allocations by reusing a row. The caller is …","Amortize allocations by reusing a row. The caller is …","Get the supertype of the columns in this DataFrame","","Group DataFrame using a Series column.","","","Group DataFrame using a Series column. The groups are …","","","Get the head of the DataFrame.","Get the height of the DataFrame which is the number of …","Aggregate the column horizontally to their max values.","Aggregate the column horizontally to their mean values.","Aggregate the column horizontally to their min values.","Add multiple Series to a DataFrame. The added Series are …","Add multiple Series to a DataFrame. The added Series are …","Add columns horizontally.","Aggregate the column horizontally to their sum values.","","","","","","","","","","","","","","Insert a new column at a given index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Get a mask of all the duplicated rows in the DataFrame.","Check if the DataFrame is empty.","Get a mask of all the unique rows in the DataFrame.","Iterator over the columns as Series.","Iterator over the rows in this DataFrame as Arrow …","Iterator over the rows in this DataFrame as Arrow …","This is similar to a left-join except that we match on …","This is similar to a left-join except that we match on …","Convert the DataFrame into a lazy DataFrame","Aggregate the columns to their maximum values.","Aggregate the columns to their mean values.","Aggregate the columns to their median values.","Unpivot a DataFrame from wide to long format.","Similar to melt, but without generics. This may be easier …","Aggregate the columns to their minimum values.","The number of chunks per column","Create a DataFrame from a Vector of Series.","Create a new DataFrame but does not check the length or …","","","Create a new DataFrame that shows the null counts per …","Pipe different functions/ closure operations that work on …","Pipe different functions/ closure operations that work on …","Pipe different functions/ closure operations that work on …","Removes the last Series from the DataFrame and returns it, …","Checks if the Arc ptrs of the Series are equal","Aggregate the columns to their quantile values.","Rename a column in the DataFrame.","Replace a column with a Series.","Replace column at index idx with a Series.","Replace or update a column. The difference between this …","Get a DataFrame with all the columns in reversed order.","","Sample a fraction between 0.0-1.0 of this DataFrame.","Sample n datapoints from this DataFrame.","Get the DataFrame schema.","Select column(s) from this DataFrame and return a new …","Select a Series by index.","Select column(s) from this DataFrame by range and return a …","","Select column(s) from this DataFrame and return them into …","Select with a known schema.","Select with a known schema. This doesn’t check for …","Set the column names.","Get (height, width) of the DataFrame.","Shift the values by a given period and fill the parts that …","Returns true if the chunks of the columns do not align and …","Shrink the capacity of this DataFrame to fit its length.","","","Slice the DataFrame along the rows.","","Return a sorted clone of this DataFrame.","This is the dispatch of Self::sort, and exists to reduce …","Sort DataFrame in place by a column.","Sort the DataFrame by a single column with extra options.","Aggregate the columns to their standard deviation values.","Aggregate the columns to their sum values.","Get the tail of the DataFrame.","Take DataFrame rows by index values.","Take DataFrame value by indexes from an iterator.","Take DataFrame values by indexes from an iterator.","Take DataFrame values by indexes from an iterator that may …","Create a 2D ndarray::Array from this DataFrame. This …","","","","","","Transpose a DataFrame. This is a very expensive operation.","Apply a closure that may fail to a column. This is the …","Apply a closure that may fail to a column at index idx. …","Get column index of a Series by name.","","","","","","","","Create a new DataFrame from an iterator over rows. This …","","","","","","","","","","","Unstable distinct. See DataFrame::unique_stable.","","Drop duplicate rows from a DataFrame. This fails when …","Unnest the given Struct columns. This means that the …","","","Aggregate the columns to their variation values.","Concatenate a DataFrame to this DataFrame and return as …","Concatenate a DataFrame to this DataFrame","","","","","","Get the width of the DataFrame which is the number of …","Add a new column to this DataFrame or replace an existing …","Add a new column to this DataFrame or replace an existing …","Adds a column to the DataFrame without doing any checks on …","Add a new column at index 0 that counts the rows.","Add a row count in place.","Arguments for [DataFrame::melt] function","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","Whether the melt may be done in the streaming engine This …","","","","","","","","","","","","Returned by a groupby operation on a DataFrame. This …","","","Indexes of the groups, the first index is stored …","","","","","Every group is indicated by an array where the","","","","","Used to create the tuples for a groupby operation.","","","","","","","","","","","Slice is always sorted in ascending order.","","","","","","","","","Aggregate the groups of the groupby operation into lists.","","","Apply a closure over the groups as a new DataFrame.","","","","","","","","","","","","","","","","","","","","","","","","","","Aggregate grouped series and compute the number of values …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Aggregate grouped Series and find the first value per …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Get the internal representation of the GroupBy operation. …","Get the internal representation of the GroupBy operation. …","","","Create the tuples need for a groupby operation. * The …","Get the groupby group indexes.","Get a mutable reference to the GroupsIdx.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Aggregate grouped Series and return the last value per …","","","Aggregate grouped series and compute the maximum value per …","Aggregate grouped series and compute the mean per group.","Aggregate grouped Series and determine the median per …","Aggregate grouped series and compute the minimal value per …","Aggregate grouped Series by counting the number of unique …","","","","","Apply a closure over the groups as a new DataFrame in …","","","Aggregate grouped Series and determine the quantile per …","Select the column(s) that should be aggregated. You can …","","","","Aggregate grouped Series and determine the standard …","Aggregate grouped series and compute the sum per group.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a reference to the GroupsIdx.","Get a reference to the GroupsSlice.","Aggregate grouped Series and determine the variance per …","","","","","","","","","","","","","","","","","","","","Safety","","","","","[ChunkIdx, DfIdx]","","","","","","","","","","","No unique checks","Check if join keys are unique in right dataset.","Check if join keys are unique in left dataset.","Check if join keys are unique in both left and right …","","","","","If Categorical types are created without a global string …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An AnyValueBuffer that should be used when we trust the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","Will add the AnyValue into Self and unpack as the physical …","","","","","","","","","","","","","","Coerces a slice of datatypes into a single supertype.","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Infer schema from rows and set the first no null type as …","Infer schema from rows and set the supertypes of the …","","","","","","","","","","","","","","","","Casts all series to string data and will concat them in …","Compute the covariance between two columns.","Compute the covariance between two columns.","Concat [DataFrame]s diagonally. Concat diagonally thereby …","Concat [DataFrame]s horizontally. Concat horizontally and …","Compute the pearson correlation between two columns.","Compute the pearson correlation between two columns.","","","","","Groupby aggregation","","","","Multiple values that are used for all columns","A single value that’s used for all columns","AllowedOptimizations","","","","","","","","Keep any of the unique rows This allows more optimizations","","A thread-safe reference-counting pointer. ‘Arc’ stands …","Argmin/ Argmax","","","","A nested list with a fixed size in each row","","","Specialized expressions for Series of DataType::List.","","The set of supported logical types in this crate.","","Represents Arrow’s metadata of a “column”.","","Typedef for a std::result::Result of an Error.","An ordered sequence of Fields with associated Metadata.","The time units defined in Arrow.","","","","","","","","","Automatically determine over which unit to parallelize …","","previous value in array","selects the last row in the right DataFrame whose ‘on’ …","","A raw binary array","","","Opaque binary data of variable length whose offsets are …","","","","","","","","","","","","","","A binary true or false.","A binary true or false.","","true and false.","","","","","","","","","","","","Cache the input at this point in the LP","","","","","","","","Specialized expressions for Categorical dtypes.","","","","Intermediate state of a chained …","Intermediate state of a chained …","Aggregation operations","Aggregations that return Series of unit length. Those can …","","Fastest way to do elementwise operations on a …","Apply kernels on the arrow array chunks in a ChunkedArray.","","Cast ChunkedArray<T> to ChunkedArray<N>","Compare Series and ChunkedArray’s and get a boolean mask …","","Create a new ChunkedArray filled with values at that index.","Explode/ flatten a List or Utf8 Series","Replace None values with a value","Filter values by a boolean mask.","Fill a ChunkedArray with one value.","","Find local minima/ maxima","Quantile and median aggregation","Reverse a ChunkedArray<T>","This differs from ChunkWindowCustom and ChunkWindow by not …","Create a ChunkedArray with new values by index or by …","","Shift the values of a ChunkedArray by a number of periods.","Sort operations on ChunkedArray.","Fast access by index.","Get unique values in a ChunkedArray","Variance and standard deviation aggregation.","Combine two ChunkedArray based on some predicate.","ChunkedArray","","","","","","","","","Parallelize over the columns","","","","","","Special case that does not need columns","","","","Create a new DataFrame by reading a csv file.","Write a DataFrame to csv.","","","","","","A contiguous growable collection of Series that have the …","","","In memory DataFrame","","","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","Arguments used by datetime in order to produce an Expr of …","","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","","A dictionary encoded array (key_type, value_type), where …","","Remove duplicates from the table","","","","","Dummy type, we need to instantiate all generic types, so …","","","","","","Measure of elapsed time. This elapsed time is a physical …","Arguments used by duration in order to produce an Expr of …","","","","","","","","","Catches errors and throws them later","Can be used in a select statement to exclude a column from …","","","","Explode the aggregated list and just do a hstack instead …","Expressions that can be used in various contexts. Queries …","","This allows expressions to access other tables","Extension type.","Characterizes the name and the DataType of a column.","","","","","","","","Keep the first unique row.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","A 64-bit floating point number.","","A f64","","","","","","next value in array","selects the first row in the right DataFrame whose …","","","","","","","","Ensure that the same hash is used as with VecHash.","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Returned by a groupby operation on a DataFrame. This …","","","Indexes of the groups, the first index is stored …","","","","","Every group is indicated by an array where the","Map the group values to the position","","","","","Adding columns to the table without a Join","","","","","","","","","The type used by polars to index data.","","","","This trait exists to be unify the API of polars Schema and …","","","","","","","A 16-bit integer number.","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","An 8-bit integer number.","","An i8","","","","","A “calendar” interval modeling elapsed time that takes …","Used to create the tuples for a groupby operation.","","","Used to convert a ChunkedArray, &dyn SeriesTrait and Series","Create a type that implements a faster TakeRandom.","","","","Compression codec","Read Arrows IPC format into a DataFrame","Read Arrows Stream IPC format into a DataFrame","Write a DataFrame to Arrow’s Streaming IPC format","","Write a DataFrame to Arrow’s IPC format","","","","Mask the first unique values as true","","Safety","Check if element is member of list array","","","Mask the last unique values as true","","","","","","","","","","","","","Join the groups as ‘List<group_dtype>’ to the row …","Join operation","","","","","A single JSON array containing each DataFrame row as an …","The format to use to write the DataFrame to JSON: Json (a …","","Each DataFrame row is serialized as a JSON object on a …","Reads JSON in one of the formats in JsonFormat into a …","Writes a DataFrame to JSON.","Set root name as Alias","LZ4 (framed)","Opaque binary data of variable length whose offsets are …","","A list of some logical data type whose offsets are …","","","A variable-length UTF-8 encoded string whose offsets are …","","","Keep the last unique row.","","Reads LazyFrame from a filesystem or a cloud storage. …","Lazy abstraction over an eager DataFrame. It really is an …","Utility struct for lazy groupby operation.","","","","","Use the string value for sorting","","","","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","","","","","Specialized expressions for Series of DataType::List.","","","","","","","","","","","Utf8Array: caches the string values","Utf8Array: caches the string values","","","","","Maps a logical type to a a chunked array implementation of …","","","Utf8 encoding and unknown bytes are replaced with �","","","","","","","A nested type that is represented as","A (User Defined) Function","","","maximum value in array","","replace with the maximum value of that data type","","mean value of array","","","","Arguments for [DataFrame::melt] function","Specialized expressions for Categorical dtypes.","Time in microseconds.","","","Time in milliseconds.","","","","minimal value in array","","replace with the minimal value of that data type","","","only useful if periods are weekly","","","","","","","","","Tuples that map column names to null value of that column","","","","","Time in nanoseconds.","","","","","selects the right in the right DataFrame whose ‘on’ …","","","Just a wrapper structure. Useful for certain impl …","","Don’t parallelize","Keep None of the unique rows.","","","Take the nth column in the DataFrame","The literal Null","","","","Null type","","","","","","","","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","replace with the value one","","State of the allowed optimizations","","","","","","","","","Read Apache parquet format into a DataFrame.","","Write a DataFrame to parquet format","","Use the physical categories for sorting","Take a DataFrame and evaluate the expressions. Implement …","Wrapper struct that allow us to use a PhysicalExpr in …","","","This hashmap has the uses an IdHasher","","","","","","","","","A PolarsIterator is an iterator over a ChunkedArray which …","","","","Values need to implement this so that they can be stored …","","","Any type that is not nested","","","","","","Column selection","","","","","","","","","","","","","","Repeat the values n times.","","","","","","","","","","","","","","","","Parallelize over the row groups","","","","","","A map from field/column name (String) to the type of that …","","","","","Time in seconds.","Filter on a boolean mask","Expressions in this node should only be expanding e.g. …","","","Series","","A wrapper trait for any binary closure …","","","","","A wrapper trait for any closure …","","","","","","","","","","Slice the table","","Slice is always sorted in ascending order.","Utility trait to slice concrete arrow arrays whilst …","","","","Sort the table","","","","Wrapper type that has special equality properties …","","","","Concat the values into a string array.","","","","","","","A nested DataType with a given number of Fields.","A StructArray is a nested Array with an optional validity …","This is logical type StructChunked that dispatches most …","","","Specialized expressions for Struct dtypes.","","","","","","One of the three arguments allowed in unchecked_take","","","","","Random access","","","","","","A ternary operation if true then “foo” else “bar”","Intermediate state of when(..).then(..).otherwise(..) …","","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","","A i64 representing a timestamp measured in TimeUnit with …","","","","","","","An unsigned 16-bit integer number.","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","An unsigned 8-bit integer number.","","An u8","","","","","","A nested datatype that can represent slots of differing …","","","","","","Utf8 encoding","A UTF8 encoded string type.","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","","","","An UTF8 encoded string type.","","","","","","","","","","Intermediate state of when(..).then(..).otherwise(..) …","","Represents a window in time","See postgres window functions","","","","","ZSTD","replace with the value zero","","Represents a valid zstd compression level.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the sum of the Series as a new Series of length 1.","","Convert all values to their absolute/positive value.","","","","","","","Group by and aggregate.","Get the group indexes of the group by operation.","","Rename Column.","Selects all columns. Shorthand for col("*").","Check if all boolean values are true","Create a new column with the the bitwise-and of the …","Allow parallel table evaluation.","","specify if the scan provider should allow predicate …","specify if the scan provider should allow projection …","","specify if the scan provider should allow slice pushdowns","and operation","","Check if any boolean value is true","Create a new column with the the bitwise-or of the …","Append expressions. This is done by adding the chunks of …","","","","","","","Apply a closure elementwise. This is fastest when the null …","Apply a function over the groups as a new DataFrame. It is …","Apply a function/closure over the groups. This should only …","Like map_binary, but used in a groupby-aggregation context.","Apply a closure elementwise and cast to a Numeric …","","Apply kernel and return result as a new ChunkedArray.","Apply a kernel that outputs an array of different type.","Apply a function/closure over the groups with many …","","Apply a function/closure over the groups of multiple …","Apply a closure elementwise including null values.","Apply a closure elementwise and write results to a mutable …","Apply a closure elementwise. The closure gets the index of …","Apply a closure elementwise. The closure gets the index of …","Create list entries that are range arrays","Compute the inverse cosine of the given expression","Compute the inverse hyperbolic cosine of the given …","Arcs this array into a std::sync::Arc<dyn Array>.","Compute the inverse sine of the given expression","Compute the inverse hyperbolic sine of the given expression","Compute the inverse tangent of the given expression","Compute the inverse tangent of the given expression, with …","Compute the inverse hyperbolic tangent of the given …","Get the index of the maximal value","Return the index of the maximum value of every sublist","Get the index value that has the maximum value","Get the index of the minimal value","Return the index of the minimal value of every sublist","Get the index value that has the minimum value","Retrieve the indexes needed to sort this array.","Get the index values that would sort this expression.","Retrieve the indexes needed for a sort.","Find the indexes that would sort these series in order of …","Retrieve the indexes need to sort this and the other …","Get first index of the unique values in a ChunkedArray. …","Get the first index of unique values of this expression.","Get first indexes of unique values.","Get the indices where condition evaluates true.","","Get the array::ArrayNameSpace","","APIs to read from and write to NDJSON","Get arrow schema of the Ipc File, this is faster than …","Get arrow schema of the Ipc Stream File, this is faster …","","","Get a hold to self as Any trait reference. Only …","","Get a hold to self as Any trait reference. Only …","","","Parsing string values and return a DateChunked","Parsing string values and return a DateChunked Different …","Parsing string values and return a DatetimeChunked","Parsing string values and return a DatetimeChunked …","","","Convert to a partitioned aggregator.","","","","Rechunk and return a pointer to the start of the Series. …","","Can take &dyn Statistics and determine of a file should be …","","Take several expressions and collect them into a …","Parsing string values and return a TimeChunked","","Find the mean of all the values in the column named name. …","Fill missing value with next non-null.","","","","","","","","","","","","","","Compute op(l, r) (or equivalently l op r). l and r must …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Boxes this array into a Box<dyn Array>.","","","Apply a closure on optional values and cast to Numeric …","","Compute the rolling aggregates with a window defined by a …","","Caches the result into a new LazyFrame. This should be …","","","use a cache of unique, converted dates to apply the …","","","","","","Casts the column given by Expr to a different type.","Cast a [ChunkedArray] to [DataType]","","","Cast expression to another data type.","Does not check if the cast is a valid one and may …","","Get the CategoricalNameSpace","Compute the cube root of the given expression","Ceil underlying floating point array to the highest …","Set the labels at the center of the window.","Set the labels at the center of the window.","Set the labels at the center of the window.","","","In cases sortedness cannot be checked by the sorted flag, …","In cases sortedness cannot be checked by the sorted flag, …","Checked integer division. Computes self / rhs, returning …","","","Get the lengths of the underlying chunks","Traits and utilities for temporal data.","Underlying chunks.","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Clone inner ChunkedArray and wrap in a new Arc","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The closed window of that time window if given","","","","","CloudOptions used to list files.","","","Folds the expressions from left to right keeping the first …","Create a Column Expression based on a column name.","Execute all the lazy operations and collect them into a …","Collect all LazyFrame computations.","Select multiple columns by name.","","","Data page compression","Data page compression","Concat multiple","Concat with the values from a second Utf8Chunked","","Recommended concatenation of LazyFrames from many input …","","Concat lists entries.","Horizontally concat string columns in linear time","Check if binary contains given literal","Check if strings contain a regex pattern.","Check if the list array contain an element","Check if strings contain a given literal","Check if strings contain a given literal","Compute the cosine of the given expression","Compute the hyperbolic cosine of the given expression","Compute the cotangent of the given expression","Count expression","Count the values of the Series or Get counts of the group …","Count all successive non-overlapping regex matches.","Compute the covariance between two columns.","","","Creates the cartesian product from both frames, preserves …","Cumulatively count values from 0 to len.","Accumulate over multiple columns horizontally / row wise.","Get an array with the cumulative max computed at every …","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative product computed at every …","Accumulate over multiple columns horizontally / row wise.","Get an array with the cumulative sum computed at every …","Get an array with the cumulative sum computed at every …","Run an expression over a sliding window that increases 1 …","if None will be 1024^2 bytes","","Its logical DataType","Data types supported by Polars.","Create a column of date ranges from a start and stop …","","Construct a column of Datetime from the provided …","","","","Extract day from underlying NaiveDate representation. …","Extract day from underlying NaiveDateTime representation. …","Extract day from underlying NaiveDateTime representation. …","","Extract the days from a Duration","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from radians to degrees","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Explain the optimized logical plan.","Explain the naive logical plan.","","","Concat LazyFrames diagonally. Calls concat internally.","Diff every sublist.","","","","","","Arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Removes columns from the DataFrame. Note that its better …","Drop NaN values","Drop null rows.","Drop null values","Drop all null values and return a new Series.","","","","Get data type of ChunkedArray.","Get datatype of series.","","Select multiple columns by dtype.","Select multiple columns by dtype.","Construct a column of Duration from the provided …","Check if strings ends with a substring","Check if strings ends with a substring","Compute the entropy as -sum(pk * log(pk). where pk are …","Compute the entropy as -sum(pk * log(pk). where pk are …","","","","","","","","","","","","","","","","","","Compare Expr with other Expr on equality","","","","","","","","","","","","","","","","","","","Compare Expr with other Expr on equality where None == None","Check for equality.","Check for equality where None == None.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Run any Expr on these lists elements","Take a DataFrame and evaluate the expression.","","Some expression that are not aggregations can be done per …","This is called in partitioned aggregation. Partitioned …","start a window at this interval","Period length","If polars may parse matches that not contain the whole …","Exclude a column from a wildcard/regex selection.","","Calculate the exponential of all elements in the input …","Calculate the exponential of all elements in the input …","Explain the logical plan.","Apply explode operation. See eager explode.","","Explode the utf8/ list column","","","","","","Extract the nth capture group from pattern","Extract each successive non-overlapping regex match in an …","Extract each successive non-overlapping regex match in an …","","Fetch is like a collect operation, but it overwrites the …","","Get field (used in schema)","","Retrieve one of the fields of this StructChunked as a new …","Returns the fields of this StructArray.","The fields composing this schema.","","Fill NaN values in the DataFrame","Replace the floating point NaN values by a value.","Fill none values in the DataFrame","Replace the null values by a value.","Replace None values with a give value T.","Filter values in the ChunkedArray with a boolean mask.","Filter by boolean mask. This operation clones data.","Filter by some predicate expression.","Filter a single column.","Called to merge all the partitioned results in a final …","Take the SerReader and return a parsed DataFrame.","","","Get the final LazyFrame.","Finish builder","Read the file and create the DataFrame.","","","","","","","Take the SerReader and return a parsed DataFrame.","","","Write the given DataFrame in the the writer W. Returns the …","","Get the final LazyFrame. This method assumes, that path is …","","","","First column in DataFrame","Get first item of every sublist.","Get the first row.","Get the first value in the group.","","Alias for explode","","Floor underlying floating point array to the lowest …","Floor divide self by rhs.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Optional parameters for the rolling function","","","Accumulate over multiple columns horizontally / row wise.","Force parallel table evaluation.","","Formatting string","Format the results of an array of expressions using a …","Fill missing value with previous non-null.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Safety","Safety","","","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a new ChunkedArray from an iterator.","Create a list-array from an iterator. Used in groupby …","","","Create a list-array from an iterator. Used in groupby …","Create a new ChunkedArray from an iterator.","","This is the recommended way to create a csv reader as this …","This is the recommended way to create a json reader as …","","","","","Initialize by name and values.","","Create a ChunkedArray with a single value.","","A function that cannot be expressed with map or apply and …","","Get a nullable value by index.","Get a nullable value by index.","Get a single value by index. Don’t use this operation …","Get items in every sublist by index.","Get a single value. Beware this is slow.","Gets AnyValue from LogicalType","Get a single value. Beware this is slow. If you need to …","Safety","","Get current optimizations","Getter for the DataType of the value","","","returns the bounds for the earliest window bounds that …","","","","Returns the fields the DataType::Struct.","","Get a vector of all column names.","Get the value at this index as a downcastable Any trait …","","","","Safety","Safety","Get a value by index and ignore the null bit.","Get a value by index and ignore the null bit.","Get a single value by index. Don’t use this operation …","Useful for a Utf8 or a List to get underlying value size. …","Get list of files referenced by this reader.","Create the tuples need for a groupby operation. * The …","Group by and aggregate.","","Group based on a time value (or index value of type Int32, …","","Create rolling groups based on a time column.","Similar to groupby, but order of the DataFrame is …","Different from groupby_windows, where define window …","Based on the given Window, which has an","Greater than comparison.","Check if Expr > Expr","Greater than or equal comparison.","Check if Expr >= Expr","Set whether the CSV file has headers","Set whether to write headers","Set whether the CSV file has headers","Whether this expression expands to multiple expressions.","Return if any the chunks in this [ChunkedArray] have a …","","","","","","","","","","","","","","","","","","","Get the head of every sublist","Return first n rows of each group","Get the first n elements of the Expr result","","","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","","Extract the hours from a Duration","","Select the join type.","","","Aggregate the group to a Series","","add the boundaries to the dataframe","Time or index column","Time or index column","Get the index of a column by name.","","Set the CSV reader to infer the schema of the file","Set the JSON reader to infer the schema of the file. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Perform an inner join on two DataFrames.","Join query with other lazy query.","Generate a range of integers.","Generate a range of integers for each row of the input …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Deconstructs the StructArray into its individual …","","","","","","","","","Get a hold to an implementor of the Display trait that …","","","Check if Series is empty.","Get mask of finite values if dtype is Float","","","Get a mask of the first unique value.","","Check if elements of this array are in the right Series, …","Check if the values of the left expression are in the …","Check if elements of this Series are in the right Series, …","Get mask of infinite values if dtype is Float","","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDateTime representation. …","","","Get mask of NaN values if dtype is Float","Get inverse mask of NaN values if dtype is Float","A column which is false wherever expr is null, true …","Get a mask of the non-null values.","Run is_not_null operation on Expr.","A column which is true wherever expr is null, false …","Get a mask of the null values.","Run is_null operation on Expr.","Its nullability","Whether this expression expands to multiple expressions …","","A projection that only takes a column or a column + alias.","","Check if Series is sorted.","","true if zero duration.","This year number might not match the calendar year number.","","","Turn the batched reader into an iterator.","Returns an iterator of Option<Box<dyn Array>>","Generic join method. Can be used to join on multiple …","Join all string items in a sublist and place a separator …","Generic join function that can join on multiple columns.","Control more join options with the join builder.","Convert data between the Arrow memory format and JSON …","Keep the original root name","Last column in DataFrame","Get last item of every sublist.","Get the last row","Get the last value in the group.","","","Perform a left join on two DataFrames","Join query with other lazy query.","The columns you want to join the left table on.","Get length of series.","","Get lengths of the arrays in the List type.","Limit the DataFrame to the first n rows. Note if you don’…","Take num_elements from the top as a zero copy view.","","Create a Literal Expression from L. A literal expression …","Literal expression.","","","Compute the logarithm to a given base","Compute the logarithm to a given base","Compute the natural logarithm of all elements plus one in …","Compute the natural logarithm of all elements plus one in …","","","Reduce memory consumption at the expense of performance","Reduce memory consumption at the expense of performance","Reduce memory usage in expensive of performance","Reduce memory usage in expensive of performance","","Get minimal value that could be hold by this dtype.","","","","","Get the value by index in the sublists. So index 0 would …","In case the inner dtype DataType::Utf8, the individual …","","","","","","","","","","","","Less than comparison.","Check if Expr < Expr","Less than or equal comparison","Check if Expr <= Expr","maintain the order the data was processed","maintain the order the data was processed","","Apply a function/closure once the logical plan get …","Apply a function/closure once the logical plan get …","Define an alias by mapping a function over the original …","Apply a closure on the two columns that are evaluated from …","","","","","","Apply a function/closure once the logical plan get …","Apply a function/closure over multiple columns once the …","Apply a function/closure once the logical plan get …","","Apply a function/closure over multiple columns once the …","Explode the aggregated list and just do a hstack instead …","Find the maximum of all the values in the column named name…","Compute the maximum of the items in every subarray.","Compute the maximum of the items in every sublist.","Aggregate all the columns as their maximum values.","Returns the maximum value in the array, according to the …","Reduce groups to maximum value.","Get the max of the ChunkedArray as a new Series of length …","Get the max of the Series as a new Series of length 1.","Create a new column with the the maximum value per row.","Find the mean of all the values in the column named name. …","Compute the mean of every sublist and return a Series of …","Aggregate all the columns as their mean values.","Returns the mean value in the array. Returns None if the …","Reduce groups to the mean value.","Returns the mean value in the array Returns an option …","Find the median of all the values in the column named name…","Aggregate all the columns as their median values.","Returns the mean value in the array. Returns None if the …","Reduce groups to the median value.","Returns the median value in the array Returns an option …","Get the median of the ChunkedArray as a new Series of …","Get the median of the Series as a new Series of length 1.","Melt the DataFrame from wide to long format","","Set if the file is to be memory_mapped. Only works with …","","Get the meta::MetaNameSpace","Additional custom (opaque) metadata.","Optional metadata.","","","Extract the microseconds from a Duration","","Extract the milliseconds from a Duration","","Find the minimum of all the values in the column named name…","Compute the minimum of the items in every subarray.","Compute the minimum of the items in every sublist.","Aggregate all the columns as their minimum values.","","Reduce groups to minimal value.","Get the min of the ChunkedArray as a new Series of length …","Get the min of the Series as a new Series of length 1.","Create a new column with the the minimum value per row.","Amount of elements in the window that should be filled …","Amount of elements in the window that should be filled …","","Amount of elements in the window that should be filled …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","","Extract the minutes from a Duration","","The most occurring value(s). Can return multiple Values","Compute the mode(s) of this column. This is the most …","Compute the most occurring element in the array.","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","","","","","","","","","","","","Expr::mutate().apply(fn())","Number of chunks in this Series","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","","","","","Number of unique values in the ChunkedArray","Get the number of unique values in the groups.","Get unique values in the Series.","Name of series.","","","Its name","Reduce groups to maximum value.","Reduce groups to minimal value.","","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Returns the number of nanoseconds since the whole non-leap …","Extract the nanoseconds from a Duration","Returns the nanoseconds from the Duration without the …","","Translate the negative index to an offset.","Compare Expr with other Expr on non-equality","Compare Expr with other Expr on non-equality where …","Create a new instance of the [SerReader]","","","Initialize by name and values.","","","Create a new CsvReader from a file/ stream","","","","","","","","Create a new JsonWriter writing to buffer with format …","","Create a new JsonLineReader from a file/ stream","Create a new ParquetReader from an existing Reader.","Create a new integer size Duration","","","Create a new writer","","","","Construct a new DatetimeArgs set to year, month, day","Create a new DurationArgs with all fields set to lit(0). …","Returns a new StructArray","","Creates an empty StructArray.","Create a new ChunkedArray filled with values at that index.","Create a new Series filled with values from the given …","Creates a null StructArray of length length.","","","","","Negates a boolean column.","Negate Expr","Check for inequality.","Check for inequality where None == None.","","Count the null values.","Aggregate all the columns as the sum of their null value …","Get the null count of the column/group","","Number of rows in the parquet file.","offset window boundaries","","Offset of the window","","The columns you want to join both tables on.","","","or operation","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Extract ordinal year from underlying NaiveDateTime …","","","","Perform an outer join on two DataFrames","Join query with other lazy query.","Get the output name of this expression.","","Apply window function over a subgroup. This is similar to …","","","","Parse a string into a Duration","","","","","","","Path of the scanned file. It can be potentially a glob …","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Get a boolean mask of the local minimum peaks.","Compute the pearson correlation between two columns.","window duration","window duration","Constant Pi","","","","","Pop latest expression and return the input(s) of the …","Raise expression to the power exponent","","","","Add a prefix to the root column name.","","Get the product of the ChunkedArray as a new Series of …","Get the product aggregation of an expression","Profile a LazyFrame.","","Find a specific quantile of all the values in the column …","Aggregate all the columns as their quantile values.","Aggregate a given quantile of the ChunkedArray. Returns …","Compute the quantile per group.","Get the quantile of the ChunkedArray as a new Series of …","Get the quantile of the ChunkedArray as a new Series of …","Extract month from underlying NaiveDateTime representation.","Extract quarter from underlying NaiveDateTime …","Extract quarter from underlying NaiveDateTime …","Convert from degrees to radians","Create a range literal.","","","Read the parquet file in parallel (default). The single …","Rechunk the memory to contiguous chunks when parsing is …","Aggregate all chunks to a contiguous array of memory.","","","","","","Analogous to Iterator::reduce.","","","","Rename the Series.","Rename columns in the DataFrame.","Rename the fields of the StructChunked.","Create a column of length n containing n copies of the …","Repeat the values n times, where n is determined by the …","Repeat the column n times, where n is determined by the …","","Replace the leftmost regex-matched (sub)string with …","Replace all regex-matched (sub)strings with another string","Replace the leftmost literal (sub)string with another …","Replace all matching literal (sub)strings with another …","","","","Return a reversed version of this array.","return a Series in reversed order","Reverse every sublist","Reverse the DataFrame","Reverse column","","The columns you want to join the right table on.","","Apply a custom function over a rolling/ moving window of …","Apply a custom function over a rolling/ moving window of …","Apply a custom function over a rolling/ moving window of …","","","Apply a rolling max (moving max) over the values in this …","Apply a rolling max to a Series.","Apply a rolling maximum.","Apply a rolling mean (moving mean) over the values in this …","Apply a rolling mean to a Series.","Apply a rolling mean.","Apply a rolling median (moving median) over the values in …","Apply a rolling median to a Series.","Apply a rolling median.","Apply a rolling min (moving min) over the values in this …","Apply a rolling min to a Series.","Apply a rolling minimum.","Apply a rolling quantile (moving quantile) over the values …","Apply a rolling quantile to a Series.","Apply a rolling quantile.","Apply a rolling std (moving std) over the values in this …","Apply a rolling std_dev to a Series.","Apply a rolling std-dev","Apply a rolling sum (moving sum) over the values in this …","Apply a rolling sum to a Series.","Apply a rolling sum.","Apply a rolling var (moving var) over the values in this …","Apply a rolling variance to a Series.","Apply a rolling variance","Get the root column names.","","Round underlying floating point array to given decimal …","Round the given ms timestamp by the window boundary.","Round the given ns timestamp by the window boundary.","Round the given us timestamp by the window boundary.","Add a row_count column.","Add a row_count column.","Add a row_count column.","","","","If None will be all written to a single row group.","Proxy of the number of rows in both sides of the joins …","","","","","","Sets the size of the sample taken from the CSV file. The …","Creates a dataframe from the supplied function & scan …","","Create a LazyFrame directly from a ipc scan.","Create a LazyFrame directly from a parquet scan.","Get schema of the Ipc File","Get schema of the Ipc Stream File","Schema of the file.","function to supply the schema. Allows for an optional …","","Get a hold on the schema of the current LazyFrame …","","","","","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","","Extract the seconds from a Duration","","Select (and rename) columns from the query.","","Set the values where the mask evaluates to true to some …","Set the values at indexes idx to some optional value …","","Set the values at indexes idx by applying a closure to …","Safety","Try to reduce memory pressure at the expense of …","","Serialize columns in parallel","","","","","Make sure that all columns are contiguous in memory by …","Set this Series as sorted so that downstream code can use …","Sets the validity of this array.","","Shift the values by a given period and fill the parts that …","Shift every sublist.","Shift the values by a given period and fill the parts that …","Shift the values in the array by some period. See the …","Shift the values by a given period and fill the parts that …","Shift the values by a given period and fill the parts that …","Shift the values in the array by some period and fill the …","Shrink numeric columns to the minimal required datatype …","","Shrink the capacity of this array to fit its length.","","","Compute the sine of the given expression","Compute the hyperbolic sine of the given expression","Stream a query result into an ipc/arrow file. This is …","Stream a query result into a parquet file. This is useful …","","","","Get a zero copy view of the data.","Slice every sublist.","Slice the DataFrame.","Slice the Series. offset may be negative.","","Slices this StructArray.","","","Slices this Array.","","Slices the Array.","","Slices this StructArray.","","Returns this array sliced.","Returns this array sliced.","","Returned a sorted ChunkedArray.","Sort every sublist.","Add a sort operation to the logical plan.","Sort in increasing order. See the eager implementation.","Sort this column by the ordering of another column. Can …","Add a sort operation to the logical plan.","","Sort with given options.","","Compute the spearman rank correlation between two columns. …","Compute the square root of the given expression","","Check if strings starts with a substring","Check if strings starts with a substring","Compute and write column statistics.","Aggregate all the columns as their standard deviation …","Compute the standard deviation of this ChunkedArray/Series.","Standard deviation of the values of the Series","Get the standard deviation of the ChunkedArray as a new …","Get the standard deviation of the Series as a new Series …","","Concat the values into a string array.","Concat the values into a string array.","Get the length of the string values as number of bytes.","Get the length of the string values as number of chars.","Slice the string values Determines a substring starting …","","Whether the melt may be done in the streaming engine This …","","Convert from Time into Utf8 with the given format. See …","If set then polars will return an error if any date …","Cast expression to another data type. Throws an error if …","","Get the struct_::StructNameSpace","","","","Suffix to add duplicate column names in join. Defaults to …","Add a suffix to the root column name.","","Sum all the values in the column named name. Shorthand for …","Compute the sum of the items in every subarray.","Compute the sum the items in every sublist.","Aggregate all the columns as their sum values.","Aggregate the sum of the ChunkedArray. Returns None if not …","Reduce groups to the sum of all the values.","Get the sum of the ChunkedArray as a new Series of length …","Create a new column with the the sum of the values in each …","","Get the tail of every sublist","Get the last n rows","Return last n rows of each group","Get the last n elements of the Expr result","Take values from ChunkedArray by index. Note that the …","Take by index. This operation is clone.","Take the values by idx.","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Create a type that implements TakeRandom.","Take values from ChunkedArray by index.","Take by index if ChunkedArray contains a single chunk.","Compute the tangent of the given expression","Compute the hyperbolic tangent of the given expression","vector of i64 representing temporal values","","","","","Create a column of time ranges from a start and stop …","Convert date(time) object to timestamp in TimeUnit.","","","","","","","Get a dot language representation of the LogicalPlan.","Get a dot language representation of the Expression.","","Create dummy variables.","Get the output field of this expr","Get Field result of the expression. The schema is the …","Modify the strings to their lowercase equivalent","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert Time into Utf8 with the given format. See chrono …","","","","","","Modify the strings to their uppercase equivalent","A tolerance in the same unit as the asof column","An timedelta given as","","","truncate the time column values to the window","","","","","","","","Truncate the given ns timestamp by the window boundary.","","Truncate the given us timestamp by the window boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a new StructArray.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This should be used as type information. Consider this a …","","Undo any renaming operation like alias, keep_name.","Get unique values of a ChunkedArray","Keep only the unique values in every sub-array.","Keep only the unique values in every sublist.","Keep unique rows, do not maintain order","Get unique values of this expression.","Get unique values in the Series.","Keep only the unique values in every sub-array.","Keep only the unique values in every sublist.","Keep unique rows and maintain order","Get unique values of this expression, while maintaining …","","Unnest the given Struct columns. This means that the …","Get maximal value that could be hold by this dtype.","Upsample a DataFrame at a regular frequency.","Upsample a DataFrame at a regular frequency.","How to deal with ambiguous datetimes","Use statistics in the parquet to determine if pages can be …","","","","","","The optional validity.","Create a DataFrame with the unique values of this Series …","Count all unique values and create a struct mapping value …","","","Returns the values of this StructArray.","Returns an iterator of Box<dyn Array>","Aggregate all the columns as their variance values.","Compute the variance of this ChunkedArray/Series.","Variance of the values of the Series","Get the variance of the ChunkedArray as a new Series of …","Get the variance of the Series as a new Series of length 1.","","Compute the hash for all values in the array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Extract ISO weekday from underlying NaiveDate …","Extract ISO weekday from underlying NaiveDateTime …","Returns the ISO weekday number where monday = 1 and sunday …","","","","","An optional slice with the same length as the window that …","An optional slice with the same length as the window that …","An optional slice with the same length as the window that …","Start a when(..).then(..).otherwise(..) expression","","","The length of the window.","The length of the window.","","The length of the window.","The table to join with.","","Set the batch size (number of records to load at one time)","","Cache the DataFrame after reading.","","Sets the chunk size used by the parser. This influences …","Sets the chunk size used by the parser. This influences …","Add a column to a DataFrame","Columns to select/ project","Columns to select/ project","Columns to select/ project","Columns to select/ project","Add multiple columns to a DataFrame.","","Set the comment character. Lines starting with this …","Set the comment character. Lines starting with this …","Set the compression used. Defaults to None.","Set the compression used. Defaults to None.","Set the compression used. Defaults to None.","Set the compression used. Defaults to None.","Set the compression used. Defaults to Zstd.","","Sets the maximum bytes size of a data page. If None will …","Set the CSV file’s date format","Set the CSV file’s datetime format","Set the day","Set the days","Set the CSV file’s column delimiter as a byte character","Set the CSV file’s column delimiter as a byte character","Set the CSV file’s column delimiter as a byte character","Overwrite the schema with the dtypes in this given Schema. …","Overwrite the schema with the dtypes in this given Schema. …","Overwrite the dtypes in the schema in the order of the …","Set CsvEncoding","Set CsvEncoding","","Set the char used as end of line. The default is b'\\\\n'.","Set the extension. Defaults to “.ipc”.","Set the extension. Defaults to “.ipc”.","Set the CSV file’s float precision","Set milliseconds, microseconds, and nanoseconds","Set hour, minute, and second","Set hours, minutes, and seconds","Set the hour","Set the hours","Continue with next batch when a ParserError is encountered.","Return a null if an error occurs during parsing.","Continue with next batch when a ParserError is encountered.","Set the number of rows to use when inferring the csv …","Set the number of rows to use when inferring the json …","","","Set the microsecond","Set the microseconds","Set the milliseconds","Set the minute","Set the minutes","Treat missing fields as null.","Treat missing fields as null.","Set the month","Try to stop parsing when n rows are parsed. During …","Stop reading when n rows are read.","Stop reading when n rows are read.","","Stop parsing when n rows are parsed. By settings this …","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","Set the number of threads used in CSV reading. The default …","","Set the nanoseconds","Set the CSV file’s null value representation","Set values that will be interpreted as missing/ null. Note …","Set values that will be interpreted as missing/ null.","Set allowed optimizations","Set path of the scanned file. Support glob patterns.","The preferred way to initialize this builder. This allows …","","","","","Toggle predicate pushdown optimization.","Set the reader’s column projection. This counts from 0, …","Set the reader’s column projection. This counts from 0, …","Set the reader’s column projection. This counts from 0, …","Set the reader’s column projection: the names of the …","Set the reader’s column projection. This counts from 0, …","Toggle projection pushdown optimization.","Set the char used as quote char. The default is b'"'. If …","Set the char used as quote char. The default is b'"'. If …","Set the single byte character used for quoting","Rechunk the memory to contiguous chunks when parsing is …","Rechunk the DataFrame to contiguous memory after the CSV …","","Rechunk the memory to contiguous chunks when parsing is …","Rechunk the memory to contiguous chunks when parsing is …","Add a row_count column.","Add a row_count column.","Add a row_count column.","Add a row_count column.","Add a row_count column.","Add a row_count column.","Add a new column at index 0 that counts the rows.","Set the row group size (in number of rows) during writing. …","Set the CSV file’s schema. This only accepts datatypes …","Set the JSON file’s schema","","Set the CSV file’s schema","Set the JSON file’s schema","Modify a schema before we run the lazy scanning.","Overwrite parts of the inferred schema.","","Set the second","Set the seconds","Toggle expression simplification optimization on or off","Skip the first n rows during parsing. The header will be …","Skip the first n rows during parsing. The header will be …","Skip these rows after the header","Skip this number of rows after the header location.","Toggle slice pushdown optimization","Compute and write statistic","Allow (partial) streaming engine","Set the CSV file’s time format","Automatically try to parse dates/ datetimes and time. If …","Automatically try to parse dates/ datetimes and time. If …","Toggle type coercion optimization.","Returns this array with a new validity.","","Set the weeks","Set the year","Turn off all optimizations","","Extract month from underlying NaiveDate representation. …","Extract month from underlying NaiveDateTime representation.","Extract year from underlying NaiveDateTime representation. …","","","Create a new ChunkedArray with values from self where the …","","","","","","","","","","","","","","","","","","","","function to apply","Also has the input. i.e. avg(“foo”)","","function to apply","","function arguments","","","function arguments","","","length is not yet known so we accept negative offsets","","","","","","","output dtype of the function","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","","APIs to serialize and write to NDJSON.","The error type of iteration.","A fallible, streaming iterator.","An iterator adapter that receives an implementer of Write …","The type being iterated over.","FallibleStreamingIterator that serializes an Array to …","","Advances the iterator to the next position.","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","Borrows an iterator, rather than consuming it.","","","Returns the number of remaining elements in the iterator.","","","","","","","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","Calls U::from(self).","Calls U::from(self).","Returns the inner content of this iterator","","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new FileWriter.","Creates a new Serializer.","Advances the iterator, returning the next element.","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","Specialized expressions for Series of DataType::Utf8.","","","Check if a binary value contains a literal binary.","","","","Check if a binary value ends with the given sequence.","Returns the argument unchanged.","","Calls U::from(self).","Check if a binary value starts with the given sequence.","","","","","Specialized expressions for Categorical dtypes.","","Use the string value for sorting","Use the physical categories for sorting","","","","","","","","","","Parsing string values and return a DateChunked","Parsing string values and return a DateChunked Different …","Parsing string values and return a DatetimeChunked","Parsing string values and return a DatetimeChunked …","Parsing string values and return a TimeChunked","","","Compute the rolling aggregates with a window defined by a …","","Set the labels at the center of the window.","Set the labels at the center of the window.","","","The closed window of that time window if given","","Extract day from underlying NaiveDate representation. …","Extract day from underlying NaiveDateTime representation. …","Extract the days from a Duration","","","","","Optional parameters for the rolling function","","Returns the argument unchanged.","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract the hours from a Duration","","Calls U::from(self).","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","This year number might not match the calendar year number.","","Extract the microseconds from a Duration","Extract the milliseconds from a Duration","Amount of elements in the window that should be filled …","Amount of elements in the window that should be filled …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","Extract the minutes from a Duration","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract the nanoseconds from a Duration","Returns the day of year starting from 1.","Returns the day of year starting from 1.","","","","Extract month from underlying NaiveDateTime representation.","Extract quarter from underlying NaiveDateTime …","Apply a rolling max (moving max) over the values in this …","Apply a rolling mean (moving mean) over the values in this …","Apply a rolling median (moving median) over the values in …","Apply a rolling min (moving min) over the values in this …","Apply a rolling quantile (moving quantile) over the values …","Apply a rolling std (moving std) over the values in this …","Apply a rolling sum (moving sum) over the values in this …","Apply a rolling var (moving var) over the values in this …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract the seconds from a Duration","","","","","","","","","","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Extract ISO weekday from underlying NaiveDate …","Extract ISO weekday from underlying NaiveDateTime …","An optional slice with the same length as the window that …","An optional slice with the same length as the window that …","The length of the window.","The length of the window.","Extract month from underlying NaiveDate representation. …","Extract month from underlying NaiveDateTime representation.","","","","","","","","","","Parsing string values and return a DateChunked","Parsing string values and return a DateChunked Different …","Parsing string values and return a DatetimeChunked","Parsing string values and return a DatetimeChunked …","Parsing string values and return a TimeChunked","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","Options to connect to various cloud providers.","","","","","","A nested list with a fixed size in each row","","The set of supported logical types in this crate.","The time units defined in Arrow.","","","","Opaque binary data of variable length whose offsets are …","","","","A binary true or false.","","true and false.","","","","","","","","","","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","A dictionary encoded array (key_type, value_type), where …","","","Measure of elapsed time. This elapsed time is a physical …","","","Extension type.","Characterizes the name and the DataType of a column.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","","","","","The type used by polars to index data.","","","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Opaque binary data of variable length whose offsets are …","A list of some logical data type whose offsets are …","A variable-length UTF-8 encoded string whose offsets are …","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","Utf8Array: caches the string values","Utf8Array: caches the string values","Maps a logical type to a a chunked array implementation of …","","A nested type that is represented as","Time in microseconds.","","Time in milliseconds.","","Time in nanoseconds.","","","","","Null type","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","","","This hashmap has the uses an IdHasher","","","","","","","Any type that is not nested","","","Time in seconds.","","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","An UTF8 encoded string type.","","","","","Get data type of ChunkedArray.","","Gets AnyValue from LogicalType","Safety","","Safety","","","","","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Utf8Array: caches the string values","Utf8Array: caches the string values","","","","","RAII for the string cache If an operation creates …","Use a global string cache for the Categorical Types.","Reset the global string cache used for the Categorical …","Check if string cache is set.","","","","","","","Safety","Safety","Specialized expressions for Series with dates/datetimes.","","","","Change the underlying TimeUnit. And update the data …","","Change the underlying TimeZone of the Series. This does …","Get the (local) date of a Date/Datetime","Get the (local) datetime of a Datetime","Get the month of a Date/Datetime","","","","","Returns the argument unchanged.","Get the hour of a Datetime/Time64","","Calls U::from(self).","","Get the iso-year of a Date/Datetime. This may not …","Get the microsecond of a Time64 (scaled from nanosecs)","Get the millisecond of a Time64 (scaled from nanosecs)","Get the minute of a Datetime/Time64","Get the month of a Date/Datetime","Get the nanosecond part of a Time64","Get the ordinal_day of a Date/Datetime","Extract quarter from underlying NaiveDateTime …","","","Get the second of a Datetime/Time64","Convert from Date/Time/Datetime into Utf8 with the given …","Get the (local) time of a Date/Datetime/Time","","Convert from Date/Time/Datetime into Utf8 with the given …","","","","","","Extract the week from the underlying Date representation. …","Extract the ISO week day from the underlying Date …","Change the underlying TimeUnit of the Series. This does …","Get the year of a Date/Datetime","","","","","","APIs to write to JSON","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","FallibleStreamingIterator that serializes a Chunk into …","FallibleStreamingIterator that serializes an Array to …","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","","Advances the iterator to the next position.","","","","","","","","","","","","","","Advances the state of the iterator to the next item from …","","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","","","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new RecordSerializer.","Creates a new Serializer.","Advances the iterator, returning the next element.","","","Advances the back of the iterator, returning the last …","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","","","","","","","","","","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Writes valid JSON from an iterator of (assumed …","Safety","Safety","","","","A collection of column stats with a known schema.","The statistics for a column in a Parquet file they …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extract day from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract year from underlying NaiveDateTime representation. …","","Extract minute from underlying NaiveDateTime …","Extract month from underlying NaiveDateTime representation.","Returns the number of nanoseconds since the whole non-leap …","","Returns the day of year starting from 1.","Extract ordinal year from underlying NaiveDateTime …","Extract quarter from underlying NaiveDateTime …","Apply a rolling max to a Series.","Apply a rolling mean to a Series.","Apply a rolling median to a Series.","Apply a rolling min to a Series.","Apply a rolling quantile to a Series.","Apply a rolling std_dev to a Series.","Apply a rolling sum to a Series.","Apply a rolling variance to a Series.","Extract second from underlying NaiveDateTime …","Convert from Time into Utf8 with the given format. See …","Convert date(time) object to timestamp in TimeUnit.","","Convert Time into Utf8 with the given format. See chrono …","Returns the ISO week number starting from 1. The return …","Returns the ISO weekday number where monday = 1 and sunday …","Extract year from underlying NaiveDateTime representation. …","Utility trait to slice concrete arrow arrays whilst …","Slices this Array.","Slices the Array.","","","","used a lot, ensure there is a single impl","","","","","Specialized expressions for Series of DataType::Utf8.","","","Concat the values into a string array.","Check if this column of strings contains a Regex. If strict…","Check if a string value contains a literal substring.","Count all successive non-overlapping regex matches.","","","","Check if a string value ends with the sub string.","","Extract a regex pattern from the a string value. If …","Extract each successive non-overlapping match in an …","Returns the argument unchanged.","Parse string in base radix into decimal.","","Calls U::from(self).","Return the number of bytes in the string (not characters).","Remove leading characters, or whitespace if matches is …","Return the number of characters in the string (not bytes).","Replace values that match a regex pat with a value.","Replace all values that match a regex pat with a value.","Replace values that match a regex pat with a value.","Remove trailing characters, or whitespace if matches is …","Split the string by a substring. The resulting dtype is …","Split exactly n times by a given substring. The resulting …","Split exactly n times by a given substring and keep the …","Split the string by a substring and keep the substring. …","Split by a given substring, returning exactly n items. If …","Check if a string value starts with the sub string.","Slice the string values.","Remove leading and trailing characters, or whitespace if …","Convert a Utf8 column into a Date/Datetime/Time column.","Convert a Utf8 column into a Date column.","Convert a Utf8 column into a Datetime column.","Convert a Utf8 column into a Decimal column.","Convert all characters to lowercase.","Convert a Utf8 column into a Time column.","Convert all characters to uppercase.","","","","","","Infer the schema of a CSV file by reading through the …","","check if csv file is compressed","","Compare Series and ChunkedArray’s and get a boolean mask …","","Used to convert a ChunkedArray, &dyn SeriesTrait and Series","","","","Series","","","","","","Get the sum of the Series as a new Series of length 1.","convert numerical values to their absolute value","","","","","Append in place. This is done by adding the chunks of other…","","","Retrieve the indexes needed for a sort.","Get first indexes of unique values.","","Unpack to ChunkedArray of dtype [DataType::Array]","Returns a reference to the Arrow ArrayRef","Get a hold to self as Any trait reference. Only …","Get a hold to self as Any trait reference. Only …","Packs every element into a list","","","","","","Rechunk and return a pointer to the start of the Series. …","Only implemented for numeric types","Unpack to ChunkedArray of dtype [DataType::Binary]","","","","Unpack to ChunkedArray of dtype [DataType::Boolean]","","","","","","","","Cast [Series] to another [DataType]","Cast from physical to logical types without any checks on …","Unpack to ChunkedArray of dtype [DataType::Categorical]","Ceil underlying floating point array to the highest …","","","","Get the lengths of the underlying chunks","Underlying chunks.","Safety","","Clamp underlying values to the min and max values.","Clamp underlying values to the max value.","Clamp underlying values to the min value.","","","Clone inner ChunkedArray and wrap in a new Arc","","","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","Unpack to ChunkedArray of dtype [DataType::Date]","Unpack to ChunkedArray of dtype [DataType::Datetime]","Unpack to ChunkedArray of dtype [DataType::Decimal]","","","","","","","","","","","","","","","","","Drop all null values and return a new Series.","Get datatype of series.","Unpack to ChunkedArray of dtype [DataType::Duration]","","","Check for equality.","","","Create a boolean mask by checking for equality.","Check for equality where None == None.","Create a boolean mask by checking for equality.","","","","","","","Returns an estimation of the total (heap) allocated size …","Explode a list Series. This expands every item to a new …","Extend the memory backed by this array with the values …","Extend with a constant value.","Unpack to ChunkedArray of dtype [DataType::Float32]","Unpack to ChunkedArray of dtype [DataType::Float64]","Get field (used in schema)","Replace None values with one of the following strategies:","Filter by boolean mask. This operation clones data.","Filter by boolean mask. This operation clones data.","Floor underlying floating point array to the lowest …","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","Takes chunks and a polars datatype and constructs the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a single value by index. Don’t use this operation …","Get a pointer to the underlying data of this Series. Can …","Get the value at this index as a downcastable Any trait …","Get a single value by index. Don’t use this operation …","Greater than comparison.","","Create a boolean mask by checking if self > rhs.","","Greater than or equal comparison.","","Create a boolean mask by checking if self >= rhs.","","Return if any the chunks in this [ChunkedArray] have a …","Get the head of the Series.","Unpack to ChunkedArray of dtype [DataType::Int16]","Unpack to ChunkedArray","Unpack to ChunkedArray of dtype [DataType::Int64]","Unpack to ChunkedArray of dtype [DataType::Int8]","","","Convert the values of this Series to a ListChunked with a …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Check if Series is empty.","Check if numeric value is finite","Check if elements of this Series are in the right Series, …","Check if float value is infinite","Check if float value is NaN (note this is different than …","Check if float value is NaN (note this is different than …","Get a mask of the non-null values.","Get a mask of the null values.","","","Check if Series is sorted.","iterate over Series as AnyValue.","Get length of series.","Take num_elements from the top as a zero copy view.","Unpack to ChunkedArray of dtype list","","Less than comparison.","Create a boolean mask by checking if self < rhs.","","","Less than or equal comparison","","Create a boolean mask by checking if self <= rhs.","","Returns the maximum value in the array, according to the …","Get the max of the Series as a new Series of length 1.","Returns the mean value in the array Returns an option …","","Returns the median value in the array Returns an option …","Get the median of the Series as a new Series of length 1.","Returns the minimum value in the array, according to the …","Get the min of the Series as a new Series of length 1.","Compute the most occurring element in the array.","","","","","Number of chunks in this Series","Get unique values in the Series.","Name of series.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new empty Series","Create a new Series filled with values from the given …","","","Check for inequality.","","Create a boolean mask by checking for inequality.","","Check for inequality where None == None.","","Create a boolean mask by checking for inequality.","","Count the null values.","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","","Get the product of an array.","Get the quantile of the ChunkedArray as a new Series of …","","Aggregate all chunks to a contiguous array of memory.","","","","Rename the Series.","Rename series.","","","return a Series in reversed order","Apply a custom function over a rolling/ moving window of …","Apply a rolling max to a Series.","","","","Apply a rolling quantile to a Series.","Apply a rolling std_dev to a Series.","","Apply a rolling variance to a Series.","Round underlying floating point array to given decimal.","Sample a fraction between 0.0-1.0 of this ChunkedArray.","","Check if series are equal. Note that None == None …","Check if all values in series are equal where None == None …","","Shift the values by a given period and fill the parts that …","Shrink the capacity of this array to fit its length.","Shrink the capacity of this array to fit its length.","","","Get a zero copy view of the data.","","","Get the standard deviation of the Series as a new Series …","Concat the values into a string array.","","Cast throws an error if conversion had overflows","Unpack to ChunkedArray of dtype [DataType::Struct]","","","","","Compute the sum of all values in this Series. Returns …","Get the sum of the Series as a new Series of length 1. …","Get the tail of the Series.","Take by index. This operation is clone.","Traverse and collect every nth element in a new array.","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index. This operation is clone.","Take by index if ChunkedArray contains a single chunk.","Take by index if ChunkedArray contains a single chunk.","Take by index if ChunkedArray contains a single chunk.","","Unpack to ChunkedArray of dtype [DataType::Time]","Convert a chunk in the Series to the correct Arrow type. …","","","","","Cast a datelike Series to their physical representation. …","","","","","","","","","","","","","","Unpack to ChunkedArray of dtype [DataType::UInt16]","Unpack to ChunkedArray of dtype [DataType::UInt32]","Unpack to ChunkedArray of dtype [DataType::UInt64]","Unpack to ChunkedArray of dtype [DataType::UInt8]","Get unique values in the Series.","Compute the unique elements, but maintain order. This …","","","Unpack to ChunkedArray of dtype [DataType::Utf8]","Get the variance of the Series as a new Series of length 1.","","","","Create a new ChunkedArray with values from self where the …","","","","","","","","","","","","","","","","","","","","","","","","Checked integer division. Computes self / rhs, returning …","Checked integer division. Computes self / rhs, returning …","","","drop nulls","ignore nulls","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","A wrapper type that should make it a bit more clear that …","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","Swaps inner state with the array. Prefer …","","","","","","Temporary swaps out the array, and restores the original …"],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,917,917,917,917,917,917,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,108,109,112,918,110,108,109,111,108,108,112,918,112,108,109,918,110,111,110,108,109,111,110,108,109,111,127,128,133,108,109,110,108,109,111,110,108,109,111,110,108,109,111,112,112,918,110,108,109,112,111,0,110,108,109,111,919,919,919,919,0,110,108,109,111,112,110,108,109,111,0,110,108,109,111,918,110,111,110,108,109,111,110,108,109,111,110,108,109,111,110,108,109,111,0,0,0,0,0,0,0,112,112,112,127,112,112,112,0,112,0,0,0,0,0,0,0,0,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,117,117,115,117,119,121,123,115,117,119,121,123,124,125,115,117,119,121,123,125,0,115,117,119,121,123,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,0,0,761,0,0,97,53,35,0,0,0,16,0,0,0,0,787,0,0,0,144,146,150,53,35,157,0,0,53,0,0,0,0,0,53,35,157,0,0,0,148,0,53,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,787,0,0,53,35,157,157,0,0,53,35,0,0,53,35,157,157,0,0,144,157,0,16,53,35,157,0,0,0,157,0,0,0,761,157,157,0,157,53,35,157,0,0,53,35,157,0,0,148,146,150,0,0,0,0,0,228,920,0,0,0,921,91,0,18,0,0,0,0,0,0,0,0,787,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,0,0,0,0,16,16,0,0,0,0,922,923,181,924,925,97,97,0,0,157,0,157,0,0,157,761,787,0,91,53,35,157,0,0,0,0,0,0,0,0,0,0,920,228,0,0,91,157,144,146,146,146,0,232,61,91,232,61,144,146,146,182,183,0,0,0,232,61,5,91,150,0,16,761,53,35,157,0,0,0,0,0,0,53,35,0,0,53,0,0,0,146,144,787,926,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,16,16,0,232,0,0,16,182,183,182,18,0,0,0,0,0,16,53,35,157,0,16,53,0,0,0,0,0,0,923,0,0,53,35,157,157,0,0,0,0,157,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,0,35,53,35,157,0,0,53,0,0,0,0,0,0,146,91,142,143,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,927,154,926,928,126,127,127,112,918,128,129,130,126,127,131,132,133,112,127,128,918,133,112,129,130,126,127,127,129,130,918,128,131,132,133,129,130,929,929,930,930,929,929,929,929,931,154,931,932,154,54,154,135,154,135,104,104,104,104,933,154,934,104,104,154,154,154,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,95,96,95,96,929,0,127,128,133,936,937,154,936,0,104,93,95,96,95,96,938,154,938,154,154,91,142,143,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,154,91,142,143,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,0,104,104,151,939,939,939,939,135,152,152,0,0,0,0,142,104,91,104,93,145,29,148,149,150,151,153,0,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,145,29,34,104,0,926,928,104,104,104,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,154,937,154,92,104,104,91,104,104,104,29,148,149,150,151,152,153,925,925,91,91,91,91,104,104,104,104,29,29,29,29,148,148,148,148,149,149,149,149,150,150,150,150,151,151,151,151,152,152,152,152,153,153,153,153,940,940,129,130,126,127,112,129,130,126,127,112,154,153,941,942,154,153,918,128,112,131,132,133,0,91,142,143,104,104,104,29,146,148,135,149,150,151,152,153,93,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,97,97,97,97,97,97,128,129,130,126,127,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,93,93,93,144,145,29,34,146,131,132,133,148,135,149,150,151,151,152,153,153,943,944,945,104,151,946,946,919,946,946,919,104,919,919,947,948,949,104,922,181,924,154,182,183,184,185,186,187,189,190,191,192,193,194,195,196,197,151,950,937,950,937,151,151,28,151,151,927,104,104,951,151,153,154,922,952,182,183,184,185,186,187,189,190,191,192,193,194,195,196,197,181,924,154,953,954,925,104,925,154,955,104,29,148,152,759,776,104,951,151,153,0,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,129,130,126,127,112,151,143,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,104,135,151,104,771,104,775,154,151,956,222,957,154,958,222,154,154,135,135,152,771,154,104,135,135,151,151,151,151,104,149,154,135,151,154,0,925,104,925,29,104,959,960,154,959,154,961,154,962,154,151,0,152,153,145,959,960,154,93,932,154,926,928,29,34,154,932,154,154,92,152,104,963,921,964,128,129,130,126,127,104,131,132,133,151,152,104,965,154,151,104,104,104,104,925,925,0,154,135,29,34,104,966,154,966,154,104,0,0,0,0,143,960,104,104,104,961,962,154,154,0,926,928,151,154,151,967,154,968,154,149,969,154,970,970,970,934,151,151,971,154,972,151,151,918,154,131,132,0,154,135,759,973,135,973,135,135,931,931,154,104,104,104,104,104,974,975,154,976,154,149,776,0,104,926,928,759,959,960,977,154,154,154,154,154,923,977,154,154,151,54,135,978,91,142,143,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,104,151,149,149,929,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,151,151,151,151,151,951,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,104,104,104,104,104,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,54,20,932,154,104,104,0,759,135,135,776,135,776,135,974,975,154,776,979,979,104,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,104,93,93,921,151,151,152,153,135,980,981,981,0,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,0,0,0,228,920,920,228,0,0,0,214,214,0,0,214,214,213,214,213,214,213,213,213,213,214,213,214,213,214,213,213,213,214,213,214,213,214,213,214,213,213,214,213,214,213,214,213,214,213,0,53,35,0,0,0,0,53,35,157,0,53,0,53,35,157,0,0,0,53,35,0,0,0,0,0,53,35,157,157,0,0,53,35,0,0,53,35,157,157,0,0,157,53,35,157,0,0,157,0,157,157,0,157,53,35,157,0,0,53,35,157,0,0,0,228,920,921,0,0,0,0,0,0,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,157,157,157,53,35,157,0,0,920,228,0,0,157,232,61,232,61,232,61,5,53,35,157,0,53,35,0,53,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,232,0,53,35,157,0,53,53,35,157,157,0,0,0,0,157,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,35,53,35,157,0,53,0,933,937,937,92,937,937,28,952,0,92,921,921,0,0,0,943,944,945,0,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,0,216,216,0,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,221,221,0,0,0,0,221,0,973,973,0,0,0,0,0,0,0,982,983,97,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,923,181,924,925,97,97,0,0,146,146,146,146,146,182,183,0,0,0,0,0,146,0,182,183,182,0,0,0,0,0,0,0,0,0,923,0,0,0,0,146,929,929,930,930,929,929,929,929,931,931,932,95,96,929,936,936,95,96,939,939,939,939,29,34,925,925,940,940,941,942,0,948,949,181,924,950,950,181,924,925,925,956,957,958,925,925,29,959,959,961,959,932,29,34,932,965,925,925,29,34,966,966,961,967,968,969,970,970,970,971,972,0,931,931,974,976,959,977,923,977,978,929,932,974,0,980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,0,0,0,0,53,35,157,0,53,0,53,35,157,0,0,0,53,35,0,0,0,0,0,53,35,157,157,0,0,53,35,0,0,53,35,157,157,0,0,157,53,35,157,0,0,157,0,157,157,0,157,53,35,157,0,0,53,35,157,0,0,0,228,920,921,0,0,0,0,0,0,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,157,157,157,53,35,157,0,0,920,228,0,0,157,232,61,232,61,232,61,5,53,35,157,0,53,35,0,53,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,232,0,53,35,157,0,53,53,35,157,157,0,0,0,0,157,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,35,53,35,157,0,53,0,59,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,53,53,59,53,11,6,13,64,85,87,30,75,82,80,57,60,31,33,225,226,227,227,226,53,59,59,933,59,920,227,235,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,920,227,235,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,937,59,59,59,59,59,226,225,53,59,59,0,85,87,30,75,82,80,57,60,31,33,59,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,59,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,92,59,92,59,228,53,35,920,227,235,59,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,920,227,235,59,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,59,64,85,87,30,75,82,80,57,60,31,33,227,920,227,235,59,11,6,19,3,13,64,21,228,229,226,225,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,937,59,59,59,59,59,226,225,53,92,229,53,35,35,92,61,157,232,225,225,229,229,229,229,53,53,53,53,35,35,35,35,92,92,92,92,61,61,61,61,157,157,157,157,232,232,232,232,227,59,225,225,225,228,227,228,230,53,53,35,35,92,61,61,157,232,920,227,235,59,59,59,11,6,19,3,13,64,21,228,229,226,225,230,53,53,53,35,35,35,35,92,92,92,61,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,157,157,232,226,59,59,226,59,59,59,59,59,59,92,226,225,228,59,59,59,59,59,937,226,225,59,59,59,59,59,937,226,225,228,28,11,6,19,3,13,64,21,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,228,226,53,952,225,225,229,53,35,61,157,232,59,59,920,227,235,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,35,920,227,235,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,235,225,59,59,59,59,59,226,225,53,226,225,35,228,225,35,228,35,53,35,35,35,53,35,35,53,35,226,228,226,225,226,225,225,0,59,59,59,59,59,59,59,59,59,64,85,87,30,75,82,80,57,60,31,33,226,226,225,92,92,59,59,921,227,59,59,59,59,59,59,59,59,225,92,235,225,225,225,59,59,53,59,225,225,64,85,87,30,75,82,80,57,60,31,33,225,59,59,228,59,59,59,226,92,59,59,59,235,226,226,59,59,59,59,64,85,87,30,75,82,80,57,60,31,33,59,59,59,35,92,61,61,157,59,59,59,59,59,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,35,157,59,59,59,53,35,61,59,59,53,920,227,235,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,920,227,235,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,920,227,235,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,226,225,226,35,920,227,235,59,11,6,19,3,13,64,21,228,229,226,225,230,53,35,92,61,85,87,30,75,82,80,57,60,31,33,58,65,63,66,231,70,157,232,921,0,0,0,228,920,920,228,0,0,0,0,0,243,243,243,243,243,243,243,0,243,243,243,243,0,243,243,243,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,0,217,217,217,16,16,217,16,217,217,217,0,0,16,16,16,16,16,244,16,217,244,16,217,244,244,16,217,244,16,217,244,16,217,0,244,244,16,16,217,217,244,244,16,16,16,16,217,217,217,217,217,217,217,217,217,217,0,244,16,217,244,16,217,0,0,0,0,0,16,217,0,16,0,244,16,217,244,16,217,244,16,217,244,16,217,244,16,217,16,0,0,0,0,0,0,0,0,0,257,256,107,256,256,256,257,256,107,257,256,107,107,257,256,107,257,256,107,257,256,107,257,256,256,107,257,256,256,107,257,256,107,256,256,256,256,256,256,256,257,257,256,107,257,256,256,256,107,256,107,107,107,257,256,107,257,256,256,107,256,256,256,256,984,985,256,107,0,256,257,256,107,257,256,107,257,256,107,257,256,107,257,256,107,984,985,256,256,256,107,107,257,257,257,257,257,257,257,0,0,260,0,0,0,105,105,261,0,0,261,261,0,0,261,261,0,0,261,261,261,261,261,261,261,261,261,261,261,0,261,261,0,261,261,261,261,261,261,261,261,261,261,261,261,261,261,261,261,261,261,0,0,261,0,261,0,0,261,0,261,261,261,0,0,261,261,261,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,271,118,282,48,276,285,277,286,122,269,120,278,279,274,47,280,273,289,116,296,47,47,47,275,269,269,271,47,273,116,274,48,118,48,276,277,122,120,278,279,47,280,116,37,283,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,37,118,48,276,277,122,120,278,279,47,280,116,283,281,271,282,284,285,286,269,274,288,273,289,283,281,271,282,284,285,286,269,287,274,288,273,289,283,281,271,282,284,285,286,269,287,274,288,273,289,37,275,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,118,48,276,277,122,120,278,279,47,280,116,296,296,281,285,274,273,289,296,296,47,47,47,47,47,47,47,47,47,47,47,47,47,47,0,281,271,118,282,48,276,285,277,286,122,269,120,278,279,274,47,280,273,289,116,296,281,271,118,282,48,276,285,277,286,122,269,120,278,279,274,47,280,273,289,116,296,37,283,281,271,118,118,282,48,48,284,276,276,285,277,286,122,269,120,278,279,287,274,47,47,288,280,273,289,116,116,281,271,282,284,269,274,47,273,289,116,281,118,289,116,122,120,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,47,47,47,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,37,37,37,37,271,118,118,282,48,48,276,276,285,277,277,122,122,120,120,278,278,279,279,274,47,47,280,280,273,116,116,0,281,271,282,274,273,289,274,274,281,271,282,274,273,289,281,271,282,274,273,289,271,282,274,273,271,282,274,273,271,273,278,280,269,37,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,281,271,271,271,118,118,118,118,118,282,282,48,48,48,48,284,284,284,276,276,276,276,276,285,285,277,277,277,277,286,122,122,122,269,120,120,120,278,278,279,279,279,287,274,274,274,47,47,47,47,288,280,280,273,273,273,289,116,116,116,116,116,296,48,47,118,116,47,48,47,281,271,118,282,48,277,274,47,273,289,116,48,48,47,47,271,118,273,116,118,282,48,277,274,47,116,281,271,118,282,48,274,47,273,289,116,281,271,118,282,48,274,47,273,289,116,271,118,282,48,274,47,273,116,271,282,48,274,47,273,47,274,47,118,118,48,48,277,122,122,120,47,47,116,116,120,120,0,280,47,118,48,122,120,47,116,0,118,122,120,116,0,280,280,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,271,282,284,269,274,288,273,284,269,273,281,118,48,274,47,288,289,116,281,118,282,48,48,276,285,277,122,120,278,47,47,280,273,289,116,296,118,48,47,116,296,296,37,283,37,118,48,122,120,47,116,276,280,37,283,118,48,122,120,47,116,281,271,118,282,48,276,285,277,122,120,278,274,47,280,273,289,116,276,285,276,284,276,276,276,37,283,281,281,271,118,118,282,48,48,284,276,276,285,285,277,277,286,286,122,122,269,269,120,120,278,278,279,287,274,47,47,288,280,280,273,273,289,289,116,116,284,47,47,47,286,269,288,281,271,118,282,48,284,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,118,48,276,277,122,120,278,279,47,280,116,0,286,269,269,118,48,276,277,122,120,278,279,47,280,116,0,273,289,116,269,286,269,296,296,296,37,986,281,271,118,118,269,120,278,280,273,289,116,116,0,47,47,47,47,47,47,281,271,282,285,274,273,289,281,271,282,285,274,288,273,289,283,281,271,282,284,284,285,286,269,287,274,288,273,289,987,286,286,47,47,283,281,281,271,271,282,282,284,284,285,285,286,286,269,269,287,274,274,288,288,273,273,289,289,47,47,47,47,47,47,47,47,47,282,274,274,271,118,48,276,277,122,120,278,274,47,273,116,48,274,47,283,281,281,271,271,282,282,284,284,285,285,286,286,269,269,287,274,274,288,288,273,273,289,289,285,277,286,122,296,37,118,118,48,48,276,276,277,277,122,122,120,120,278,278,279,279,47,47,280,280,116,116,118,48,276,277,122,120,278,279,47,280,116,118,48,276,277,122,120,278,279,47,280,116,37,118,118,48,48,276,276,277,277,122,122,120,120,278,278,279,279,47,47,280,280,116,116,37,118,48,276,277,122,120,278,279,47,280,116,37,118,48,276,277,122,120,278,279,47,280,116,47,47,47,277,274,47,37,118,48,276,277,122,120,278,279,47,280,116,281,271,118,282,48,276,285,277,286,122,269,120,278,279,274,47,280,273,289,116,296,331,281,271,282,284,286,269,274,273,289,269,332,281,271,282,285,286,269,274,273,289,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,281,285,277,289,276,271,118,282,48,274,273,116,271,118,282,48,274,273,116,120,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,281,271,118,282,48,276,285,277,122,120,278,279,274,47,288,280,273,289,116,276,116,333,281,271,282,284,285,286,269,274,273,289,286,269,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,280,37,283,281,271,118,118,282,48,48,284,276,276,285,277,277,286,122,122,269,120,120,278,279,287,274,47,47,288,280,273,289,116,116,281,118,48,276,285,277,122,120,278,47,288,280,273,289,116,281,118,48,285,277,122,120,278,47,280,273,289,116,986,281,271,118,118,282,48,284,276,285,277,286,122,269,120,274,47,288,273,289,116,116,271,118,282,48,276,277,122,120,278,274,47,273,116,276,285,274,281,271,118,282,48,284,276,285,277,286,122,269,120,278,279,287,274,47,288,280,273,289,116,296,281,271,273,289,281,271,282,285,269,274,273,289,274,37,271,118,118,48,48,276,276,277,277,122,122,120,120,278,278,279,47,47,280,116,116,48,47,47,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,299,308,300,302,306,307,304,305,337,303,309,301,338,338,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,306,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,338,299,308,300,302,306,307,304,305,337,303,309,301,338,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,338,299,308,300,302,306,307,304,305,337,303,309,301,0,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,0,0,0,0,0,0,0,0,88,342,220,0,88,220,220,0,0,88,220,220,88,220,220,88,220,220,88,342,220,88,342,220,220,0,88,220,88,342,220,88,342,220,88,220,88,342,220,88,342,220,88,342,220,88,220,220,220,220,220,220,220,88,342,220,88,88,88,342,220,220,0,88,88,88,220,220,220,88,220,88,220,88,88,220,88,220,88,88,88,342,220,88,342,220,88,88,88,342,220,88,88,220,88,220,88,220,88,88,342,220,88,342,342,88,220,342,88,220,88,0,342,220,220,220,0,220,220,220,220,220,342,88,88,88,88,0,88,342,220,88,342,220,88,220,88,220,88,342,220,88,220,88,342,220,0,0,88,220,0,88,342,220,220,0,0,0,0,0,0,0,311,311,0,0,0,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,346,311,0,346,311,310,345,346,311,310,345,346,311,0,347,341,348,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,0,347,341,348,310,345,346,311,347,341,348,310,345,346,311,340,0,0,347,341,348,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,347,347,341,341,347,0,347,341,347,341,348,310,345,346,311,311,347,341,348,310,345,346,311,310,346,311,310,346,311,988,347,347,341,341,348,988,988,347,341,341,348,0,0,0,347,341,348,310,346,311,345,340,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,311,311,347,341,348,310,345,346,311,0,0,179,179,343,179,343,179,179,179,179,343,343,179,179,343,179,343,179,179,179,343,343,343,179,179,179,179,179,179,343,179,343,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,343,179,343,179,343,179,343,179,0,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,989,0,0,0,0,0,0,0,0,0,989,989,0,0,0,0,0,989,989,0,0,989,989,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,992,993,994,995,996,0,0,997,0,0,998,0,0,999,1000,1001,0,1002,1003,1004,1005,0,1006,0,0,1007,1008,1009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,364,364,0,0,364,364,0,0,0,0,0,0,364,364,364,0,0,0,364,0,0,0,364,364,364,0,364,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,364,364,364,0,0,0,0,0,0,0,0,0,364,364,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1010,0,0,0,0,0,1011,1011,0,1012,0,1012,0,0,0,1012,0,1012,0,0,0,1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,157,240,157,0,157,157,373,233,157,157,372,240,157,157,157,0,240,157,240,157,233,157,233,157,233,157,233,233,234,157,233,233,234,157,233,234,157,233,234,157,0,157,0,240,157,240,157,240,157,240,157,240,157,0,232,232,233,373,232,240,157,0,240,0,0,0,232,372,240,157,157,157,0,157,233,234,157,233,234,157,233,234,157,233,234,157,240,157,0,240,157,373,233,240,234,372,373,233,240,234,372,373,233,240,234,372,373,233,240,234,372,373,233,240,234,372,373,152,233,240,234,372,373,233,240,234,372,373,233,240,234,372,373,233,240,234,372,373,240,233,233,233,233,240,240,240,240,234,234,234,234,372,372,372,372,373,373,373,373,153,233,240,234,372,373,233,240,234,372,373,0,233,240,234,372,373,233,240,234,372,373,233,240,234,372,373,372,152,372,152,153,152,372,233,240,234,372,373,233,240,234,372,373,233,240,234,372,373,233,240,234,372,373,233,240,234,372,373,0,217,217,217,217,217,217,217,0,0,0,0,0,378,374,375,376,378,374,375,376,378,374,375,376,378,374,375,376,378,374,374,375,375,376,376,374,375,376,0,0,0,378,374,375,376,378,374,375,376,0,0,378,374,375,376,378,374,375,376,0,378,378,374,375,376,378,374,375,376,378,378,374,375,376,378,374,375,376,0,0,0,0,0,0,0,0,379,380,0,379,380,379,380,379,380,379,380,379,379,380,379,380,379,379,380,379,380,379,380,379,380,379,380,379,380,379,380,380,0,379,380,379,380,379,380,379,380,379,380,0,0,252,0,0,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,0,388,0,0,0,252,252,388,381,382,381,385,388,386,252,381,382,385,388,386,252,381,382,381,382,381,382,385,388,386,252,381,382,385,388,386,252,381,382,0,385,388,386,252,381,382,252,381,382,385,388,386,252,381,382,385,385,388,386,252,381,382,385,388,386,252,381,382,385,385,386,381,382,386,385,386,385,386,385,386,385,386,0,0,0,0,385,386,381,382,385,381,381,382,385,388,386,252,381,382,385,388,386,252,381,382,385,388,386,252,381,382,388,382,385,388,386,252,381,382,1013,1014,1014,1013,1015,1015,1016,1017,1013,1013,0,0,389,0,0,0,389,389,390,391,393,394,389,390,391,393,394,389,390,391,389,390,391,389,390,391,391,390,390,0,393,394,389,390,391,393,394,389,390,391,393,394,389,390,391,389,390,391,389,389,389,389,390,390,390,390,391,0,393,394,389,390,391,393,394,389,389,390,391,391,391,391,394,389,390,393,394,389,390,391,393,394,389,390,391,393,394,393,394,0,394,393,394,0,389,390,391,393,394,389,390,391,394,393,394,389,390,391,394,393,394,389,390,391,393,394,389,390,391,0,393,394,0,401,401,401,401,401,401,401,401,401,401,401,401,401,401,401,401,401,0,0,404,404,390,404,404,404,404,404,404,404,404,404,404,404,404,404,404,404,0,0,0,0,416,0,0,0,416,0,0,0,0,0,0,0,0,0,416,911,416,416,416,0,416,0,416,416,416,416,416,416,416,416,416,911,416,416,416,416,416,416,416,0,0,416,0,0,416,0,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,0,0,0,0,461,432,434,461,0,0,0,443,0,432,434,432,434,0,443,461,432,434,416,1018,0,249,249,0,0,423,461,461,0,453,0,434,461,434,461,434,434,461,432,434,249,416,1018,432,434,433,435,433,431,431,0,431,0,0,249,0,0,0,0,0,0,0,0,435,0,0,453,0,0,0,0,423,0,432,435,0,432,434,434,432,434,434,434,434,434,434,432,434,432,430,430,249,249,417,428,429,430,431,432,433,434,435,0,0,0,416,1018,425,426,427,416,416,428,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,416,417,249,417,428,429,430,431,432,433,434,435,249,417,428,429,430,431,432,433,434,435,417,417,0,419,429,417,429,417,416,0,0,419,417,0,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,417,428,417,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,428,431,432,433,434,435,431,431,431,431,432,432,432,432,433,433,433,433,434,434,434,434,435,435,435,435,417,417,416,416,249,249,417,428,429,430,431,432,433,423,427,434,435,441,416,425,426,450,249,249,249,249,249,249,249,249,417,428,429,430,431,431,432,433,423,427,434,454,456,457,458,435,441,416,416,1018,425,426,427,0,0,0,0,0,417,431,432,433,434,417,0,0,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,0,0,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,425,426,450,450,454,456,457,458,417,419,441,416,416,416,417,0,441,425,426,450,417,428,429,427,454,456,457,458,441,450,416,450,454,456,457,458,416,429,458,419,417,430,458,428,417,416,249,0,0,0,0,0,0,0,419,0,456,419,416,457,416,416,0,417,450,416,416,0,249,417,428,429,430,431,432,433,434,435,249,429,425,426,450,249,417,428,429,430,431,432,432,433,433,423,427,434,434,454,456,457,458,435,441,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,417,419,425,426,450,249,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,1019,1019,1019,1019,1020,1021,1020,1021,0,0,0,416,0,0,0,416,0,0,0,0,0,0,0,416,911,416,416,416,0,416,0,416,416,416,416,416,416,416,416,416,911,416,416,416,416,416,416,416,0,0,0,0,466,466,465,455,465,455,466,467,465,455,466,467,465,455,465,455,0,465,455,466,467,465,455,466,467,465,455,466,467,465,455,466,467,465,465,465,465,455,455,455,455,465,455,466,467,465,455,466,466,467,0,465,455,465,455,466,467,465,455,466,467,465,455,467,467,465,467,455,0,0,455,465,455,465,455,465,455,466,467,465,455,466,467,465,455,466,467,465,455,466,467,0,453,0,0,453,0,419,419,0,476,419,419,0,0,419,419,476,419,1019,1019,1019,1019,0,468,468,468,468,0,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,473,461,479,0,461,473,0,0,0,0,443,442,473,473,473,0,443,442,461,0,0,0,416,0,0,0,0,0,461,461,453,479,0,461,461,461,416,0,475,475,479,479,479,0,0,0,0,473,473,475,453,473,473,0,0,0,479,475,0,479,484,484,0,0,479,0,476,452,477,419,478,479,480,481,482,473,461,483,453,484,475,472,416,470,471,416,416,0,0,0,0,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,443,416,0,453,476,452,477,419,478,479,480,481,482,473,461,483,453,484,475,472,476,452,477,419,478,479,480,481,482,473,461,483,453,484,475,472,476,477,419,477,419,478,476,477,0,486,486,472,480,481,482,416,477,419,472,480,481,482,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,477,487,476,452,477,479,480,481,482,473,461,483,453,484,475,472,476,476,476,476,452,452,452,452,477,477,477,477,479,479,479,479,480,480,480,480,481,481,481,481,482,482,482,482,473,473,473,473,461,461,461,461,483,483,483,483,484,484,484,484,472,472,472,472,478,416,416,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,475,472,477,416,470,474,471,476,452,477,419,478,486,443,442,479,479,480,481,482,473,461,483,453,484,487,495,496,475,472,453,453,453,416,416,470,471,453,0,476,452,477,479,480,481,482,473,461,483,484,486,483,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,487,487,474,495,419,474,474,442,476,419,477,419,475,416,416,416,452,452,496,478,453,483,470,474,471,476,477,478,486,470,416,474,495,416,477,419,0,486,487,496,487,495,496,476,477,496,496,496,416,452,476,476,477,477,483,0,477,419,419,487,496,477,419,486,486,416,474,471,416,416,0,0,496,486,476,476,477,477,416,416,0,0,476,452,477,419,478,479,480,481,482,473,461,483,453,484,475,472,0,0,0,0,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,473,461,461,483,453,484,487,495,496,475,472,478,453,419,453,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,480,481,482,487,495,496,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,486,476,477,419,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,487,0,0,0,472,476,477,476,477,1019,1019,1019,1019,0,0,270,0,0,0,218,321,218,321,218,321,218,321,321,218,218,321,218,321,218,321,218,321,321,218,321,218,321,218,321,218,218,218,218,218,321,218,321,218,218,321,321,321,218,321,218,321,218,321,321,218,321,218,321,218,321,321,218,321,218,321,218,218,321,218,218,321,321,218,321,218,321,218,321,218,218,218,218,218,218,321,321,321,321,218,218,218,321,218,218,218,321,218,321,218,0,0,0,0,0,0,0,0,0,0,0,0,0,501,360,502,503,362,504,505,506,507,508,509,510,163,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,163,501,360,502,503,362,504,505,506,507,508,509,510,506,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,163,501,360,502,503,362,504,505,506,507,508,509,510,360,360,360,360,502,502,502,502,503,503,503,503,362,362,362,362,506,506,506,506,509,509,509,509,501,360,502,503,362,504,505,506,507,508,509,510,501,360,360,502,502,503,503,362,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,163,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,0,360,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,509,510,504,505,507,508,501,360,502,503,362,504,505,506,507,508,509,510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,233,367,233,233,233,270,0,0,233,233,233,233,233,233,233,0,0,272,0,233,233,233,233,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,365,361,367,514,365,361,367,514,514,514,365,361,0,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,365,361,367,514,365,365,365,365,361,361,361,361,514,514,514,514,0,365,365,361,361,367,367,514,514,349,515,516,365,361,367,514,371,272,365,361,367,514,367,367,272,365,361,367,514,340,371,514,365,361,514,0,349,515,516,365,361,367,514,349,515,516,365,361,367,514,349,515,516,516,516,365,361,367,514,365,361,0,365,361,514,349,515,516,365,361,349,515,516,361,514,371,0,349,515,516,272,365,361,367,514,367,367,272,365,361,367,514,340,365,361,367,514,365,361,367,514,371,349,515,516,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,1022,0,1022,1022,1022,0,0,353,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,1022,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,0,0,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,1023,1022,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,1022,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,0,0,0,0,0,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,0,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,1022,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,0,0,0,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,0,0,535,546,546,539,0,0,0,0,546,0,543,543,0,1024,546,0,544,0,546,546,546,0,0,237,158,0,0,532,513,237,158,224,0,0,532,513,546,546,539,539,544,0,0,0,0,0,0,539,535,546,546,0,511,0,0,0,0,0,0,0,544,0,539,546,535,0,544,544,0,0,543,544,0,544,0,238,538,532,539,513,540,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,238,238,532,513,513,513,513,237,237,237,158,158,158,158,224,224,532,513,237,158,224,532,237,532,237,532,237,535,532,237,532,237,535,532,237,532,237,535,532,237,535,158,532,237,535,158,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,238,513,237,158,513,237,158,532,513,237,158,238,513,237,158,513,237,158,532,513,237,158,238,538,532,539,513,540,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,238,538,532,539,513,540,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,238,532,513,237,158,541,224,238,532,513,237,158,541,224,513,158,513,511,1025,532,513,237,158,1025,532,513,237,158,238,549,513,513,513,237,158,224,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,538,540,543,238,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,1024,513,158,1024,513,158,535,512,512,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,238,538,532,539,513,540,534,237,158,541,224,512,536,535,543,544,545,546,533,547,548,238,238,238,238,538,538,538,538,532,532,532,532,539,539,539,539,513,513,513,513,540,540,540,540,534,534,534,534,237,237,237,237,158,158,158,158,541,541,541,541,224,224,224,224,512,512,512,512,536,536,536,536,535,535,535,535,543,543,543,543,544,544,544,544,545,545,545,545,546,546,546,546,533,533,533,533,547,547,547,547,548,548,548,548,549,566,512,536,513,238,238,538,538,532,532,539,513,513,540,540,549,534,237,237,158,158,541,224,224,512,512,542,536,536,535,543,543,544,544,545,545,546,533,547,548,548,0,532,513,237,158,224,532,513,237,158,224,238,538,532,539,513,513,513,513,513,513,513,513,513,540,549,534,237,237,158,158,541,224,224,512,542,536,535,543,544,545,546,533,547,548,224,224,224,224,224,224,224,224,544,546,237,237,513,511,511,237,237,224,224,511,512,542,536,238,513,513,513,237,158,224,544,546,158,158,158,158,546,544,546,532,513,511,511,237,237,237,237,237,237,238,532,539,513,540,534,237,158,541,224,512,536,535,544,546,533,548,1026,513,158,224,1026,238,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,238,1025,532,513,237,158,511,511,237,237,540,549,535,238,237,158,512,535,238,238,238,238,1026,513,158,224,238,1025,532,513,237,158,1025,532,513,237,158,238,0,532,513,532,513,546,1026,513,158,224,238,238,534,158,533,512,542,542,536,536,238,1025,544,544,238,238,238,238,238,238,1026,224,238,544,546,544,0,532,513,511,512,542,536,511,512,542,536,511,512,542,536,511,512,542,536,1025,532,513,237,158,1025,532,513,237,158,224,224,513,237,158,224,513,513,513,237,158,224,238,532,513,534,237,158,541,224,546,533,532,237,544,546,532,237,0,538,540,543,545,548,1027,513,158,224,1026,513,158,224,238,532,513,237,158,224,535,238,532,532,513,513,513,513,513,237,237,237,237,158,158,158,158,158,224,224,224,532,513,237,158,224,532,237,544,546,532,237,238,238,513,158,511,513,158,513,158,511,513,158,511,511,513,158,511,513,158,513,158,513,158,532,513,238,538,532,539,513,540,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,513,513,513,238,238,538,532,513,540,237,158,224,512,536,543,544,545,548,542,536,1027,513,158,224,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,544,545,546,546,533,547,548,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,535,512,238,538,532,539,513,540,549,534,237,158,541,224,512,542,536,535,543,544,545,546,533,547,548,237,541,541,513,1025,532,513,237,158,238,512,512,1025,532,513,237,158,1025,532,513,237,158,1026,513,158,224,1026,513,158,224,1025,532,513,237,158,1025,532,513,237,158,1026,513,158,224,1025,532,513,237,158,1025,532,513,237,158,1026,513,158,224,532,513,1025,532,513,237,158,511,1025,532,513,237,158,541,1025,532,513,237,511,511,511,511,238,557,560,0,564,0,564,560,560,557,560,562,0,0,557,560,560,560,560,0,564,562,562,562,560,560,560,562,562,562,562,559,557,560,0,564,560,557,564,564,0,0,0,0,0,562,562,560,562,562,559,564,0,560,562,562,562,562,562,562,562,557,557,562,560,560,560,560,560,560,559,559,560,561,562,563,564,557,565,551,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,559,560,561,562,563,564,557,565,551,565,565,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,559,559,559,559,560,560,560,560,561,561,561,561,562,562,562,562,563,563,563,563,564,564,564,564,557,557,557,557,565,565,565,565,559,560,561,562,563,564,557,565,551,552,552,0,0,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,565,565,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,551,565,565,565,565,565,565,565,565,551,552,552,551,565,565,0,0,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,0,565,565,565,565,565,565,565,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,565,565,565,565,565,565,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,535,0,511,535,0,0,511,566,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,546,546,539,0,0,0,546,546,0,544,546,546,546,0,546,546,539,539,544,0,0,0,0,539,546,546,0,511,544,0,539,546,0,544,544,0,0,544,0,544,0,511,1025,1025,566,511,511,511,511,511,1026,1026,1025,511,511,1026,1025,1025,1026,1025,1026,511,511,511,511,1025,1025,1027,1026,511,511,511,511,511,1027,1025,1025,1025,1026,1026,1025,1025,1026,1025,1025,1026,1025,511,1025,1025,511,511,511,511,0,0,1028,1029,0,0,0,0,0,0,0,0,0,1030,569,0,1030,1030,1030,1030,1030,1030,1030,1030,1030,0,0,0,0,0,7,0,569,1030,1030,1030,1030,1030,1030,0,0,0,0,0,0,0,0,0,0,1031,1032,358,1030,0,0,0,0,1030,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,366,567,0,366,567,366,366,368,366,366,366,366,366,569,570,569,570,0,0,0,366,366,290,291,1033,292,355,0,293,1033,1034,1035,294,0,0,0,366,366,366,366,1036,1036,569,570,569,570,1037,569,570,366,366,366,366,0,366,569,570,570,366,73,569,570,1036,1029,1038,1038,1038,1038,1038,1038,1038,1038,1036,1029,1029,7,1038,1038,1038,1038,1038,1038,366,0,366,569,570,0,366,569,570,1031,366,366,366,567,366,356,567,366,366,366,572,570,1036,1036,366,366,366,366,366,366,1039,366,366,366,1039,366,366,1032,1040,366,366,366,0,356,0,0,0,1036,358,366,366,0,366,1037,1036,1036,1036,366,1041,327,328,1041,329,356,572,0,1036,1036,0,366,567,366,366,366,366,1036,366,366,1036,1028,366,8,8,8,8,8,8,8,8,1036,1028,1028,366,570,8,8,8,8,8,8,1036,1036,366,569,570,569,570,569,570,1036,1036,569,570,334,335,359,1042,1043,336,0,572,0,0,0,1039,1044,1039,1045,0,0,0,0,368,0,73,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,8,8,8,8,8,8,8,8,8,8,8,8,8,8,1030,1030,1030,1030,1030,1030,1030,1030,1030,1030,0,0,0,1030,1030,1030,1030,1030,1030,1030,1030,1030,366,1046,366,366,366,366,366,366,366,366,366,366,1046,1046,366,366,366,366,1046,366,366,366,366,366,1046,366,1046,366,1046,366,1046,366,366,1046,366,1046,366,1046,366,1046,366,1046,366,1046,1046,366,366,366,366,366,366,366,1046,1046,366,366,1046,1046,366,1046,366,366,1046,366,1046,366,1046,366,366,366,1046,366,1046,366,1046,366,1046,366,366,366,366,366,366,1046,366,1046,366,366,1046,0,0,356,572,0,356,356,572,0,572,0,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,0,0,0,0,0,0,0,0,1028,1029,0,0,0,1029,1029,1029,1028,1028,1028,0,0,0,0,0,0,0,0,290,291,292,355,293,1034,1035,294,0,0,1033,1033,1037,1037,0,1031,1031,0,0,1032,1032,1040,0,0,0,322,323,324,0,0,0,0,1041,327,328,1041,329,0,0,0,0,0,0,334,335,359,1042,1043,336,358,0,0,0,358,0,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,0,0,0,567,0,567,567,567,0,567,0,0,0,0,0,0,0,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,0,0,578,578,579,578,579,578,578,578,578,579,578,579,579,578,579,579,578,579,578,578,578,578,578,578,579,579,579,578,578,578,579,578,579,578,579,578,578,578,578,579,578,579,578,579,578,579,578,578,578,578,579,578,578,579,578,579,578,579,578,578,0,0,580,580,581,580,581,580,580,580,580,581,580,581,581,580,581,581,580,581,580,580,580,580,580,580,581,581,581,580,580,580,581,580,581,580,581,580,580,580,581,580,581,580,581,580,581,580,580,580,580,581,580,580,581,580,581,580,581,580,0,587,0,587,0,0,0,0,0,0,0,587,0,588,589,590,591,583,582,587,585,592,588,589,590,591,583,582,587,585,592,582,0,583,582,582,582,587,587,0,0,583,583,0,583,582,588,589,590,591,583,582,587,585,592,588,589,590,591,583,582,587,585,592,585,588,589,590,591,583,583,582,587,585,592,587,587,587,587,587,582,588,589,590,591,583,582,587,585,585,592,588,589,590,591,583,582,587,585,592,0,583,0,583,588,589,588,589,590,591,583,582,587,585,592,583,588,589,590,591,583,582,587,585,592,0,0,583,0,0,592,589,583,582,588,582,0,582,0,585,0,0,0,589,0,583,0,583,0,585,0,590,583,0,590,591,583,0,591,583,582,589,582,582,0,0,582,587,585,588,589,590,591,583,582,587,585,592,588,589,590,591,583,582,587,585,592,588,589,590,591,583,582,587,585,592,0,588,589,590,591,583,582,587,585,592,0,583,0,583,0,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,0,0,0,0,0,0,0,0,0,0,599,600,599,600,601,599,600,601,599,600,599,600,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,601,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,599,600,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,0,0,0,602,603,602,604,603,602,604,602,602,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,602,603,602,604,603,602,604,603,602,604,603,602,604,0,0,605,606,605,606,605,605,605,606,605,606,605,606,605,606,605,606,605,606,605,606,605,606,605,606,605,606,605,605,606,605,606,605,606,605,606,605,0,0,0,0,607,608,607,609,610,608,607,609,610,607,607,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,607,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,0,0,0,611,612,611,613,612,611,613,611,611,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,611,612,611,613,612,611,613,612,611,613,612,611,613,0,0,0,614,615,614,615,616,614,615,616,614,615,614,615,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,614,615,616,614,615,616,614,615,616,614,615,616,0,0,0,0,617,618,617,618,619,620,617,618,619,620,617,618,617,618,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,1048,1049,89,1050,1051,50,1048,1049,1050,1051,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,105,89,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,90,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,89,105,90,105,89,90,105,105,89,105,89,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,90,105,624,622,623,625,626,627,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,652,653,654,658,659,665,667,668,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,105,0,105,105,90,105,90,105,105,105,105,105,105,105,105,105,105,105,105,105,105,89,89,105,89,89,89,105,89,89,89,89,89,89,89,105,105,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,90,90,89,105,89,89,89,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,669,90,90,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,89,90,90,89,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,105,105,50,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,105,105,105,90,105,105,105,105,105,90,105,105,624,622,623,625,626,627,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,652,653,654,658,659,665,667,668,90,105,89,105,105,89,105,105,89,89,89,89,89,89,89,90,105,105,105,0,105,624,89,622,623,625,626,627,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,652,653,654,658,659,665,667,668,89,1052,1050,1051,674,105,1048,1049,105,90,105,89,89,0,105,105,90,90,90,90,89,105,105,105,105,105,105,105,105,105,89,89,0,0,90,105,105,105,105,105,105,105,105,105,90,89,89,105,0,90,89,105,90,651,89,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,89,89,89,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,89,90,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,89,90,90,90,105,624,622,623,625,626,627,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,652,653,654,658,659,665,667,668,105,105,105,105,90,651,90,0,0,596,679,679,680,598,0,0,0,596,596,681,0,0,0,0,0,598,681,681,681,680,679,596,681,596,679,679,679,1053,680,679,596,597,597,0,0,0,682,683,682,683,684,682,683,684,682,683,682,683,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,0,0,0,0,0,50,1048,1049,89,1050,1051,50,1048,1049,1050,1051,0,0,0,0,0,0,0,0,89,89,1054,1055,1056,89,90,89,90,89,90,89,89,90,89,90,90,89,89,89,89,89,89,89,89,89,89,89,89,89,90,90,89,89,89,89,669,90,90,89,90,90,89,50,90,90,90,89,89,89,89,89,89,89,89,89,90,89,89,1052,1056,1056,1056,1054,1054,1055,1055,1050,1051,1056,674,1048,1049,1056,1056,1056,1054,1054,1055,1055,1055,1055,1055,1055,1055,1055,1055,1054,1056,1055,1056,1056,1054,90,89,89,90,90,90,90,89,89,89,90,90,89,89,90,89,90,89,89,89,89,89,89,89,89,89,89,90,89,89,90,90,90,90,90,0,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,0,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,0,0,0,713,714,713,714,715,713,714,715,713,714,713,714,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,701,688,689,697,698,716,706,1054,1055,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,688,689,697,698,716,706,701,688,689,697,698,716,706,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,690,699,688,689,691,690,697,698,700,699,716,706,717,688,689,691,690,697,698,700,699,716,706,717,1054,1054,1055,1055,1054,1054,1055,1055,1055,1055,1055,1055,1055,1055,1055,1054,1055,1054,689,690,698,699,690,699,701,688,689,697,698,716,706,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,688,689,691,690,697,698,700,699,716,706,717,0,0,0,0,0,0,0,0,0,0,0,687,686,685,692,702,704,693,705,696,695,1056,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,1056,1056,1056,1056,1056,1056,1056,1056,1056,1056,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,0,718,718,718,718,718,718,718,718,718,718,718,718,718,718,718,718,0,0,719,719,720,719,720,719,719,719,720,719,720,719,720,719,720,719,720,720,719,720,719,720,719,720,719,720,719,720,719,720,719,720,719,719,720,719,720,719,720,719,720,719,720,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,723,724,245,721,722,727,728,731,732,725,733,734,721,722,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,723,724,739,0,721,721,721,721,721,721,721,721,723,724,723,724,245,721,722,727,728,731,732,725,733,734,723,724,245,721,722,727,728,731,732,725,733,734,735,730,728,731,723,724,725,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,245,723,724,723,724,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,725,722,245,722,722,722,722,722,0,729,729,721,721,721,729,723,724,245,245,721,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,721,729,727,723,724,729,729,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,735,730,736,737,728,731,733,733,738,734,736,736,737,737,722,725,721,725,721,725,729,733,729,722,727,725,733,723,724,733,733,725,725,723,724,729,723,724,723,724,721,725,735,730,736,737,728,731,738,734,738,734,739,726,732,723,724,738,725,245,722,721,721,739,726,732,721,721,721,737,728,731,738,734,723,724,721,721,722,721,723,724,723,724,245,721,722,727,728,731,732,725,733,734,245,721,729,723,724,245,721,721,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,723,724,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,743,741,740,746,747,750,751,744,752,753,740,741,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,742,743,758,741,741,741,741,741,741,741,741,742,743,742,743,741,740,746,747,750,751,744,752,753,742,743,741,740,746,747,750,751,744,752,753,754,749,747,750,742,743,744,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,742,743,742,743,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,744,740,740,740,740,740,740,748,748,741,741,741,748,742,743,741,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,741,748,746,742,743,748,748,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,754,749,755,756,747,750,752,752,757,753,740,744,741,744,741,744,748,752,748,740,746,744,752,742,743,752,752,744,744,742,743,748,742,743,742,743,741,744,754,749,755,756,747,750,757,753,757,753,758,745,751,742,743,757,744,740,741,741,758,745,751,741,741,741,756,747,750,757,753,742,743,741,741,740,741,742,743,742,743,741,740,746,747,750,751,744,752,753,741,748,742,743,741,741,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,742,743,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,761,0,0,761,760,761,761,0,0,760,0,0,760,761,242,242,242,242,242,242,242,242,242,242,242,242,242,242,772,773,760,761,242,772,773,760,761,242,242,760,761,242,760,761,242,242,242,242,761,242,772,773,760,761,242,772,773,760,761,242,242,772,773,760,761,242,242,242,242,242,242,242,242,761,242,761,761,761,761,242,0,242,242,242,242,242,242,242,760,761,242,242,242,242,242,772,773,760,761,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,0,242,242,242,242,242,0,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,772,773,760,761,242,242,772,773,760,761,242,772,773,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,772,773,242,242,242,242,242,242,242,242,242,242,242,242,0,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,772,773,242,242,242,242,242,242,242,242,242,242,242,242,242,242,760,761,242,242,242,242,242,242,242,772,773,760,761,242,242,242,242,772,773,760,761,242,772,773,760,761,242,242,242,242,242,242,242,242,242,242,772,773,760,761,242,242,242,242,242,242,242,0,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,0,778,778,0,0,778,0,0,0,0,0,0,781,18,0,778,0,778,778,778,778,778,778,778,778,778,781,18,0,778,778,778,777,18,764,778,764,0,777,764,18,781,785,780,779,777,18,764,778,781,785,780,779,777,18,764,778,777,18,764,778,777,18,764,778,764,777,18,781,785,780,779,779,777,18,764,778,781,785,780,779,777,18,764,778,764,780,781,785,780,779,777,777,18,764,778,777,18,777,777,777,777,18,18,18,18,0,781,777,764,777,777,18,764,778,778,0,781,785,780,779,777,777,777,777,18,18,764,778,778,777,777,18,764,764,18,18,954,764,18,781,785,780,779,777,18,764,778,781,785,780,779,777,18,764,778,18,785,777,777,780,777,777,781,18,777,777,18,764,764,764,781,18,764,764,764,764,764,777,764,785,785,764,777,18,764,764,18,777,18,764,764,18,764,764,777,18,764,778,778,781,785,780,779,777,18,764,778,781,785,780,779,777,18,764,778,781,785,780,779,777,18,764,778,18,18,18,764,781,785,780,779,777,18,764,778,981,981,0,0,0,0,0,0,0,0,0,1057,0,1058,1058,787,0,0,0,787,787,0,0,0,0,787,0,786,786,786,786,787,759,787,786,0,0,0,0,0,0,759,787,786,759,787,786,759,787,786,759,787,786,786,0,759,787,786,759,787,786,759,787,786,759,787,786,759,759,759,759,787,787,787,787,786,786,786,786,759,787,787,786,786,759,759,787,786,759,759,787,786,759,787,786,786,786,759,0,759,759,759,759,787,786,787,786,759,787,786,759,787,786,759,787,786,759,759,787,786,788,789,0,0,788,789,788,788,788,788,789,788,789,788,789,788,789,788,789,788,789,0,789,788,788,789,788,789,788,789,788,789,788,789,788,789,178,788,789,789,0,788,789,178,788,789,178,788,789,178,788,789,178,0,178,788,789,178,788,789,178,788,789,178,178,178,178,178,178,178,788,788,789,789,178,0,788,789,178,788,789,178,788,789,788,789,178,788,789,0,0,788,789,178,788,789,178,788,789,178,788,789,178,788,789,178,0,0,0,0,0,0,0,801,558,0,807,859,0,558,846,831,831,0,822,558,0,859,0,825,846,761,0,0,0,801,97,53,35,0,801,0,0,0,16,0,0,0,0,0,0,0,787,0,0,0,0,801,832,144,146,150,0,855,53,35,157,0,0,558,801,0,53,0,0,0,0,0,0,801,855,53,35,157,0,0,0,0,0,827,0,0,488,0,148,859,558,0,801,53,35,0,0,0,0,0,801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,801,558,16,832,558,16,801,801,807,558,778,787,0,0,0,801,801,801,801,801,0,0,0,859,828,0,855,53,35,157,157,0,0,855,0,53,35,0,0,0,0,53,35,157,157,0,0,144,157,801,859,822,801,845,558,0,16,0,855,53,35,157,0,0,0,0,0,0,801,822,822,859,558,0,801,558,853,0,0,859,157,0,859,801,0,0,558,807,778,761,157,157,0,157,855,53,35,157,0,0,855,53,35,157,0,0,801,822,148,146,150,828,0,0,0,558,0,0,0,0,0,0,228,920,0,0,778,0,0,0,0,0,0,853,822,822,488,0,859,921,91,0,781,18,0,0,0,0,0,807,778,0,0,0,0,787,0,0,855,53,35,157,0,0,855,53,35,157,0,0,855,53,35,157,0,0,855,53,35,157,0,0,801,0,157,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,846,0,846,0,0,846,846,0,846,846,846,846,846,922,923,181,924,925,97,97,853,859,0,0,0,0,904,0,0,904,0,0,558,395,157,0,157,0,0,157,807,778,761,0,0,0,0,0,825,827,787,840,0,824,91,53,35,157,0,0,0,0,801,0,0,0,0,0,0,0,0,0,0,558,0,920,228,859,801,801,0,0,0,0,830,91,801,822,822,488,488,157,859,807,144,146,778,146,807,146,778,807,778,0,0,232,61,91,232,61,807,144,146,778,146,822,822,828,182,183,822,0,0,807,778,845,831,0,0,778,778,232,61,5,824,91,150,0,16,0,827,832,761,822,822,558,0,855,53,35,157,801,0,0,0,0,0,0,0,53,35,0,53,0,0,0,146,0,0,822,144,787,926,0,188,0,0,0,0,0,0,840,0,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,859,807,778,0,0,801,144,0,801,855,0,0,558,0,0,0,0,801,825,827,0,0,0,0,0,0,0,0,0,801,832,828,859,0,0,0,0,16,16,0,0,232,859,558,0,0,0,855,0,0,0,0,0,0,801,16,801,801,801,182,183,182,558,859,781,18,0,0,488,558,859,558,0,0,0,0,807,778,0,0,16,801,0,53,35,157,0,0,801,16,0,53,807,778,828,558,0,0,0,0,0,0,923,0,0,801,0,558,0,828,855,53,35,157,157,0,0,0,0,0,157,0,801,801,822,0,828,855,53,35,157,0,0,855,53,35,157,0,0,855,53,35,157,0,0,855,53,35,157,0,0,0,488,859,157,0,801,0,35,801,830,855,53,35,157,0,0,0,0,53,0,0,0,0,807,778,0,0,828,0,558,0,558,828,0,0,822,395,146,488,0,824,825,176,765,766,241,826,239,827,828,829,830,831,395,832,833,834,835,488,836,837,838,795,839,797,774,793,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,790,927,792,792,792,792,154,1059,558,926,558,239,239,928,239,793,558,0,558,0,558,0,794,851,796,796,795,796,558,774,558,0,558,112,918,112,918,112,918,929,793,558,0,929,558,930,930,558,558,0,929,929,929,929,0,558,558,339,558,558,558,558,558,1060,802,558,1060,802,558,931,558,154,0,931,932,558,154,0,851,558,0,0,804,805,796,795,154,339,154,339,1061,1062,1062,1062,1062,880,1063,880,807,933,1064,154,934,880,809,0,1062,1065,0,558,1066,1066,0,810,790,813,810,816,816,816,816,0,558,0,154,154,154,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,774,339,95,96,929,127,177,176,774,838,839,850,879,878,863,128,133,0,936,937,154,558,936,0,558,558,558,177,176,93,95,96,765,766,938,154,938,154,0,154,558,558,558,824,825,176,765,766,241,826,239,827,828,829,830,831,395,832,833,834,835,488,836,837,838,795,839,797,774,793,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,154,824,825,176,765,766,241,826,239,827,828,829,830,831,395,832,833,834,835,488,836,837,838,795,839,797,774,793,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,177,176,765,766,0,1067,839,239,0,0,774,0,0,1059,239,856,857,0,1066,0,1067,837,0,0,1068,1066,802,1068,1066,558,558,558,0,558,1066,0,860,862,774,558,0,939,558,939,558,939,558,0,939,558,1069,856,339,152,0,0,0,0,0,0,0,1070,1071,1072,847,1073,239,848,239,142,849,860,862,825,176,765,766,828,395,832,488,836,838,839,797,774,558,799,799,799,848,850,851,852,853,854,856,857,858,859,0,558,823,865,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,823,865,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,145,29,34,859,774,774,764,0,0,802,558,926,558,928,558,859,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,774,558,774,558,154,0,0,558,937,154,92,0,0,0,1068,1066,1074,558,824,825,765,766,241,239,827,828,830,831,395,832,833,834,835,488,807,558,558,845,822,799,799,846,801,849,850,851,852,853,855,856,857,858,339,339,558,925,925,824,824,824,824,825,825,825,825,765,765,765,765,766,766,766,766,241,241,241,241,239,239,239,239,827,827,827,827,828,828,828,828,830,830,830,830,831,831,831,831,395,395,395,395,832,832,832,832,833,833,833,833,834,834,834,834,835,835,835,835,488,488,488,488,558,558,558,558,845,845,845,845,822,822,822,822,846,846,846,846,849,849,849,849,850,850,850,850,851,851,851,851,852,852,852,852,853,853,853,853,856,856,856,856,857,857,857,857,858,858,858,858,1075,880,809,880,806,765,241,850,558,558,1074,558,774,774,940,558,940,0,809,860,862,1066,1066,1066,112,774,112,154,872,872,339,153,854,774,558,774,558,941,942,154,774,558,806,1076,861,918,1067,794,816,873,804,805,874,810,875,876,877,790,813,112,1067,837,795,804,0,802,774,558,0,558,799,558,558,0,878,863,879,824,825,765,766,241,826,239,827,828,830,831,395,880,796,832,881,833,834,835,488,871,840,558,558,845,822,822,799,846,846,801,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,0,858,177,176,93,0,794,851,850,0,558,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,774,793,871,894,840,841,842,843,844,807,558,558,558,558,558,558,558,558,558,558,558,558,558,558,845,822,799,799,799,799,799,799,799,799,846,801,801,801,801,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,339,339,943,944,945,865,865,946,946,919,946,865,865,946,919,865,816,877,919,919,865,799,947,0,948,949,558,922,181,924,154,802,950,937,950,937,823,774,855,28,829,829,829,864,798,339,927,951,154,878,829,881,922,952,181,924,154,953,1067,954,774,1077,774,1077,774,774,0,0,925,558,925,558,816,873,837,792,154,955,809,824,825,241,239,827,828,395,833,834,835,488,558,845,846,849,850,802,793,558,1066,1066,1078,1071,1072,847,1073,848,794,759,776,558,0,765,765,766,951,0,816,876,877,797,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,112,1079,774,0,0,143,0,558,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,339,865,890,558,339,1080,802,902,771,792,775,239,154,558,0,956,558,222,957,558,154,558,958,1070,1071,1072,880,222,558,558,0,154,558,0,154,558,152,792,771,792,1081,154,880,239,1070,1071,1072,812,339,1079,802,774,774,0,558,0,802,774,558,1082,149,1079,774,794,154,339,802,774,154,558,0,893,894,855,1074,558,1074,558,774,793,816,877,837,795,839,558,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,925,558,925,558,856,857,29,774,558,558,0,558,799,799,799,799,558,0,558,558,0,852,0,803,802,774,959,558,960,154,0,0,802,774,959,558,154,0,774,961,558,154,962,154,774,838,804,0,558,152,153,145,847,1073,848,1073,848,0,803,802,774,959,558,960,154,0,177,176,849,93,1078,1071,1072,847,1073,848,932,558,154,1070,1071,1072,847,1084,1085,239,239,926,239,558,928,29,34,558,154,1067,837,795,838,839,797,858,932,558,154,154,797,92,152,558,558,0,1078,1071,1072,1073,239,848,963,558,558,1076,861,921,964,865,794,816,873,804,805,874,860,810,862,875,876,877,790,239,812,829,813,837,795,799,847,848,339,810,339,965,154,339,890,812,558,558,0,558,925,925,0,154,774,558,29,790,765,766,241,829,794,103,774,558,1070,1071,1072,1072,34,842,844,1079,774,792,858,558,558,836,839,239,1070,1078,1071,1066,239,239,1067,837,795,966,154,966,154,0,765,766,558,0,0,0,0,792,558,858,854,0,558,143,960,558,774,854,0,774,961,558,962,154,1070,1071,1072,558,0,558,0,790,1067,154,837,795,836,838,839,0,926,558,928,154,774,872,0,967,558,154,1066,1066,1066,1066,0,558,0,968,154,802,774,558,149,794,969,558,154,558,0,0,1086,103,558,1086,103,558,1086,103,558,1086,103,558,1086,103,558,1086,103,558,1086,103,558,1086,103,558,792,1087,558,829,829,829,1067,837,795,838,839,797,856,851,851,1083,799,558,558,816,796,795,774,774,804,805,790,796,795,774,859,797,858,0,1078,1071,1072,847,1073,848,774,0,970,970,1088,970,934,790,823,813,804,805,876,790,1076,558,339,971,154,802,774,558,972,774,558,558,918,154,558,854,558,558,774,774,797,858,0,154,802,774,558,339,339,759,854,973,339,973,339,339,339,339,339,0,931,802,774,558,558,774,931,558,154,0,558,765,1068,1066,856,774,974,558,975,154,558,976,154,1066,1066,1066,149,776,854,1072,850,558,0,558,926,558,928,794,558,759,0,803,802,774,959,558,960,0,799,802,774,793,558,977,154,558,154,154,154,154,923,977,154,558,558,0,0,841,843,154,0,1072,774,859,774,855,339,978,774,558,1089,1059,880,558,1066,824,825,176,765,766,241,826,239,827,828,829,830,831,395,832,833,834,835,488,836,837,838,795,839,797,774,793,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,558,1072,558,822,846,801,836,1066,149,149,774,1090,765,239,239,829,829,829,829,239,829,239,829,929,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,855,856,857,858,859,339,951,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,833,834,835,339,878,176,854,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,20,176,792,932,803,802,774,558,154,803,802,774,558,0,774,558,1091,1091,241,790,839,0,794,759,339,339,1081,558,776,776,339,339,774,974,558,975,154,776,979,979,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,176,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,1070,1071,1072,1070,1071,1072,828,239,848,239,177,176,93,0,842,844,177,176,849,93,794,873,876,795,837,921,816,877,774,816,804,805,790,774,858,816,837,874,860,810,862,813,774,813,873,873,847,848,816,873,837,837,816,816,816,837,816,837,860,862,873,848,847,848,847,848,816,876,837,837,795,875,876,847,848,848,847,848,816,837,847,816,804,805,877,790,837,795,816,877,848,873,816,837,774,1067,816,877,837,795,816,774,816,804,805,876,790,774,816,837,873,1067,816,877,837,795,816,804,805,790,837,795,774,813,816,876,877,837,795,837,876,877,847,848,774,816,837,816,837,774,813,774,873,816,837,774,339,339,848,847,774,558,1070,1071,1072,847,0,980,1092,1093,1094,1092,1093,1094,1092,1095,1096,1097,1098,1099,1097,1099,1100,1101,1097,1102,1103,1104,1105,1102,1106,1101,1104,1098,1107,1106,1108,1107,1107,1108,1100,1104,1105,1106,1105,1106,1105,1103,1108,1099,1103,1109,1110,1111,1112,1113,1109,1114,1112,1109,1114,1110,1115,1116,1117,1118,1119,1120,1109,1121,981,981,1122,1122,1122,1123,1123,1124,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1133,1132,1134,1126,1135,1126,1129,1130,1123,1131,1136,1124,1137,1134,1128,1125,1138,1139,1139,1140,1123,1139,1137,1123,1137,1132,1123,1139,1136,1140,1127,1133,1138,1132,1135,1133,1127,1139,1133,1127,1129,1130,1123,1139,1131,1125,1127,0,0,0,0,0,0,0,0,0,1057,0,0,1141,1141,1141,1141,1141,1142,0,416,0,0,416,0,905,416,905,416,416,906,905,906,905,416,905,905,416,906,905,906,905,906,905,416,416,905,416,906,905,416,416,905,906,905,906,905,906,906,416,416,416,906,905,416,906,416,416,416,416,416,416,416,905,906,905,906,905,906,905,906,905,0,821,821,821,821,821,821,821,821,821,821,821,821,821,821,821,0,0,840,840,0,0,0,0,0,0,0,0,177,1062,1062,1062,1062,1062,177,177,177,176,177,176,177,177,177,176,1070,1071,1073,177,177,177,177,177,176,177,1078,1071,1073,177,177,1070,1071,1070,1071,1073,1073,177,176,1078,1071,1073,1070,1071,1078,1071,1073,1070,1071,1070,1078,1071,1070,1071,1086,1086,1086,1086,1086,1086,1086,1086,1078,1071,1073,177,177,177,176,177,176,0,0,177,1070,1071,1070,1071,177,176,177,176,1070,1071,0,907,907,907,907,907,0,0,907,1062,1062,1062,1062,1062,1143,907,907,907,907,907,907,907,907,907,907,907,907,907,907,907,0,907,907,907,907,907,907,907,907,0,1144,0,0,908,908,908,908,908,908,908,908,908,0,908,908,908,908,1145,908,908,908,908,908,1144,908,908,908,908,908,214,214,0,0,214,214,0,53,35,0,0,0,0,53,35,157,0,53,0,53,35,157,0,0,0,53,35,0,0,0,0,0,53,35,157,157,0,0,53,35,0,0,53,35,157,157,0,0,157,53,35,157,0,0,157,0,157,157,0,157,53,35,157,0,0,53,35,157,0,0,0,228,920,921,0,0,0,0,0,0,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,157,157,157,53,35,157,0,0,920,228,0,0,157,232,61,232,61,232,61,5,53,35,157,0,53,35,0,53,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,232,0,53,35,157,0,53,53,35,157,157,0,0,0,0,157,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,35,53,35,157,0,53,0,933,937,0,937,92,937,937,28,952,0,92,921,921,0,0,0,228,920,920,228,0,0,0,0,0,0,0,0,0,0,0,0,0,943,944,945,0,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,0,1058,1058,0,215,0,0,0,0,416,0,0,0,416,0,0,0,0,0,0,0,0,0,910,416,405,406,407,408,409,411,410,412,413,414,415,909,910,911,405,406,409,411,410,416,416,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,416,910,910,0,416,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,0,416,416,910,416,405,406,407,408,409,411,410,412,413,414,415,909,910,416,416,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,416,416,416,909,910,416,408,410,911,410,416,416,416,405,406,407,408,409,411,410,412,413,414,415,416,416,416,416,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,0,0,0,0,0,0,0,0,913,912,913,912,913,912,913,912,913,912,912,912,913,912,913,913,912,913,912,912,913,912,912,912,913,912,913,912,913,912,913,912,0,0,0,0,817,819,818,820,817,819,818,820,817,819,818,820,817,819,818,820,817,819,819,818,820,820,817,819,818,820,817,819,818,820,817,819,818,820,817,819,818,820,0,0,817,819,818,820,817,819,818,820,817,819,818,820,817,819,818,820,0,0,0,0,1146,1072,1072,1072,1072,1072,1072,1072,103,1072,1072,1072,103,103,103,103,103,103,103,103,1072,1072,1072,1147,1072,1072,1072,1072,0,973,973,0,0,0,0,0,0,0,0,0,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,0,0,0,0,72,0,72,0,0,925,72,0,0,0,0,72,15,154,15,15,15,15,15,15,15,15,154,154,0,15,15,154,154,15,154,154,15,15,15,154,15,15,154,154,154,15,915,72,15,915,72,15,154,15,15,15,15,154,15,15,154,154,15,15,15,15,15,72,15,154,72,15,15,15,15,15,15,15,15,15,915,72,15,15,915,72,15,15,15,15,15,15,915,72,15,154,154,15,72,15,925,15,15,15,925,15,15,15,72,72,72,72,15,15,15,15,15,15,154,15,154,15,15,72,15,15,15,915,72,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,154,15,154,154,925,15,15,15,925,15,15,15,154,15,15,15,15,15,15,0,15,915,72,15,915,72,15,15,915,771,15,154,15,154,15,15,15,154,154,771,15,154,15,154,154,15,15,925,15,15,15,925,15,15,15,15,154,154,15,154,154,15,154,154,15,15,15,15,154,154,154,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,154,15,915,925,15,15,15,925,15,15,15,154,0,15,154,154,15,15,154,15,154,15,15,15,154,15,154,15,154,154,15,15,15,15,15,15,15,15,15,15,15,15,15,15,154,154,15,15,915,154,15,154,154,154,15,15,15,15,15,15,15,15,15,15,154,15,154,154,154,154,15,154,15,15,154,15,15,15,15,72,15,15,15,15,915,72,15,15,15,915,72,15,915,72,15,15,15,15,15,154,15,154,0,15,154,915,72,15,15,0,0,0,926,0,926,928,14,0,926,928,14,926,928,14,926,928,14,926,928,14,0,0,938,36,938,36,866,866,0,866,866,866,866,866,866,866,866,0,866,866,866,866,866,866,866,866,866,866,866,866,866,866,866,866,0,0,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916],"f":[0,0,0,0,0,0,0,[1],0,0,0,0,0,0,0,0,0,0,[[],1],0,0,[2],[[[4,[3]]],1],[[[4,[5]]],[[4,[5]]]],[[[4,[5]],[4,[5]]]],[[[4,[6]],[4,[6]]]],[[[4,[6]],[4,[6]]]],[[[4,[5]],[0,[7,8]]]],[[[4,[5]],[4,[5]]]],[[[4,[6]],[10,[9]]]],[[[4,[11]],12]],[[[4,[11]],[4,[11]]]],[[[4,[5]],[0,[7,8]]]],[[[4,[13]],[4,[13]]]],[[[4,[11]],[4,[11]]]],[[[4,[13]],[4,[13]]]],[[[4,[14]],15],[[17,[15,16]]]],[[[4,[11]],18],15],[[[4,[13]],18],15],[[[4,[19]],18],15],[[[4,[5]],18],15],[[[4,[3]],18],15],[[[4,[[21,[20]]]],18],15],[[[4,[6]],18],15],[[[4,[13]]],1],[[[4,[13]],1],[[22,[1]]]],[[[4,[3]]],[[24,[23]]]],[[[4,[19]]],[[24,[23]]]],[[[4,[19]],12],[[24,[23]]]],[[[4,[3]],12],[[24,[23]]]],[[[4,[13]]],1],[[[4,[13]],1],[[22,[1]]]],[[[4,[5]],[4,[5]]]],[[[4,[11]],[0,[25,26]]],[[4,[11]]]],[[[4,[3]],[0,[25,26]]],[[4,[3]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[13]],[0,[25,26]]],[[4,[13]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[[21,[20]]]]]],[[[4,[6]],[0,[25,26]]],[[4,[6]]]],[[[4,[3]],27],[[4,[3]]]],[[[4,[6]],[0,[25,26]]],[[4,[5]]]],[[[4,[13]],[0,[25,26]]],[[4,[5]]]],[[[4,[3]],[0,[25,26]]],[[4,[5]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[5]]]],[[[4,[11]],[0,[25,26]]],[[4,[5]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[5]],25],[[4,[5]]]],[[[4,[13]],25],[[4,[13]]]],[[[4,[6]],25],[[4,[6]]]],[[[4,[11]],25],[[4,[11]]]],[[[4,[5]],25],[[4,[28]]]],[[[4,[6]],25],[[4,[28]]]],[[[4,[11]],25],[[4,[28]]]],[[[4,[13]],25],[[4,[28]]]],[[[4,[5]],[0,[25,26]]]],[[[4,[6]],27],[[4,[6]]]],[[[4,[11]],27],[[4,[11]]]],[[[4,[11]],[0,[25,26]]],[[4,[11]]]],[[[4,[13]],[0,[25,26]]],[[4,[13]]]],[[[4,[6]],[0,[25,26]]],[[4,[6]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[3]],[0,[25,26]]],[[4,[3]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[[21,[20]]]]]],[[[4,[3]],25],[[17,[[4,[3]],16]]]],[[[4,[19]],25],[[17,[[4,[19]],16]]]],[[[4,[6]],25,10]],[[[4,[3]],25,10]],[[[4,[[21,[20]]]],25,10]],[[[4,[11]],25,10]],[[[4,[5]],25,10]],[[[4,[13]],25,10]],[[[4,[6]],[0,[25,26]]],[[4,[6]]]],[[[4,[11]],[0,[25,26]]],[[4,[11]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[3]],[0,[25,26]]],[[4,[3]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[[21,[20]]]]]],[[[4,[13]],[0,[25,26]]],[[4,[13]]]],[[[4,[11]],[0,[25,26]]],[[4,[11]]]],[[[4,[13]],[0,[25,26]]],[[4,[13]]]],[[[4,[6]],[0,[25,26]]],[[4,[6]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[[21,[20]]]]]],[[[4,[3]],[0,[25,26]]],[[4,[3]]]],[[[4,[11]],29],[[4,[30]]]],[[[4,[13]],29],[[4,[30]]]],[[[4,[31]],29],[[4,[30]]]],[[[4,[32]],29],[[4,[30]]]],[[[4,[6]],29],[[4,[30]]]],[[[4,[33]],29],[[4,[30]]]],[[[4,[33]],34],[[17,[[4,[30]],16]]]],[[[4,[11]],34],[[17,[[4,[30]],16]]]],[[[4,[13]],34],[[17,[[4,[30]],16]]]],[[[4,[31]],34],[[17,[[4,[30]],16]]]],[[[4,[32]],34],[[17,[[4,[30]],16]]]],[[[4,[6]],34],[[17,[[4,[30]],16]]]],[[[4,[32]]],[[17,[[4,[30]],16]]]],[[[4,[13]]],[[17,[[4,[30]],16]]]],[[[4,[11]]],[[17,[[4,[30]],16]]]],[[[4,[31]]],[[17,[[4,[30]],16]]]],[[[4,[[21,[20]]]]],[[17,[[4,[30]],16]]]],[[[4,[6]]],[[17,[[4,[30]],16]]]],[[[4,[33]]],[[17,[[4,[30]],16]]]],0,[[[4,[19]]],[[4,[19]]]],[[[4,[11]]],[[4,[6]]]],[[[4,[6]]],[[4,[6]]]],[[[4,[3]]],[[4,[3]]]],[[[4,[28]]],[[4,[28]]]],[[[4,[28]]],35],[[[4,[11]]],[[4,[11]]]],[[[4,[11]]],[[4,[11]]]],[[[4,[32]],[4,[32]]]],[[[4,[13]],[4,[13]]]],[[[4,[13]],[4,[13]]]],[[[4,[13]],[4,[13]]]],[[[4,[32]],[4,[32]]]],[[[4,[13]],[4,[13]]]],[[[4,[13]],[4,[13]]]],[[[4,[32]],[4,[32]]]],[[[4,[13]],[4,[13]]]],[[]],[[]],[[[4,[6]],[0,[25,26]]],[[4,[5]]]],[[[4,[13]],[0,[25,26]]],[[4,[5]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[5]]]],[[[4,[5]],25],[[4,[5]]]],[[[4,[3]],[0,[25,26]]],[[4,[5]]]],[[[4,[11]],[0,[25,26]]],[[4,[5]]]],0,0,[[[4,[3]],35],[[17,[15,16]]]],[[[4,[13]],35],[[17,[15,16]]]],[[[4,[5]],35],[[17,[15,16]]]],[[[4,[6]],35],[[17,[15,16]]]],[[[4,[11]],35],[[17,[15,16]]]],[[[4,[19]],35],[[17,[15,16]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[3]],35],[[17,[15,16]]]],[[[4,[11]],35],[[17,[15,16]]]],[[[4,[5]],35],[[17,[15,16]]]],[[[4,[19]],35],[[17,[15,16]]]],[[[4,[6]],35],[[17,[15,16]]]],[[[4,[13]],35],[[17,[15,16]]]],[[[4,[36]],15],[[17,[15,16]]]],[[[4,[36]],8],[[17,[15,16]]]],[[[4,[28]]],[[41,[[40,[[39,[37,38]]]]]]]],[[[4,[28]]],[[42,[[39,[37,38]],38]]]],[[[4,[28]]],[[42,[[39,[37,38]],38]]]],[[[4,[28]]],[[4,[28]]]],[[]],0,[[[4,[5]]],[[17,[10,16]]]],[[[4,[5]],1],[[4,[5]]]],[[[4,[5]],1],[[4,[5]]]],[[[4,[5]],1],[[4,[5]]]],[[[4,[5]],1],[[4,[5]]]],[[[4,[5]]],[[0,[23,43]]]],[[],[[4,[28]]]],[44],[44],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[7,8]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[7,8]]]],[[[4,[14]],15],[[17,[15,16]]]],[44],[[[4,[28]]]],[[[4,[28]]],35],[[[4,[5]],8],[[4,[13]]]],[[[4,[11]],12],[[4,[13]]]],[[[4,[3]],[4,[3]]],[[4,[13]]]],[[[4,[13]],[4,[13]]],[[4,[13]]]],[[[4,[6]],[10,[9]]],[[4,[13]]]],[[[4,[5]],[4,[5]]],[[4,[13]]]],[[[4,[11]],[4,[11]]],[[4,[13]]]],[[[4,[6]],[4,[6]]],[[4,[13]]]],[[[4,[19]],[4,[19]]],[[4,[13]]]],[[[4,[19]],[4,[19]]],[[4,[13]]]],[[[4,[11]],12],[[4,[13]]]],[[[4,[3]],[4,[3]]],[[4,[13]]]],[[[4,[6]],[4,[6]]],[[4,[13]]]],[[[4,[11]],[4,[11]]],[[4,[13]]]],[[[4,[5]],8],[[4,[13]]]],[[[4,[5]],[4,[5]]],[[4,[13]]]],[[[4,[13]],[4,[13]]],[[4,[13]]]],[[[4,[6]],[10,[9]]],[[4,[13]]]],[[[4,[19]]],[[17,[15,16]]]],[[[4,[19]]],[[17,[16]]]],[[[4,[11]]],[[17,[16]]]],[[[4,[3]]],[[17,[16]]]],[[[4,[5]],[4,[5]]]],[[[4,[13]],1],[[17,[[4,[13]],16]]]],[[[4,[5]]],[[17,[[4,[5]],16]]]],[[[4,[6]],[10,[9]]],[[17,[[4,[6]],16]]]],[[[4,[6]],[4,[13]]],[[17,[[4,[6]],16]]]],[[[4,[13]],[4,[13]]],[[17,[[4,[13]],16]]]],[[[4,[11]],[4,[13]]],[[17,[[4,[11]],16]]]],[[[4,[5]],[4,[13]]],[[17,[[4,[5]],16]]]],[[[4,[[21,[20]]]],[4,[13]]],[[17,[[4,[[21,[20]]]],16]]]],[[[4,[3]],[4,[13]]],[[17,[[4,[3]],16]]]],[[[4,[19]],[4,[13]]],[[17,[[4,[19]],16]]]],[[[4,[28]]],[[22,[44]]]],0,[[[4,[5]],45],[[17,[46]]]],[[[4,[6]],45],[[17,[46]]]],[[[4,[19]],45],[[17,[46]]]],[[[4,[11]],45],[[17,[46]]]],[[[4,[[21,[20]]]],45],[[17,[46]]]],[[[4,[3]],45],[[17,[46]]]],[[[4,[13]],45],[[17,[46]]]],[[]],[[],[[4,[13]]]],[[],[[4,[6]]]],[[],[[4,[11]]]],[47,[[4,[5]]]],[[],[[4,[5]]]],[48,[[4,[13]]]],[10,[[4,[5]]]],[[12,[42,[[39,[37,38]],38]]],[[4,[28]]]],[49,[[4,[3]]]],[49,[[4,[3]]]],[49,[[4,[13]]]],[49,[[4,[13]]]],[49,[[4,[6]]]],[49,[[4,[6]]]],[49,[[4,[11]]]],[49,[[4,[3]]]],[49,[[4,[5]]]],[49,[[4,[11]]]],[49,[[4,[5]]]],[49,[[4,[[21,[20]]]]]],[[12,23],[[4,[11]]]],[[12,23],[[4,[5]]]],[[12,23],[[4,[13]]]],[[12,23],[[4,[[21,[20]]]]]],[[12,23],[[4,[6]]]],[49,[[4,[[21,[20]]]]]],[49,[[4,[11]]]],[49,[[4,[3]]]],[49,[[4,[6]]]],[49,[[4,[11]]]],[49,[[4,[3]]]],[49,[[4,[6]]]],[49,[[4,[5]]]],[49,[[4,[13]]]],[49,[[4,[13]]]],[[12,23],[[4,[[21,[20]]]]]],[[12,23],[[4,[6]]]],[[12,23],[[4,[11]]]],[[12,23],[[4,[5]]]],[[12,23],[[4,[13]]]],[50,[[4,[11]]]],[50,[[4,[11]]]],[50,[[4,[13]]]],[50,[[4,[13]]]],[50,[[4,[3]]]],[50,[[4,[5]]]],[[12,10],[[4,[5]]]],[[12,[10,[[51,[[10,[9]]]]]]],[[4,[6]]]],[[12,[10,[[51,[12]]]]],[[4,[11]]]],[[12,[10,[20]]],[[4,[[21,[20]]]]]],[[12,[10,[1]]],[[4,[13]]]],[[12,[10,[[22,[1]]]]],[[4,[13]]]],[[12,[10,[[22,[[51,[[10,[9]]]]]]]]],[[4,[6]]]],[[12,[10,[22]]],[[4,[5]]]],[[12,[10,[[22,[20]]]]],[[4,[[21,[20]]]]]],[[12,[10,[[22,[[51,[12]]]]]]],[[4,[11]]]],[52,[[4,[13]]]],[52,[[4,[5]]]],[[12,[42,[38]]],[[4,[5]]]],[[12,12,44],[[4,[11]]]],[[12,[10,[9]],44],[[4,[6]]]],[[12,1,44],[[4,[13]]]],[[12,15,44],[[4,[19]]]],[[12,20,44],[[4,[[21,[20]]]]]],[[12,15,44],[[4,[3]]]],[[12,44],[[4,[5]]]],[[12,44],[[4,[5]]]],[[12,44],[[4,[6]]]],[[12,44],[[4,[19]]]],[[12,44],[[4,[11]]]],[[12,44],[[4,[13]]]],[[12,44],[[4,[3]]]],[[12,44],[[4,[[21,[20]]]]]],[[12,44,35,44],[[4,[19]]]],[[12,44,35],[[4,[3]]]],[[[4,[3]],44],22],[[[4,[11]],44],22],[[[4,[5]],44],22],[[[4,[13]],44],22],[[[4,[13]],44],22],[[[4,[[21,[20]]]],44],22],[[[4,[19]],44],22],[[[4,[6]],44],22],[[[4,[5]],44],22],[[[4,[11]],44],22],[[[4,[[21,[20]]]],44],[[17,[53,16]]]],[[[4,[3]],44],[[17,[53,16]]]],[[[4,[6]],44],[[17,[53,16]]]],[[[4,[19]],44],[[17,[53,16]]]],[[[4,[5]],44],[[17,[53,16]]]],[[[4,[13]],44],[[17,[53,16]]]],[[[4,[11]],44],[[17,[53,16]]]],[[[4,[6]],44],53],[[[4,[3]],44],53],[[[4,[19]],44],53],[[[4,[[21,[20]]]],44],53],[[[4,[11]],44],53],[[[4,[5]],44],53],[[[4,[13]],44],53],[[[4,[3]]],15],[[[4,[19]]],15],[[[4,[[21,[20]]]],44],[[22,[54]]]],[[[4,[[21,[20]]]],44],[[22,[54]]]],[[[4,[3]],44],22],[[[4,[19]],44],22],[[[4,[11]],44],22],[[[4,[[21,[20]]]],44],22],[[[4,[13]],44],22],[[[4,[13]],44],22],[[[4,[5]],44],22],[[[4,[5]],44],22],[[[4,[19]]],44],[[[4,[11]]],44],[[[4,[6]]],44],[[[4,[3]]],44],[[[4,[19]],1,1],[[17,[18,16]]]],[[[4,[[21,[20]]]],1,1],[[17,[18,16]]]],[[[4,[11]],1,1],[[17,[18,16]]]],[[[4,[5]],1,1],[[17,[18,16]]]],[[[4,[13]],1,1],[[17,[18,16]]]],[[[4,[3]],1,1],[[17,[18,16]]]],[[[4,[6]],1,1],[[17,[18,16]]]],[[[4,[32]],44,1,44],18],[[[4,[13]],[4,[13]]],[[4,[13]]]],[[[4,[11]],[4,[11]]],[[4,[13]]]],[[[4,[5]],[4,[5]]],[[4,[13]]]],[[[4,[3]],[4,[3]]],[[4,[13]]]],[[[4,[5]],8],[[4,[13]]]],[[[4,[6]],[4,[6]]],[[4,[13]]]],[[[4,[6]],[10,[9]]],[[4,[13]]]],[[[4,[19]],[4,[19]]],[[4,[13]]]],[[[4,[11]],12],[[4,[13]]]],[[[4,[5]],[4,[5]]],[[4,[13]]]],[[[4,[5]],8],[[4,[13]]]],[[[4,[11]],[4,[11]]],[[4,[13]]]],[[[4,[6]],[4,[6]]],[[4,[13]]]],[[[4,[13]],[4,[13]]],[[4,[13]]]],[[[4,[6]],[10,[9]]],[[4,[13]]]],[[[4,[19]],[4,[19]]],[[4,[13]]]],[[[4,[11]],12],[[4,[13]]]],[[[4,[3]],[4,[3]]],[[4,[13]]]],[[[4,[28]]],1],[[[4,[28]],[22,[44]]],[[4,[28]]]],[[],44],[[44,55,[22,[56]]],[[4,[5]]]],[[[4,[3]]],35],[[[4,[19]]],35],[[]],[[[4,[57]]],[[59,[58,57]]]],[[[4,[60]],61,[22,[62]]],[[59,[63,60]]]],[[[4,[64]],[22,[44]],44],[[17,[[59,[65,64]],16]]]],[[[4,[64]],[22,[44]],44],[[59,[65,64]]]],[[[4,[60]],61],[[59,[66,60]]]],[[[4,[13]]]],[[[4,[11]]]],[[[4,[5]]]],[[[4,[6]]]],[[[4,[3]]]],[[[4,[[21,[20]]]]]],[[[4,[19]]]],[[[4,[5]]],[[0,[23,67,68,69,43,52]]]],[[[4,[64]]],15],[[[4,[28]]],15],[[[4,[60]]],[[59,[70,60]]]],[[[4,[28]]],1],[[[4,[71]]],[[4,[13]]]],[[[4,[13]],15],[[17,[[4,[13]],16]]]],[[[4,[6]],15],[[17,[[4,[13]],16]]]],[[[4,[5]],15],[[17,[[4,[13]],16]]]],[[[4,[11]],15],[[17,[[4,[13]],16]]]],[[[4,[71]]],[[4,[13]]]],[[[4,[71]]],[[4,[13]]]],[[[4,[71]]],[[4,[13]]]],[[[4,[28]]],[[4,[13]]]],[[[4,[28]]],[[4,[13]]]],[[[4,[28]]],1],[[[4,[28]]],72],[[[4,[28]]],[[41,[[40,[[39,[37,38]]]]]]]],0,0,[[[4,[28]]],[[22,[44]]]],[[[4,[28]]],44],[[[4,[5]],[0,[7,73]]],[[4,[5]]]],[[[4,[5]],[0,[7,73]]],[[4,[5]]]],[[[4,[5]],[0,[7,73]]],[[4,[5]]]],[[[4,[28]],44],[[4,[28]]]],[[[4,[11]],[4,[11]]],[[4,[13]]]],[[[4,[3]],[4,[3]]],[[4,[13]]]],[[[4,[5]],8],[[4,[13]]]],[[[4,[19]],[4,[19]]],[[4,[13]]]],[[[4,[11]],12],[[4,[13]]]],[[[4,[5]],[4,[5]]],[[4,[13]]]],[[[4,[6]],[10,[9]]],[[4,[13]]]],[[[4,[13]],[4,[13]]],[[4,[13]]]],[[[4,[6]],[4,[6]]],[[4,[13]]]],[[[4,[19]],[4,[19]]],[[4,[13]]]],[[[4,[6]],[4,[6]]],[[4,[13]]]],[[[4,[5]],8],[[4,[13]]]],[[[4,[13]],[4,[13]]],[[4,[13]]]],[[[4,[11]],[4,[11]]],[[4,[13]]]],[[[4,[6]],[10,[9]]],[[4,[13]]]],[[[4,[5]],[4,[5]]],[[4,[13]]]],[[[4,[11]],12],[[4,[13]]]],[[[4,[3]],[4,[3]]],[[4,[13]]]],[[[4,[13]]],[[22,[1]]]],[[[4,[5]]],22],[[[4,[13]]],15],[[[4,[19]]],15],[[[4,[5]]],15],[[[4,[3]]],15],[[[4,[11]]],15],[[[4,[6]]],15],[[[4,[13]]],[[22,[74]]]],[[[4,[5]]],[[22,[74]]]],[[[4,[32]]],[[22,[74]]]],[[[4,[31]]],[[22,[55]]]],[[[4,[33]]],[[22,[74]]]],[[[4,[32]]],15],[[[4,[33]]],15],[[[4,[31]]],15],[[[4,[5]]],22],[[[4,[13]]],[[22,[1]]]],[[[4,[19]]],15],[[[4,[13]]],15],[[[4,[5]]],15],[[[4,[3]]],15],[[[4,[11]]],15],[[[4,[6]]],15],[[12,[10,[9]],44,44],[[4,[13]]]],[[12,10],[[4,[5]]]],[[[4,[33]]],[[17,[[4,[33]],16]]]],[[[4,[32]]],[[17,[[4,[32]],16]]]],[[[4,[11]]],[[17,[[4,[11]],16]]]],[[[4,[31]]],[[17,[[4,[31]],16]]]],[[[4,[6]]],[[17,[[4,[6]],16]]]],[[[4,[5]],[0,[7,8]]]],[[[4,[5]],[0,[7,8]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[4,[5]]]],[[[4,[14]],15],[[17,[15,16]]]],[[[4,[32]]],[[17,[44,16]]]],[[[4,[11]]],[[17,[44,16]]]],[[[4,[6]]],[[17,[44,16]]]],[[[4,[28]]],12],[[12,[51,[[10,[[22,[56]]]]]]],[[4,[75]]]],[[12,[51,[[10,[62]]]]],[[4,[11]]]],[[12,[76,[56]]],[[4,[75]]]],[[12,[51,[[10,[[22,[20]]]]]]],[[4,[[21,[20]]]]]],[[12,[76,[77]]],[[4,[60]]]],[[12,[51,[[10,[[22,[1]]]]]]],[[4,[13]]]],[[12,[51,[[10,[[22,[78]]]]]]],[[4,[30]]]],[[12,[51,[[10,[56]]]]],[[4,[75]]]],[[12,[51,[[10,[[22,[[10,[9]]]]]]]]],[[4,[6]]]],[[12,[51,[[10,[79]]]]],[[4,[80]]]],[[12,[51,[[10,[74]]]]],[[4,[33]]]],[[12,[51,[[10,[55]]]]],[[4,[31]]]],[[12,[51,[[10,[81]]]]],[[4,[82]]]],[[12,[51,[[10,[[42,[9,38]]]]]]],[[4,[6]]]],[[12,[51,[[10,[[22,[79]]]]]]],[[4,[80]]]],[[12,[51,[[10,[[22,[12]]]]]]],[[4,[11]]]],[[12,[51,[[10,[[83,[12]]]]]]],[[4,[11]]]],[[12,[51,[[10,[77]]]]],[[4,[60]]]],[[12,[76,[78]]],[[4,[30]]]],[[12,[51,[[10,[[22,[84]]]]]]],[[4,[57]]]],[[12,[51,[[10,[12]]]]],[[4,[11]]]],[[12,[51,[[10,[[22,[9]]]]]]],[[4,[85]]]],[[12,[51,[[10,[[22,[55]]]]]]],[[4,[31]]]],[[12,[51,[[10,[84]]]]],[[4,[57]]]],[[12,[51,[[10,[[22,[81]]]]]]],[[4,[82]]]],[[12,[51,[[10,[[22,[77]]]]]]],[[4,[60]]]],[[12,[51,[[10,[9]]]]],[[4,[85]]]],[[12,[51,[[10,[86]]]]],[[4,[87]]]],[[12,[51,[[10,[1]]]]],[[4,[13]]]],[[12,[51,[[10,[[22,[62]]]]]]],[[4,[11]]]],[[12,[51,[[10,[[83,[[10,[9]]]]]]]]],[[4,[6]]]],[[12,[76,[84]]],[[4,[57]]]],[[12,[51,[[10,[[22,[[83,[[10,[9]]]]]]]]]]],[[4,[6]]]],[[12,[51,[[10,[78]]]]],[[4,[30]]]],[[12,[51,[[10,[[22,[[83,[12]]]]]]]]],[[4,[11]]]],[[12,[51,[[10,[[10,[9]]]]]]],[[4,[6]]]],[[12,[51,[[10,[[22,[74]]]]]]],[[4,[33]]]],[[12,[51,[[10,[[22,[86]]]]]]],[[4,[87]]]],[[12,[51,[[10,[[22,[[42,[9,38]]]]]]]]],[[4,[6]]]],[[12,[10,[20]]],[[4,[[21,[20]]]]]],[12,[[4,[[21,[20]]]]]],[[[4,[13]],44,44],[[4,[13]]]],[[[4,[19]],44,44],[[4,[19]]]],[[[4,[6]],44,44],[[4,[6]]]],[[[4,[[21,[20]]]],44,44],[[4,[[21,[20]]]]]],[[[4,[11]],44,44],[[4,[11]]]],[[[4,[[0,[28,5]]]],44,44],[[4,[[0,[28,5]]]]]],[[[4,[3]],44,44],[[4,[3]]]],[[12,[42,[38]],[22,[88]]],[[4,[5]]]],[[12,[42,[20,38]]],[[4,[[21,[20]]]]]],[[12,[42,[38]]],[[4,[5]]]],[[[4,[71]]],[[4,[71]]]],[[[4,[13]]]],[[[4,[13]]]],[[[4,[11]],12],[[4,[13]]]],[[[4,[6]],[10,[9]]],[[4,[13]]]],[[[4,[11]],[4,[11]]],[[4,[13]]]],[[[4,[6]],[4,[6]]],[[4,[13]]]],[[[4,[5]],[4,[5]]],[[4,[13]]]],[[[4,[3]],[4,[3]]],[[4,[13]]]],[[[4,[13]],[4,[13]]],[[4,[13]]]],[[[4,[5]],8],[[4,[13]]]],[[[4,[19]],[4,[19]]],[[4,[13]]]],[[[4,[5]],[4,[5]]],[[4,[13]]]],[[[4,[3]],[4,[3]]],[[4,[13]]]],[[[4,[11]],12],[[4,[13]]]],[[[4,[19]],[4,[19]]]],[[[4,[6]],[10,[9]]],[[4,[13]]]],[[[4,[5]],8],[[4,[13]]]],[[[4,[11]],[4,[11]]],[[4,[13]]]],[[[4,[13]],[4,[13]]],[[4,[13]]]],[[[4,[5]],[4,[5]]],[[4,[13]]]],[[[4,[6]],[4,[6]]],[[4,[13]]]],[[[4,[28]]],44],0,0,[[[4,[3]]],89],[[[4,[11]]],89],[[[4,[11]]],90],[[[4,[3]]],90],[[[4,[5]]],[[4,[13]]]],[[[4,[5]]],[[4,[13]]]],[[[4,[5]]],15],[[[4,[32]],74,91],[[17,[[22,[74]],16]]]],[[[4,[33]],74,91],[[17,[[22,[74]],16]]]],[[[4,[31]],74,91],[[17,[[22,[55]],16]]]],[[[4,[32]],74,91],[[17,[15,16]]]],[[[4,[31]],74,91],[[17,[15,16]]]],[[[4,[33]],74,91],[[17,[15,16]]]],[[12,44,74],[[17,[[4,[13]],16]]]],[[12,44,74,74],[[17,[[4,[5]],16]]]],[[12,44],[[4,[5]]]],[[12,44,74,74],[[4,[5]]]],[[[4,[28]]],[[4,[28]]]],[[[4,[28]]],92],[[[4,[5]],[0,[7,8]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[7,8]]]],[[[4,[14]],15],[[17,[15,16]]]],[[[4,[28]],12]],[[[4,[11]],[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[13]],[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[5]],[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[6]],[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[3]]],[[4,[3]]]],[[[4,[13]]],[[4,[13]]]],[[[4,[6]]],[[4,[6]]]],[[[4,[11]]],[[4,[11]]]],[[[4,[[21,[20]]]]],[[4,[[21,[20]]]]]],[[[4,[5]]],[[4,[5]]]],[[[4,[19]]],[[4,[19]]]],[[[4,[5]],25,93],[[17,[15,16]]]],[[[4,[71]],44,27],[[17,[[4,[71]],16]]]],[[[4,[28]],74,1,1,[22,[56]]],[[17,[[4,[28]],16]]]],[[[4,[28]],44,1,1,[22,[56]]],[[17,[[4,[28]],16]]]],[[[4,[6]],[4,[13]],[22,[[10,[9]]]]],[[17,[[4,[6]],16]]]],[[[4,[13]],[4,[13]],[22,[1]]],[[17,[[4,[13]],16]]]],[[[4,[5]],[4,[13]],22],[[17,[[4,[5]],16]]]],[[[4,[11]],[4,[13]],[22,[12]]],[[17,[[4,[11]],16]]]],[[[4,[6]],49,[22,[[10,[9]]]]],[[17,[[4,[6]],16]]]],[[[4,[5]],49,22],[[17,[[4,[5]],16]]]],[[[4,[11]],49,[22,[12]]],[[17,[[4,[11]],16]]]],[[[4,[13]],49,[22,[1]]],[[17,[[4,[13]],16]]]],[[[4,[11]],[10,[78]],49],[[17,[15,16]]]],[[[4,[13]],[10,[78]],49],[[17,[15,16]]]],[[[4,[94]],[10,[78]],49],[[17,[15,16]]]],[[[4,[11]],49,25],[[17,[[4,[11]],16]]]],[[[4,[6]],49,25],[[17,[[4,[6]],16]]]],[[[4,[13]],49,25],[[17,[[4,[13]],16]]]],[[[4,[5]],49,25],[[17,[[4,[5]],16]]]],[[[4,[3]]]],[[[4,[3]],35]],[[[4,[28]],72]],[[[4,[3]],77],[[4,[3]]]],[[[4,[11]],77],[[4,[11]]]],[[[4,[5]],77],[[4,[5]]]],[[[4,[6]],77],[[4,[6]]]],[[[4,[13]],77],[[4,[13]]]],[[[4,[19]],77],[[4,[19]]]],[[[4,[[21,[20]]]],77],[[4,[[21,[20]]]]]],[[[4,[11]],77,[22,[12]]],[[4,[11]]]],[[[4,[6]],77,[22,[[10,[9]]]]],[[4,[6]]]],[[[4,[5]],77,22],[[4,[5]]]],[[[4,[19]],77,[22,[15]]],[[4,[19]]]],[[[4,[13]],77,[22,[1]]],[[4,[13]]]],[[[4,[[21,[20]]]],77,[22,[[21,[20]]]]],[[4,[[21,[20]]]]]],[[[4,[3]],77,[22,[15]]],[[4,[3]]]],[[[4,[28]]]],[[[4,[28]],77,44],[[4,[28]]]],[[[4,[6]],1],[[4,[6]]]],[[[4,[32]],1],[[4,[32]]]],[[[4,[13]],1],[[4,[13]]]],[[[4,[11]],1],[[4,[11]]]],[[[4,[33]],1],[[4,[33]]]],[[[4,[31]],1],[[4,[31]]]],[[[4,[32]],29],[[4,[32]]]],[[[4,[31]],29],[[4,[31]]]],[[[4,[13]],29],[[4,[13]]]],[[[4,[11]],29],[[4,[11]]]],[[[4,[33]],29],[[4,[33]]]],[[[4,[6]],29],[[4,[6]]]],[[[4,[33]],9],[[22,[74]]]],[[[4,[31]],9],[[22,[55]]]],[[[4,[32]],9],[[22,[74]]]],[[[4,[33]],9],15],[[[4,[32]],9],15],[[[4,[31]],9],15],[[[4,[5]],12],[[4,[11]]]],[[[4,[11]],12],[[4,[11]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[7,8]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[7,8]]]],[[[4,[14]],15],[[17,[15,16]]]],[[[4,[13]]],[[22,[78]]]],[[[4,[5]]],22],[[[4,[3]]],15],[[[4,[13]]],15],[[[4,[5]]],15],[[[4,[6]]],15],[[[4,[11]]],15],[[[4,[19]]],15],[[[4,[28]],[22,[44]]],[[4,[28]]]],[[[4,[5]],[97,[95,96]]],[[17,[[4,[5]],16]]]],[[[4,[19]],[97,[95,96]]],[[17,[[4,[19]],16]]]],[[[4,[13]],[97,[95,96]]],[[17,[[4,[13]],16]]]],[[[4,[3]],[97,[95,96]]],[[17,[[4,[3]],16]]]],[[[4,[6]],[97,[95,96]]],[[17,[[4,[6]],16]]]],[[[4,[[21,[20]]]],[97,[95,96]]],[[17,[[4,[[21,[20]]]],16]]]],[[[4,[11]],[97,[95,96]]],[[17,[[4,[11]],16]]]],[[[4,[[21,[20]]]]]],[[[4,[13]]]],[[[4,[11]]]],[[[4,[6]]]],[[[4,[5]]]],[[[4,[3]]]],[[[4,[11]],[97,[95,96]]],[[4,[11]]]],[[[4,[3]],[97,[95,96]]],[[4,[3]]]],[[[4,[6]],[97,[95,96]]],[[4,[6]]]],[[[4,[5]],[97,[95,96]]],[[4,[5]]]],[[[4,[19]],[97,[95,96]]],[[4,[19]]]],[[[4,[13]],[97,[95,96]]],[[4,[13]]]],[[[4,[[21,[20]]]],[97,[95,96]]],[[4,[[21,[20]]]]]],0,[[[4,[5]],44],[[4,[5]]]],[[[4,[11]],44],[[17,[15,16]]]],[[[4,[5]]],[[17,[[101,[98,[100,[[99,[44]]]]]],16]]]],[[[4,[3]]],[[17,[[101,[102,[100,[[99,[44]]]]]],16]]]],[[[4,[33]]],[[104,[103]]]],[[[4,[32]]],[[104,[103]]]],[[[4,[3]]],[[104,[103]]]],[[[4,[11]]],[[104,[103]]]],[[[4,[13]]],[[104,[103]]]],[[[4,[31]]],[[104,[103]]]],[[]],[[[4,[19]],35]],[[[4,[3]],35]],[[[4,[6]]],[[4,[11]]]],[[[4,[5]]],[[42,[22,38]]]],[[[4,[5]]],[[105,[[42,[38]],[42,[22,38]]]]]],[[[4,[3]],[0,[25,26]]],[[17,[[4,[3]],16]]]],[[[4,[6]],[0,[25,26]]],[[17,[[4,[6]],16]]]],[[[4,[11]],[0,[25,26]]],[[17,[[4,[11]],16]]]],[[[4,[5]],[0,[25,26]]],[[17,[[4,[5]],16]]]],[[[4,[13]],[0,[25,26]]],[[17,[[4,[13]],16]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[17,[[4,[[21,[20]]]],16]]]],[[[4,[3]],27],[[17,[[4,[3]],16]]]],[[[4,[19]],27],[[17,[[4,[3]],16]]]],[[],17],[[],17],[[],106],[[[4,[32]]],[[17,[[4,[32]],16]]]],[[[4,[13]]],[[17,[[4,[13]],16]]]],[[[4,[11]]],[[17,[[4,[11]],16]]]],[[[4,[31]]],[[17,[[4,[31]],16]]]],[[[4,[6]]],[[17,[[4,[6]],16]]]],[[[4,[[21,[20]]]]],[[17,[[4,[[21,[20]]]],16]]]],[[[4,[33]]],[[17,[[4,[33]],16]]]],[[[4,[28]],15],[[17,[[4,[28]],16]]]],[[[4,[28]]]],0,[[[4,[31]],9],[[22,[55]]]],[[[4,[32]],9],[[22,[74]]]],[[[4,[33]],9],[[22,[74]]]],[[[4,[32]],9],15],[[[4,[33]],9],15],[[[4,[31]],9],15],[[[4,[11]],107,[42,[56,38]]]],[[[4,[57]],107,[42,[56,38]]]],[[[4,[75]],107,[42,[56,38]]]],[[[4,[31]],107,[42,[56,38]]]],[[[4,[85]],107,[42,[56,38]]]],[[[4,[80]],107,[42,[56,38]]]],[[[4,[[21,[20]]]],107,[42,[56,38]]]],[[[4,[82]],107,[42,[56,38]]]],[[[4,[30]],107,[42,[56,38]]]],[[[4,[13]],107,[42,[56,38]]]],[[[4,[87]],107,[42,[56,38]]]],[[[4,[60]],107,[42,[56,38]]]],[[[4,[6]],107,[42,[56,38]]]],[[[4,[33]],107,[42,[56,38]]]],[[[4,[33]],107,[10,[56]]]],[[[4,[60]],107,[10,[56]]]],[[[4,[57]],107,[10,[56]]]],[[[4,[30]],107,[10,[56]]]],[[[4,[82]],107,[10,[56]]]],[[[4,[87]],107,[10,[56]]]],[[[4,[75]],107,[10,[56]]]],[[[4,[31]],107,[10,[56]]]],[[[4,[13]],107,[10,[56]]]],[[[4,[[21,[20]]]],107,[10,[56]]]],[[[4,[80]],107,[10,[56]]]],[[[4,[6]],107,[10,[56]]]],[[[4,[85]],107,[10,[56]]]],[[[4,[11]],107,[10,[56]]]],[[]],[[[4,[19]]],44],[[[4,[28]],[42,[[39,[37,38]],38]]],[[4,[28]]]],[[[4,[3]],[4,[13]],[4,[3]]],[[17,[[4,[3]],16]]]],[[[4,[11]],[4,[13]],[4,[11]]],[[17,[[4,[11]],16]]]],[[[4,[6]],[4,[13]],[4,[6]]],[[17,[[4,[6]],16]]]],[[[4,[5]],[4,[13]],[4,[5]]],[[17,[[4,[5]],16]]]],[[[4,[13]],[4,[13]],[4,[13]]],[[17,[[4,[13]],16]]]],[[[4,[19]],[4,[13]],[4,[19]]],[[17,[[4,[19]],16]]]],[[[4,[[21,[20]]]],[4,[13]],[4,[[21,[20]]]]],[[17,[[4,[[21,[20]]]],16]]]],0,[[47,47],47],[[47,47],47],[47,47],[[47,47],47],[[47,47],47],[47,47],[[47,47],47],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[108,37]],[108],[109],[[]],[[]],[110],[108],[109],[111],[[108,[22,[37]]]],[[108,[22,[15]]],[[17,[16]]]],[[[22,[15]]],[[17,[16]]]],[22],[15,[[17,[16]]]],[[108,15],[[17,[16]]]],[[109,15],[[17,[16]]]],[[]],[[110,[83,[[10,[9]]]]]],[[111,[83,[12]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[],108],[[],109],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],1],[[],92],[[],4],[110,[[4,[6]]]],[108,[[4,[3]]]],[109,[[4,[3]]]],[[],[[4,[3]]]],[111,[[4,[11]]]],0,[[]],[[]],[[]],[[]],[[12,23]],[[12,23]],[[12,10]],[[12,[10,[22]]]],[[35,44,44,12],[[17,[[39,[112,38]],16]]]],[[],44],[[],44],[[],44],[[],44],[[],[[39,[37,38]]]],[[]],[[]],[[]],[[]],0,[[12,44],110],[[12,44,[22,[35]]],108],[[12,44,[22,[35]]],109],[[12,44],111],[[]],[110],[111],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,[[]],[[[22,[15]]],[[17,[16]]]],[15,[[17,[16]]]],0,[[],1],[[],92],[[],[[4,[3]]]],[[35,44,44,12],[[17,[[39,[112,38]],16]]]],[[],[[39,[37,38]]]],0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[48,115],[[[116,[77]]],117],[[[118,[77]]],119],[[[120,[77]],35],121],[[122,35],123],[115,22],[117,22],[119,22],[121,22],[123,22],[124,22],[[[125,[23]]],22],[115,22],[117,22],[119,22],[121,22],[123,22],[[[125,[43]]],22],0,[115],[117],[119],[121],[123],[[[125,[23]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[56,56],[[],15],[15],[15,[[17,[15,16]]]],[[126,[0,[23,52]]]],[[[127,[5]],[0,[23,52]]]],[[[127,[5]],[0,[23,52]]]],[[]],[[]],[128],[129],[130],[126],[[[127,[5]]]],[131],[[[132,[5]]]],[133],[[[22,[15]]],[[17,[16]]]],[[[127,[5]],[22,[10]]]],[[128,[22,[[51,[[10,[9]]]]]]]],[22],[[133,[22,[[51,[12]]]]]],[15,[[17,[16]]]],[[129,15],[[17,[16]]]],[[130,15],[[17,[16]]]],[[126,15],[[17,[16]]]],[[[127,[5]],15],[[17,[16]]]],[[[127,[5]],10]],[[129,[0,[23,52]]]],[[130,[0,[23,52]]]],[[]],[[128,[51,[[10,[9]]]]]],[[131,1]],[[[132,[5]]]],[[133,[51,[12]]]],[[129,23]],[[130,23]],[[[0,[25,26]]]],[[[0,[25,26]]],[[4,[5]]]],[25],[25,[[4,[28]]]],[[[0,[25,26]]]],[[25,10]],[[[0,[25,26]]]],[[[0,[25,26]]]],[29,[[4,[30]]]],[29,[[4,[30]]]],[34,[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],134],[[],134],[[[135,[20]]],134],[[],134],[[[135,[20]]],134],[[[104,[136]]],137],[[[104,[138]]]],[[[104,[139]]],84],[[[104,[138]]],138],[[],35],[[],[[17,[44,16]]]],[[],[[10,[9]]]],[[[104,[[10,[140]]]]],[[104,[10]]]],[[[104,[140]]],104],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[104,[138]]],138],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[39,[95,38]]]],[[],[[39,[96,38]]]],[95,[[39,[95,38]]]],[96,[[39,[96,38]]]],[[[0,[25,26]]],[[4,[5]]]],0,0,0,0,[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],0,[[[104,[[0,[141,138]]]]],[[22,[141]]]],0,[44,[[17,[16]]]],[44,[[17,[16]]]],[[95,44],[[17,[16]]]],[[96,44],[[17,[16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[8,[[17,[15,16]]]],[[],[[41,[[40,[[39,[37,38]]]]]]]],[[],[[42,[[39,[37,38]],38]]]],[91,91],[142,142],[143,143],[[[104,[138]]],[[104,[138]]]],[93,93],[144,144],[145,145],[29,29],[34,34],[146,146],[131,131],[[[132,[[0,[147,5]]]]],[[132,[[0,[147,5]]]]]],[133,133],[148,148],[[[135,[[0,[147,20]]]]],[[135,[[0,[147,20]]]]]],[149,149],[150,150],[151,151],[152,152],[153,153],[[],[[104,[154]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[[104,[[0,[155,138]]]],[104,[[0,[155,138]]]]],156],[[],156],[[151,12],1],[1,4],[1,4],[1,4],[1,4],[[[135,[20]]],157],[152,157],0,0,[158,77],[158,77],[158,77],0,[[]],[[],91],[[],[[104,[159]]]],[[],93],[[],145],[[],29],[[],148],[[],149],[[],150],[[],151],[[],153],0,[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[104,[138]]],138],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,0,0,[[[104,[[0,[141,138]]]]],12],0,[15],[15,[[17,[15,16]]]],[[[104,[134]]],[[17,[[104,[[0,[134,67,68]]]],[104,[134]]]]]],[[[104,[134]]],[[104,[[0,[134,67,68]]]]]],[[[104,[138]]],[[160,[138]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[104,[138]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],15],[[],35],[[],35],0,[[],[[162,[161]]]],[[],[[162,[161]]]],[[91,91],1],[[[104,[163]],163],1],[[[104,[37]],37],1],[[[104,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,138]]]],138]]]],138]]]],138]]]]],1],[[29,29],1],[[148,148],1],[[149,149],1],[[150,150],1],[[151,151],1],[[152,152],1],[[153,153],1],[[]],[[]],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],[[17,[15,16]]]],[[],[[17,[16]]]],[129,1],[130,1],[126,1],[[[127,[5]]],1],[[],1],[129,92],[130,92],[126,92],[[[127,[5]]],92],[[],92],[[],[[83,[92]]]],0,[138,[[17,[138,16]]]],[[138,[4,[13]]],[[17,[4,16]]]],[[[4,[13]]],[[17,[15,16]]]],[[153,25],153],[[],4],[128,[[4,[6]]]],[[],[[4,[3]]]],[131,[[4,[13]]]],[[[132,[5]]],[[4,[5]]]],[133,[[4,[11]]]],0,[[91,45],[[17,[46]]]],[[142,45],[[17,[46]]]],[[143,45],[[17,[46]]]],[[[104,[138]],45],[[17,[46]]]],[[[104,[[0,[165,138]]]],45],[[17,[46]]]],[[[104,[[0,[166,138]]]],45],[[17,[46]]]],[[29,45],[[17,[46]]]],[[146,45],[[17,[46]]]],[[148,45],[[17,[46]]]],[[[135,[[0,[165,20]]]],45],[[17,[46]]]],[[149,45],[[17,[46]]]],[[150,45],[[17,[46]]]],[[151,45],[[17,[46]]]],[[152,45],[[17,[46]]]],[[153,45],[[17,[46]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[95,[[97,[95,[167,[[22,[44]]]]]]]],[[[4,[30]]],[[97,[[167,[44]],[167,[[22,[44]]]]]]]],[[[10,[78]]],[[97,[[41,[[40,[78]]]],[167,[[22,[44]]]]]]]],[168],[[[42,[78,38]]],[[97,[[41,[[40,[78]]]],[167,[[22,[44]]]]]]]],[96,[[97,[[167,[44]],96]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[],104],[169,[[104,[169]]]],[168],[170,[[104,[170]]]],[[[42,[38]]],[[104,[10]]]],[171,[[104,[171]]]],[172,[[104,[170]]]],[[[104,[12]]],[[104,[[10,[9]]]]]],[173,[[104,[171]]]],[174,[[104,[169]]]],[[[39,[138,38]]],[[104,[138]]]],[[[83,[[0,[175,138]]]]],[[104,[[0,[175,138]]]]]],[12,[[104,[12]]]],[[[10,[147]]],[[104,[[10,[147]]]]]],[62,[[104,[12]]]],[[]],[176,93],[177,93],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[178,151],[[]],[[]],[[[42,[152,38]]],153],[[]],[[[22,[88]]]],[[[179,[77]],[179,[9]],[22,[88]]]],[[[179,[77]],[179,[9]],[22,[88]]]],[49,[[104,[10]]]],[49,151],[[49,44],[[120,[77]]]],[49,[[120,[77]]]],[[12,23]],[[49,157],[[120,[77]]]],[[49,44],[[120,[77]]]],[[12,23]],[[],[[104,[138]]]],[[12,10]],[[12,[10,[22]]]],[12],[[12,44],138],[[12,44],138],[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],1],[44,22],[44,22],[44,22],[44,[[17,[53,16]]]],[[[182,[181,181,181]],44],22],[[[183,[181,181]],44],22],[[184,44],22],[[185,44],22],[[186,44],22],[[187,44],22],[[[189,[188]],44],22],[[[190,[26]],44],22],[[[191,[188]],44],22],[[192,44],22],[[193,44],22],[[194,44],22],[[195,44],22],[[[196,[20]],44],22],[[[197,[20]],44],22],[[151,12],[[22,[35]]]],[44,[[17,[53,16]]]],[44,[[17,[53,16]]]],[44,53],[44,53],[[151,44],22],[[151,44],22],[[],35],[[151,12],[[22,[92]]]],[[151,12],22],[107,56],[[[104,[138]]],[[22,[138]]]],[[[104,[138]]],138],[[],[[42,[12,38]]]],[151,[[42,[12,38]]]],[153,[[42,[12,38]]]],[44,[[22,[54]]]],[44,22],[44,53],[[[182,[181,181,181]],44],22],[[[183,[181,181]],44],22],[[184,44],22],[[185,44],22],[[186,44],22],[[187,44],22],[[[189,[188]],44],22],[[[190,[26]],44],22],[[[191,[188]],44],22],[[192,44],22],[[193,44],22],[[194,44],22],[[195,44],22],[[[196,[20]],44],22],[[[197,[20]],44],22],[[138,44],22],[[138,44],22],[44,53],[[],44],[[1,1],[[17,[18,16]]]],[[]],[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],1],[[]],[[],1],[[],1],[[[104,[[0,[198,138]]]],199]],[[29,199]],[[148,199]],[[152,199]],0,0,[[]],[12,[[22,[44]]]],[[151,12],[[22,[44]]]],[[153,12],[[22,[44]]]],[[[10,[78]]],23],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[129,[[39,[37,38]]]],[130,[[39,[37,38]]]],[126,[[39,[37,38]]]],[[[127,[5]]],[[39,[37,38]]]],[[],[[39,[37,38]]]],[[151,44,[114,[113]],35],[[17,[[22,[35]],16]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[104,22],[[[135,[20]]]],[151],[[[104,[138]]]],[138,15],[[[104,[154]]],15],[[],[[42,[38]]]],[[],1],[151,1],[[],[[17,[[4,[13]],16]]]],[[],1],[15,[[17,[[4,[13]],16]]]],[15,[[17,[[4,[13]],16]]]],[[],[[17,[[4,[13]],16]]]],[138,1],[[],[[4,[13]]]],[[],[[4,[13]]]],[[[135,[20]],44],1],[44,1],0,[[],1],[[],72],[[],1],[[[135,[20]],44],1],[44,1],[151,23],[151,[[0,[23,69]]]],[151,[[0,[23,69]]]],[151,[[0,[23,69]]]],[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],1],0,[[],44],[[[135,[20]]],44],[151,44],[44,15],0,[[]],[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],1],[[]],0,[[[104,[147]]],147],[[],22],[[],15],[[],15],[[],[[22,[74]]]],[[],[[22,[74]]]],[[],22],[[],[[22,[74]]]],[[],15],[[],15],[[151,151]],[[35,35],[[17,[35,16]]]],0,0,0,[[],22],[[],15],[[],15],0,[[],[[17,[4,16]]]],[[],[[17,[15,16]]]],[15],[15,[[17,[15,16]]]],0,0,[[],44],[[],[[17,[44,16]]]],[[],[[17,[44,16]]]],[[],12],0,0,[[[104,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,138]]]],138]]]],138]]]],138]]]]],1],[44,[[22,[44]]]],[[]],[12],[[12,44,44],128],[[12,44,44],129],[[12,44,44],130],[[12,44,44],126],[[12,44,44,35],[[127,[5]]]],[[],104],[[12,44],131],[[12,44],[[132,[5]]]],[[12,44,44],133],[[],151],[[[200,[62]],157,1],152],[201,104],[[44,44],4],[[44,44],15],[[151,44,[114,[113]],35],[[17,[151,16]]]],[[],[[104,[140]]]],[44,[[104,[[10,[140]]]]]],[[],[[104,[140]]]],[44,[[104,[[10,[140]]]]]],[[]],[[]],0,[[],44],[[[135,[20]]],44],0,0,[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],[[22,[156]]]],[[],[[4,[13]]]],[[],[[4,[13]]]],[[],[[4,[13]]]],[[],[[4,[13]]]],[[],[[202,[104]]]],0,0,0,0,0,[[],15],[[[104,[[0,[141,138]]]],203]],[203],[[[104,[138]],[104,[138]]],1],[[74,91],[[17,[22,16]]]],[[74,91],[[17,[15,16]]]],[[74,91],[[17,[15,16]]]],[[],15],0,[15],[15,[[17,[15,16]]]],[[151,12],[[22,[35]]]],[12],[[151,12,[114,[113]]],[[22,[[114,[113]]]]]],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[]],[[],15],0,[[138,25,93],[[17,[15,16]]]],[[25,93],[[17,[15,16]]]],[[138,[4,[13]],22],[[17,[138,16]]]],[[138,49,22],[[17,[138,16]]]],[[138,49,25],[[17,[138,16]]]],[[44,1]],[[151,12,35],[[22,[35]]]],[[151,44,35],[[22,[35]]]],[77,4],[77,15],[77,4],[[151,12],[[22,[35]]]],[[151,44],22],[[]],[[]],[131],[[[132,[5]]]],0,[[77,44],15],[[[135,[20]],44,44]],0,[[138,44,44],138],[[44,44]],[[138,44,44],138],[[44,44]],[[[135,[20]],44,44]],[1,4],[29,4],[29,15],[[[104,[[0,[141,138]]]]],[[22,[141]]]],[[[104,[[0,[204,138]]]],205],[[17,[206]]]],[[[104,[[0,[207,138]]]],208],[[17,[206]]]],[[[104,[[0,[207,138]]]]],[[17,[206]]]],[[[104,[[0,[204,138]]]]],[[17,[206]]]],[9,22],[9,15],[9,15],[12,[[4,[11]]]],[12,[[4,[11]]]],0,0,0,[[[104,[138]]],44],[15],[15,[[17,[15,16]]]],0,[[],22],[[],15],[[138,[97,[95,96]]],[[17,[138,16]]]],[[[4,[30]]],[[17,[15,16]]]],[95,[[17,[15,16]]]],[95,15],[96,[[17,[15,16]]]],[96,15],[[]],[[138,[97,[95,96]]],138],[[[4,[30]]],[[17,[15,16]]]],[44,15],[151,153],[[],[[39,[54,38]]]],[[[135,[20]]],[[39,[37,38]]]],[[],[[42,[[10,[9]],38]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[151,151],[[17,[1,16]]]],0,0,[[138,[0,[25,26]]],[[17,[138,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[[104,[10]]],[[17,[[104,[99]]]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[151,12],[[17,[35,16]]]],[[151,44],[[17,[16]]]],[[151,12],[[17,[92,16]]]],[[151,12],[[17,[16]]]],[[151,12],[[17,[35,16]]]],[12,[[17,[44,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],[[17,[104,209]]]],[[],[[17,[[104,[140]],209]]]],[[],[[17,[[104,[140]],209]]]],[[],[[17,[[202,[104]],209]]]],[104,[[17,[104]]]],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],12],[[],12],[[],[[17,[4,16]]]],[[],[[17,[15,16]]]],[[[104,[[210,[67]]]]],[[17,[67]]]],[[[104,[147]]],147],0,0,[[[135,[20]]],[[22,[88]]]],[[[135,[20]],44],20],0,[[[135,[20]],44],20],0,[[[135,[20]]],[[104,[[42,[20,38]]]]]],[9,22],[9,15],[9,15],0,[[107,[42,[56,38]]]],[[107,[10,[56]]]],[[[104,[[210,[67]]]],201],17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[104,[138]]],44],0,0,[44],[44,151],[[151,[114,[113]],35],[[22,[35]]]],[[152,[211,[62,62,38]]],152],[[153,[211,[62,62,38]]],153],[[[135,[20]],[22,[88]]],[[39,[37,38]]]],[[[4,[13]],4],[[17,[4,16]]]],0,0,0,[[[212,[20]]]],[[[212,[20]]]],[[[212,[20]],[22,[20]]]],[[[212,[20]],20]],[[[212,[20]],134]],[[[212,[20]],134],[[17,[16]]]],[[]],[[]],[[],[[212,[20]]]],[44],[44],[44],[[[212,[20]]],[[4,[[21,[20]]]]]],[[]],[[],44],[[]],[[12,44],[[212,[20]]]],[[[212,[20]]],15],[[],17],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[[]],[[]],[[]],[[]],[213,213],[[]],[[],213],[44],[44],[44],[44],[44],[44],[[213,213],1],[[213,45],[[17,[46]]]],[[]],[[]],[12,[[17,[214]]]],[[12,49],[[17,[213,16]]]],[[],44],[[],44],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],35],[35,[[17,[15,16]]]],[[],35],0,[44,[[17,[53,16]]]],[44,53],[[],35],[44,53],[[35,35],[[17,[35,16]]]],0,[[]],[44],0,0,0,[[[22,[88]]]],[[[179,[77]],[179,[9]],[22,[88]]]],[[[179,[77]],[179,[9]],[22,[88]]]],0,[[]],[[]],[[],215],[44],[44],[44],[[215,[22,[157]]],[[17,[122,16]]]],[[]],[[],44],[[]],[215,1],[[44,44],215],[[215,[39,[37,38]]]],[215],[[],17],[[],17],[[],106],[[]],0,0,[[]],[[]],[[37,157],[[39,[37,38]]]],[44],[44],[44],[[216,[22,[157]]],[[17,[[120,[77]],217]]]],[[]],[[],44],[[]],[216,1],[44,216],[216,[[10,[77]]]],[[216,37]],[216],[[216,[10,[[39,[37,38]]]]]],[216],[[216,[22,[37]]]],[216,[[218,[77]]]],[[],17],[[],17],[[],106],[[]],0,[219,134],[219,[[39,[37,38]]]],[219,134],[[]],[[]],[219,157],[[],219],[44],[44],[44],[[219,45],[[17,[46]]]],[[]],[[],44],[[]],[219,44],[219],[[219,44]],[219],[[],17],[[],17],[[],106],[219,[[22,[220]]]],[[]],0,0,0,[[]],[134],[[12,44],[[39,[221,38]]]],[[],[[104,[25]]]],[[],1],[[[39,[25,38]],[104,[25]]]],[[],15],0,[[138,44,44],138],[[138,44,44],138],0,[1],[[]],[[],1],[201],0,0,[[23,44,44],[[116,[77]]]],[[23,44,44],[[118,[77]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[0,[25,26]]]],[[[0,[25,26]]],[[4,[5]]]],[25],[25,[[4,[28]]]],[[[0,[25,26]]]],[[25,10]],[[[0,[25,26]]]],[[[0,[25,26]]]],[29,[[4,[30]]]],[34,[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[39,[95,38]]]],[[],[[39,[96,38]]]],[[[0,[25,26]]],[[4,[5]]]],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[44,[[17,[16]]]],[44,[[17,[16]]]],[1,4],[1,4],[1,4],[1,4],0,0,[[]],[[]],[[],[[17,[15,16]]]],[[],[[17,[16]]]],[138,[[17,[138,16]]]],[[138,[4,[13]]],[[17,[4,16]]]],0,[[12,44],138],[[12,44],138],[44,22],[44,22],[44,[[17,[53,16]]]],[44,53],[[138,44],22],[[138,44],22],[[]],[[]],[[],[[17,[[4,[13]],16]]]],[15,[[17,[[4,[13]],16]]]],[[],[[17,[[4,[13]],16]]]],[[]],[[]],0,[[],22],[[],[[22,[74]]]],[[],22],[[],22],[[],[[17,[4,16]]]],0,0,[[],[[17,[44,16]]]],[[44,44],4],[[]],[[]],0,0,[[],[[4,[13]]]],[[],[[4,[13]]]],[[74,91],[[17,[22,16]]]],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[]],[[138,25,93],[[17,[15,16]]]],[[138,[4,[13]],22],[[17,[138,16]]]],[[138,49,22],[[17,[138,16]]]],[[138,49,25],[[17,[138,16]]]],[77,4],[77,4],0,[1,4],[29,4],[9,22],[12,[[4,[11]]]],[[],22],[[138,[97,[95,96]]],[[17,[138,16]]]],[[]],[[138,[97,[95,96]]],138],[[],[[42,[[10,[9]],38]]]],[[138,[0,[25,26]]],[[17,[138,16]]]],[[],[[17,[4,16]]]],[9,22],0,[[[4,[13]],4],[[17,[4,16]]]],[[44,[42,[1,38]]]],0,[[10,1,1]],[[[10,[[0,[222,[180,[[0,[222,[180,[[0,[222,[180,[[0,[222,180]]]]]]]]]]]]]]]]]],[[[10,[[0,[222,[180,[[0,[222,[180,[[0,[222,[180,[[0,[222,180]]]]]]]]]]]]]]]]]],[[[10,[15]],[10,[1]],1],[[17,[223,16]]]],[[12,[10,[15]],[10,[1]],1],[[17,[[4,[6]],16]]]],[15,[[17,[[39,[37,38]],16]]]],0,[158,77],[158,77],[158,77],[224,77],[[],158],[158,77],[158,77],[158,77],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[53,23],[[53,[42,[53,38]]]],[[[59,[65,64]],[59,[65,64]]]],[[53,53],53],[[[4,[11]],15],[[17,[15,16]]]],[[[4,[6]],15],[[17,[15,16]]]],[[[4,[13]],15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[225,18],15],[[226,226],[[17,[16]]]],[227],[[227,12]],[[226,29],[[4,[30]]]],[53,53],[[[59,[58,57]]],[[0,[23,52]]]],[[[59,[63,60]]],[[0,[23,52]]]],[[],35],[[[59,[70,60]]],[[0,[23,52]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[35,[[17,[15,16]]]],[[[59,[63,60]],35],[[17,[15,16]]]],[[[59,[58,57]],35],[[17,[15,16]]]],[[[59,[65,64]],35],[[17,[15,16]]]],[[[59,[70,60]],35],[[17,[15,16]]]],[[[59,[66,60]],35],[[17,[15,16]]]],[[226,35],[[17,[15,16]]]],[[225,35],[[17,[15,16]]]],[[53,35],[[17,[53,16]]]],[[[59,[66,60]],61],[[59,[66,60]]]],[[[59,[63,60]],61],[[59,[63,60]]]],0,[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[[4,[31]],15],[[17,[15,16]]]],[[[4,[33]],15],[[17,[15,16]]]],[[[59,[28,28]]],[[59,[28,28]]]],[228,228],[229,229],[226,226],[225,225],[230,230],[53,53],[35,35],[92,92],[61,61],[85,85],[87,87],[30,30],[75,75],[82,82],[80,80],[57,57],[60,60],[31,31],[33,33],[58,58],[65,65],[63,63],[66,66],[231,231],[70,70],[157,157],[232,232],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[92,35]],[[[59,[63,60]],62],[[17,[[59,[63,60]],16]]]],[92,35],[[[59,[66,60]]],[[4,[60]]]],[[],228],[[],53],[[],35],[44],[44],[44],[[[59,[28,28]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[59,[28,28]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[59,[65,64]],[59,[65,64]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[227,49]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[225],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],35],[[[59,[63,60]]],35],[[[59,[66,60]]],35],[[[59,[70,60]]],35],[[[59,[58,57]]],35],[[[59,[65,64]]],35],[226,35],[225,35],[53,35],0,[[229,229],1],[[53,53],1],[[35,157],1],[[35,35],1],[[92,92],1],[[61,61],1],[[157,157],1],[[232,232],1],[[225,225],[[4,[13]]]],[[225,225],[[4,[13]]]],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[227,12],1],[[[59,[28,28]]],92],[[225,12],[[17,[15,16]]]],[225,[[10,[15]]]],[225,[[42,[15,38]]]],[[228,12],[[22,[78]]]],[227,226],[[228,45],[[17,[46]]]],[[230,45],[[17,[46]]]],[[53,45],[[17,[46]]]],[[53,45],[[17,[46]]]],[[35,45],[[17,[46]]]],[[35,45],[[17,[46]]]],[[92,45],[[17,[46]]]],[[61,45],[[17,[46]]]],[[61,45],[[17,[46]]]],[[157,45],[[17,[46]]]],[[232,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[[4,[60]]],[[59,[70,60]]]],[[[4,[57]]],[[59,[58,57]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[188,53],[[[22,[[200,[53]]]]],53],[53,35],[53,35],[157,35],[[]],[53,92],[152,92],[[]],[[]],[232,61],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[233,157],[234,157],[[]],[[[4,[30]],[104,[228]]],226],[[12,49,61],[[59,[66,60]]]],[[12,49,61],[[59,[66,60]]]],[[[4,[30]]],226],[[12,49],[[59,[58,57]]]],[[12,49],[[59,[58,57]]]],[[12,49,61],[[59,[63,60]]]],[[12,49,61],[[59,[63,60]]]],[[12,49],[[59,[70,60]]]],[[12,49],[[59,[70,60]]]],[[[114,[113]],35],92],[[12,44],226],[[12,44],225],[[228,78],12],[[[59,[58,57]],44],[[17,[53,16]]]],[[[59,[65,64]],44],[[17,[53,16]]]],[[[59,[63,60]],44],[[17,[53,16]]]],[[[59,[66,60]],44],[[17,[53,16]]]],[[[59,[70,60]],44],[[17,[53,16]]]],[44,[[17,[53,16]]]],[[226,44],[[17,[53,16]]]],[[225,44],[[17,[53,16]]]],[[[59,[70,60]],44],53],[[[59,[65,64]],44],53],[[[59,[63,60]],44],53],[[[59,[58,57]],44],53],[[[59,[66,60]],44],53],[44,53],[[226,44],53],[[225,44],53],[228,[[116,[77]]]],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[228,78],[[22,[12]]]],[226,[[104,[228]]]],[53,[[22,[12]]]],[44,53],[[225,225],[[4,[13]]]],[[225,225],[[4,[13]]]],[[229,199]],[[53,199]],[[35,199]],[[61,199]],[[157,199]],[[232,199]],[[[59,[70,60]]],[[4,[30]]]],[[[59,[66,60]]],[[4,[60]]]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[35,[[22,[35]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[225],[[[59,[65,64]]],15],[[[59,[70,60]]],15],[[[59,[58,57]]],15],[[[59,[63,60]]],15],[[[59,[66,60]]],15],[226,15],[225,15],[53,[[17,[53,16]]]],[226,1],[225,1],[35,1],[228,1],[[225,15],[[17,[[4,[13]],16]]]],[35,1],[228,1],[35,1],[53,1],[35,1],[35,1],[35,1],[53,1],[35,1],[35,1],[53,1],[35,1],[226,235],[228,44],[226,44],[225,44],[226,[[4,[30]]]],[[225,225],[[4,[13]]]],[[225,225],[[4,[13]]]],[[35,35],[[17,[35,16]]]],[[[59,[66,60]]],[[4,[60]]]],[[[59,[66,60]]],[[4,[60]]]],[[[59,[70,60]]],[[4,[30]]]],[[[59,[66,60]]],[[4,[60]]]],[[[59,[58,57]],[22,[236]]],[[17,[[59,[58,57]],16]]]],[[[59,[63,60]],[22,[236]]],[[17,[[59,[63,60]],16]]]],[[[59,[58,57]],[22,[236]]],[[17,[[59,[58,57]],16]]]],[[[59,[63,60]],[22,[236]]],[[17,[[59,[63,60]],16]]]],[[[59,[65,64]],[59,[65,64]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[226,[[17,[44,16]]]],[226,12],[225,[[114,[113]]]],[92,[[114,[113]]]],0,[[[59,[70,60]]],[[4,[30]]]],[[[59,[66,60]]],[[4,[60]]]],[[]],[[12,44],227],[[12,[51,[[10,[[22,[237]]]]]]],[[59,[58,57]]]],[[12,[51,[[10,[158]]]]],[[59,[63,60]]]],[[12,[51,[[10,[[22,[224]]]]]]],[[59,[70,60]]]],[[12,[51,[[10,[238]]]]],[[59,[66,60]]]],[[12,[51,[[10,[237]]]]],[[59,[58,57]]]],[[12,[51,[[10,[224]]]]],[[59,[70,60]]]],[[12,[51,[[10,[[22,[238]]]]]]],[[59,[66,60]]]],[[12,[51,[[10,[[22,[158]]]]]]],[[59,[63,60]]]],[[12,[10,[15]]],[[17,[225,16]]]],[[12,35],92],[235,22],[[225,225],[[4,[13]]]],[[225,225],[[4,[13]]]],[225,44],[[12,[10,[12]],12],[[59,[70,60]]]],[[12,[10,[12]],12],[[59,[58,57]]]],[[53,53],[[22,[156]]]],[[[59,[65,64]]],[[22,[44]]]],[225],[225,92],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[225,12]],[[[59,[63,60]],239,239,[22,[236]]],[[17,[[59,[63,60]],16]]]],[[[59,[58,57]],239,239,[22,[236]]],[[17,[[59,[58,57]],16]]]],[[228,228],1],[[[59,[65,64]]],44],[[[59,[70,60]]],[[4,[30]]]],[[[59,[66,60]]],[[4,[60]]]],[[226,1]],[[92,[114,[113]]]],[[[59,[66,60]],61]],[[[59,[63,60]],61]],[[[59,[63,60]],62],[[17,[16]]]],[235],[[226,1],226],[[226,29],226],[[[59,[58,57]],12],[[4,[11]]]],[[[59,[63,60]],12],[[17,[[4,[11]],16]]]],[[[59,[70,60]],12],[[4,[11]]]],[[[59,[65,64]],[59,[65,64]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[[59,[63,60]]],61],[[[59,[66,60]]],61],[[[59,[63,60]]],[[22,[62]]]],[35,157],[92,152],[61,232],[61,12],[157,157],[[[59,[70,60]]],[[104,[103]]]],[[[59,[66,60]]],[[104,[103]]]],[[[59,[58,57]]],[[104,[103]]]],[[[59,[63,60]]],[[104,[103]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[35,35],[157,240],[[[59,[63,60]],12],[[17,[[4,[11]],16]]]],[[[59,[70,60]],12],[[4,[11]]]],[[[59,[58,57]],12],[[4,[11]]]],[[],62],[[],62],[[],62],[[[59,[63,60]],241,[22,[236]]],[[17,[[59,[63,60]],16]]]],[[[59,[58,57]],241,[22,[236]]],[[17,[[59,[58,57]],16]]]],[53,[[17,[73,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[226,[[17,[226,16]]]],[225,242],[226,[[17,[242,16]]]],[[35,53],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[],243],[44],[44],[243],[44],[1],[[]],[[],243],[[],44],[[]],[[]],[[],17],[[],17],[[],106],[[],1],[[]],[201],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[244],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,[[244,45],[[17,[46]]]],[[244,45],[[17,[46]]]],[[16,45],[[17,[46]]]],[[16,45],[[17,[46]]]],[[217,45],[[17,[46]]]],[[217,45],[[17,[46]]]],[[]],[[[200,[[83,[12]]]]],244],[245,16],[246,16],[217,16],[[]],[247,217],[[]],[248,217],[249,217],[250,217],[246,217],[251,217],[252,217],[253,217],[[[0,[141,67,68]]],217],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[141,16],0,0,0,0,[203],[203],[[]],[16,[[22,[141]]]],[166,16],[[],62],[[],62],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[16,25],16],[[56,56],56],0,0,0,0,0,0,0,0,[2],[2],[2],[[[256,[[0,[254,198,147]],[0,[255,159]]]],[256,[[0,[254,198,147]],[0,[255,159]]]]],[[256,[[0,[254,198,147]],[0,[255,159]]]]]],[[[256,[[0,[254,198,147]],[0,[255,159]]]],[256,[[0,[254,198,147]],[0,[255,159]]]]],[[256,[[0,[254,198,147]],[0,[255,159]]]]]],[[[256,[[0,[254,198,147]],[0,[255,159]]]],[256,[[0,[254,198,147]],[0,[255,159]]]]],[[256,[[0,[254,198,147]],[0,[255,159]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[107,257],[257,257],[[[256,[147,147]]],[[256,[147,147]]]],[107,107],[[]],[[]],[[]],[[],257],[[],[[256,[107]]]],[[],107],[44],[256],[44],[44],[44],[256],[44],[44],[44],[44],[44],[[[256,[[0,[254,198]],255]],[256,[[0,[254,198]],255]]],1],[[],1],[[],1],[[],1],[[],1],[[[256,[[0,[254,198]],255]],49]],[[[256,[[0,[254,198,26]],255]],49]],[257,56],[[257,45],[[17,[46]]]],[[[256,[165,255]],45],[[17,[46]]]],[[107,45],[[17,[46]]]],[[]],[[[99,[[0,[254,198]]]]],[[256,[[0,[254,198]],107]]]],[[]],[[[258,[107]]],[[256,[107]]]],[[]],[49,[[256,[[0,[254,198]],107]]]],[[56,56,56,56],107],[[107,198],56],[[107,198],56],[[],44],[[],44],[[],44],[[]],[[[256,[107]]],[[258,[107]]]],[[]],[[]],[256],[256],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[[]],[[]],[[],[[256,[107]]]],[[],107],0,[[[256,[[0,[254,198,147]],[0,[255,159]]]],[256,[[0,[254,198,147]],[0,[255,159]]]]],[[256,[[0,[254,198,147]],[0,[255,159]]]]]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[44],[44],[44,[[256,[107]]]],[[44,255],[[256,[255]]]],[255,[[256,[255]]]],[44,107],[[56,56,56,56],107],[[257,[10,[9]]]],[[257,259]],[[257,86]],[[257,78]],[[257,56]],[[257,9]],[[257,44]],0,0,[[],44],[[[0,[260,67,68]]],[[17,[1]]]],0,0,0,0,[2],0,0,[[]],[[]],0,0,[[[261,[147,147,147]]],[[261,[147,147,147]]]],[[]],0,0,[[],[[261,[107]]]],[261],[44],[261],[44],[44],[[[261,[[0,[254,198]],[164,[[164,[[164,[164]]]]]],255]],[261,[[0,[254,198]],[164,[[164,[[164,[164]]]]]],255]]],1],[[],1],[[],1],[[],1],[[],1],0,[[[261,[[0,[254,198]],255]],49]],[[[261,[[0,[254,198,26]],26,255]],49]],0,[[[261,[165,165,255]],45],[[17,[46]]]],[[[262,[107]]],[[261,[107]]]],[99,[[261,[[0,[254,198]],107]]]],[[]],[49,[[261,[[0,[254,198]],107]]]],[[[261,[[263,[[0,[198,254,138]]]],[0,[198,254]],255]],[0,[198,254,138]]],22],[[[261,[[263,[[0,[198,254,138]]]],[0,[198,254]],255]],[0,[198,254,138]]],22],[[[261,[[263,[[0,[198,254,138]]]],[0,[198,254]],255]],[0,[198,254,138]]],22],[[[261,[[0,[254,198,[263,[[0,[254,198,138]]]]]],255]],[0,[254,198,138]]]],[[],44],[[[261,[[0,[198,254]],255]],[0,[198,254]]],22],[[[261,[107]]],[[262,[107]]]],[[]],[261],[261],[261],[[[261,[[0,[198,254]],255]]],[[264,[[0,[198,254]]]]]],[[[261,[[0,[198,254]],255]]],[[265,[[0,[198,254]]]]]],0,0,[[],[[261,[107]]]],0,[[[261,[[263,[[0,[198,254,138]]]],[0,[198,254]],255]],[0,[198,254,138]]],22],0,0,[[]],0,[[],17],[[],17],[[],106],0,0,[[]],[44,[[261,[107]]]],[[44,255],[[261,[255]]]],[255,[[261,[255]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]],[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]]],[[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]],[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]]]]],[[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]]]],[[],1],[[[269,[77,219]]]],[[[269,[77,219]],15],[[17,[16]]]],[[[271,[270]],201]],[[[47,[272]],201]],[[[273,[270]],201]],[[[116,[270]],201]],[[[274,[272]],25]],[[48,25]],[[[118,[270]]],[[104,[37]]]],[48,[[104,[37]]]],[[[276,[275]]],[[104,[37]]]],[277,[[104,[37]]]],[122,[[104,[37]]]],[[[120,[270]]],[[104,[37]]]],[278,[[104,[37]]]],[279,[[104,[37]]]],[[[47,[272]]],[[104,[37]]]],[280,[[104,[37]]]],[[[116,[270]]],[[104,[37]]]],[[],134],[[],134],[[[281,[270]]],134],[[[271,[270]]],134],[[[118,[270]]],134],[282,134],[48,134],[[[284,[275,283]]],134],[[[276,[275]]],134],[285,134],[277,134],[[[286,[283]]],134],[122,134],[[[269,[270,283]]],134],[[[120,[270]]],134],[278,134],[279,134],[287,134],[[[274,[272]]],134],[[[47,[272]]],134],[288,134],[280,134],[[[273,[270]]],134],[[[289,[270]]],134],[[[116,[270]]],134],[[],134],[[[118,[270]]],134],[48,134],[[[276,[275]]],134],[277,134],[122,134],[[[120,[270]]],134],[278,134],[279,134],[[[47,[272]]],134],[280,134],[[[116,[270]]],134],[[],[[104,[37]]]],[[[281,[270]]],[[104,[37]]]],[[[271,[270]]],[[104,[37]]]],[282,[[104,[37]]]],[[[284,[275,283]]],[[104,[37]]]],[285,[[104,[37]]]],[[[286,[283]]],[[104,[37]]]],[[[269,[270,283]]],[[104,[37]]]],[[[274,[272]]],[[104,[37]]]],[288,[[104,[37]]]],[[[273,[270]]],[[104,[37]]]],[[[289,[270]]],[[104,[37]]]],[[],[[39,[37,38]]]],[[[281,[270]]],[[39,[37,38]]]],[[[271,[270]]],[[39,[37,38]]]],[282,[[39,[37,38]]]],[[[284,[275,283]]],[[39,[37,38]]]],[285,[[39,[37,38]]]],[[[286,[283]]],[[39,[37,38]]]],[[[269,[270,283]]],[[39,[37,38]]]],[287,[[39,[37,38]]]],[[[274,[272]]],[[39,[37,38]]]],[288,[[39,[37,38]]]],[[[273,[270]]],[[39,[37,38]]]],[[[289,[270]]],[[39,[37,38]]]],[[],134],[[[281,[270]]],134],[[[271,[270]]],134],[282,134],[[[284,[275,283]]],134],[285,134],[[[286,[283]]],134],[[[269,[270,283]]],134],[287,134],[[[274,[272]]],134],[288,134],[[[273,[270]]],134],[[[289,[270]]],134],[37,37],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[118,[270]]],[[39,[37,38]]]],[48,[[39,[37,38]]]],[[[276,[275]]],[[39,[37,38]]]],[277,[[39,[37,38]]]],[122,[[39,[37,38]]]],[[[120,[270]]],[[39,[37,38]]]],[278,[[39,[37,38]]]],[279,[[39,[37,38]]]],[[[47,[272]]],[[39,[37,38]]]],[280,[[39,[37,38]]]],[[[116,[270]]],[[39,[37,38]]]],[[],[[39,[96,38]]]],[[],[[39,[95,38]]]],[[[281,[270]]],44],[285,44],[[[274,[272]]],44],[[[273,[270]]],44],[[[289,[270]]],44],[44,[[17,[16]]]],[44,[[17,[16]]]],[[[47,[[0,[266,290]]]],[47,[[0,[266,290]]]]],[[47,[[0,[266,290]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,290]]]],[0,[266,290]]],[[47,[[0,[266,290]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,291]]]],[47,[[0,[266,291]]]]],[[47,[[0,[266,291]]]]]],[[[47,[[0,[266,291]]]],[0,[266,291]]],[[47,[[0,[266,291]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,292]]]],[0,[266,292]]],[[47,[[0,[266,292]]]]]],[[[47,[[0,[266,292]]]],[47,[[0,[266,292]]]]],[[47,[[0,[266,292]]]]]],[[[47,[[0,[266,293]]]],[0,[266,293]]],[[47,[[0,[266,293]]]]]],[[[47,[[0,[266,293]]]],[47,[[0,[266,293]]]]],[[47,[[0,[266,293]]]]]],[[[47,[[0,[266,294]]]],[47,[[0,[266,294]]]]],[[47,[[0,[266,294]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,294]]]],[0,[266,294]]],[[47,[[0,[266,294]]]]]],[37,[[39,[37,38]]]],[[[281,[[0,[147,270]]]]],[[281,[[0,[147,270]]]]]],[[[271,[[0,[147,270]]]]],[[271,[[0,[147,270]]]]]],[[[118,[[0,[147,270]]]]],[[118,[[0,[147,270]]]]]],[282,282],[48,48],[[[276,[[0,[147,275]]]]],[[276,[[0,[147,275]]]]]],[285,285],[277,277],[[[286,[[0,[147,283]]]]],[[286,[[0,[147,283]]]]]],[122,122],[[[269,[[0,[147,270]],[0,[147,283]]]]],[[269,[[0,[147,270]],[0,[147,283]]]]]],[[[120,[[0,[147,270]]]]],[[120,[[0,[147,270]]]]]],[278,278],[279,279],[[[274,[[0,[147,272]]]]],[[274,[[0,[147,272]]]]]],[[[47,[[0,[147,272]]]]],[[47,[[0,[147,272]]]]]],[280,280],[[[273,[[0,[147,270]]]]],[[273,[[0,[147,270]]]]]],[[[289,[[0,[147,270]]]]],[[289,[[0,[147,270]]]]]],[[[116,[[0,[147,270]]]]],[[116,[[0,[147,270]]]]]],[[[296,[[0,[147,295]]]]],[[296,[[0,[147,295]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],157],[[],157],[[[281,[270]]],157],[[[271,[270]]],157],[[[118,[270]]],157],[[[118,[270]]],157],[282,157],[48,157],[48,157],[[[284,[275,283]]],157],[[[276,[275]]],157],[[[276,[275]]],157],[285,157],[277,157],[[[286,[283]]],157],[122,157],[[[269,[270,283]]],157],[[[120,[270]]],157],[278,157],[279,157],[287,157],[[[274,[272]]],157],[[[47,[272]]],157],[[[47,[272]]],157],[288,157],[280,157],[[[273,[270]]],157],[[[289,[270]]],157],[[[116,[270]]],157],[[[116,[270]]],157],[[],[[281,[270]]]],[[],[[271,[270]]]],[[],282],[[],[[284,[275,[0,[283,159]]]]]],[[],[[269,[270,[0,[283,159]]]]]],[[],[[274,[272]]]],[[],[[47,[272]]]],[[],[[273,[270]]]],[[],[[289,[270]]]],[[],[[116,[270]]]],[[],157],[[],157],[[],157],[[],157],[[157,44],157],[157,157],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297]]]]]]]]]]]]]]]],[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297]]]]]]]]]]]]]]]]],[[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297]]]]]]]]]]]]]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297,73]]]],73]]]],73]]]],73]]]],[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297,73]]]],73]]]],73]]]],73]]]],73]]],[[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297,73]]]],73]]]],73]]]],73]]]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[37,[118,[270]]],1],[[37,37],1],[[37,[116,[270]]],1],[[37,[47,[272]]],1],[[[271,[270]],[271,[270]]],1],[[[118,[270]],37],1],[[[118,[270]],[118,[270]]],1],[[282,282],1],[[48,48],1],[[48,37],1],[[[276,[275]],37],1],[[[276,[275]],[276,[275]]],1],[[285,285],1],[[277,277],1],[[277,37],1],[[122,122],1],[[122,37],1],[[[120,[270]],37],1],[[[120,[270]],[120,[270]]],1],[[278,37],1],[[278,278],1],[[279,279],1],[[279,37],1],[[[274,[272]],[274,[272]]],1],[[[47,[272]],37],1],[[[47,[272]],[47,[272]]],1],[[280,37],1],[[280,280],1],[[[273,[270]],[273,[270]]],1],[[[116,[270]],[116,[270]]],1],[[[116,[270]],37],1],[[37,37],1],[[[281,[270]],49]],[[[271,[270]],49]],[[282,49]],[[[274,[272]],49]],[[[273,[270]],49]],[[[289,[270]],49]],[[[274,[272]],44,[22,[272]]]],[[[274,[272]],[10,[272]]]],[[[281,[270]],298]],[[[271,[270]],298]],[[282,298]],[[[274,[272]],298]],[[[273,[270]],298]],[[[289,[270]],298]],[[[281,[270]],23]],[[[271,[270]],23]],[[282,23]],[[[274,[272]],23]],[[[273,[270]],23]],[[[289,[270]],23]],[[[271,[270]],298]],[[282,298]],[[[274,[272]],298]],[[[273,[270]],298]],[[[271,[270]],23]],[[282,23]],[[[274,[272]],23]],[[[273,[270]],23]],[[[271,[270]],23]],[[[273,[270]],23]],[278,[[39,[37,38]]]],[280,[[42,[[39,[37,38]],38]]]],[[[269,[77,219]]],[[4,[3]]]],[[37,45],[[17,[46]]]],[[[281,[[0,[165,270]]]],45],[[17,[46]]]],[[[271,[[0,[165,270]]]],45],[[17,[46]]]],[[[118,[270]],45],[[17,[46]]]],[[282,45],[[17,[46]]]],[[48,45],[[17,[46]]]],[[[284,[[0,[165,275]],[0,[165,283]]]],45],[[17,[46]]]],[[[276,[275]],45],[[17,[46]]]],[[285,45],[[17,[46]]]],[[277,45],[[17,[46]]]],[[[286,[[0,[165,283]]]],45],[[17,[46]]]],[[122,45],[[17,[46]]]],[[[269,[[0,[165,270]],[0,[165,283]]]],45],[[17,[46]]]],[[[120,[270]],45],[[17,[46]]]],[[278,45],[[17,[46]]]],[[279,45],[[17,[46]]]],[[287,45],[[17,[46]]]],[[[274,[[0,[165,272]]]],45],[[17,[46]]]],[[[47,[272]],45],[[17,[46]]]],[[288,45],[[17,[46]]]],[[280,45],[[17,[46]]]],[[[273,[[0,[165,270]]]],45],[[17,[46]]]],[[[289,[[0,[165,270]]]],45],[[17,[46]]]],[[[116,[270]],45],[[17,[46]]]],[[[296,[[0,[165,295]]]],45],[[17,[46]]]],[[]],[[]],[[[51,[[10,[[22,[[51,[[10,[9]]]]]]]]]]],[[271,[270]]]],[[[281,[270]]],[[271,[270]]]],[[[299,[270]]],[[118,[270]]]],[[]],[[[51,[[10,[[22,[[51,[[10,[9]]]]]]]]]]],[[118,[270]]]],[[[281,[270]]],[[118,[270]]]],[[[271,[270]]],[[118,[270]]]],[[[51,[[10,[[22,[1]]]]]]],282],[[]],[[[51,[[10,[[22,[1]]]]]]],48],[[]],[300,48],[282,48],[283,[[284,[275,283]]]],[168],[[]],[[[284,[275,283]]],[[276,[275]]]],[226,[[276,[78]]]],[[[301,[275]]],[[276,[275]]]],[[]],[226,[[276,[77]]]],[[]],[[[51,[[10,[[22,[[99,[9]]]]]]]]],285],[[]],[[[51,[[10,[[22,[[99,[9]]]]]]]]],277],[285,277],[302,277],[[]],[303,122],[[]],[[[286,[283]]],122],[[]],[[]],[[[269,[270,283]]],[[120,[270]]]],[[[304,[270]]],[[120,[270]]]],[305,278],[[]],[[]],[306,279],[287,279],[[]],[[]],[157,[[274,[272]]]],[[[51,[[10,[[22,[272]]]]]]],[[274,[272]]]],[[]],[[[307,[272]]],[[47,[272]]]],[[[51,[[10,[[22,[272]]]]]]],[[47,[272]]]],[[[274,[272]]],[[47,[272]]]],[[]],[308,280],[[]],[[[289,[270]]],[[273,[270]]]],[[[51,[[10,[[22,[[51,[12]]]]]]]]],[[273,[270]]]],[[]],[[]],[[[309,[270]]],[[116,[270]]]],[[[51,[[10,[[22,[[51,[12]]]]]]]]],[[116,[270]]]],[[[273,[270]]],[[116,[270]]]],[[]],[[[289,[270]]],[[116,[270]]]],[[]],[[88,[22,[88]]],48],[[[179,[272]],[22,[88]]],[[47,[272]]]],[[[179,[77]],[179,[9]],[22,[88]]],[[118,[77]]]],[[[179,[77]],[179,[9]],[22,[88]]],[[116,[77]]]],[[157,[179,[272]],[22,[88]]],[[17,[[47,[272]],217]]]],[[157,88,[22,[88]]],48],[[157,[179,[272]],[22,[88]]],[[47,[272]]]],[49,[[281,[270]]]],[49,[[271,[270]]]],[49,[[118,[270]]]],[49,282],[49,48],[[49,44],277],[49,[[274,[272]]]],[49,[[47,[272]]]],[49,[[273,[270]]]],[49,[[289,[270]]]],[49,[[116,[270]]]],[49,48],[49,48],[49,[[47,[272]]]],[49,[[47,[272]]]],[23,[[271,[270]]]],[23,[[118,[270]]]],[23,[[273,[270]]]],[23,[[116,[270]]]],[[[51,[[10,[[51,[[10,[9]]]]]]]]],[[118,[270]]]],[[[51,[[10,[1]]]]],282],[[[51,[[10,[1]]]]],48],[[[51,[[10,[[99,[9]]]]]]],277],[[[51,[[10,[272]]]]],[[274,[272]]]],[[[51,[[10,[272]]]]],[[47,[272]]]],[[[51,[[10,[[51,[12]]]]]]],[[116,[270]]]],[298,[[281,[270]]]],[298,[[271,[270]]]],[298,[[118,[270]]]],[298,282],[298,48],[298,[[274,[272]]]],[298,[[47,[272]]]],[298,[[273,[270]]]],[298,[[289,[270]]]],[298,[[116,[270]]]],[23,[[281,[270]]]],[23,[[271,[270]]]],[23,[[118,[270]]]],[23,282],[23,48],[23,[[274,[272]]]],[23,[[47,[272]]]],[23,[[273,[270]]]],[23,[[289,[270]]]],[23,[[116,[270]]]],[298,[[271,[270]]]],[298,[[118,[270]]]],[298,282],[298,48],[298,[[274,[272]]]],[298,[[47,[272]]]],[298,[[273,[270]]]],[298,[[116,[270]]]],[23,[[271,[270]]]],[23,282],[23,48],[23,[[274,[272]]]],[23,[[47,[272]]]],[23,[[273,[270]]]],[49,[[47,[272]]]],[[[42,[272,38]]],[[274,[272]]]],[[[42,[272,38]]],[[47,[272]]]],[[[118,[77]],44],22],[[[118,[270]],44],[[22,[[10,[9]]]]]],[[48,44],22],[[48,44],[[22,[1]]]],[[277,44],[[22,[[10,[9]]]]]],[[122,44],[[22,[[39,[37,38]]]]]],[[122,44],22],[[[120,[77]],44],22],[[[47,[272]],44],[[22,[272]]]],[[[47,[272]],44],22],[[[116,[270]],44],[[22,[12]]]],[[[116,[77]],44],22],[157,152],[157,157],[[37,12],[[39,[25,38]]]],[157,[[10,[152]]]],[[[47,[272]]],[[22,[[10,[272]]]]]],[[[118,[77]],44],22],[[48,44],22],[[122,44],22],[[[120,[77]],44],22],[[[47,[272]],44],22],[[[116,[77]],44],22],[[37,12],[[39,[25,38]]]],[[[118,[77]]],44],[122,44],[[[120,[77]]],44],[[[116,[77]]],44],0,[[280,44]],[[280,44]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[271,[270]]],[[104,[37]]]],[282,[[104,[37]]]],[[[284,[275,283]]],[[104,[37]]]],[[[269,[270,283]]],[[104,[37]]]],[[[274,[272]]],[[104,[37]]]],[288,[[104,[37]]]],[[[273,[270]]],[[104,[37]]]],[[[284,[275,283]]],[[39,[37,38]]]],[[[269,[270,283]]],[[39,[37,38]]]],[[[273,[270]]]],[[[281,[270]]]],[[[118,[270]]]],[48],[[[274,[272]]]],[[[47,[272]]]],[288],[[[289,[270]]]],[[[116,[270]]]],[[[281,[270]]]],[[[118,[270]]]],[282],[48],[48],[[[276,[275]]]],[285],[277],[122],[[[120,[270]]]],[278],[[[47,[272]]]],[[[47,[272]]]],[280],[[[273,[270]]]],[[[289,[270]]]],[[[116,[270]]]],[[]],[[[118,[270]]],[[105,[[118,[270]],[271,[270]]]]]],[48,[[105,[48,282]]]],[[[47,[272]]],[[105,[[47,[272]],[274,[272]]]]]],[[[116,[270]]],[[105,[[116,[270]],[273,[270]]]]]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[[],1],[[],1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[[[276,[275]]],1],[157,1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[[[281,[270]]],[[296,[[281,[270]]]]]],[[[271,[270]]],[[311,[[10,[9]],[296,[[281,[270]]]],310]]]],[[[118,[270]]],[[311,[[10,[9]],[296,[[118,[270]]]],310]]]],[282,[[311,[1,310,310]]]],[48,[[311,[1,310,310]]]],[[[276,[275]]],[[311,[[39,[163,38]],[312,[275]],310]]]],[285,[[311,[[10,[9]],[313,[9]],310]]]],[277,[[311,[[10,[9]],[313,[9]],310]]]],[122,[[311,[[39,[37,38]],[296,[122]],310]]]],[[[120,[270]]],[[311,[[39,[37,38]],[296,[[120,[270]]]],310]]]],[278,[[311,[[39,[37,38]],314,310]]]],[[[274,[272]]],[[311,[272,[40,[272]],310]]]],[[[47,[272]]],[[311,[272,[40,[272]],310]]]],[280,315],[[[273,[270]]],[[311,[12,[296,[[289,[270]]]],310]]]],[[[289,[270]]],[[296,[[289,[270]]]]]],[[[116,[270]]],[[311,[12,[296,[[116,[270]]]],310]]]],[[[276,[275]]],[[17,[[311,[[317,[275,316]],310]],217]]]],[285,[[313,[9]]]],[[[276,[275]],44],44],[[[284,[275,283]]],[[274,[275]]]],[[[276,[275]]],[[47,[275]]]],[[[276,[275]]],[[0,[298,147]]]],[[[276,[275]]],[[0,[298,147]]]],[[],44],[[],44],[[[281,[270]]],44],[[[281,[270]]],44],[[[271,[270]]],44],[[[118,[270]]],44],[[[118,[270]]],44],[282,44],[48,44],[48,44],[[[284,[275,283]]],44],[[[276,[275]]],44],[[[276,[275]]],44],[285,44],[285,44],[277,44],[277,44],[[[286,[283]]],44],[[[286,[283]]],44],[122,44],[122,44],[[[269,[270,283]]],44],[[[269,[270,283]]],44],[[[120,[270]]],44],[[[120,[270]]],44],[278,44],[278,44],[279,44],[287,44],[[[274,[272]]],44],[[[47,[272]]],44],[[[47,[272]]],44],[288,44],[280,44],[280,44],[[[273,[270]]],44],[[[273,[270]]],44],[[[289,[270]]],44],[[[289,[270]]],44],[[[116,[270]]],44],[[[116,[270]]],44],[[[284,[275,283]]],[[262,[56,275,[319,[318]]]]]],[[[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]],[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]]]]],[[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]],[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]]],[[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]]]],[[[286,[283]]],283],[[[269,[270,283]]],283],[288,[[42,[[39,[283,38]],38]]]],[[],[[281,[270]]]],[[],[[271,[270]]]],[[157,[321,[270]],[179,[9]],[22,[88]]],[[118,[270]]]],[[],282],[[157,88,[22,[88]]],48],[[],[[284,[275,[0,[283,159]]]]]],[44,285],[[157,[179,[9]],[22,[88]]],277],[[283,44],[[286,[283]]]],[[157,[39,[37,38]],[22,[88]]],122],[[],[[269,[270,[0,[283,159]]]]]],[[157,[321,[270]],[39,[37,38]],[22,[88]]],[[120,[270]]]],[[157,[321,[84]],[39,[37,38]],[22,[88]]],278],[[157,44],279],[[157,44],287],[[],[[274,[272]]]],[[157,[179,[272]],[22,[88]]],[[47,[272]]]],[[157,[42,[[39,[283,38]],38]]],288],[[157,[179,[81]],[42,[[39,[37,38]],38]],[22,[[179,[84]]]]],280],[[],[[273,[270]]]],[[],[[289,[270]]]],[[157,[321,[270]],[179,[9]],[22,[88]]],[[116,[270]]]],[295,[[296,[295]]]],[157,[[118,[270]]]],[157,48],[157,[[276,[275]]]],[157,277],[157,122],[157,[[120,[270]]]],[157,278],[157,279],[157,[[47,[272]]]],[157,280],[157,[[116,[270]]]],[157,[[39,[37,38]]]],[[283,157,44],[[286,[283]]]],[[283,157,44],[[269,[270,283]]]],[[283,[218,[270]],[22,[220]]],[[269,[270,283]]]],[[157,44],[[118,[270]]]],[[157,44],48],[[157,44],[[276,[275]]]],[[157,44],277],[[157,44],122],[[157,44],[[120,[270]]]],[[157,44],278],[[157,44],279],[[157,44],[[47,[272]]]],[[157,44],280],[[157,44],[[116,[270]]]],[[157,44],[[39,[37,38]]]],[[157,[218,[270]],[42,[9,38]],[22,[220]]],[[273,[270]]]],[[157,[218,[270]],[42,[9,38]]],[[289,[270]]]],[[157,[321,[270]],[179,[9]],[22,[88]]],[[116,[270]]]],[[283,44],[[269,[270,283]]]],[[283,12,1,44],[[286,[283]]]],[[283,12,1],[[269,[270,283]]]],[[[296,[295]]],22],[[[296,[295]]],22],[[[296,[295]],44],22],[[],44],[[],10],[[[281,[270]]],[[218,[270]]]],[[[271,[270]]],[[218,[270]]]],[[[118,[270]]],[[10,[270]]]],[[[118,[270]]],[[321,[270]]]],[[[269,[270,283]]],[[218,[270]]]],[[[120,[270]]],[[321,[270]]]],[278,[[321,[84]]]],[280,[[22,[[179,[84]]]]]],[[[273,[270]]],[[218,[270]]]],[[[289,[270]]],[[218,[270]]]],[[[116,[270]]],[[321,[270]]]],[[[116,[270]]],[[10,[270]]]],0,[[[47,[[0,[266,322]]]],[0,[266,322]]]],[[[47,[[0,[266,322]]]],[47,[[0,[266,322]]]]]],[[[47,[[0,[266,323]]]],[47,[[0,[266,323]]]]]],[[[47,[[0,[266,323]]]],[0,[266,323]]]],[[[47,[[0,[266,324]]]],[0,[266,324]]]],[[[47,[[0,[266,324]]]],[47,[[0,[266,324]]]]]],[[[281,[270]]],[[22,[[42,[9,38]]]]]],[[[271,[270]]],[[22,[[42,[9,38]]]]]],[282,[[22,[1]]]],[285,[[22,[[42,[9,38]]]]]],[[[274,[272]]],[[22,[272]]]],[[[273,[270]]],[[22,[62]]]],[[[289,[270]]],[[22,[62]]]],[[[281,[270]],[51,[[10,[9]]]]]],[[[271,[270]],[22,[[51,[[10,[9]]]]]]]],[[282,[22,[1]]]],[[285,[22,[[51,[[10,[9]]]]]]]],[[[274,[272]],[22,[272]]]],[[288,1]],[[[273,[270]],[22,[[51,[12]]]]]],[[[289,[270]],[51,[12]]]],[[]],[[[281,[270]]]],[[[271,[270]]]],[282],[[[284,[275,283]]]],[[[284,[275,283]]]],[285],[[[286,[283]]]],[[[269,[270,283]]]],[287],[[[274,[272]]]],[288],[[[273,[270]]]],[[[289,[270]]]],[[]],[[[286,[[0,[283,[325,[22]]]]]],[22,[49]]]],[[[286,[283]]]],[[[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326,73]]]],73]]]],73]]]],73]]]],[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326,73]]]],73]]]],73]]]],73]]]],73]]],[[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326,73]]]],73]]]],73]]]],73]]]]]],[[[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326]]]]]]]]]]]]]]]],[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326]]]]]]]]]]]]]]]]],[[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326]]]]]]]]]]]]]]]]]],[44],[[[281,[270]],44]],[[[281,[270]],44,44]],[[[271,[270]],44]],[[[271,[270]],44,44]],[[282,44]],[[282,44]],[[[284,[275,283]],44]],[[[284,[275,283]],44]],[[285,44]],[[285,44]],[[[286,[283]],44]],[[[286,[283]],44]],[[[269,[270,283]],44]],[[[269,[270,283]],44]],[[287,44]],[[[274,[272]],44]],[[[274,[272]],44]],[[288,44]],[[288,44]],[[[273,[270]],44]],[[[273,[270]],44,44]],[[[289,[270]],44,44]],[[[289,[270]],44]],[[[47,[[0,[266,327]]]],[0,[266,327]]],[[47,[[0,[266,327]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,327]]]],[47,[[0,[266,327]]]]],[[47,[[0,[266,327]]]]]],[[[47,[[0,[266,328]]]],[0,[266,328]]],[[47,[[0,[266,328]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,328]]]],[47,[[0,[266,328]]]]],[[47,[[0,[266,328]]]]]],[[[47,[[0,[266,329]]]],[0,[266,329]]],[[47,[[0,[266,329]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[266,329]]]],[47,[[0,[266,329]]]]],[[47,[[0,[266,329]]]]]],[[282,44,[22,[1]]]],[[[274,[272]],44,[22,[272]]]],[[[274,[272]],44,[22,[272]]]],[[[271,[270]],[22,[220]]]],[[[118,[270]],[22,[88]]]],[[48,[22,[88]]]],[[[276,[275]],[22,[88]]]],[[277,[22,[88]]]],[[122,[22,[88]]]],[[[120,[270]],[22,[88]]]],[[278,[22,[88]]]],[[[274,[272]],[22,[220]]]],[[[47,[272]],[22,[88]]]],[[[273,[270]],[22,[220]]]],[[[116,[270]],[22,[88]]]],[[48,88]],[[[274,[272]],[42,[272,38]]]],[[[47,[272]],[179,[272]]]],[[]],[[[281,[270]]]],[[[281,[270]]]],[[[271,[270]]]],[[[271,[270]]]],[282],[282],[[[284,[275,283]]]],[[[284,[275,283]]]],[285],[285],[[[286,[283]]]],[[[286,[283]]]],[[[269,[270,283]]]],[[[269,[270,283]]]],[287],[[[274,[272]]]],[[[274,[272]]]],[288],[288],[[[273,[270]]]],[[[273,[270]]]],[[[289,[270]]]],[[[289,[270]]]],[285,44],[277,44],[[[286,[283]]],44],[122,44],[[[296,[295]]]],[[44,44]],[[[118,[270]],44,44]],[[[118,[270]],44,44]],[[48,44,44]],[[48,44,44]],[[[276,[275]],44,44]],[[[276,[275]],44,44]],[[277,44,44]],[[277,44,44]],[[122,44,44]],[[122,44,44]],[[[120,[270]],44,44]],[[[120,[270]],44,44]],[[278,44,44]],[[278,44,44]],[[279,44,44]],[[279,44,44]],[[[47,[272]],44,44]],[[[47,[272]],44,44]],[[280,44,44]],[[280,44,44]],[[[116,[270]],44,44]],[[[116,[270]],44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[[118,[270]],44,44]],[[[118,[270]],44,44]],[[48,44,44]],[[48,44,44]],[[[276,[275]],44,44]],[[[276,[275]],44,44]],[[277,44,44]],[[277,44,44]],[[122,44,44]],[[122,44,44]],[[[120,[270]],44,44]],[[[120,[270]],44,44]],[[278,44,44]],[[278,44,44]],[[279,44,44]],[[279,44,44]],[[[47,[272]],44,44]],[[[47,[272]],44,44]],[[280,44,44]],[[280,44,44]],[[[116,[270]],44,44]],[[[116,[270]],44,44]],[[44,44],[[39,[37,38]]]],[[[118,[270]],44,44],[[118,[270]]]],[[48,44,44],48],[[[276,[275]],44,44],[[276,[275]]]],[[277,44,44],277],[[122,44,44],122],[[[120,[270]],44,44],[[120,[270]]]],[[278,44,44],278],[[279,44,44],279],[[[47,[272]],44,44],[[47,[272]]]],[[280,44,44],280],[[[116,[270]],44,44],[[116,[270]]]],[[44,44],[[39,[37,38]]]],[[[118,[270]],44,44],[[118,[270]]]],[[48,44,44],48],[[[276,[275]],44,44],[[276,[275]]]],[[277,44,44],277],[[122,44,44],122],[[[120,[270]],44,44],[[120,[270]]]],[[278,44,44],278],[[279,44,44],279],[[[47,[272]],44,44],[[47,[272]]]],[[280,44,44],280],[[[116,[270]],44,44],[[116,[270]]]],[[[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]],[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]]],[[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]]]],[[[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]],[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]]]]],[[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[277,157],277],[[[274,[272]],157],[[274,[272]]]],[[[47,[272]],157],[[47,[272]]]],[[],[[39,[37,38]]]],[[[118,[270]]],[[39,[37,38]]]],[48,[[39,[37,38]]]],[[[276,[275]]],[[39,[37,38]]]],[277,[[39,[37,38]]]],[122,[[39,[37,38]]]],[[[120,[270]]],[[39,[37,38]]]],[278,[[39,[37,38]]]],[279,[[39,[37,38]]]],[[[47,[272]]],[[39,[37,38]]]],[280,[[39,[37,38]]]],[[[116,[270]]],[[39,[37,38]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[49,[[17,[217]]]],[[[281,[270]],49],[[17,[217]]]],[[[271,[270]],49],[[17,[217]]]],[[282,49],[[17,[217]]]],[[[284,[275,[0,[283,[331,[[22,[198]]]]]]]],49],[[17,[217]]]],[[[286,[[0,[283,[331,[22]]]]]],49],[[17,[217]]]],[[[269,[270,[0,[283,[331,[22]]]]]],49],[[17,[217]]]],[[[274,[272]],49],[[17,[217]]]],[[[273,[270]],49],[[17,[217]]]],[[[289,[270]],49],[[17,[217]]]],[[[269,[270,283]],[0,[298,147]]],[[17,[217]]]],[[],[[17,[217]]]],[[[281,[270]],[281,[270]]],[[17,[217]]]],[[[271,[270]],[271,[270]]],[[17,[217]]]],[[282,282],[[17,[217]]]],[[285,285],[[17,[217]]]],[[[286,[[0,[283,332]]]],[286,[[0,[283,332]]]]],[[17,[217]]]],[[[269,[270,[0,[283,332]]]],[269,[270,[0,[283,332]]]]],[[17,[217]]]],[[[274,[272]],[274,[272]]],[[17,[217]]]],[[[273,[270]],[273,[270]]],[[17,[217]]]],[[[289,[270]],[289,[270]]],[[17,[217]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[49,[[17,[[281,[270]],217]]]],[[49,44],[[17,[285,217]]]],[[49,44],[[17,[277,217]]]],[49,[[17,[[289,[270]],217]]]],[[[47,[275]],[39,[37,38]]],[[17,[[276,[275]],217]]]],[298,[[17,[[271,[270]]]]]],[298,[[17,[[118,[270]]]]]],[298,[[17,[282]]]],[298,[[17,[48]]]],[298,[[17,[[274,[272]]]]]],[298,[[17,[[273,[270]]]]]],[298,[[17,[[116,[270]]]]]],[49,[[17,[[271,[270]]]]]],[49,[[17,[[118,[270]]]]]],[23,[[17,[282]]]],[23,[[17,[48]]]],[49,[[17,[[274,[272]]]]]],[49,[[17,[[273,[270]]]]]],[49,[[17,[[116,[270]]]]]],[157,[[17,[152,217]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[157,[218,[270]],[42,[9,38]]],[[17,[[281,[270]],217]]]],[[157,[218,[270]],[42,[9,38]],[22,[220]]],[[17,[[271,[270]],217]]]],[[157,[321,[270]],[179,[9]],[22,[88]]],[[17,[[118,[270]],217]]]],[[157,220,[22,[220]]],[[17,[282,217]]]],[[157,88,[22,[88]]],[[17,[48,217]]]],[[157,[47,[275]],[39,[37,38]]],[[17,[[276,[275]],217]]]],[[157,[42,[9,38]],[22,[220]]],[[17,[285,217]]]],[[157,[179,[9]],[22,[88]]],[[17,[277,217]]]],[[157,[39,[37,38]],[22,[88]]],[[17,[122,217]]]],[[157,[321,[270]],[39,[37,38]],[22,[88]]],[[17,[[120,[270]],217]]]],[[157,[321,[84]],[39,[37,38]],[22,[88]]],[[17,[278,217]]]],[[157,44],[[17,[279,217]]]],[[157,[42,[272,38]],[22,[220]]],[[17,[[274,[272]],217]]]],[[157,[179,[272]],[22,[88]]],[[17,[[47,[272]],217]]]],[[157,[42,[[39,[283,38]],38]],[22,[220]]],[[17,[288,217]]]],[[157,[179,[81]],[42,[[39,[37,38]],38]],[22,[[179,[84]]]]],[[17,[280,217]]]],[[157,[218,[270]],[42,[9,38]],[22,[220]]],[[17,[[273,[270]],217]]]],[[157,[218,[270]],[42,[9,38]]],[[17,[[289,[270]],217]]]],[[157,[321,[270]],[179,[9]],[22,[88]]],[[17,[[116,[270]],217]]]],[[157,[47,[275]],[39,[37,38]]],[[17,[[276,[275]],217]]]],[[157,[321,[270]],[179,[9]],[22,[88]]],[[17,[[116,[270]],217]]]],[[],[[17,[217]]]],[[[281,[270]],[51,[[10,[9]]]]],[[17,[217]]]],[[[271,[270]],[22,[[51,[[10,[9]]]]]]],[[17,[217]]]],[[282,[22,[1]]],[[17,[217]]]],[[[284,[275,[0,[283,[333,[[22,[198]]]]]]]],[22,[198]]],[[17,[217]]]],[[285,[22,[[51,[[10,[9]]]]]]],[[17,[217]]]],[[[286,[[0,[283,[331,[22]]]]]],[22,[49]]],[[17,[217]]]],[[[269,[270,[0,[283,[331,[22]]]]]],[22,[49]]],[[17,[217]]]],[[[274,[272]],[22,[272]]],[[17,[217]]]],[[[273,[270]],[22,[[51,[12]]]]],[[17,[217]]]],[[[289,[270]],[51,[12]]],[[17,[217]]]],[[[286,[283]]],[[17,[217]]]],[[[269,[270,283]]],[[17,[217]]]],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[280,[[179,[81]]]],[[],[[22,[88]]]],[[],[[22,[220]]]],[[[281,[270]]],[[22,[220]]]],[[[271,[270]]],[[22,[220]]]],[[[118,[270]]],[[22,[88]]]],[[[118,[270]]],[[22,[88]]]],[282,[[22,[220]]]],[48,[[22,[88]]]],[48,[[22,[88]]]],[[[284,[275,283]]],[[22,[220]]]],[[[276,[275]]],[[22,[88]]]],[[[276,[275]]],[[22,[88]]]],[285,[[22,[220]]]],[277,[[22,[88]]]],[277,[[22,[88]]]],[[[286,[283]]],[[22,[220]]]],[122,[[22,[88]]]],[122,[[22,[88]]]],[[[269,[270,283]]],[[22,[220]]]],[[[120,[270]]],[[22,[88]]]],[[[120,[270]]],[[22,[88]]]],[278,[[22,[88]]]],[279,[[22,[88]]]],[287,[[22,[220]]]],[[[274,[272]]],[[22,[220]]]],[[[47,[272]]],[[22,[88]]]],[[[47,[272]]],[[22,[88]]]],[288,[[22,[220]]]],[280,[[22,[88]]]],[[[273,[270]]],[[22,[220]]]],[[[289,[270]]],[[22,[220]]]],[[[116,[270]]],[[22,[88]]]],[[[116,[270]]],[[22,[88]]]],[[[281,[270]],44],[[10,[9]]]],[[[118,[270]],44],[[10,[9]]]],[[48,44],1],[[[276,[275]],44],[[39,[163,38]]]],[[285,44],[[10,[9]]]],[[277,44],[[10,[9]]]],[[122,44],[[39,[37,38]]]],[[[120,[270]],44],[[39,[37,38]]]],[[278,44],[[39,[37,38]]]],[[[47,[272]],44],272],[[288,44],[[22,[283]]]],[[280,44],[[39,[163,38]]]],[[[273,[270]],44],12],[[[289,[270]],44],12],[[[116,[270]],44],12],[[[281,[270]],44],[[10,[9]]]],[[[118,[270]],44],[[10,[9]]]],[[48,44],1],[[285,44],[[10,[9]]]],[[277,44],[[10,[9]]]],[[122,44],[[39,[37,38]]]],[[[120,[270]],44],[[39,[37,38]]]],[[278,44],[[39,[37,38]]]],[[[47,[272]],44],272],[[280,44],[[39,[163,38]]]],[[[273,[270]],44],12],[[[289,[270]],44],12],[[[116,[270]],44],12],[[],[[10,[9]]]],[[[281,[270]]],[[42,[9,38]]]],[[[271,[270]]],[[42,[9,38]]]],[[[118,[270]]],[[10,[9]]]],[[[118,[270]]],[[179,[9]]]],[282,220],[48,88],[[[284,[275,283]]],283],[[[276,[275]]],[[39,[37,38]]]],[285,[[42,[9,38]]]],[277,[[179,[9]]]],[[[286,[283]]],283],[122,[[39,[37,38]]]],[[[269,[270,283]]],283],[[[120,[270]]],[[39,[37,38]]]],[[[274,[272]]],[[42,[272,38]]]],[[[47,[272]]],[[179,[272]]]],[288,[[42,[[39,[283,38]],38]]]],[[[273,[270]]],[[42,[9,38]]]],[[[289,[270]]],[[42,[9,38]]]],[[[116,[270]]],[[179,[9]]]],[[[116,[270]]],[[10,[9]]]],[[[271,[270]]],[[296,[[281,[270]]]]]],[[[118,[270]]],[[296,[[118,[270]]]]]],[282,310],[48,310],[[[276,[275]]],[[312,[275]]]],[277,[[313,[9]]]],[122,[[296,[122]]]],[[[120,[270]]],[[296,[[120,[270]]]]]],[278,314],[[[274,[272]]],[[40,[272]]]],[[[47,[272]]],[[40,[272]]]],[[[273,[270]]],[[296,[[289,[270]]]]]],[[[116,[270]]],[[296,[[116,[270]]]]]],[[[276,[275]]],[[17,[[317,[275,316]],217]]]],[285,[[10,[9]]]],[[[274,[272]]],[[10,[272]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[44,44],[[281,[270]]]],[[44,44],[[271,[270]]]],[[44,44],[[273,[270]]]],[[44,44],[[289,[270]]]],[44,[[281,[270]]]],[44,[[271,[270]]]],[44,282],[[44,44],285],[44,[[269,[270,[0,[283,159]]]]]],[44,[[274,[272]]]],[44,[[273,[270]]]],[44,[[289,[270]]]],[[44,157],[[274,[272]]]],[[[22,[88]]],[[39,[37,38]]]],[[[271,[270]],[22,[220]]],[[271,[270]]]],[[[118,[270]],[22,[88]]],[[39,[37,38]]]],[[[118,[270]],[22,[88]]],[[118,[270]]]],[[48,[22,[88]]],48],[[48,[22,[88]]],[[39,[37,38]]]],[[[276,[275]],[22,[88]]],[[276,[275]]]],[[[276,[275]],[22,[88]]],[[39,[37,38]]]],[[277,[22,[88]]],277],[[277,[22,[88]]],[[39,[37,38]]]],[[122,[22,[88]]],[[39,[37,38]]]],[[122,[22,[88]]],122],[[[120,[270]],[22,[88]]],[[120,[270]]]],[[[120,[270]],[22,[88]]],[[39,[37,38]]]],[[278,[22,[88]]],[[39,[37,38]]]],[[278,[22,[88]]],278],[[279,[22,[88]]],[[39,[37,38]]]],[[[47,[272]],[22,[88]]],[[39,[37,38]]]],[[[47,[272]],[22,[88]]],[[47,[272]]]],[[280,[22,[88]]],[[39,[37,38]]]],[[[116,[270]],[22,[88]]],[[39,[37,38]]]],[[[116,[270]],[22,[88]]],[[116,[270]]]],[[48,88],48],[[[47,[272]],[179,[272]]],[[47,[272]]]],[[[47,[[0,[266,334]]]],[47,[[0,[266,334]]]]],[[47,[[0,[266,334]]]]]],[[[47,[[0,[266,335]]]],[47,[[0,[266,335]]]]],[[47,[[0,[266,335]]]]]],[[[47,[[0,[266,336]]]],[47,[[0,[266,336]]]]],[[47,[[0,[266,336]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[299,[270]]],[[104,[37]]]],[308,[[104,[37]]]],[300,[[104,[37]]]],[302,[[104,[37]]]],[306,[[104,[37]]]],[[[307,[272]]],[[104,[37]]]],[[[304,[270]]],[[104,[37]]]],[305,[[104,[37]]]],[337,[[104,[37]]]],[303,[[104,[37]]]],[[[309,[270]]],[[104,[37]]]],[[[301,[275]]],[[104,[37]]]],[[],[[104,[37]]]],[[],[[39,[37,38]]]],[[[299,[270]]],[[39,[37,38]]]],[308,[[39,[37,38]]]],[300,[[39,[37,38]]]],[302,[[39,[37,38]]]],[306,[[39,[37,38]]]],[[[307,[272]]],[[39,[37,38]]]],[[[304,[270]]],[[39,[37,38]]]],[305,[[39,[37,38]]]],[337,[[39,[37,38]]]],[303,[[39,[37,38]]]],[[[309,[270]]],[[39,[37,38]]]],[[[301,[275]]],[[39,[37,38]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],306],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[44,44,44]],[[[299,[270]],44,44,44]],[[308,44,44,44]],[[300,44,44,44]],[[302,44,44,44]],[[306,44,44,44]],[[[307,[272]],44,44,44]],[[[304,[270]],44,44,44]],[[305,44,44,44]],[[337,44,44,44]],[[303,44,44,44]],[[[309,[270]],44,44,44]],[[[301,[275]],44,44,44]],[44],[[[299,[270]],44]],[[308,44]],[[300,44]],[[302,44]],[[306,44]],[[[307,[272]],44]],[[[304,[270]],44]],[[305,44]],[[337,44]],[[303,44]],[[[309,[270]],44]],[[[301,[275]],44]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[[299,[270]]],44],[308,44],[300,44],[302,44],[306,44],[[[307,[272]]],44],[[[304,[270]]],44],[305,44],[337,44],[303,44],[[[309,[270]]],44],[[[301,[275]]],44],[[[10,[37]],1,44],[[39,[338,38]]]],[[[42,[[118,[270]],38]],1,44],[[299,[270]]]],[[[42,[280,38]],44],308],[[[42,[48,38]],1,44],300],[[[42,[277,38]],1,44],302],[157,306],[[[42,[[47,[272]],38]],1,44],[[307,[272]]]],[[[42,[[120,[270]],38]],1,44],[[304,[270]]]],[[[42,[278,38]],1,44],305],[[[42,[339,38]],1,44],337],[[[42,[122,38]],1,44],303],[[[42,[[116,[270]],38]],1,44],[[309,[270]]]],[[[10,[[276,[275]]]],1,44],[[301,[275]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[37,37],[[17,[[39,[25,38]],217]]]],[[[0,[272,155]],[0,[272,155]]],156],[[55,55],156],[[74,74],156],0,0,0,[2],[2],[2],[[88,88],88],[88],[220,[[10,[9]]]],[220,[[10,[9]]]],[[88,88,25],88],[[220,88,25]],[[88,88],88],[[220,88],220],[[220,88]],[[88,88],88],[[220,88],220],[[220,88]],[[88,88],88],[[220,88],220],[[220,88]],[[]],[[]],[[]],[[]],[[]],[[]],[220,44],[298,[[42,[9,38]]]],[88,[[341,[340]]]],[220],[88,88],[342,342],[220,220],[[]],[[]],[[]],[[],88],[[],220],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[88,88],1],[[220,220],1],[[220,44,1]],[[220,88]],[[220,[10,[9]],44,44]],[[220,[10,[9]],44,44]],[[220,298]],[[220,23]],[[88,45],[[17,[46]]]],[[342,45],[[17,[46]]]],[[220,45],[[17,[46]]]],[[]],[220,88],[[[51,[[10,[1]]]]],88],[[]],[[]],[[[51,[[10,[1]]]]],220],[23,[[42,[9,38]]]],[[[104,[[343,[9]]]],44,44,44],[[17,[88,217]]]],[[[104,[[343,[9]]]],44,44,44],88],[49,88],[49,220],[44,220],[44,220],[298,88],[298,220],[23,88],[23,220],[[[51,[[10,[9]]]],44],88],[[[42,[9,38]],44],88],[[[42,[9,38]],44],220],[[88,44],[[22,[1]]]],[[220,44],1],[[88,44],1],[[88,44],1],[[],44],[[],44],[[],44],[[]],[[]],[[]],[88],[88],[88],[[]],[220],[88,[[105,[88,220]]]],[88,1],[220,1],[88,310],[220,310],[88,44],[220,44],[88,220],[[],88],[88,342],[[],220],[44,88],[342,22],[342,22],[88,88],[220,220],[[342,44],22],[88,44],[220,44],[[88,44,44],44],[[88,88],88],[[],344],[220,[[22,[1]]]],[[220,1]],[[220,1]],[[88,88,88,88,25],88],[[220,44]],[[220,44,1]],[[220,44,1]],[[220,44,1]],[220],[342],[[88,44,44]],[[88,44,44]],[[88,44,44],88],[[88,44,44],88],[[88,88,88,25],88],[[]],[[]],[[]],[[],17],[[],17],[[],17],[298,[[17,[88]]]],[298,[[17,[220]]]],[23,[[17,[88]]]],[23,[[17,[220]]]],[[],17],[[],17],[[],17],[[[42,[9,38]],44],[[17,[88,217]]]],[[[42,[9,38]],44],[[17,[220,217]]]],[[],106],[[],106],[[],106],[[88,25],88],[[220,25]],[88,44],[220,44],0,[[]],[[]],[[]],[44,220],[[88,88],88],0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[39,[96,38]]]],[[],[[39,[96,38]]]],[44,44],[44,[[17,[16]]]],[44,[[17,[16]]]],[310,310],[345,345],[[[346,[147,[0,[147,23]],[0,[147,23]]]]],[[346,[147,[0,[147,23]],[0,[147,23]]]]]],[[[311,[147,[0,[147,23]],[0,[147,23]]]]],[[311,[147,[0,[147,23]],[0,[147,23]]]]]],[[]],[[]],[[]],[[]],[[[10,[9]],44,44],44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[10,[9]],44,44,45],[[17,[46]]]],[[[347,[[0,[165,340]]]],45],[[17,[46]]]],[[[341,[[0,[165,340]]]],45],[[17,[46]]]],[[[348,[[0,[165,340]]]],45],[[17,[46]]]],[[310,45],[[17,[46]]]],[[345,45],[[17,[46]]]],[[[346,[165,[0,[165,23]],[0,[165,23]]]],45],[[17,[46]]]],[[[311,[165,[0,[165,23]],[0,[165,23]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[10,[9]],44],1],[[[10,[9]],44],1],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[[[347,[340]]],1],[[9,44],1],[[[347,[340]]],44],[[[341,[340]]],44],[[[10,[9]],44],[[347,[340]]]],[[[10,[9]],44,44],[[341,[340]]]],[[[10,[9]],44],[[348,[340]]]],[[[10,[9]],44,44],310],[88,345],[[23,23],[[346,[23,23]]]],[[23,[22,[23]]],[[311,[23,23]]]],[[23,[22,[88]]],[[311,[23,310]]]],[[[347,[340]]],22],[[[341,[340]]],[[22,[340]]]],[[[348,[340]]],22],[310,22],[345,22],[[[346,[23,23]]],22],[[[311,[23,23]]],22],[310,[[22,[1]]]],[[[346,[43,43]]],22],[[[311,[43,43]]],22],[[310,44],22],[[[346,[23,23]],44],22],[[[311,[23,23]],44],22],[[]],[[[347,[340]]],340],[[[347,[340]]],340],[[[341,[340]]],340],[[[341,[340]]],340],[[[348,[340]]],[[10,[9]]]],[[],349],[[],44],[[[347,[340]]],44],[[[341,[340]]],44],[[[341,[340]]],44],[[[348,[340]]],44],[[9,44,1],9],[[[10,[9]],44,1]],[[[10,[9]],44,1]],[[[347,[340]]]],[[[341,[340]]]],[[[348,[340]]]],[310],[[[346,[23,23]]]],[[[311,[23,23]]]],[345,44],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[[311,[23,23]]],[[346,[23,23]]]],[[[311,[23,23]]],23],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[2],[179,10],[[]],[[]],[[]],[[]],[[[179,[147]]],[[179,[147]]]],[[]],[[],179],[44],[343],[44],[179,10],[44],[44],[44],[44],[[[179,[[164,[[164,[[164,[164]]]]]]]],[179,[[164,[[164,[[164,[164]]]]]]]]],1],[[[179,[165]],45],[[17,[46]]]],[[[42,[38]]],343],[[]],[[[351,[350]]],343],[[[42,[38]]],179],[[]],[[[104,[343]],44,44],179],[49,179],[179,[[22,[[42,[38]]]]]],[179,[[22,[10]]]],[[],44],[[],44],[[]],[[]],[179],[[[179,[26]]]],[179,[[105,[179,[42,[38]]]]]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[179,1],[179,1],[179,44],[[],179],[179,44],[[179,44]],[179,44],[179,44],[[179,44,44]],[[179,44,44]],[[179,44,44],179],[[179,44,44],179],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,[2],[[[352,[[51,[37]]]]],[[10,[[51,[37]]]]]],[[]],[[]],[[[352,[[0,[147,[51,[37]]]]]]],[[352,[[0,[147,[51,[37]]]]]]]],[[]],[[[352,[[51,[37]]]]],[[10,[[51,[37]]]]]],[44],[[[352,[[51,[37]]]]],[[10,[[51,[37]]]]]],[44],[44],[[[352,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,[51,[37]]]]]],[51,[37]]]]]],[51,[37]]]]]],[51,[37]]]]]],[352,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,[51,[37]]]]]],[51,[37]]]]]],[51,[37]]]]]],[51,[37]]]]]]],1],[[],1],[[],1],[[],1],[[],1],[[[352,[[0,[165,[51,[37]]]]]],45],[[17,[46]]]],[[]],[[],44],[[]],[[[352,[[51,[37]]]]],[[42,[[51,[37]],38]]]],[[[352,[[51,[37]]]]],1],[[[352,[[51,[37]]]]],44],[[[42,[[51,[37]],38]]],[[352,[[51,[37]]]]]],[[]],[[],17],[[],17],[[[42,[[51,[37]],38]]],[[17,[[352,[[51,[37]]]],217]]]],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[157,1],[157,1],[157,1],[37,44],[37,[[17,[[39,[163,38]],217]]]],[[[118,[270]]],[[22,[[10,[9]]]]]],[48,[[22,[1]]]],[[]],[[]],[[[47,[[0,[272,353]]]]],[[22,[[0,[272,353]]]]]],[[[116,[270]]],[[22,[12]]]],[37,[[17,[[39,[163,38]],217]]]],[[[118,[270]]],[[22,[[10,[9]]]]]],[48,[[22,[1]]]],[[]],[[]],[[[47,[[0,[272,353]]]]],[[22,[[0,[272,353]]]]]],[[[116,[270]]],[[22,[12]]]],[[]],[[]],[[]],[37,[[17,[[39,[163,38]],217]]]],[[[47,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]]]]]]],[[22,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]]]]]]]],[[[10,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]]]]]]],[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]],[354,[[0,[272,353,[267,[[0,[272,353,267,354]]]],[354,[[0,[272,353,267,354]]]]]]]]]]]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[37,37],[[39,[37,38]]]],[[]],[[37,163],[[39,[37,38]]]],0,[[157,157],1],[[157,157],1],[[157,157],1],[157,1],[[157,157],1],[[157,157],1],[[]],[[]],[[]],[[]],[[]],0,[[37,37],[[39,[37,38]]]],[[]],[[37,163],[[39,[37,38]]]],[[37,37],[[39,[37,38]]]],[[]],[[37,163],[[39,[37,38]]]],[37,[[39,[37,38]]]],[[]],[[]],[[]],[[37,37],[[39,[37,38]]]],[[]],[[]],[[]],[[]],[[37,37],[[39,[37,38]]]],[[]],[[37,163],[[39,[37,38]]]],0,[[]],[[]],[[]],0,[[[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]],[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]]],[[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]]]],[[[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]],[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]]]]],[[47,[[0,[266,[267,[[0,[266,[267,[[0,[266,[267,[[0,[266,267]]]]]]]]]]]]]]]]]],[[[47,[[0,[266,290]]]],[47,[[0,[266,290]]]]],[[47,[[0,[266,290]]]]]],[[[47,[[0,[266,290]]]],[0,[266,290]]],[[47,[[0,[266,290]]]]]],[[[47,[[0,[266,291]]]],[47,[[0,[266,291]]]]],[[47,[[0,[266,291]]]]]],[[[47,[[0,[266,291]]]],[0,[266,291]]],[[47,[[0,[266,291]]]]]],[[[47,[[0,[266,292]]]],[47,[[0,[266,292]]]]],[[47,[[0,[266,292]]]]]],[[[47,[[0,[266,292]]]],[0,[266,292]]],[[47,[[0,[266,292]]]]]],[[[47,[[0,[272,355]]]]],[[47,[[0,[272,355]]]]]],[[[47,[[0,[266,292,356]]]],44],[[47,[[0,[266,292,356]]]]]],[[[47,[[0,[266,293]]]],[47,[[0,[266,293]]]]],[[47,[[0,[266,293]]]]]],[[[47,[[0,[266,293]]]],[0,[266,293]]],[[47,[[0,[266,293]]]]]],[[[47,[[0,[266,294]]]],[47,[[0,[266,294]]]]],[[47,[[0,[266,294]]]]]],[[[47,[[0,[266,294]]]],[0,[266,294]]],[[47,[[0,[266,294]]]]]],[[[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297]]]]]]]]]]]]]]]],[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297]]]]]]]]]]]]]]]]],[[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297]]]]]]]]]]]]]]]]]],[[[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297,73]]]],73]]]],73]]]],73]]]],[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297,73]]]],73]]]],73]]]],73]]]],73]]],[[47,[[0,[266,[297,[[0,[266,[297,[[0,[266,[297,[[0,[266,297,73]]]],73]]]],73]]]],73]]]]]],[[[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]],[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]]],[[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]]]],[[[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]],[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]]]]],[[47,[[0,[266,[320,[[0,[266,[320,[[0,[266,[320,[[0,[266,320]]]]]]]]]]]]]]]]]],[[[47,[[0,[272,357]]]]],[[47,[[0,[272,357]]]]]],[[[47,[[0,[266,322]]]],[47,[[0,[266,322]]]]]],[[[47,[[0,[266,322]]]],[0,[266,322]]]],[[[47,[[0,[266,323]]]],[47,[[0,[266,323]]]]]],[[[47,[[0,[266,323]]]],[0,[266,323]]]],[[[47,[[0,[266,324]]]],[47,[[0,[266,324]]]]]],[[[47,[[0,[266,324]]]],[0,[266,324]]]],[[[47,[[0,[266,[358,[[0,[266,[358,[[0,[266,[358,[[0,[266,358]]]]]]]]]]]]]]]],[0,[266,[358,[[0,[266,[358,[[0,[266,[358,[[0,[266,[358,[[0,[266,358]]]]]]]]]]]]]]]]]]],[[47,[[0,[266,[358,[[0,[266,[358,[[0,[266,[358,[[0,[266,358]]]]]]]]]]]]]]]]]],[[[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326]]]]]]]]]]]]]]]],[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326]]]]]]]]]]]]]]]]],[[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326]]]]]]]]]]]]]]]]]],[[[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326,73]]]],73]]]],73]]]],73]]]],[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326,73]]]],73]]]],73]]]],73]]]],73]]],[[47,[[0,[266,[326,[[0,[266,[326,[[0,[266,[326,[[0,[266,326,73]]]],73]]]],73]]]],73]]]]]],[[[47,[[0,[266,327]]]],[47,[[0,[266,327]]]]],[[47,[[0,[266,327]]]]]],[[[47,[[0,[266,327]]]],[0,[266,327]]],[[47,[[0,[266,327]]]]]],[[[47,[[0,[266,328]]]],[47,[[0,[266,328]]]]],[[47,[[0,[266,328]]]]]],[[[47,[[0,[266,328]]]],[0,[266,328]]],[[47,[[0,[266,328]]]]]],[[[47,[[0,[266,329]]]],[47,[[0,[266,329]]]]],[[47,[[0,[266,329]]]]]],[[[47,[[0,[266,329]]]],[0,[266,329]]],[[47,[[0,[266,329]]]]]],[[[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]],[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]]],[[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]]]],[[[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]],[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]]]]],[[47,[[0,[266,[330,[[0,[266,[330,[[0,[266,[330,[[0,[266,330]]]]]]]]]]]]]]]]]],[[[47,[[0,[266,334]]]],[47,[[0,[266,334]]]]],[[47,[[0,[266,334]]]]]],[[[47,[[0,[266,334]]]],[0,[266,334]]],[[47,[[0,[266,334]]]]]],[[[47,[[0,[266,335]]]],[47,[[0,[266,335]]]]],[[47,[[0,[266,335]]]]]],[[[47,[[0,[266,335]]]],[0,[266,335]]],[[47,[[0,[266,335]]]]]],[[[47,[[0,[272,359]]]]],[[47,[[0,[272,359]]]]]],[[[47,[[0,[266,336]]]],[47,[[0,[266,336]]]]],[[47,[[0,[266,336]]]]]],[[[47,[[0,[266,336]]]],[0,[266,336]]],[[47,[[0,[266,336]]]]]],[[[47,[268]],[47,[268]]],[[17,[[47,[268]],217]]]],[[[47,[268]],[47,[268]]],[[17,[[47,[268]],217]]]],[[[47,[268]],[47,[268]]],[[17,[[47,[268]],217]]]],[[[47,[268]],[47,[268]]],[[17,[[47,[268]],217]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[360,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[360,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[268]],[47,[268]]],[[47,[268]]]],[[[47,[[0,[272,[267,[[0,[272,[267,[[0,[272,[267,[[0,[272,267]]]]]]]]]]]]]]]],[47,[77]]],[[47,[[0,[272,[267,[[0,[272,[267,[[0,[272,[267,[[0,[272,267]]]]]]]]]]]]]]]]]],[[[47,[[0,[272,[267,[[0,[272,[267,[[0,[272,[267,[[0,[272,267]]]]]]]]]]]]]]]],[360,[77]]],[[47,[[0,[272,[267,[[0,[272,[267,[[0,[272,[267,[[0,[272,267]]]]]]]]]]]]]]]]]],[[[47,[77]],[47,[361]]],[[17,[[47,[77]],217]]]],[[[47,[77]],[360,[361]]],[[17,[[47,[77]],217]]]],[[[47,[[0,[272,[330,[[0,[272,[330,[[0,[272,[330,[[0,[272,330]]]]]]]]]]]]]]]],[360,[77]]],[[47,[[0,[272,[330,[[0,[272,[330,[[0,[272,[330,[[0,[272,330]]]]]]]]]]]]]]]]]],[[[47,[77]],[360,[77]]],[[17,[[47,[77]],217]]]],[[[47,[[0,[272,[330,[[0,[272,[330,[[0,[272,[330,[[0,[272,330]]]]]]]]]]]]]]]],[47,[77]]],[[47,[[0,[272,[330,[[0,[272,[330,[[0,[272,[330,[[0,[272,330]]]]]]]]]]]]]]]]]],[[[47,[77]],[47,[77]]],[[17,[[47,[77]],217]]]],[[[47,[272]],[47,[272]],157,25],[[47,[272]]]],[[[47,[272]],[47,[272]],157,25],[[47,[272]]]],[[[47,[272]],[47,[272]],157,25]],[[[47,[272]],[47,[272]],157,25],[[17,[[47,[272]],217]]]],[[[47,[272]],25,157],[[17,[[47,[272]],217]]]],[[[47,[272]],25,157],[[47,[272]]]],[[[47,[272]],25,157],[[47,[272]]]],[[[47,[272]],25,157]],[[[47,[272]],[47,[272]],25]],[[[47,[272]],25]],[48,1],[[48,48],48],[[48,362],48],[48,1],[37,48],[37,48],[48,48],[[48,48],48],[[48,362],48],[48,1],[[48,48],48],[[48,362],48],[48,1],[[48,48],48],[[48,362],48],0,[2],[[[118,[77]],157],[[17,[[118,[84]],217]]]],[[[118,[270]]],[[17,[[276,[275]],217]]]],[[[118,[84]],157],[[118,[77]]]],[[[118,[84]],157],[[17,[[116,[77]],217]]]],[[[118,[270]],157],[[120,[270]]]],[[[118,[270]],157],[[47,[[0,[272,363]]]]]],[[[118,[270]],157],[[17,[[116,[270]],217]]]],[48,[[118,[270]]]],[48,[[47,[[0,[272,356]]]]]],[48,[[116,[270]]]],[[]],[[]],[[157,157],1],[[37,157,364],[[17,[[39,[37,38]],217]]]],[364,364],[[]],[[[47,[84]]],[[47,[77]]]],[[[47,[77]]],[[47,[84]]]],[[[47,[365]]],[[47,[361]]]],[[[47,[268]],44,44],[[47,[268]]]],[[[47,[268]]],[[47,[[0,[272,366]]]]]],[[[47,[268]]],[[47,[[0,[272,73]]]]]],[[],364],[44],[44],[[[276,[[0,[275,73]]]]],[[17,[[276,[[0,[275,73]]]],217]]]],[[[276,[275]],157],[[17,[[276,[275]],217]]]],[[[276,[[0,[275,73]]]]],[[39,[37,38]]]],[44],[[[47,[367]]],[[47,[55]]]],[[277,157],[[118,[270]]]],[[[47,[[0,[272,366,8]]]],44,44],[[47,[268]]]],[[364,45],[[17,[46]]]],[[]],[[],44],[[[47,[[0,[272,[368,[268]]]]]],44,44],[[47,[268]]]],[[]],[[[47,[84]]],[[47,[361]]]],[[[47,[77]],232],[[116,[270]]]],0,[[[118,[270]],157],[[47,[[0,[272,363]]]]]],[[[116,[270]],157],[[47,[[0,[272,363]]]]]],[[[47,[[0,[272,[368,[272]]]]]],157],[[47,[272]]]],[[[47,[[0,[272,369]]]]],[[118,[270]]]],[[[47,[272]],157],48],[[[47,[[0,[272,254,198]]]]],[[17,[[276,[275]],217]]]],[[[47,[[0,[272,73]]]],157],[[47,[[0,[272,73]]]]]],[[[47,[272]],157],[[47,[272]]]],[[[47,[[0,[272,369]]]]],[[116,[270]]]],[[[47,[84]],232,232],[[47,[77]]]],[[[47,[84]]],[[47,[84]]]],[[[47,[84]]],[[47,[84]]]],[[[47,[77]],232,232],[[47,[84]]]],[[[47,[77]]],[[47,[77]]]],[[[47,[77]]],[[47,[77]]]],[[[47,[77]],232],[[47,[84]]]],[[[47,[77]],232],[[47,[77]]]],[[[47,[77]],232,232,[22,[62]]],[[47,[77]]]],[[[47,[77]],232,12],[[17,[[116,[270]],217]]]],[[]],[[],17],[[],17],[[],106],[[[116,[77]]],[[17,[[116,[84]],217]]]],[[[116,[270]],157],[[118,[270]]]],[[[116,[270]]],[[47,[84]]]],[[[116,[270]]],[[47,[77]]]],[[[116,[270]]],[[17,[[276,[275]],217]]]],[[[116,[84]]],[[116,[77]]]],[[[116,[270]]],[[47,[77]]]],[[[116,[270]],157],[[47,[[0,[272,363]]]]]],[[[116,[270]],62],[[17,[[47,[77]],217]]]],[[]],0,[[[276,[[0,[275,[368,[275]]]]]]],[[17,[[276,[275]],217]]]],[[[276,[275]],157],[[17,[[276,[275]],217]]]],0,0,0,0,0,0,0,[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[[37,37],48],[[],9],[[37,37],48],[[37,163],48],[[37,163],48],[[48,[22,[88]],[22,[88]]],48],[[48,[22,[88]],[22,[88]]],48],[10],[10],[[37,37],48],[[],9],[[37,37],48],[[],9],[[37,163],48],[[37,163],48],[[37,37],48],[[],9],[[37,37],48],[[],9],[[37,163],48],[[37,163],48],[[37,37],48],[[],9],[[37,37],48],[[37,163],48],[[37,163],48],0,0,[[[118,[270]],[118,[270]]],48],[[[118,[270]],[118,[270]]],48],[[[118,[270]],[10,[9]]],48],[[[118,[270]],[10,[9]]],48],[[[118,[270]],[118,[270]]],48],[[[118,[270]],[118,[270]]],48],[[[118,[270]],[10,[9]]],48],[[[118,[270]],[10,[9]]],48],[[[118,[270]],[118,[270]]],48],[[[118,[270]],[118,[270]]],48],[[[118,[270]],[10,[9]]],48],[[[118,[270]],[10,[9]]],48],[[[118,[270]],[118,[270]]],48],[[[118,[270]],[118,[270]]],48],[[[118,[270]],[10,[9]]],48],[[[118,[270]],[10,[9]]],48],[[48,1,25],48],[[48,48],48],[[48,48],48],[[48,1],48],[[48,1],48],[[48,48],48],[[48,48],48],[[48,1],48],[[48,1],48],[[48,48],48],[[48,48],48],[[48,1],48],[[48,1],48],[[48,48],48],[[48,48],48],[[48,1],48],[[48,1],48],[[[47,[[0,[272,370]]]],[0,[272,370]],25],48],[[[47,[[0,[272,370]]]],[47,[[0,[272,370]]]]],48],[[[47,[[0,[272,370]]]],[47,[[0,[272,370]]]]],48],[[[47,[[0,[272,370]]]],[0,[272,370]]],48],[[[47,[[0,[272,370]]]],[0,[272,370]]],48],[[[47,[[0,[272,370]]]],[47,[[0,[272,370]]]]],48],[[[47,[[0,[272,370]]]],[47,[[0,[272,370]]]]],48],[[[47,[[0,[272,370]]]],[0,[272,370]]],48],[[[47,[[0,[272,370]]]],[0,[272,370]]],48],[[[47,[[0,[272,370]]]],[47,[[0,[272,370]]]]],48],[[[47,[[0,[272,370]]]],[47,[[0,[272,370]]]]],48],[[[47,[[0,[272,370]]]],[0,[272,370]]],48],[[[47,[[0,[272,370]]]],[0,[272,370]]],48],[[[47,[[0,[272,370]]]],[47,[[0,[272,370]]]]],48],[[[47,[[0,[272,370]]]],[47,[[0,[272,370]]]]],48],[[[47,[[0,[272,370]]]],[0,[272,370]]],48],[[[47,[[0,[272,370]]]],[0,[272,370]]],48],[[[116,[270]],[116,[270]]],48],[[[116,[270]],[116,[270]]],48],[[[116,[270]],12],48],[[[116,[270]],12],48],[[[116,[270]],[116,[270]]],48],[[[116,[270]],[116,[270]]],48],[[[116,[270]],12],48],[[[116,[270]],12],48],[[[116,[270]],[116,[270]]],48],[[[116,[270]],[116,[270]]],48],[[[116,[270]],12],48],[[[116,[270]],12],48],[[[116,[270]],[116,[270]]],48],[[[116,[270]],[116,[270]]],48],[[[116,[270]],12],48],[[[116,[270]],12],48],[[[10,[37]]],[[17,[[39,[37,38]],217]]]],0,[48,[[17,[[39,[25,38]],217]]]],[[37,48],[[17,[[39,[37,38]],217]]]],[[[352,[[51,[37]]]],48],[[17,[[352,[[39,[37,38]]]],217]]]],[[48,37,37],[[17,[[39,[37,38]],217]]]],[[[118,[270]],[118,[270]]],[[17,[48,217]]]],[[[118,[270]],[10,[9]]],[[17,[48,217]]]],[[[116,[270]],[116,[270]]],[[17,[48,217]]]],[[[116,[270]],12],[[17,[48,217]]]],[[[118,[270]],[118,[270]]],[[17,[48,217]]]],[[[118,[270]],[10,[9]]],[[17,[48,217]]]],[[[116,[270]],[116,[270]]],[[17,[48,217]]]],[[[116,[270]],12],[[17,[48,217]]]],[157,1],[[37,77,[22,[56]]],[[17,[[39,[37,38]],217]]]],[157,1],[[37,[47,[371]]],[[17,[[39,[37,38]],217]]]],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[37,[[17,[[47,[78]],217]]]],[37,[[17,[[47,[78]],217]]]],[37,[[17,[[47,[78]],217]]]],[37,[[17,[[47,[78]],217]]]],[37,[[17,[[47,[78]],217]]]],[37,[[17,[[47,[78]],217]]]],[37,[[17,[[47,[78]],217]]]],[37,[[17,[[47,[78]],217]]]],[37,[[17,[[47,[84]],217]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[233,233],[240,240],[234,234],[372,372],[373,373],[[]],[[]],[[]],[[]],[[]],0,[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[233,233],1],[[240,240],1],[[234,234],1],[[372,372],1],[[373,373],1],[[240,233],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],0,[[233,45],[[17,[46]]]],[[240,45],[[17,[46]]]],[[234,45],[[17,[46]]]],[[372,45],[[17,[46]]]],[[373,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[[211,[62,62,38]]],22],[[233,199]],[[240,199]],[[234,199]],[[372,199]],[[373,199]],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[372,1],0,[372,1],0,0,0,[1,372],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[374],[375],[44],[44],[376],[[],374],[[],375],[[],376],[[[39,[37,38]]],375],[152,374],[[[39,[23,38]],152],376],[[[378,[377]]],152],[[374,45],[[17,[46]]]],[[375,45],[[17,[46]]]],[[376,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[375,157],[[17,[[39,[37,38]],217]]]],[374,[[17,[152,217]]]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],0,[[[378,[377]]],[[22,[[17,[[39,[37,38]],217]]]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[377,[[17,[[378,[377]],217]]]],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[[10,[9]],44,44],[[17,[48,217]]]],[[[10,[272]]],[[47,[272]]]],0,0,0,0,0,0,[2],[2],0,[[]],[[]],[[]],[[]],[379,379],[380,380],[[]],[[]],[[],379],[44],[44],[44],[44],0,[44],[44],[[379,379],1],[[380,380],1],0,0,[[379,45],[[17,[46]]]],[[380,45],[[17,[46]]]],[[]],[[]],[[],44],[[],44],[[]],[[]],0,0,[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[381,381],[382,382],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[10,[9]]],[[17,[217]]]],[44],[44],[44],[44],[44],[44],[[252,45],[[17,[46]]]],[[381,45],[[17,[46]]]],[[382,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[[385,[[0,[383,384]]]]]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[385,[[0,[383,384]]]]],[[0,[383,384]]]],[[]],[[]],0,0,[[[386,[383]]],1],[[[385,[[0,[383,384]]]]],381],[[[386,[383]]],382],[[[0,[383,384]],381,[22,[[42,[44,38]]]],[22,[44]]],[[385,[[0,[383,384]]]]]],[[383,382,[22,[[42,[44,38]]]]],[[386,[383]]]],[[[385,[[0,[383,384]]]]],22],[[[386,[383]]],22],[[[385,[[0,[387,383,384]]]]],[[17,[[22,[[352,[[39,[37,38]]]]]],217]]]],[[[386,[383]]],[[17,[[22,[[352,[[39,[37,38]]]]]],217]]]],[[[0,[383,384]],[261,[77,[39,[37,38]],107]],381,[22,[[10,[44]]]],[22,[44]],44,[42,[9,38]],[42,[9,38]]],[[17,[[352,[[39,[37,38]]]],217]]]],[[[0,[383,384]],381,[42,[9,38]]],[[17,[[261,[77,[39,[37,38]],107]],217]]]],[[[0,[383,384]]],[[17,[381,217]]]],[383,[[17,[382,217]]]],[[[385,[[0,[383,384]]]]],153],[[[386,[383]]],153],0,0,[[[385,[[0,[383,384]]]]]],0,[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[388,[[352,[[39,[37,38]]]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[389,389],[390,390],[391,391],[[]],[[]],[[]],[391,[[352,[[39,[37,38]]]]]],0,[[],390],[[[10,[152]]],[[42,[379,38]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[389,389],1],[[390,390],1],[[391,391],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[391,[[22,[[10,[379]]]]]],0,[[[393,[392]]],[[17,[217]]]],[[[394,[392]]],[[17,[217]]]],[[389,45],[[17,[46]]]],[[390,45],[[17,[46]]]],[[391,45],[[17,[46]]]],[[]],[[]],[[]],[395,389],[[]],[[[352,[[39,[37,38]]]]],391],[[],391],[[],391],[[]],[[[394,[392]]],396],[[389,199]],[[390,199]],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[[393,[392]]],392],[[[394,[392]]],392],[[392,390],[[393,[392]]]],[[392,153,[22,[[42,[379,38]]]],390],[[394,[392]]]],[[153,[10,[379]]],[[42,[9,38]]]],[[[394,[392]],396]],[[[393,[392]],153,[22,[[42,[379,38]]]]],[[17,[217]]]],[[[394,[392]]],[[17,[217]]]],0,[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[[0,[383,384,392]],381,390],[[17,[[394,[[0,[383,384,392]]]],217]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[392,153,[22,[[42,[379,38]]]],390],[[17,[[394,[392]],217]]]],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[37,[42,[397,38]],[42,[9,38]],[42,[398,38]],77,1,[22,[389]]]],[[[393,[392]],[352,[[39,[37,38]]]],[22,[[10,[379]]]]],[[17,[217]]]],[[[394,[392]],[352,[[39,[37,38]]]],[22,[[10,[379]]]]],[[17,[217]]]],0,[[]],[[]],[44],[44],[44],[[]],[[],44],[[]],[[[0,[399,400,67]],153,[22,[[42,[379,38]]]],390],[[401,[[0,[399,400,67]]]]]],[[[202,[[401,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[401,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[401,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[401,[[0,[399,400,67]]]]]],391],[[17,[217]]]],[[],17],[[],17],[[],106],[[]],0,0,[[]],[[]],0,[44],[44],[44],[[]],[[],44],[[]],[[[0,[399,400,67]],153,[22,[[42,[379,38]]]],390],[[404,[[0,[399,400,67]]]]]],[[[202,[[404,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[404,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[404,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[404,[[0,[399,400,67]]]]]],391],[[17,[217]]]],[[],17],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],17],[[],17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[138,138],[23,[[405,[23]]]],[138,[[17,[44]]]],[[],406],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[138,27],17],[138,[[408,[138]]]],[[],22],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[],[[17,[22]]]],[[],[[17,[22]]]],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[[392,416],[[17,[217]]]],0,0,0,0,0,0,[[],17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[138,138],[138,[[17,[44]]]],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[138,27],17],[138,[[408,[138]]]],[[],22],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[],[[17,[22]]]],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[0,[383,384]],[10,[417]]],[[17,[[42,[[39,[418,38]],38]],249]]]],[[[0,[383,384]]],[[17,[419,249]]]],[[[0,[420,421,67,400]]],422],[[],17],[[],[[17,[423]]]],[[[425,[424]]],[[17,[249]]]],[[[426,[23]]],[[17,[249]]]],[427,[[17,[[423,[427]],249]]]],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[138,138],[417],[249,249],[417,417],[428,428],[429,429],[430,430],[431,431],[432,432],[433,433],[434,434],[435,435],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[417,436],[417,[[42,[437,38]]]],[[[42,[438,38]],[42,[439,38]],152,[22,[44]],44],[[17,[[39,[23,38]],217]]]],0,[429,[[10,[417]]]],[417,77],[429,44],[417,440],[138,[[17,[44]]]],[[157,441,[39,[37,38]]],[[39,[37,38]]]],[[157,441,[39,[37,38]]],[[39,[37,38]]]],0,[417,77],[[442,[42,[9,38]]],[[17,[443,249]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[417,428],0,[417,[[22,[77]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[428,428],1],[[431,431],1],[[432,432],1],[[433,433],1],[[434,434],1],[[435,435],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[417,77],[417,[[22,[62]]]],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[249,45],[[17,[46]]]],[[249,45],[[17,[46]]]],[[417,45],[[17,[46]]]],[[428,45],[[17,[46]]]],[[429,45],[[17,[46]]]],[[430,45],[[17,[46]]]],[[431,45],[[17,[46]]]],[[432,45],[[17,[46]]]],[[433,45],[[17,[46]]]],[[[423,[165]],45],[[17,[46]]]],[[427,45],[[17,[46]]]],[[434,45],[[17,[46]]]],[[435,45],[[17,[46]]]],[[441,45],[[17,[46]]]],[[138,27],17],[[]],[[]],[[]],[444,249],[251,249],[445,249],[246,249],[446,249],[447,249],[[]],[217,249],[[]],[[]],[[]],[[]],[[]],[448,431],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[138,[[408,[138]]]],[[],22],[[],22],[[[425,[424]]],22],[[[426,[23]]],22],[427,22],[[[0,[383,384]],429,12,[22,[[104,[25]]]],[42,[9,38]],44],[[449,[[0,[383,384]]]]]],[[[10,[417]],12],[[42,[417,38]]]],[[[10,[417]],10,12],[[42,[38]]]],[[417,[0,[383,384]],[22,[[104,[25]]]],[42,[9,38]],44],[[17,[[450,[[0,[383,384]]]],217]]]],[[417,[0,[420,400,67,421]],[42,[9,38]],[104,[25]],44],422],[417,1],[[431,199]],[[432,199]],[[433,199]],[[434,199]],[417,[[22,[77]]]],0,[419,[[17,[153,217]]]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[[10,[435]],44],441],[[[99,[78]]],77],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[425,[424]]]],[[[426,[23]]],[[42,[9,38]]]],[[[450,[383]]]],[[]],[[]],[[]],[[]],[[]],[417,436],0,[441,44],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[417,451],[157,44],0,[[424,[42,[9,38]]],[[425,[424]]]],[[23,[42,[9,38]]],[[426,[23]]]],[[383,417,[104,[25]],[42,[9,38]],44],[[450,[383]]]],[[436,428],417],[[452,[42,[62,38]],453],428],[[[42,[417,38]],44,44],429],[[453,[42,[38]]],427],[[[42,[[39,[23,38]],38]],[42,[152,38]]],454],[[[0,[383,384]],[42,[429,38]],153,[22,[44]],[22,[44]],[22,[[42,[[42,[[42,[[42,[455,38]],38]],38]],38]]]]],[[456,[[0,[383,384]]]]]],[[[0,[383,384]],153,[42,[429,38]],[22,[44]],[22,[44]],[22,[[42,[[42,[[42,[[42,[455,38]],38]],38]],38]]]]],[[457,[[0,[383,384]]]]]],[[[42,[[39,[23,38]],38]],44,[22,[44]]],458],[[[42,[[39,[459,38]],38]]],441],[[383,460,[104,[25]],[42,[9,38]],44],[[450,[383]]]],[[],[[17,[22]]]],[[[450,[383]]],22],[454,22],[[[456,[[0,[383,384]]]]],22],[[[457,[[0,[383,384]]]]],22],[458,22],[44,[[17,[22]]]],[429,44],[458,44],0,[417,77],[430,44],[[],344],0,[417,461],[[138,27],[[17,[[22,[44]]]]]],[203],[[[0,[383,384]],[10,[417]],12],[[17,[[42,[38]],217]]]],[[[0,[25,147]],[10,[417]],12],422],[[[0,[383,384]],429,[42,[152,38]],[22,[44]],[22,[44]],[22,[[42,[[42,[[42,[455,38]],38]],38]]]]],[[17,[[42,[[39,[23,38]],38]],217]]]],[[[0,[25,147]],429,[42,[152,38]],[22,[44]],[22,[44]],[22,[[42,[[42,[[42,[455,38]],38]],38]]]]],422],[[[0,[383,384]]],[[17,[419,217]]]],[[[0,[420,421,67,400]]],422],[[[0,[383,384]],[10,[417]]],[[17,[[42,[[42,[462,38]],38]],249]]]],0,0,[[[456,[[0,[383,384]]]]],153],0,[[]],[[[457,[[0,[383,384]]]]]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],0,[417,[[22,[[17,[[104,[463]],249]]]]]],[[[450,[383]],[42,[9,38]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[[[42,[38]],152,44,[22,[44]],[22,[[42,[[42,[455,38]],38]]]]],[[17,[[39,[23,38]],217]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[429,44],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[464,[[17,[432]]]],[[],17],[464,[[17,[433]]]],[[],17],[[],17],[[],17],[[],[[17,[434]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[417,77],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],17],[[],17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[138,138],[23,[[405,[23]]]],[138,[[17,[44]]]],[[],406],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[138,27],17],[138,[[408,[138]]]],[[],22],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[],[[17,[22]]]],[[],[[17,[22]]]],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],0,0,0,0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[465,465],[455,455],[[]],[[]],[[[10,[462]],44],[[17,[[42,[465,38]],249]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[465,465],1],[[455,455],1],[[466,466],1],[[467,467],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[465,45],[[17,[46]]]],[[455,45],[[17,[46]]]],[[466,45],[[17,[46]]]],[[467,45],[[17,[46]]]],[[]],[[]],[467,466],[[]],[[]],[429,1],[[465,199]],[[455,199]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],0,0,0,0,[[44,44],465],0,0,[[[0,[383,384]],[10,[417]],[10,[152]]],[[17,[[42,[466,38]],217]]]],[[[0,[383,384]],429,[10,[152]],25],[[17,[[42,[[42,[[42,[455,38]],38]],38]],217]]]],0,0,0,[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[419,[[17,[153,217]]]],0,0,0,[[[10,[453]]],[[42,[152,38]]]],[[[211,[62,62,38]]],[[17,[[22,[153]],217]]]],0,0,0,0,0,0,0,0,0,[[]],[[]],[44],[44],[[152,[10,[429]]],[[17,[468,217]]]],0,[44],[[468,468],1],[[468,45],[[17,[46]]]],[469,468],[[]],[[],44],[[]],0,0,0,[[],17],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[],17],[[[470,[23]]],17],[471,17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[[[0,[[51,[37]],67,68]],453,472,[10,[473]]],[[17,[[42,[[474,[[17,[443,217]]]],38]],217]]]],[[37,439,[10,[475]],472,473],[[17,[443,217]]]],[[37,439,472,473],[[17,[443,217]]]],[[37,439,[10,[475]],472,473],[[17,[[474,[[17,[443,217]]]],217]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[443,[[42,[9,38]]]],[138,138],[[157,473],1],[[453,453],1],[476,476],[452,452],[477,477],[419,419],[478,478],[479,479],[480,480],[481,481],[482,482],[473,473],[461,461],[483,483],[453,453],[484,484],[475,475],[472,472],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[476,476],156],[[477,477],156],[[419,44],485],0,0,[478,[[10,[428]]]],[[],156],[[],156],[[443,[42,[9,38]],479],[[17,[442,249]]]],[486,44],[486,440],0,[480,78],[481,9],[482,84],[138,[[17,[44]]]],0,0,0,[[],480],[[],481],[[],482],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,[[[487,[392]],[22,[[42,[476,38]]]]],[[17,[56,217]]]],[[476,476],1],[[452,452],1],[[477,477],1],[[479,479],1],[[480,480],1],[[481,481],1],[[482,482],1],[[473,473],1],[[461,461],1],[[483,483],1],[[453,453],1],[[484,484],1],[[475,475],1],[[472,472],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[478,[[10,[453]]]],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[476,45],[[17,[46]]]],[[452,45],[[17,[46]]]],[[477,45],[[17,[46]]]],[[419,45],[[17,[46]]]],[[478,45],[[17,[46]]]],[[486,45],[[17,[46]]]],[[443,45],[[17,[46]]]],[[442,45],[[17,[46]]]],[[479,45],[[17,[46]]]],[[480,45],[[17,[46]]]],[[481,45],[[17,[46]]]],[[482,45],[[17,[46]]]],[[473,45],[[17,[46]]]],[[461,45],[[17,[46]]]],[[483,45],[[17,[46]]]],[[453,45],[[17,[46]]]],[[484,45],[[17,[46]]]],[[475,45],[[17,[46]]]],[[472,45],[[17,[46]]]],0,[[138,27],17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[488,479],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[62,[42,[453,38]],489,[22,[490]],[22,[84]]],453],[[62,489,[22,[490]],[22,[433]],[42,[453,38]],[22,[84]]],453],[[62,461],453],[138,[[408,[138]]]],[[],22],[[[470,[23]]],22],[471,22],[453,483],[[[10,[475]]],44],[[476,199]],[[452,199]],[[477,199]],[[479,199]],[[480,199]],[[481,199]],[[482,199]],[[473,199]],[[461,199]],[[483,199]],[[484,199]],[486,430],0,[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[470,[23]]]],[[[487,[392]]],392],[[[487,[392]]]],[[]],[[]],[419,477],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[442,1],0,[419,[[22,[[42,[476,38]]]]]],0,0,[475,44],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],0,0,0,[478,12],[453,12],0,[[23,479,[42,[9,38]]],[[470,[23]]]],[[[0,[23,67,68]]],474],[[[0,[416,67,68]]],471],[[62,[200,[[22,[62]]]]],476],[[84,[42,[491,38]],77,[42,[492,38]],[200,[[22,[[42,[476,38]]]]]],[200,[[22,[62]]]],[200,[[22,[[42,[493,38]]]]]],[200,[[22,[494]]]],[200,[[22,[[42,[9,38]]]]]]],477],[[62,[42,[453,38]]],478],[[430,[42,[9,38]],440,44,452,[22,[44]]],486],[[23,479,[42,[9,38]]],[[470,[23]]]],[[],[[17,[22]]]],[474,22],[[[495,[[0,[[51,[37]],67,68]],23]]],22],[44,[[17,[22]]]],0,0,[[[10,[475]]],44],[486,44],[[[487,[392]]],472],[[[496,[[0,[399,67,400]]]]],472],[[[487,[392]]],478],[[[495,[[51,[37]],23]]],478],[[[496,[[0,[399,67,400]]]]],478],[[476,476],[[22,[156]]]],[[477,477],[[22,[156]]]],[[[202,[[496,[[0,[399,67,400]]]]]],402],[[403,[17]]]],[[[202,[[496,[[0,[399,67,400]]]]]],402],[[403,[17]]]],[[[202,[[496,[[0,[399,67,400]]]]]],402],[[403,[17]]]],[[138,27],[[17,[[22,[44]]]]]],0,[497,[[17,[476,445]]]],[497,[[17,[476,445]]]],[497,[[17,[477,445]]]],[497,[[17,[477,445]]]],0,[[[352,[[0,[[51,[37]],67,68]]]],[42,[[42,[473,38]],38]],[42,[453,38]],472],[[474,[[17,[[471,[442,217]],217]]]]]],0,0,[419,478],[[[487,[392]]],153],[[[496,[[0,[399,67,400]]]]],153],0,0,[[486,[42,[465,38]]]],[486,[[22,[[10,[465]]]]]],[[]],[474],[471],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[[10,[475]]]],[[37,[10,[475]],44,44]],[[[202,[[496,[[0,[399,67,400]]]]]],[352,[[39,[37,38]]]]],17],[486,[[22,[[17,[[104,[463]],249]]]]]],[498,422],[498,[[202,[[39,[422,38]]]]]],[498,422],[498,[[202,[[39,[422,38]]]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[37,[[42,[37,38]]]],[[37,453],[[17,[[42,[[42,[475,38]],38]],217]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[453,[[42,[439,38]]]],[153,[[17,[478,217]]]],[152,[[17,[453,217]]]],[[157,[0,[25,147]]],[[42,[38]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[437,[[17,[473]]]],[[],[[17,[461]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[12,[[17,[478,249]]]],[[62,461,489,[22,[434]],[22,[432]],[22,[84]]],[[17,[453,249]]]],[477,[[17,[419,249]]]],[[[10,[491]]],[[17,[453,249]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[78,[[17,[480,249]]]],[9,[[17,[481,249]]]],[84,[[17,[482,249]]]],[[392,153,472],[[17,[[487,[392]],217]]]],[[23,153,472,[42,[[42,[473,38]],38]]],[[17,[[495,[[51,[37]],23]],217]]]],[[[0,[399,67,400]],153,[42,[[42,[473,38]],38]],472],[[17,[[496,[[0,[399,67,400]]]],217]]]],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[486,44],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[487,[392]],[474,[[17,[[471,[442,217]],217]]]]],[[17,[217]]]],[[[42,[9,38]],1,[22,[88]],44,484],[[17,[217]]]],[[392,477],[[17,[56,249]]]],[[484,[10,[475]],[42,[9,38]]],[[17,[217]]]],0,[[476,499],[[17,[44,445]]]],[[477,499],[[17,[44,445]]]],[[476,500],422],[[477,500],422],0,0,0,0,[[381,[104,[[51,[[10,[9]]]]]]],[[17,[[261,[77,[39,[37,38]],107]],217]]]],[[381,[261,[77,[39,[37,38]],107]],[104,[[51,[[10,[9]]]]]],44],[[17,[[352,[[39,[37,38]]]],217]]]],0,0,0,0,[2],[2],[[[218,[270]]],[[10,[270]]]],[[[321,[270]]],[[10,[270]]]],[[]],[[]],[[]],[[]],[[[321,[270]]],[[179,[270]]]],[[[218,[270]]],44],[[[218,[[0,[147,270]]]]],[[218,[[0,[147,270]]]]]],[[[321,[[0,[147,270]]]]],[[321,[[0,[147,270]]]]]],[[]],[[]],[[],[[218,[270]]]],[[],[[321,[270]]]],[44],[44],[[[321,[270]]],[[10,[270]]]],[44],[44],[44],[44],[[[218,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,270]]]],270]]]],270]]]],270]]]],[218,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,270]]]],270]]]],270]]]],270]]]]],1],[[[321,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,270]]]],270]]]],270]]]],270]]]],[321,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,270]]]],270]]]],270]]]],270]]]]],1],[[],1],[[],1],[[],1],[[],1],[[[218,[270]],44]],[[[321,[270]]],270],[[[218,[[0,[165,270]]]],45],[[17,[46]]]],[[[321,[[0,[165,270]]]],45],[[17,[46]]]],[[[218,[84]]],[[218,[77]]]],[[]],[[[218,[270]]],[[321,[270]]]],[[[321,[84]]],[[321,[77]]]],[[]],[[],44],[[],44],[[]],[[]],[[[218,[270]]],[[42,[270,38]]]],[[[321,[270]]],[[179,[270]]]],[[[321,[270]]],[[105,[[321,[270]],[218,[270]]]]]],[[[218,[270]]],270],[[[321,[270]]],270],[[[218,[270]]],44],[[[321,[270]]],44],[[[218,[270]]],44],[[[321,[270]]],44],[[[321,[270]]],23],[[],[[218,[270]]]],[[],[[321,[270]]]],[[[42,[270,38]]],[[218,[270]]]],[[[179,[270]]],[[321,[270]]]],[44,[[218,[270]]]],[[[218,[270]]],[[22,[270]]]],[[[321,[270]]],270],[[[218,[270]],44]],[[[218,[270]]]],[[[321,[270]],44,44]],[[[321,[270]],44,44]],[[[218,[270]],44]],[[[321,[270]],44]],[[[218,[270]],44]],[[[321,[270]],44]],[[]],[[]],[[[218,[270]],23],[[17,[217]]]],[[[218,[270]],[218,[270]]],[[17,[217]]]],[[[218,[270]],[321,[270]],44,44],[[17,[217]]]],[[[218,[77]]],[[17,[[218,[84]]]]]],[[[42,[270,38]]],[[17,[[218,[270]]]]]],[[],17],[[[321,[77]]],[[17,[[321,[84]]]]]],[[[42,[270,38]]],[[17,[[321,[270]]]]]],[[[179,[270]]],[[17,[[321,[270]]]]]],[[],17],[49,[[17,[[218,[270]],217]]]],[23,[[17,[[218,[270]],217]]]],[[],17],[[],17],[[[218,[270]],270],[[17,[217]]]],[[[218,[270]],44],[[17,[217]]]],[[],106],[[],106],[[]],[[]],[44,[[218,[270]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[],134],[[[501,[275]]],134],[[[360,[272]]],134],[[[502,[270]]],134],[[[503,[270]]],134],[362,134],[[[504,[270]]],134],[505,134],[506,134],[507,134],[508,134],[509,134],[510,134],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[501,[[0,[147,275]]]]],[[501,[[0,[147,275]]]]]],[[[360,[[0,[147,272]]]]],[[360,[[0,[147,272]]]]]],[[[502,[[0,[147,270]]]]],[[502,[[0,[147,270]]]]]],[[[503,[[0,[147,270]]]]],[[503,[[0,[147,270]]]]]],[362,362],[[[504,[[0,[147,270]]]]],[[504,[[0,[147,270]]]]]],[505,505],[506,506],[507,507],[508,508],[509,509],[510,510],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],157],[[[501,[275]]],157],[[[360,[272]]],157],[[[502,[270]]],157],[[[503,[270]]],157],[362,157],[[[504,[270]]],157],[505,157],[506,157],[507,157],[508,157],[509,157],[510,157],[[],506],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[163,163],1],[[[501,[275]],[501,[275]]],1],[[[360,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,272]]]],272]]]],272]]]],272]]]],[360,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,272]]]],272]]]],272]]]],272]]]]],1],[[[502,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,270]]]],270]]]],270]]]],270]]]],[502,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,270]]]],270]]]],270]]]],270]]]]],1],[[[503,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,270]]]],270]]]],270]]]],270]]]],[503,[[0,[[164,[[0,[[164,[[0,[[164,[[0,[164,270]]]],270]]]],270]]]],270]]]]],1],[[362,362],1],[[[504,[270]],[504,[270]]],1],[[505,505],1],[[506,506],1],[[507,507],1],[[508,508],1],[[509,509],1],[[510,510],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[[501,[[0,[165,275]]]],45],[[17,[46]]]],[[[360,[[0,[165,272]]]],45],[[17,[46]]]],[[[502,[[0,[165,270]]]],45],[[17,[46]]]],[[[503,[[0,[165,270]]]],45],[[17,[46]]]],[[362,45],[[17,[46]]]],[[[504,[[0,[165,270]]]],45],[[17,[46]]]],[[505,45],[[17,[46]]]],[[506,45],[[17,[46]]]],[[507,45],[[17,[46]]]],[[508,45],[[17,[46]]]],[[509,45],[[17,[46]]]],[[510,45],[[17,[46]]]],[[]],[[[22,[272]]],[[360,[272]]]],[[]],[[[22,[[200,[62]]]]],[[502,[270]]]],[[]],[[]],[[[22,[[200,[[42,[9,38]]]]]]],[[503,[270]]]],[[[22,[1]]],362],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],1],[[[501,[275]]],1],[[[360,[272]]],1],[[[502,[270]]],1],[[[503,[270]]],1],[362,1],[[[504,[270]]],1],[505,1],[506,1],[507,1],[508,1],[509,1],[510,1],[[157,[22,[[39,[163,38]]]]],[[501,[275]]]],[[157,[22,[272]]],[[360,[272]]]],[[[22,[[200,[62]]]]],[[502,[270]]]],[[[22,[[200,[[42,[9,38]]]]]]],[[503,[270]]]],[[[22,[1]]],362],[[157,[22,[[39,[37,38]]]]],[[504,[270]]]],[[157,[22,[[39,[37,38]]]]],505],[[],506],[[157,[22,[[42,[[39,[163,38]],38]]]]],507],[[157,[22,[[39,[37,38]]]]],508],[[157,[22,[[200,[[42,[9,38]]]]]]],509],[[157,81,[39,[163,38]]],510],[[37,44],[[39,[163,38]]]],[[[360,[272]],157],[[360,[272]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[510,81],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[[501,[275]]],[[22,[[39,[163,38]]]]]],[[[360,[272]]],[[22,[272]]]],[[[502,[270]]],[[22,[12]]]],[[[503,[270]]],[[22,[[10,[9]]]]]],[362,[[22,[1]]]],[509,[[22,[[10,[9]]]]]],[510,[[39,[163,38]]]],[[[504,[270]]],[[39,[37,38]]]],[505,[[39,[37,38]]]],[507,[[10,[[39,[163,38]]]]]],[508,[[22,[[39,[37,38]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,[[77,232,361,511],77],[[77,232,361],77],[84,237],[84,158],[77,237],[77,158],[12,[[17,[512,217]]]],[12,[[17,[236,217]]]],[84,224],[84,224],[77,224],[77,224],[77,158],[77,158],[77,158],[[77,232,511],[[513,[511]]]],[[77,232],158],[77,158],[[232,232],74],[[[116,[270]],12],[[47,[77]]]],[[12,12],[[22,[77]]]],[[12,12,232],[[22,[77]]]],[[[116,[270]],12,62],[[17,[[47,[77]],217]]]],[[12,12,511],[[22,[77]]]],[[12,12,511,232],[[22,[77]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[365,365],[361,361],[367,367],[514,514],[[]],[[]],[[]],[[]],[[514,514],156],[[],156],[365,84],[361,84],0,[[],365],[[],361],[[],367],[[],514],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[365,365],1],[[361,361],1],[[367,367],1],[[514,514],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],0,[[365,45],[[17,[46]]]],[[365,45],[[17,[46]]]],[[361,45],[[17,[46]]]],[[361,45],[[17,[46]]]],[[367,45],[[17,[46]]]],[[367,45],[[17,[46]]]],[[514,45],[[17,[46]]]],[[514,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[[]],[[],365],[[],361],[[],367],[[],514],[86,367],[55,367],[[]],[[],365],[[],361],[[],367],[[],514],[[]],[44,22],[[268,268],514],[[365,199]],[[361,199]],[[514,199]],0,[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[[],1],[[],1],[[],1],[[],1],[365,84],[361,84],0,[365],[361],[514],[[340,44],[[349,[340]]]],[340,[[515,[340]]]],[[371,371],[[516,[371]]]],[[84,84],365],[[84,84,77],361],[[[349,[340]]],22],[[[515,[340]]],22],[[[516,[371]]],22],[361,77],[[514,514],[[22,[156]]]],[[44,44],[[22,[516]]]],0,[[[349,[340]]]],[[[515,[340]]]],[[[516,[371]]]],[[]],[365],[361],[367],[514],[367,86],[367,55],[[]],[365],[361],[367],[514],[[]],[[]],[[]],[[]],[[]],[[],62],[[],62],[[],62],[[],62],[[],44],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[517,517]],[[518,518]],[[519,519]],[[520,520]],[[521,521]],[[522,522]],[[523,523]],[[524,524]],[[525,525]],[[526,526]],[[527,527]],[[517,517]],[[518,518]],[[519,519]],[[520,520]],[[521,521]],[[522,522]],[[523,523]],[[524,524]],[[525,525]],[[526,526]],[[527,527]],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[517,517],[518,518],[519,519],[520,520],[521,521],[522,522],[523,523],[524,524],[525,525],[526,526],[528,528],[529,529],[530,530],[527,527],[531,531],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],517],[[],518],[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],528],[[],529],[[],530],[[],527],[[],531],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[10],[[[10,[9]]],517],[[[10,[86]]],518],[[[10,[78]]],519],[[[10,[56]]],520],[[[10,[81]]],521],[[[10,[79]]],522],[[[10,[84]]],523],[[[10,[77]]],524],[[[10,[55]]],525],[[[10,[74]]],526],[[[10,[367]]],528],[[[10,[365]]],529],[[[10,[361]]],530],[[[10,[268]]],527],[[[10,[514]]],531],[10],[[[10,[9]],9],517],[[[10,[86]],86],518],[[[10,[78]],78],519],[[[10,[56]],56],520],[[[10,[81]],81],521],[[[10,[79]],79],522],[[[10,[84]],84],523],[[[10,[77]],77],524],[[[10,[55]],55],525],[[[10,[74]],74],526],[[[10,[367]],367],528],[[[10,[365]],365],529],[[[10,[361]],361],530],[[[10,[268]],268],527],[[[10,[514]],514],531],0,0,0,0,0,0,[[517,44]],[[518,44]],[[519,44]],[[520,44]],[[521,44]],[[522,44]],[[523,44]],[[524,44]],[[525,44]],[[526,44]],[[528,44]],[[529,44]],[[530,44]],[[527,44]],[[531,44]],[[517,44]],[[518,44]],[[519,44]],[[520,44]],[[521,44]],[[522,44]],[[523,44]],[[524,44]],[[525,44]],[[526,44]],[[528,44]],[[529,44]],[[530,44]],[[527,44]],[[531,44]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[517,9],[518,86],[519,78],[520,56],[521,81],[522,79],[523,84],[524,77],[525,55],[526,74],[527,268],[[517,517],517],[[518,518],518],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[517,9],[518,86],[519,78],[520,56],[521,81],[522,79],[523,84],[524,77],[525,55],[526,74],[527,268],[[517,517],517],[[518,518],518],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],0,[[],517],[[],518],[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],527],[[],517],[[],518],[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],527],[[]],[[517,56,517],517],[[518,78,518],518],[[519,86,519],519],[[520,9,520],520],[[521,56,521],521],[[522,78,522],522],[[523,86,523],523],[[524,9,524],524],[[525,86,525],525],[[526,9,526],526],[[528,78,528],528],[[529,9,529],529],[[530,9,530],530],[[527,9,527],527],[[531,9,531],531],[517,9],[518,86],[519,78],[520,56],[521,81],[522,79],[523,84],[524,77],[525,55],[526,74],[527,268],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[369,[[42,[9,38]]]],[[369,[42,[9,38]]]],[369,62],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[238,238],[[238,238],238],[[[532,[511]],238],[[532,[511]]]],[[[513,[511]],533]],[[[513,[511]],238],[[513,[511]]]],[[[513,[511]],512],[[513,[511]]]],[[[513,[511]],534]],[[237,534]],[[237,533]],[[237,238],237],[[158,533]],[[158,512],158],[[158,238],158],[[158,534]],[[224,238],224],[[224,512],224],[[[532,[511]],238]],[[[513,[511]],238]],[[237,238]],[[158,238]],[[224,238]],[[[532,[511]],78,78,78],[[513,[511]]]],[[237,78,78,78],158],[[[532,[511]],78,78,78,78],[[513,[511]]]],[[237,78,78,78,78],158],[[[532,[511]],78,78,78,78],[[22,[[513,[511]]]]]],[[237,78,78,78,78],[[22,[158]]]],[[[535,[[532,[511]]]],78,78,78,78],[[535,[[513,[511]]]]]],[[[532,[511]],78,78,78,78],[[513,[511]]]],[[237,78,78,78,78],158],[[[532,[511]],78,78,78,78],[[22,[[513,[511]]]]]],[[237,78,78,78,78],[[22,[158]]]],[[[535,[[532,[511]]]],78,78,78,78],[[535,[[513,[511]]]]]],[[[532,[511]],78,78,78,78],[[513,[511]]]],[[237,78,78,78,78],158],[[[532,[511]],78,78,78,78],[[22,[[513,[511]]]]]],[[237,78,78,78,78],[[22,[158]]]],[[[535,[[532,[511]]]],78,78,78,78],[[535,[[513,[511]]]]]],[[[532,[511]],78,78,78],[[22,[[513,[511]]]]]],[[237,78,78,78],[[22,[158]]]],[[[535,[[532,[511]]]],78,78,78],[[535,[[513,[511]]]]]],[[158,511],[[535,[[513,[511]]]]]],[[[532,[511]],224],[[22,[[513,[511]]]]]],[[237,224],158],[[[535,[[532,[511]]]],224],[[535,[[513,[511]]]]]],[158,[[513,[536]]]],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]],537],513],[537,513],[537,513],[537,513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[238,238],[[22,[238]]]],[[[513,[511]],534],[[22,[[513,[511]]]]]],[[237,534],[[22,[237]]]],[[158,534],[[22,[158]]]],[[[513,[511]],533],[[22,[[513,[511]]]]]],[[237,533],[[22,[237]]]],[[158,533],[[22,[158]]]],[[[532,[511]],238],[[22,[[532,[511]]]]]],[[[513,[511]],238],[[22,[[513,[511]]]]]],[[237,238],[[22,[237]]]],[[158,238],[[22,[158]]]],[[238,238],[[22,[238]]]],[[[513,[511]],534],[[22,[[513,[511]]]]]],[[237,534],[[22,[237]]]],[[158,534],[[22,[158]]]],[[[513,[511]],533],[[22,[[513,[511]]]]]],[[237,533],[[22,[237]]]],[[158,533],[[22,[158]]]],[[[532,[511]],238],[[22,[[532,[511]]]]]],[[[513,[511]],238],[[22,[[513,[511]]]]]],[[237,238],[[22,[237]]]],[[158,238],[[22,[158]]]],[238,238],[538,538],[[[532,[[0,[147,511]]]]],[[532,[[0,[147,511]]]]]],[539,539],[[[513,[[0,[147,511]]]]],[[513,[[0,[147,511]]]]]],[540,540],[534,534],[237,237],[158,158],[541,541],[224,224],[512,512],[542,542],[536,536],[[[535,[147]]],[[535,[147]]]],[543,543],[544,544],[545,545],[546,546],[533,533],[547,547],[548,548],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[238,238],156],[[[532,[511]],[532,[511]]],156],[[[513,[511]],[513,[511]]],156],[[237,237],156],[[158,158],156],[[541,541],156],[[224,224],156],[[],156],[[],156],[[],156],[[],156],[[],156],[[],156],[[],156],[[[513,[511]]],[[532,[511]]]],[158,237],[[[513,[511]]],237],[[12,12],[[17,[513,540]]]],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[77,238],[549,[[550,[237]]]],[[],[[513,[536]]]],[[],[[513,[542]]]],[[],[[513,[512]]]],[[],237],[[],158],[[],224],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[538,12],[540,12],[543,12],[[238,84],238],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[238,17],[[[513,[511]],238],[[17,[[513,[511]]]]]],[[158,238],[[17,[158]]]],[238,17],[[[513,[511]],238],[[17,[[513,[511]]]]]],[[158,238],[[17,[158]]]],[535,22],[84,512],[84,[[22,[512]]]],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]],537],513],[537,513],[537,513],[537,513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[238,238],1],[[538,538],1],[[[532,[511]],[532,[511]]],1],[[539,539],1],[[[513,[511]],[513,[511]]],1],[[540,540],1],[[534,534],1],[[237,237],1],[[158,158],1],[[541,541],1],[[224,224],1],[[512,512],1],[[536,536],1],[[[535,[[164,[[164,[[164,[164]]]]]]]],[535,[[164,[[164,[[164,[164]]]]]]]]],1],[[543,543],1],[[544,544],1],[[545,545],1],[[546,546],1],[[533,533],1],[[547,547],1],[[548,548],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[549,237],[[],512],[512,512],[536,512],[[[513,[511]]],[[513,[512]]]],[[238,45],[[17,[46]]]],[[238,45],[[17,[46]]]],[[538,45],[[17,[46]]]],[[538,45],[[17,[46]]]],[[[532,[511]],45],[[17,[46]]]],[[[532,[511]],45],[[17,[46]]]],[[539,45],[[17,[46]]]],[[[513,[511]],45],[[17,[46]]]],[[[513,[511]],45],[[17,[46]]]],[[540,45],[[17,[46]]]],[[540,45],[[17,[46]]]],[[549,45],[[17,[46]]]],[[534,45],[[17,[46]]]],[[237,45],[[17,[46]]]],[[237,45],[[17,[46]]]],[[158,45],[[17,[46]]]],[[158,45],[[17,[46]]]],[[541,45],[[17,[46]]]],[[224,45],[[17,[46]]]],[[224,45],[[17,[46]]]],[[512,45],[[17,[46]]]],[[512,45],[[17,[46]]]],[[542,45],[[17,[46]]]],[[536,45],[[17,[46]]]],[[536,45],[[17,[46]]]],[[[535,[165]],45],[[17,[46]]]],[[543,45],[[17,[46]]]],[[543,45],[[17,[46]]]],[[544,45],[[17,[46]]]],[[544,45],[[17,[46]]]],[[545,45],[[17,[46]]]],[[545,45],[[17,[46]]]],[[546,45],[[17,[46]]]],[[533,45],[[17,[46]]]],[[547,45],[[17,[46]]]],[[548,45],[[17,[46]]]],[[548,45],[[17,[46]]]],0,[[[532,[511]],12],[[552,[551]]]],[[[513,[511]],12],[[552,[551]]]],[[237,12],[[552,[551]]]],[[158,12],[[552,[551]]]],[[224,12],[[552,[551]]]],[[[532,[511]],[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[[513,[511]],[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[237,[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[158,[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[224,[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[]],[[]],[[]],[[]],[[[513,[542]]],[[513,[536]]]],[553,[[513,[542]]]],[[[513,[536]]],[[513,[512]]]],[[[513,[512]]],[[513,[542]]]],[553,[[513,[536]]]],[[[513,[536]]],[[513,[542]]]],[[[513,[542]]],[[513,[512]]]],[[[513,[512]]],[[513,[536]]]],[[]],[[]],[[]],[[]],[158,237],[[]],[[]],[53,158],[[]],[[]],[53,224],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[78,78,78],224],[[78,78,78,78],224],[[78,78,78,78],[[22,[224]]]],[[78,78,78,78],224],[[78,78,78,78],[[22,[224]]]],[[78,78,78,78],224],[[78,78,78,78],[[22,[224]]]],[[78,78,78],[[22,[224]]]],[77,[[22,[544]]]],[77,[[22,[546]]]],[[84,78,544],237],[[84,78,544],[[22,[237]]]],[158,[[513,[511]]]],[237,[[535,[532]]]],[158,[[535,[513]]]],[84,237],[84,[[22,[237]]]],[[78,78],224],[[78,78],[[22,[224]]]],[[]],[512,512],[512,542],[536,536],[554,[[17,[238,538]]]],[12,[[17,[[513,[536]],540]]]],[12,[[17,[[513,[542]],540]]]],[12,[[17,[[513,[512]],540]]]],[12,[[17,[237,540]]]],[12,[[17,[158,540]]]],[12,[[17,[224,540]]]],[12,[[17,[544]]]],[12,[[17,[546]]]],[[77,78],158],[77,[[22,[158]]]],[77,[[22,[158]]]],[[77,78],[[22,[158]]]],[78,[[22,[546]]]],[56,[[22,[544]]]],[56,[[22,[546]]]],[237,[[532,[511]]]],[158,[[513,[511]]]],[237,532],[158,513],[[84,78,544,9],237],[[84,78,544,9],[[22,[237]]]],[[84,78,78],237],[[84,78,78],[[22,[237]]]],[[84,78],237],[[84,78],[[22,[237]]]],[[238,199]],[[[532,[511]],199]],[[539,199]],[[[513,[511]],199]],[[540,199]],[[534,199]],[[237,199]],[[158,199]],[[541,199]],[[224,199]],[[512,199]],[[536,199]],[[[535,[198]],199]],[[544,199]],[[546,199]],[[533,199]],[[548,199]],[[],78],[[[513,[511]]],78],[158,78],[224,78],[[]],[77,238],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[238,1],[[],541],[[[532,[511]]],541],[[[513,[511]]],541],[237,541],[158,541],[[84,78,544],532],[[84,78,544],[[535,[532]]]],[237,555],[237,556],[540,557],[549,237],[535,22],[238,558],[237,558],[158,558],[512,84],[[535,27],535],[[],238],[77,238],[77,238],[[],238],[[],78],[[[513,[511]]],78],[158,78],[224,78],[77,238],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[238,84],238],0,[[[532,[511]]],237],[[[513,[511]]],158],[[[532,[511]]],237],[[[513,[511]]],158],[546,12],[[],78],[[[513,[511]]],78],[158,78],[224,78],[77,238],[238,238],[56,534],[[237,224],158],[78,533],[[],513],[[],513],[[],[[513,[542]]]],[[],513],[[],[[513,[536]]]],[238,77],[[],84],[544,78],[544,78],[238,77],[238,[[22,[77]]]],[238,77],[238,77],[238,[[22,[77]]]],[238,77],[[],78],[224,78],[238,77],[544,78],[546,78],[544,78],0,[[[532,[511]]]],[[[513,[511]]]],[237,535],[[512,237],[[535,[512]]]],[[542,237],[[535,[512]]]],[[536,237],[[535,[536]]]],[158,535],[[512,158],[[535,[512]]]],[[542,158],[[535,[512]]]],[[536,158],[[535,[536]]]],[237],[[512,237],512],[[542,237],512],[[536,237],536],[158],[[512,158],512],[[542,158],512],[[536,158],536],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[224,238]],[[224,238]],[[12,12],[[17,[540]]]],[[12,12],[[17,[540]]]],[[12,12],[[17,[540]]]],[[12,12],[[17,[540]]]],[12,[[17,[[513,[512]],540]]]],[12,[[17,[[513,[512]],540]]]],[[12,12],[[17,[[513,[512]],540]]]],[[12,12],[[17,[237,540]]]],[[12,12],[[17,[158,540]]]],[[12,12],[[17,[224,540]]]],[[238,238],[[22,[156]]]],[[[532,[511]],[532,[511]]],[[22,[156]]]],[[[513,[511]],[513,[511]]],[[22,[156]]]],[[534,534],[[22,[156]]]],[[237,237],[[22,[156]]]],[[158,158],[[22,[156]]]],[[541,541],[[22,[156]]]],[[224,224],[[22,[156]]]],[[546,546],[[22,[156]]]],[[533,533],[[22,[156]]]],[[[532,[511]]],[[532,[511]]]],[237,237],[544,544],[546,546],[[[532,[511]]],[[22,[[532,[511]]]]]],[237,[[22,[237]]]],0,[203],[203],[203],[203],[203],[86],[86],[86],[86],[[],78],[[[513,[511]]],78],[158,78],[224,78],[77,238],[[[532,[511]],[532,[511]]],238],[[[513,[511]],[513,[511]]],238],[[237,237],238],[[158,158],238],[[224,224],238],[535,22],[[238,238],238],[[[532,[511]],238],[[532,[511]]]],[[[532,[511]],[532,[511]]],238],[[[513,[511]],[513,[511]]],238],[[[513,[511]],533]],[[[513,[511]],238],[[513,[511]]]],[[[513,[511]],512],[[513,[511]]]],[[[513,[511]],534]],[[237,533]],[[237,238],237],[[237,534]],[[237,237],238],[[158,534]],[[158,533]],[[158,158],238],[[158,238],158],[[158,512],158],[[224,238],224],[[224,224],238],[[224,512],224],[[[532,[511]],238]],[[[513,[511]],238]],[[237,238]],[[158,238]],[[224,238]],[[[532,[511]]],[[532,[511]]]],[237,237],[544,544],[546,546],[[[532,[511]]],[[22,[[532,[511]]]]]],[237,[[22,[237]]]],[23,238],[23,238],[[[513,[511]]],224],[158,224],[[77,78],513],[[[513,[511]]],77],[158,77],[[[513,[511]]],77],[158,77],[77,513],[[[513,[511]]],77],[158,77],[77,[[535,[513]]]],[77,513],[[[513,[511]]],77],[158,77],[[77,78],[[535,[513]]]],[[[513,[511]]],78],[158,78],[[[513,[511]]],78],[158,78],[[[513,[511]]],78],[158,78],[[[532,[511]]],511],[[[513,[511]]],511],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[513,[511]]],62],[[[513,[511]]],62],[[[513,[511]],539,1],62],[238,[[17,[554,538]]]],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],[[532,[542]]]],[[],[[532,[536]]]],[86],[86],[86],[86],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[9,[[17,[544]]]],[[],17],[[],17],[9,[[17,[546]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[[535,[165]]],165],[512,84],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[237,544],549],[541,78],[541,78],[[[513,[511]]],78],[[],544],[[[532,[511]]],544],[[[513,[511]]],544],[237,544],[158,544],[77,238],[84,512],[84,[[22,[512]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[158,78],[[22,[158]]]],[[224,78],[[22,[224]]]],[78,22],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[158,78],[[22,[158]]]],[[224,78],[[22,[224]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[158,78],[[22,[158]]]],[[224,78],[[22,[224]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[158,78],[[22,[158]]]],[[224,78],[[22,[224]]]],[[[532,[511]],511],[[532,[511]]]],[[[513,[511]],511],[[513,[511]]]],[84,22],[[[532,[511]],84],[[22,[[532,[511]]]]]],[[[513,[511]],84],[[22,[[513,[511]]]]]],[[237,84],[[22,[237]]]],[[158,84],[[22,[158]]]],[[84,78,78,78,78,78],[[535,[513]]]],[[],84],[[[532,[511]]],84],[[[513,[511]]],84],[237,84],[158,84],[541,84],[[]],[[[532,[511]],[532,[511]]],[[22,[78]]]],[[[513,[511]],[513,[511]]],[[22,[78]]]],[[237,237],[[22,[78]]]],[[84,78,78],532],[[84,78,78],[[535,[532]]]],[[84,78],532],[[84,78],[[535,[532]]]],[[],238],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[559,559],[560,560],[561,561],[562,562],[563,563],[564,564],[557,557],[565,565],[551,551],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],565],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[559,559],1],[[560,560],1],[[561,561],1],[[562,562],1],[[563,563],1],[[564,564],1],[[557,557],1],[[565,565],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[559,45],[[17,[46]]]],[[560,45],[[17,[46]]]],[[561,45],[[17,[46]]]],[[562,45],[[17,[46]]]],[[563,45],[[17,[46]]]],[[564,45],[[17,[46]]]],[[557,45],[[17,[46]]]],[[565,45],[[17,[46]]]],[[551,45],[[17,[46]]]],[[[552,[[0,[23,147]]]],45],[[17,[46]]]],[[[552,[165]],45],[[17,[46]]]],[[45,[22,[237]],[22,[224]],22,[0,[23,147]]],[[17,[46]]]],[[45,[22,[237]],[22,[224]],22,564],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[559,199]],[[560,199]],[[561,199]],[[562,199]],[[563,199]],[[564,199]],[[557,199]],[[565,199]],0,0,[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,[[],565],[12,551],[[[22,[237]],[22,[224]],[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[[22,[237]],[22,[224]],[0,[566,166]],[0,[23,147]]],[[552,[[0,[23,147]]]]]],[551,[[22,[564]]]],0,0,[[565,12,23],[[17,[540]]]],[[565,12,23],[[17,[12,540]]]],0,[[565,1],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,544],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],[[565,77],[[17,[540]]]],0,0,[565,[[17,[[513,[512]],540]]]],[[565,511],[[17,[[513,[511]],540]]]],[565,[[17,[512,540]]]],[565,[[17,[237,540]]]],[[565,84],[[17,[158,540]]]],[565,[[17,[224,540]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[12,12],[[17,[513,540]]]],[[],512],[237,[[535,[532]]]],[158,[[535,[513]]]],[[]],[237,532],[158,513],[[84,78,544],532],[[84,78,544],[[535,[532]]]],[237,535],[158,535],[237],[158],[[77,78],513],[77,513],[77,[[535,[513]]]],[77,513],[[77,78],[[535,[513]]]],[[84,78,78,78,78,78],[[535,[513]]]],[[84,78,78],532],[[84,78,78],[[535,[532]]]],[[84,78],532],[[84,78],[[535,[532]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[12,12],[[17,[513,540]]]],[[],78],[[],78],[[],512],[237,[[535,[532]]]],[158,[[535,[513]]]],[[]],[237,532],[158,513],[[],78],[[]],[[],541],[[84,78,544],532],[[84,78,544],[[535,[532]]]],[[],78],[[],78],[[],78],[[],78],[[],84],[[],78],[237,535],[158,535],[237],[158],[[],78],[[],78],[86],[[],78],[[77,78],513],[77,513],[77,[[535,[513]]]],[77,513],[[77,78],[[535,[513]]]],[86],[[],544],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[84,22],[[84,78,78,78,78,78],[[535,[513]]]],[[],84],[[]],[[84,78,78],532],[[84,78,78],[[535,[532]]]],[[84,78],532],[[84,78],[[535,[532]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[[]],[[]],[[],[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,297]]]]]]]]]]]]]]]]]]]],[[]],[[],[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,297]]]]]]]]]]]]]]]]]]]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],0,0,0,0,[[]],0,0,0,0,0,[[],[[0,[138,[267,[[0,[138,[267,[[0,[138,[267,[[0,[138,[267,[[0,[138,267]]]]]]]]]]]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,[567,567],[[]],[[]],[[567,567],567],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[73,[[22,[73]]]],[[]],[[]],[[],22],[[],22],[[],22],[[],22],[[],22],[[[0,[147,356,292]],44],[[22,[[0,[147,356,292]]]]]],[[],22],[[],22],[78,22],[78,22],[[],22],[[[180,[[180,[[180,[[180,[180]]]]]]]],[180,[[180,[[180,[[180,[180]]]]]]]],[180,[[180,[[180,[[180,[180]]]]]]]]],[[180,[[180,[[180,[[180,[180]]]]]]]]]],[[[180,[[180,[[180,[[180,[180]]]]]]]],[180,[[180,[[180,[[180,[180]]]]]]]]],[[180,[[180,[[180,[[180,[180]]]]]]]]]],[[[180,[[180,[[180,[[180,[180]]]]]]]],[180,[[180,[[180,[[180,[180]]]]]]]]],[[180,[[180,[[180,[[180,[180]]]]]]]]]],[[],568],[[]],[[]],[[]],[[],78],[[],78],[44],[44],[44],[44],[[]],[44],[44],[[]],[[]],[[]],[[]],0,[[]],[[569,45],[[17,[46]]]],[[570,45],[[17,[46]]]],[[570,45],[[17,[46]]]],[[]],[8,22],[[]],[[]],[[]],[[]],[55,22],[74,22],[268,22],[79,22],[84,22],[77,22],[81,22],[571,22],[[]],[[]],[[]],[[12,78],17],[259,22],[86,22],[78,22],[56,22],[9,22],[44,22],[[]],0,[[]],[[],44],[[],44],0,[[]],[[]],[[]],[[]],[[],1],[[],1],[[],1],[[],1],[[],1],[[[164,[[164,[[164,[[164,[164]]]]]]]]],1],[[],1],[[],1],[[],1],[[],1],[[],1],0,[[],78],[[],78],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],356],[[]],0,0,[[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,320]]]]]]]]]]]]]]]]]],44],[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,320]]]]]]]]]]]]]]]]]]]],[78],[[]],[[]],[84],0,[[]],[[]],[[]],[78],[78],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[78],[78],[567,567],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[22,[55]]]],[[],[[22,[74]]]],[[],[[22,[268]]]],[[],[[22,[79]]]],[[],[[22,[84]]]],[[],[[22,[77]]]],[[],[[22,[81]]]],[[],[[22,[571]]]],[[]],[[]],[[]],[[]],[[],62],[[],[[22,[259]]]],[[],[[22,[86]]]],[[],[[22,[78]]]],[[],[[22,[56]]]],[[],[[22,[9]]]],[[],[[22,[44]]]],[[],78],[[],78],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[78],[78],[[]],[[]],[[]],[[]],[[]],[78],[78],[[]],[[],572],[[]],0,0,0,[[]],[[]],[[]],[[]],0,0,0,0,[[]],[73,[[22,[73]]]],[8,22],[55,22],[74,22],[268,22],[79,22],[84,22],[77,22],[81,22],[571,22],[259,22],[86,22],[78,22],[56,22],[9,22],[44,22],[[],[[22,[55]]]],[[],[[22,[74]]]],[[],[[22,[268]]]],[[],[[22,[79]]]],[[],[[22,[84]]]],[[],[[22,[77]]]],[[],[[22,[81]]]],[[],[[22,[571]]]],[[],[[22,[259]]]],[[],[[22,[86]]]],[[],[[22,[78]]]],[[],[[22,[56]]]],[[],[[22,[9]]]],[[],[[22,[44]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[]],[[]],[[],[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,297]]]]]]]]]]]]]]]]]]]],[[]],[[],[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,297]]]]]]]]]]]]]]]]]]]],[[]],[[]],[[]],[[],[[0,[138,[267,[[0,[138,[267,[[0,[138,[267,[[0,[138,[267,[[0,[138,267]]]]]]]]]]]]]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],568],[[],568],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[84],[84],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[[[164,[[164,[[164,[[164,[164]]]]]]]]],1],[[],1],[[],356],[[]],[[]],[[]],[[],572],[[]],0,[[],78],[[],78],[[]],[[]],[[],78],[[],78],[78],[[]],[78],[78],[78],[78],[[]],[[]],[[]],[[],78],[[],78],[78],[78],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[[],22],[[],22],[[],22],[[],22],[[],22],[78,22],[78,22],[[],22],0,0,[[],22],[[],22],[[]],[[]],0,0,[[]],0,0,0,[[]],[[]],0,0,0,[[]],[[]],[[]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,[[]],[[]],[[]],[78],[78],[[]],0,0,[[[0,[147,356,292]],44],[[22,[[0,[147,356,292]]]]]],[[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,320]]]]]]]]]]]]]]]]]],44],[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,320]]]]]]]]]]]]]]]]]]]],[[]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],1],[[],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[84],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[567,567],[[]],[[567,567],567],[[]],[[],1],[[],1],[567,567],[[]],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],573],[[],574],[[],575],[[],576],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[574],[44],[44],[[573,45],[[17,[46]]]],[[574,45],[[17,[46]]]],[[575,45],[[17,[46]]]],[[576,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[573,22],[574,22],[575,[[22,[577]]]],[576,[[22,[1]]]],[[573,201]],[[574,201]],[[575,201],577],[[576,201],1],[[573,201],17],[[574,201],17],[[575,201],[[17,[577]]]],[[576,201],[[17,[1]]]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[],573],[[],574],[[],575],[[],576],[573,17],[[574,[39,[38]]],[[17,[[39,[38]]]]]],[[575,577],17],[[576,1],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,[2],[[]],[[]],[[]],[[]],[[[578,[147]]],[[578,[147]]]],[[[578,[147]],[578,[147]]]],[[]],[[],578],[[],[[579,[159]]]],[44],[44],[[[579,[201]]]],[44],[44],[[[579,[201]]]],[44],[44],[[[578,[[164,[[164,[[164,[164]]]]]]]],[578,[[164,[[164,[[164,[164]]]]]]]]],1],[[],1],[[],1],[[],1],[[],1],[[[578,[165]],45],[[17,[46]]]],[[[579,[165]],45],[[17,[46]]]],[[[579,[201]]]],[[[579,[201]]]],[168],[[],578],[[]],[[]],[578,22],[[[579,[201]]],22],[578,22],[[[579,[201]]],22],[[578,201]],[[578,201],17],[578],[[],44],[[],44],[[]],[[]],[578,22],[579,17],[[],578],[[],579],[578,17],[578,22],[[]],[[],17],[[],17],[578,17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],[578],[[],578],0,0,[2],[[]],[[]],[[]],[[]],[[[580,[147]]],[[580,[147]]]],[[[580,[147]],[580,[147]]]],[[]],[[],580],[[],[[581,[159]]]],[44],[[[581,[201]]]],[44],[44],[44],[[[581,[201]]]],[44],[44],[[[580,[[164,[[164,[[164,[164]]]]]]]],[580,[[164,[[164,[[164,[164]]]]]]]]],1],[[],1],[[],1],[[],1],[[],1],[[[580,[165]],45],[[17,[46]]]],[[[581,[165]],45],[[17,[46]]]],[[[581,[201]]]],[[[581,[201]]]],[[],580],[[]],[168],[[]],[580,22],[[[581,[201]]],22],[580,22],[[[581,[201]]],22],[[580,201]],[[580,201],17],[[],44],[[],44],[[]],[[]],[580,22],[581,17],[[],580],[[],581],[580,17],[580,22],[[]],[[],17],[[],17],[580,17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],[[],580],0,0,0,0,0,0,0,0,0,0,0,[2],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[582,582],[[[0,[25,68]]],[[42,[67,38]]]],[[583,[0,[25,68]]],[[42,[67,38]]]],[[[582,[584]]],[[17,[583,585]]]],[[[582,[584]]],[[17,[585]]]],[[[582,[586]],[0,[25,68]],201],[[17,[585]]]],[587,587],[[]],0,[[],44],[583,44],[583,[[22,[1]]]],[[],[[22,[44]]]],[583,[[22,[44]]]],[[],[[582,[586]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[585,12],[44],[44],[44],[44],[44],[583],[44],[44],[44],[44],[[587,587],1],[[],1],[[],1],[[],1],[[],1],[[582,[0,[25,67,68]]],582],[[588,45],[[17,[46]]]],[[589,45],[[17,[46]]]],[[590,45],[[17,[46]]]],[[591,45],[[17,[46]]]],[[583,45],[[17,[46]]]],[[582,45],[[17,[46]]]],[[587,45],[[17,[46]]]],[[585,45],[[17,[46]]]],[[585,45],[[17,[46]]]],[[592,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[201],[[583,201]],[201],[[583,201]],[588,44],[589,44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[583,[0,[201,67]]],67],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[[0,[201,67]],[0,[201,67]]]],[[583,[0,[201,67]],[0,[201,67]]]],[[[0,[201,67]],[0,[201,67]]]],[[],44],[592,1],[589,[[22,[12]]]],[593,[[17,[583,[39,[141,38]]]]]],[[],[[582,[586]]]],[588,44],[[582,44],582],0,[[582,[0,[25,67,68]]],582],0,[203],0,0,0,[589],[[[0,[201,67]]],67],[[583,[0,[201,67]]],67],[[[0,[201,67]]],67],[[583,[0,[201,67]]],67],0,[585,[[22,[141]]]],[[[0,[201,67]]]],[[590,[0,[201,67]]]],[[583,[0,[201,67]]]],[[[0,[25,67,68]]]],[[590,[0,[25,67,68]]]],[[591,[0,[25,67,68]]]],[[583,[0,[25,67,68]]]],[[[0,[201,67]]]],[[591,[0,[201,67]]]],[[583,[0,[201,67]]]],[[582,27],[[582,[[594,[27]]]]]],[589,[[22,[44]]]],[[582,44],582],[[582,[0,[25,67,68]]],582],0,0,[[582,27],582],[[]],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[22,[587]]]],[583,[[22,[587]]]],[[],[[22,[587]]]],[583,[[22,[587]]]],0,[2],[[]],[[]],[[[595,[[0,[147,67]]]]],[[595,[[0,[147,67]]]]]],[[]],[44],[44],[[[595,[67]],596]],[[[595,[67]],597]],[44],[[[595,[[0,[165,67]]]],45],[[17,[46]]]],[[]],[[],44],[[]],[[]],[[[595,[67]]],44],[[[595,[67]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],106],[[]],[[[595,[67]],598]],0,0,0,0,0,0,0,0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[599,[[0,[147,155,67]]]]],[[599,[[0,[147,155,67]]]]]],[[[600,[[0,[155,68]]]]],[[600,[[0,[155,68]]]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[[[599,[[0,[155,67]]]],596]],[[[600,[[0,[155,68]]]],596]],[[[601,[[0,[155,67]]]],596]],[[[599,[[0,[155,67]]]],597]],[[[600,[[0,[155,68]]]],597]],[[[601,[[0,[155,67]]]],597]],[44],[44],[[[601,[[0,[155,67]]]]]],[44],[[[599,[[0,[165,155,67]]]],45],[[17,[46]]]],[[[600,[[0,[165,155,68]]]],45],[[17,[46]]]],[[[601,[[0,[165,155,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[599,[[0,[155,67]]]]],44],[[[600,[[0,[155,68]]]]],44],[[[601,[[0,[155,67]]]]],44],[[[599,[[0,[155,67]]]]],[[22,[44]]]],[[[600,[[0,[155,68]]]]],[[22,[44]]]],[[[601,[[0,[155,67]]]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[[599,[[0,[155,67]]]],598]],[[[600,[[0,[155,68]]]],598]],[[[601,[[0,[155,67]]]],598]],0,0,0,[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[602,[[0,[155,68]],68]]],[[602,[[0,[155,68]],68]]]],[[]],[44],[44],[44],[44],[44],[44],[[[603,[[0,[155,67]],67]],597]],[[[602,[[0,[155,68]],68]],597]],[[[604,[[0,[155,68]],67]],597]],[44],[44],[44],[[[603,[[0,[165,155,67]],[0,[165,67]]]],45],[[17,[46]]]],[[[602,[[0,[165,155,68]],[0,[165,68]]]],45],[[17,[46]]]],[[[604,[[0,[165,155,68]],[0,[165,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[603,[[0,[155,67]],67]]],[[22,[44]]]],[[[602,[[0,[155,68]],68]]],[[22,[44]]]],[[[604,[[0,[155,68]],67]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],0,0,[2],[[]],[[]],[[]],[[]],[[[605,[[0,[155,68]]]]],[[605,[[0,[155,68]]]]]],[[]],[44],[44],[44],[44],[[[606,[[0,[155,67]]]],597]],[[[605,[[0,[155,68]]]],597]],[44],[44],[[[606,[[0,[165,155,67]]]],45],[[17,[46]]]],[[[605,[[0,[165,155,68]]]],45],[[17,[46]]]],[[]],[[]],[[],44],[[],44],[[]],[[]],[[]],[[]],[[[606,[[0,[155,67]]]]],[[22,[44]]]],[[[605,[[0,[155,68]]]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,0,0,0,[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[607,[[0,[198,254,68]],68]]],[[607,[[0,[198,254,68]],68]]]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[[[608,[[0,[198,254,67]],67]],597]],[[[607,[[0,[198,254,68]],68]],597]],[[[609,[[0,[198,254,68]],67]],597]],[[[610,[[0,[198,254,67]],67]],597]],[44],[44],[44],[44],[[[608,[[0,[165,198,254,67]],[0,[165,67]]]],45],[[17,[46]]]],[[[607,[[0,[165,198,254,68]],[0,[165,68]]]],45],[[17,[46]]]],[[[609,[[0,[165,198,254,68]],[0,[165,67]]]],45],[[17,[46]]]],[[[610,[[0,[165,198,254,67]],[0,[165,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[608,[[0,[198,254,67]],67]]],[[22,[44]]]],[[[607,[[0,[198,254,68]],68]]],[[22,[44]]]],[[[609,[[0,[198,254,68]],67]]],[[22,[44]]]],[[[610,[[0,[198,254,67]],67]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,0,[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[611,[[0,[198,254,68]]]]],[[611,[[0,[198,254,68]]]]]],[[]],[44],[44],[44],[44],[44],[44],[[[612,[[0,[198,254,67]]]],597]],[[[611,[[0,[198,254,68]]]],597]],[[[613,[[0,[198,254,67]]]],597]],[44],[44],[44],[[[612,[[0,[165,198,254,67]]]],45],[[17,[46]]]],[[[611,[[0,[165,198,254,68]]]],45],[[17,[46]]]],[[[613,[[0,[165,198,254,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[612,[[0,[198,254,67]]]]],[[22,[44]]]],[[[611,[[0,[198,254,68]]]]],[[22,[44]]]],[[[613,[[0,[198,254,67]]]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[614,[[0,[147,67]]]]],[[614,[[0,[147,67]]]]]],[[[615,[68]]],[[615,[68]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[[[614,[67]],597]],[[[615,[68]],597]],[[[616,[67]],597]],[44],[44],[44],[[[614,[[0,[165,67]]]],45],[[17,[46]]]],[[[615,[[0,[165,68]]]],45],[[17,[46]]]],[[[616,[[0,[165,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[614,[67]]],[[22,[44]]]],[[[615,[68]]],[[22,[44]]]],[[[616,[67]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],0,0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[617,[[0,[147,67]]]]],[[617,[[0,[147,67]]]]]],[[[618,[68]]],[[618,[68]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[[[617,[67]],596]],[[[618,[68]],596]],[[[619,[67]],596]],[[[620,[67]],596]],[[[617,[67]],597]],[[[618,[68]],597]],[[[619,[67]],597]],[[[620,[67]],597]],[44],[44],[44],[[[620,[67]]]],[44],[[[617,[[0,[165,67]]]],45],[[17,[46]]]],[[[618,[[0,[165,68]]]],45],[[17,[46]]]],[[[619,[[0,[165,67]]]],45],[[17,[46]]]],[[[620,[[0,[165,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[617,[67]]],44],[[[618,[68]]],44],[[[619,[67]]],44],[[[620,[67]]],44],[[[617,[67]]],[[22,[44]]]],[[[618,[68]]],[[22,[44]]]],[[[619,[67]]],[[22,[44]]]],[[[620,[67]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[[617,[67]],598]],[[[618,[68]],598]],[[[619,[67]],598]],[[[620,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[105,[23,23]],27],1],[[[0,[25,68,67]]],1],[[[105,[23,23]],27],1],[[[0,[25,68,67]]],1],[[[105,[[621,[10]],[621,[10]]]]],10],[[[105,[[621,[12]],[621,[12]]]]],12],[[[105,[[621,[171]],[621,[171]]]]],171],[[[105,[[621,[170]],[621,[170]]]]],170],[[[105,[[621,[169]],[621,[169]]]]],169],[105,105],[[[105,[621,621]]]],[[[202,[105]]],[[105,[202,202]]]],[[[202,[105]]],[[105,[202,202]]]],[[[105,[51,51]]]],[[[105,[[51,[171]],[51,[171]]]]],171],[[[105,[[51,[170]],[51,[170]]]]],170],[[[105,[[51,[12]],[51,[12]]]]],12],[[[105,[[51,[169]],[51,[169]]]]],169],[[[105,[[51,[10]],[51,[10]]]]],10],[105,105],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[105,[141,141]]],[[22,[141]]]],[50,622],[44,623],[[[105,[147,147]]],[[105,[147,147]]]],[[[624,[67]]],[[624,[67]]]],[[[622,[[0,[147,89]],[0,[147,89]]]]],[[622,[[0,[147,89]],[0,[147,89]]]]]],[[[623,[[0,[147,90]]]]],[[623,[[0,[147,90]]]]]],[[[625,[[0,[147,89]]]]],[[625,[[0,[147,89]]]]]],[[[626,[[0,[147,89]]]]],[[626,[[0,[147,89]]]]]],[[[627,[[0,[147,90]]]]],[[627,[[0,[147,90]]]]]],[[[628,[[0,[147,89]],147]]],[[628,[[0,[147,89]],147]]]],[[[629,[[0,[147,89]],147]]],[[629,[[0,[147,89]],147]]]],[[[630,[[0,[147,89]],147]]],[[630,[[0,[147,89]],147]]]],[[[631,[[0,[147,89]],147]]],[[631,[[0,[147,89]],147]]]],[[[632,[[0,[147,89]]]]],[[632,[[0,[147,89]]]]]],[[[633,[[0,[147,89]]]]],[[633,[[0,[147,89]]]]]],[[[634,[147,147,147]]],[[634,[147,147,147]]]],[[[635,[147,147,147]]],[[635,[147,147,147]]]],[[[636,[[0,[147,90]],147,147]]],[[636,[[0,[147,90]],147,147]]]],[[[637,[[0,[147,90]],147,147]]],[[637,[[0,[147,90]],147,147]]]],[[[638,[[0,[147,89]],147]]],[[638,[[0,[147,89]],147]]]],[[[639,[[0,[147,90]],[0,[147,90]]]]],[[639,[[0,[147,90]],[0,[147,90]]]]]],[[[640,[[0,[147,90]],[0,[147,90]]]]],[[640,[[0,[147,90]],[0,[147,90]]]]]],[[[641,[[0,[147,89]]]]],[[641,[[0,[147,89]]]]]],[[[642,[[0,[147,90]]]]],[[642,[[0,[147,90]]]]]],[[[643,[[0,[147,90]]]]],[[643,[[0,[147,90]]]]]],[[[644,[[0,[147,89]],147]]],[[644,[[0,[147,89]],147]]]],[[[645,[[0,[147,89]],147,147]]],[[645,[[0,[147,89]],147,147]]]],[[[646,[[0,[147,89]],147,147]]],[[646,[[0,[147,89]],147,147]]]],[[[647,[147]]],[[647,[147]]]],[[[648,[[0,[147,67]]]]],[[648,[[0,[147,67]]]]]],[[[649,[[0,[147,89]]]]],[[649,[[0,[147,89]]]]]],[[[344,[147]]],[[344,[147]]]],[[[650,[[0,[147,90]],147]]],[[650,[[0,[147,90]],147]]]],[[[651,[[0,[147,147,67]]]]],[[651,[[0,[147,147,67]]]]]],[[[652,[[0,[147,147,67]]]]],[[652,[[0,[147,147,67]]]]]],[[[653,[[0,[147,90]]]]],[[653,[[0,[147,90]]]]]],[[[654,[147]]],[[654,[147]]]],[[[655,[[0,[147,89]]]]],[[655,[[0,[147,89]]]]]],[[[656,[[0,[147,89]],147]]],[[656,[[0,[147,89]],147]]]],[[[657,[147,147]]],[[657,[147,147]]]],[[[658,[[0,[147,90]]]]],[[658,[[0,[147,90]]]]]],[[[659,[147]]],[[659,[147]]]],[[[660,[[0,[147,89]]]]],[[660,[[0,[147,89]]]]]],[[[661,[[0,[147,89]],147]]],[[661,[[0,[147,89]],147]]]],[[[662,[147,147,147,147]]],[[662,[147,147,147,147]]]],[[[664,[147,[0,[147,663]],147]]],[[664,[147,[0,[147,663]],147]]]],[[[665,[[0,[147,89]],147]]],[[665,[[0,[147,89]],147]]]],[[[666,[[0,[147,89]]]]],[[666,[[0,[147,89]]]]]],[[[667,[[0,[147,90]],[0,[147,90]]]]],[[667,[[0,[147,90]],[0,[147,90]]]]]],[[[668,[[0,[147,90]],[0,[147,90]]]]],[[668,[[0,[147,90]],[0,[147,90]]]]]],[[[105,[147,147]],[105,[147,147]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[89,[[625,[89]]]],[[[105,[155,155]],[105,[155,155]]],156],[50,156],[[[105,[23,23]]],162],[[],669],[[[42,[38]]]],[[],156],[[[105,[670,670]],44]],[89,[[626,[89]]]],[[[105,[23,23]]],44],[[],44],[[[105,[671,671]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[105,[377,377]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[105,[141,141]]],12],[596],[[[105,[90,90]],596]],[[[624,[67]],596]],[[[622,[90,90]],596]],[[[623,[90]],596]],[[[625,[90]],596]],[[[626,[90]],596]],[[[627,[90]],596]],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]],596]],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]],596]],[[[638,[90,[0,[25,68,67]]]],596]],[[[639,[90,90]],596]],[[[640,[90,90]],596]],[[[641,[90]],596]],[[[642,[90]],596]],[[[643,[90]],596]],[[[644,[90,[0,[25,68,67]]]],596]],[[[645,[90,[0,[67,147]],[0,[25,68,67]]]],596]],[[[646,[90,[0,[25,68,67]],[0,[25,68,67]]]],596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[[648,[67]],596]],[[[649,[90]],596]],[[[652,[[0,[147,67]]]],596]],[[[653,[90]],596]],[[[654,[90]],596]],[[[658,[90]],596]],[[[659,[90]],596]],[[[665,[90,[0,[25,67,68]]]],596]],[[[667,[90,90]],596]],[[[668,[90,90]],596]],[597],[[[105,[89,89]],597]],[[[624,[67]],597]],[[[622,[89,89]],597]],[[[623,[90]],[596,[[42,[38]]]]]],[[[625,[89]],597]],[[[626,[89]],597]],[[[627,[90]],597]],[[[628,[89,[0,[25,68,67]]]],597]],[[[629,[89,[0,[25,68,67]]]],597]],[[[630,[89,[0,[25,68,67]]]],597]],[[[631,[89,[0,[25,68,67]]]],597]],[[[632,[89]],597]],[[[633,[89]],597]],[[[634,[89,[0,[25,68,67]],[0,[25,68,67]]]],597]],[[[635,[89,[0,[67,147]],[0,[25,68,67]]]],597]],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]],[596,[67]]]],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]],[596,[[0,[67,147]]]]]],[[[638,[89,[0,[25,68,67]]]],597]],[[[639,[90,90]],596]],[[[640,[90,90]],596]],[[[641,[89]],597]],[[[642,[90]],597]],[[[643,[90]],597]],[[[644,[89,[0,[25,68,67]]]],597]],[[[645,[89,[0,[67,147]],[0,[25,68,67]]]],597]],[[[646,[89,[0,[25,68,67]],[0,[25,68,67]]]],597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[[648,[67]],597]],[[[649,[89]],597]],[[[344,[[0,[23,67]]]],597]],[[[650,[90,[0,[25,68,67]]]],597]],[[[651,[[0,[147,67]]]],597]],[[[652,[[0,[147,67]]]],597]],[[[653,[90]],597]],[[[654,[90]],597]],[[[655,[89]],597]],[[[656,[89,[0,[25,68,67]]]],597]],[[[657,[67,[0,[25,68,67]]]],597]],[[[658,[90]],597]],[[[659,[90]],597]],[[[660,[89]],597]],[[[661,[89,[0,[25,68,67]]]],597]],[[[662,[89,[0,[663,67]],[0,[25,68,67]],[0,[25,68,67]]]],597]],[[[664,[89,[0,[663,67]],[0,[25,68,67]]]],597]],[[[665,[89,[0,[25,67,68]]]],597]],[[[666,[89]],597]],[[[667,[90,90]],597]],[[[668,[90,90]],597]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[105,201,201]],[[[105,[200,200]]]],[[105,201,201]],[[],[[624,[67]]]],[[],[[162,[161]]]],[[],[[162,[161]]]],[[],627],[[[105,[[164,[[164,[[164,[164]]]]]],[164,[[164,[[164,[164]]]]]]]],[105,[[164,[[164,[[164,[164]]]]]],[164,[[164,[[164,[164]]]]]]]]],1],[50,1],[[],1],[[],1],[[],1],[[],1],[672,[[17,[246]]]],[[[105,[165]],12]],[[[105,[165]],12]],[[[105,[325,325]],49]],[[[105,[17,17]]],[[17,[105]]]],[105],[[[105,[22,22]]],[[22,[105]]]],[[[105,[17,17]]],[[17,[105]]]],[105],[[[105,[670,670]]],[[17,[[10,[9]],246]]]],[[[0,[25,68,67]]],[[628,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[629,[[0,[25,68,67]]]]]],[[[105,[23,23]],27],22],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],22],[[[105,[23,23]],27],22],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[630,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[631,[[0,[25,68,67]]]]]],[[],632],[[],633],[105,105],[[[105,[392,392]]],[[17,[246]]]],[[[105,[165,165]],45],[[17,[46]]]],[[[105,[166,166]],45],[[17,[46]]]],[[[624,[67]],45],[[17,[46]]]],[[[622,[[0,[165,89]],[0,[165,89]]]],45],[[17,[46]]]],[[[623,[[0,[165,90]]]],45],[[17,[46]]]],[[[625,[[0,[165,89]]]],45],[[17,[46]]]],[[[626,[[0,[165,89]]]],45],[[17,[46]]]],[[[627,[[0,[165,90]]]],45],[[17,[46]]]],[[[628,[[0,[89,165]]]],45],[[17,[46]]]],[[[629,[[0,[89,165]]]],45],[[17,[46]]]],[[[630,[[0,[89,165]]]],45],[[17,[46]]]],[[[631,[[0,[89,165]]]],45],[[17,[46]]]],[[[632,[[0,[165,89]]]],45],[[17,[46]]]],[[[633,[[0,[165,89]]]],45],[[17,[46]]]],[[[634,[[0,[89,165]]]],45],[[17,[46]]]],[[[635,[[0,[89,165]],165]],45],[[17,[46]]]],[[[636,[[0,[90,165]]]],45],[[17,[46]]]],[[[637,[[0,[90,165]],165]],45],[[17,[46]]]],[[[638,[[0,[89,165]]]],45],[[17,[46]]]],[[[639,[[0,[165,90]],[0,[165,90]]]],45],[[17,[46]]]],[[[640,[[0,[165,90]],[0,[165,90]]]],45],[[17,[46]]]],[[[641,[[0,[165,89]]]],45],[[17,[46]]]],[[[642,[[0,[165,90]]]],45],[[17,[46]]]],[[[643,[[0,[165,90]]]],45],[[17,[46]]]],[[[644,[[0,[89,165]]]],45],[[17,[46]]]],[[[645,[[0,[89,165]],165]],45],[[17,[46]]]],[[[646,[[0,[89,165]]]],45],[[17,[46]]]],[[[647,[165]],45],[[17,[46]]]],[[[648,[[0,[165,67]]]],45],[[17,[46]]]],[[[649,[[0,[165,89]]]],45],[[17,[46]]]],[[[344,[165]],45],[[17,[46]]]],[[[650,[[0,[90,165]]]],45],[[17,[46]]]],[[[651,[[0,[165,147,67]]]],45],[[17,[46]]]],[[[652,[[0,[165,147,67]]]],45],[[17,[46]]]],[[[653,[[0,[165,90]]]],45],[[17,[46]]]],[[[654,[165]],45],[[17,[46]]]],[[[655,[[0,[165,89]]]],45],[[17,[46]]]],[[[656,[[0,[89,165]]]],45],[[17,[46]]]],[[[657,[165]],45],[[17,[46]]]],[[[658,[[0,[165,90]]]],45],[[17,[46]]]],[[[659,[165]],45],[[17,[46]]]],[[[660,[[0,[165,89]]]],45],[[17,[46]]]],[[[661,[[0,[89,165]]]],45],[[17,[46]]]],[[[662,[[0,[89,165]]]],45],[[17,[46]]]],[[[664,[[0,[89,165]],663]],45],[[17,[46]]]],[[[665,[[0,[89,165]]]],45],[[17,[46]]]],[[[666,[[0,[165,89]]]],45],[[17,[46]]]],[[[667,[[0,[165,90]],[0,[165,90]]]],45],[[17,[46]]]],[[[668,[[0,[165,90]],[0,[165,90]]]],45],[[17,[46]]]],[[[105,[23,23]],27]],[[[0,[25,68,67]],[0,[25,68,67]]],[[634,[[0,[25,68,67]],[0,[25,68,67]]]]]],[[44,[0,[25,67,68]],[0,[25,67,68]]],[[636,[[0,[25,67,68]],[0,[25,67,68]]]]]],[[44,[0,[67,147]],[0,[25,67,68]]],[[637,[[0,[67,147]],[0,[25,67,68]]]]]],[[[0,[67,147]],[0,[25,68,67]]],[[635,[[0,[67,147]],[0,[25,68,67]]]]]],[[[105,[23,23]],27]],[[[0,[25,68,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[67,147]],[0,[25,68,67]]]],[[]],[17,105],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[50],[50,1],[50,1],[[[105,[198,198]],199]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[[0,[25,68,67]]],[[638,[[0,[25,68,67]]]]]],[50,639],[50,640],[[],641],[[]],[105,17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[105],[[[105,[49,49]]],105],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[105,1],[105,1],[[[105,[23,23]]],22],[50,1],[105,22],[[105,201],105],[105],[[[105,[159]]],159],[[105,201]],[[],44],[[[105,[90,90]]],44],[[[105,[69,69]]],44],[[[624,[67]]],44],[[[622,[90,90]]],44],[[[623,[90]]],44],[[[625,[90]]],44],[[[626,[90]]],44],[[[627,[90]]],44],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]]],44],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]]],44],[[[638,[90,[0,[25,68,67]]]]],44],[[[639,[90,90]]],44],[[[640,[90,90]]],44],[[[641,[90]]],44],[[[642,[90]]],44],[[[643,[90]]],44],[[[644,[90,[0,[25,68,67]]]]],44],[[[645,[90,[0,[67,147]],[0,[25,68,67]]]]],44],[[[646,[90,[0,[25,68,67]],[0,[25,68,67]]]]],44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[[[648,[67]]],44],[[[649,[90]]],44],[[[652,[[0,[147,67]]]]],44],[[[653,[90]]],44],[[[654,[90]]],44],[[[658,[90]]],44],[[[659,[90]]],44],[[[665,[90,[0,[25,67,68]]]]],44],[[[667,[90,90]]],44],[[[668,[90,90]]],44],[50,1],[[105,201],105],[[[0,[25,68,67]]],[[644,[[0,[25,68,67]]]]]],[[105,201,201],105],[[105,201,201],105],[[[0,[25,68,67]],[0,[25,68,67]]],[[646,[[0,[25,68,67]],[0,[25,68,67]]]]]],[[105,201],105],[[105,201],105],[[[0,[67,147]],[0,[25,68,67]]],[[645,[[0,[67,147]],[0,[25,68,67]]]]]],[[],22],[[[0,[68,67,25]]],22],[[[0,[68,67,25]]],22],[[],22],[[[0,[68,67,25]]],22],[[[0,[68,67,25]]],22],[50,1],[[[105,[23,23]]],22],[[[105,[43,43]]],22],[[[105,[23,23]],44],22],[67,[[648,[67]]]],[[[105,[89,89]]],[[22,[44]]]],[[[624,[67]]],[[22,[44]]]],[[],[[22,[44]]]],[[[622,[89,89]]],[[22,[44]]]],[[[623,[90]]],[[22,[44]]]],[[[625,[89]]],[[22,[44]]]],[[[626,[89]]],[[22,[44]]]],[[[627,[90]]],[[22,[44]]]],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]]],[[22,[44]]]],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]]],[[22,[44]]]],[[[638,[89,[0,[25,68,67]]]]],[[22,[44]]]],[[[639,[90,90]]],[[22,[44]]]],[[[640,[90,90]]],[[22,[44]]]],[[[641,[89]]],[[22,[44]]]],[[[642,[90]]],[[22,[44]]]],[[[643,[90]]],[[22,[44]]]],[[[644,[89,[0,[25,68,67]]]]],[[22,[44]]]],[[[645,[89,[0,[67,147]],[0,[25,68,67]]]]],[[22,[44]]]],[[[646,[89,[0,[25,68,67]],[0,[25,68,67]]]]],[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[[[648,[67]]],[[22,[44]]]],[[[649,[89]]],[[22,[44]]]],[[[652,[[0,[147,67]]]]],[[22,[44]]]],[[[653,[90]]],[[22,[44]]]],[[[654,[90]]],[[22,[44]]]],[[[658,[90]]],[[22,[44]]]],[[[659,[90]]],[[22,[44]]]],[[[665,[89,[0,[25,67,68]]]]],[[22,[44]]]],[[[667,[90,90]]],[[22,[44]]]],[[[668,[90,90]]],[[22,[44]]]],[[],649],[[],344],[[]],[673],[50],[[[105,[[674,[67]],[674,[67]]]],50]],[[]],[[]],[[[105,[[180,[[180,[[180,[180]]]]]],[180,[[180,[[180,[180]]]]]]]],[105,[[180,[[180,[[180,[180]]]]]],[180,[[180,[[180,[180]]]]]]]]],[[22,[156]]]],[50,[[22,[156]]]],[[[105,[23,23]],27]],[[[0,[25,68,67]]]],[[[0,[25,68,67]]]],0,[[[202,[[105,[422,422]]]],402],403],[[[105,[23,23]],27],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[650,[[0,[25,68,67]]]]]],[[],[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,675]]]]]]]]]]]]]]]]]]]],[203],[672,[[17,[246]]]],[[[105,[383,383]],[10,[9]]],[[17,[44,246]]]],[[[105,[383,383]],[10,[9]]],[[17,[246]]]],[[[105,[670,670]],62],[[17,[44,246]]]],[[[105,[383,383]],[42,[9,38]]],[[17,[44,246]]]],[[[105,[383,383]],62],[[17,[44,246]]]],[[[105,[670,670]],9,[42,[9,38]]],[[17,[44,246]]]],[[],[[17,[676,246]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[25,68,67]]],22],[[[0,[147,67]]],[[651,[[0,[147,67]]]]]],[[[0,[147,67]],44],[[652,[[0,[147,67]]]]]],[[],653],[[[105,[43,43]],27],22],[[[105,[43,43]],27]],[105,22],[[105,201],105],[105],[[[105,[159]]],159],[[105,201]],[[[105,[384,384]],677],[[17,[56,246]]]],[[[105,[23,23]]]],[44,654],[44,655],[[[0,[25,68,67]]],[[656,[[0,[25,68,67]]]]]],[[[105,[141,141]]],[[22,[141]]]],[[67,[0,[25,68]]],[[657,[67,[0,[25,68]]]]]],[44,658],[[],[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,354]]]]]]]]]]]]]]]]]]]],[201,[[17,[246]]]],[44,659],[[[651,[[0,[147,67]]]],44],[[652,[[0,[147,67]]]]]],[44,660],[[[0,[25,68,67]]],[[661,[[0,[25,68,67]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[[0,[25,68,67]],[0,[25,68,67]]],[[662,[[0,[663,67]],[0,[25,68,67]],[0,[25,68,67]]]]]],[[[0,[147,67]],[0,[25,68,67]]],[[664,[[0,[663,67]],[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[67,147]],[0,[25,68,67]]],[[0,[663,67]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[202,402],403],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[25,68,67]]],22],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[[105,[165]]]],[[[105,[165]]]],[89],[[90,[42,[67,38]],[42,[67,38]]]],[[[0,[25,68,67]]],[[665,[[0,[25,68,67]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[89,[[666,[89]]]],[44,643],[44,642],[598],[[[105,[90,90]],598]],[[[624,[67]],598]],[[[622,[90,90]],598]],[[[623,[90]],598]],[[[625,[90]],598]],[[[626,[90]],598]],[[[627,[90]],598]],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]],598]],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]],598]],[[[638,[90,[0,[25,68,67]]]],598]],[[[639,[90,90]],598]],[[[640,[90,90]],598]],[[[641,[90]],598]],[[[642,[90]],598]],[[[643,[90]],598]],[[[644,[90,[0,[25,68,67]]]],598]],[[[645,[90,[0,[67,147]],[0,[25,68,67]]]],598]],[[[646,[90,[0,[25,68,67]],[0,[25,68,67]]]],598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[[648,[67]],598]],[[[649,[90]],598]],[[[652,[[0,[147,67]]]],598]],[[[653,[90]],598]],[[[654,[90]],598]],[[[658,[90]],598]],[[[659,[90]],598]],[[[665,[90,[0,[25,67,68]]]],598]],[[[667,[90,90]],598]],[[[668,[90,90]],598]],[[[105,[392,392]],[10,[9]]],[[17,[44,246]]]],[[[105,[392,392]],[10,[9]]],[[17,[246]]]],[[[105,[392,392]],678],[[17,[246]]]],[676,[[17,[44,246]]]],[50,667],[[[651,[[0,[147,67]]]],50],[[667,[[652,[[0,[147,67]]]]]]]],[50,668],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[90,596]],[[44,679,596]],[[680,597]],[679],[[]],[[]],[49],[681,681],[681,681],[[],1],[[],1],[[]],[[]],[[],44],[[],44],[[]],[[]],[44],[44],[[]],[[]],0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[682,[[0,[147,67]]]]],[[682,[[0,[147,67]]]]]],[[[683,[68]]],[[683,[68]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[[[682,[67]],596]],[[[683,[68]],596]],[[[684,[67]],596]],[[[682,[67]],597]],[[[683,[68]],597]],[[[684,[67]],597]],[44],[44],[44],[[[682,[[0,[165,67]]]],45],[[17,[46]]]],[[[683,[[0,[165,68]]]],45],[[17,[46]]]],[[[684,[[0,[165,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[682,[67]]],44],[[[683,[68]]],44],[[[684,[67]]],44],[[[682,[67]]],[[22,[44]]]],[[[683,[68]]],[[22,[44]]]],[[[684,[67]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[[682,[67]],598]],[[[683,[68]],598]],[[[684,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[0,[25,68,67]]],1],[[[0,[25,68,67]]],1],[[],10],[[],10],[[],12],[50,622],[44,623],[89,[[625,[89]]]],[50,156],[[],669],[[[42,[38]]]],[89,[[626,[89]]]],[[],44],[596],[597],[[],627],[50,1],[[[0,[25,68,67]]],[[628,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[629,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[630,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[631,[[0,[25,68,67]]]]]],[[],632],[[],633],[[[0,[25,68,67]],[0,[25,68,67]]],[[634,[[0,[25,68,67]],[0,[25,68,67]]]]]],[[44,[0,[25,67,68]],[0,[25,67,68]]],[[636,[[0,[25,67,68]],[0,[25,67,68]]]]]],[[44,[0,[67,147]],[0,[25,67,68]]],[[637,[[0,[67,147]],[0,[25,67,68]]]]]],[[[0,[67,147]],[0,[25,68,67]]],[[635,[[0,[67,147]],[0,[25,68,67]]]]]],[[[0,[25,68,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[67,147]],[0,[25,68,67]]]],[50],[50,1],[50,1],[[[0,[25,68,67]]],[[638,[[0,[25,68,67]]]]]],[50,639],[50,640],[[],641],[[]],[50,1],[[],44],[50,1],[[[0,[25,68,67]]],[[644,[[0,[25,68,67]]]]]],[[[0,[25,68,67]],[0,[25,68,67]]],[[646,[[0,[25,68,67]],[0,[25,68,67]]]]]],[[[0,[67,147]],[0,[25,68,67]]],[[645,[[0,[67,147]],[0,[25,68,67]]]]]],[[],22],[[[0,[68,67,25]]],22],[[[0,[68,67,25]]],22],[[],22],[[[0,[68,67,25]]],22],[[[0,[68,67,25]]],22],[50,1],[[],[[22,[44]]]],[[],649],[[],344],[[],685],[[],686],[[],687],[44,688],[44,689],[44,690],[44,691],[[]],[673],[[],692],[50],[[]],[[]],[[],693],[694,[[695,[694]]]],[694,[[696,[694]]]],[44,697],[44,698],[44,699],[44,700],[[]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[[0,[25,68,67]]],[[701,[[0,[25,68,67]]]]]],[694,[[702,[694]]]],[[[0,[25,68,67]]],[[703,[[0,[25,68,67]]]]]],[694,[[704,[694]]]],[[],705],[44,706],[50,[[22,[156]]]],[[[0,[25,68,67]]]],[[[0,[25,68,67]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[650,[[0,[25,68,67]]]]]],[[],[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,675]]]]]]]]]]]]]]]]]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[25,68,67]]],22],[[],653],[44,654],[44,655],[[[0,[25,68,67]]],[[656,[[0,[25,68,67]]]]]],[44,658],[[],[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,354]]]]]]]]]]]]]]]]]]]],[44,659],[44,660],[[[0,[25,68,67]]],[[661,[[0,[25,68,67]]]]]],[[[0,[25,68,67]],[0,[25,68,67]]],[[662,[[0,[663,67]],[0,[25,68,67]],[0,[25,68,67]]]]]],[[[0,[147,67]],[0,[25,68,67]]],[[664,[[0,[663,67]],[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[67,147]],[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[25,68,67]]],22],[89],[[90,[42,[67,38]],[42,[67,38]]]],[[[0,[25,68,67]]],[[665,[[0,[25,68,67]]]]]],[89,[[666,[89]]]],[44,643],[44,642],[598],[50,667],[50,668],0,[2],[[]],[[]],[[[707,[147]]],[[707,[147]]]],[[]],[44],[44],[[[707,[708]],[596,[708]]]],[[[707,[161]],596]],[[[707,[161]],597]],[[[707,[709]],[597,[709]]]],[44],[[[707,[165]],45],[[17,[46]]]],[[]],[[],44],[[]],[[]],[[[707,[708]]],44],[[[707,[161]]],44],[[[707,[709]]],[[22,[44]]]],[[[707,[161]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],106],[[]],[[[707,[161]],598]],[[[707,[708]],[598,[708]]]],0,[2],[[]],[[]],[[[710,[147]]],[[710,[147]]]],[[]],[44],[44],[[[710,[161]],596]],[[[710,[711]],[596,[711]]]],[[[710,[712]],[597,[712]]]],[[[710,[161]],597]],[44],[[[710,[165]],45],[[17,[46]]]],[[]],[[],44],[[]],[[]],[[[710,[711]]],44],[[[710,[161]]],44],[[[710,[712]]],[[22,[44]]]],[[[710,[161]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],106],[[]],[[[710,[161]],598]],[[[710,[711]],[598,[711]]]],0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[713,[[0,[147,67]]]]],[[713,[[0,[147,67]]]]]],[[[714,[68]]],[[714,[68]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[[[713,[67]],596]],[[[714,[68]],596]],[[[715,[67]],596]],[[[713,[67]],597]],[[[714,[68]],597]],[[[715,[67]],597]],[44],[44],[44],[[[713,[[0,[165,67]]]],45],[[17,[46]]]],[[[714,[[0,[165,68]]]],45],[[17,[46]]]],[[[715,[[0,[165,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[713,[67]]],44],[[[714,[68]]],44],[[[715,[67]]],44],[[[713,[67]]],[[22,[44]]]],[[[714,[68]]],[[22,[44]]]],[[[715,[67]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[[713,[67]],598]],[[[714,[68]],598]],[[[715,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[[],10],[[],10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[701,[147]]],[[701,[147]]]],[[[688,[68]]],[[688,[68]]]],[[[689,[68]]],[[689,[68]]]],[[[697,[68]]],[[697,[68]]]],[[[698,[68]]],[[698,[68]]]],[[[716,[68]]],[[716,[68]]]],[[[706,[68]]],[[706,[68]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[688,[68]],596]],[[[689,[68]],596]],[[[691,[67]],596]],[[[690,[67]],596]],[[[697,[68]],596]],[[[698,[68]],596]],[[[700,[67]],596]],[[[699,[67]],596]],[[[716,[68]],596]],[[[706,[68]],596]],[[[717,[67]],596]],[[[701,[68,[0,[25,68,67]]]],597]],[[[703,[67,[0,[25,68,67]]]],597]],[[[688,[68]],597]],[[[689,[68]],597]],[[[691,[67]],597]],[[[690,[67]],597]],[[[697,[68]],597]],[[[698,[68]],597]],[[[700,[67]],597]],[[[699,[67]],597]],[[[716,[68]],597]],[[[706,[68]],597]],[[[717,[67]],597]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[701,[165]],45],[[17,[46]]]],[[[703,[165]],45],[[17,[46]]]],[[[688,[[0,[165,68]]]],45],[[17,[46]]]],[[[689,[[0,[165,68]]]],45],[[17,[46]]]],[[[691,[[0,[165,67]]]],45],[[17,[46]]]],[[[690,[[0,[165,67]]]],45],[[17,[46]]]],[[[697,[[0,[165,68]]]],45],[[17,[46]]]],[[[698,[[0,[165,68]]]],45],[[17,[46]]]],[[[700,[[0,[165,67]]]],45],[[17,[46]]]],[[[699,[[0,[165,67]]]],45],[[17,[46]]]],[[[716,[[0,[165,68]]]],45],[[17,[46]]]],[[[706,[[0,[165,68]]]],45],[[17,[46]]]],[[[717,[[0,[165,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[690,[67]]],[[10,[67]]]],[[[699,[67]]],[[10,[67]]]],[[[688,[68]]],44],[[[689,[68]]],44],[[[691,[67]]],44],[[[690,[67]]],44],[[[697,[68]]],44],[[[698,[68]]],44],[[[700,[67]]],44],[[[699,[67]]],44],[[[716,[68]]],44],[[[706,[68]]],44],[[[717,[67]]],44],[[[688,[68]]],[[22,[44]]]],[[[689,[68]]],[[22,[44]]]],[[[691,[67]]],[[22,[44]]]],[[[690,[67]]],[[22,[44]]]],[[[697,[68]]],[[22,[44]]]],[[[698,[68]]],[[22,[44]]]],[[[700,[67]]],[[22,[44]]]],[[[699,[67]]],[[22,[44]]]],[[[716,[68]]],[[22,[44]]]],[[[706,[68]]],[[22,[44]]]],[[[717,[67]]],[[22,[44]]]],[44,688],[44,689],[44,690],[44,691],[44,697],[44,698],[44,699],[44,700],[[]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[[0,[25,68,67]]],[[701,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[703,[[0,[25,68,67]]]]]],[44,706],[[[689,[68]]],[[10,[68]]]],[[[690,[67]]],[[10,[67]]]],[[[698,[68]]],[[10,[68]]]],[[[699,[67]]],[[10,[67]]]],[[[690,[67]]],[[10,[67]]]],[[[699,[67]]],[[10,[67]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[688,[68]],598]],[[[689,[68]],598]],[[[691,[67]],598]],[[[690,[67]],598]],[[[697,[68]],598]],[[[698,[68]],598]],[[[700,[67]],598]],[[[699,[67]],598]],[[[716,[68]],598]],[[[706,[68]],598]],[[[717,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[],12],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[687,687],[686,686],[685,685],[692,692],[[[702,[[0,[147,694]]]]],[[702,[[0,[147,694]]]]]],[[[704,[[0,[147,694]]]]],[[704,[[0,[147,694]]]]]],[693,693],[705,705],[[[696,[[0,[147,694]]]]],[[696,[[0,[147,694]]]]]],[[[695,[[0,[147,694]]]]],[[695,[[0,[147,694]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[687,597]],[[686,597]],[[685,597]],[[692,597]],[[[702,[694]],597]],[[[704,[694]],597]],[[693,597]],[[705,597]],[[[696,[694]],597]],[[[695,[694]],597]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[687,45],[[17,[46]]]],[[686,45],[[17,[46]]]],[[685,45],[[17,[46]]]],[[692,45],[[17,[46]]]],[[[702,[[0,[165,694]]]],45],[[17,[46]]]],[[[704,[[0,[165,694]]]],45],[[17,[46]]]],[[693,45],[[17,[46]]]],[[705,45],[[17,[46]]]],[[[696,[[0,[165,694]]]],45],[[17,[46]]]],[[[695,[[0,[165,694]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],685],[[],686],[[],687],[[],692],[[],693],[694,[[695,[694]]]],[694,[[696,[694]]]],[694,[[702,[694]]]],[694,[[704,[694]]]],[[],705],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[]],[[]],[44],[44],[[718,597]],[718],[44],[[718,45],[[17,[46]]]],[[]],[[],44],[[]],[[]],[[],17],[[],17],[[],106],[[]],0,0,[2],[[]],[[]],[[]],[[]],[[[719,[[0,[147,67]]]]],[[719,[[0,[147,67]]]]]],[[]],[44],[44],[44],[44],[[[719,[67]],596]],[[[720,[67]],596]],[[[719,[67]],597]],[[[720,[67]],597]],[44],[[[720,[67]]]],[44],[[[719,[[0,[165,67]]]],45],[[17,[46]]]],[[[720,[[0,[165,67]]]],45],[[17,[46]]]],[[]],[[]],[[],44],[[],44],[[]],[[]],[[]],[[]],[[[719,[67]]],44],[[[720,[67]]],44],[[[719,[67]]],[[22,[44]]]],[[[720,[67]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],[[[719,[67]],598]],[[[720,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[721,12],[722,12],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[723,[[17,[721,245]]]],[724,[[17,[725,245]]]],[[],726],0,[721,727],[721,728],[[721,12],[[22,[729]]]],[[721,12,44],[[22,[729]]]],[[721,12],730],[721,44],[[721,727,12],[[22,[722]]]],[[721,727,12,44],[[22,[722]]]],[[723,1],723],[[724,1],724],[723,723],[724,724],[245,245],[721,721],[722,722],[727,727],[728,728],[731,731],[732,732],[725,725],[733,733],[734,734],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[735,44],[730,44],[728,44],[731,44],[[723,1],723],[[724,1],724],[[],725],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[245,12],[[723,44],723],[[724,44],724],[[723,1],723],[[724,1],724],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],725],[722,44],[[245,245],1],[[722,722],1],[[],1],[[],1],[[],1],[[],1],[12,62],[[729,12,62]],[729],[[721,12],[[22,[722]]]],[[721,12,44],[[22,[722]]]],[[721,12],735],[[729,45],[[17,[46]]]],[[723,45],[[17,[46]]]],[[724,45],[[17,[46]]]],[[245,45],[[17,[46]]]],[[245,45],[[17,[46]]]],[[721,45],[[17,[46]]]],[[721,45],[[17,[46]]]],[[722,45],[[17,[46]]]],[[727,45],[[17,[46]]]],[[735,45],[[17,[46]]]],[[730,45],[[17,[46]]]],[[736,45],[[17,[46]]]],[[737,45],[[17,[46]]]],[[728,45],[[17,[46]]]],[[731,45],[[17,[46]]]],[[[726,[[0,[165,138]]]],45],[[17,[46]]]],[[732,45],[[17,[46]]]],[[725,45],[[17,[46]]]],[[733,45],[[17,[46]]]],[[738,45],[[17,[46]]]],[[734,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[12,[[17,[721,245]]]],[[729,44],[[22,[722]]]],[[727,44],22],[[723,1],723],[[724,1],724],[[729,12],12],[[729,44],12],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[733],[733],[[]],[[]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[722,1],[725,1],[[721,12],1],[[725,12],1],[[721,12,44],1],[[725,12,44],1],[729,731],[733,734],[729,44],[722,44],[727,44],[725,44],[733,44],[[723,9],723],[[724,9],724],[[733,44],1],[733,1],[[725,12],733],[[725,12,44],733],[[723,1],723],[[724,1],724],[[729,12],[[22,[722]]]],[[723,78],723],[[724,78],724],[12,723],[49,724],[12,[[17,[721,245]]]],[49,[[17,[725,245]]]],[735,[[22,[722]]]],[730,[[22,[729]]]],[736,[[22,[12]]]],[737,[[22,[12]]]],[728,[[22,[[22,[12]]]]]],[731,[[22,[[22,[722]]]]]],[738,[[22,[44]]]],[734,[[22,[44]]]],[738,[[22,[44]]]],[734,[[22,[44]]]],[[],[[22,[[83,[12]]]]]],[[[726,[[0,[739,138]]]]],[[22,[[83,[12]]]]]],[732,[[22,[[83,[12]]]]]],[[723,1],723],[[724,1],724],[[],344],[725,[[10,[62]]]],[203],[722,[[76,[44]]]],[[721,12,739],[[83,[12]]]],[[721,12,739],[[83,[12]]]],[[729,62]],[[[726,[[0,[739,138]]]],729,62]],[[732,729,62]],[[721,12,44,739],[[83,[12]]]],[[721,12],[[22,[44]]]],[[721,12,44],[[22,[44]]]],[737],[728],[731],[738],[734],[[723,44],723],[[724,44],724],[[721,12],736],[[721,12,44],737],[722,44],[721,[[22,[44]]]],[[723,1],723],[[724,1],724],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[62,[[17,[721,245]]]],[12,[[17,[721,245]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[723,1],723],[[724,1],724],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[740,[[10,[9]]]],[741,12],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[742,[[17,[741,245]]]],[743,[[17,[744,245]]]],[[],745],[741,746],[741,747],[[741,[10,[9]]],[[22,[748]]]],[[741,[10,[9]],44],[[22,[748]]]],[[741,[10,[9]]],749],[741,44],[[741,746,[10,[9]]],[[22,[740]]]],[[741,746,[10,[9]],44],[[22,[740]]]],[[742,1],742],[[743,1],743],[742,742],[743,743],[741,741],[740,740],[746,746],[747,747],[750,750],[751,751],[744,744],[752,752],[753,753],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[754,44],[749,44],[747,44],[750,44],[[742,1],742],[[743,1],743],[[],744],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[742,44],742],[[743,44],743],[[742,1],742],[[743,1],743],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],744],[740,44],[[740,740],1],[[],1],[[],1],[[],1],[[],1],[[748,[10,[9]],[42,[9,38]]]],[748],[[741,[10,[9]]],[[22,[740]]]],[[741,[10,[9]],44],[[22,[740]]]],[[741,[10,[9]]],754],[[748,45],[[17,[46]]]],[[742,45],[[17,[46]]]],[[743,45],[[17,[46]]]],[[741,45],[[17,[46]]]],[[741,45],[[17,[46]]]],[[740,45],[[17,[46]]]],[[746,45],[[17,[46]]]],[[754,45],[[17,[46]]]],[[749,45],[[17,[46]]]],[[755,45],[[17,[46]]]],[[756,45],[[17,[46]]]],[[747,45],[[17,[46]]]],[[750,45],[[17,[46]]]],[[[745,[[0,[165,138]]]],45],[[17,[46]]]],[[751,45],[[17,[46]]]],[[744,45],[[17,[46]]]],[[752,45],[[17,[46]]]],[[757,45],[[17,[46]]]],[[753,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[12,[[17,[741,245]]]],[[748,44],[[22,[740]]]],[[746,44],22],[[742,1],742],[[743,1],743],[[748,44],[[10,[9]]]],[[748,12],[[10,[9]]]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[752],[752],[[]],[[]],[740,1],[744,1],[[741,[10,[9]]],1],[[744,[10,[9]]],1],[[741,[10,[9]],44],1],[[744,[10,[9]],44],1],[748,750],[752,753],[748,44],[740,44],[746,44],[744,44],[752,44],[[742,9],742],[[743,9],743],[[752,44],1],[752,1],[[744,[10,[9]]],752],[[744,[10,[9]],44],752],[[742,1],742],[[743,1],743],[[748,12],[[22,[740]]]],[[742,78],742],[[743,78],743],[12,742],[49,743],[12,[[17,[741,245]]]],[49,[[17,[744,245]]]],[754,[[22,[740]]]],[749,[[22,[748]]]],[755,[[22,[[10,[9]]]]]],[756,[[22,[[10,[9]]]]]],[747,[[22,[[22,[12]]]]]],[750,[[22,[[22,[740]]]]]],[757,[[22,[44]]]],[753,[[22,[44]]]],[757,[[22,[44]]]],[753,[[22,[44]]]],[[],[[22,[[83,[[10,[9]]]]]]]],[[[745,[[0,[758,138]]]]],[[22,[[83,[[10,[9]]]]]]]],[751,[[22,[[83,[[10,[9]]]]]]]],[[742,1],742],[[743,1],743],[[],344],[744,[[10,[62]]]],[740,[[76,[44]]]],[[741,[10,[9]],758],[[83,[[10,[9]]]]]],[[741,[10,[9]],758],[[83,[[10,[9]]]]]],[[748,[42,[9,38]]]],[[[745,[[0,[758,138]]]],748,[42,[9,38]]]],[[751,748,[42,[9,38]]]],[[741,[10,[9]],44,758],[[83,[[10,[9]]]]]],[[741,[10,[9]]],[[22,[44]]]],[[741,[10,[9]],44],[[22,[44]]]],[756],[747],[750],[757],[753],[[742,44],742],[[743,44],743],[[741,[10,[9]]],755],[[741,[10,[9]],44],756],[740,44],[741,[[22,[44]]]],[[742,1],742],[[743,1],743],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[],17],[[],17],[[],17],[62,[[17,[741,245]]]],[12,[[17,[741,245]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[742,1],742],[[743,1],743],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[[242,[42,[15,38]],151],[[17,[16]]]],[[242,[10,[78]],1,1],242],[[242,[4,[13]]],[[17,[242,16]]]],[[242,242,759],[[17,[242,16]]]],[[242,242,15,15,759,1],[[17,[242,16]]]],[[242,242,15,15,759],[[17,[242,16]]]],[[242,77,44],242],[242,242],[242,242],[[242,12,201],[[17,[242,16]]]],[[242,44,201],[[17,[242,16]]]],[242,242],[242,242],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[242,242],[760,760],[761,761],[242,242],[[]],[[]],[[]],[[242,12],[[17,[15,16]]]],[[242,49],[[17,[[42,[15,38]],16]]]],[[242,242,[22,[12]],22],[[17,[242,16]]]],[[],761],[[],242],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[242,[22,[[10,[74]]]]],[[17,[242,16]]]],[44],[44],[44],[44],[[242,12],[[17,[242,16]]]],[44],[[242,12],[[17,[15,16]]]],[[242,[10,[[51,[12]]]]],242],[[242,[763,[12,107,762]]],242],[[242,[22,[[10,[[51,[12]]]]]]],[[17,[242,16]]]],[242,[[42,[35,38]]]],[[],242],[[761,761],1],[[242,242],1],[[],1],[[],1],[[],1],[[],1],[242,44],0,[[242,49],[[17,[242,16]]]],[[242,[42,[15,38]]],[[17,[242,16]]]],[[242,242],[[17,[16]]]],[242,[[42,[92,38]]]],[[242,146],[[17,[242,16]]]],[[242,[4,[13]]],[[17,[242,16]]]],[[242,12],[[22,[44]]]],[[760,45],[[17,[46]]]],[[761,45],[[17,[46]]]],[[242,45],[[17,[46]]]],[[242,45],[[17,[46]]]],[[242,242],1],[[242,242],1],[[242,242],[[17,[16]]]],[[]],[[]],[[]],[[]],[225,242],[151,242],[[]],[49,242],[[[10,[178]]],[[17,[242,16]]]],[[[10,[178]],151],[[17,[242,16]]]],[[23,151],[[17,[242,16]]]],[[242,44],[[22,[[42,[53,38]]]]]],[242,[[42,[12,38]]]],[242,[[42,[[114,[113]],38]]]],[242,[[10,[15]]]],[242,[[42,[15,38]]]],[[242,44],[[17,[178,16]]]],[[242,44,178],[[17,[16]]]],[[242,44,178]],[242,[[22,[[17,[35,16]]]]]],0,[[242,49],[[17,[764,16]]]],[[242,[42,[15,38]],765],[[17,[16]]]],[[242,[42,[15,38]],766],[[17,[16]]]],[[242,49],[[17,[764,16]]]],[[242,[42,[15,38]],1,1],[[17,[764,16]]]],0,[[242,[22,[44]]],242],[242,44],[242,[[17,[[22,[15]],16]]]],[[242,760],[[17,[[22,[15]],16]]]],[242,[[17,[[22,[15]],16]]]],[[242,[10,[15]]],[[17,[242,16]]]],[[242,[10,[15]]],[[17,[242,16]]]],[[242,[10,[15]]],242],[[242,760],[[17,[[22,[15]],16]]]],[[242,[767,[44]]]],[[242,[768,[44]]]],[[242,12]],[[242,769]],[[242,44]],[[242,[76,[44]]]],[[242,[770,[44]]]],[[242,[550,[44]]]],[[],44],[[],44],[[],44],[[],44],[[],44],[[242,44,771],[[17,[242,16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[242,12],225],[242,[[17,[[4,[13]],16]]]],[242,1],[242,[[17,[[4,[13]],16]]]],[242,[[40,[15]]]],[242,772],[242,773],[[242,242,12,12,150,[22,[53]],[22,[62]]],[[17,[242,16]]]],[[242,242,12,12,49,49,150,[22,[53]]],[[17,[242,16]]]],[242,774],[242,242],[242,242],[242,242],[[242,[775,[[114,[113]]]],[775,[[114,[113]]]]],[[17,[242,16]]]],[[242,776],[[17,[242,16]]]],[242,242],[242,44],[[[42,[771,38]]],[[17,[242,16]]]],[[[42,[15,38]]],242],[772,22],[773,22],[242,242],[[242,25],[[17,[16]]]],[[242,25],[[17,[16]]]],[[242,25],[[17,[16]]]],[242,[[22,[15]]]],[[242,242],1],[[242,74,91],[[17,[242,16]]]],[[242,12,12],[[17,[242,16]]]],[[242,12,771],[[17,[242,16]]]],[[242,44,771],[[17,[242,16]]]],[[242,12,771],[[17,[242,16]]]],[242,242],0,[[242,74,1,1,[22,[56]]],[[17,[242,16]]]],[[242,44,1,1,[22,[56]]],[[17,[242,16]]]],[242,151],[[242,49],[[17,[242,16]]]],[[242,44],[[22,[15]]]],[[242,[673,[44]]],[[17,[242,16]]]],[[242,49],[[17,[242,16]]]],[[242,[775,[[114,[113]]]]],[[17,[[42,[15,38]],16]]]],[[242,49,[104,[151]]],[[17,[242,16]]]],[[242,49,151],[[17,[242,16]]]],[[242,[10,[[51,[12]]]]],[[17,[16]]]],[242],[[242,77],242],[242,1],[242],[772],[773],[[242,77,44],242],[[242,77,44],242],[[242,[775,[[114,[113]]]],[775,[1]],1],[[17,[242,16]]]],[[242,[42,[15,38]],[42,[1,38]],1,1,22,1],[[17,[242,16]]]],[[242,[775,[[114,[113]]]],[775,[1]],1],[[17,[242,16]]]],[[242,12,29],[[17,[242,16]]]],[[242,9],242],[242,242],[[242,[22,[44]]],242],[[242,[4,[30]]],[[17,[242,16]]]],[[242,[0,[23,147,68,52]]],[[17,[242,16]]]],[[242,[0,[23,147,68,52]]],242],[[242,[0,[23,147,68,52]]],242],[[242,148],[[17,[[101,[102,[100,[[99,[44]]]]]],16]]]],[[]],[[]],[[]],[[],62],[[242,44,[775,[1]],[775,[[114,[113]]]]],[[17,[242,16]]]],[[242,[22,[12]],[22,[[105,[62,[42,[62,38]]]]]]],[[17,[242,16]]]],[[242,12,201],[[17,[242,16]]]],[[242,44,201],[[17,[242,16]]]],[[242,12],[[17,[44,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],[[17,[242,16]]]],[339,[[17,[242,16]]]],[[23,151],[[17,[242,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[242,[22,[[10,[62]]]],761,22],[[17,[242,16]]]],[[242,1,[22,[[10,[62]]]],761,22],[[17,[242,16]]]],[[242,[22,[[10,[62]]]],761,22],[[17,[242,16]]]],[[242,[775,[62]]],[[17,[242,16]]]],[[242,[775,[62]],12,239,239],[[17,[242,16]]]],[[242,[775,[62]],12,239,239],[[17,[242,16]]]],[[242,9],242],[[242,242],[[17,[242,16]]]],[[242,242],[[17,[242,16]]]],[[]],[[]],[[]],[[]],[[]],[242,44],[[242,771],[[17,[242,16]]]],[[242,771,151],[[17,[242,16]]]],[[242,15],242],[[242,12,[22,[78]]],[[17,[242,16]]]],[[242,12,[22,[78]]],242],0,[2],[[]],[[]],[776,776],[[]],[[],776],[44],[44],[44],[[776,776],1],[[776,45],[[17,[46]]]],[[]],0,[[],44],[[]],0,[[]],[[],17],[[],17],[[],106],0,0,0,[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[764,[[17,[242,16]]]],0,[777,[[10,[[42,[78,38]]]]]],[[764,[0,[27,67,68]]],[[17,[242,16]]]],[18,[[4,[3]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[777,777],[18,18],[764,764],[778,778],[[]],[[]],[[]],[[]],[764,[[17,[242,16]]]],[[],777],[[],18],[44],[44],[44],[44],[779],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,[[780,597]],[44],[44],[44],[44],[777],[44],[44],[44],[44],[[777,777],1],[[18,18],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],0,[781,78],[777,[[10,[78]]]],[764,[[17,[242,16]]]],[777,[[42,[78,38]]]],[[777,45],[[17,[46]]]],[[18,45],[[17,[46]]]],[[764,45],[[17,[46]]]],[[778,45],[[17,[46]]]],[[778,45],[[17,[46]]]],[[12,778],62],[[]],[[]],[[]],[[]],[[[42,[38]]],777],[[[42,[38]]],777],[[]],[[[42,[[42,[38]],38]]],777],[[]],[777,18],[[]],[782,778],[[]],[49,777],[50,777],[[18,44],781],[764,18],[764,18],[18,[[4,[30]]]],[[18,12],[[4,[30]]]],[[1,1],[[17,[18,16]]]],[764,[[17,[242,16]]]],[18,777],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[18,777],[[]],[777],[777],[[]],[777],[777],[781,1],[18,1],[777,1],[777,[[784,[[783,[[40,[78]]]],[40,[[42,[78,38]]]]]]]],[18,785],[764,[[42,[15,38]]]],[[764,22],[[42,[15,38]]]],[764,[[17,[242,16]]]],[781,44],[18,44],[764,[[17,[242,16]]]],[764,[[17,[242,16]]]],[764,[[17,[242,16]]]],[764,[[17,[242,16]]]],[764,[[17,[242,16]]]],[[[42,[78,38]],[42,[[42,[78,38]],38]],1],777],[[242,[42,[15,38]],18,[22,[[42,[62,38]]]]],764],[785,22],[[785,44],22],[[764,[0,[25,67,68]]],[[17,[242,16]]]],[[]],[18,780],[[764,74,91],[[17,[242,16]]]],[[764,49],764],[[18,77,44],779],[777],[18],[[764,9],[[17,[242,16]]]],[764,[[17,[242,16]]]],[18,[[42,[78,38]]]],[764,18],[764,18],[[]],[[]],[[]],[[]],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[18,18],[18,777],[18,[[42,[[99,[78]],38]]]],[[764,9],[[17,[242,16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[777,[0,[25,67,68]]],15],[[777,[0,[25,67,68]]],15],[[[10,[[99,[78]]]],[0,[25,67,68]]],15],[[[10,[[99,[78]]]],[0,[25,67,68]]],15],[[[10,[[0,[222,272]]]],[0,[23,52]],[22,[[104,[134]]]]],[[39,[37,38]]]],[[[10,[[0,[222,272]]]],88,[0,[23,52]],[22,[[104,[134]]]]],[[39,[37,38]]]],[[[4,[28]],78,78],[[4,[28]]]],[[[42,[[99,[78]],38]],[10,[[39,[37,38]]]]],1],[18,15],0,[[242,18],[[17,[15,16]]]],[[],[[17,[12,16]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[[35,35],[[17,[16]]]],[[242,242,1]],[[12,12],62],[[242,242,[22,[[10,[[99,[78]]]]]],[22,[[10,[[99,[78]]]]]]]],[[242,242,1],[[42,[38]]]],[[15,15,1,786],[[17,[16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[759,759],[787,787],[786,786],[[]],[[]],[[]],[[],786],[[],[[42,[[22,[78]],38]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[759,759],1],[[787,787],1],[[786,786],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[759,45],[[17,[46]]]],[[787,45],[[17,[46]]]],[[787,45],[[17,[46]]]],[[786,45],[[17,[46]]]],[[786,45],[[17,[46]]]],[787,759],[[]],[[]],[[]],0,[[],44],[[],44],[[],44],[[]],[[]],[[]],[[786,787,44],[[17,[16]]]],[786,1],[787,759],[[242,242,[22,[[10,[[99,[78]]]]]],[22,[[10,[[99,[78]]]]]]]],0,[759,12],0,[[]],[[]],[[]],[[],62],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],0,[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[[788,53],22],[[789,53]],[[789,53]],[[[10,[53]]],[[17,[16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[788,788],[789,789],[178,178],[[]],[[]],[[]],[[[10,[[263,[35]]]]],35],[[],178],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[178,178],1],[[],1],[[],1],[[],1],[[],1],[[178,45],[[17,[46]]]],[[]],[[],788],[[]],[[],789],[[]],[[23,44],151],[[],44],[[],44],[[],44],[[]],[[]],[[]],[788,15],[789,15],[[35,44],788],[[35,44],789],[[[42,[53,38]]],178],[[788,44],15],[[789,44],15],[[[10,[178]],[22,[44]]],151],[[[10,[178]],[22,[44]]],[[17,[151,16]]]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[[10,[15]],12],[[17,[[4,[11]],16]]]],[[[4,[71]],[4,[71]]],22],[[[4,[32]],[4,[32]]],[[22,[74]]]],[[[10,[242]]],[[17,[242,16]]]],[[[10,[242]]],[[17,[242,16]]]],[[[4,[71]],[4,[71]],9],22],[[[4,[32]],[4,[32]],9],[[22,[74]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[790,[387]],[22,[[104,[791]]]],[22,[[10,[44]]]]],[[17,[242,16]]]],[56,56],[792,558],[[792,558],[[17,[558,16]]]],[[792,558],[[17,[558,16]]]],[[792,558],[[17,[558,16]]]],[[],15],[[[22,[[42,[12,38]]]],[22,[12]],1],[[17,[242,16]]]],[558,558],[15],[[558,558]],[[239,77,[22,[236]]],[[17,[77,16]]]],[[239,77,[22,[236]]],[[17,[77,16]]]],[15,[[17,[15,16]]]],[[239,77,[22,[236]]],[[17,[77,16]]]],[[793,[51,[[10,[558]]]]],774],[558,558],0,[[558,12],558],[[],558],[[558,1],558],[[[51,[[10,[558]]]]],558],[[794,1],794],0,[[],1],[[],1],[795,1],[[],1],[[558,[200,[558]]],558],[[[104,[796]],797],[[17,[774,16]]]],[[558,1],558],[[[51,[[10,[558]]]]],558],[[558,[200,[558]],1],558],[[]],[[]],[[[22,[15]]],[[17,[16]]]],[22],[15,[[17,[16]]]],[[]],[[[0,[25,26]]]],[[793,[0,[25,67,68]],[104,[151]]],774],[[558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[558,558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[[0,[25,26]]],[[4,[5]]]],[[558,27],[[17,[800,16]]]],[25],[25,[[4,[28]]]],[[558,[0,[25,67,68]],[10,[558]],[799,[[104,[798]]]]],558],[[558,801,[10,[558]],1,1],558],[[[0,[25,67,68]],[51,[[10,[558]]]],[799,[[104,[798]]]],1],558],[[[0,[25,26]]]],[[25,10]],[[[0,[25,26]]]],[[[0,[25,26]]]],[[558,558,77],558],[558,558],[558,558],[339,[[104,[37]]]],[558,558],[558,558],[558,558],[[558,558],558],[558,558],[[],[[22,[44]]]],[802,558],[558,558],[[],[[22,[44]]]],[802,558],[558,558],[29,[[4,[30]]]],[[558,29],558],[29,[[4,[30]]]],[[[51,[[10,[558]]]],[10,[1]]],558],[34,[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[558,558],[[],[[17,[[4,[30]],16]]]],[[[200,[558]]],558],0,[558,803],0,0,[[[804,[387]]],[[17,[153,16]]]],[[[805,[383]]],[[17,[153,16]]]],[[],134],[795,134],[[],134],[339,134],[[],134],[339,134],[[],[[4,[6]]]],[[[22,[12]],1],[[17,[[59,[58,57]],16]]]],[[[22,[12]]],[[17,[[59,[58,57]],16]]]],[[[22,[12]],61,1,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[12]],61,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[],[[22,[558]]]],[[],[[4,[3]]]],[[],[[22,[806]]]],[807,558],[[],35],[[],15],[[],[[17,[44,16]]]],[[],[[10,[9]]]],[[],[[22,[808]]]],[809,[[22,[808]]]],[[[10,[558]]],558],[[[22,[12]],1],[[17,[[59,[70,60]],16]]]],[[],[[4,[11]]]],[12,558],[[558,[22,[78]]],558],[[],[[17,[[4,[11]],16]]]],[[],[[4,[11]]]],[[[59,[63,60]],61,236],[[59,[66,60]]]],[[[810,[392]],151],[[17,[[811,[392]],16]]]],[[[790,[387]],44],[[17,[812,16]]]],[[[813,[392]],151],[[17,[[814,[392]],16]]]],[[[810,[[0,[399,400,67]]]],151],[[17,[[815,[[0,[399,400,67]]]],16]]]],[[[816,[387]]],[[17,[817,16]]]],[[[816,[387]]],[[17,[818,16]]]],[[[816,[[39,[387,38]]]],[22,[[104,[151]]]]],[[17,[819,16]]]],[[[816,[[39,[387,38]]]],[22,[[104,[151]]]]],[[17,[820,16]]]],0,[558,821],[[558,822,558],558],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[774,78,[51,[[10,[558]]]],[51,[[10,[1]]]],1,1],774],[339,[[39,[37,38]]]],[[],[[39,[95,38]]]],[[],[[39,[96,38]]]],[[[0,[25,26]]],[[4,[5]]]],0,0,0,[774,774],0,0,0,[12,[[17,[62,16]]]],[[[10,[15]]],[[17,[[22,[15]],16]]]],[[15,15],[[17,[15,16]]]],0,0,[[558,35],558],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[[558,35],558],[35,[[17,[15,16]]]],0,[558,823],[558,558],[558,558],0,0,0,[44,[[17,[16]]]],[44,[[17,[16]]]],0,0,[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[8,[[17,[15,16]]]],[[],[[41,[[40,[[39,[37,38]]]]]]]],0,[[],[[42,[[39,[37,38]],38]]]],[[558,53,53],558],[[558,53],558],[[558,53],558],[824,824],[825,825],[176,176],[765,765],[766,766],[241,241],[826,826],[239,239],[827,827],[828,828],[829,829],[830,830],[831,831],[395,395],[832,832],[833,833],[834,834],[835,835],[488,488],[836,836],[837,837],[838,838],[795,795],[839,839],[797,797],[774,774],[793,793],[840,840],[841,841],[842,842],[843,843],[844,844],[807,807],[558,558],[845,845],[822,822],[[[799,[147]]],[[799,[147]]]],[846,846],[801,801],[847,847],[848,848],[849,849],[850,850],[851,851],[852,852],[853,853],[854,854],[855,855],[856,856],[857,857],[858,858],[859,859],[339,339],[[],[[104,[154]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,[[],[[22,[213]]]],0,[[239,239],156],[[[10,[558]]],558],[12,558],[774,[[17,[242,16]]]],[50,[[17,[[42,[242,38]],16]]]],[[[775,[62]]],558],[[[42,[12,38]],[22,[12]],1],[[17,[242,16]]]],[[],156],0,0,[[[51,[[10,[774]]]],836],[[17,[774,16]]]],[[[4,[11]]],[[4,[11]]]],[[[51,[[10,[[0,[[200,[558]],147]]]]]],1],[[17,[558,16]]]],[[[42,[774,38]]],[[17,[774,16]]]],[[837,[42,[774,38]]],[[17,[774,16]]]],[[[51,[[10,[[0,[[200,[558]],147]]]]]]],[[17,[558,16]]]],[[[51,[[10,[558]]]],12],558],[[[10,[9]]],[[17,[[4,[13]],16]]]],[[12,1],[[17,[[4,[13]],16]]]],[[802,[200,[558]]],558],[[[10,[9]]],[[17,[[4,[13]],16]]]],[12,[[17,[[4,[13]],16]]]],[558,558],[558,558],[558,558],[[],558],[558,558],[12,[[17,[[4,[30]],16]]]],[[558,558],558],[[860,392],[[39,[861,38]]]],[[862,392],[[39,[861,38]]]],[[774,774],774],[[558,1],558],[[558,[0,[25,67,68,147]],[51,[[10,[558]]]],1],558],[1,4],[[558,1],558],[1,4],[[558,1],558],[1,4],[[558,1],558],[[[0,[25,67,68,147]],[51,[[10,[558]]]]],558],[1,4],[[558,1],558],[[558,44,1],558],0,[339,157],0,0,[[558,558,239,827,[22,[61]],[22,[62]]],558],0,[847,558],[158,77],[158,77],[158,77],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[],[[4,[60]]]],[239,77],0,[239,1],0,0,[[],860],[[],862],[[],825],[[],176],[[],765],[[],766],[[],828],[[],395],[[],832],[[],488],[[],836],[[],838],[[],839],[[],797],[[],774],[[],558],[[],[[799,[[104,[798]]]]]],[[],[[799,[[104,[863]]]]]],[[],[[799,[[104,[864]]]]]],[[],848],[[],850],[[],851],[[],852],[[],853],[[],854],[[],856],[[],857],[[],858],[[],859],0,[558,558],[44],[44],[865],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[799],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[865],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,0,0,[859,62],[774,[[17,[62,16]]]],[774,62],0,0,[[[51,[[10,[774]]]],1,1],[[17,[774,16]]]],[[802,77,866],558],[[558,77,866],558],[15],[[558,558]],[15,[[17,[15,16]]]],[[558,[200,[558]]],558],[[859,62,867,[868,[62,62,107,762]]],[[17,[46]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[774,49],774],[558,558],[[774,[22,[[42,[558,38]]]]],774],[558,558],[[],15],[[[59,[63,60]],61,236],[[59,[66,60]]]],0,[558,869],[[],35],[[],35],0,[35,558],[[[51,[[10,[35]]]]],558],[848,558],[[[10,[9]]],[[4,[13]]]],[12,[[4,[13]]]],[[74,1],[[22,[74]]]],[[558,74,1],558],[[824,824],1],[[825,825],1],[[765,765],1],[[766,766],1],[[241,241],1],[[239,239],1],[[827,827],1],[[828,828],1],[[830,830],1],[[831,831],1],[[395,395],1],[[832,832],1],[[833,833],1],[[834,834],1],[[835,835],1],[[488,488],1],[[807,807],1],[[558,[200,[558]]],558],[[558,558],1],[[845,845],1],[[822,822],1],[[[799,[15]],[799,[15]]],1],[[[799,[[104,[138]]]],[799,[[104,[138]]]]],1],[[846,846],1],[[801,801],1],[[849,849],1],[[850,850],1],[[851,851],1],[[852,852],1],[[853,853],1],[[855,855],1],[[856,856],1],[[857,857],1],[[858,858],1],[[339,37],1],[[339,339],1],[[558,[200,[558]]],558],[[]],[[]],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[558,1],558],[[242,870],[[17,[15,16]]]],[[809,242],[[17,[15,16]]]],[[242,18,870],[[17,[871,16]]]],[[242,18,870],[[17,[15,16]]]],0,0,0,[[558,[775,[62]]],558],[[558,[51,[[10,[35]]]]],558],[[],15],[558,558],[[774,1],[[17,[62,16]]]],[[774,[51,[[10,[[0,[[200,[558]],147]]]]]]],774],[[],[[17,[15,16]]]],[558,558],[[],[[17,[16]]]],0,0,[860,173],[862,173],[[12,44],[[17,[[4,[11]],16]]]],[12,[[17,[[4,[3]],16]]]],[[[4,[11]]],[[17,[[4,[3]],16]]]],[[],1],[[774,44],[[17,[242,16]]]],[[],92],[[],[[83,[92]]]],[[872,77],558],[[872,12],558],[339,[[10,[152]]]],0,0,[[774,[200,[558]]],774],[[558,[200,[558]]],558],[[774,[200,[558]]],774],[[558,[200,[558]]],558],[138,[[17,[138,16]]]],[[138,[4,[13]]],[[17,[4,16]]]],[[[4,[13]]],[[17,[15,16]]]],[[774,558],774],[[558,[200,[558]]],558],[[15,18,870],[[17,[15,16]]]],[[],[[17,[242,16]]]],[242,[[17,[16]]]],[[],4],[[],[[17,[774,16]]]],[794,774],[[[816,[387]]],[[17,[242,16]]]],[[[873,[392]],242],[[17,[16]]]],[[[804,[387]]],[[17,[242,16]]]],[[[805,[383]]],[[17,[242,16]]]],[[[874,[392]],242],[[17,[16]]]],[[[810,[392]],242],[[17,[16]]]],[[[875,[392]],242],[[17,[16]]]],[[[876,[387]]],[[17,[242,16]]]],[[[877,[387]]],[[17,[242,16]]]],[[[790,[387]]],[[17,[242,16]]]],[[[813,[392]],242],[[17,[56,16]]]],[[],[[4,[3]]]],[[],[[17,[774,16]]]],[837,[[17,[774,16]]]],[795,[[17,[774,16]]]],[[[804,[387]],[22,[[104,[791]]]],1],[[17,[242,16]]]],[[],558],[802,558],[774,774],[558,558],0,[558,558],[[],[[799,[[104,[798]]]]]],[558,558],[[558,558],558],[[15,15],[[17,[15,16]]]],[[878,45],[[17,[46]]]],[[863,45],[[17,[46]]]],[[879,45],[[17,[46]]]],[[824,45],[[17,[46]]]],[[825,45],[[17,[46]]]],[[765,45],[[17,[46]]]],[[766,45],[[17,[46]]]],[[241,45],[[17,[46]]]],[[826,45],[[17,[46]]]],[[239,45],[[17,[46]]]],[[827,45],[[17,[46]]]],[[828,45],[[17,[46]]]],[[830,45],[[17,[46]]]],[[831,45],[[17,[46]]]],[[395,45],[[17,[46]]]],[[880,45],[[17,[46]]]],[[796,45],[[17,[46]]]],[[832,45],[[17,[46]]]],[[881,45],[[17,[46]]]],[[833,45],[[17,[46]]]],[[834,45],[[17,[46]]]],[[835,45],[[17,[46]]]],[[488,45],[[17,[46]]]],[[871,45],[[17,[46]]]],[[840,45],[[17,[46]]]],[[558,45],[[17,[46]]]],[[558,45],[[17,[46]]]],[[845,45],[[17,[46]]]],[[822,45],[[17,[46]]]],[[822,45],[[17,[46]]]],[[799,45],[[17,[46]]]],[[846,45],[[17,[46]]]],[[846,45],[[17,[46]]]],[[801,45],[[17,[46]]]],[[801,45],[[17,[46]]]],[[847,45],[[17,[46]]]],[[848,45],[[17,[46]]]],[[849,45],[[17,[46]]]],[[850,45],[[17,[46]]]],[[851,45],[[17,[46]]]],[[852,45],[[17,[46]]]],[[853,45],[[17,[46]]]],[[854,45],[[17,[46]]]],[[855,45],[[17,[46]]]],[[856,45],[[17,[46]]]],[[857,45],[[17,[46]]]],[[858,45],[[17,[46]]]],[[859,45],[[17,[46]]]],[[339,45],[[17,[46]]]],[[12,778],62],0,0,0,0,[[558,[0,[25,67,68,147]],[51,[[10,[558]]]]],558],[[794,1],794],0,0,[[12,[51,[[10,[558]]]]],[[17,[558,16]]]],[[558,[22,[78]]],558],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[177,176],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[859,774],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[86,558],[807,558],[[]],[12,558],[56,558],[84,558],[77,558],[79,558],[55,558],[81,558],[9,558],[78,558],[1,558],[74,558],[[]],[[]],[801,[[799,[[104,[878]]]]]],[882,[[799,[[104,[878]]]]]],[883,[[799,[[104,[878]]]]]],[846,[[799,[[104,[878]]]]]],[884,[[799,[[104,[878]]]]]],[[]],[885,[[799,[[104,[878]]]]]],[886,[[799,[[104,[878]]]]]],[[]],[846,801],[[]],[886,801],[883,801],[884,801],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[337,339],[[]],[288,339],[[[22,[88]]]],[[[179,[77]],[179,[9]],[22,[88]]]],[[[179,[77]],[179,[9]],[22,[88]]]],[49,[[865,[[4,[13]]]]]],[49,[[865,[[4,[5]]]]]],[[49,44],[[120,[77]]]],[49,[[120,[77]]]],[[12,23]],[[49,157],[[120,[77]]]],[49,[[865,[[4,[13]]]]]],[49,[[865,[[4,[5]]]]]],[[49,44],[[120,[77]]]],[[12,23]],[50,[[865,[[4,[5]]]]]],[[[200,[173]]],[[17,[[816,[887]],16]]]],[[[200,[173]]],[[17,[[877,[887]],16]]]],[[12,10]],[[12,[10,[22]]]],[52,[[865,[[4,[5]]]]]],[35,[[799,[[104,[798]]]]]],[12],0,[[12,44],138],[[12,44],138],[[558,[0,[25,67,68]],[799,[[104,[798]]]],888],558],[44,22],[44,22],[44,22],[44,[[17,[53,16]]]],[[802,558],558],[44,[[17,[53,16]]]],[44,[[17,[53,16]]]],[44,53],[44,53],[823,558],[774,854],[855,35],[[],35],[[829,77,[22,[236]]],[[17,[826,16]]]],[[829,77,[22,[236]]],[[17,[826,16]]]],[[829,77,[22,[236]]],[[17,[826,16]]]],[[151,889,92,92],[[22,[92]]]],[[151,889,[10,[92]]],92],[157,[[10,[152]]]],[107,56],[[],[[42,[12,38]]]],[44,[[22,[54]]]],[[],[[22,[[799,[[104,[798]]]]]]]],[[829,826,61,[22,[236]],828],[[17,[890,16]]]],[151,[[17,[[104,[151]],16]]]],[44,22],[44,53],[[138,44],22],[[138,44],22],[44,53],[[],44],[[],[[17,[[22,[[39,[23,38]]]],16]]]],[[1,1],[[17,[18,16]]]],[[774,[51,[[10,[[0,[[200,[558]],147]]]]]]],793],[[[42,[15,38]],765],[[17,[16]]]],[[774,558,[51,[[10,[558]]]],765],793],[[[42,[15,38]],766],[[17,[16]]]],[[774,558,[51,[[10,[558]]]],766],793],[[774,[51,[[10,[[0,[[200,[558]],147]]]]]]],793],[[239,239,[10,[77]],827,61,[22,[236]]],[[17,[[42,[[99,[78]],38]],16]]]],[[829,[10,[77]],827,61,[22,[62]],1,1,828]],[[]],[[558,[200,[558]]],558],[[]],[[558,[200,[558]]],558],[[[816,[387]],1],[[816,[387]]]],[[[873,[392]],1],[[873,[392]]]],[[837,1],837],[792,1],[[],1],[[],1],0,[[824,199]],[[825,199]],[[241,199]],[[239,199]],[[827,199]],[[828,199]],[[395,199]],[[833,199]],[[834,199]],[[835,199]],[[488,199]],[[558,199]],[[845,199]],[[846,199]],[[849,199]],[[850,199]],[[802,558],558],[[793,[22,[44]]],774],[[558,[22,[44]]],558],[[],[[17,[[4,[11]],16]]]],[[],[[4,[11]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[],[[4,[60]]]],0,[[794,787],794],0,0,[558,558],[158,1],0,0,0,[12,[[22,[44]]]],[[[10,[78]]],23],[[[816,[387]],[22,[44]]],[[816,[387]]]],[[[876,[387]],[22,[44]]],[[876,[387]]]],[[[877,[387]],[22,[44]]],[[877,[387]]]],0,[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],[[39,[37,38]]]],[[242,49,49],[[17,[242,16]]]],[[774,774,[200,[558]],[200,[558]]],774],[[558,558,77],558],[[558,558,77],558],0,[[15,824],15],[[558,824],558],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[339],[865],[[]],[558],[339],[[],802],[802,802],[[],558],[138,15],[792,[[17,[166,16]]]],[[],[[42,[38]]]],[239,1],[[],1],[558,558],[15,[[17,[[4,[13]],16]]]],[[],[[17,[[4,[13]],16]]]],[558,558],[[],1],[15,[[17,[[4,[13]],16]]]],[[558,[200,[558]]],558],[15,[[17,[[4,[13]],16]]]],[558,558],[[],[[17,[[4,[13]],16]]]],[[],[[4,[13]]]],[[],[[4,[13]]]],[[],[[17,[[4,[13]],16]]]],[[],1],[138,1],[558,558],[558,558],[558,558],[[],[[4,[13]]]],[558,558],[558,558],[[],[[4,[13]]]],[558,558],0,[792,1],[[],1],[792,1],[29,[[17,[1,16]]]],[[],72],[[],1],[239,1],[[],[[4,[57]]]],[[],[[4,[57]]]],[[],[[17,[[4,[57]],16]]]],[[812,44],891],[339,[[311,[[42,[[39,[163,38]],38]],892,310]]]],[[242,49,49,759],[[17,[242,16]]]],[[802,12],558],[[774,774,[51,[[10,[558]]]],[51,[[10,[558]]]],759],774],[774,794],0,[558,558],[[],558],[802,558],[774,774],[558,558],[[],774],0,[[242,49,49],[[17,[242,16]]]],[[774,774,[200,[558]],[200,[558]]],774],[[794,[51,[[10,[558]]]]],794],[[],44],[339,44],[802,558],[[774,78],774],[44,15],[558,802],[893,558],[[],558],[894,558],[855,558],[74,15],[[558,74],558],[[],15],[558,558],0,0,[[[816,[387]],1],[[816,[387]]]],[[[877,[387]],1],[[877,[387]]]],[[837,1],837],[[795,1],795],0,[558,558],[[],[[4,[30]]]],[[],[[4,[30]]]],[[[10,[15]]],[[17,[[4,[3]],16]]]],[[77,866],[[17,[[4,[3]],16]]]],[77,[[17,[15,16]]]],[12,[[17,[[4,[11]],16]]]],[[],[[4,[30]]]],[[],15],[[],15],[[],15],[[],[[4,[3]]]],[77,[[4,[3]]]],[[77,44],[[4,[3]]]],[29,[[4,[3]]]],[[],15],[[],[[17,[[4,[3]],16]]]],[[],[[17,[[4,[3]],16]]]],[[]],[[558,[200,[558]]],558],[[]],[[558,[200,[558]]],558],0,0,0,[[774,[0,[25,67,68]],854,[22,[[104,[881]]]],[22,[12]]],774],[[558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[558,[0,[25,67,68]]],558],[[558,558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[558,27],[[17,[558,16]]]],[[[0,[25,67,68]]],[[799,[[104,[798]]]]]],[[[0,[25,67,68]]],[[799,[[104,[798]]]]]],[[[0,[25,67,68]]],[[799,[[104,[798]]]]]],[[[0,[25,67,68]]],[[799,[[104,[798]]]]]],[[558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[[0,[25,67,68]],[51,[[10,[558]]]],[799,[[104,[798]]]]],558],[[558,[0,[25,67,68]],[10,[558]],[799,[[104,[798]]]]],558],[[558,801,[10,[558]],1],558],[[[0,[25,67,68]],[51,[[10,[558]]]],[799,[[104,[798]]]]],558],0,[12,558],[803,558],[802,558],[774,774],[[],22],[558,558],[[],15],[[],15],[[[51,[[10,[558]]]]],558],[12,558],[802,558],[774,774],[[],[[22,[74]]]],[558,558],[[],[[22,[74]]]],[12,558],[774,774],[[],22],[558,558],[[],[[22,[74]]]],[[],15],[[],15],[[774,776],774],0,[[[804,[387]],1],[[804,[387]]]],[[35,35],[[17,[35,16]]]],[558,792],0,0,0,0,[[],[[4,[60]]]],0,[[],[[4,[60]]]],0,[12,558],[803,558],[802,558],[774,774],[[],22],[558,558],[[],15],[[],15],[[[51,[[10,[558]]]]],558],0,0,0,0,[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[],[[4,[60]]]],0,[[],[[17,[4,16]]]],[558,558],[[],[[17,[15,16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[138,[22,[236]]],[[17,[138,16]]]],[[138,[22,[236]]],[[17,[138,16]]]],[239,77],[239,1],[15],[[239,77],239],[[558,558]],[15,[[17,[15,16]]]],0,0,[558,895],[[],44],[[],[[22,[44]]]],[837,[[22,[44]]]],[795,[[22,[44]]]],0,0,0,0,[[],[[17,[44,16]]]],[558,558],[[],[[17,[44,16]]]],[[],12],0,0,0,[558,558],[558,558],0,[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[[],[[4,[60]]]],[239,77],0,[44,[[22,[44]]]],[[558,[200,[558]]],558],[[558,[200,[558]]],558],[[]],[[],138],[[]],[12],[[],865],[774,794],[387,[[816,[387]]]],[392,[[873,[392]]]],[387,[[804,[387]]]],[383,[[805,[383]]]],[392,[[874,[392]]]],[[],860],[392,[[810,[392]]]],[[],862],[392,[[875,[392]]]],[387,[[876,[387]]]],[387,[[877,[387]]]],[387,[[790,[387]]]],[77,239],[[[39,[896,38]],419,44,[22,[[42,[44,38]]]],[22,[897]],44,1],[[17,[812,16]]]],[[239,239,239],829],[[392,392],[[813,[392,392]]]],[[[51,[171]]],837],[[[51,[171]]],795],[[],799],[[558,558,558],847],[[],848],[[157,[42,[[39,[37,38]],38]],[22,[88]]],339],[[[0,[399,400,67]]],[[810,[[0,[399,400,67]]]]]],[157,339],[[44,44],4],[[44,44],15],[[157,44],339],[890,22],[[812,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[558,[42,[558,38]]]],[[558,[42,[558,38]]]],[558,558],[558,558],[[]],[[]],0,[[],44],[774,774],[558,558],0,[[[790,[387]]],[[17,[44,16]]]],0,0,0,0,[[794,[51,[[10,[558]]]]],794],[[],35],[[774,[899,[898]],[899,[900]]],[[17,[901,16]]]],[[558,[200,[558]]],558],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[57]],16]]]],0,[[842,[200,[558]]],558],[[844,[200,[558]]],558],[[242,49,49],[[17,[242,16]]]],[[774,774,[200,[558]],[200,[558]]],774],[792,[[17,[[104,[12]],16]]]],0,[[558,[51,[[10,[[0,[[200,[558]],147]]]]]]],558],[[558,[51,[[10,[[0,[[200,[558]],147]]]]]],852],558],0,0,[12,239],[[12,[10,[12]],12],[[59,[58,57]]]],[[12,[10,[12]],12],[[59,[70,60]]]],[[12,[10,[12]],12,61],[[59,[63,60]]]],[[78,1],[[17,[[4,[57]],16]]]],0,[[239,239],[[22,[156]]]],[[],171],[837,171],[795,171],[[],[[4,[13]]]],[[],[[4,[13]]]],[[],[[4,[13]]]],[[],[[4,[13]]]],[[558,558,9],558],0,0,[[],558],0,0,0,0,[792,[[42,[558,38]]]],[[558,[200,[558]]],558],0,0,0,[[558,12],558],0,[[],15],[558,558],[774,[[17,[16]]]],0,[[12,558,91],558],[[774,558,91],774],[[74,91],[[17,[22,16]]]],[[558,558,91],558],[[74,91],[[17,[15,16]]]],[[74,91],[[17,[15,16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[558,558],[[[902,[[902,[[902,[[902,[902]]]]]]]],[902,[[902,[[902,[[902,[902]]]]]]]]],558],[[558,145,[22,[56]]],558],0,[[[790,[387]],832],[[790,[387]]]],[[],1],[[],15],[837,1],[795,1],0,0,0,[[[0,[25,67,68,147]],[51,[[10,[558]]]]],558],[15],[[558,558]],[15,[[17,[15,16]]]],[12],[[774,49,49],774],[[872,[42,[62,38]]],558],[[[200,[558]],558],558],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[558,[200,[558]]],558],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[12,12],[[17,[[4,[11]],16]]]],[[12,12],[[17,[[4,[11]],16]]]],[[12,12,44],[[17,[[4,[11]],16]]]],[[12,12],[[17,[[4,[11]],16]]]],[[[59,[63,60]],[22,[12]],[22,[1]]],[[17,[[59,[63,60]],16]]]],[[558,[10,[77]]],558],[171,173],[[]],[[],15],[802,558],[774,774],[558,558],0,[[794,[51,[[10,[558]]]]],794],[[138,25,93],[[17,[15,16]]]],[[558,[104,[25]],[799,[[104,[798]]]],93],558],[[25,93],[[17,[15,16]]]],[[558,44,[0,[27,67,68,26]]],558],[[558,558,849],558],[[558,558,849],558],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[558,177],558],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[558,177],558],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[558,177],558],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[558,177],558],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[558,177],558],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[558,177],558],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[558,177],558],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[558,177],558],[792,[[42,[[104,[12]],38]]]],[[138,239,239,[22,[236]]],[[17,[138,16]]]],[[558,78],558],[[829,77,[22,[236]]],[[17,[77,16]]]],[[829,77,[22,[236]]],[[17,[77,16]]]],[[829,77,[22,[236]]],[[17,[77,16]]]],[[],[[22,[897]]]],[837,[[22,[897]]]],[795,[[22,[897]]]],0,0,0,0,0,0,[[[4,[3]]],[[4,[3]]]],[[],[[799,[[104,[798]]]]]],[[558,74,1,1,[22,[56]],1],558],[[558,44,1,1,[22,[56]],1],558],[[[816,[387]],44],[[816,[387]]]],[858,[[17,[242,16]]]],[[795,858],[[17,[242,16]]]],[[[51,[171]],838],[[17,[774,16]]]],[[[51,[171]],839],[[17,[774,16]]]],[[[804,[387]]],[[17,[151,16]]]],[[[805,[383]]],[[17,[151,16]]]],[[[790,[387]]],[[17,[151,16]]]],[[[22,[44]]],[[17,[151,16]]]],[[795,[22,[44]]],[[17,[151,16]]]],[774,[[17,[[104,[151]],16]]]],[859,[[17,[[83,[[104,[151]]]],16]]]],0,0,[[15,15,825,1],[[17,[[4,[30]],16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[],[[4,[60]]]],0,[[774,[51,[[10,[558]]]]],774],0,[[138,[4,[13]],22],[[17,[138,16]]]],[[138,49,22],[[17,[138,16]]]],[[[10,[78]],49],[[17,[15,16]]]],[[138,49,25],[[17,[138,16]]]],[[44,1]],[[[790,[387]],1],[[790,[387]]]],[[823,840],558],[[[813,[392]],1],[[813,[392]]]],[[[804,[387]],1],[[804,[387]]]],[[[805,[383]],1],[[805,[383]]]],[[[876,[387]],1],[[876,[387]]]],[[[790,[387]],1],[[790,[387]]]],[[138,1],138],[[558,72],558],[[339,[22,[88]]]],[77,4],[77,15],[[802,77],558],[[774,77],774],[[558,77],558],[77,4],[[774,77,[200,[558]]],774],[[558,77,[200,[558]]],558],[558,558],[[]],[[]],[[558,[22,[56]],1],558],0,[558,558],[558,558],[[774,173,857],[[17,[16]]]],[[774,173,856],[[17,[16]]]],0,0,0,[[77,44],15],[[802,558,558],558],[[774,77,78],774],[[558,[200,[558]],[200,[558]]],558],[[339,44,44]],[[339,44,44]],0,0,[[138,44,44],138],[[44,44]],[[138,44,44],138],[[44,44]],[[339,44,44]],[[339,44,44]],[[339,44,44],339],[[339,44,44],339],0,[1,4],[[802,29],558],[[774,12,29],774],[[558,1],558],[[558,[51,[[10,[[0,[[200,[558]],147]]]]]],[51,[[10,[1]]]]],558],[[774,[51,[[10,[558]]]],[51,[[10,[1]]]],1,1],774],[29,4],[[558,29],558],[29,15],[[558,558,9,1],558],[558,558],0,[[[10,[9]]],[[4,[13]]]],[12,[[4,[13]]]],0,[[774,9],774],[9,22],[[558,9],558],[9,15],[9,15],[558,903],[12,[[4,[11]]]],[12,[[4,[11]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[77,[22,[56]]],[[17,[[4,[11]],16]]]],0,0,0,[12,[[17,[15,16]]]],0,[[558,35],558],0,[558,872],[15],[[558,558]],[15,[[17,[15,16]]]],[[794,[51,[12]]],794],[[558,12],558],0,[12,558],[803,558],[802,558],[774,774],[[],22],[558,558],[[],15],[[[51,[[10,[558]]]]],558],[[],[[799,[[104,[798]]]]]],[[802,558],558],[[774,78],774],[[793,[22,[44]]],774],[[558,[22,[44]]],558],[[138,[97,[95,96]]],[[17,[138,16]]]],[[[4,[30]]],[[17,[15,16]]]],[[558,[200,[558]]],558],[95,[[17,[15,16]]]],[95,15],[96,[[17,[15,16]]]],[96,15],[[]],[[138,[97,[95,96]]],138],[[[4,[30]]],[[17,[15,16]]]],[558,558],[558,558],[[77,77,239,827,61,[22,[236]]],[[17,[[42,[77,38]],16]]]],[[558,558,558],558],[[841,[200,[558]]],842],[[843,[200,[558]]],844],[44,15],[[558,558,239,827],558],[61,[[17,[[4,[60]],16]]]],[774,[[17,[16]]]],[859,[[17,[16]]]],[774,[[17,[16]]]],[855,[[22,[53]]]],[339,[[39,[37,38]]]],[[],[[42,[[10,[9]],38]]]],[[774,1],[[17,[62,16]]]],[558,[[17,[62,16]]]],[[[22,[12]],1],[[17,[242,16]]]],[[[22,[12]],1],[[17,[242,16]]]],[151,[[17,[92,16]]]],[[558,151,889],[[17,[92,16]]]],[[],[[4,[11]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[558,558],[12,[[17,[15,16]]]],[[],62],[[],62],[[],62],[[],62],0,[[],[[4,[11]]]],0,0,[[774,78,[51,[[10,[558]]]],[51,[[10,[1]]]],1,1],774],[[138,241,[22,[236]]],[[17,[138,16]]]],0,[[239,77,[22,[236]],25,25,25,[22,[1]]],[[17,[77,16]]]],[[239,77,[22,[236]],[22,[1]]],[[17,[77,16]]]],[[829,77,[22,[236]],[22,[1]]],[[17,[77,16]]]],[[829,77,[22,[236]]],[[17,[77,16]]]],[[829,77,[22,[236]]],[[17,[77,16]]]],[[829,77,[22,[236]]],[[17,[77,16]]]],[[239,77,[22,[236]],[22,[1]]],[[17,[77,16]]]],[[829,77,[22,[236]],[22,[1]]],[[17,[77,16]]]],[[239,77,[22,[236]],[22,[1]]],[[17,[77,16]]]],[[829,77,[22,[236]],[22,[1]]],[[17,[77,16]]]],[[138,[0,[25,26]]],[[17,[138,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[53,[[17,[855,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[12,[[17,[44,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[9,[[17,[833,16]]]],[78,[[17,[834,16]]]],[84,[[17,[835,16]]]],[[157,[42,[[39,[37,38]],38]],[22,[88]]],[[17,[339,217]]]],[[[42,[9,38]]],[[17,[16]]]],0,0,[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],12],0,[792,558],[[],[[17,[4,16]]]],[803,558],[802,558],[[774,[22,[[42,[62,38]]]],761],774],[558,558],[[],[[17,[15,16]]]],[803,558],[802,558],[[774,[22,[[42,[62,38]]]],761],774],[558,558],[[],158],[[774,49],774],[558,558],[[[775,[62]],12,239,239],[[17,[242,16]]]],[[[775,[62]],12,239,239],[[17,[242,16]]]],0,[[[790,[387]],1],[[790,[387]]]],0,0,[[794,786],794],0,[339,[[22,[88]]]],[339,[[22,[88]]]],[[1,1],[[17,[242,16]]]],[[558,1,1],558],0,0,[339,[[10,[[39,[37,38]]]]]],[339,892],[[774,9],774],[9,22],[[558,9],558],[9,15],[9,15],0,[[107,[42,[56,38]]]],[[107,[10,[56]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[828,[[22,[78]]]],[239,77],0,[239,1],0,0,0,[[[200,[558]]],841],[[842,[200,[558]]],843],[[844,[200,[558]]],843],0,0,0,0,[[794,774],794],[[[873,[392]],44],[[873,[392]]]],[[[876,[387]],44],[[876,[387]]]],[[795,[22,[44]]],795],[[837,1],837],[44],[[[816,[387]],44],[[816,[387]]]],[[[877,[387]],[22,[44]]],[[877,[387]]]],[[774,558],774],[[[816,[387]],[22,[[42,[62,38]]]]],[[816,[387]]]],[[[804,[387]],[22,[[42,[62,38]]]]],[[804,[387]]]],[[[805,[383]],[22,[[42,[62,38]]]]],[[805,[383]]]],[[[790,[387]],[22,[[42,[62,38]]]]],[[790,[387]]]],[[774,[51,[[10,[558]]]]],774],0,[[[816,[387]],[22,[9]]],[[816,[387]]]],[[837,[22,[9]]],837],[[874,[22,[389]]],874],[[860,[22,[389]]],860],[[[810,[392]],[22,[395]]],[[810,[392]]]],[[862,[22,[395]]],862],[[[813,[392]],488],[[813,[392]]]],[[774,[51,[[10,[774]]]]],774],[[[813,[392]],[22,[44]]],[[813,[392]]]],[[[873,[392]],[22,[62]]],[[873,[392]]]],[[[873,[392]],[22,[62]]],[[873,[392]]]],[[847,558],847],[[848,558],848],[[[816,[387]],9],[[816,[387]]]],[[[873,[392]],9],[[873,[392]]]],[[837,9],837],[[837,[22,[151]]],837],[[[816,[387]],[22,[[104,[151]]]]],[[816,[387]]]],[[[816,[387]],[22,[[10,[35]]]]],[[816,[387]]]],[[[816,[387]],830],[[816,[387]]]],[[837,830],837],[[[816,[387]],9],[[816,[387]]]],[[837,9],837],[[860,173],860],[[862,173],862],[[[873,[392]],[22,[44]]],[[873,[392]]]],[[848,558,558,558],848],[[847,558,558,558],847],[[848,558,558,558],848],[[847,558],847],[[848,558],848],[[[816,[387]],1],[[816,[387]]]],[[[876,[387]],1],[[876,[387]]]],[[837,1],837],[[837,[22,[44]]],837],[[795,[22,[44]]],795],[[[875,[392]],904],[[875,[392]]]],[[[876,[387]],904],[[876,[387]]]],[[847,558],847],[[848,558],848],[[848,558],848],[[847,558],847],[[848,558],848],[[[816,[387]],1],[[816,[387]]]],[[837,1],837],[[847,558],847],[[[816,[387]],[22,[44]]],[[816,[387]]]],[[[804,[387]],[22,[44]]],[[804,[387]]]],[[[805,[383]],[22,[44]]],[[805,[383]]]],[[[877,[387]],[22,[44]]],[[877,[387]]]],[[[790,[387]],[22,[44]]],[[790,[387]]]],[[837,[22,[44]]],837],[[795,[22,[44]]],795],[[[816,[387]],[22,[44]]],[[816,[387]]]],[[[877,[387]],[22,[44]]],[[877,[387]]]],[[848,558],848],[[[873,[392]],62],[[873,[392]]]],[[[816,[387]],[22,[831]]],[[816,[387]]]],[[837,[22,[831]]],837],[[774,854],774],[173],[[[816,[387]],[22,[[200,[173]]]]],[[816,[387]]]],[[[877,[387]],[22,[[200,[173]]]]],[[877,[387]]]],[[837,173],837],[[795,173],795],[[[816,[387]],[22,[[104,[791]]]]],[[816,[387]]]],[[774,1],774],[[[816,[387]],[22,[[42,[44,38]]]]],[[816,[387]]]],[[[804,[387]],[22,[[42,[44,38]]]]],[[804,[387]]]],[[[805,[383]],[22,[[42,[44,38]]]]],[[805,[383]]]],[[[876,[387]],[22,[[42,[62,38]]]]],[[876,[387]]]],[[[790,[387]],[22,[[42,[44,38]]]]],[[790,[387]]]],[[774,1],774],[[[816,[387]],[22,[9]]],[[816,[387]]]],[[837,[22,[9]]],837],[[[873,[392]],9],[[873,[392]]]],[1],[[[816,[387]],1],[[816,[387]]]],[[[877,[387]],1],[[877,[387]]]],[[837,1],837],[[795,1],795],[[[816,[387]],[22,[897]]],[[816,[387]]]],[[[804,[387]],[22,[897]]],[[804,[387]]]],[[[805,[383]],[22,[897]]],[[805,[383]]]],[[[790,[387]],[22,[897]]],[[790,[387]]]],[[837,[22,[897]]],837],[[795,[22,[897]]],795],[[774,12,[22,[78]]],774],[[[813,[392]],[22,[44]]],[[813,[392]]]],[[[816,[387]],[104,[151]]],[[816,[387]]]],[[[876,[387]],[104,[151]]],[[876,[387]]]],[[[877,[387]],[104,[151]]],[[877,[387]]]],[[837,[104,[151]]],837],[[795,151],795],[[837,25],[[17,[837,16]]]],[[[876,[387]],151],[[876,[387]]]],[[[877,[387]],151],[[877,[387]]]],[[847,558],847],[[848,558],848],[[774,1],774],[[[816,[387]],44],[[816,[387]]]],[[837,44],837],[[[816,[387]],44],[[816,[387]]]],[[837,44],837],[[774,1],774],[[[813,[392]],1],[[813,[392]]]],[[774,1],774],[[[873,[392]],[22,[62]]],[[873,[392]]]],[[[816,[387]],1],[[816,[387]]]],[[837,1],837],[[774,1],774],[[339,[22,[88]]],339],[[339,[22,[88]]],[[39,[37,38]]]],[[848,558],848],[[847,558],847],[774,774],[[558,[200,[558]]],558],[[],[[4,[57]]]],[[],[[4,[57]]]],[[],[[17,[[4,[57]],16]]]],0,0,[[[4,[13]],4],[[17,[4,16]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[777,[0,[25,67,68]]],15],[[777,[0,[25,67,68]]],15],[[[10,[[99,[78]]]],[0,[25,67,68]]],15],[[[10,[[99,[78]]]],[0,[25,67,68]]],15],[[[10,[[0,[222,272]]]],[0,[23,52]],[22,[[104,[134]]]]],[[39,[37,38]]]],[[[10,[[0,[222,272]]]],88,[0,[23,52]],[22,[[104,[134]]]]],[[39,[37,38]]]],[[[4,[28]],78,78],[[4,[28]]]],[[[42,[[99,[78]],38]],[10,[[39,[37,38]]]]],1],[18,15],0,0,[[],15],[[],15],[[],[[17,[15,16]]]],[[],[[17,[[4,[3]],16]]]],[[],[[17,[[4,[3]],16]]]],[[],[[4,[19]]]],0,0,0,0,0,0,[2],[[],17],[[[905,[[51,[37]],23]]],[[17,[217]]]],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[[]],[[]],[[]],[[]],[138,138],[[[905,[[0,[147,[51,[37]]]],[0,[147,23]]]]],[[905,[[0,[147,[51,[37]]]],[0,[147,23]]]]]],[[]],[138,[[17,[44]]]],[44],[44],[44],[44],[44],[44],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[[905,[[0,[165,[51,[37]]]],[0,[165,23]]]],45],[[17,[46]]]],[[138,27],17],[[]],[[]],[138,[[408,[138]]]],[[],22],[[[905,[[51,[37]],23]]],22],[[],44],[[],44],[[]],[[]],[[[906,[392,416]]]],[[]],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[392,416],[[906,[392,416]]]],[[23,[42,[9,38]]],[[905,[[51,[37]],23]]]],[[],[[17,[22]]]],[[[906,[392,416]]],22],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,[[]],[[]],[[821,[51,[[10,[9]]]]],558],[44],[44],[44],[[821,[51,[[10,[9]]]]],558],[[]],[[],44],[[]],[[821,[51,[[10,[9]]]]],558],[[],17],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,[2],[[[22,[12]],1],[[17,[[59,[58,57]],16]]]],[[[22,[12]]],[[17,[[59,[58,57]],16]]]],[[[22,[12]],61,1,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[12]],61,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[12]],1],[[17,[[59,[70,60]],16]]]],[[]],[[]],0,0,0,0,[177,177],[[]],0,0,[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[],177],[44],[44],[44],0,0,[[]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[],44],[[]],[[],[[4,[13]]]],[[],[[4,[13]]]],[[],[[4,[57]]]],[[],[[4,[57]]]],[[],[[4,[60]]]],[[],[[4,[60]]]],0,0,[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[12,[10,[12]],12],[[59,[58,57]]]],[[12,[10,[12]],12],[[59,[70,60]]]],[[12,[10,[12]],12,61],[[59,[63,60]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[]],[[],17],[[],17],0,[[],106],0,[[],158],0,[[]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],0,0,0,0,[[],[[4,[57]]]],[[],[[4,[57]]]],0,0,0,0,0,0,0,0,[2],[[[22,[12]],1],[[17,[[59,[58,57]],16]]]],[[[22,[12]]],[[17,[[59,[58,57]],16]]]],[[[22,[12]],61,1,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[12]],61,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[12]],1],[[17,[[59,[70,60]],16]]]],[[],[[4,[11]]]],[[]],[[]],[907,907],[[]],[44],[44],[44],[[907,907],1],[[],1],[[],1],[[],1],[[],1],[[907,45],[[17,[46]]]],[[]],[[907,199]],0,[[],44],[[]],[[907,12],1],[[]],[[],17],[[],17],[[],106],[[]],0,0,0,0,[2],[[]],[[]],[[[908,[147]]],[[908,[147]]]],[[]],[44],[44],[44],[[]],[12,[[22,[907]]]],[[],44],[[]],0,[[[908,[272]],12],[[22,[272]]]],[[[10,[9]],[22,[61]]],22],[[[908,[84]],[10,[9]],[22,[61]]],[[22,[84]]]],[[[908,[77]],[10,[9]],[22,[61]]],[[22,[77]]]],0,[[]],[[],17],[[[22,[61]]],[[17,[16]]]],[[907,[22,[61]]],[[17,[[908,[77]],16]]]],[[907,[22,[61]]],[[17,[[908,[84]],16]]]],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],35],[35,[[17,[15,16]]]],0,[[],35],0,[44,[[17,[53,16]]]],[44,53],[[],35],[44,53],[[35,35],[[17,[35,16]]]],0,[[]],[44],0,0,0,0,0,0,0,0,0,0,0,0,[1],[[]],[[],1],[201],[[[59,[63,60]],[22,[12]],[22,[1]]],[[17,[[59,[63,60]],16]]]],0,0,0,[[[22,[88]]]],[[[179,[77]],[179,[9]],[22,[88]]]],[[[179,[77]],[179,[9]],[22,[88]]]],0,[869,558],[[]],[[]],[[869,61],558],[[869,558,61],558],[[869,62],558],[869,558],[869,558],[869,558],[44],[44],[44],[869,558],[[]],[869,558],[[],44],[[]],[869,558],[869,558],[869,558],[869,558],[869,558],[869,558],[869,558],[869,558],[869,558],[[869,[22,[62]],[22,[1]]],558],[[869,[51,[12]],[51,[12]]],558],[869,558],[[869,12],558],[869,558],[[869,61],558],[[869,12],558],[[869,241],558],[[],17],[[],17],[[],106],[[]],[869,558],[869,558],[[869,61],558],[869,558],0,[[242,18],[[17,[15,16]]]],[[],[[17,[12,16]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[[],17],[[[405,[23]]],17],[406,17],[[[407,[416,27]]],17],[[[408,[416]]],17],[[[409,[416,27]]],17],[[[411,[416,25]]],17],[[[410,[416,25]]],17],[[[412,[416]]],17],[[[413,[416,27]]],17],[[[414,[416]]],17],[[[415,[416,27]]],17],[909,[[17,[217]]]],[[[910,[[51,[37]],23]]],[[17,[217]]]],[[],17],[[[405,[43]]],17],[406,17],[[[409,[911,27]]],17],[[[411,[911,25]]],17],[[[410,[911,25]]],17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[138,138],[[[910,[[0,[147,[51,[37]]]],[0,[147,23]]]]],[[910,[[0,[147,[51,[37]]]],[0,[147,23]]]]]],[[]],[23,[[405,[23]]]],[138,[[17,[44]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],406],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[[910,[[0,[165,[51,[37]]]],[0,[165,23]]]],45],[[17,[46]]]],[[138,27],17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[138,[[408,[138]]]],[[],22],[[[405,[23]]],22],[406,22],[[[407,[416,27]]],22],[[[408,[416]]],22],[[[409,[416,27]]],22],[[[411,[416,25]]],[[22,[138]]]],[[[410,[416,25]]],22],[[[412,[416]]],22],[[[413,[416,27]]],22],[[[414,[416]]],22],[[[415,[416,27]]],22],[909,22],[[[910,[[51,[37]],23]]],22],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[153,[352,[[51,[37]]]],[42,[9,38]]],909],[[23,[42,[9,38]]],[[910,[[51,[37]],23]]]],[[],[[17,[22]]]],[[[408,[416]]],[[17,[22]]]],[[[410,[416,25]]],[[17,[22]]]],[[],[[17,[22]]]],[[[410,[911,25]]],[[17,[22]]]],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[[405,[23]]]],[406],[[[407,[416,27]]]],[[[408,[416]]]],[[[409,[416,27]]]],[[[411,[416,25]]]],[[[410,[416,25]]]],[[[412,[416]]]],[[[413,[416,27]]]],[[[414,[416]]]],[[[415,[416,27]]]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[392,416],[[17,[217]]]],[[15,18],15],[[15,18],15],[[15,12],15],[[15,12],15],0,0,0,[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[912,35],[[912,45],[[17,[46]]]],[[]],[[]],[[913,12],[[17,[912,16]]]],[[],44],[[],44],[[]],[[]],[912,[[22,[44]]]],[913,151],[912,[[22,[15]]]],[912,[[22,[15]]]],[912,[[22,[15]]]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[819],[44],[44],[820],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[817,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[819,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[818,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[820,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[[816,[[39,[387,38]]]],[104,[151]]],819],[[[816,[[39,[387,38]]]],[104,[151]]],820],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,0,0,[[],15],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[13]],16]]]],[[],[[17,[[4,[57]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],35],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[57]],16]]]],[[],[[17,[[4,[30]],16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[176,[[17,[15,16]]]],[[],[[17,[[4,[30]],16]]]],[12,[[17,[15,16]]]],[61,[[17,[[4,[60]],16]]]],[[],[[104,[103]]]],[12,[[17,[15,16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[57]],16]]]],0,[[138,44,44],138],[[138,44,44],138],[[44,[42,[1,38]]]],0,[[10,1,1]],[[[10,[[0,[222,[180,[[0,[222,[180,[[0,[222,[180,[[0,[222,180]]]]]]]]]]]]]]]]]],[[[10,[[0,[222,[180,[[0,[222,[180,[[0,[222,[180,[[0,[222,180]]]]]]]]]]]]]]]]]],[[[10,[15]],[10,[1]],1],[[17,[223,16]]]],[[12,[10,[15]],[10,[1]],1],[[17,[[4,[6]],16]]]],[15,[[17,[[39,[37,38]],16]]]],0,[[]],[[]],[[903,12],558],[[903,558,1],558],[[903,558],558],[[903,12],558],[44],[44],[44],[[903,558],558],[903,558],[[903,12,44],558],[[903,558],558],[[]],[[903,78,1],558],[[],44],[[]],[903,558],[[903,[22,[62]]],558],[903,558],[[903,558,558,1],558],[[903,558,558,1],558],[[903,558,558,1,77],558],[[903,[22,[62]]],558],[[903,12],558],[[903,12,44],558],[[903,12,44],558],[[903,12],558],[[903,12,44],558],[[903,558],558],[[903,77,[22,[56]]],558],[[903,[22,[62]]],558],[[903,35,850],558],[[903,850],558],[[903,[22,[61]],[22,[62]],850],558],[[903,44],558],[903,558],[[903,850],558],[903,558],[[],17],[[],17],[[],106],[[]],[[[0,[383,387,138]]],[[17,[914,16]]]],[[914,9,[22,[44]],1,[22,[151]],44,44,[22,[9]],[22,[9]],9,[22,[831]],1],[[17,[16]]]],[[914,9,[22,[44]],1,[22,[151]],44,44,[22,[9]],[22,[9]],9,[22,[831]],1,9],[[17,[16]]]],[[[10,[9]]],1],0,0,0,0,0,0,0,0,0,0,0,[2],[2],[[],15],[15,[[17,[15,16]]]],[[15,15]],[[15,15]],[[15,[0,[7,73]]]],[[15,[0,[7,73]]]],[[15,15],[[17,[15,16]]]],[15,[[22,[44]]]],[15,[[22,[44]]]],[29,[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[15,[[17,[[4,[19]],16]]]],[[15,44],[[39,[37,38]]]],[[],134],[[],134],[15,[[4,[3]]]],[154,[[4,[28]]]],[154,[[4,[28]]]],[15,154],[15,15],[15,15],[[],[[17,[44,16]]]],[15,[[17,[44,16]]]],[15,[[17,[[4,[6]],16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[15,[[17,[[4,[13]],16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[35,[[17,[15,16]]]],[[15,35],[[17,[15,16]]]],[[15,35],[[17,[15,16]]]],[15,[[17,[226,16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[[15,15],[[17,[15,16]]]],[[15,8],[[17,[15,16]]]],[[],[[41,[[40,[[39,[37,38]]]]]]]],[[],[[42,[[39,[37,38]],38]]]],[15,[[42,[[39,[37,38]],38]]]],[15,15],[[15,53,53],[[17,[15,16]]]],[[15,53],[[17,[15,16]]]],[[15,53],[[17,[15,16]]]],[72,72],[15,15],[[],[[104,[154]]]],[[]],[[]],[[15,1],15],[[15,1],15],[[15,1],15],[[15,1],15],[15,[[17,[[59,[58,57]],16]]]],[15,[[17,[[59,[63,60]],16]]]],[15,[[17,[[59,[65,64]],16]]]],[[],15],[44],[44],[44],[15],[44],[44],[44],[[15,77,866],[[17,[15,16]]]],[[15,15]],[[15,15]],[[15,[0,[7,73]]]],[[15,[0,[7,73]]]],[44],[44],[44],[[],15],[[],35],[15,[[17,[[59,[66,60]],16]]]],[[72,72],1],[[15,15],1],[[]],[[15,188],[[17,[[4,[13]],16]]]],[[15,12],[[17,[[4,[13]],16]]]],[[15,15],[[17,[[4,[13]],16]]]],[[]],[[15,15],[[17,[[4,[13]],16]]]],[[15,188]],[[15,12]],[[],1],[[],1],[[],1],[[],1],[15,44],[15,[[17,[15,16]]]],[[15,15],[[17,[15,16]]]],[[15,53,44],[[17,[15,16]]]],[15,[[17,[[4,[31]],16]]]],[15,[[17,[[4,[33]],16]]]],[[],[[83,[92]]]],[[15,146],[[17,[15,16]]]],[[[4,[13]]],[[17,[15,16]]]],[[15,[4,[13]],1],[[17,[15,16]]]],[15,[[17,[15,16]]]],[[72,45],[[17,[46]]]],[[15,45],[[17,[46]]]],[[15,45],[[17,[46]]]],[15,62],[[]],[[]],[[[59,[58,57]]],15],[[]],[[[59,[63,60]]],15],[[[59,[66,60]]],15],[[[4,[28]]],15],[[[59,[70,60]]],15],[[12,[10,[53]],1],[[17,[15,16]]]],[[12,[10,[53]],35,1],[[17,[15,16]]]],[[12,[42,[[39,[37,38]],38]],35],15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[[12,[42,[86,38]]],15],[[12,[42,[81,38]]],15],[[12,[42,[77,38]]],15],[[12,[42,[56,38]]],15],[[12,[42,[9,38]]],15],[[12,[42,[55,38]]],15],[[12,[42,[74,38]]],15],[[12,[42,[78,38]]],15],[[12,[42,[79,38]]],15],[[12,[42,[84,38]]],15],[[12,44,35],15],[44,[[17,[53,16]]]],[15,44],[44,[[22,[54]]]],[44,53],[[]],[[15,12],[[17,[[4,[13]],16]]]],[[15,15],[[17,[[4,[13]],16]]]],[[15,188],[[17,[[4,[13]],16]]]],[[]],[[15,12],[[17,[[4,[13]],16]]]],[[15,15],[[17,[[4,[13]],16]]]],[[15,188],[[17,[[4,[13]],16]]]],[[],1],[[15,[22,[44]]],15],[15,[[17,[[4,[80]],16]]]],[15,[[17,[[4,[57]],16]]]],[15,[[17,[[4,[60]],16]]]],[15,[[17,[[4,[82]],16]]]],[15,[[17,[[4,[30]],16]]]],0,[15,[[17,[[4,[3]],16]]]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[15,242],[[]],[138,15],[15,15],[[],1],[15,[[17,[[4,[13]],16]]]],[15,[[17,[[4,[13]],16]]]],[15,[[17,[[4,[13]],16]]]],[15,[[17,[[4,[13]],16]]]],[15,[[17,[[4,[13]],16]]]],[[],[[4,[13]]]],[[],[[4,[13]]]],[[],1],[[],1],[[],72],[15,915],[[],44],[44,15],[15,[[17,[[4,[3]],16]]]],[15,558],[[]],[[15,15],[[17,[[4,[13]],16]]]],[[15,188],[[17,[[4,[13]],16]]]],[[15,12],[[17,[[4,[13]],16]]]],[[]],[[15,188],[[17,[[4,[13]],16]]]],[[15,15],[[17,[[4,[13]],16]]]],[[15,12],[[17,[[4,[13]],16]]]],[15,[[22,[73]]]],[[],15],[[],[[22,[74]]]],[15,15],[[],[[22,[74]]]],[[],15],[15,[[22,[73]]]],[[],15],[[],[[17,[15,16]]]],[[15,[0,[7,73]]]],[[15,15]],[[15,[0,[7,73]]]],[[15,15]],[[],44],[[],[[17,[44,16]]]],[[],12],[[12,[51,[[10,[[42,[9,38]]]]]]],15],[[12,[51,[[10,[9]]]]],15],[[12,[51,[[10,[55]]]]],15],[[12,[51,[[10,[238]]]]],15],[[12,[51,[[10,[74]]]]],15],[[12,[51,[[10,[[22,[[83,[12]]]]]]]]],15],[[12,[51,[[10,[[22,[86]]]]]]],15],[[12,[51,[[10,[[22,[79]]]]]]],15],[[12,[51,[[10,[[22,[238]]]]]]],15],[[12,[51,[[10,[237]]]]],15],[[12,[76,[77]]],15],[[12,[51,[[10,[84]]]]],15],[[12,[51,[[10,[[10,[9]]]]]]],15],[[12,15],15],[[12,[51,[[10,[[22,[55]]]]]]],15],[[12,[51,[[10,[81]]]]],15],[[12,[51,[[10,[[22,[[83,[[10,[9]]]]]]]]]]],15],[[12,[76,[56]]],15],[[12,[51,[[10,[[22,[74]]]]]]],15],[[12,[51,[[10,[53]]]]],15],[[12,[51,[[10,[[22,[158]]]]]]],15],[[12,[51,[[10,[[83,[12]]]]]]],15],[[12,[51,[[10,[[22,[62]]]]]]],15],[[12,[51,[[10,[[83,[[10,[9]]]]]]]]],15],[[12,[51,[[10,[78]]]]],15],[[12,[51,[[10,[[22,[1]]]]]]],15],[[12,771],15],[[12,[51,[[10,[56]]]]],15],[[12,[51,[[10,[77]]]]],15],[[12,[51,[[10,[[22,[237]]]]]]],15],[[12,[76,[84]]],15],[[12,[51,[[10,[[22,[[10,[9]]]]]]]]],15],[[12,[51,[[10,[224]]]]],15],[[12,[51,[[10,[[22,[[42,[9,38]]]]]]]]],15],[[12,[51,[[10,[1]]]]],15],[[12,[51,[[10,[[22,[84]]]]]]],15],[[12,[76,[78]]],15],[[12,[51,[[10,[[22,[56]]]]]]],15],[[12,[51,[[10,[[22,[15]]]]]]],15],[[12,[51,[[10,[[22,[77]]]]]]],15],[[12,[51,[[10,[15]]]]],15],[[12,[51,[[10,[[22,[12]]]]]]],15],[[12,[51,[[10,[158]]]]],15],[[12,[51,[[10,[12]]]]],15],[[12,[51,[[10,[86]]]]],15],[[12,[51,[[10,[[22,[224]]]]]]],15],[[12,[51,[[10,[[22,[78]]]]]]],15],[[12,[51,[[10,[[22,[81]]]]]]],15],[[12,[51,[[10,[62]]]]],15],[[12,[51,[[10,[[22,[9]]]]]]],15],[[12,[51,[[10,[79]]]]],15],[[12,35],15],[[44,44],15],[[12,44],15],[915,22],[[]],[[15,188],[[17,[[4,[13]],16]]]],[[15,15],[[17,[[4,[13]],16]]]],[[15,12],[[17,[[4,[13]],16]]]],[[]],[[15,188]],[[15,15],[[17,[[4,[13]],16]]]],[[15,12]],[[],44],0,[15,35],[[],[[4,[13]]]],[[],[[4,[13]]]],[15,[[39,[69,38]]]],[15,15],[[74,91],[[17,[15,16]]]],[[15,145,[22,[56]]],15],[[],15],[[15,[0,[7,73]]]],[[15,[0,[7,73]]]],[[15,15]],[12],[[15,12],15],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[15,[10,[77]]],[[17,[15,16]]]],[[],15],[[25,93],[[17,[15,16]]]],[[15,176],[[17,[15,16]]]],[[15,176],[[17,[15,16]]]],[[15,176],[[17,[15,16]]]],[[15,176],[[17,[15,16]]]],[[15,176],[[17,[15,16]]]],[[15,176],[[17,[15,16]]]],[[15,176],[[17,[15,16]]]],[[15,176],[[17,[15,16]]]],[[15,78],[[17,[15,16]]]],[[15,74,1,1,[22,[56]]],[[17,[15,16]]]],[[15,44,1,1,[22,[56]]],[[17,[15,16]]]],[[15,15],1],[[15,15],1],[[15,72]],[77,15],[[]],[15],[[15,[22,[56]]],15],[915],[[77,44],15],[[15,1],15],[29,15],[9,15],[12,[[4,[11]]]],[[15,44],[[17,[[83,[12]],16]]]],[[15,35],[[17,[15,16]]]],[15,[[17,[225,16]]]],[[15,[0,[7,73]]]],[[15,15]],[[15,15]],[[15,[0,[7,73]]]],[15,[[22,[73]]]],[15,15],[[15,[22,[44]]],15],[[[4,[30]]],[[17,[15,16]]]],[[15,44],15],[95,[[17,[15,16]]]],[95,15],[96,[[17,[15,16]]]],[96,15],[[15,[4,[30]],1],[[17,[15,16]]]],[[[4,[30]]],[[17,[15,16]]]],[[15,[10,[78]]],[[17,[15,16]]]],[[15,[4,[30]],1],[[17,[15,16]]]],[44,15],[15,[[17,[[59,[70,60]],16]]]],[[15,44],[[39,[37,38]]]],[[15,[22,[12]],1],[[17,[242,16]]]],[15,[[104,[103]]]],[[]],[[]],[15,[[83,[15]]]],[[],62],[[15,15],[[17,[15,16]]]],[[],17],[[],17],[[],[[17,[15,16]]]],[[],[[17,[15,16]]]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[15,[[17,[[4,[87]],16]]]],[15,[[17,[[4,[30]],16]]]],[15,[[17,[[4,[75]],16]]]],[15,[[17,[[4,[85]],16]]]],[[],[[17,[15,16]]]],[15,[[17,[15,16]]]],[154,[[17,[[4,[28]],16]]]],0,[15,[[17,[[4,[11]],16]]]],[9,15],[[]],[[]],[[]],[[15,[4,[13]],15],[[17,[15,16]]]],0,0,0,0,[[15,15,27],15],[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],0,[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],0,0,[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[8,[[17,[15,16]]]],[[4,8],[[17,[15,16]]]],0,0,0,[2],[[]],[[]],[866,866],[[]],[[],866],[44],[44],0,[44],[[866,866],1],[[],1],[[],1],[[],1],[[],1],[[866,45],[[17,[46]]]],[[]],[[866,199]],[[],44],[[]],[[]],[[],17],[[],17],[[],106],[[]],0,0,[2],[916,15],[916,15],[[]],[[]],[916,916],[[]],[916,15],[44],[44],[44],[[]],[[],44],[[]],[15,916],[[916,[39,[37,38]]]],[[]],[[],17],[[],17],[[],106],[[]],[[916,[39,[37,38]],25]]],"c":[6429,6430,10519,10540,10541,10547,10548,10633,10634,10635,10636,10640,10641,10645,10646,10816,10918,11144,11145,11147,11149,11154,11157,11159,11161,11176,11185,11187,11189,11191,11268,11269,11387,11388,11439,11440,11449,11454,11510,11511,11622,11688,11689,11690,11691,12041,12042,12043,12044,12061,12064,12066,12067,12072,12073,12078,12079,12080,12081,12085,12127,12130,12135,12136,12151,12152,12172,12173,12174,12175,13013,13114,17205,17278,17339,17342,17343,17344,17345,17346,17351,17354,17359,17360,17396],"p":[[15,"bool"],[3,"Private"],[3,"ListType"],[3,"ChunkedArray"],[8,"PolarsNumericType"],[3,"BinaryType"],[8,"Num"],[8,"ToPrimitive"],[15,"u8"],[15,"slice"],[3,"Utf8Type"],[15,"str"],[3,"BooleanType"],[8,"NumOpsDispatchInner"],[3,"Series"],[4,"PolarsError"],[4,"Result"],[4,"GroupsProxy"],[3,"FixedSizeListType"],[8,"PolarsObject"],[3,"ObjectType"],[4,"Option"],[8,"Iterator"],[3,"AmortizedListIter"],[8,"Fn"],[8,"Copy"],[8,"FnMut"],[8,"PolarsDataType"],[3,"SortOptions"],[3,"UInt32Type"],[3,"Float32Type"],[8,"PolarsIntegerType"],[3,"Float64Type"],[3,"SortMultipleOptions"],[4,"DataType"],[8,"NumOpsDispatchCheckedInner"],[8,"Array"],[3,"Global"],[3,"Box"],[3,"Iter"],[3,"Map"],[3,"Vec"],[8,"DoubleEndedIterator"],[15,"usize"],[3,"Formatter"],[3,"Error"],[3,"PrimitiveArray"],[3,"BooleanArray"],[8,"IntoIterator"],[8,"IntoParallelIterator"],[8,"AsRef"],[8,"TrustedLen"],[4,"AnyValue"],[8,"PolarsObjectSafe"],[15,"f32"],[15,"u64"],[3,"Int32Type"],[3,"DateType"],[3,"Logical"],[3,"Int64Type"],[4,"TimeUnit"],[3,"String"],[3,"DatetimeType"],[3,"Int128Type"],[3,"DecimalType"],[3,"DurationType"],[8,"Send"],[8,"Sync"],[8,"ExactSizeIterator"],[3,"TimeType"],[8,"PolarsFloatType"],[4,"IsSorted"],[8,"NumCast"],[15,"f64"],[3,"UInt64Type"],[3,"Range"],[15,"i64"],[15,"u32"],[15,"i16"],[3,"Int16Type"],[15,"i8"],[3,"Int8Type"],[4,"Cow"],[15,"i32"],[3,"UInt8Type"],[15,"u16"],[3,"UInt16Type"],[3,"Bitmap"],[8,"ParallelIterator"],[8,"IndexedParallelIterator"],[4,"QuantileInterpolOptions"],[3,"Field"],[3,"RollingOptionsFixedWindow"],[8,"PolarsOpsNumericType"],[8,"TakeIterator"],[8,"TakeIteratorNulls"],[4,"TakeIdx"],[3,"ViewRepr"],[15,"array"],[3,"Dim"],[3,"ArrayBase"],[3,"OwnedRepr"],[8,"SeriesOpsTime"],[3,"Arc"],[4,"Either"],[3,"TypeId"],[3,"RandomState"],[3,"AnonymousListBuilder"],[3,"AnonymousOwnedListBuilder"],[3,"BinaryChunkedBuilderCow"],[3,"Utf8ChunkedBuilderCow"],[8,"ListBuilderTrait"],[3,"LazyCompact"],[3,"SmartString"],[3,"BoolIterNoNull"],[3,"Utf8Array"],[3,"Utf8IterNoNull"],[3,"BinaryArray"],[3,"BinaryIterNoNull"],[3,"ListArray"],[3,"ListIterNoNull"],[3,"FixedSizeListArray"],[3,"FixedSizeListIterNoNull"],[3,"StructIter"],[3,"SomeIterator"],[3,"ListBooleanChunkedBuilder"],[3,"ListPrimitiveChunkedBuilder"],[3,"BinaryChunkedBuilder"],[3,"ListUtf8ChunkedBuilder"],[3,"ListBinaryChunkedBuilder"],[3,"BooleanChunkedBuilder"],[3,"PrimitiveChunkedBuilder"],[3,"Utf8ChunkedBuilder"],[8,"Any"],[3,"ObjectArray"],[8,"AsFd"],[3,"BorrowedFd"],[8,"Sized"],[8,"AsRawFd"],[19,"MaybeUninit"],[8,"Error"],[3,"RollingVarParams"],[3,"RollingQuantileParams"],[4,"RankMethod"],[3,"RankOptions"],[4,"FillNullStrategy"],[8,"Clone"],[4,"IndexOrder"],[3,"AsOfOptions"],[4,"AsofStrategy"],[3,"Schema"],[3,"ArrowField"],[3,"ArrowSchema"],[8,"SeriesTrait"],[8,"Ord"],[4,"Ordering"],[4,"ArrowDataType"],[3,"NaiveDateTime"],[8,"Default"],[3,"Weak"],[15,"char"],[8,"FromIterator"],[8,"Scalar"],[8,"PartialEq"],[8,"Debug"],[8,"Display"],[3,"Once"],[15,"never"],[3,"CStr"],[3,"OsStr"],[3,"Path"],[3,"OsString"],[3,"PathBuf"],[3,"CString"],[8,"ToOwned"],[3,"RollingOptionsImpl"],[3,"RollingOptions"],[3,"Row"],[3,"Buffer"],[8,"PartialOrd"],[8,"TakeRandom"],[4,"TakeRandBranch3"],[4,"TakeRandBranch2"],[3,"Utf8TakeRandom"],[3,"Utf8TakeRandomSingleChunk"],[3,"BinaryTakeRandom"],[3,"BinaryTakeRandomSingleChunk"],[8,"NumericNative"],[3,"NumTakeRandomChunked"],[3,"NumTakeRandomCont"],[3,"NumTakeRandomSingleChunk"],[3,"BoolTakeRandom"],[3,"BoolTakeRandomSingleChunk"],[3,"ListTakeRandom"],[3,"ListTakeRandomSingleChunk"],[3,"ObjectTakeRandom"],[3,"ObjectTakeRandomSingleChunk"],[8,"Hash"],[8,"Hasher"],[8,"Into"],[8,"FnOnce"],[3,"Pin"],[3,"Demand"],[8,"LocalSpawn"],[3,"LocalFutureObj"],[3,"SpawnError"],[8,"Spawn"],[3,"FutureObj"],[3,"AllocError"],[3,"RwLock"],[3,"BTreeMap"],[3,"ObjectChunkedBuilder"],[3,"CloudOptions"],[4,"CloudType"],[3,"AnonymousBuilder"],[3,"AnonymousBuilder"],[4,"ArrowError"],[3,"Offsets"],[3,"MutableNullArray"],[3,"MutableBitmap"],[8,"AnonymousObjectBuilder"],[8,"IsFloat"],[3,"RowsEncoded"],[3,"NaiveTime"],[3,"StructChunked"],[3,"CategoricalChunked"],[3,"CategoricalChunkedBuilder"],[4,"RevMapping"],[3,"StrHashLocal"],[3,"OwnedObject"],[3,"CategoricalType"],[4,"ArrowTimeUnit"],[4,"PrimitiveType"],[4,"IntegerType"],[3,"CatIter"],[4,"Tz"],[3,"NaiveDate"],[3,"Duration"],[3,"Duration"],[4,"PhysicalType"],[3,"TruncateOptions"],[3,"DataFrame"],[3,"IUseStringCache"],[3,"ErrString"],[4,"Error"],[3,"Error"],[3,"FromUtf8Error"],[3,"Utf8Error"],[4,"ParquetError"],[3,"Utf8Error"],[3,"TryReserveError"],[4,"OutOfSpecKind"],[3,"Error"],[8,"Eq"],[8,"BuildHasher"],[3,"AHashSet"],[3,"AHasher"],[3,"HashSet"],[15,"u128"],[8,"RandomSource"],[3,"AHashMap"],[3,"HashMap"],[8,"Borrow"],[3,"IntoKeys"],[3,"IntoValues"],[8,"NativeArithmetics"],[8,"Add"],[15,"i128"],[3,"MutableListArray"],[8,"Offset"],[3,"MutableBinaryArray"],[8,"NativeType"],[3,"MutableUtf8Array"],[3,"MutablePrimitiveArray"],[8,"DictionaryKey"],[3,"DictionaryArray"],[3,"FixedSizeBinaryArray"],[3,"MapArray"],[3,"NullArray"],[3,"UnionArray"],[3,"MutableBinaryValuesArray"],[3,"MutableBooleanArray"],[8,"MutableArray"],[3,"MutableDictionaryArray"],[3,"MutableFixedSizeBinaryArray"],[3,"MutableFixedSizeListArray"],[3,"MutableNullArray"],[3,"MutableStructArray"],[3,"MutableUtf8ValuesArray"],[8,"CheckedAdd"],[8,"CheckedDiv"],[8,"CheckedMul"],[8,"CheckedRem"],[8,"CheckedSub"],[8,"ArrayAccessor"],[3,"ArrayValuesIter"],[8,"Div"],[8,"TrustedLen"],[3,"GrowableBinary"],[3,"GrowableBoolean"],[3,"GrowableDictionary"],[3,"GrowableFixedSizeBinary"],[3,"GrowableFixedSizeList"],[3,"GrowableList"],[3,"GrowableMap"],[3,"GrowableNull"],[3,"GrowablePrimitive"],[3,"GrowableUnion"],[3,"GrowableUtf8"],[3,"BitmapIter"],[4,"ZipValidity"],[3,"DictionaryValuesIter"],[3,"ChunksExact"],[3,"MapValuesIter"],[3,"UnionIter"],[8,"DictValue"],[3,"DictionaryValuesIterTyped"],[3,"HashHasher"],[3,"BuildHasherDefault"],[8,"Mul"],[3,"OffsetsBuffer"],[8,"OverflowingAdd"],[8,"OverflowingMul"],[8,"OverflowingSub"],[8,"Extend"],[8,"Rem"],[8,"SaturatingAdd"],[8,"SaturatingMul"],[8,"SaturatingSub"],[8,"Sub"],[8,"TryExtend"],[8,"TryExtendFromSelf"],[8,"TryPush"],[8,"WrappingAdd"],[8,"WrappingMul"],[8,"WrappingSub"],[3,"GrowableStruct"],[8,"Growable"],[3,"StructArray"],[8,"BitChunk"],[3,"BitChunks"],[3,"IntoIter"],[3,"Bytes"],[3,"IterBridge"],[3,"SlicesIterator"],[3,"ZipValidityIter"],[3,"BitChunksExact"],[3,"BitChunksExactMut"],[3,"BitChunkIter"],[4,"BytesAllocator"],[3,"ForeignVec"],[3,"Chunk"],[8,"Simd"],[8,"Sum"],[8,"CheckedNeg"],[8,"One"],[8,"Neg"],[8,"Pow"],[8,"WrappingNeg"],[3,"PrimitiveScalar"],[3,"months_days_ns"],[3,"BooleanScalar"],[8,"FromLexical"],[3,"CastOptions"],[3,"days_ms"],[8,"Float"],[3,"f16"],[8,"AsPrimitive"],[8,"ToLexical"],[8,"Simd8"],[8,"Index"],[4,"UnionMode"],[4,"IntervalUnit"],[3,"ArrowSchema"],[3,"ArrowArray"],[3,"ArrowArrayStream"],[8,"DerefMut"],[3,"ArrowArrayStreamReader"],[3,"IpcField"],[3,"IpcSchema"],[3,"FileMetadata"],[3,"StreamMetadata"],[8,"Read"],[8,"Seek"],[3,"FileReader"],[3,"StreamReader"],[8,"MmapBytesReader"],[4,"StreamState"],[4,"Compression"],[3,"WriteOptions"],[3,"Record"],[8,"Write"],[3,"StreamWriter"],[3,"FileWriter"],[4,"IpcCompression"],[3,"EncodedData"],[3,"Buffer"],[3,"FieldNode"],[8,"AsyncWrite"],[8,"Unpin"],[3,"FileSink"],[3,"Context"],[4,"Poll"],[3,"StreamSink"],[3,"Convert"],[3,"Empty"],[3,"Filter"],[3,"Fuse"],[3,"Map"],[3,"MapErr"],[3,"MapRef"],[3,"Skip"],[3,"SkipWhile"],[3,"Take"],[3,"TakeWhile"],[8,"FallibleStreamingIterator"],[3,"ColumnChunkMetaData"],[8,"Index"],[3,"FileMetaData"],[8,"AsyncRead"],[8,"AsyncSeek"],[8,"Future"],[4,"State"],[8,"PageIterator"],[3,"Decompressor"],[3,"BasicDecompressor"],[3,"ReadColumnIterator"],[3,"ColumnDescriptor"],[3,"RowGroupMetaData"],[4,"DataPageHeader"],[4,"ParquetTimeUnit"],[4,"PrimitiveLogicalType"],[4,"GroupLogicalType"],[4,"PrimitiveConvertedType"],[4,"InitNested"],[3,"ColumnChunk"],[3,"Encoding"],[8,"Pages"],[3,"PrimitiveType"],[4,"Compression"],[3,"NestedState"],[4,"CompressedPage"],[4,"Page"],[3,"TryFromIntError"],[4,"Error"],[3,"TryFromSliceError"],[4,"Error"],[4,"TimeUnit"],[3,"ColumnIterator"],[3,"PageReader"],[3,"ColumnMetaData"],[3,"Descriptor"],[4,"ParquetType"],[3,"StructIterator"],[3,"FilteredPage"],[3,"FileReader"],[3,"RowGroupReader"],[3,"RowGroupDeserializer"],[8,"Nested"],[3,"PageMetaData"],[4,"ParquetPhysicalType"],[3,"PageLocation"],[8,"Statistics"],[4,"LogicalType"],[3,"Interval"],[4,"FieldPageStatistics"],[3,"ColumnPageStatistics"],[3,"Statistics"],[3,"MutableStatistics"],[3,"Compressor"],[3,"DynStreamingIterator"],[3,"WriteOptions"],[4,"Encoding"],[3,"DynIter"],[4,"Nested"],[3,"KeyValue"],[3,"ThriftFileMetaData"],[3,"SchemaDescriptor"],[4,"CompressionOptions"],[3,"BrotliLevel"],[3,"GzipLevel"],[3,"ZstdLevel"],[3,"FieldInfo"],[4,"Version"],[4,"ColumnOrder"],[3,"CompressedDataPage"],[3,"FileWriter"],[4,"ParquetCompression"],[4,"Repetition"],[4,"GroupConvertedType"],[3,"SchemaElement"],[3,"RowGroup"],[4,"ColumnOrder"],[4,"EncryptionAlgorithm"],[3,"RowGroupIterator"],[3,"FileSink"],[8,"TInputProtocol"],[8,"TInputStreamProtocol"],[8,"TOutputProtocol"],[8,"TOutputStreamProtocol"],[3,"DictionaryScalar"],[3,"Utf8Scalar"],[3,"BinaryScalar"],[3,"ListScalar"],[3,"MapScalar"],[3,"NullScalar"],[3,"StructScalar"],[3,"FixedSizeListScalar"],[3,"FixedSizeBinaryScalar"],[3,"UnionScalar"],[8,"TimeZone"],[3,"FixedOffset"],[3,"DateTime"],[3,"i256"],[3,"BitChunkOnes"],[3,"IndexRange"],[3,"u8x64"],[3,"u16x32"],[3,"u32x16"],[3,"u64x8"],[3,"i8x64"],[3,"i16x32"],[3,"i32x16"],[3,"i64x8"],[3,"f32x16"],[3,"f64x8"],[3,"i128x8"],[3,"f16x32"],[3,"days_msx8"],[3,"months_days_nsx8"],[3,"i256x8"],[3,"Date"],[3,"Months"],[3,"Days"],[4,"LocalResult"],[3,"Utc"],[4,"WeekStartDay"],[3,"OutOfRangeError"],[4,"SecondsFormat"],[3,"ParseError"],[3,"IsoWeek"],[3,"Local"],[4,"RoundingError"],[4,"Weekday"],[3,"ParseWeekdayError"],[4,"Month"],[3,"ParseMonthError"],[3,"OutOfRange"],[3,"NaiveWeek"],[3,"RangeInclusive"],[3,"StrftimeItems"],[3,"DelayedFormat"],[3,"SystemTime"],[3,"Duration"],[3,"NaiveDateDaysIterator"],[3,"NaiveDateWeeksIterator"],[4,"ParseErrorKind"],[4,"Expr"],[4,"Pad"],[4,"Numeric"],[3,"InternalNumeric"],[4,"Fixed"],[3,"InternalFixed"],[4,"Item"],[3,"Parsed"],[8,"Offset"],[8,"Signed"],[4,"FpCategory"],[4,"FloatErrorKind"],[3,"ParseFloatError"],[15,"isize"],[8,"Zero"],[3,"OnceRef"],[3,"OnceBox"],[3,"OnceNonZeroUsize"],[3,"OnceBool"],[3,"NonZeroUsize"],[3,"OnceCell"],[3,"Lazy"],[3,"OnceCell"],[3,"Lazy"],[3,"ThreadPoolBuilder"],[3,"ThreadPool"],[8,"ThreadSpawn"],[3,"ThreadPoolBuildError"],[3,"DefaultSpawn"],[4,"Yield"],[3,"BroadcastContext"],[3,"ThreadBuilder"],[3,"Scope"],[3,"ScopeFifo"],[3,"FnContext"],[3,"Configuration"],[3,"CustomSpawn"],[3,"IntoIter"],[8,"Consumer"],[8,"UnindexedConsumer"],[8,"ProducerCallback"],[3,"IntoIter"],[3,"Iter"],[3,"Drain"],[3,"Iter"],[3,"IntoIter"],[3,"IterMut"],[3,"Iter"],[3,"IntoIter"],[3,"Iter"],[3,"IntoIter"],[3,"IterMut"],[3,"Drain"],[3,"Iter"],[3,"IntoIter"],[3,"Drain"],[3,"IntoIter"],[3,"Iter"],[3,"IterMut"],[3,"IntoIter"],[3,"Iter"],[3,"IterMut"],[3,"Drain"],[8,"AsMut"],[3,"Chain"],[3,"Chunks"],[3,"Empty"],[3,"Cloned"],[3,"Copied"],[3,"Enumerate"],[3,"Filter"],[3,"FilterMap"],[3,"FlatMap"],[3,"FlatMapIter"],[3,"Flatten"],[3,"FlattenIter"],[3,"Fold"],[3,"FoldWith"],[3,"FoldChunks"],[3,"FoldChunksWith"],[3,"Inspect"],[3,"Interleave"],[3,"InterleaveShortest"],[3,"Intersperse"],[3,"MinLen"],[3,"MaxLen"],[3,"Map"],[3,"MapWith"],[3,"MapInit"],[3,"MultiZip"],[3,"Once"],[3,"PanicFuse"],[3,"Positions"],[3,"Repeat"],[3,"RepeatN"],[3,"Rev"],[3,"Skip"],[3,"SkipAny"],[3,"SkipAnyWhile"],[3,"Split"],[3,"StepBy"],[3,"Take"],[3,"TakeAny"],[3,"TakeAnyWhile"],[3,"TryFold"],[8,"Try"],[3,"TryFoldWith"],[3,"Update"],[3,"WhileSome"],[3,"Zip"],[3,"ZipEq"],[8,"FromParallelIterator"],[8,"BufRead"],[8,"Deref"],[8,"Command"],[8,"RangeBounds"],[8,"ParallelExtend"],[8,"Product"],[8,"VarInt"],[4,"SeekFrom"],[3,"Arguments"],[8,"Producer"],[8,"UnindexedProducer"],[8,"Folder"],[3,"IntoIter"],[3,"Iter"],[3,"IterMut"],[3,"Bytes"],[3,"CharIndices"],[3,"Chars"],[3,"Chunks"],[3,"ChunksExact"],[3,"ChunksExactMut"],[3,"ChunksMut"],[3,"EncodeUtf16"],[3,"Lines"],[8,"Pattern"],[3,"MatchIndices"],[3,"Matches"],[3,"RChunks"],[3,"RChunksExact"],[3,"RChunksExactMut"],[3,"RChunksMut"],[3,"Split"],[3,"Split"],[3,"SplitMut"],[3,"SplitTerminator"],[3,"SplitWhitespace"],[3,"Windows"],[3,"Iter"],[8,"IndexedRangeInteger"],[8,"RangeInteger"],[3,"Iter"],[8,"IndexedRangeInteger"],[8,"RangeInteger"],[3,"IntoIter"],[3,"Iter"],[3,"IterMut"],[3,"Iter"],[3,"IterMut"],[3,"Drain"],[3,"IntoIter"],[3,"Drain"],[3,"Regex"],[3,"Match"],[3,"RegexBuilder"],[3,"RegexSetBuilder"],[3,"RegexSet"],[3,"ReplacerRef"],[3,"CaptureLocations"],[3,"CaptureNames"],[3,"Captures"],[3,"CaptureMatches"],[3,"SubCaptureMatches"],[3,"NoExpand"],[3,"SetMatches"],[3,"SetMatchesIter"],[3,"Matches"],[3,"Split"],[3,"SplitN"],[3,"SetMatchesIntoIter"],[8,"Replacer"],[3,"Match"],[3,"Regex"],[3,"RegexBuilder"],[3,"RegexSetBuilder"],[3,"RegexSet"],[3,"ReplacerRef"],[3,"CaptureLocations"],[3,"CaptureNames"],[3,"Captures"],[3,"CaptureMatches"],[3,"SubCaptureMatches"],[3,"NoExpand"],[3,"SetMatches"],[3,"SetMatchesIter"],[3,"Matches"],[3,"Split"],[3,"SplitN"],[3,"SetMatchesIntoIter"],[8,"Replacer"],[3,"JoinArgs"],[4,"NullStrategy"],[4,"UniqueKeepStrategy"],[3,"Global"],[3,"HashSet"],[3,"GroupBy"],[3,"DynamicGroupOptions"],[3,"RollingGroupOptions"],[3,"RangeTo"],[3,"RangeFrom"],[3,"RangeFull"],[3,"RangeToInclusive"],[8,"IntoSeries"],[3,"RecordBatchIter"],[3,"PhysRecordBatchIter"],[3,"LazyFrame"],[8,"IntoVec"],[3,"MeltArgs"],[3,"GroupsIdx"],[4,"GroupByMethod"],[3,"SlicedGroups"],[3,"GroupsProxyParIter"],[4,"GroupsIndicator"],[4,"AAggExpr"],[3,"Copied"],[3,"Zip"],[3,"GroupsProxyIter"],[4,"JoinValidation"],[4,"JoinType"],[4,"AnyValueBuffer"],[4,"AnyValueBufferTrusted"],[3,"ParquetReader"],[8,"PhysicalIoExpr"],[3,"MetaNameSpace"],[3,"LazyGroupBy"],[3,"JoinBuilder"],[3,"LazyJsonLineReader"],[8,"AnonymousScan"],[3,"ScanArgsAnonymous"],[8,"FunctionOutputField"],[3,"SpecialEq"],[4,"VisitRecursion"],[4,"FunctionExpr"],[3,"ListNameSpace"],[3,"ArrayNameSpace"],[3,"IpcReader"],[3,"IpcStreamReader"],[8,"PartitionedAggregation"],[4,"AggExpr"],[8,"StatsEvaluator"],[3,"PhysicalIoHelper"],[3,"IpcWriter"],[3,"BatchedWriter"],[3,"BatchedParquetReader"],[3,"ParquetWriter"],[3,"BatchedWriter"],[3,"BatchedWriterAsync"],[3,"CsvReader"],[3,"BatchedCsvReaderMmap"],[3,"BatchedCsvReaderRead"],[3,"OwnedBatchedCsvReaderMmap"],[3,"OwnedBatchedCsvReader"],[3,"BinaryNameSpace"],[4,"Operator"],[3,"CategoricalNameSpace"],[4,"InterpolationMethod"],[4,"SearchSortedSide"],[3,"Bounds"],[4,"ClosedWindow"],[4,"StartBy"],[3,"Window"],[4,"CsvEncoding"],[4,"NullValues"],[4,"ParallelStrategy"],[3,"GzipLevel"],[3,"BrotliLevel"],[3,"ZstdLevel"],[3,"UnionArgs"],[3,"LazyCsvReader"],[3,"ScanArgsIpc"],[3,"ScanArgsParquet"],[4,"CategoricalOrdering"],[3,"When"],[3,"Then"],[3,"ChainedWhen"],[3,"ChainedThen"],[4,"Excluded"],[4,"BooleanFunction"],[3,"DatetimeArgs"],[3,"DurationArgs"],[3,"RollingCovOptions"],[3,"StrptimeOptions"],[3,"JoinOptions"],[3,"WindowOptions"],[4,"WindowMapping"],[3,"OptState"],[4,"LiteralValue"],[3,"ParquetWriteOptions"],[3,"IpcWriterOptions"],[3,"AnonymousScanOptions"],[4,"LogicalPlan"],[3,"IpcStreamWriterOption"],[8,"SerWriter"],[3,"IpcWriterOption"],[8,"SeriesBinaryUdf"],[8,"BinaryUdfOutputField"],[3,"NoNull"],[4,"NullBehavior"],[3,"DotNode"],[3,"HashMap"],[3,"DateLikeNameSpace"],[3,"ExecutionState"],[3,"AggregationContext"],[3,"StructNameSpace"],[3,"CsvWriter"],[3,"IpcStreamWriter"],[3,"JsonWriter"],[3,"JsonReader"],[3,"JsonLineReader"],[8,"SeriesUdf"],[8,"RenameAliasFn"],[8,"PhysicalExpr"],[8,"UdfSchema"],[4,"TemporalFunction"],[4,"CategoricalFunction"],[4,"BinaryFunction"],[4,"RangeFunction"],[4,"StringFunction"],[3,"File"],[3,"FunctionOptions"],[4,"Context"],[3,"BoundsIter"],[3,"BatchedParquetIter"],[3,"StructValueIter"],[8,"Literal"],[3,"Null"],[3,"ExprMut"],[8,"FetchRowGroups"],[3,"RowCount"],[4,"ALogicalPlan"],[3,"Arena"],[4,"AExpr"],[3,"Node"],[8,"Range"],[3,"StringNameSpace"],[4,"JsonFormat"],[3,"Serializer"],[3,"FileWriter"],[4,"Pattern"],[3,"DatetimeInfer"],[3,"RecordSerializer"],[3,"Serializer"],[8,"DoubleEndedFallibleStreamingIterator"],[3,"ColumnStats"],[3,"BatchStats"],[4,"ReaderBytes"],[3,"SeriesIter"],[3,"UnstableSeries"],[8,"ArrayArithmetics"],[8,"ChunkedBuilder"],[8,"NewChunkedArray"],[4,"RevMappingBuilder"],[8,"InitHashMaps"],[8,"ArrowGetItem"],[8,"IntoTakeRandom"],[8,"TakeRandomUtf8"],[8,"ChunkCompare"],[8,"LhsNumOps"],[8,"FxHash"],[8,"NumOpsDispatch"],[8,"ChunkApply"],[8,"ChunkApplyKernel"],[8,"ChunkSort"],[8,"ChunkUnique"],[8,"AsRefDataType"],[8,"MutableBitmapExtension"],[3,"TakeRandomBitmap"],[8,"ChunkCast"],[8,"LogicalType"],[8,"NumOpsDispatchChecked"],[8,"ChunkCumAgg"],[8,"ChunkExplode"],[8,"ChunkFillNullValue"],[8,"ChunkFilter"],[8,"FromData"],[8,"FromDataUtf8"],[8,"FromDataBinary"],[8,"ListFromIter"],[8,"NamedFromOwned"],[8,"ChunkFull"],[8,"ChunkFullNull"],[8,"ChunkAnyValue"],[8,"IndexOfSchema"],[8,"GetAnyValue"],[8,"ValueSize"],[8,"IntoGroupsProxy"],[8,"PolarsArray"],[8,"IsFirst"],[8,"IsIn"],[8,"IsLast"],[8,"ChunkAgg"],[8,"ChunkAggSeries"],[8,"ChunkQuantile"],[8,"QuantileAggSeries"],[8,"IndexToUsize"],[8,"NamedFrom"],[8,"ChunkExpandAtIndex"],[8,"ChunkPeaks"],[8,"RepeatBy"],[8,"ChunkReverse"],[8,"ChunkRollApply"],[8,"ChunkSet"],[8,"ChunkShift"],[8,"ChunkShiftFill"],[8,"SlicedArray"],[8,"ChunkVar"],[8,"VarAggSeries"],[8,"StrConcat"],[8,"ChunkTake"],[8,"ChunkBytes"],[8,"VecHash"],[8,"ChunkZip"],[13,"Slice"],[8,"Utf8FromIter"],[8,"BinaryFromIter"],[8,"HashMapExt"],[8,"HashSetExt"],[8,"GenericBinaryArray"],[8,"PushUnchecked"],[8,"BitChunkIterExact"],[8,"SimdOrd"],[8,"Sum"],[8,"ArrayAdd"],[8,"ArrayCheckedAdd"],[8,"ArrayCheckedDiv"],[8,"ArrayCheckedMul"],[8,"ArrayCheckedRem"],[8,"ArrayCheckedSub"],[8,"ArrayDiv"],[8,"ArrayMul"],[8,"ArrayOverflowingAdd"],[8,"ArrayOverflowingMul"],[8,"ArrayOverflowingSub"],[8,"ArrayRem"],[8,"ArraySaturatingAdd"],[8,"ArraySaturatingMul"],[8,"ArraySaturatingSub"],[8,"ArraySub"],[8,"ArrayWrappingAdd"],[8,"ArrayWrappingMul"],[8,"ArrayWrappingSub"],[8,"Simd8PartialEq"],[8,"Simd8Lanes"],[8,"Simd8PartialOrd"],[13,"InvalidBuffer"],[13,"InvalidBuffersLength"],[13,"InvalidBitmap"],[13,"InvalidId"],[13,"InvalidIdDataType"],[8,"MutStreamingIterator"],[13,"GroupType"],[13,"Time"],[13,"Timestamp"],[8,"NativeSimd"],[8,"FromMaskChunk"],[8,"DurationRound"],[8,"Datelike"],[8,"Timelike"],[8,"SubsecRound"],[8,"ToBytes"],[8,"FromBytes"],[8,"FloatConst"],[8,"Inv"],[8,"MulAdd"],[8,"CheckedEuclid"],[8,"CheckedShl"],[8,"CheckedShr"],[8,"PrimInt"],[8,"Euclid"],[8,"FromPrimitive"],[8,"Bounded"],[8,"MulAddAssign"],[8,"Saturating"],[8,"WrappingShl"],[8,"WrappingShr"],[8,"UpperBounded"],[8,"LowerBounded"],[8,"FloatCore"],[8,"Real"],[8,"IntoParallelRefIterator"],[8,"IntoParallelRefMutIterator"],[8,"ParallelDrainFull"],[8,"ParallelDrainRange"],[8,"ParallelBridge"],[8,"Reducer"],[8,"ParallelSlice"],[8,"ParallelSliceMut"],[8,"ParallelString"],[8,"AggList"],[8,"PhysicalAggExpr"],[8,"DataFrameOps"],[8,"ArgAgg"],[8,"AsBinary"],[8,"Utf8Methods"],[8,"AsList"],[8,"SeriesSealed"],[8,"AsUtf8"],[8,"Utf8NameSpaceImpl"],[8,"LazyFileListReader"],[8,"BinaryNameSpaceImpl"],[8,"ExprEvalExtension"],[8,"DateMethods"],[8,"DatetimeMethods"],[8,"TemporalMethods"],[8,"DurationMethods"],[8,"LogSeries"],[8,"ListNameSpaceExtension"],[8,"SerReader"],[8,"PolarsTemporalGroupby"],[8,"TimeMethods"],[8,"DataFrameJoinOps"],[8,"IntoListNameSpace"],[8,"SeriesMethods"],[8,"IntoLazy"],[8,"ListNameSpaceImpl"],[8,"PolarsMonthEnd"],[8,"PolarsMonthStart"],[8,"RollingAgg"],[8,"PolarsRound"],[8,"ChunkedSet"],[8,"ToDummies"],[8,"PolarsTruncate"],[8,"PolarsUpsample"],[13,"Quantile"],[13,"Min"],[13,"Max"],[13,"All"],[13,"Any"],[13,"SortBy"],[13,"Filter"],[13,"Cast"],[13,"Sort"],[13,"Take"],[13,"RenameAlias"],[13,"Ternary"],[13,"Function"],[13,"Window"],[13,"AnonymousFunction"],[13,"Slice"],[13,"BinaryExpr"],[13,"Random"],[13,"Entropy"],[13,"Log"],[13,"Correlation"],[13,"Round"],[13,"Clip"],[13,"ShiftAndFill"],[13,"Cumcount"],[13,"Cumsum"],[13,"Cumprod"],[13,"Cummin"],[13,"Cummax"],[13,"FillNull"],[13,"Range"],[13,"Aggregate"],[13,"Sort"],[13,"ExtContext"],[13,"Cache"],[13,"DataFrameScan"],[13,"Error"],[13,"LocalProjection"],[13,"Projection"],[13,"HStack"],[13,"AnonymousScan"],[13,"Scan"],[13,"MapFunction"],[13,"Selection"],[13,"Distinct"],[13,"Slice"],[13,"FileSink"],[13,"Join"],[13,"Union"],[8,"ArrayNameSpace"],[8,"AsArray"],[8,"AsUtf8"],[8,"TryFromWithUnit"],[8,"StrpTimeParser"],[8,"AsSeries"],[8,"IntoSeriesOps"]]},\ -"polars_arrow":{"doc":"","t":"AAAAAAAAAAAAAAAAAIQIIIALLLLKKKLAAAAIIIKKKDLLFLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLIKKIILLFFFFFFFFFAFIKKAAFAAAAFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFGILLLENNNNDNNNNNNNNNNEGNNNNNLLLLLLLLLLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLFLLLLLLFOOOOLLFLFLLLLLLLLLLLLLCCDLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLLLGGIFKIIKKAAAAAAAAAAFDLMMLLLLLLMLLLLLLLLFFFFLLMLLMLLLLFFFFFFFGDDLLLLLLLLLLFFMLLLLLLLLLLLLMLLAAMLLLLLLLLNNNDDNDNEDIDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLFFFFFFLLLLLLLLLLLLLLLLLLLLLLKLLLLLLDDDDDIDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFKLLLLLLLKLLLLLLLFFFFFFLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLFFFFFFFFFFFFFFFFFFFFCGGGCCCCIKKELLLLLLLLLLLLLLLIIILLKLLKKKIIIDLLLLLLLLFFLLLLLLKLLLLLLLLLLLL","n":["array","bit_util","bitmap","compute","conversion","data_types","error","export","floats","index","is_valid","kernels","prelude","slice","time_zone","trusted_len","utils","ArrowGetItem","Item","ListFromIter","PolarsArray","ValueSize","default_arrays","from_iter_binary_trusted_len","from_iter_bool_trusted_len","from_iter_primitive_trusted_len","from_iter_utf8_trusted_len","get","get_unchecked","get_values_size","has_validity","list","null","slice","utf8","FromData","FromDataBinary","FromDataUtf8","from_data_default","from_data_unchecked_default","from_data_unchecked_default","AnonymousBuilder","borrow","borrow_mut","convert_inner_type","deref","deref_mut","drop","finish","from","init","into","is_empty","new","offsets","push","push_empty","push_multiple","push_null","push_opt","take_offsets","try_from","try_into","type_id","MutableNullArray","as_any","as_box","as_mut_any","borrow","borrow_mut","data_type","default","deref","deref_mut","drop","fmt","from","init","into","len","push_null","reserve","shrink_to_fit","try_from","try_into","type_id","validity","SlicedArray","slice_typed","slice_typed_unchecked","BinaryFromIter","Utf8FromIter","from_values_iter","from_values_iter","ceil","get_bit","get_bit_raw","round_upto_multiple_of_64","round_upto_power_of_2","set_bit","set_bit_raw","unset_bit","unset_bit_raw","mutable","unary_mut","MutableBitmapExtension","as_slice_mut","set_bit_unchecked","arithmetics","arity","binary_mut","bitwise","cast","take","tile","unary_mut","bitand","bitor","bitxor","cast","bitmap","take_binary_iter_unchecked","take_binary_opt_iter_unchecked","take_binary_unchecked","take_bool_iter_unchecked","take_bool_opt_iter_unchecked","take_no_null_binary_iter_unchecked","take_no_null_binary_opt_iter_unchecked","take_no_null_bool_iter_unchecked","take_no_null_bool_opt_iter_unchecked","take_no_null_primitive_iter_unchecked","take_no_null_primitive_opt_iter_unchecked","take_no_null_primitive_unchecked","take_no_null_utf8_iter_unchecked","take_no_null_utf8_opt_iter_unchecked","take_primitive_iter_unchecked","take_primitive_opt_iter_unchecked","take_primitive_unchecked","take_unchecked","take_utf8_iter_unchecked","take_utf8_opt_iter_unchecked","take_utf8_unchecked","take_value_indices_from_list","take_bitmap_unchecked","tile_primitive","chunk_to_struct","primitive_to_vec","ArrayRef","IsFloat","get_values_size","is_float","is_nan","ArrowError","ArrowError","ColumnNotFound","ComputeError","Duplicate","ErrString","External","ExternalFormat","InvalidArgumentError","InvalidOperation","Io","Io","NoData","NotYetImplemented","OutOfSpec","Overflow","PolarsError","PolarsResult","SchemaFieldNotFound","SchemaMismatch","ShapeMismatch","StringCacheMismatch","StructFieldNotFound","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","feature_gated","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_external_error","get_warning_function","init","init","init","into","into","into","map_err","polars_bail","polars_ensure","polars_err","polars_warn","provide","provide","set_warning_function","source","to_compute_err","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","wrap_msg","arrow","hashbrown","OrdFloat","__clone_box","borrow","borrow_mut","clone","clone_into","cmp","deref","deref_mut","drop","eq","equivalent","equivalent","f32_to_ordablef32","f64_to_ordablef64","from","init","into","partial_cmp","to_f32","to_f64","to_i16","to_i32","to_i64","to_i8","to_isize","to_owned","to_u16","to_u32","to_u64","to_u8","to_usize","try_from","try_into","type_id","IdxArr","IdxSize","IndexToUsize","indexes_to_usizes","negative_to_usize","ArrowArray","IsValid","is_null_unchecked","is_valid_unchecked","concatenate","ewm","float","list","list_bytes_iter","rolling","set","sort_partition","string","take_agg","concatenate_owned_unchecked","EWMOptions","__clone_box","adjust","alpha","and_adjust","and_com","and_half_life","and_ignore_nulls","and_min_periods","and_span","bias","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","ewm_cov","ewm_mean","ewm_std","ewm_var","fmt","from","ignore_nulls","init","into","min_periods","to_owned","try_from","try_into","type_id","is_finite","is_infinite","is_nan","is_not_nan","array_to_unit_list","sublist_get","numeric_list_bytes_iter","DynArgs","RollingQuantileParams","RollingVarParams","__clone_box","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","compare_fn_nan_max","compare_fn_nan_min","ddof","deref","deref","deref_mut","deref_mut","drop","drop","fmt","fmt","from","from","init","init","interpol","into","into","no_nulls","nulls","prob","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","Higher","Linear","Lower","MaxWindow","MeanWindow","Midpoint","MinWindow","Nearest","QuantileInterpolOptions","QuantileWindow","RollingAggWindowNoNulls","SumWindow","VarWindow","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","fmt","from","from","from","from","from","from","from","init","init","init","init","init","init","init","into","into","into","into","into","into","into","new","new","new","new","new","new","new","rolling_max","rolling_mean","rolling_min","rolling_quantile","rolling_sum","rolling_var","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","update","update","update","update","update","update","update","MaxWindow","MeanWindow","MinMaxWindow","MinWindow","QuantileWindow","RollingAggWindowNulls","SortedMinMax","SumWindow","VarWindow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","is_reverse_sorted_max_nulls","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","new","new","new","new","new","new","new","new","rolling_max","rolling_mean","rolling_min","rolling_quantile","rolling_sum","rolling_var","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","update","update","update","update","update","update","update","update","set_at_idx_no_null","set_at_nulls","set_with_mask","create_clean_partitions","partition_to_groups","partition_to_groups_amortized","string_lengths","string_nchars","online_variance","take_agg_no_null_primitive_iter_unchecked","take_agg_primitive_iter_unchecked","take_agg_primitive_iter_unchecked_count_nulls","take_agg_utf8_iter_unchecked","take_agg_utf8_iter_unchecked_no_null","take_max_bool_iter_unchecked_no_nulls","take_max_bool_iter_unchecked_nulls","take_min_bool_iter_unchecked_no_nulls","take_min_bool_iter_unchecked_nulls","take_var_no_null_primitive_iter_unchecked","take_var_nulls_primitive_iter_unchecked","DynArgs","LargeBinaryArray","LargeListArray","LargeStringArray","MutableBitmapExtension","QuantileInterpolOptions","RollingQuantileParams","RollingVarParams","ExtremaNanAware","max_value_nan_aware","min_value_nan_aware","Tz","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","from","init","into","to_owned","try_from","try_into","type_id","FromIteratorReversed","TrustedLen","TrustedLenPush","extend_trusted_len","extend_trusted_len","extend_trusted_len_unchecked","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_rev","from_trusted_len_iter_unchecked","push_unchecked","CustomIterTools","CustomIterToolsSized","FromTrustedLenIterator","TrustMyLength","__clone_box","all_equal","borrow","borrow_mut","clone","clone_into","collect_reversed","collect_trusted","combine_validities_and","combine_validities_or","deref","deref_mut","drop","fold_first_","fold_options","from","from_iter_trusted_length","init","into","into_iter","new","next","next_back","size_hint","to_owned","trust_my_length","try_from","try_into","type_id"],"q":[[0,"polars_arrow"],[17,"polars_arrow::array"],[35,"polars_arrow::array::default_arrays"],[41,"polars_arrow::array::list"],[64,"polars_arrow::array::null"],[87,"polars_arrow::array::slice"],[90,"polars_arrow::array::utf8"],[94,"polars_arrow::bit_util"],[103,"polars_arrow::bitmap"],[105,"polars_arrow::bitmap::mutable"],[108,"polars_arrow::compute"],[116,"polars_arrow::compute::bitwise"],[119,"polars_arrow::compute::cast"],[120,"polars_arrow::compute::take"],[143,"polars_arrow::compute::take::bitmap"],[144,"polars_arrow::compute::tile"],[145,"polars_arrow::conversion"],[147,"polars_arrow::data_types"],[152,"polars_arrow::error"],[244,"polars_arrow::export"],[246,"polars_arrow::floats"],[281,"polars_arrow::index"],[286,"polars_arrow::is_valid"],[290,"polars_arrow::kernels"],[300,"polars_arrow::kernels::concatenate"],[301,"polars_arrow::kernels::ewm"],[334,"polars_arrow::kernels::float"],[338,"polars_arrow::kernels::list"],[340,"polars_arrow::kernels::list_bytes_iter"],[341,"polars_arrow::kernels::rolling"],[383,"polars_arrow::kernels::rolling::no_nulls"],[502,"polars_arrow::kernels::rolling::nulls"],[630,"polars_arrow::kernels::set"],[633,"polars_arrow::kernels::sort_partition"],[636,"polars_arrow::kernels::string"],[638,"polars_arrow::kernels::take_agg"],[650,"polars_arrow::prelude"],[658,"polars_arrow::slice"],[661,"polars_arrow::time_zone"],[677,"polars_arrow::trusted_len"],[688,"polars_arrow::utils"]],"d":["","","","","","","","","","","","","","","","","","","","","","","","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","","Safety","Useful for a Utf8 or a List to get underlying value size. …","","","","","","","","","","Safety","Safety","","","","Cast null arrays to inner type and ensure that all offsets …","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","Utility trait to slice concrete arrow arrays whilst …","Slices this Array.","Slices the Array.","","","","","Returns the ceil of value/divisor","Returns whether bit at position i in data is set or not","Returns whether bit at position i in data is set or not.","Returns the nearest number that is >= than num and is a …","Returns the nearest multiple of factor that is >= than num…","Sets bit at position i for data","Sets bit at position i for data","Sets bit at position i for data to 0","Sets bit at position i for data to 0","","Apply a bitwise operation op to one input and return the …","","","Safety","","","","","","","","","","","","","","Safety","Safety","Safety","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Safety","Safety","Take kernel for single chunk without nulls and an iterator …","Take kernel for single chunk without null values and an …","Take kernel for single chunk without nulls and an iterator …","Take kernel for a single chunk without nulls and an …","Take kernel for single chunk without nulls and arrow array …","Safety","Safety","Take kernel for a single chunk with null values and an …","Take kernel for a single chunk and an iterator that can …","Take kernel for single chunk with nulls and arrow array as …","Safety","Safety","Safety","Safety","Forked and adapted from arrow-rs This is faster because it …","Safety","","","Returns its underlying Vec, if possible.","","Safety","","","","Enum with all errors in this crate.","","","","","","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","","","Wrapper for IO errors","","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","Returns the argument unchanged.","","","","Wraps an external error in an Error.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Set the function that will be called by the polars_warn! …","","","","","","","","","","","","","","","","","","A utility type that make floats Ord by nan == nan == true …","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","The type used by polars to index data.","","","Translate the negative index to an offset.","","","Safety","Safety","","","","","","","","","","kernels that combine take and aggregations.","Concatenate multiple Array of the same type into a single …","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","Convert a list [1, 2, 3] to a list type of [[1], [2], [3]]","","","","","","","","","","","","","","","","NaN will be larger than every valid value","NaN will be smaller than every valid value","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Update and recompute the window","","","","","","","","","Generic Min / Max kernel.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","Efficiently sets value at the indices from the iterator to …","Set values in a primitive array where the primitive array …","Set values in a primitive array based on a mask array. …","","Take a clean-partitioned slice and return the groups slices","","","","Numerical stable online variance aggregation See: Welford, …","Take kernel for single chunk without nulls and an iterator …","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","An iterator of known, fixed size. A trait denoting Rusts’…","","Extend the array with an iterator who’s length can be …","Extend the array with an iterator who’s length can be …","Safety","","","","Safety","Will push an item and not check if there is enough capacity","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","Turn any iterator in a trusted length iterator","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,128,128,128,128,127,127,129,130,0,0,0,0,0,0,0,131,132,133,0,13,13,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,134,134,0,0,135,136,0,0,0,0,0,0,0,0,0,0,0,0,137,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,71,71,0,47,47,47,47,0,48,48,48,47,47,48,47,48,48,48,0,0,47,47,47,47,47,45,47,48,45,47,48,45,45,47,48,45,47,48,45,47,48,0,45,45,47,47,48,48,45,45,47,47,47,47,48,48,48,48,48,48,48,48,48,48,0,45,47,48,45,47,48,0,0,0,0,0,47,48,0,47,0,45,47,48,45,47,48,45,47,48,45,47,48,47,0,0,0,70,70,70,70,70,70,70,70,70,70,70,70,0,0,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,0,0,0,0,138,0,0,139,139,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,0,0,0,0,85,85,85,85,85,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,92,93,92,93,92,93,92,93,92,93,0,0,92,92,93,92,93,92,93,92,93,92,93,92,93,93,92,93,0,0,93,92,93,92,93,92,93,92,93,94,94,94,0,0,94,0,94,0,0,0,0,0,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,94,94,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,94,94,94,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,140,100,104,105,106,107,108,0,0,0,0,0,0,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,140,100,104,105,106,107,108,0,0,0,0,0,0,0,0,0,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,0,142,112,113,114,115,116,117,118,142,112,113,114,115,116,117,118,0,0,0,0,0,0,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,142,112,113,114,115,116,117,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,143,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,0,0,0,144,144,144,144,144,124,144,144,0,0,0,0,123,145,123,123,123,123,145,145,0,0,123,123,123,145,145,123,125,123,123,123,123,123,123,123,123,145,123,123,123],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],[[4,[3]]]],[1,[[4,[3]]]],[[1,5],[[4,[3]]]],[[1,2],[[4,[3]]]],[2,6],[2,6],[[],2],[[],7],0,0,0,0,0,0,0,[[[6,[8]]]],[[[9,[3]],[9,[10]],[6,[8]]]],[[[9,[3]],[9,[10]],[6,[8]]]],0,[[]],[[]],[[11,5],[[12,[11]]]],[2],[2],[2],[[13,[6,[5]]],[[14,[[4,[3]]]]]],[[]],[[],2],[[]],[13,7],[2,13],[13,[[15,[3]]]],[[13,11]],[13],[[13,[15,[16]]]],[13],[[13,[6,[11]]]],[13,[[17,[3]]]],[[],18],[[],18],[[],19],0,[20,21],[20,[[12,[11]]]],[20,21],[[]],[[]],[20,5],[[],20],[2],[2],[2],[[20,22],23],[[]],[[],2],[[]],[20,2],[20],[[20,2]],[20],[[],18],[[],18],[[],19],[20,[[6,[24]]]],0,[[25,2,2],25],[[25,2,2],25],0,0,[[26,2,2],[[27,[3]]]],[[26,2,2],[[28,[3]]]],[[2,2],2],[[[15,[10]],2],7],[[10,2],7],[2,2],[[2,2],2],[[[15,[10]],2]],[[10,2]],[[[15,[10]],2]],[[10,2]],0,[[8,29],8],0,[[],[[15,[10]]]],[[2,7]],0,0,[[[31,[30]],[31,[30]],5,29],[[31,[30]]]],0,0,0,0,[[[31,[30]],29,5],[[31,[30]]]],[[[31,[[0,[[32,[[0,[[32,[[0,[[32,[[0,[32,30]]]],30]]]],30]]]],30]]]],[31,[[0,[[32,[[0,[[32,[[0,[[32,[[0,[32,30]]]],30]]]],30]]]],30]]]]],[[31,[[0,[[32,[[0,[[32,[[0,[[32,[[0,[32,30]]]],30]]]],30]]]],30]]]]]],[[[31,[[0,[[33,[[0,[[33,[[0,[[33,[[0,[33,30]]]],30]]]],30]]]],30]]]],[31,[[0,[[33,[[0,[[33,[[0,[[33,[[0,[33,30]]]],30]]]],30]]]],30]]]]],[[31,[[0,[[33,[[0,[[33,[[0,[[33,[[0,[33,30]]]],30]]]],30]]]],30]]]]]],[[[31,[[0,[[34,[[0,[[34,[[0,[[34,[[0,[34,30]]]],30]]]],30]]]],30]]]],[31,[[0,[[34,[[0,[[34,[[0,[[34,[[0,[34,30]]]],30]]]],30]]]],30]]]]],[[31,[[0,[[34,[[0,[[34,[[0,[[34,[[0,[34,30]]]],30]]]],30]]]],30]]]]]],[[11,5],[[14,[[12,[11]]]]]],0,[[35,1],[[12,[35]]]],[[35,1],[[12,[35]]]],[[35,36],[[12,[35]]]],[[37,1],[[12,[37]]]],[[37,1],[[12,[37]]]],[[35,1],[[12,[35]]]],[[35,1],[[12,[35]]]],[[37,1],[[12,[37]]]],[[37,1],[[12,[37]]]],[[[31,[30]],38],[[12,[[31,[30]]]]]],[[[31,[30]],1],[[12,[[31,[30]]]]]],[[[31,[30]],36],[[12,[[31,[30]]]]]],[[39,1],[[12,[39]]]],[[39,1],[[12,[39]]]],[[[31,[30]],1],[[12,[[31,[30]]]]]],[[[31,[30]],1],[[12,[[31,[30]]]]]],[[[31,[30]],36],[[12,[[31,[30]]]]]],[[11,36],16],[[39,1],[[12,[39]]]],[[39,1],[[12,[39]]]],[[39,36],[[12,[39]]]],[[[4,[3]],36]],[[8,[15,[40]]],8],[[[31,[30]],2],[[31,[30]]]],[[[41,[16]],[43,[42]]],44],[16,[[6,[[43,[30]]]]]],0,0,[16,2],[[],7],[25,7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[2],[45],[2],[2],[2],[2],[2],[2],[2],[2],0,[[45,22],[[18,[46]]]],[[45,22],[[18,[46]]]],[[47,22],[[18,[46]]]],[[47,22],[[18,[46]]]],[[48,22],[[18,[46]]]],[[48,22],[[18,[46]]]],[[]],[[[51,[[50,[49]]]]],45],[[]],[52,47],[53,47],[48,47],[53,48],[54,48],[55,48],[56,48],[57,48],[[]],[58,48],[59,48],[60,48],[[[0,[61,62,63]]],48],[[]],[[],2],[[],2],[[],2],[[]],[[]],[[]],[61,47],0,0,0,0,[64],[64],[[]],[47,[[6,[61]]]],[65,47],[[],66],[[],66],[[],66],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],19],[[],19],[[],19],[[47,67],47],0,0,0,[68],[[]],[[]],[[[70,[69]]],[[70,[69]]]],[[]],[[[70,[[0,[71,72,73]]]],[70,[[0,[71,72,73]]]]],74],[2],[2],[2],[[[70,[[0,[71,72]]]],[70,[[0,[71,72]]]]],7],[[],7],[[],7],[[[15,[75]]],[[15,[[70,[75]]]]]],[[[15,[76]]],[[15,[[70,[76]]]]]],[[]],[[],2],[[]],[[[70,[[0,[71,72,73]]]],[70,[[0,[71,72,73]]]]],[[6,[74]]]],[[[70,[77]]],[[6,[75]]]],[[[70,[77]]],[[6,[76]]]],[[[70,[77]]],[[6,[78]]]],[[[70,[77]]],[[6,[79]]]],[[[70,[77]]],[[6,[3]]]],[[[70,[77]]],[[6,[80]]]],[[[70,[77]]],[[6,[81]]]],[[]],[[[70,[77]]],[[6,[82]]]],[[[70,[77]]],[[6,[83]]]],[[[70,[77]]],[[6,[84]]]],[[[70,[77]]],[[6,[10]]]],[[[70,[77]]],[[6,[2]]]],[[],18],[[],18],[[],19],0,0,0,[[[15,[40]]],26],[2,[[6,[2]]]],0,0,[2,7],[2,7],0,0,0,0,0,0,0,0,0,0,[[[15,[16]]],[[14,[16]]]],0,[68],0,0,[[85,7],85],[[85,76],85],[[85,76],85],[[85,7],85],[[85,2],85],[[85,2],85],0,[[]],[[]],[85,85],[[]],[[],85],[2],[2],[2],[[1,1,[0,[86,30,87,88,89]],7,7,2,7],[[31,[[0,[86,30,87,88,89]]]]]],[[1,[0,[86,30,87,88]],7,2,7],[[31,[[0,[86,30,87,88]]]]]],[[[0,[1,69]],[0,[86,30,87,88,89]],7,7,2,7],[[31,[[0,[86,30,87,88,89]]]]]],[[[0,[1,69]],[0,[86,30,87,88,89]],7,7,2,7],[[31,[[0,[86,30,87,88,89]]]]]],[[85,22],23],[[]],0,[[],2],[[]],0,[[]],[[],18],[[],18],[[],19],[[[31,[[0,[30,86]]]]],16],[[[31,[[0,[30,86]]]]],16],[[[31,[[0,[30,86]]]]],16],[[[31,[[0,[30,86]]]]],16],[16,[[4,[3]]]],[[[4,[3]],3],16],[[[4,[3]]],[[91,[[12,[90]]]]]],0,0,0,[68],[68],[[]],[[]],[[]],[[]],[92,92],[93,93],[[]],[[]],[[[0,[73,71]],[0,[73,71]]],74],[[[0,[73,71]],[0,[73,71]]],74],0,[2],[2],[2],[2],[2],[2],[[92,22],23],[[93,22],23],[[]],[[]],[[],2],[[],2],0,[[]],[[]],0,0,0,[[]],[[]],[[],18],[[],18],[[],18],[[],18],[[],19],[[],19],0,0,0,0,0,0,0,0,0,0,0,0,0,[68],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[94,94],[[]],[[],94],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[94,94],7],[[],7],[[],7],[[94,22],23],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[15,2,2,95]],[[[15,[[0,[30,71,96,87,97,98,99]]]],2,2,95],[[100,[[0,[30,71,96,87,97,98,99]]]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2,95],[[104,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]]]],[[[15,[[0,[30,71,96,87,97]]]],2,2,95],[[105,[[0,[30,71,96,87,97]]]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2,95],[[106,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]]]],[[[15,[[0,[30,71,73]]]],2,2,95],[[107,[[0,[30,71,73]]]]]],[[[15,[[0,[30,71,73]]]],2,2,95],[[108,[[0,[30,71,73]]]]]],[[[15,[[0,[30,73,71,109,99,110]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,86,[96,[[0,[30,86,[96,[[0,[30,86,[96,[[0,[30,86,96,97,87,71]]]],97,87,71]]]],97,87,71]]]],97,87,71]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,73,71,109,99,110]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,96,99,110,87,97,71]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,86,71,96,87,97,98,99,101,102,103]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[]],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[2,2]],[[[100,[[0,[30,71,96,87,97,98,99]]]],2,2],[[0,[30,71,96,87,97,98,99]]]],[[[104,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2],[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],[[[105,[[0,[30,71,96,87,97]]]],2,2],[[0,[30,71,96,87,97]]]],[[[106,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2],[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],[[[107,[[0,[30,71,73]]]],2,2],[[0,[30,71,73]]]],[[[108,[[0,[30,71,73]]]],2,2],[[0,[30,71,73]]]],0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[15,[[0,[30,73,71]]]],8],7],[2,7],[[[112,[[0,[30,71,111,103,99,98]]]],2],7],[[[113,[30]],2],7],[[[114,[[0,[30,71,73]]]],2],7],[[[115,[[0,[30,71,73]]]],2],7],[[[116,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2],7],[[[117,[[0,[30,71,111,103]]]],2],7],[[[118,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]],2],7],[[15,8,2,2,95]],[[[15,[[0,[30,71,111,103,99,98]]]],8,2,2,95],[[112,[[0,[30,71,111,103,99,98]]]]]],[[[15,[30]],8,2,2,95],[[113,[30]]]],[[[15,[[0,[30,71,73]]]],8,2,2,95],[[114,[[0,[30,71,73]]]]]],[[[15,[[0,[30,71,73]]]],8,2,2,95],[[115,[[0,[30,71,73]]]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],8,2,2,95],[[116,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]]]],[[[15,[[0,[30,71,111,103]]]],8,2,2,95],[[117,[[0,[30,71,111,103]]]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]],8,2,2,95],[[118,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]]]],[[[31,[[0,[30,96,102,87,119,73,109,71]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,71,73,111,103,99,98]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,96,102,87,119,73,109,71]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,71,73,111,103]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,[96,[[0,[30,[96,[[0,[30,[96,[[0,[30,96,102,87,97,71,86]]]],102,87,97,71,86]]]],102,87,97,71,86]]]],102,87,97,71,86]]]],2,2,7,[6,[[15,[76]]]],95],16],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[2,2],6],[[[112,[[0,[30,71,111,103,99,98]]]],2,2],[[6,[[0,[30,71,111,103,99,98]]]]]],[[[113,[30]],2,2],[[6,[30]]]],[[[114,[[0,[30,71,73]]]],2,2],[[6,[[0,[30,71,73]]]]]],[[[115,[[0,[30,71,73]]]],2,2],[[6,[[0,[30,71,73]]]]]],[[[116,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2],[[6,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]]]],[[[117,[[0,[30,71,111,103]]]],2,2],[[6,[[0,[30,71,111,103]]]]]],[[[118,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]],2,2],[[6,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]]]],[[[31,[30]],1,30,5],[[91,[[31,[30]]]]]],[[[31,[30]],30],[[31,[30]]]],[[[31,[30]],37,30,5],[[31,[30]]]],[[[15,[[0,[120,30,73]]]],2,7],[[43,[[15,[[0,[120,30,73]]]]]]]],[[[15,[[0,[120,30,73]]]],40,7,40],[[43,[[121,[40]]]]]],[[[15,[[0,[120,30,73]]]],40,7,40,[43,[[121,[40]]]]]],[[[27,[3]]],16],[[[27,[3]]],16],[[1,10],[[6,[76]]]],[[[31,[[0,[30,77]]]],1,67,[0,[99,30]]],[[0,[99,30]]]],[[[31,[30]],1,67,30,40],[[6,[30]]]],[[[31,[[0,[30,77]]]],1,67,[0,[99,30]],40],6],[[[27,[3]],1,67,40],[[6,[49]]]],[[[27,[3]],1,67],[[6,[49]]]],[[37,1],[[6,[7]]]],[[37,1,40],[[6,[7]]]],[[37,1],[[6,[7]]]],[[37,1,40],[[6,[7]]]],[[[31,[[0,[77,30]]]],1,10],[[6,[76]]]],[[[31,[[0,[77,30]]]],1,10],[[6,[76]]]],0,0,0,0,0,0,0,0,0,[[],6],[[],6],0,[68],[[]],[[]],[122,122],[[]],[2],[2],[2],[[]],[[],2],[[]],[[]],[[],18],[[],18],[[],19],0,0,0,[1],[1],[1],[1,25],[1,25],[38],[1],[[]],0,0,0,0,[68],[25,7],[[]],[[]],[[[123,[[0,[69,26]],69]]],[[123,[[0,[69,26]],69]]]],[[]],[[[0,[25,38]]],124],[[[0,[25,38]]],125],[[[6,[8]],[6,[8]]],[[6,[8]]]],[[[6,[8]],[6,[8]]],[[6,[8]]]],[2],[2],[2],[[25,29],6],[[26,29],6],[[]],[1],[[],2],[[]],[[]],[[26,2],[[123,[26]]]],[[[123,[26]]],6],[[[123,[[0,[26,126]]]]],6],[[[123,[26]]]],[[]],[[25,2],[[123,[25]]]],[[],18],[[],18],[[],19]],"c":[],"p":[[8,"IntoIterator"],[15,"usize"],[15,"i64"],[3,"ListArray"],[4,"DataType"],[4,"Option"],[15,"bool"],[3,"Bitmap"],[3,"Buffer"],[15,"u8"],[8,"Array"],[3,"Box"],[3,"AnonymousBuilder"],[6,"Result"],[15,"slice"],[6,"ArrayRef"],[3,"Offsets"],[4,"Result"],[3,"TypeId"],[3,"MutableNullArray"],[8,"Any"],[3,"Formatter"],[6,"Result"],[3,"MutableBitmap"],[8,"Sized"],[8,"Iterator"],[3,"Utf8Array"],[3,"BinaryArray"],[8,"FnMut"],[8,"NativeType"],[3,"PrimitiveArray"],[8,"BitAnd"],[8,"BitOr"],[8,"BitXor"],[6,"LargeBinaryArray"],[6,"IdxArr"],[3,"BooleanArray"],[8,"TrustedLen"],[6,"LargeStringArray"],[6,"IdxSize"],[3,"Chunk"],[3,"Field"],[3,"Vec"],[3,"StructArray"],[3,"ErrString"],[3,"Error"],[4,"PolarsError"],[4,"ArrowError"],[15,"str"],[4,"Cow"],[8,"Into"],[4,"Error"],[3,"Error"],[3,"TryReserveError"],[3,"FromUtf8Error"],[4,"Error"],[3,"Utf8Error"],[4,"OutOfSpecKind"],[3,"Error"],[3,"Utf8Error"],[8,"Error"],[8,"Send"],[8,"Sync"],[3,"Demand"],[8,"Display"],[3,"String"],[8,"Fn"],[3,"Private"],[8,"Clone"],[3,"OrdFloat"],[8,"IsFloat"],[8,"PartialEq"],[8,"PartialOrd"],[4,"Ordering"],[15,"f32"],[15,"f64"],[8,"ToPrimitive"],[15,"i16"],[15,"i32"],[15,"i8"],[15,"isize"],[15,"u16"],[15,"u32"],[15,"u64"],[3,"EWMOptions"],[8,"Float"],[8,"AddAssign"],[8,"MulAssign"],[8,"DivAssign"],[8,"ExactSizeIterator"],[6,"PolarsResult"],[3,"RollingVarParams"],[3,"RollingQuantileParams"],[4,"QuantileInterpolOptions"],[6,"DynArgs"],[8,"Sum"],[8,"SubAssign"],[8,"Div"],[8,"NumCast"],[3,"MeanWindow"],[8,"One"],[8,"Zero"],[8,"Sub"],[3,"QuantileWindow"],[3,"SumWindow"],[3,"VarWindow"],[3,"MinWindow"],[3,"MaxWindow"],[8,"Bounded"],[8,"Mul"],[8,"Add"],[3,"MeanWindow"],[3,"SortedMinMax"],[3,"MinWindow"],[3,"MaxWindow"],[3,"QuantileWindow"],[3,"SumWindow"],[3,"VarWindow"],[8,"Copy"],[8,"Debug"],[15,"array"],[4,"Tz"],[3,"TrustMyLength"],[8,"FromIteratorReversed"],[8,"FromTrustedLenIterator"],[8,"DoubleEndedIterator"],[8,"ArrowGetItem"],[8,"ListFromIter"],[8,"ValueSize"],[8,"PolarsArray"],[8,"FromData"],[8,"FromDataUtf8"],[8,"FromDataBinary"],[8,"SlicedArray"],[8,"Utf8FromIter"],[8,"BinaryFromIter"],[8,"MutableBitmapExtension"],[8,"IndexToUsize"],[8,"IsValid"],[8,"RollingAggWindowNoNulls"],[3,"MinMaxWindow"],[8,"RollingAggWindowNulls"],[8,"ExtremaNanAware"],[8,"TrustedLenPush"],[8,"CustomIterTools"]]},\ -"polars_core":{"doc":"","t":"CHHHOOOAAAAOAOOAAAAAAOOOAAAAAOOOOGDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLAALLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLALLLLLLIKKKKKKKDDDIIDDDLLLKLLLLLLLLLKLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKKKKLLLLLLLLLLLLALLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDIDDLLLLLLKLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDIDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLAANNDDDDIIIIIIIIIIIIIIIIIIIIIIIIIGGENIIQQQQNNDDNNNNNNNDDDNNNNDDEIIEEIQDIDDNLLLKKKKKKKKKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLKKLLLLKKKLLLLLLLLLLLLLLLLLLLLLLLLLLAKKKKLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKMLLLLMMLKKKMMLLLKKKKKKAKKLLKKKKLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLAKFAFFFFFFAFFFFINNDENNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFEEEINNNGNDNNNGDDGENNNDNDNNNNNDNDNNNNNNGDNNNGDIQRGGGGINNNGDNNNGDNNNGDNNNGDNNNNNNNGDDINNNNNNNQNNNIQGGGGGIIIIINNNNDNNNNDEGNNNNGDNNNGDNNNGDNNNGDNNNNNGNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLMKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLAAAAAAAAAENNNNDNNNNNNNNNNEGNNNNNLLLLLLLLLLLOLLLLLLLLLLLLLLLLFLLLLFOOOOLFFLLLLLLLLLLCCCCCCCCENNLLLLLLLLLFLLFLLLLLNGDNNNNEDNDELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLMLLMLLLLMMMLGNNDENDEEDDGNNGNINNNNNNNNNNNDNNNLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLALLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMIFFFFFFFFKIKKGGGNNGDEENGNNNNNLLLFFFFFLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLFMLMLLLLLLLLLLLLLLMLLLNNEENNNNNNNNNNDNNNNNNNLLLLLLFLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLFFFFIGDIFKFLLLLLLLLLLLLALLLLLLLLLLLLLIKFDGNDIDCCICCNNCNGIIICCCCNGGICCCNNIQCCGGGCNCCCICCNCNIIINCNCIECGCIEDDNNCCNINNCCIICLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCLLLMCMLLLLALLLLLLLLLLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLLLLKLKLLLKLKLLLLLLFLLLLLLLMLLLLLLLLLLLLMLALLLLKMMLLMLKKLLLLLLLALLOOOOMLLLLLLKKAKKLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAKLLLLLLLLLLLLIIIKKKDLLFLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLIKKIILLIDGLLLLLLLLLLLLLLLLLLLLLLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNCCNNIEENNDDGILLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLKLLLKKLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLKLLLLLLALLLLLLLLLKLLLLLLLLLKKLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLKALLLLLLLLKLLLKLLKLLLLLLKLLLLLKLLLLLLLLLLLLLLLKLKKKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLIIIQFKKLLKKLLKKLLKKLLKKLLNNELLLLLLLLLLLLLLLLLLLLLLLGDLLLLLLLLLLLLLLLLLLLLLLIIIIIDDDLFFFFFFFLCCLLLLLLLLLLLLFFLLFFFFLLLLLLLLLLLLFLLLLALLLLLLLKLLLLFFLLLLLLLLLKLLLLLLCLFFFLLLLLFLLLLLLLLLFFFF","n":["IdBuildHasher","POOL","PROCESS_ID","SINGLE_LOCK","apply_method_all_arrow_series","apply_method_physical_integer","apply_method_physical_numeric","chunked_array","cloud","config","datatypes","df","doc","downcast_as_macro_arg_physical","downcast_as_macro_arg_physical_mut","error","export","fmt","frame","functions","hashing","match_arrow_data_type_apply_macro_ca","match_dtype_to_logical_apply_macro","match_dtype_to_physical_apply_macro","prelude","schema","series","testing","utils","with_match_physical_integer_polars_type","with_match_physical_integer_type","with_match_physical_numeric_polars_type","with_match_physical_numeric_type","ChunkIdIter","ChunkedArray","RevMapping","__clone_box","_can_fast_explode","abs","add","add","add","add","add_to","agg_list","all","all_3val","amortized_iter","amortized_iter_with_name","any","any_3val","append","apply","apply_amortized","apply_cast_numeric","apply_in_place","apply_kernel","apply_kernel_cast","apply_mut","apply_mut","apply_mut","apply_on_opt","apply_to_inner","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arg_sort","arg_sort_multiple","arg_unique","arithmetic","as_binary","as_ref","as_ref_dtype","bitand","bitor","bitxor","borrow","borrow","borrow_mut","borrow_mut","branch_apply_cast_numeric_no_null","builder","cast","cast","cast_and_apply_in_place","cast_unchecked","chunk_id","chunks","chunks_mut","clone","clone_into","comparison","cont_slice","cummax","cummin","cumprod","cumsum","data_views","default","deref","deref","deref_mut","deref_mut","div","div","div","div","divide","drop","drop","dtype","equal","equal","equal_missing","equal_missing","extend","fill_null_with_values","filter","first_non_null","float","fmt","fmt","from","from","from","from","from","from_chunks","from_iter","from_iter","from_iter","from_iter_options","from_iter_trusted_length","from_iter_trusted_length","from_iter_values","from_par_iter","from_slice","from_slice_options","from_trusted_len_iter_rev","from_vec","full","full_null","full_null_with_dtype","get","get","get_any_value","get_any_value_unchecked","get_inner","get_unchecked","get_unchecked","group_tuples","group_tuples_perfect","gt","gt","gt_eq","gt_eq","has_validity","head","init","init","init_rand","inner_dtype","into","into","into_iter","into_no_null_iter","into_series","is_empty","is_finite","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_optimal_aligned","is_sorted_flag","iter_validities","iterator","kernels","last_non_null","len","lhs_div","lhs_rem","lhs_sub","limit","lt","lt","lt_eq","lt_eq","max","max","max_as_series","mean","mean","median","median_as_series","min","min","min_as_series","mmap_slice","mmap_slice","mul","mul","mul","mul","multiply","n_unique","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_from_index","new_from_owned_with_null_bitmap","new_vec","none_to_nan","not_equal","not_equal","not_equal_and_validity","not_equal_missing","not_equal_missing","null_count","ops","par_iter","par_iter","par_iter_indexed","par_iter_indexed","peak_max","peak_min","prod_as_series","quantile","quantile_as_series","rand_bernoulli","rand_normal","rand_standard_normal","rand_uniform","rechunk","ref_field","rem","rem","rem","rem","remainder","rename","reverse","sample_frac","sample_n","set","set_at_idx","set_at_idx_with","set_fast_explode","set_inner_dtype","set_sorted_flag","shift","shift_and_fill","shrink_to_fit","slice","sort","sort_with","std","std_as_series","sub","sub","sub","sub","subtract","sum","sum","sum_as_series","tail","take","take_rand","take_unchecked","temporal","tile","to_owned","to_physical","to_utf8","to_vec","to_vec_null_aware","try_apply","try_apply_amortized","try_from","try_from","try_into","try_into","type_id","type_id","unique","unpack_series_matching_type","unset_fast_explode_list","upstream_traits","var","var_as_series","vzip","vzip","with_chunks","zip_with","ArrayArithmetics","add","div","div_scalar","mul","rem","rem_scalar","sub","BinaryChunkedBuilder","BinaryChunkedBuilderCow","BooleanChunkedBuilder","ChunkedBuilder","NewChunkedArray","PrimitiveChunkedBuilder","Utf8ChunkedBuilder","Utf8ChunkedBuilderCow","__clone_box","__clone_box","__clone_box","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_option","append_option","append_option","append_value","append_value","append_value","append_value","append_value","append_value","append_value","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","capacity","clone","clone","clone","clone_into","clone_into","clone_into","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","finish","finish","finish","finish","finish","finish","finish","from","from","from","from","from","from","from_iter_options","from_iter_values","from_slice","from_slice_options","init","init","init","init","init","init","into","into","into","into","into","into","list","new","new","new","new","new","new","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","AnonymousListBuilder","AnonymousOwnedListBuilder","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListPrimitiveChunkedBuilder","ListUtf8ChunkedBuilder","append_array","append_empty","append_empty","append_iter","append_iter","append_iter_values","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_opt_array","append_opt_series","append_opt_series","append_opt_slice","append_series","append_series","append_series","append_series","append_series","append_series","append_series","append_slice","append_trusted_len_iter","append_trusted_len_iter","append_values_iter","append_values_iter","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","default","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","fast_explode","fast_explode","fast_explode","fast_explode","fast_explode","field","field","field","field","field","finish","finish","finish","from","from","from","from","from","from","get_list_builder","init","init","init","init","init","init","inner_array","inner_array","inner_array","inner_array","inner_array","into","into","into","into","into","into","new","new","new","new","new","new","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","BinaryIterNoNull","BoolIterNoNull","ListIterNoNull","PolarsIterator","SomeIterator","StructIter","Utf8IterNoNull","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","from","from","from","from","from","from","init","init","init","init","init","init","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_vec","into_vec","new","new","new","new","next","next","next","next","next","next","next_back","next_back","next_back","next_back","next_back","par","size_hint","size_hint","size_hint","size_hint","size_hint","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","list","utf8","Array","Backward","BinaryTakeRandom","BinaryTakeRandomSingleChunk","BoolTakeRandom","BoolTakeRandomSingleChunk","ChunkAgg","ChunkAnyValue","ChunkApply","ChunkApplyKernel","ChunkBytes","ChunkCast","ChunkCompare","ChunkCumAgg","ChunkExpandAtIndex","ChunkExplode","ChunkFillNullValue","ChunkFilter","ChunkFull","ChunkFullNull","ChunkPeaks","ChunkQuantile","ChunkReverse","ChunkSet","ChunkShift","ChunkShiftFill","ChunkSort","ChunkTake","ChunkUnique","ChunkVar","ChunkZip","Dummy","FillNullLimit","FillNullStrategy","Forward","IntoTakeRandom","IsIn","Item","Item","Item","Item","Iter","IterNulls","ListTakeRandom","ListTakeRandomSingleChunk","Max","MaxBound","Mean","Min","MinBound","Multi","Multi","NumTakeRandomChunked","NumTakeRandomCont","NumTakeRandomSingleChunk","One","Single","Single","SingleNoNull","SortMultipleOptions","SortOptions","TakeIdx","TakeIterator","TakeIteratorNulls","TakeRandBranch2","TakeRandBranch3","TakeRandom","TakeRandom","TakeRandomBitmap","TakeRandomUtf8","Utf8TakeRandom","Utf8TakeRandomSingleChunk","Zero","__clone_box","__clone_box","__clone_box","apply","apply_cast_numeric","apply_kernel","apply_kernel_cast","apply_on_opt","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arg_sort","arg_sort_multiple","arg_unique","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed_clone","boxed_clone","boxed_clone","boxed_clone","branch_apply_cast_numeric_no_null","cast","cast_unchecked","check_bounds","check_bounds","check_bounds","check_bounds","clone","clone","clone","clone_into","clone_into","clone_into","cummax","cummin","cumprod","cumsum","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descending","descending","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equal","equal_missing","equivalent","equivalent","equivalent","explode","explode_and_offsets","fill_null_with_values","filter","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","full","full","full_null","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get_any_value","get_any_value_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","gt","gt_eq","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_in","lt","lt_eq","maintain_order","max","mean","median","min","multithreaded","multithreaded","n_unique","new_from_index","not_equal","not_equal_missing","nulls_last","other","peak_max","peak_min","quantile","reverse","set","set_at_idx","set_at_idx_with","shift","shift_and_fill","sort","sort","sort_with","std","sum","take","take_rand","take_unchecked","to_byte_slices","to_owned","to_owned","to_owned","try_apply","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unique","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","zip","zip_with","_broadcast_descending","arg_sort_multiple","arg_sort_no_nulls","sort_slice_ascending","sort_slice_descending","_get_rows_encoded","_get_rows_encoded_ca","_get_rows_encoded_compat_array","conversion","unix_time","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","PolarsAsRef","Aws","Azure","CloudOptions","CloudType","File","Gcp","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","from","from","from_str","from_untyped_config","init","init","into","into","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","verbose","AnyValue","ArrowDataType","ArrowTimeUnit","AsRefDataType","Binary","Binary","Binary","BinaryChunked","BinaryOwned","BinaryType","Boolean","Boolean","Boolean","BooleanChunked","BooleanType","CategoricalType","CloudOptions","DataType","Date","Date32","Date64","DateType","Datetime","DatetimeType","Decimal","Decimal256","Dictionary","Duration","Duration","DurationType","Extension","Field","FixedSizeBinary","FixedSizeList","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","GetAnyValue","HashMap","IDX_DTYPE","IdxArr","IdxCa","IdxSize","IdxType","InitHashMaps","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","LargeBinary","LargeList","LargeUtf8","List","List","List","ListChunked","ListType","Logical","LogicalType","Map","Microsecond","Microseconds","Millisecond","Milliseconds","Nanosecond","Nanoseconds","Native","Null","Null","Null","NumericNative","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsDataType","PolarsFloatType","PolarsIntegerType","PolarsNumericType","PolarsSingleType","Second","Struct","Struct","Struct","StructChunked","StructOwned","Time","Time32","Time64","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8Owned","Utf8Type","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_can_fast_explode","_iter_struct_av","_materialize_struct_av","add","add","add","add","add","add","add","add","add","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","agg_list","agg_list","agg_list","agg_list","agg_list","all","all_3val","amortized_iter","amortized_iter_with_name","any","any_3val","apply","apply","apply","apply","apply_amortized","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_kernel","apply_kernel","apply_kernel","apply_kernel_cast","apply_kernel_cast","apply_kernel_cast","apply_mut","apply_mut","apply_on_opt","apply_on_opt","apply_on_opt","apply_on_opt","apply_to_inner","apply_to_slice","apply_to_slice","apply_to_slice","apply_to_slice","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_unique","arg_unique","arg_unique","arg_unique","arg_unique","as_binary","as_borrowed","as_ref_dtype","bitand","bitand","bitor","bitor","bitxor","bitxor","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","cast","cast","cast","cast","cast","cast","cast","cast_unchecked","cast_unchecked","cast_unchecked","cast_unchecked","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","coerce","data_type","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","divide","divide","divide","divide","divide","divide","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dtype","dtype","dtype","dtype","eq","eq","eq","eq","eq","eq","eq","equal","equal","equal","equal","equal","equal","equal","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","explode_and_offsets","explode_and_offsets","field","field_by_name","fields","fields_mut","fill_null_with_values","fill_null_with_values","filter","filter","filter","filter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter_options","from_iter_options","from_iter_options","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_values","from_iter_values","from_iter_values","from_owned","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_slice","from_slice","from_slice","from_slice_options","from_slice_options","from_slice_options","from_trusted_len_iter_rev","full","full","full","full","full_null","full_null","full_null","full_null","full_null","full_null_with_dtype","get","get","get","get","get","get","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_inner","get_str","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_values_size","get_values_size","get_values_size","group_tuples","group_tuples","group_tuples","group_tuples","gt","gt","gt","gt","gt","gt","gt","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","hash","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_dtype","inner_dtype","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_series","into_static","is_empty","is_float","is_in","is_in","is_in","is_in","is_integer","is_logical","is_nested_null","is_nested_null","is_numeric","is_primitive","is_signed","is_signed","is_temporal","is_unsigned","is_unsigned","len","lt","lt","lt","lt","lt","lt","lt","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","max","max_as_series","max_as_series","max_as_series","max_as_series","mean","median","median","median_as_series","median_as_series","merge_dtypes","min","min_as_series","min_as_series","min_as_series","min_as_series","mmap_slice","multiply","multiply","multiply","multiply","multiply","multiply","n_unique","n_unique","name","name","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_from_index","new_from_index","new_from_index","new_from_index","not","not","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","null_count","par_iter","par_iter","par_iter_indexed","par_iter_indexed","partial_cmp","quantile","quantile","quantile_as_series","quantile_as_series","rand_bernoulli","rechunk","ref_field","remainder","remainder","remainder","remainder","remainder","remainder","rename","reverse","reverse","reverse","reverse","set","set","set","set_at_idx","set_at_idx","set_at_idx","set_at_idx_with","set_at_idx_with","set_at_idx_with","set_fast_explode","set_inner_dtype","set_name","shift","shift","shift","shift","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","sort","sort","sort","sort","sort","sort_with","sort_with","sort_with","sort_with","sort_with","std","std","std_as_series","std_as_series","subtract","subtract","subtract","subtract","subtract","subtract","sum","sum_as_series","sum_as_series","sum_as_series","sum_as_series","take","take","take","take","take_rand","take_rand","take_rand","take_rand","take_unchecked","take_unchecked","take_unchecked","take_unchecked","to_arrow","to_arrow","to_arrow","to_ascii","to_logical_type","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_physical","to_physical_type","to_string","to_string","to_string","to_utf8","try_apply","try_apply","try_apply","try_apply","try_apply_amortized","try_extract","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unique","unique","unique","unique","unique","unnest","value_within_range","var","var","var_as_series","var_as_series","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","zip_with","zip_with","zip_with","zip_with","changelog","v0_10_0_11","v0_3","v0_4","v0_5","v0_6","v0_7","v0_8","v0_9","ArrowError","ArrowError","ColumnNotFound","ComputeError","Duplicate","ErrString","External","ExternalFormat","InvalidArgumentError","InvalidOperation","Io","Io","NoData","NotYetImplemented","OutOfSpec","Overflow","PolarsError","PolarsResult","SchemaFieldNotFound","SchemaMismatch","ShapeMismatch","StringCacheMismatch","StructFieldNotFound","borrow","borrow","borrow_mut","borrow_mut","deref","deref","deref","deref_mut","deref_mut","drop","drop","feature_gated","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_external_error","get_warning_function","init","init","into","into","map_err","polars_bail","polars_ensure","polars_err","polars_warn","provide","set_warning_function","to_compute_err","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","_boost_hash_combine","ahash","arrow","chrono","num","once_cell","rayon","regex","FloatFmt","Full","Mixed","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","from","get_float_fmt","init","into","set_float_fmt","to_owned","try_from","try_into","type_id","vzip","Any","ArrowChunk","DataFrame","First","Ignore","Last","None","NullStrategy","PhysRecordBatchIter","Propagate","RecordBatchIter","UniqueKeepStrategy","__clone_box","__clone_box","__clone_box","_add_columns","_create_left_df_from_slice","_filter_seq","_finish_left_join","_left_join_from_series","_outer_join_from_series","_slice_and_realloc","agg_chunks","align_chunks","apply","apply_at_idx","as_single_chunk","as_single_chunk_par","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear","clone","clone","clone","clone_into","clone_into","clone_into","column","columns","cross_join","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop_in_place","drop_many","drop_many_amortized","drop_nulls","dtypes","empty","eq","eq","equivalent","equivalent","equivalent","estimated_size","explode","explode","explode_impl","extend","fields","fill_null","filter","find_idx_by_name","fmt","fmt","fmt","fmt","frame_equal","frame_equal_missing","frame_equal_schema","from","from","from","from","from","from","from","from_iter","from_rows","from_rows_and_schema","from_rows_iter_and_schema","get","get_column_names","get_column_names_owned","get_columns","get_columns_mut","get_row","get_row_amortized","get_row_amortized_unchecked","get_supertype","groupby","groupby","groupby_stable","groupby_with_series","hash_join","head","height","hmax","hmean","hmin","hstack","hstack_mut","hstack_mut_unchecked","hsum","index","index","index","index","index","index","index","index","init","init","init","init","init","insert_at_idx","into","into","into","into","into","into_iter","into_iter","into_struct","is_duplicated","is_empty","is_unique","iter","iter_chunks","iter_chunks_physical","max","mean","median","melt","melt2","min","n_chunks","new","new_no_checks","next","next","null_count","pipe","pipe_mut","pipe_with_args","pop","ptr_equal","quantile","rename","replace","replace_at_idx","replace_or_add","reverse","row","sample_frac","sample_n","schema","select","select_at_idx","select_by_range","select_physical","select_series","select_with_schema","select_with_schema_unchecked","set_column_names","shape","shift","should_rechunk","shrink_to_fit","size_hint","size_hint","slice","slice_par","sort","sort_impl","sort_in_place","sort_with_options","std","sum","tail","take","take_iter","take_iter_unchecked","take_opt_iter_unchecked","to_owned","to_owned","to_owned","to_string","top_k","transpose","try_apply","try_apply_at_idx","try_find_idx_by_name","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_rows_iter_and_schema","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unique","unique_impl","unique_stable","unnest","var","vstack","vstack_mut","vzip","vzip","vzip","vzip","vzip","width","with_column","with_column_and_schema","with_column_unchecked","with_row_count","with_row_count_mut","MeltArgs","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","eq","fmt","from","id_vars","init","into","streamable","to_owned","try_from","try_into","type_id","value_name","value_vars","variable_name","vzip","BorrowIdxItem","Count","First","GroupBy","GroupByMethod","Groups","GroupsIdx","GroupsIndicator","GroupsProxy","GroupsProxyIter","GroupsProxyParIter","GroupsSlice","Idx","Idx","IdxItem","Implode","IntoGroupsProxy","Last","Max","Mean","Median","Min","NUnique","NanMax","NanMin","Quantile","Slice","Slice","SlicedGroups","Std","Sum","Var","__clone_box","__clone_box","__clone_box","__clone_box","agg_list","aggregations","all","apply","as_list_chunked","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","count","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","df","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expr","first","first","first","first_mut","fmt","fmt","fmt","fmt","fmt","fmt_groupby_column","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_par_iter","get","get_groups","get_groups_mut","group_count","group_lengths","group_tuples","group_tuples","groups","idx_mut","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into_idx","into_iter","into_iter","into_iter","into_par_iter","into_par_iter","into_par_iter","is_empty","is_empty","is_sorted_flag","iter","iter","keys","keys_sliced","last","len","len","max","mean","median","min","n_unique","new","new","next","nth","par_apply","par_iter","par_iter","quantile","select","slice","sort","sort","std","sum","take_group_firsts","take_groups","take_groups_mut","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unroll","unwrap_idx","unwrap_slice","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","groups","rolling","AggList","_agg_helper_idx","_agg_helper_idx_no_null","_agg_helper_slice","_agg_helper_slice_no_null","_rolling_apply_agg_window_no_nulls","_rolling_apply_agg_window_nulls","_slice_from_offsets","_use_rolling_kernels","agg_list","PhysicalAggExpr","evaluate","root_name","ChunkId","ChunkJoinIds","ChunkJoinOptIds","Cross","Inner","InnerJoinIds","JoinArgs","JoinType","JoinValidation","Left","LeftJoinIds","ManyToMany","ManyToOne","OneToMany","OneToOne","Outer","__clone_box","__clone_box","__clone_box","_inner_join_multiple_keys","_join_suffix_name","_left_join_multiple_keys","_outer_join_multiple_keys","_sort_or_hash_inner","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","default","default_join_ids","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","how","init","init","init","into","into","into","is_valid_join","needs_checks","new","private_left_join_multiple_keys","slice","suffix","suffix","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","validation","vzip","vzip","vzip","All","All","AnyValueBuffer","AnyValueBufferTrusted","Boolean","Boolean","Float32","Float32","Float64","Float64","Int32","Int32","Int64","Int64","Row","Struct","UInt32","UInt32","UInt64","UInt64","Utf8","Utf8","__clone_box","__clone_box","__clone_box","add","add_unchecked_borrowed_physical","add_unchecked_owned_physical","any_values_to_dtype","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","coerce_data_type","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","from","from","from","from","from","infer_schema","init","init","init","into","into","into","into_series","into_series","new","new","new","reset","reset","rows_to_schema_first_non_null","rows_to_schema_supertypes","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","cov_f","cov_i","pearson_corr_f","pearson_corr_i","FxHash","IdBuildHasher","IdHasher","VecHash","_boost_hash_combine","_fx_hash","_hash_binary_array","borrow","borrow_mut","default","deref","deref_mut","drop","finish","from","get_k","get_k","init","into","partition","try_from","try_into","type_id","vec_hash","vec_hash","vec_hash_combine","vec_hash_combine","vzip","write","write_i32","write_i64","write_u32","write_u64","AsU64","as_u64","this_partition","Arc","ArrayRef","ArrowError","ArrowField","ArrowGetItem","ArrowSchema","BinaryChunkedBuilder","BooleanChunkedBuilder","ChunkAggSeries","ChunkedArray","ChunkedBuilder","ColumnNotFound","ComputeError","DataFrame","Duplicate","DynArgs","FromData","FromDataBinary","FromDataUtf8","FxHash","GroupsIdx","GroupsProxy","GroupsSlice","Higher","IdxArr","IdxSize","IndexToUsize","IntoGroupsProxy","IntoSeries","IntoVec","InvalidOperation","Io","IsFloat","Item","JoinArgs","JoinType","LargeBinaryArray","LargeListArray","LargeStringArray","LhsNumOps","Linear","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListFromIter","ListPrimitiveChunkedBuilder","ListUtf8ChunkedBuilder","Lower","MeltArgs","Midpoint","MutableBitmapExtension","NamedFrom","NamedFromOwned","Nearest","NewChunkedArray","NoData","NumOpsDispatch","PolarsArray","PolarsError","PolarsIterator","PolarsResult","PrimitiveChunkedBuilder","QuantileAggSeries","QuantileInterpolOptions","RollingQuantileParams","RollingVarParams","SchemaFieldNotFound","SchemaMismatch","Series","SeriesTrait","ShapeMismatch","SlicedArray","StringCacheMismatch","StructFieldNotFound","UniqueKeepStrategy","Utf8ChunkedBuilder","ValueSize","VarAggSeries","VecHash","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_fd","as_ptr","as_raw_fd","as_ref","as_slice_mut","assume_init","assume_init","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloud","cmp","compare","data_type","data_type","datatypes","ddof","decrement_strong_count","default","default","default","default_arrays","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","df","downcast","downcast_unchecked","downgrade","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","filter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_data_default","from_data_unchecked_default","from_data_unchecked_default","from_iter","from_iter_binary_trusted_len","from_iter_bool_trusted_len","from_iter_primitive_trusted_len","from_iter_utf8_trusted_len","from_raw","from_vec","ge","get","get_mut","get_mut_unchecked","get_names","get_unchecked","get_unchecked","get_values_size","gt","has_validity","hash","hash","increment_strong_count","index_of","indexes_to_usizes","init","init","init","init","init","init","init","interpol","into","into","into","into","into","into","into","into_inner","into_raw","into_series","is_float","is_nan","is_nullable","le","list","lt","make_mut","max_as_series","max_as_series","median_as_series","metadata","metadata","min_as_series","min_as_series","name","ne","negative_to_usize","new","new","new","new_cyclic","new_uninit","new_uninit_slice","new_zeroed","new_zeroed_slice","null","partial_cmp","pin","polars_bail","polars_ensure","polars_err","polars_warn","prob","prod_as_series","prod_as_series","provide","provide","provide","ptr_eq","quantile_as_series","set_bit_unchecked","slice","slice_typed","slice_typed_unchecked","source","source","spawn_local_obj","spawn_obj","status","status_local","std_as_series","strong_count","sum_as_series","sum_as_series","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new_uninit","try_new_zeroed","try_pin","try_unwrap","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap","unwrap_or_clone","utf8","var_as_series","view","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weak_count","with_metadata","with_metadata","wrap_msg","FromData","FromDataBinary","FromDataUtf8","from_data_default","from_data_unchecked_default","from_data_unchecked_default","AnonymousBuilder","borrow","borrow_mut","convert_inner_type","deref","deref_mut","drop","finish","from","init","into","is_empty","new","offsets","push","push_empty","push_multiple","push_null","push_opt","take_offsets","try_from","try_into","type_id","vzip","MutableNullArray","as_any","as_box","as_mut_any","borrow","borrow_mut","data_type","default","deref","deref_mut","drop","fmt","from","init","into","len","push_null","reserve","shrink_to_fit","try_from","try_into","type_id","validity","vzip","SlicedArray","slice_typed","slice_typed_unchecked","BinaryFromIter","Utf8FromIter","from_values_iter","from_values_iter","IndexOfSchema","Schema","SchemaRef","__clone_box","borrow","borrow_mut","clone","clone_into","contains","default","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","fmt","from","from","from_iter","get","get_at_index","get_at_index_mut","get_field","get_full","get_names","get_names","index_of","index_of","init","insert_at_index","into","into_iter","is_empty","iter","iter_dtypes","iter_fields","iter_names","len","merge","new","new_inserting_at_index","remove","rename","set_dtype","set_dtype_at_index","shift_remove","shift_remove_index","to_arrow","to_owned","to_supertype","try_from","try_get","try_get_at_index","try_get_field","try_get_full","try_get_mut","try_index_of","try_into","type_id","vzip","with_capacity","with_column","Ascending","Ascending","ChunkCompare","ChunkCompare","Descending","Descending","IntoSeries","IsSorted","IsSorted","Not","Not","Series","SeriesIter","SeriesPhysIter","SeriesTrait","__clone_box","__clone_box","_sum_as_series","_sum_as_series","abs","add","add","add","add","append","arg_sort","arg_sort","arg_unique","arg_unique","arithmetic","array_ref","as_any","as_any","as_any_mut","as_any_mut","as_list","as_mut","as_ref","as_ref","as_single_ptr","as_single_ptr","as_single_ptr","binary","bitand","bitand","bitor","bitor","bitxor","bitxor","bool","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","cast","cast","cast_unchecked","ceil","chunk_lengths","chunks","chunks_mut","clear","clip","clip_max","clip_min","clone","clone","clone_inner","clone_into","clone_into","cummax","cummin","cumprod","cumsum","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","div","div","div","div","drop","drop","drop","drop_nulls","drop_nulls","dtype","dtype","eq","eq","equal","equal","equal","equal_missing","equal_missing","equal_missing","equivalent","equivalent","equivalent","estimated_size","explode","extend","extend_constant","f32","f64","field","field","fill_null","filter","filter_threaded","floor","fmt","fmt","fmt","fmt_list","from","from","from","from","from_any_values","from_any_values_and_dtype","from_chunks_and_dtype_unchecked","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","full_null","get","get_data_ptr","get_unchecked","get_unchecked","gt","gt","gt","gt_eq","gt_eq","gt_eq","has_validity","head","i16","i32","i64","i8","idx","implementations","implode","init","init","init","into","into","into","into_frame","into_iter","into_series","into_series","is_empty","is_empty","is_finite","is_in","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_series","is_series","is_series","is_sorted_flag","is_sorted_flag","iter","len","limit","limit","list","lt","lt","lt","lt_eq","lt_eq","lt_eq","max","max_as_series","max_as_series","mean","mean","mean_as_series","median","median","median_as_series","median_as_series","min","min_as_series","min_as_series","mul","mul","mul","mul","n_chunks","n_chunks","n_unique","n_unique","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_from_index","new_null","next","not_equal","not_equal","not_equal","not_equal_missing","not_equal_missing","not_equal_missing","null_count","ops","peak_max","peak_max","peak_min","peak_min","phys_iter","product","quantile_as_series","quantile_as_series","rechunk","rem","rem","rem","rename","rename","reshape","reverse","round","sample_frac","sample_n","series_equal","series_equal_missing","set_sorted_flag","shift","shrink_to_fit","shrink_to_fit","shrink_to_fit","shuffle","size_hint","slice","sort","sort_with","sort_with","std_as_series","std_as_series","str_value","strict_cast","struct_","sub","sub","sub","sub","sum","sum_as_series","tail","take","take_every","take_iter","take_iter_unchecked","take_opt_iter_unchecked","take_threaded","take_unchecked","take_unchecked_from_slice","take_unchecked_threaded","tile","tile","to_arrow","to_owned","to_owned","to_physical_repr","to_string","try_add","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","u16","u32","u64","u8","unique","unique","unique_stable","unpack","unstable","utf8","var_as_series","var_as_series","vzip","vzip","vzip","zip_with","LhsNumOps","NumOpsDispatch","NumOpsDispatchInner","Output","_struct_arithmetic","add","add_to","add_to","add_to","div","divide","divide","divide","mul","multiply","multiply","multiply","rem","remainder","remainder","remainder","sub","subtract","subtract","subtract","Drop","Ignore","NullBehavior","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","fmt","from","hash","init","into","to_owned","try_from","try_into","type_id","vzip","ArrayBox","UnstableSeries","__clone_box","as_mut","as_ref","borrow","borrow_mut","clone","clone_into","deep_clone","deref","deref_mut","drop","from","init","into","new","swap","to_owned","try_from","try_into","type_id","vzip","with_array","Arg","CustomIterTools","CustomIterToolsSized","FromTrustedLenIterator","IntoVec","NoNull","TrustMyLength","Wrap","__clone_box","_set_partition_size","_to_physical_and_bit_repr","accumulate_dataframes_horizontal","accumulate_dataframes_vertical","accumulate_dataframes_vertical_unchecked","align_chunks_binary","align_chunks_ternary","all_equal","arg_sort_no_nulls","arrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","boxed_clone","boxed_clone","check_bounds","check_bounds","clone","clone_into","coalesce_nulls","coalesce_nulls_series","collect_reversed","collect_trusted","combine_validities_and","combine_validities_or","concat_df","concat_df_unchecked","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","ensure_sorted_arg","eq","equivalent","equivalent","equivalent","flatten","fold_first_","fold_options","from","from","from","from_iter","from_iter","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_par_iter","from_trusted_len_iter_rev","get_supertype","get_time_units","hash","init","init","init","into","into","into","into_inner","into_iter","into_vec","into_vec","into_vec","new","new","next","next_back","rayon","size_hint","slice_slice","split_ca","split_df_as_ref","to_owned","trust_my_length","try_from","try_from","try_from","try_get_supertype","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_unstable_series","flatten_df_iter","flatten_par","flatten_series"],"q":[[0,"polars_core"],[33,"polars_core::chunked_array"],[317,"polars_core::chunked_array::arithmetic"],[325,"polars_core::chunked_array::builder"],[459,"polars_core::chunked_array::builder::list"],[595,"polars_core::chunked_array::iterator"],[703,"polars_core::chunked_array::iterator::par"],[705,"polars_core::chunked_array::ops"],[1130,"polars_core::chunked_array::ops::sort"],[1135,"polars_core::chunked_array::ops::sort::arg_sort_multiple"],[1138,"polars_core::chunked_array::temporal"],[1140,"polars_core::chunked_array::temporal::conversion"],[1143,"polars_core::chunked_array::upstream_traits"],[1144,"polars_core::cloud"],[1183,"polars_core::config"],[1184,"polars_core::datatypes"],[2314,"polars_core::doc"],[2315,"polars_core::doc::changelog"],[2323,"polars_core::error"],[2397,"polars_core::export"],[2405,"polars_core::fmt"],[2426,"polars_core::frame"],[2680,"polars_core::frame::explode"],[2705,"polars_core::frame::groupby"],[2939,"polars_core::frame::groupby::GroupsProxy"],[2941,"polars_core::frame::groupby::aggregations"],[2951,"polars_core::frame::groupby::expr"],[2954,"polars_core::frame::hash_join"],[3054,"polars_core::frame::row"],[3147,"polars_core::functions"],[3151,"polars_core::hashing"],[3184,"polars_core::hashing::partition"],[3187,"polars_core::prelude"],[3551,"polars_core::prelude::default_arrays"],[3557,"polars_core::prelude::list"],[3581,"polars_core::prelude::null"],[3605,"polars_core::prelude::slice"],[3608,"polars_core::prelude::utf8"],[3612,"polars_core::schema"],[3676,"polars_core::series"],[4047,"polars_core::series::arithmetic"],[4072,"polars_core::series::ops"],[4098,"polars_core::series::unstable"],[4122,"polars_core::utils"],[4230,"polars_core::utils::flatten"]],"d":["","","","","","","","The typed heart of every Series column.","","","Data types supported by Polars.","","Other documentation","Apply a macro on the Downcasted ChunkedArray’s of …","Apply a macro on the Downcasted ChunkedArray’s of …","","","","DataFrame module.","Functions","","Apply a macro on the Downcasted ChunkedArray’s","Apply a macro on the Series","Apply a macro on the Series","Everything you need to get started with Polars.","","Type agnostic columnar data structure.","Testing utilities.","","","","","","","ChunkedArray","","","","Convert all values to their absolute/positive value.","","","","","","","Check if all values are true","","This is an iterator over a ListChunked that save …","","Check if any value is true","","Append in place. This is done by adding the chunks of other…","","Apply a closure F elementwise.","","Cast a numeric array to another numeric data type and …","","","","","","","Ignore the list indices and apply func to the inner type …","","","","","Panics","","Implementations of arithmetic operations on ChunkedArray’…","","","","","","","","","","","","","Implementations of the ChunkCast Trait.","","Cast a numeric array to another numeric data type and …","","Unique id representing the number of chunks","A reference to the chunks","A mutable reference to the chunks","","","","Contiguous slice","","","","","Get slices of the underlying arrow data. NOTE: null values …","","","","","","","","","","","","","Get data type of ChunkedArray.","","","","","Extend the memory backed by this array with the values …","","","Get the index of the first non null value in this …","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Create a new ChunkedArray from existing chunks.","","","","","","","Create a new ChunkedArray from an iterator.","","","","","Create a new ChunkedArray by taking ownership of the Vec. …","","","","","","","","Get the inner values as Series, ignoring the list offsets.","","","","","","","","","Return if any the chunks in this [ChunkedArray] have a …","Get the head of the ChunkedArray","","","","Get the inner data type of the list.","Calls U::from(self).","Calls U::from(self).","","","","Check if ChunkedArray is empty.","","","","","","Get a mask of the valid values.","Get a mask of the null values.","Returns true if contains a single chunk and has no null …","","Get the buffer of bits representing null values","","","Get the index of the last non null value in this …","Get the length of the ChunkedArray","Apply lhs / self","Apply lhs % self","Apply lhs - self","Take a view of top n elements","","","","","","","","","","","","","","","Create a temporary ChunkedArray from a slice.","Create a temporary ChunkedArray from a slice.","","","","","","","Name of the ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","","Nullify values in slice with an existing null bitmap","Specialization that prevents an allocation prefer this …","Convert missing values to NaN values.","","","","","","Count the null values.","Traits for miscellaneous operations on ChunkedArray","","","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","","","","Create ChunkedArray with samples from a Bernoulli …","Create ChunkedArray with samples from a Normal …","Create ChunkedArray with samples from a Standard Normal …","Create ChunkedArray with samples from a Uniform …","","Get a reference to the field.","","","","","","Rename this ChunkedArray.","","Sample a fraction between 0.0-1.0 of this ChunkedArray.","Sample n datapoints from this ChunkedArray.","","","","","","Set the ‘sorted’ bit meta info.","","","Shrink the capacity of this array to fit its length.","Slice the array. The chunks are reallocated the underlying …","","","","","","","","","","","","","Get the tail of the ChunkedArray","","","","Traits and utilities for temporal data.","","","","Safety","Convert to a Vec of Option<T::Native>.","Convert to a Vec but don’t return Option<T::Native> if …","","","","","","","","","","Series to ChunkedArray<T>","","Implementations of upstream traits for ChunkedArray<T>","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","Appends a null slot into the builder","","","Appends a null slot into the builder","Appends a null slot into the builder","Appends a null slot into the builder","","","","","Appends a value of type T into the builder","","","Appends a value of type T into the builder","Appends a value of type T into the builder","Appends a value of type T into the builder","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Create a new UtfChunkedBuilder","","","","","Create a new UtfChunkedBuilder","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Appends from an iterator over values","Appends from an iterator over values","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The no null iterator for a BooleanArray","","A PolarsIterator is an iterator over a ChunkedArray which …","Wrapper struct to convert an iterator of type T into one …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","create a new iterator","create a new iterator","create a new iterator","create a new iterator","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","previous value in array","","","","","Aggregation operations","","Fastest way to do elementwise operations on a …","Apply kernels on the arrow array chunks in a ChunkedArray.","","Cast ChunkedArray<T> to ChunkedArray<N>","Compare Series and ChunkedArray’s and get a boolean mask …","","Create a new ChunkedArray filled with values at that index.","Explode/ flatten a List or Utf8 Series","Replace None values with a value","Filter values by a boolean mask.","Fill a ChunkedArray with one value.","","Find local minima/ maxima","Quantile and median aggregation","Reverse a ChunkedArray<T>","Create a ChunkedArray with new values by index or by …","","Shift the values of a ChunkedArray by a number of periods.","Sort operations on ChunkedArray.","Fast access by index.","Get unique values in a ChunkedArray","Variance and standard deviation aggregation.","Combine two ChunkedArray based on some predicate.","Dummy type, we need to instantiate all generic types, so …","","","next value in array","Create a type that implements a faster TakeRandom.","Check if element is member of list array","","","","","","","","","maximum value in array","replace with the maximum value of that data type","mean value of array","minimal value in array","replace with the minimal value of that data type","","","","","","replace with the value one","","","","","","One of the three arguments allowed in unchecked_take","","","","","Random access","","","","","","replace with the value zero","","","","Apply a closure elementwise. This is fastest when the null …","Apply a closure elementwise and cast to a Numeric …","Apply kernel and return result as a new ChunkedArray.","Apply a kernel that outputs an array of different type.","Apply a closure elementwise including null values.","Apply a closure elementwise and write results to a mutable …","Apply a closure elementwise. The closure gets the index of …","Apply a closure elementwise. The closure gets the index of …","Retrieve the indexes needed to sort this array.","Retrieve the indexes need to sort this and the other …","Get first index of the unique values in a ChunkedArray. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Apply a closure on optional values and cast to Numeric …","Cast a [ChunkedArray] to [DataType]","Does not check if the cast is a valid one and may …","","","","","","","","","","","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check for equality.","Check for equality where None == None.","","","","","","Replace None values with a give value T.","Filter values in the ChunkedArray with a boolean mask.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Create a ChunkedArray with a single value.","","Get a nullable value by index.","Get a nullable value by index.","","","","","","","","","","","","","","Get a single value. Beware this is slow.","Get a single value. Beware this is slow. If you need to …","","","","","","","","","","","","","","Get a value by index and ignore the null bit.","Get a value by index and ignore the null bit.","Greater than comparison.","Greater than or equal comparison.","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Check if elements of this array are in the right Series, …","Less than comparison.","Less than or equal comparison","","Returns the maximum value in the array, according to the …","Returns the mean value in the array. Returns None if the …","Returns the mean value in the array. Returns None if the …","","","","Number of unique values in the ChunkedArray","Create a new ChunkedArray filled with values at that index.","Check for inequality.","Check for inequality where None == None.","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Aggregate a given quantile of the ChunkedArray. Returns …","Return a reversed version of this array.","Set the values where the mask evaluates to true to some …","Set the values at indexes idx to some optional value …","Set the values at indexes idx by applying a closure to …","","Shift the values by a given period and fill the parts that …","","Returned a sorted ChunkedArray.","","Compute the standard deviation of this ChunkedArray/Series.","Aggregate the sum of the ChunkedArray. Returns None if not …","Take values from ChunkedArray by index. Note that the …","Create a type that implements TakeRandom.","Take values from ChunkedArray by index.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get unique values of a ChunkedArray","Compute the variance of this ChunkedArray/Series.","","","","","","","","","","","","","","","","","","","","Create a new ChunkedArray with values from self where the …","","","","used a lot, ensure there is a single impl","","","","","","","","","","Local AsRef<T> trait to circumvent the orphan rule.","","","Options to connect to various cloud providers.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Parse a configuration from a Hashmap. This is the …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","The set of supported logical types in this crate.","The time units defined in Arrow.","","","","Opaque binary data of variable length whose offsets are …","","","","A binary true or false.","","true and false.","","","","","","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","A 64-bit date representing the elapsed time since UNIX …","","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","A dictionary encoded array (key_type, value_type), where …","","Measure of elapsed time. This elapsed time is a physical …","","Extension type.","Characterizes the name and the DataType of a column.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","","","","","The type used by polars to index data.","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Opaque binary data of variable length whose offsets are …","A list of some logical data type whose offsets are …","A variable-length UTF-8 encoded string whose offsets are …","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","Maps a logical type to a a chunked array implementation of …","","A nested type that is represented as","Time in microseconds.","","Time in milliseconds.","","Time in nanoseconds.","","","","","Null type","","","","","This hashmap has the uses an IdHasher","","","","","","","Any type that is not nested","Time in seconds.","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","An UTF8 encoded string type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check if all values are true","","This is an iterator over a ListChunked that save …","","Check if any value is true","","Apply a closure F elementwise.","","","","Apply a closure F elementwise.","","","","","","","","","","","","","","","","","Ignore the list indices and apply func to the inner type …","","","","","Apply a closure elementwise. The closure gets the index of …","","","","Apply a closure elementwise. The closure gets the index of …","","","","","","","","","","Panics","Panics","Panics","Panics","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the Field datatype.","Returns a reference to the Field datatype.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get data type of ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get access to one of this [StructChunked]’s fields","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Gets AnyValue from LogicalType","Gets AnyValue from LogicalType","","","","","Gets AnyValue from LogicalType","Safety","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","Get the inner values as Series, ignoring the list offsets.","Get a reference to the &str contained within AnyValue.","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the inner data type of the list.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","Try to coerce to an AnyValue with static lifetime. This …","","","","","","","","Check if this DataType is a logical type","","","Check if this DataType is a numeric type.","Check if datatype is a primitive type. By that we mean that","","","Check if this DataType is a temporal type","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a temporary ChunkedArray from a slice.","","","","","","","","","","Returns a reference to the Field name.","","","","","","","","","","","","","","","","","Creates a new Field.","","","","","","","","","","","","","","","","","","","","","","","","","","Only implemented for the same types and physical types!","","","","","Create ChunkedArray with samples from a Bernoulli …","","Get a reference to the Field of array.","","","","","","","","","","","","","","","","","","","","","","","Sets the Field name.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert to an Arrow data type.","Converts the Field to an arrow::datatypes::Field.","","","Returns &self for all but DataType::Extension. For …","","","","","","","","","","","","","","","","","","","","","","","","","Convert to the physical data type","the PhysicalType of this DataType.","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Changelog v0.10 / v0.11","Changelog v0.3","Changelog v0.4","Changelog v0.5","Changelog v0.6","Changelog v0.7","Changelog v0.8","Changelog v0.9","Enum with all errors in this crate.","","","","","","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","","","Wrapper for IO errors","","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","Returns the argument unchanged.","","Wraps an external error in an Error.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","Set the function that will be called by the polars_warn! …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","Keep any of the unique rows This allows more optimizations","","A contiguous growable collection of Series that have the …","Keep the first unique row.","","Keep the last unique row.","Keep None of the unique rows.","","","","","","","","","","Safety","Same as filter but does not parallelize.","","","","","Aggregate all chunks to contiguous memory.","Ensure all the chunks in the DataFrame are aligned.","Apply a closure to a column. This is the recommended way …","Apply a closure to a column at index idx. This is the …","Aggregate all the chunks in the DataFrame to a single …","Aggregate all the chunks in the DataFrame to a single …","","","","","","","","","","","","","","","","","","Select a single column by name.","Selected multiple columns by name.","Creates the cartesian product from both frames, preserves …","","","","","","","","","","","","","","","","","","Drop a column by name. This is a pure method and will …","Remove a column by name and return the column removed.","Drop columns that are in names.","Drop columns that are in names without allocating a HashSet…","Return a new DataFrame where all null values are dropped.","Get the data types of the columns in the DataFrame.","Creates an empty DataFrame usable in a compile time …","","","","","","Returns an estimation of the total (heap) allocated size …","","Explode DataFrame to long format by exploding a column …","","Extend the memory backed by this DataFrame with the values …","Get a reference to the schema fields of the DataFrame.","Replace None values with one of the following strategies:","Take the DataFrame rows by a boolean mask.","Get column index of a Series by name.","","","","","Check if DataFrames are equal. Note that None == None …","Check if all values in DataFrames are equal where …","Check if DataFrames schemas are equal.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Panics","Create a new DataFrame from rows. This should only be used …","Create a new DataFrame from rows. This should only be used …","Create a new DataFrame from an iterator over rows. This …","Get a row in the DataFrame. Beware this is slow.","Example","Get the Vec<String> representing the column names.","Get a reference to the DataFrame columns.","Get mutable access to the underlying columns.","Get a row from a DataFrame. Use of this is discouraged as …","Amortize allocations by reusing a row. The caller is …","Amortize allocations by reusing a row. The caller is …","Get the supertype of the columns in this DataFrame","","Group DataFrame using a Series column.","Group DataFrame using a Series column. The groups are …","","","Get the head of the DataFrame.","Get the height of the DataFrame which is the number of …","Aggregate the column horizontally to their max values.","Aggregate the column horizontally to their mean values.","Aggregate the column horizontally to their min values.","Add multiple Series to a DataFrame. The added Series are …","Add multiple Series to a DataFrame. The added Series are …","Add columns horizontally.","Aggregate the column horizontally to their sum values.","","","","","","","","","","","","","","Insert a new column at a given index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Get a mask of all the duplicated rows in the DataFrame.","Check if the DataFrame is empty.","Get a mask of all the unique rows in the DataFrame.","Iterator over the columns as Series.","Iterator over the rows in this DataFrame as Arrow …","Iterator over the rows in this DataFrame as Arrow …","Aggregate the columns to their maximum values.","Aggregate the columns to their mean values.","Aggregate the columns to their median values.","Unpivot a DataFrame from wide to long format.","Similar to melt, but without generics. This may be easier …","Aggregate the columns to their minimum values.","The number of chunks per column","Create a DataFrame from a Vector of Series.","Create a new DataFrame but does not check the length or …","","","Create a new DataFrame that shows the null counts per …","Pipe different functions/ closure operations that work on …","Pipe different functions/ closure operations that work on …","Pipe different functions/ closure operations that work on …","Removes the last Series from the DataFrame and returns it, …","Checks if the Arc ptrs of the Series are equal","Aggregate the columns to their quantile values.","Rename a column in the DataFrame.","Replace a column with a Series.","Replace column at index idx with a Series.","Replace or update a column. The difference between this …","Get a DataFrame with all the columns in reversed order.","","Sample a fraction between 0.0-1.0 of this DataFrame.","Sample n datapoints from this DataFrame.","Get the DataFrame schema.","Select column(s) from this DataFrame and return a new …","Select a Series by index.","Select column(s) from this DataFrame by range and return a …","","Select column(s) from this DataFrame and return them into …","Select with a known schema.","Select with a known schema. This doesn’t check for …","Set the column names.","Get (height, width) of the DataFrame.","Shift the values by a given period and fill the parts that …","Returns true if the chunks of the columns do not align and …","Shrink the capacity of this DataFrame to fit its length.","","","Slice the DataFrame along the rows.","","Return a sorted clone of this DataFrame.","This is the dispatch of Self::sort, and exists to reduce …","Sort DataFrame in place by a column.","Sort the DataFrame by a single column with extra options.","Aggregate the columns to their standard deviation values.","Aggregate the columns to their sum values.","Get the tail of the DataFrame.","Take DataFrame rows by index values.","Take DataFrame value by indexes from an iterator.","Take DataFrame values by indexes from an iterator.","Take DataFrame values by indexes from an iterator that may …","","","","","","Transpose a DataFrame. This is a very expensive operation.","Apply a closure that may fail to a column. This is the …","Apply a closure that may fail to a column at index idx. …","Get column index of a Series by name.","","","","","","","","Create a new DataFrame from an iterator over rows. This …","","","","","","","","","","","Unstable distinct. See DataFrame::unique_stable.","","Drop duplicate rows from a DataFrame. This fails when …","Unnest the given Struct columns. This means that the …","Aggregate the columns to their variation values.","Concatenate a DataFrame to this DataFrame and return as …","Concatenate a DataFrame to this DataFrame","","","","","","Get the width of the DataFrame which is the number of …","Add a new column to this DataFrame or replace an existing …","Add a new column to this DataFrame or replace an existing …","Adds a column to the DataFrame without doing any checks on …","Add a new column at index 0 that counts the rows.","Add a row count in place.","Arguments for [DataFrame::melt] function","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","Whether the melt may be done in the streaming engine This …","","","","","","","","","","","","Returned by a groupby operation on a DataFrame. This …","","","Indexes of the groups, the first index is stored …","","","","","Every group is indicated by an array where the","","","","","Used to create the tuples for a groupby operation.","","","","","","","","","","","Slice is always sorted in ascending order.","","","","","","","","","Aggregate the groups of the groupby operation into lists.","","","Apply a closure over the groups as a new DataFrame.","","","","","","","","","","","","","","","","","","","","","","","","","","Aggregate grouped series and compute the number of values …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Aggregate grouped Series and find the first value per …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Get the internal representation of the GroupBy operation. …","Get the internal representation of the GroupBy operation. …","","","Create the tuples need for a groupby operation. * The …","Create the tuples need for a groupby operation. * The …","Get the groupby group indexes.","Get a mutable reference to the GroupsIdx.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Aggregate grouped Series and return the last value per …","","","Aggregate grouped series and compute the maximum value per …","Aggregate grouped series and compute the mean per group.","Aggregate grouped Series and determine the median per …","Aggregate grouped series and compute the minimal value per …","Aggregate grouped Series by counting the number of unique …","","","","","Apply a closure over the groups as a new DataFrame in …","","","Aggregate grouped Series and determine the quantile per …","Select the column(s) that should be aggregated. You can …","","","","Aggregate grouped Series and determine the standard …","Aggregate grouped series and compute the sum per group.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a reference to the GroupsIdx.","Get a reference to the GroupsSlice.","Aggregate grouped Series and determine the variance per …","","","","","","","","","","","","","","","","","","","","Safety","","","","[ChunkIdx, DfIdx]","","","","","","","","","","","No unique checks","Check if join keys are unique in right dataset.","Check if join keys are unique in left dataset.","Check if join keys are unique in both left and right …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An AnyValueBuffer that should be used when we trust the …","","","","","","","","","","","","","","","","","","","","","","","Safety","Will add the AnyValue into Self and unpack as the physical …","","","","","","","","","","","","","","Coerces a slice of datatypes into a single supertype.","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Infer schema from rows and set the first no null type as …","Infer schema from rows and set the supertypes of the …","","","","","","","","","","","","","","","","Compute the covariance between two columns.","Compute the covariance between two columns.","Compute the pearson correlation between two columns.","Compute the pearson correlation between two columns.","Ensure that the same hash is used as with VecHash.","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","Compute the hash for all values in the array.","Compute the hash for all values in the array.","","","","","","","","","","","For partitions that are a power of 2 we can use a bitshift …","A thread-safe reference-counting pointer. ‘Arc’ stands …","","","Represents Arrow’s metadata of a “column”.","","An ordered sequence of Fields with associated Metadata.","","","Aggregations that return Series of unit length. Those can …","","","","","","","","","","","","","","","","","The type used by polars to index data.","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Utility trait to slice concrete arrow arrays whilst …","","","","","","","","","","","","","","","Provides a raw pointer to the data.","","","","Converts to Arc<T>.","Converts to Arc<[T]>.","","","","","","","","","","","","","","","","","","","","Makes a clone of the Arc pointer.","","","","","","","","","","Comparison for two Arcs.","","Returns the Field’s DataType.","Its logical DataType","","","Decrements the strong reference count on the Arc<T> …","","Creates a new Arc<T>, with the Default value for T.","","","","","","","","","","","","","","","","","","","","Attempt to downcast the Arc<dyn Any + Send + Sync> to a …","Downcasts the Arc<dyn Any + Send + Sync> to a concrete …","Creates a new Weak pointer to this allocation.","","","","","","Drops the Arc.","","","","","Equality for two Arcs.","","","","","","","","","","","","","","","","The fields composing this schema.","Returns a new Schema with a subset of all fields whose …","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Move a boxed object to a new, reference-counted allocation.","Converts a T into an Arc<T>","Allocate a reference-counted slice and move v’s items …","Copies the string into a newly allocated Arc<OsStr>.","Converts a Path into an Arc by copying the Path data into …","","Converts a &CStr into a Arc<CStr>, by copying the contents …","Converts an OsString into an Arc<OsStr> by moving the …","Create an atomically reference-counted pointer from a …","Allocate a reference-counted str and copy v into it.","Converts an atomically reference-counted string slice into …","Allocate a reference-counted slice and fill it by cloning v…","Converts a CString into an Arc<CStr> by moving the CString …","Converts a PathBuf into an Arc<Path> by moving the PathBuf …","Allocate a reference-counted str and copy v into it.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Safety","Safety","Takes each element in the Iterator and collects it into an …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Constructs an Arc<T> from a raw pointer.","Initialize by name and values.","‘Greater than or equal to’ comparison for two Arcs.","","Returns a mutable reference into the given Arc, if there …","Returns a mutable reference into the given Arc, without …","","Safety","","Useful for a Utf8 or a List to get underlying value size. …","Greater-than comparison for two Arcs.","","","","Increments the strong reference count on the Arc<T> …","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns the inner value, if the Arc has exactly one strong …","Consumes the Arc, returning the wrapped pointer.","","","","Its nullability","‘Less than or equal to’ comparison for two Arcs.","","Less-than comparison for two Arcs.","Makes a mutable reference into the given Arc.","Get the max of the ChunkedArray as a new Series of length …","Get the max of the ChunkedArray as a new Series of length …","Get the median of the ChunkedArray as a new Series of …","Additional custom (opaque) metadata.","Optional metadata.","Get the min of the ChunkedArray as a new Series of length …","Get the min of the ChunkedArray as a new Series of length …","Its name","Inequality for two Arcs.","Translate the negative index to an offset.","Initialize by name and values.","Constructs a new Arc<T>.","Creates a new Field.","Constructs a new Arc<T> while giving you a Weak<T> to the …","Constructs a new Arc with uninitialized contents.","Constructs a new atomically reference-counted slice with …","Constructs a new Arc with uninitialized contents, with the …","Constructs a new atomically reference-counted slice with …","","Partial comparison for two Arcs.","Constructs a new Pin<Arc<T>>. If T does not implement Unpin…","","","","","","Get the product of the ChunkedArray as a new Series of …","Get the product of the ChunkedArray as a new Series of …","","","","Returns true if the two Arcs point to the same allocation …","Get the quantile of the ChunkedArray as a new Series of …","Safety","","Slices this Array.","Slices the Array.","","","","","","","Get the standard deviation of the ChunkedArray as a new …","Gets the number of strong (Arc) pointers to this …","Get the sum of the ChunkedArray as a new Series of length …","Get the sum of the ChunkedArray as a new Series of length …","","","","","","","","","","","","","","","","","","","","","","","","Constructs a new Arc<T>, returning an error if allocation …","Constructs a new Arc with uninitialized contents, …","Constructs a new Arc with uninitialized contents, with the …","Constructs a new Pin<Arc<T>>, return an error if …","Returns the inner value, if the Arc has exactly one strong …","","","","","","","","","If we have the only reference to T then unwrap it. …","","Get the variance of the ChunkedArray as a new Series of …","","","","","","","","","Gets the number of Weak pointers to this allocation.","Creates a new Field with metadata.","Attaches a Metadata to Schema","","","","","","Safety","Safety","","","","Cast null arrays to inner type and ensure that all offsets …","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","Utility trait to slice concrete arrow arrays whilst …","Slices this Array.","Slices the Array.","","","","","This trait exists to be unify the API of polars Schema and …","A map from field/column name (String) to the type of that …","","","","","","","Whether the schema contains a field named name","","","","","","","","","","","Returns the argument unchanged.","","Get a reference to the dtype of the field named name, or …","Get references to the name and dtype of the field at index","Get mutable references to the name and dtype of the field …","Look up the name in the schema and return an owned Field …","Return all data about the field named name: its index in …","Get a vector of all column names.","","Get the index of a column by name.","","","Insert a field with name and dtype at the given index into …","Calls U::from(self).","","","Iterates over the (&name, &dtype) pairs in this schema","Iterates over references to the dtypes in this schema","Iterates the Fields in this schema, constructing them anew …","Iterates over references to the names in this schema","The number of fields in the schema","Merge other into self","Create a new, empty schema","Create a new schema from this one, inserting a field with …","Swap-remove a field by name and, if the field existed, …","Rename field old to new, and return the (owned) old name","Change the field named name to the given dtype and return …","Change the field at the given index to the given dtype and …","Remove a field by name, preserving order, and, if the …","Remove a field by name, preserving order, and, if the …","Convert self to ArrowSchema by cloning the fields","","Take another Schema and try to find the supertypes between …","","Get a reference to the dtype of the field named name, or …","","Look up the name in the schema and return an owned Field …","Return all data about the field named name: its index in …","Get a mutable reference to the dtype of the field named …","","","","","Create a new, empty schema with capacity","Insert a new column in the Schema","","","","","","","Used to convert a ChunkedArray, &dyn SeriesTrait and Series","","","","","Series","","","","","","Get the sum of the Series as a new Series of length 1.","Get the sum of the Series as a new Series of length 1.","convert numerical values to their absolute value","","","","","Append in place. This is done by adding the chunks of other…","Retrieve the indexes needed for a sort.","Retrieve the indexes needed for a sort.","Get first indexes of unique values.","Get first indexes of unique values.","","Returns a reference to the Arrow ArrayRef","Get a hold to self as Any trait reference. Only …","Get a hold to self as Any trait reference. Only …","Get a hold to self as Any trait reference. Only …","Get a hold to self as Any trait reference. Only …","Packs every element into a list","","","","Rechunk and return a pointer to the start of the Series. …","Rechunk and return a pointer to the start of the Series. …","Only implemented for numeric types","Unpack to ChunkedArray of dtype [DataType::Binary]","","","","","","","Unpack to ChunkedArray of dtype [DataType::Boolean]","","","","","","","","Cast [Series] to another [DataType]","Cast from physical to logical types without any checks on …","Ceil underlying floating point array to the highest …","Get the lengths of the underlying chunks","Underlying chunks.","Safety","","Clamp underlying values to the min and max values.","Clamp underlying values to the max value.","Clamp underlying values to the min value.","","","Clone inner ChunkedArray and wrap in a new Arc","","","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","","","","","","","","","","","","","","Drop all null values and return a new Series.","Drop all null values and return a new Series.","Get datatype of series.","Get datatype of series.","","","","","Create a boolean mask by checking for equality.","Create a boolean mask by checking for equality.","","","","","","Returns an estimation of the total (heap) allocated size …","Explode a list Series. This expands every item to a new …","Extend the memory backed by this array with the values …","Extend with a constant value.","Unpack to ChunkedArray of dtype [DataType::Float32]","Unpack to ChunkedArray of dtype [DataType::Float64]","Get field (used in schema)","Get field (used in schema)","Replace None values with one of the following strategies:","Filter by boolean mask. This operation clones data.","Filter by boolean mask. This operation clones data.","Floor underlying floating point array to the lowest …","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Takes chunks and a polars datatype and constructs the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a single value by index. Don’t use this operation …","Get a pointer to the underlying data of this Series. Can …","Get a single value by index. Don’t use this operation …","Get a single value by index. Don’t use this operation …","","Create a boolean mask by checking if self > rhs.","","Create a boolean mask by checking if self >= rhs.","","","Return if any the chunks in this [ChunkedArray] have a …","Get the head of the Series.","Unpack to ChunkedArray of dtype [DataType::Int16]","Unpack to ChunkedArray","Unpack to ChunkedArray of dtype [DataType::Int64]","Unpack to ChunkedArray of dtype [DataType::Int8]","","","Convert the values of this Series to a ListChunked with a …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Check if Series is empty.","Check if Series is empty.","Check if numeric value is finite","Check if elements of this Series are in the right Series, …","Check if elements of this Series are in the right Series, …","Check if float value is infinite","Check if float value is NaN (note this is different than …","Check if float value is NaN (note this is different than …","Get a mask of the non-null values.","Get a mask of the null values.","","","","Check if Series is sorted.","Check if Series is sorted.","iterate over Series as AnyValue.","Get length of series.","Take num_elements from the top as a zero copy view.","Take num_elements from the top as a zero copy view.","Unpack to ChunkedArray of dtype list","Create a boolean mask by checking if self < rhs.","","","Create a boolean mask by checking if self <= rhs.","","","Returns the maximum value in the array, according to the …","Get the max of the Series as a new Series of length 1.","Get the max of the Series as a new Series of length 1.","Returns the mean value in the array Returns an option …","Returns the mean value in the array Returns an option …","","Returns the median value in the array Returns an option …","Returns the median value in the array Returns an option …","Get the median of the Series as a new Series of length 1.","Get the median of the Series as a new Series of length 1.","Returns the minimum value in the array, according to the …","Get the min of the Series as a new Series of length 1.","Get the min of the Series as a new Series of length 1.","","","","","Number of chunks in this Series","Number of chunks in this Series","Get unique values in the Series.","Get unique values in the Series.","Name of series.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new empty Series","Create a new Series filled with values from the given …","","","Create a boolean mask by checking for inequality.","","","","","Create a boolean mask by checking for inequality.","Count the null values.","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Get a boolean mask of the local minimum peaks.","","Get the product of an array.","Get the quantile of the ChunkedArray as a new Series of …","Get the quantile of the ChunkedArray as a new Series of …","Aggregate all chunks to a contiguous array of memory.","","","","Rename the Series.","Rename series.","","return a Series in reversed order","Round underlying floating point array to given decimal.","Sample a fraction between 0.0-1.0 of this ChunkedArray.","","Check if series are equal. Note that None == None …","Check if all values in series are equal where None == None …","","Shift the values by a given period and fill the parts that …","Shrink the capacity of this array to fit its length.","Shrink the capacity of this array to fit its length.","Shrink the capacity of this array to fit its length.","","","Get a zero copy view of the data.","","","","Get the standard deviation of the Series as a new Series …","Get the standard deviation of the Series as a new Series …","","Cast throws an error if conversion had overflows","Unpack to ChunkedArray of dtype [DataType::Struct]","","","","","Compute the sum of all values in this Series. Returns …","Get the sum of the Series as a new Series of length 1. …","Get the tail of the Series.","Take by index. This operation is clone.","Traverse and collect every nth element in a new array.","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index. This operation is clone.","Take by index if ChunkedArray contains a single chunk.","Take by index if ChunkedArray contains a single chunk.","Take by index if ChunkedArray contains a single chunk.","","","Convert a chunk in the Series to the correct Arrow type. …","","","Cast a datelike Series to their physical representation. …","","","","","","","","","","","","","","Unpack to ChunkedArray of dtype [DataType::UInt16]","Unpack to ChunkedArray of dtype [DataType::UInt32]","Unpack to ChunkedArray of dtype [DataType::UInt64]","Unpack to ChunkedArray of dtype [DataType::UInt8]","Get unique values in the Series.","Get unique values in the Series.","Compute the unique elements, but maintain order. This …","","","Unpack to ChunkedArray of dtype [DataType::Utf8]","Get the variance of the Series as a new Series of length 1.","Get the variance of the Series as a new Series of length 1.","","","","Create a new ChunkedArray with values from self where the …","","","","","","","","","","","","","","","","","","","","","","","","","","drop nulls","ignore nulls","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","A wrapper type that should make it a bit more clear that …","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","Swaps inner state with the array. Prefer …","","","","","","Temporary swaps out the array, and restores the original …","","","","","","Just a wrapper structure. Useful for certain impl …","","","","","Transform to physical type and coerce floating point and …","","This takes ownership of the DataFrame so that drop is …","This takes ownership of the DataFrame so that drop is …","","","","","","","","","","","","","","","","","","ensure that nulls are propagated to both arrays","","","","","","Concat the DataFrames to a single DataFrame.","Concat the DataFrames to a single DataFrame.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Given two datatypes, determine the supertype that both …","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Turn any iterator in a trusted length iterator","","","","Given two datatypes, determine the supertype that both …","","","","","","","","","","A utility that allocates an UnstableSeries. The applied …","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,279,3,279,3,3,0,0,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,279,3,279,3,3,3,3,3,3,279,3,3,3,3,3,3,3,3,3,3,0,3,3,279,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,279,3,3,3,279,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,279,3,279,3,279,3,3,3,3,0,3,3,279,3,3,3,0,280,280,280,280,280,280,280,0,0,0,0,0,0,0,0,83,84,85,281,80,81,82,83,84,85,80,281,85,281,80,81,82,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,80,85,83,84,85,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,281,80,81,82,83,84,85,80,81,82,83,84,85,282,282,282,282,80,81,82,83,84,85,80,81,82,83,84,85,0,80,81,82,83,84,85,281,81,82,83,84,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,0,0,0,0,0,0,0,88,88,90,91,92,92,95,88,90,93,94,91,92,88,88,95,92,95,88,90,93,94,91,92,92,93,94,93,94,88,90,93,94,91,92,88,90,93,94,91,92,92,88,90,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,93,94,91,92,95,93,94,91,92,95,88,90,95,88,90,93,94,91,92,0,88,90,93,94,91,92,93,94,91,92,95,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,0,0,0,0,0,0,0,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,103,103,101,103,105,107,101,103,105,107,108,109,101,103,105,107,109,0,101,103,105,107,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,0,0,75,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,283,114,284,285,75,75,0,0,110,110,110,110,110,115,116,0,0,0,110,115,116,115,0,0,0,0,0,0,0,0,283,0,0,0,0,110,25,27,110,286,286,287,287,286,286,286,286,288,288,289,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,73,74,73,74,286,291,291,73,74,73,74,25,27,110,25,27,110,292,292,292,292,25,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,25,27,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,25,285,285,25,25,25,293,293,294,295,25,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,75,75,75,75,75,75,25,27,110,0,296,297,114,284,115,116,117,118,119,120,122,123,124,125,126,127,128,298,298,115,116,117,118,119,120,122,123,124,125,126,127,128,114,284,285,285,25,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,299,285,285,25,300,300,301,300,25,27,289,302,285,285,25,27,303,303,301,304,305,305,305,306,307,0,288,288,308,300,309,283,309,310,25,27,110,286,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,289,308,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,135,135,134,135,134,135,134,134,134,134,135,134,135,134,135,134,134,134,135,134,135,134,135,134,135,134,134,135,134,135,134,135,134,135,134,0,0,0,0,0,42,29,151,0,42,0,42,29,151,0,0,0,0,0,29,151,151,0,29,0,151,151,151,29,151,0,151,0,151,151,151,42,29,151,0,0,42,29,151,0,0,0,312,0,0,0,0,0,0,42,29,151,0,0,42,29,151,0,0,42,29,151,0,0,42,29,151,0,0,151,151,151,151,42,29,151,0,0,0,0,151,152,141,152,141,152,141,5,42,29,151,0,121,0,0,0,0,0,0,0,0,0,0,152,42,29,151,0,42,29,151,151,0,0,0,151,42,29,151,0,0,42,29,151,0,0,42,29,151,0,0,42,29,151,0,0,151,29,42,29,151,0,42,0,140,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,22,42,42,35,35,76,76,76,28,28,28,42,21,20,12,66,56,62,64,59,57,22,35,76,28,137,35,35,22,22,35,35,22,35,76,28,22,22,35,76,28,35,76,28,35,76,28,76,28,22,35,76,28,22,22,35,76,28,22,35,76,28,22,35,76,28,35,138,139,76,28,35,138,139,76,28,35,138,139,76,28,76,42,313,35,35,35,35,35,35,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,22,35,76,28,314,22,35,76,28,137,42,22,35,76,28,140,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,140,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,71,71,42,29,140,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,140,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,66,56,62,64,59,57,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,314,137,42,71,42,29,29,71,141,151,152,22,35,76,76,28,28,137,22,35,76,76,28,28,137,42,42,42,29,29,29,71,71,71,141,141,141,151,151,151,152,152,152,22,76,140,137,137,137,35,28,22,35,76,28,22,76,28,42,42,29,29,71,141,141,151,152,140,21,20,2,12,35,35,76,28,137,42,42,42,29,29,29,29,71,71,71,141,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,151,151,152,22,22,22,35,76,76,28,28,35,76,28,22,22,35,76,76,28,28,35,76,28,71,22,35,35,76,76,35,76,28,35,76,28,35,22,35,76,28,22,35,76,28,137,22,22,35,35,76,76,28,314,314,22,35,76,28,137,314,314,22,35,76,28,137,19,21,20,2,12,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,22,42,315,22,35,35,76,22,76,28,22,35,76,28,22,35,76,76,28,28,137,22,35,76,76,28,28,137,42,29,141,151,152,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,22,29,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,22,35,76,28,137,137,42,137,29,35,76,28,137,29,29,42,29,29,29,42,29,29,42,29,137,22,35,76,76,28,28,137,22,35,76,76,28,28,137,35,22,35,76,28,35,138,139,138,139,0,35,22,35,76,28,35,66,56,62,64,59,57,76,28,137,71,71,312,171,172,173,316,317,76,76,76,76,28,28,28,28,137,71,22,35,76,28,35,35,22,35,76,76,28,28,137,22,35,76,76,28,28,137,137,22,76,22,76,42,138,139,138,139,35,137,137,66,56,62,64,59,57,137,22,35,76,28,35,76,28,35,76,28,35,76,28,22,22,71,22,35,76,28,22,35,76,28,35,138,139,76,28,35,138,139,76,28,138,139,138,139,66,56,62,64,59,57,35,22,35,76,28,22,35,76,28,22,35,76,28,22,35,76,28,29,71,141,141,151,140,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,22,29,151,42,29,141,28,22,35,76,28,22,42,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,35,138,139,76,28,137,29,138,139,138,139,35,163,164,165,166,167,168,169,170,138,139,76,28,35,163,164,165,166,167,168,169,170,138,139,76,28,140,21,20,2,12,137,42,29,71,141,142,143,66,56,144,145,62,64,59,57,146,147,148,149,150,151,152,312,171,172,173,316,317,22,35,76,28,0,0,0,0,0,0,0,0,0,0,136,136,136,136,0,175,175,175,136,136,175,136,175,175,175,0,0,136,136,136,136,136,174,175,174,175,174,174,175,174,175,174,175,0,174,174,175,175,174,174,175,175,175,175,175,175,175,175,175,175,0,174,175,174,175,0,0,0,0,0,175,0,0,174,175,174,175,174,175,174,175,174,175,0,0,0,0,0,0,0,0,0,187,187,187,187,187,187,187,187,187,187,187,0,187,187,0,187,187,187,187,187,193,0,0,193,192,193,193,0,0,192,0,0,192,193,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,203,192,193,161,202,203,192,193,161,161,192,193,161,192,193,161,161,161,161,193,161,202,203,192,193,161,202,203,192,193,161,202,203,192,193,161,161,161,161,161,161,161,161,193,161,193,193,193,161,0,161,161,161,161,161,161,161,192,193,161,161,161,161,161,202,203,192,193,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,0,161,161,161,0,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,203,192,193,161,161,202,203,192,193,161,202,203,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,203,161,161,161,161,161,161,161,161,161,161,161,161,0,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,203,161,161,161,161,161,161,161,161,161,161,161,161,161,192,193,161,161,161,161,161,161,161,202,203,192,193,161,161,161,161,202,203,192,193,161,202,203,192,193,161,161,161,161,161,161,161,161,202,203,192,193,161,161,161,161,161,161,161,0,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,0,210,210,0,0,210,0,0,0,0,0,0,214,11,0,210,0,210,210,210,210,210,210,210,210,210,214,11,0,210,210,210,209,11,195,210,195,0,209,195,11,214,218,212,211,209,11,195,210,214,218,212,211,209,11,195,210,209,11,195,210,209,11,195,210,195,209,11,214,218,212,211,211,209,11,195,210,214,218,212,211,209,11,195,210,195,212,214,218,212,211,209,209,11,195,210,209,11,209,209,209,11,11,11,0,214,209,195,209,209,11,195,210,210,0,214,218,212,211,209,209,209,209,11,11,195,210,209,209,11,195,195,11,11,318,318,195,11,214,218,212,211,209,11,195,210,214,218,212,211,209,11,195,210,11,218,209,209,212,209,209,214,11,209,209,11,195,195,195,214,11,195,195,195,195,195,209,195,218,218,195,209,11,195,195,11,209,11,195,195,11,195,195,209,11,195,210,210,214,218,212,211,209,11,195,210,214,218,212,211,209,11,195,210,214,218,212,211,209,11,195,210,11,11,11,195,214,218,212,211,209,11,195,210,319,319,0,0,0,0,0,0,0,0,0,320,0,321,321,0,0,0,225,225,0,0,0,0,225,0,224,224,224,224,225,190,225,224,0,0,0,0,0,190,225,224,190,225,224,190,225,224,190,225,224,224,0,190,225,224,190,225,224,190,225,224,190,225,224,190,190,190,225,225,225,224,224,224,190,225,225,224,224,190,190,225,224,190,190,225,224,190,225,224,224,224,190,0,190,190,190,190,225,224,225,224,190,225,224,190,225,224,190,225,224,190,190,225,224,227,228,0,0,227,228,227,228,227,228,227,228,227,228,0,228,227,228,227,228,227,228,227,228,194,227,228,228,0,227,228,194,227,228,194,227,228,194,227,228,194,0,194,227,228,194,227,228,194,227,228,194,194,194,194,194,194,227,227,228,228,194,0,227,228,194,227,228,194,227,228,227,228,194,227,228,0,0,227,228,194,227,228,194,227,228,194,227,228,194,227,228,194,0,0,0,0,0,0,0,0,0,322,0,230,230,230,230,230,230,230,230,322,322,230,230,0,230,230,230,323,323,323,323,230,230,230,230,230,230,0,324,0,0,0,136,0,0,0,0,0,0,0,0,136,136,0,136,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,136,136,0,325,0,0,0,0,0,0,70,0,0,0,0,0,0,70,0,70,0,0,0,70,0,136,0,0,0,0,0,0,0,0,0,0,136,136,0,0,136,0,136,136,0,0,0,0,0,70,236,237,232,155,238,232,232,232,232,326,232,232,136,70,236,237,232,232,155,238,136,70,236,237,232,155,238,232,70,236,237,232,155,238,70,236,237,232,155,238,0,232,232,155,155,0,236,232,70,232,238,0,136,70,236,237,232,232,155,238,136,70,236,237,232,155,238,232,0,232,232,232,136,70,236,237,232,232,155,238,70,232,232,232,155,238,70,70,70,232,232,232,155,155,155,238,238,238,238,238,136,136,70,236,237,232,232,232,155,238,136,136,136,136,70,236,237,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,155,238,238,327,328,329,232,330,330,330,330,232,331,232,325,232,232,238,325,31,332,232,333,232,155,232,238,0,136,70,236,237,232,155,238,237,136,70,236,237,232,155,238,232,232,232,130,130,155,232,0,232,232,334,334,335,155,238,334,334,155,232,336,337,232,155,232,232,232,232,232,0,232,232,0,0,0,0,237,334,334,136,232,232,232,335,326,0,338,338,136,232,232,232,232,232,339,232,334,334,70,236,237,232,155,238,136,232,136,70,236,237,232,232,155,238,136,70,236,237,232,155,238,232,232,232,232,232,136,70,236,237,232,155,238,232,232,0,339,232,136,70,236,237,232,155,238,232,155,238,136,0,0,0,327,328,329,0,266,266,0,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,0,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,0,338,338,0,0,340,341,0,0,0,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,342,188,342,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,342,188,188,188,188,188,49,49,0,0,49,49,0,0,0,49,49,0,0,0,0,49,9,256,256,9,9,9,9,9,9,256,256,256,256,0,9,256,256,256,256,9,256,256,9,256,256,9,9,256,256,256,256,256,256,9,270,49,9,270,49,9,256,9,9,9,256,256,9,9,9,9,9,49,9,256,49,9,9,9,9,9,9,270,49,9,9,270,49,9,9,9,9,9,270,49,9,256,256,256,256,49,9,9,9,9,9,9,9,49,49,49,9,9,9,9,9,9,256,256,9,256,9,9,49,9,9,9,270,49,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,256,9,256,256,9,9,9,9,9,9,256,9,9,9,9,9,9,0,9,270,49,9,270,49,9,9,270,201,9,256,256,9,256,256,9,9,9,256,256,201,201,9,256,256,9,256,256,256,9,9,9,9,9,9,9,9,256,256,256,256,9,256,256,256,256,9,256,256,9,9,9,9,256,256,256,256,256,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,256,9,270,9,9,9,9,9,9,256,0,256,256,256,256,9,9,256,256,256,9,9,9,256,9,9,256,9,9,9,9,9,9,256,256,256,9,9,270,256,9,256,256,256,256,9,9,9,9,9,9,9,9,9,9,256,9,256,256,256,9,256,9,9,256,256,9,49,9,9,9,9,270,49,9,9,9,270,49,9,270,49,9,9,9,9,9,256,256,9,256,0,9,256,256,270,49,9,9,0,0,0,343,0,343,344,8,8,343,344,8,8,343,344,8,8,343,344,8,8,343,344,8,8,272,272,0,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,0,0,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,345,0,0,277,278,274,277,278,274,274,274,274,274,274,274,0,0,345,345,0,0,0,0,277,277,278,278,274,277,278,278,274,277,278,274,0,277,277,277,277,0,345,345,277,278,274,278,278,276,278,278,278,278,0,0,277,277,278,274,277,278,274,278,274,204,274,274,278,274,274,274,0,274,0,0,0,274,345,277,278,274,0,277,278,274,277,278,274,277,278,274,0,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[[3,[2]]],4],[[[3,[5]]],[[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[3,[5]]]],[[[3,[8]],9],[[10,[9]]]],[[[3,[5]],11],9],[[[3,[12]]],4],[[[3,[12]],4],[[13,[4]]]],[[[3,[2]]],[[0,[14]]]],[[[3,[2]],15],[[0,[14]]]],[[[3,[12]]],4],[[[3,[12]],4],[[13,[4]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[2]],18],[[3,[2]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[5]],16],[[3,[5]]]],[[[3,[5]],16],[[3,[19]]]],[[[3,[20]],18],[[3,[20]]]],[[[3,[5]],[0,[16,17]]]],[[[3,[21]],18],[[3,[21]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[2]],16],[[10,[22]]]],[[[3,[5]],16,23]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[24]],25],26],[[[3,[24]],27],[[10,[26]]]],[[[3,[24]]],[[10,[26]]]],0,[[[3,[21]]],28],[[[3,[19]]],[[3,[19]]]],[[[3,[19]]],29],[[[3,[24]],[3,[24]]]],[[[3,[24]],[3,[24]]]],[[[3,[24]],[3,[24]]]],[[]],[[]],[[]],[[]],[[[3,[5]],16],[[3,[5]]]],0,0,[[[3,[5]],29],[[10,[9]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[5]],29],[[10,[9]]]],[[[3,[19]]],30],[[[3,[19]]],[[32,[31]]]],[[[3,[19]]],[[32,[31]]]],[[[3,[19]]],[[3,[19]]]],[[]],0,[[[3,[5]]],[[10,[23]]]],[[[3,[5]],4],[[3,[5]]]],[[[3,[5]],4],[[3,[5]]]],[[[3,[5]],4],[[3,[5]]]],[[[3,[5]],4],[[3,[5]]]],[[[3,[5]]],[[0,[14,33]]]],[[],[[3,[19]]]],[34],[34],[34],[34],[[[3,[5]],[3,[5]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[8]],9],[[10,[9]]]],[34],[34],[[[3,[19]]],29],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]]],[[[3,[5]]],[[10,[[3,[5]]]]]],[[[3,[5]],35],[[10,[[3,[5]]]]]],[[[3,[19]]],[[13,[34]]]],0,[[[3,[5]],36],37],[[[3,[12]],36],37],[[]],[38,[[3,[5]]]],[[]],[[],[[3,[5]]]],[23,[[3,[5]]]],[[15,[32,[31]]],[[3,[19]]]],[39,[[3,[5]]]],[39,[[3,[5]]]],[39,[[3,[12]]]],[[15,14],[[3,[5]]]],[39,[[3,[5]]]],[39,[[3,[12]]]],[[15,14],[[3,[5]]]],[40,[[3,[5]]]],[[15,23],[[3,[5]]]],[[15,[23,[13]]],[[3,[5]]]],[41,[[3,[5]]]],[[15,32],[[3,[5]]]],[[15,34],[[3,[5]]]],[[15,34],[[3,[5]]]],[[15,34,29],22],[[[3,[5]],34],13],[[[3,[5]],34],13],[[[3,[5]],34],[[10,[42]]]],[[[3,[5]],34],42],[[[3,[2]]],9],[[[3,[5]],34],13],[[[3,[5]],34],13],[[[3,[5]],4,4],[[10,[11]]]],[[[3,[24]],34,4,34],11],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[19]]],4],[[[3,[19]],[13,[34]]],[[3,[19]]]],[[],34],[[],34],[[34,43,[13,[44]]],[[3,[5]]]],[[[3,[2]]],29],[[]],[[]],[[[3,[5]]]],[[[3,[5]]],[[0,[14,45,46,47,33,41]]]],[[[3,[19]]],9],[[[3,[19]]],4],[[[3,[48]]],35],[[[3,[5]],9],[[10,[35]]]],[[[3,[48]]],35],[[[3,[48]]],35],[[[3,[48]]],35],[[[3,[19]]],35],[[[3,[19]]],35],[[[3,[19]]],4],[[[3,[19]]],49],[[[3,[19]]],[[51,[[50,[31]]]]]],0,0,[[[3,[19]]],[[13,[34]]]],[[[3,[19]]],34],[[[3,[5]],[0,[6,52]]],[[3,[5]]]],[[[3,[5]],[0,[6,52]]],[[3,[5]]]],[[[3,[5]],[0,[6,52]]],[[3,[5]]]],[[[3,[19]],34],[[3,[19]]]],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[12]]],[[13,[4]]]],[[[3,[5]]],13],[[[3,[5]]],9],[[[3,[5]]],[[13,[53]]]],[[[3,[12]]],[[13,[53]]]],[[[3,[24]]],[[13,[53]]]],[[[3,[24]]],9],[[[3,[12]]],[[13,[4]]]],[[[3,[5]]],13],[[[3,[5]]],9],[[15,23],[[3,[5]]]],[[15,[23,[54]],34,34],[[3,[12]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[8]],9],[[10,[9]]]],[[[3,[24]]],[[10,[34]]]],[[[3,[19]]],15],[[15,[55,[[23,[[13,[4]]]]]]],[[3,[12]]]],[[15,[55,[[23,[[13,[44]]]]]]],[[3,[56]]]],[[15,[55,[[23,[[32,[54]]]]]]],[[3,[20]]]],[[15,[55,[[23,[53]]]]],[[3,[57]]]],[[15,[55,[[23,[[13,[58]]]]]]],[[3,[21]]]],[[15,[55,[[23,[43]]]]],[[3,[59]]]],[[15,[61,[60]]],[[3,[62]]]],[[15,[55,[[23,[4]]]]],[[3,[12]]]],[[15,[55,[[23,[63]]]]],[[3,[64]]]],[[15,[55,[[23,[[13,[63]]]]]]],[[3,[64]]]],[[15,[55,[[23,[60]]]]],[[3,[62]]]],[[15,[61,[65]]],[[3,[66]]]],[[15,[55,[[23,[[13,[43]]]]]]],[[3,[59]]]],[[15,[55,[[23,[65]]]]],[[3,[66]]]],[[15,[55,[[23,[[13,[[32,[54]]]]]]]]],[[3,[20]]]],[[15,[55,[[23,[58]]]]],[[3,[21]]]],[[15,[61,[44]]],[[3,[56]]]],[[15,[55,[[23,[[13,[53]]]]]]],[[3,[57]]]],[[15,[61,[63]]],[[3,[64]]]],[[15,[55,[[23,[[13,[60]]]]]]],[[3,[62]]]],[[15,[55,[[23,[[13,[65]]]]]]],[[3,[66]]]],[[15,[55,[[23,[44]]]]],[[3,[56]]]],[[[3,[[0,[5,19]]]],34,34],[[3,[[0,[5,19]]]]]],[[15,32,[13,[67]]],[[3,[5]]]],[[15,32],[[3,[5]]]],[[[3,[48]]],[[3,[48]]]],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[19]]],34],0,[[[3,[2]]],68],[[[3,[21]]],68],[[[3,[2]]],69],[[[3,[21]]],69],[[[3,[5]]],35],[[[3,[5]]],35],[[[3,[5]]],9],[[[3,[24]],53,70],[[10,[[13,[53]]]]]],[[[3,[24]],53,70],[[10,[9]]]],[[15,34,53],[[10,[[3,[12]]]]]],[[15,34,53,53],[[10,[[3,[5]]]]]],[[15,34],[[3,[5]]]],[[15,34,53,53],[[3,[5]]]],[[[3,[19]]],[[3,[19]]]],[[[3,[19]]],71],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[8]],9],[[10,[9]]]],[[[3,[19]],15]],[[[3,[5]]],[[3,[5]]]],[[[3,[19]],53,4,4,[13,[44]]],[[10,[[3,[19]]]]]],[[[3,[19]],34,4,4,[13,[44]]],[[10,[[3,[19]]]]]],[[[3,[5]],35,13],[[10,[[3,[5]]]]]],[[[3,[5]],39,13],[[10,[[3,[5]]]]]],[[[3,[5]],39,16],[[10,[[3,[5]]]]]],[[[3,[2]]]],[[[3,[2]],29]],[[[3,[19]],49]],[[[3,[5]],63],[[3,[5]]]],[[[3,[5]],63,13],[[3,[5]]]],[[[3,[19]]]],[[[3,[19]],63,34],[[3,[19]]]],[[[3,[24]],4],[[3,[24]]]],[[[3,[24]],25],[[3,[24]]]],[[[3,[24]],54],[[13,[53]]]],[[[3,[24]],54],9],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[8]],9],[[10,[9]]]],[[[3,[12]]],[[13,[72]]]],[[[3,[5]]],13],[[[3,[5]]],9],[[[3,[19]],[13,[34]]],[[3,[19]]]],[[[3,[5]],[75,[73,74]]],[[10,[[3,[5]]]]]],[[[3,[5]]]],[[[3,[5]],[75,[73,74]]],[[3,[5]]]],0,[[[3,[5]],34],[[3,[5]]]],[[]],[[[3,[2]],29]],[[[3,[20]]],76],[[[3,[5]]],[[32,[13]]]],[[[3,[5]]],[[77,[32,[32,[13]]]]]],[[[3,[5]],[0,[16,17]]],[[10,[[3,[5]]]]]],[[[3,[2]],18],[[10,[[3,[2]]]]]],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[[3,[24]]],[[10,[[3,[24]]]]]],[[[3,[19]],9],[[10,[[3,[19]]]]]],[[[3,[19]]]],0,[[[3,[24]],54],[[13,[53]]]],[[[3,[24]],54],9],[[]],[[]],[[[3,[19]],[32,[31]]],[[3,[19]]]],[[[3,[5]],35,[3,[5]]],[[10,[[3,[5]]]]]],0,[[38,38],38],[[38,38],38],[38,38],[[38,38],38],[[38,38],38],[38,38],[[38,38],38],0,0,0,0,0,0,0,0,[1],[1],[1],[[]],[80],[81],[82],[83],[[[84,[5]]]],[85],[[80,[13,[[55,[[23,[54]]]]]]]],[13],[[85,[13,[[55,[15]]]]]],[[]],[[80,[55,[[23,[54]]]]]],[[81,[86,[[23,[54]]]]]],[[82,[86,[15]]]],[[83,4]],[[[84,[5]]]],[[85,[55,[15]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[83,83],[[[84,[[0,[5,87]]]]],[[84,[[0,[5,87]]]]]],[85,85],[[]],[[]],[[]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[],3],[80,28],[81,[[3,[20]]]],[82,[[3,[21]]]],[83,35],[[[84,[5]]],[[3,[5]]]],[85,76],[[]],[[]],[[]],[[]],[[]],[[]],[[15,14]],[[15,14]],[[15,23]],[[15,[23,[13]]]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[]],[[]],[[]],[[]],[[]],[[]],0,[[15,34,34],80],[[15,34],81],[[15,34],82],[[15,34],83],[[15,34],[[84,[5]]]],[[15,34,34],85],[[]],[81],[82],[83],[[[84,[5]]]],[[]],[[]],[[]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,[[88,89]],[88],[90],[[91,[0,[14,41]]]],[[[92,[5]],[0,[14,41]]]],[[[92,[5]],[0,[14,41]]]],[[]],[88],[90],[93],[94],[91],[[[92,[5]]]],[[88,[13,[89]]]],[[88,[13,[9]]],10],[[[13,[9]]],10],[[[92,[5]],[13,[23]]]],[9,10],[[88,9],10],[[90,9],10],[[93,9],10],[[94,9],10],[[91,9],10],[[[92,[5]],9],10],[[[92,[5]],23]],[[93,[0,[14,41]]]],[[94,[0,[14,41]]]],[[93,14]],[[94,14]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],88],[[],90],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[93,4],[94,4],[91,4],[[[92,[5]]],4],[[],4],[93,71],[94,71],[91,71],[[[92,[5]]],71],[[],71],[88,22],[90,22],[[],22],[[]],[[]],[[]],[[]],[[]],[[]],[[29,34,34,15],[[10,[[96,[95]]]]]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[93,31],[94,31],[91,31],[[[92,[5]]],31],[[],31],[[]],[[]],[[]],[[]],[[]],[[]],[[15,34,[13,[29]]],88],[[15,34,[13,[29]]],90],[[15,34,34],93],[[15,34,34],94],[[15,34,34],91],[[15,34,34,29],[[92,[5]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[]],[[]],[[]],[[]],[[]],[[]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[32,[[98,[97]],99]]]],[[],[[32,[58,99]]]],[100,101],[[[102,[63]]],103],[[[104,[63]]],105],[[[106,[63]],29],107],[101,13],[103,13],[105,13],[107,13],[108,13],[[[109,[14]]],13],[101,13],[103,13],[105,13],[107,13],[[[109,[33]]],13],0,[101],[103],[105],[107],[[[109,[14]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[[0,[16,17]]]],[[[0,[16,17]]],[[3,[5]]]],[16],[16,[[3,[19]]]],[[[0,[16,17]]]],[[16,23]],[[[0,[16,17]]]],[[[0,[16,17]]]],[25,26],[27,[[10,[26]]]],[[],[[10,[26]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[96,[73]]]],[[],[[96,[74]]]],[73,[[96,[73]]]],[74,[[96,[74]]]],[[[0,[16,17]]],[[3,[5]]]],[29,[[10,[9]]]],[29,[[10,[9]]]],[34,10],[34,10],[[73,34],10],[[74,34],10],[25,25],[27,27],[110,110],[[]],[[]],[[]],[4,3],[4,3],[4,3],[4,3],[[],25],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],0,0,[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[25,25],4],[[]],[[]],[[],4],[[],4],[[],4],[[],[[10,[9]]]],[[],10],[111,[[10,[111]]]],[[111,35],[[10,[3]]]],[[25,36],37],[[110,36],37],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[74,[[75,[[112,[34]],74]]]],[26,[[75,[[112,[34]],[112,[[13,[34]]]]]]]],[73,[[75,[73,[112,[[13,[34]]]]]]]],[[[32,[72]]],[[75,[[51,[[50,[72]]]],[112,[[13,[34]]]]]]]],[[[23,[72]]],[[75,[[51,[[50,[72]]]],[112,[[13,[34]]]]]]]],[[]],[113],[[]],[[]],[[]],0,[[15,34],111],[[15,34],111],[34,13],[34,13],[[[115,[114,114,114]],34],13],[[[116,[114,114]],34],13],[[117,34],13],[[118,34],13],[[119,34],13],[[120,34],13],[[[122,[121]],34],13],[[[123,[17]],34],13],[[[124,[121]],34],13],[[125,34],13],[[126,34],13],[[127,34],13],[[128,34],13],[34,[[10,[42]]]],[34,42],[[[115,[114,114,114]],34],13],[[[116,[114,114]],34],13],[[117,34],13],[[118,34],13],[[119,34],13],[[120,34],13],[[[122,[121]],34],13],[[[123,[17]],34],13],[[[124,[121]],34],13],[[125,34],13],[[126,34],13],[[127,34],13],[[128,34],13],[[111,34],13],[[111,34],13],[[]],[[]],[[25,129]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[9,[[10,[35]]]],[[]],[[]],0,[[],13],[[],[[13,[53]]]],[[],13],[[],13],0,0,[[],[[10,[34]]]],[[34,34],3],[[]],[[]],0,0,[[],35],[[],35],[[53,70],[[10,[13]]]],[[]],[[111,35,13],[[10,[111]]]],[[111,39,13],[[10,[111]]]],[[111,39,16],[[10,[111]]]],[63,3],[63,3],0,[4,3],[25,3],[54,13],[[],13],[[111,[75,[73,74]]],[[10,[111]]]],[[]],[[111,[75,[73,74]]],111],[[],[[32,[[23,[54]]]]]],[[]],[[]],[[]],[[111,[0,[16,17]]],[[10,[111]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],[[10,[3]]]],[54,13],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[35,3],[[10,[3]]]],[[34,[32,[4]]]],0,[[23,4,4]],[[[23,[[0,[130,131]]]]]],[[[23,[[0,[130,131]]]]]],[[[23,[9]],[23,[4]],4],[[10,[132]]]],[[15,[23,[9]],[23,[4]],4],[[10,[28]]]],[9,[[10,[31]]]],0,[[],133],[133,63],[133,63],[133,63],0,0,0,0,0,0,0,[1],[[]],[[]],[[]],[[]],[134,134],[[]],[[],134],[34],[34],[34],[34],[34],[34],[[134,134],4],[[134,36],37],[[]],[[]],[15,[[78,[135]]]],[[15,39],[[10,[134]]]],[[],34],[[],34],[[]],[[]],[[]],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[]],[[]],[[],4],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[22,4],[42,14],[[42,[32,[42]]]],[[35,35]],[[35,35]],[[76,76]],[[76,76]],[[76,15]],[[28,28]],[[28,[23,[54]]]],[[28,28]],[[42,42],42],[[76,9],[[10,[9]]]],[[28,9],[[10,[9]]]],[[35,9],[[10,[9]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[22,11],9],[[35,11],9],[[76,11],9],[[28,11],9],[[137,11],9],[35,4],[[35,4],[[13,[4]]]],[22,[[0,[14]]]],[[22,15],[[0,[14]]]],[35,4],[[35,4],[[13,[4]]]],[[22,[0,[16,17]]],22],[[35,[0,[16,17]]],35],[[76,[0,[16,17]]],76],[[28,[0,[16,17]]],28],[[22,18],22],[[22,[0,[16,17]]],[[3,[5]]]],[[35,[0,[16,17]]],[[3,[5]]]],[[76,[0,[16,17]]],[[3,[5]]]],[[28,[0,[16,17]]],[[3,[5]]]],[[35,16],35],[[76,16],76],[[28,16],28],[[35,16],[[3,[19]]]],[[76,16],[[3,[19]]]],[[28,16],[[3,[19]]]],[[76,18],76],[[28,18],28],[[22,[0,[16,17]]],22],[[35,[0,[16,17]]],35],[[76,[0,[16,17]]],76],[[28,[0,[16,17]]],28],[[22,16],[[10,[22]]]],[[22,16,23]],[[35,16,23]],[[76,16,23]],[[28,16,23]],[[22,[0,[16,17]]],22],[[35,[0,[16,17]]],35],[[76,[0,[16,17]]],76],[[28,[0,[16,17]]],28],[[22,[0,[16,17]]],22],[[35,[0,[16,17]]],35],[[76,[0,[16,17]]],76],[[28,[0,[16,17]]],28],[[35,25],26],[[138,25],26],[[139,25],26],[[76,25],26],[[28,25],26],[[35,27],[[10,[26]]]],[[138,27],[[10,[26]]]],[[139,27],[[10,[26]]]],[[76,27],[[10,[26]]]],[[28,27],[[10,[26]]]],[35,[[10,[26]]]],[138,[[10,[26]]]],[139,[[10,[26]]]],[76,[[10,[26]]]],[28,[[10,[26]]]],[76,28],[42,42],[[],29],[[35,35]],[[35,35]],[[35,35]],[[35,35]],[[35,35]],[[35,35]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[22,[0,[16,17]]],[[3,[5]]]],[[35,[0,[16,17]]],[[3,[5]]]],[[76,[0,[16,17]]],[[3,[5]]]],[[28,[0,[16,17]]],[[3,[5]]]],[29,[[10,[9]]]],[[22,29],[[10,[9]]]],[[35,29],[[10,[9]]]],[[76,29],[[10,[9]]]],[[28,29],[[10,[9]]]],[[137,29],[[10,[9]]]],[[42,29],[[10,[42]]]],[[22,29],[[10,[9]]]],[[35,29],[[10,[9]]]],[[76,29],[[10,[9]]]],[[28,29],[[10,[9]]]],[[[140,[19,19]]],[[140,[19,19]]]],[137,137],[42,42],[29,29],[71,71],[141,141],[142,142],[143,143],[66,66],[56,56],[144,144],[145,145],[62,62],[64,64],[59,59],[57,57],[146,146],[147,147],[148,148],[149,149],[150,150],[151,151],[152,152],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[71,29]],[71,29],[[],42],[[],29],[[[140,[19,19]]]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[[140,[19,19]]]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[],29],[137,29],[42,29],0,[[42,42],4],[[29,29],4],[[29,151],4],[[71,71],4],[[141,141],4],[[151,151],4],[[152,152],4],[[22,22],35],[[35,35],35],[[76,15],35],[[76,76],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[[22,22],35],[[35,35],35],[[76,76],35],[[76,15],35],[[28,[23,[54]]],35],[[28,28],35],[[137,137],35],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[22,10],[76,10],[[[140,[19,19]]],71],[[137,15],[[10,[9]]]],[137,[[23,[9]]]],[137,[[32,[9]]]],[[35,4],[[10,[35]]]],[[28,[23,[54]]],[[10,[28]]]],[[22,35],[[10,[22]]]],[[35,35],[[10,[[3,[12]]]]]],[[76,35],[[10,[[3,[21]]]]]],[[28,35],[[10,[[3,[20]]]]]],[[22,36],37],[[76,36],37],[[28,36],37],[[42,36],37],[[42,36],37],[[29,36],37],[[29,36],37],[[71,36],37],[[141,36],37],[[141,36],37],[[151,36],[[78,[153]]]],[[152,36],[[78,[153]]]],[[]],[[]],[[]],[[]],[[]],[100,35],[[],35],[[],76],[[],28],[[]],[[[13,[[154,[42]]]]],42],[[]],[121,42],[[]],[151,29],[42,29],[42,29],[[]],[42,71],[155,71],[152,141],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[156,151],[157,151],[[]],[[]],[39,22],[39,22],[39,22],[39,35],[39,76],[39,76],[39,28],[39,28],[[15,14],[[3,[12]]]],[[15,14],76],[[15,14],28],[39,22],[39,22],[39,35],[39,76],[39,76],[39,28],[39,28],[[15,14],[[3,[12]]]],[[15,14],76],[[15,14],28],[[158,29],71],[40,22],[40,35],[40,35],[40,76],[40,76],[[15,[23,[4]]],35],[[15,[23,[[55,[15]]]]],76],[[15,[23,[[55,[[23,[54]]]]]]],28],[[15,[23,[[13,[4]]]]],35],[[15,[23,[[13,[[55,[15]]]]]]],76],[[15,[23,[[13,[[55,[[23,[54]]]]]]]]],28],[41,35],[[15,9,34],22],[[15,4,34],35],[[15,15,34],76],[[15,[23,[54]],34],28],[[15,34],22],[[15,34],35],[[15,34],76],[[15,34],28],[[15,34],137],[[15,34,29],22],[[22,34],13],[[35,34],13],[[35,34],13],[[76,34],13],[[76,34],13],[[28,34],13],[34,[[10,[42]]]],[34,[[10,[42]]]],[[22,34],[[10,[42]]]],[[35,34],[[10,[42]]]],[[76,34],[[10,[42]]]],[[28,34],[[10,[42]]]],[[137,34],[[10,[42]]]],[34,42],[34,42],[[22,34],42],[[35,34],42],[[76,34],42],[[28,34],42],[[137,34],42],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[22,9],[42,[[13,[15]]]],[34,42],[[22,34],13],[[35,34],13],[[35,34],13],[[76,34],13],[22,34],[76,34],[28,34],[[22,4,4],[[10,[11]]]],[[35,4,4],[[10,[11]]]],[[76,4,4],[[10,[11]]]],[[28,4,4],[[10,[11]]]],[[22,22],35],[[35,35],35],[[76,76],35],[[76,15],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[[22,22],35],[[35,35],35],[[76,15],35],[[76,76],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[[42,129]],[[29,129]],[[141,129]],[[151,129]],[[152,129]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[22,29],[29,[[13,[29]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[22],[35],[76],[28],[137],[137,9],[42,[[10,[42]]]],[137,4],[29,4],[[35,9],[[10,[35]]]],[[76,9],[[10,[35]]]],[[28,9],[[10,[35]]]],[[137,9],[[10,[35]]]],[29,4],[29,4],[42,4],[29,4],[29,4],[29,4],[42,4],[29,4],[29,4],[42,4],[29,4],[137,34],[[22,22],35],[[35,35],35],[[76,76],35],[[76,15],35],[[28,[23,[54]]],35],[[28,28],35],[[137,137],35],[[22,22],35],[[35,35],35],[[76,15],35],[[76,76],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[35,[[13,[4]]]],[22,9],[35,9],[76,9],[28,9],[35,[[13,[53]]]],[138,[[13,[43]]]],[139,[[13,[53]]]],[138,9],[139,9],[[29,29],[[10,[29]]]],[35,[[13,[4]]]],[22,9],[35,9],[76,9],[28,9],[[15,[23,[54]],34,34],35],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[76,[[10,[34]]]],[28,[[10,[34]]]],[137,158],[71,158],0,[[]],[[]],[[]],[[]],[[]],[[]],[[15,[55,[[23,[[13,[[86,[15]]]]]]]]],76],[[15,[55,[[23,[[86,[15]]]]]]],76],[[15,[55,[[23,[[13,[15]]]]]]],76],[[15,[55,[[23,[15]]]]],76],[[15,[55,[[23,[[13,[[86,[[23,[54]]]]]]]]]]],28],[[15,[55,[[23,[[13,[[23,[54]]]]]]]]],28],[[15,[55,[[23,[[86,[[23,[54]]]]]]]]],28],[[15,[55,[[23,[[23,[54]]]]]]],28],[[15,[23,[9]]],[[10,[137]]]],[[15,29],71],[[22,34,34],22],[[35,34,34],35],[[76,34,34],76],[[28,34,34],28],[35],[35],[[22,22],35],[[35,35],35],[[76,15],35],[[76,76],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[[22,22],35],[[35,35],35],[[76,76],35],[[76,15],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[137,34],[22,68],[76,68],[22,69],[76,69],[[42,42],[[13,[159]]]],[[138,53,70],[[10,[[13,[43]]]]]],[[139,53,70],[[10,[[13,[53]]]]]],[[138,53,70],[[10,[9]]]],[[139,53,70],[[10,[9]]]],[[15,34,53],[[10,[35]]]],[137],[137,71],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[137,15]],[22,22],[35,35],[76,76],[28,28],[[35,35,[13,[4]]],[[10,[35]]]],[[76,35,[13,[15]]],[[10,[76]]]],[[28,35,[13,[[23,[54]]]]],[[10,[28]]]],[[35,39,[13,[4]]],[[10,[35]]]],[[76,39,[13,[15]]],[[10,[76]]]],[[28,39,[13,[[23,[54]]]]],[[10,[28]]]],[[35,39,16],[[10,[35]]]],[[76,39,16],[[10,[76]]]],[[28,39,16],[[10,[28]]]],[22],[[22,29]],[[71,158]],[[22,63],22],[[35,63],35],[[76,63],76],[[28,63],28],[[22,63,[13,[9]]],22],[[35,63,[13,[4]]],35],[[76,63,[13,[15]]],76],[[28,63,[13,[[23,[54]]]]],28],[[35,4],35],[[138,4],138],[[139,4],139],[[76,4],76],[[28,4],28],[[35,25],[[3,[12]]]],[[138,25],138],[[139,25],139],[[76,25],[[3,[21]]]],[[28,25],[[3,[20]]]],[[138,54],[[13,[43]]]],[[139,54],[[13,[53]]]],[[138,54],9],[[139,54],9],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[35,[[13,[72]]]],[22,9],[35,9],[76,9],[28,9],[[22,[75,[73,74]]],[[10,[22]]]],[[35,[75,[73,74]]],[[10,[35]]]],[[76,[75,[73,74]]],[[10,[76]]]],[[28,[75,[73,74]]],[[10,[28]]]],[22],[35],[76],[28],[[22,[75,[73,74]]],22],[[35,[75,[73,74]]],35],[[76,[75,[73,74]]],76],[[28,[75,[73,74]]],28],[29,151],[71,155],[141,152],[141,15],[151,151],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[22,29]],[29,29],[151,160],[[],58],[[],58],[[],58],[28,76],[[22,[0,[16,17]]],[[10,[22]]]],[[35,[0,[16,17]]],[[10,[35]]]],[[76,[0,[16,17]]],[[10,[76]]]],[[28,[0,[16,17]]],[[10,[28]]]],[[22,18],[[10,[22]]]],[42,[[10,[52]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[35,[[10,[35]]]],[138,[[10,[[3,[59]]]]]],[139,[[10,[[3,[57]]]]]],[76,[[10,[76]]]],[28,[[10,[28]]]],[137,161],[[29,42],4],[[138,54],[[13,[43]]]],[[139,54],[[13,[53]]]],[[138,54],9],[[139,54],9],[[35,162,[32,[44]]]],[[163,162,[32,[44]]]],[[164,162,[32,[44]]]],[[165,162,[32,[44]]]],[[166,162,[32,[44]]]],[[167,162,[32,[44]]]],[[168,162,[32,[44]]]],[[169,162,[32,[44]]]],[[170,162,[32,[44]]]],[[138,162,[32,[44]]]],[[139,162,[32,[44]]]],[[76,162,[32,[44]]]],[[28,162,[32,[44]]]],[[35,162,[23,[44]]]],[[163,162,[23,[44]]]],[[164,162,[23,[44]]]],[[165,162,[23,[44]]]],[[166,162,[23,[44]]]],[[167,162,[23,[44]]]],[[168,162,[23,[44]]]],[[169,162,[23,[44]]]],[[170,162,[23,[44]]]],[[138,162,[23,[44]]]],[[139,162,[23,[44]]]],[[76,162,[23,[44]]]],[[28,162,[23,[44]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[34],[34,171],[34,172],[34,173],[34],[34],[[22,35,22],[[10,[22]]]],[[35,35,35],[[10,[35]]]],[[76,35,76],[[10,[76]]]],[[28,35,28],[[10,[28]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[34],[174],[34],[34],[34],[34],[34],0,[[174,36],[[78,[153]]]],[[174,36],[[78,[153]]]],[[175,36],[[78,[153]]]],[[175,36],[[78,[153]]]],[[]],[[[154,[[86,[15]]]]],174],[176,175],[177,175],[178,175],[179,175],[180,175],[181,175],[182,175],[[]],[183,175],[[[0,[184,45,46]]],175],[[]],[[],34],[[],34],[[]],[[]],[184,136],0,0,0,0,[185],[[]],[186,136],[[],58],[[],58],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,[1],[[]],[[]],[187,187],[[]],[34],[34],[34],[[]],[[],187],[[],34],[[]],[187],[[]],[[],78],[[],78],[[],79],[[]],0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[161,[32,[9]],188],10],[[161,[23,[72]],4,4],161],[[161,35],[[10,[161]]]],[[161,189,161,190],[[10,[161]]]],[[161,161,9,9,190,4],[[10,[161]]]],[[161,161,9,9,190],[[10,[161]]]],[[161,63,34],161],[161,161],[161,161],[[161,15,191],[[10,[161]]]],[[161,34,191],[[10,[161]]]],[161,161],[161,161],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[161,161],[192,192],[193,193],[161,161],[[]],[[]],[[]],[[161,15],[[10,[9]]]],[[161,39],[[10,[[32,[9]]]]]],[[161,161,[13,[15]],13],[[10,[161]]]],[[],193],[[],161],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[161,15],[[10,[161]]]],[[161,15],[[10,[9]]]],[[161,[23,[[55,[15]]]]],161],[[161,[173,[15]]],161],[[161,[13,[[23,[[55,[15]]]]]]],[[10,[161]]]],[161,[[32,[29]]]],[[],161],[[193,193],4],[[161,161],4],[[],4],[[],4],[[],4],[161,34],0,[[161,39],[[10,[161]]]],[[161,[32,[9]]],[[10,[161]]]],[[161,161],10],[161,[[32,[71]]]],[[161,110],[[10,[161]]]],[[161,35],[[10,[161]]]],[[161,15],[[13,[34]]]],[[192,36],37],[[193,36],37],[[161,36],37],[[161,36],37],[[161,161],4],[[161,161],4],[[161,161],10],[[]],[[]],[[]],[[]],[[]],[137,161],[188,161],[39,161],[[[23,[194]]],[[10,[161]]]],[[[23,[194]],188],[[10,[161]]]],[[14,188],[[10,[161]]]],[[161,34],[[13,[[32,[42]]]]]],[161,[[32,[15]]]],[161,[[32,[158]]]],[161,[[23,[9]]]],[161,[[32,[9]]]],[[161,34],[[10,[194]]]],[[161,34,194],10],[[161,34,194]],[161,[[13,[[10,[29]]]]]],0,[[161,39],[[10,[195]]]],[[161,39],[[10,[195]]]],[[161,[32,[9]],4,4],[[10,[195]]]],0,[[161,[13,[34]]],161],[161,34],[161,[[10,[[13,[9]]]]]],[[161,192],[[10,[[13,[9]]]]]],[161,[[10,[[13,[9]]]]]],[[161,[23,[9]]],[[10,[161]]]],[[161,[23,[9]]],[[10,[161]]]],[[161,[23,[9]]],161],[[161,192],[[10,[[13,[9]]]]]],[[161,34]],[[161,[196,[34]]]],[[161,[197,[34]]]],[[161,[61,[34]]]],[[161,[198,[34]]]],[[161,[199,[34]]]],[[161,200]],[[161,15]],[[],34],[[],34],[[],34],[[],34],[[],34],[[161,34,201],[[10,[161]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[161,15],137],[161,[[10,[35]]]],[161,4],[161,[[10,[35]]]],[161,[[50,[9]]]],[161,202],[161,203],[161,161],[161,161],[161,161],[[161,[204,[158]],[204,[158]]],[[10,[161]]]],[[161,205],[[10,[161]]]],[161,161],[161,34],[[[32,[201]]],[[10,[161]]]],[[[32,[9]]],161],[202,13],[203,13],[161,161],[[161,16],10],[[161,16],10],[[161,16],10],[161,[[13,[9]]]],[[161,161],4],[[161,53,70],[[10,[161]]]],[[161,15,15],[[10,[161]]]],[[161,15,201],[[10,[161]]]],[[161,34,201],[[10,[161]]]],[[161,15,201],[[10,[161]]]],[161,161],0,[[161,53,4,4,[13,[44]]],[[10,[161]]]],[[161,34,4,4,[13,[44]]],[[10,[161]]]],[161,188],[[161,39],[[10,[161]]]],[[161,34],[[13,[9]]]],[[161,[206,[34]]],[[10,[161]]]],[[161,39],[[10,[161]]]],[[161,[204,[158]]],[[10,[[32,[9]]]]]],[[161,39,207],[[10,[161]]]],[[161,39,188],[[10,[161]]]],[[161,[23,[[55,[15]]]]],10],[161],[[161,63],161],[161,4],[161],[202],[203],[[161,63,34],161],[[161,63,34],161],[[161,[204,[158]],[204,[4]],4],[[10,[161]]]],[[161,[32,[9]],[32,[4]],4,4,13,4],[[10,[161]]]],[[161,[204,[158]],[204,[4]],4],[[10,[161]]]],[[161,15,25],[[10,[161]]]],[[161,54],161],[161,161],[[161,[13,[34]]],161],[[161,26],[[10,[161]]]],[[161,[0,[14,87,46,41]]],[[10,[161]]]],[[161,[0,[14,87,46,41]]],161],[[161,[0,[14,87,46,41]]],161],[[]],[[]],[[]],[[],58],[[161,34,[204,[4]],[204,[158]]],[[10,[161]]]],[[161,[13,[15]],[13,[[77,[58,[32,[58]]]]]]],[[10,[161]]]],[[161,15,191],[[10,[161]]]],[[161,34,191],[[10,[161]]]],[[161,15],[[10,[34]]]],[[],78],[[],78],[[],78],[[],78],[208,[[10,[161]]]],[[],78],[[],[[10,[161]]]],[[14,188],[[10,[161]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[161,[13,[[23,[58]]]],193,13],[[10,[161]]]],[[161,4,[13,[[23,[58]]]],193,13],[[10,[161]]]],[[161,[13,[[23,[58]]]],193,13],[[10,[161]]]],[[161,[204,[58]]],[[10,[161]]]],[[161,54],161],[[161,161],[[10,[161]]]],[[161,161],[[10,[161]]]],[[]],[[]],[[]],[[]],[[]],[161,34],[[161,201],[[10,[161]]]],[[161,201,188],[[10,[161]]]],[[161,9],161],[[161,15,[13,[72]]],[[10,[161]]]],[[161,15,[13,[72]]],161],0,[1],[[]],[[]],[205,205],[[]],[[],205],[34],[34],[34],[[205,205],4],[[205,36],37],[[]],0,[[],34],[[]],0,[[]],[[],78],[[],78],[[],79],0,0,0,[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[195,[[10,[161]]]],0,[209,[[23,[[32,[72]]]]]],[[195,[0,[18,45,46]]],[[10,[161]]]],[11,22],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[209,209],[11,11],[195,195],[210,210],[[]],[[]],[[]],[[]],[195,[[10,[161]]]],[[],209],[[],11],[34],[34],[34],[34],[211],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],0,[[212,213]],[34],[34],[34],[34],[34],[209],[34],[34],[34],[[209,209],4],[[11,11],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[214,72],[209,[[23,[72]]]],[195,[[10,[161]]]],[209,[[32,[72]]]],[[209,36],37],[[11,36],37],[[195,36],37],[[210,36],37],[[210,36],37],[[15,210],58],[[]],[[]],[[]],[[]],[[]],[[[32,[215]]],209],[32,209],[[[32,[[32,[215]]]]],209],[[]],[209,11],[[]],[[]],[39,209],[40,209],[[11,34],214],[195,11],[195,11],[11,26],[[11,15],26],[[4,4],[[10,[11]]]],[[4,4],[[10,[11]]]],[195,[[10,[161]]]],[11,209],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[11,209],[[]],[209],[209],[[]],[209],[209],[214,4],[11,4],[209,4],[209,[[217,[[216,[[50,[72]]]],[50,[[32,[72]]]]]]]],[11,218],[195,[[32,[9]]]],[[195,13],[[32,[9]]]],[195,[[10,[161]]]],[214,34],[11,34],[195,[[10,[161]]]],[195,[[10,[161]]]],[195,[[10,[161]]]],[195,[[10,[161]]]],[195,[[10,[161]]]],[[[32,[72]],[32,[[32,[72]]]],4],209],[[161,[32,[9]],11,[13,[[32,[58]]]]],195],[218,13],[[218,34],13],[[195,[0,[16,45,46]]],[[10,[161]]]],[[]],[11,212],[[195,53,70],[[10,[161]]]],[[195,39],195],[[11,63,34],211],[209],[11],[[195,54],[[10,[161]]]],[195,[[10,[161]]]],[11,[[32,[72]]]],[195,11],[195,11],[[]],[[]],[[]],[[]],[[],58],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[11,11],[11,209],[11,219],[[195,54],[[10,[161]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[209,[0,[16,45,46]]],9],[[209,[0,[16,45,46]]],9],[[[23,[[220,[72]]]],[0,[16,45,46]]],9],[[[23,[[220,[72]]]],[0,[16,45,46]]],9],[[[23,[[0,[130,221]]]],[0,[14,41]],222],31],[[[23,[[0,[130,221]]]],67,[0,[14,41]],222],31],[[[3,[19]],72,72],[[3,[19]]]],[[219,[23,[31]]],4],[11,9],0,[[161,11],[[10,[9]]]],[[],[[10,[15]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[161,161,4]],[[15,15],58],[[161,161,[13,[[23,[223]]]],[13,[[23,[223]]]]],189],[[161,161,4],32],[[9,9,4,224],10],[[]],[[]],[[]],[[]],[[]],[[]],[190,190],[225,225],[224,224],[[]],[[]],[[]],[[],224],[[],226],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[190,190],4],[[225,225],4],[[224,224],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[190,36],37],[[225,36],37],[[225,36],37],[[224,36],37],[[224,36],37],[[]],[225,190],[[]],[[]],0,[[],34],[[],34],[[],34],[[]],[[]],[[]],[[224,225,34],10],[224,4],[225,190],[[161,161,[13,[[23,[223]]]],[13,[[23,[223]]]]],189],0,[190,15],0,[[]],[[]],[[]],[[],58],[[],58],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],0,[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[227,42],13],[[228,42]],[[228,42]],[[[23,[42]]],10],[[]],[[]],[[]],[[]],[[]],[[]],[227,227],[228,228],[194,194],[[]],[[]],[[]],[[[23,[[229,[29]]]]],29],[[],194],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[194,194],4],[[],4],[[],4],[[],4],[[194,36],37],[[]],[[],227],[[]],[[],228],[[]],[[14,34],188],[[],34],[[],34],[[],34],[[]],[[]],[[]],[227,9],[228,9],[[29,34],227],[[29,34],228],[[[32,[42]]],194],[[227,34],9],[[228,34],9],[[[23,[194]],[13,[34]]],188],[[[23,[194]],[13,[34]]],[[10,[188]]]],[[]],[[]],[[]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[[3,[48]],[3,[48]]],13],[[[3,[24]],[3,[24]]],[[13,[53]]]],[[[3,[48]],[3,[48]],54],13],[[[3,[24]],[3,[24]],54],[[13,[53]]]],0,0,0,0,[[44,44],44],[44,44],[[[104,[63]],162,[32,[44]]]],[[]],[[]],[[],230],[34],[34],[34],[230,44],[[]],[162,44],[162,44],[[],34],[[]],0,[[],78],[[],78],[[],79],[[162,[32,[44]]]],[[162,[32,[44]]]],[[162,[23,[44]]]],[[162,[23,[44]]]],[[]],[[230,[23,[54]]]],[[230,60]],[[230,63]],[[230,65]],[[230,44]],0,[[],44],[[44,44,44],4],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[[[232,[231]]],233],[[[232,[111]]]],[[[232,[234]]],60],[[[232,[111]]],111],[[],[[23,[54]]]],[[[232,[235]]],232],[[[232,[[23,[235]]]]],[[232,[23]]]],[[]],[[]],[[]],[[]],[[]],[[[232,[111]]],111],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[232,[[0,[184,111]]]]],[[13,[184]]]],[70,70],[236,236],[237,237],[[[232,[111]]],[[232,[111]]]],[155,155],[238,238],[[]],[[]],[[]],[[]],[[]],[[]],0,[[[232,[[0,[239,111]]]],[232,[[0,[239,111]]]]],159],[[],159],[155,151],0,0,0,[[]],[[],70],[[],[[232,[240]]]],[[],238],0,[34],[34],[34],[34],[[[232,[111]]],111],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[[232,[[0,[184,111]]]]],15],0,[[[232,[241]]],[[78,[[232,[[0,[241,45,46]]]],[232,[241]]]]]],[[[232,[241]]],[[232,[[0,[241,45,46]]]]]],[[[232,[111]]],[[242,[111]]]],[34],[34],[34],[34],[34],[[[232,[111]]]],[34],[34],[[70,70],4],[[[232,[89]],89],4],[[[232,[[0,[[243,[[0,[[243,[[0,[[243,[[0,[243,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[243,[[0,[[243,[[0,[[243,[[0,[243,111]]]],111]]]],111]]]],111]]]]],4],[[[232,[244]],244],4],[[155,155],4],[[238,238],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[[238,16],238],[[136,36],[[78,[153]]]],[[136,36],[[78,[153]]]],[[70,36],[[78,[153]]]],[[236,36],[[78,[153]]]],[[237,36],[[78,[153]]]],[[[232,[[0,[186,111]]]],36],[[78,[153]]]],[[[232,[111]],36],[[78,[153]]]],[[[232,[[0,[245,111]]]],36],[[78,[153]]]],[[155,36],[[78,[153]]]],[[238,36],[[78,[153]]]],[[]],[246,136],[179,136],[175,136],[[]],[[]],[[]],[[[96,[111,99]]],[[232,[111]]]],[[],232],[[[32,[99]]],[[232,[23]]]],[247,[[232,[247]]]],[248,[[232,[248]]]],[113],[249,[[232,[249]]]],[250,[[232,[247]]]],[[[86,[[0,[251,111]]]]],[[232,[[0,[251,111]]]]]],[15,[[232,[15]]]],[[[232,[15]]],[[232,[[23,[54]]]]]],[[[23,[87]]],[[232,[[23,[87]]]]]],[252,[[232,[249]]]],[253,[[232,[248]]]],[58,[[232,[15]]]],[[]],[[]],[[[32,[155,99]]],238],[[]],[[[13,[67]]]],[[[254,[63]],[254,[54]],[13,[67]]]],[[[254,[63]],[254,[54]],[13,[67]]]],[39,[[232,[23]]]],[[39,34],[[106,[63]]]],[39,[[106,[63]]]],[[39,151],[[106,[63]]]],[[39,34],[[106,[63]]]],[[],[[232,[111]]]],[15],[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],4],[34,13],[[[232,[111]]],[[13,[111]]]],[[[232,[111]]],111],[238,[[32,[15]]]],[34,13],[[31,34],42],[[],34],[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],4],[[],4],[[[232,[[0,[255,111]]]],129]],[[155,129]],[[]],[[238,15],[[13,[34]]]],[[[23,[65]]],14],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[232,13],[[[232,[111]]]],[[[232,[256]]],9],[[],4],[111,4],0,[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],4],0,[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],4],[[[232,[87]]],87],[[],9],[[],9],[[],9],0,0,[[],9],[[],9],0,[[[232,[[0,[[243,[[0,[[243,[[0,[[243,[[0,[243,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[243,[[0,[[243,[[0,[[243,[[0,[243,111]]]],111]]]],111]]]],111]]]]],4],[34,[[13,[34]]]],[15],[[],232],[[[154,[58]],151,4],155],[191,232],[[],[[232,[235]]]],[34,[[232,[[23,[235]]]]]],[[],[[232,[235]]]],[34,[[232,[[23,[235]]]]]],0,[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],[[13,[159]]]],[[],[[257,[232]]]],0,0,0,0,0,[[],9],[[],9],[185],[[[232,[[0,[184,111]]]],185]],[185],[[[232,[111]],[232,[111]]],4],[[53,70],[[10,[9]]]],[[34,4]],0,[[111,34,34],111],[[111,34,34],111],[136,[[13,[184]]]],[[[232,[[0,[184,111]]]]],[[13,[184]]]],[[[232,[[0,[258,111]]]],259],[[78,[260]]]],[[[232,[[0,[261,111]]]],262],[[78,[260]]]],[[[232,[[0,[261,111]]]]],[[78,[260]]]],[[[232,[[0,[258,111]]]]],[[78,[260]]]],[54,9],[[[232,[111]]],34],[[],9],[[],9],[[]],[[]],[[]],[[]],[[]],[[]],[[],58],[[],58],[[],78],[[],78],[[],78],[[],78],[[[232,[23]]],[[78,[[232,[220]]]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],[[78,[232,263]]]],[[],[[78,[[232,[235]],263]]]],[[],[[78,[[232,[235]],263]]]],[[],[[78,[[257,[232]],263]]]],[232,[[78,[232]]]],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[[232,[[264,[45]]]]],[[78,[45]]]],[[[232,[87]]],87],0,[54,9],[[[232,[[264,[45]]]],191],78],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[232,[111]]],34],[[155,[265,[58,58,99]]],155],[[238,[265,[58,58,99]]],238],[[136,16],136],0,0,0,[[[13,[67]]]],[[[254,[63]],[254,[54]],[13,[67]]]],[[[254,[63]],[254,[54]],[13,[67]]]],0,[[]],[[]],[[89,151],[[96,[89,99]]]],[34],[34],[34],[[266,[13,[151]]],[[78,[[106,[63]],175]]]],[[]],[[],34],[[]],[266,4],[34,266],[266,[[23,[63]]]],[[266,89]],[266],[[266,[23,[[96,[89,99]]]]]],[266],[[266,[13,[89]]]],[266,[[267,[63]]]],[[],78],[[],78],[[],79],[[]],0,[268,241],[268,[[96,[89,99]]]],[268,241],[[]],[[]],[268,151],[[],268],[34],[34],[34],[[268,36],[[78,[153]]]],[[]],[[],34],[[]],[268,34],[268],[[268,34]],[268],[[],78],[[],78],[[],79],[268,[[13,[269]]]],[[]],0,[[111,34,34],111],[[111,34,34],111],0,0,[[14,34,34],[[102,[63]]]],[[14,34,34],[[104,[63]]]],0,0,0,[1],[[]],[[]],[188,188],[[]],[[188,15],4],[[],188],[34],[34],[34],[[188,188],4],[[],4],[[],4],[[],4],[[188,36],37],[194,188],[[]],[39,188],[[188,15],[[13,[29]]]],[[188,34],13],[[188,34],13],[[188,15],[[13,[71]]]],[[188,15],13],[[],[[32,[15]]]],[188,[[32,[15]]]],[15,[[13,[34]]]],[[188,15],[[13,[34]]]],[[],34],[[188,34,158,29],[[10,[[13,[29]]]]]],[[]],[188],[188,4],[188,14],[188,[[0,[14,47]]]],[188,[[0,[14,47]]]],[188,[[0,[14,47]]]],[188,34],[[188,188]],[[],188],[[188,34,158,29],[[10,[188]]]],[[188,15],[[13,[29]]]],[[188,15,158],[[13,[158]]]],[[188,15,29],[[13,[29]]]],[[188,34,29],[[13,[29]]]],[[188,15],[[13,[29]]]],[[188,34],13],[188,238],[[]],[[188,188],[[10,[4]]]],[[],78],[[188,15],[[10,[29]]]],[[188,34],10],[[188,15],[[10,[71]]]],[[188,15],10],[[188,15],[[10,[29]]]],[15,[[10,[34]]]],[[],78],[[],79],[[]],[34,188],[[188,158,29],[[13,[29]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[[],9],[[],9],[9,[[10,[9]]]],[[9,[0,[6,52]]]],[[9,[0,[6,52]]]],[[9,9]],[[9,9]],[[9,9],[[10,[9]]]],[25,26],[25,26],[[],[[10,[26]]]],[[],[[10,[26]]]],0,[[9,34],31],[[],241],[[],241],[[],241],[[],241],[9,22],[256,[[3,[19]]]],[256,[[3,[19]]]],[9,256],[[],[[10,[34]]]],[[],[[10,[34]]]],[9,[[10,[34]]]],[9,[[10,[28]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[35]]]],[[]],[[]],[[]],[[]],[[]],[[]],[29,[[10,[9]]]],[[9,29],[[10,[9]]]],[[9,29],[[10,[9]]]],[9,[[10,[9]]]],[[],30],[[],[[32,[31]]]],[9,[[32,[31]]]],[9,9],[[9,42,42],[[10,[9]]]],[[9,42],[[10,[9]]]],[[9,42],[[10,[9]]]],[49,49],[9,9],[[],[[232,[256]]]],[[]],[[]],[[9,4],9],[[9,4],9],[[9,4],9],[[9,4],9],[[],9],[34],[34],[9],[34],[34],[34],[34],[[9,[0,[6,52]]]],[[9,[0,[6,52]]]],[[9,9]],[[9,9]],[34],[34],[34],[[],9],[[],9],[[],29],[[],29],[[49,49],4],[[9,9],4],[[9,15],[[10,[35]]]],[[9,121],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,15]],[[9,121]],[[],4],[[],4],[[],4],[9,34],[9,[[10,[9]]]],[[9,9],[[10,[9]]]],[[9,42,34],[[10,[9]]]],[9,[[10,[138]]]],[9,[[10,[139]]]],[[],[[86,[71]]]],[[],[[86,[71]]]],[[9,110],[[10,[9]]]],[35,[[10,[9]]]],[[9,35,4],[[10,[9]]]],[9,[[10,[9]]]],[[49,36],37],[[9,36],37],[[9,36],37],[9,58],[[]],[[]],[[]],[[[3,[19]]],9],[[15,[23,[42]],4],[[10,[9]]]],[[15,[23,[42]],29,4],[[10,[9]]]],[[15,[32,[31]],29],9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[[15,[32,[60]]],9],[[15,[32,[65]]],9],[[15,[32,[53]]],9],[[15,[32,[63]]],9],[[15,[32,[44]]],9],[[15,[32,[43]]],9],[[15,34,29],9],[34,[[10,[42]]]],[9,34],[34,42],[34,42],[[9,121],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,121],[[10,[35]]]],[[],4],[[9,[13,[34]]],9],[9,[[10,[168]]]],[9,[[10,[169]]]],[9,[[10,[170]]]],[9,[[10,[167]]]],[9,[[10,[26]]]],0,[9,[[10,[22]]]],[[],34],[[],34],[[],34],[[]],[[]],[[]],[9,161],[[]],[111,9],[9,9],[[],4],[[],4],[9,[[10,[35]]]],[9,[[10,[35]]]],[9,[[10,[35]]]],[9,[[10,[35]]]],[9,[[10,[35]]]],[9,[[10,[35]]]],[[],35],[[],35],[[],4],[[],4],[[],4],[[],49],[[],49],[9,270],[[],34],[34,9],[34,9],[9,[[10,[22]]]],[[9,9],[[10,[35]]]],[[9,121],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,121],[[10,[35]]]],[9,[[13,[52]]]],[[],9],[[],9],[[],[[13,[53]]]],[[],[[13,[53]]]],[9,9],[[],[[13,[53]]]],[[],[[13,[53]]]],[[],9],[[],9],[9,[[13,[52]]]],[[],9],[[],9],[[9,9]],[[9,9]],[[9,[0,[6,52]]]],[[9,[0,[6,52]]]],[[],34],[[],34],[[],[[10,[34]]]],[[],[[10,[34]]]],[[],15],[[15,[55,[[23,[[13,[[23,[54]]]]]]]]],9],[[15,[55,[[23,[63]]]]],9],[[15,[55,[[23,[9]]]]],9],[[15,[55,[[23,[[13,[4]]]]]]],9],[[15,[55,[[23,[[13,[63]]]]]]],9],[[15,[55,[[23,[[13,[[32,[54]]]]]]]]],9],[[15,201],9],[[15,[55,[[23,[15]]]]],9],[[15,[55,[[23,[4]]]]],9],[[15,[55,[[23,[42]]]]],9],[[15,[55,[[23,[60]]]]],9],[[15,[61,[63]]],9],[[15,[55,[[23,[[86,[[23,[54]]]]]]]]],9],[[15,[55,[[23,[[86,[15]]]]]]],9],[[15,[55,[[23,[[13,[53]]]]]]],9],[[15,[61,[60]]],9],[[15,9],9],[[15,[55,[[23,[[32,[54]]]]]]],9],[[15,[55,[[23,[65]]]]],9],[[15,[55,[[23,[[13,[58]]]]]]],9],[[15,[55,[[23,[58]]]]],9],[[15,[55,[[23,[[13,[[86,[15]]]]]]]]],9],[[15,[55,[[23,[[13,[[86,[[23,[54]]]]]]]]]]],9],[[15,[61,[65]]],9],[[15,[55,[[23,[[13,[43]]]]]]],9],[[15,[55,[[23,[[13,[60]]]]]]],9],[[15,[55,[[23,[43]]]]],9],[[15,[55,[[23,[[23,[54]]]]]]],9],[[15,[61,[44]]],9],[[15,[55,[[23,[[13,[9]]]]]]],9],[[15,[55,[[23,[[13,[44]]]]]]],9],[[15,[55,[[23,[[13,[65]]]]]]],9],[[15,[55,[[23,[53]]]]],9],[[15,[55,[[23,[[13,[15]]]]]]],9],[[15,[55,[[23,[44]]]]],9],[[15,29],9],[[34,34],9],[[15,34],9],[270,13],[[9,9],[[10,[35]]]],[[9,121],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,15]],[[9,121]],[[9,9],[[10,[35]]]],[[],34],0,[[],35],[[],35],[[],35],[[],35],[9,271],[9,9],[[53,70],[[10,[9]]]],[[53,70],[[10,[9]]]],[[],9],[[9,9]],[[9,[0,[6,52]]]],[[9,[0,[6,52]]]],[15],[[9,15],9],[[9,[23,[63]]],[[10,[9]]]],[[],9],[[9,65],[[10,[9]]]],[[9,53,4,4,[13,[44]]],[[10,[9]]]],[[9,34,4,4,[13,[44]]],[[10,[9]]]],[[9,9],4],[[9,9],4],[[9,49]],[63,9],[[]],[[]],[9],[[9,[13,[44]]],9],[270],[[63,34],9],[[9,4],9],[25,9],[25,9],[54,9],[54,9],[[9,34],[[10,[[86,[15]]]]]],[[9,29],[[10,[9]]]],[9,[[10,[137]]]],[[9,9]],[[9,9]],[[9,[0,[6,52]]]],[[9,[0,[6,52]]]],[9,[[13,[52]]]],[9,9],[[9,[13,[34]]],9],[26,[[10,[9]]]],[[9,34],9],[73,[[10,[9]]]],[73,9],[74,9],[[9,26,4],[[10,[9]]]],[26,[[10,[9]]]],[[9,[23,[72]]],[[10,[9]]]],[[9,26,4],[[10,[9]]]],[34,9],[34,9],[[9,34],31],[[]],[[]],[9,[[86,[9]]]],[[],58],[[9,9],[[10,[9]]]],[[],78],[[],78],[[],[[10,[9]]]],[[],[[10,[9]]]],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[9,[[10,[164]]]],[9,[[10,[165]]]],[9,[[10,[166]]]],[9,[[10,[163]]]],[[],[[10,[9]]]],[[],[[10,[9]]]],[9,[[10,[9]]]],[256,[[10,[[3,[19]]]]]],0,[9,[[10,[76]]]],[54,9],[54,9],[[]],[[]],[[]],[[9,35,9],[[10,[9]]]],0,0,0,0,[[9,9,18],9],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],0,0,0,[1],[[]],[[]],[272,272],[[]],[[],272],[34],[34],[34],[[272,272],4],[[],4],[[],4],[[],4],[[272,36],37],[[]],[[272,129]],[[],34],[[]],[[]],[[],78],[[],78],[[],79],[[]],0,0,[1],[273,9],[273,9],[[]],[[]],[273,273],[[]],[273,9],[34],[34],[34],[[]],[[],34],[[]],[9,273],[[273,31]],[[]],[[],78],[[],78],[[],79],[[]],[[273,31,16]],0,0,0,0,0,0,0,0,[1],[[],34],[[[23,[9]]],[[32,[9]]]],[[[32,[161]]],[[10,[161]]]],[39,[[10,[161]]]],[39,161],[[[3,[19]],[3,[19]]]],[[[3,[19]],[3,[19]],[3,[19]]]],[111,4],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[],[[96,[74,99]]]],[[],[[96,[73,99]]]],[34,[[78,[136]]]],[34,[[78,[136]]]],[[[274,[[0,[87,14]],87]]],[[274,[[0,[87,14]],87]]]],[[]],[[[3,[19]],[3,[19]]]],[[9,9]],[[[0,[111,41]]],275],[[[0,[111,41]]],276],[[[13,[67]],[13,[67]]],[[13,[67]]]],[[[13,[67]],[13,[67]]],[[13,[67]]]],[39,[[10,[161]]]],[39,161],[277],[34],[34],[278],[34],[34],[278],[34],[34],[34],[34],[34],[[9,15],10],[[[277,[9]],[277,[9]]],4],[[],4],[[],4],[[],4],0,[[111,18],13],[[14,18],13],[[]],[[]],[[]],[39,[[278,[35]]]],[39,[[278,[[3,[5]]]]]],[39],[39,[[278,[35]]]],[39,[[278,[[3,[5]]]]]],[40,[[278,[[3,[5]]]]]],[41,[[278,[[3,[5]]]]]],[[29,29],[[13,[29]]]],[[141,141],141],[[[277,[9]],129]],[[],34],[[],34],[[],34],[[]],[[]],[[]],[278],[[]],[[],32],[[],[[32,[[98,[97]],99]]]],[[],[[32,[58,99]]]],[[],278],[[14,34],[[274,[14]]]],[[[274,[14]]],13],[[[274,[[0,[14,33]]]]],13],0,[[[274,[14]]]],[[23,63,34],23],[[[3,[19]],34],[[10,[[32,[[3,[19]]]]]]]],[[161,34],[[10,[[32,[161]]]]]],[[]],[[111,34],[[274,[111]]]],[[],78],[[],78],[[],78],[[29,29],[[10,[29]]]],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[29,16]],[161,14],[[[23,[[55,[[23,[[0,[45,46,17]]]]]]]]],[[32,[[0,[45,46,17]]]]]],[9,[[32,[9]]]]],"c":[2741,2812,2873,2876,2877,2878,2879,2880,2885,2888,2893,2894,2930],"p":[[3,"Private"],[3,"ListType"],[3,"ChunkedArray"],[15,"bool"],[8,"PolarsNumericType"],[8,"Num"],[8,"ToPrimitive"],[8,"NumOpsDispatchInner"],[3,"Series"],[6,"PolarsResult"],[4,"GroupsProxy"],[3,"BooleanType"],[4,"Option"],[8,"Iterator"],[15,"str"],[8,"Fn"],[8,"Copy"],[8,"FnMut"],[8,"PolarsDataType"],[3,"BinaryType"],[3,"Utf8Type"],[6,"ListChunked"],[15,"slice"],[8,"PolarsIntegerType"],[3,"SortOptions"],[6,"IdxCa"],[3,"SortMultipleOptions"],[6,"BinaryChunked"],[4,"DataType"],[6,"ChunkIdIter"],[6,"ArrayRef"],[3,"Vec"],[8,"DoubleEndedIterator"],[15,"usize"],[6,"BooleanChunked"],[3,"Formatter"],[6,"Result"],[3,"PrimitiveArray"],[8,"IntoIterator"],[8,"IntoParallelIterator"],[8,"TrustedLen"],[4,"AnyValue"],[15,"f32"],[15,"u64"],[8,"Send"],[8,"Sync"],[8,"ExactSizeIterator"],[8,"PolarsFloatType"],[4,"IsSorted"],[3,"Iter"],[3,"Map"],[8,"NumCast"],[15,"f64"],[15,"u8"],[8,"AsRef"],[3,"UInt64Type"],[3,"Float64Type"],[3,"String"],[3,"Float32Type"],[15,"i32"],[3,"Range"],[3,"Int32Type"],[15,"i64"],[3,"Int64Type"],[15,"u32"],[3,"UInt32Type"],[3,"Bitmap"],[8,"ParallelIterator"],[8,"IndexedParallelIterator"],[4,"QuantileInterpolOptions"],[3,"Field"],[6,"IdxSize"],[8,"TakeIterator"],[8,"TakeIteratorNulls"],[4,"TakeIdx"],[6,"Utf8Chunked"],[4,"Either"],[4,"Result"],[3,"TypeId"],[3,"BinaryChunkedBuilder"],[3,"BinaryChunkedBuilderCow"],[3,"Utf8ChunkedBuilderCow"],[3,"BooleanChunkedBuilder"],[3,"PrimitiveChunkedBuilder"],[3,"Utf8ChunkedBuilder"],[4,"Cow"],[8,"Clone"],[3,"AnonymousListBuilder"],[8,"Array"],[3,"AnonymousOwnedListBuilder"],[3,"ListBooleanChunkedBuilder"],[3,"ListPrimitiveChunkedBuilder"],[3,"ListUtf8ChunkedBuilder"],[3,"ListBinaryChunkedBuilder"],[8,"ListBuilderTrait"],[3,"Box"],[3,"LazyCompact"],[3,"SmartString"],[3,"Global"],[3,"BooleanArray"],[3,"BoolIterNoNull"],[3,"Utf8Array"],[3,"Utf8IterNoNull"],[3,"BinaryArray"],[3,"BinaryIterNoNull"],[3,"ListArray"],[3,"ListIterNoNull"],[3,"StructIter"],[3,"SomeIterator"],[4,"FillNullStrategy"],[8,"Sized"],[6,"Dummy"],[15,"never"],[8,"TakeRandom"],[4,"TakeRandBranch3"],[4,"TakeRandBranch2"],[3,"Utf8TakeRandom"],[3,"Utf8TakeRandomSingleChunk"],[3,"BinaryTakeRandom"],[3,"BinaryTakeRandomSingleChunk"],[8,"NumericNative"],[3,"NumTakeRandomChunked"],[3,"NumTakeRandomCont"],[3,"NumTakeRandomSingleChunk"],[3,"BoolTakeRandom"],[3,"BoolTakeRandomSingleChunk"],[3,"ListTakeRandom"],[3,"ListTakeRandomSingleChunk"],[8,"Hasher"],[8,"IsFloat"],[8,"PartialOrd"],[3,"RowsEncoded"],[3,"NaiveDateTime"],[3,"CloudOptions"],[4,"CloudType"],[4,"PolarsError"],[3,"StructChunked"],[6,"Float32Chunked"],[6,"Float64Chunked"],[3,"Logical"],[4,"TimeUnit"],[3,"UInt8Type"],[3,"UInt16Type"],[3,"Int8Type"],[3,"Int16Type"],[3,"DateType"],[3,"DatetimeType"],[3,"DurationType"],[3,"CategoricalType"],[3,"TimeType"],[4,"ArrowDataType"],[4,"ArrowTimeUnit"],[3,"Error"],[8,"Into"],[3,"ArrowField"],[4,"PrimitiveType"],[4,"IntegerType"],[6,"String"],[4,"Ordering"],[4,"PhysicalType"],[3,"DataFrame"],[3,"RandomState"],[6,"UInt8Chunked"],[6,"UInt16Chunked"],[6,"UInt32Chunked"],[6,"UInt64Chunked"],[6,"Int8Chunked"],[6,"Int16Chunked"],[6,"Int32Chunked"],[6,"Int64Chunked"],[6,"PlHashMap"],[6,"PlIdHashMap"],[6,"PlHashSet"],[3,"ErrString"],[4,"ArrowError"],[4,"OutOfSpecKind"],[3,"FromUtf8Error"],[3,"TryReserveError"],[3,"Error"],[4,"Error"],[3,"Error"],[3,"Utf8Error"],[3,"Utf8Error"],[8,"Error"],[3,"Demand"],[8,"Display"],[4,"FloatFmt"],[3,"Schema"],[6,"LeftJoinIds"],[3,"JoinArgs"],[8,"FnOnce"],[4,"NullStrategy"],[4,"UniqueKeepStrategy"],[3,"Row"],[3,"GroupBy"],[3,"RangeToInclusive"],[3,"RangeInclusive"],[3,"RangeTo"],[3,"RangeFrom"],[3,"RangeFull"],[8,"IntoSeries"],[3,"RecordBatchIter"],[3,"PhysRecordBatchIter"],[8,"IntoVec"],[3,"MeltArgs"],[8,"RangeBounds"],[6,"SchemaRef"],[3,"StructArray"],[3,"GroupsIdx"],[4,"GroupByMethod"],[3,"SlicedGroups"],[3,"GroupsProxyParIter"],[8,"UnindexedConsumer"],[4,"GroupsIndicator"],[6,"IdxItem"],[3,"Copied"],[3,"Zip"],[3,"GroupsProxyIter"],[6,"GroupsSlice"],[15,"array"],[8,"NativeType"],[6,"DynArgs"],[6,"ChunkId"],[4,"JoinValidation"],[4,"JoinType"],[6,"ChunkJoinOptIds"],[4,"AnyValueBuffer"],[4,"AnyValueBufferTrusted"],[8,"Borrow"],[3,"IdHasher"],[8,"AsFd"],[3,"Arc"],[3,"BorrowedFd"],[8,"AsRawFd"],[19,"MaybeUninit"],[3,"RollingVarParams"],[3,"RollingQuantileParams"],[3,"ArrowSchema"],[8,"Ord"],[8,"Default"],[8,"Any"],[3,"Weak"],[8,"PartialEq"],[8,"Scalar"],[8,"Debug"],[4,"Error"],[3,"OsStr"],[3,"Path"],[3,"CStr"],[3,"OsString"],[8,"ToOwned"],[3,"CString"],[3,"PathBuf"],[3,"Buffer"],[8,"Hash"],[8,"SeriesTrait"],[3,"Pin"],[8,"LocalSpawn"],[3,"LocalFutureObj"],[3,"SpawnError"],[8,"Spawn"],[3,"FutureObj"],[3,"AllocError"],[3,"RwLock"],[3,"BTreeMap"],[3,"AnonymousBuilder"],[3,"Offsets"],[3,"MutableNullArray"],[3,"MutableBitmap"],[3,"SeriesIter"],[6,"SeriesPhysIter"],[4,"NullBehavior"],[3,"UnstableSeries"],[3,"TrustMyLength"],[8,"FromIteratorReversed"],[8,"FromTrustedLenIterator"],[3,"Wrap"],[3,"NoNull"],[3,"RevMapping"],[8,"ArrayArithmetics"],[8,"ChunkedBuilder"],[8,"NewChunkedArray"],[8,"IntoTakeRandom"],[8,"TakeRandomUtf8"],[8,"ChunkCompare"],[8,"ChunkApply"],[8,"ChunkApplyKernel"],[8,"ChunkSort"],[8,"ChunkUnique"],[3,"TakeRandomBitmap"],[8,"ChunkCast"],[8,"ChunkCumAgg"],[8,"ChunkExplode"],[8,"ChunkFillNullValue"],[8,"ChunkFilter"],[8,"ChunkFull"],[8,"ChunkFullNull"],[8,"ChunkAnyValue"],[8,"IsIn"],[8,"ChunkAgg"],[8,"ChunkQuantile"],[8,"ChunkExpandAtIndex"],[8,"ChunkPeaks"],[8,"ChunkReverse"],[8,"ChunkSet"],[8,"ChunkShift"],[8,"ChunkShiftFill"],[8,"ChunkVar"],[8,"ChunkTake"],[8,"ChunkBytes"],[8,"ChunkZip"],[8,"InitHashMaps"],[8,"AsRefDataType"],[8,"LogicalType"],[8,"GetAnyValue"],[6,"PlIndexMap"],[6,"PlIndexSet"],[8,"IntoGroupsProxy"],[13,"Slice"],[8,"AggList"],[8,"PhysicalAggExpr"],[8,"FxHash"],[8,"VecHash"],[8,"AsU64"],[8,"ArrowGetItem"],[8,"MutableBitmapExtension"],[8,"FromData"],[8,"FromDataUtf8"],[8,"FromDataBinary"],[8,"ListFromIter"],[8,"NamedFromOwned"],[8,"ValueSize"],[8,"PolarsArray"],[8,"ChunkAggSeries"],[8,"QuantileAggSeries"],[8,"IndexToUsize"],[8,"NamedFrom"],[8,"SlicedArray"],[8,"VarAggSeries"],[8,"Utf8FromIter"],[8,"BinaryFromIter"],[8,"IndexOfSchema"],[8,"LhsNumOps"],[8,"NumOpsDispatch"],[8,"CustomIterTools"]]},\ -"polars_error":{"doc":"","t":"ENNNNDNNNNNNNNNNEGNNNNNLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLFLLLFOOOOOLLFLFLLLLLLLLLLLLL","n":["ArrowError","ArrowError","ColumnNotFound","ComputeError","Duplicate","ErrString","External","ExternalFormat","InvalidArgumentError","InvalidOperation","Io","Io","NoData","NotYetImplemented","OutOfSpec","Overflow","PolarsError","PolarsResult","SchemaFieldNotFound","SchemaMismatch","ShapeMismatch","StringCacheMismatch","StructFieldNotFound","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","deref","feature_gated","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_external_error","get_warning_function","into","into","into","map_err","polars_bail","polars_ensure","polars_err","polars_warn","polars_warn","provide","provide","set_warning_function","source","to_compute_err","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","wrap_msg"],"q":[[0,"polars_error"]],"d":["Enum with all errors in this crate.","","","","","","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","","","Wrapper for IO errors","","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","Returns the argument unchanged.","","","","Wraps an external error in an Error.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Set the function that will be called by the polars_warn! …","","","","","","","","","","","","","","",""],"i":[0,4,4,4,4,0,5,5,5,4,4,5,4,5,5,5,0,0,4,4,4,4,4,1,4,5,1,4,5,1,0,1,1,4,4,5,5,1,1,4,4,4,4,5,5,5,5,5,5,5,5,5,5,0,1,4,5,0,0,0,0,0,0,4,5,0,4,0,1,4,5,1,4,5,1,4,5,1,4,5,4],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[1],0,[[1,2],3],[[1,2],3],[[4,2],3],[[4,2],3],[[5,2],[[7,[6]]]],[[5,2],[[7,[6]]]],[[]],[[[10,[[9,[8]]]]],1],[[]],[5,4],[11,4],[12,4],[11,5],[13,5],[14,5],[15,5],[16,5],[[]],[17,5],[18,5],[19,5],[[[0,[20,21,22]]],5],[[]],[[]],[[]],[[]],[20,4],0,0,0,0,0,[23],[23],[[]],[4,[[24,[20]]]],[25,4],[[],26],[[],26],[[],26],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],27],[[],27],[[],27],[[4,28],4]],"c":[],"p":[[3,"ErrString"],[3,"Formatter"],[6,"Result"],[4,"PolarsError"],[4,"ArrowError"],[3,"Error"],[4,"Result"],[15,"str"],[4,"Cow"],[8,"Into"],[3,"Error"],[4,"Error"],[3,"Utf8Error"],[3,"Error"],[3,"Utf8Error"],[4,"Error"],[3,"TryReserveError"],[4,"OutOfSpecKind"],[3,"FromUtf8Error"],[8,"Error"],[8,"Send"],[8,"Sync"],[3,"Demand"],[4,"Option"],[8,"Display"],[3,"String"],[3,"TypeId"],[8,"Fn"]]},\ -"polars_io":{"doc":"","t":"IDIIILLLLLKALLLLLLLLAKKKLLLLAFAAMAKKKMAAALLLLLLNNEDDNNENLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLFFFFDDLLLLFMMLLLLLLLMMMMMMLLLLDEDDDNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGNENDDLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLADIDQIDDQDDDDDDDDDLKLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFNNINELLLLLLLLLLLLLLLLADDLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAQIDQDLKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNDDNDDNNDDNNNEEDDNNNNDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIILKKCCF","n":["ArrowReader","RowCount","SerReader","SerWriter","WriterFactory","__clone_box","borrow","borrow_mut","clone","clone_into","create_writer","csv","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","equivalent","export","extension","finish","finish","fmt","from","init","into","ipc","is_cloud_url","json","mmap","name","ndjson","new","new","next_record_batch","offset","parquet","predicates","prelude","set_rechunk","to_owned","try_from","try_into","type_id","vzip","AllColumns","AllColumnsSingle","CsvEncoding","CsvReader","CsvWriter","LossyUtf8","Named","NullValues","Utf8","__clone_box","__clone_box","batched_borrowed_mmap","batched_borrowed_read","batched_mmap","batched_read","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finish","finish","fmt","fmt","from","from","from","from","from_path","has_header","has_header","infer_schema","init","init","init","init","into","into","into","into","low_memory","new","new","read_impl","sample_size","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","utils","vzip","vzip","vzip","vzip","with_batch_size","with_chunk_size","with_columns","with_comment_char","with_date_format","with_datetime_format","with_delimiter","with_delimiter","with_dtypes","with_dtypes_slice","with_encoding","with_end_of_line_char","with_float_precision","with_ignore_errors","with_missing_is_null","with_n_rows","with_n_threads","with_null_value","with_null_values","with_path","with_predicate","with_projection","with_quote_char","with_quoting_char","with_rechunk","with_row_count","with_schema","with_skip_rows","with_skip_rows_after_header","with_time_format","with_try_parse_dates","BatchedCsvReaderMmap","BatchedCsvReaderRead","OwnedBatchedCsvReader","OwnedBatchedCsvReaderMmap","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","from","from","from","from","init","init","init","init","into","into","into","into","next_batches","next_batches","next_batches","next_batches","to_batched_owned_mmap","to_batched_owned_read","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","get_reader_bytes","infer_file_schema","infer_file_schema_inner","is_compressed","ParquetStatistics","Statistics","borrow","borrow_mut","deref","deref_mut","deserialize","distinct_count","distinct_count","drop","eq","fmt","from","from","init","into","max_value","max_value","min_value","min_value","null_count","null_count","try_from","try_into","type_id","vzip","BatchedWriter","IpcCompression","IpcReader","IpcWriter","IpcWriterOption","LZ4","ZSTD","__clone_box","arrow_schema","batched","batched_async","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","create_writer","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","extension","finish","finish","finish","finish_with_scan_ops","fmt","from","from","from","from","from","hash","init","init","init","init","init","into","into","into","into","into","memory_mapped","new","new","new","new_async","schema","set_rechunk","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","with_columns","with_compression","with_compression","with_extension","with_n_rows","with_projection","with_row_count","write_batch","ArrowResult","Json","JsonFormat","JsonLines","JsonReader","JsonWriter","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","finish","finish","from","from","from","infer_schema_len","init","init","init","into","into","into","json","new","new","set_rechunk","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_batch_size","with_ignore_errors","with_json_format","with_json_format","with_projection","with_schema","with_schema_overwrite","write","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","RecordSerializer","Serializer","Skip","SkipWhile","Take","TakeWhile","__clone_box","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance_back","advance_back","advance_back","advance_back","advance_back","advance_back","all","any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","clone","clone_into","convert","count","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","filter","find","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get","get","get","get","get","get","get","get","get","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","map","map_err","map_ref","new","new","next","next","next","next_back","next_back","nth","position","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","Borrowed","Mapped","MmapBytesReader","Owned","ReaderBytes","borrow","borrow_mut","deref","deref","deref_mut","drop","from","from","init","into","to_bytes","to_file","try_from","try_into","type_id","vzip","core","JsonLineReader","StructArray","__clone_box","arced","arrow_ndjson","as_any","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","boxed","clone","clone_into","data_type","deref","deref","deref_mut","deref_mut","drop","drop","eq","eq","fields","finish","fmt","from","from","from","from","from_path","get_fields","infer_schema_len","init","init","into","into","into_data","into_iter","iter","len","low_memory","new","new","new_empty","new_null","set_validity","slice","slice","slice_typed","slice_typed_unchecked","slice_unchecked","slice_unchecked","sliced","sliced_unchecked","to_boxed","to_owned","try_from","try_from","try_into","try_into","try_new","type_id","type_id","validity","validity","values","values_iter","vzip","vzip","with_chunk_size","with_n_rows","with_n_threads","with_path","with_rechunk","with_schema","with_schema_overwrite","with_validity","with_validity","write","Error","FallibleStreamingIterator","FileWriter","Item","Serializer","__clone_box","advance","advance","all","any","borrow","borrow","borrow_mut","borrow_mut","by_ref","clone","clone_into","count","deref","deref","deref_mut","deref_mut","drop","drop","filter","find","fmt","for_each","from","from","fuse","get","get","init","init","into","into","into_inner","into_iter","map","map_err","map_ref","new","new","next","next","nth","position","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Auto","BatchedParquetReader","BatchedWriter","Brotli","BrotliLevel","BrotliLevel","Columns","Gzip","GzipLevel","GzipLevel","Lz4Raw","Lzo","None","ParallelStrategy","ParquetCompression","ParquetReader","ParquetWriter","RowGroups","Snappy","Uncompressed","Zstd","ZstdLevel","ZstdLevel","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_finish_with_scan_ops","batched","batched","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finish","finish","finish","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","iter","new","new","new","next_batches","num_rows","predicates","read_parallel","schema","set_low_memory","set_parallel","set_rechunk","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","use_statistics","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_columns","with_compression","with_data_pagesize_limit","with_n_rows","with_projection","with_row_count","with_row_group_size","with_statistics","write_batch","BatchStats","ColumnStats","borrow","borrow","borrow_mut","borrow_mut","deref","deref","deref_mut","deref_mut","drop","drop","dtype","fmt","from","from","get_stats","init","init","into","into","null_count","schema","to_max","to_min","to_min_max","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","PhysicalIoExpr","StatsEvaluator","as_stats_evaluator","evaluate","should_read","SerReader","SerWriter","resolve_homedir"],"q":[[0,"polars_io"],[47,"polars_io::csv"],[171,"polars_io::csv::read_impl"],[231,"polars_io::csv::utils"],[235,"polars_io::export"],[261,"polars_io::ipc"],[365,"polars_io::json"],[421,"polars_io::json::json"],[422,"polars_io::json::json::write"],[673,"polars_io::mmap"],[694,"polars_io::ndjson"],[695,"polars_io::ndjson::core"],[774,"polars_io::ndjson::core::arrow_ndjson"],[775,"polars_io::ndjson::core::arrow_ndjson::write"],[837,"polars_io::parquet"],[1055,"polars_io::parquet::predicates"],[1089,"polars_io::predicates"],[1094,"polars_io::prelude"]],"d":["","","","","","","","","","","","(De)serializing CSV files","","","","","","","","","","","Take the SerReader and return a parsed DataFrame.","","","Returns the argument unchanged.","","Calls U::from(self).","","Check if the path is a cloud url.","(De)serialize JSON files.","","","","Create a new instance of the [SerReader]","","","","Reading Apache parquet files.","","","Make sure that all columns are contiguous in memory by …","","","","","","Multiple values that are used for all columns","A single value that’s used for all columns","","Create a new DataFrame by reading a csv file.","Write a DataFrame to csv.","Utf8 encoding and unknown bytes are replaced with �","Tuples that map column names to null value of that column","","Utf8 encoding","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Read the file and create the DataFrame.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","This is the recommended way to create a csv reader as this …","Set whether the CSV file has headers","Set whether to write headers","Set the CSV reader to infer the schema of the file","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Reduce memory consumption at the expense of performance","Create a new CsvReader from a file/ stream","","","Sets the size of the sample taken from the CSV file. The …","","","","","","","","","","","","","","","","","","","","","Sets the chunk size used by the parser. This influences …","Columns to select/ project","Set the comment character. Lines starting with this …","Set the CSV file’s date format","Set the CSV file’s datetime format","Set the CSV file’s column delimiter as a byte character","Set the CSV file’s column delimiter as a byte character","Overwrite the schema with the dtypes in this given Schema. …","Overwrite the dtypes in the schema in the order of the …","Set CsvEncoding","","Set the CSV file’s float precision","Continue with next batch when a ParserError is encountered.","Treat missing fields as null.","Try to stop parsing when n rows are parsed. During …","Set the number of threads used in CSV reading. The default …","Set the CSV file’s null value representation","Set values that will be interpreted as missing/ null. Note …","The preferred way to initialize this builder. This allows …","","Set the reader’s column projection. This counts from 0, …","Set the char used as quote char. The default is b'"'. If …","Set the single byte character used for quoting","Rechunk the DataFrame to contiguous memory after the CSV …","Add a row_count column.","Set the CSV file’s schema. This only accepts datatypes …","Skip the first n rows during parsing. The header will be …","Skip these rows after the header","Set the CSV file’s time format","Automatically try to parse dates/ datetimes and time. If …","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","Infer the schema of a CSV file by reading through the …","","check if csv file is compressed","Arrow-deserialized parquet Statistics of a file","Arrow-deserialized parquet Statistics of a file","","","","","Deserializes the statistics in the column chunks from all …","number of dictinct values. This is a UInt64Array for …","number of dictinct values. This is a UInt64Array for …","","","","Returns the argument unchanged.","","","Calls U::from(self).","Maximum","Maximum","Minimum","Minimum","number of nulls. This is a UInt64Array for non-nested types","number of nulls. This is a UInt64Array for non-nested types","","","","","","Compression codec","Read Arrows IPC format into a DataFrame","Write a DataFrame to Arrow’s IPC format","","LZ4 (framed)","ZSTD","","Get arrow schema of the Ipc File, this is faster than …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Writes the footer of the IPC file.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Set if the file is to be memory_mapped. Only works with …","","","","","Get schema of the Ipc File","","","","","","","","","","","","","","","","","","","","","","","Columns to select/ project","Set the compression used. Defaults to None.","Set the compression used. Defaults to None.","Set the extension. Defaults to “.ipc”.","Stop reading when n rows are read.","Set the reader’s column projection. This counts from 0, …","Add a row_count column.","Write a batch to the parquet writer.","Typedef for a std::result::Result of an Error.","A single JSON array containing each DataFrame row as an …","The format to use to write the DataFrame to JSON: Json (a …","Each DataFrame row is serialized as a JSON object on a …","Reads JSON in one of the formats in JsonFormat into a …","Writes a DataFrame to JSON.","","","","","","","","","","","","","","","","","Take the SerReader and return a parsed DataFrame.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Set the JSON reader to infer the schema of the file. …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Convert data between the Arrow memory format and JSON …","Create a new JsonWriter writing to buffer with format …","","","","","","","","","","","","","","","Set the batch size (number of records to load at one time)","Return a null if an error occurs during parsing.","","","Set the reader’s column projection: the names of the …","Set the JSON file’s schema","Overwrite parts of the inferred schema.","APIs to write to JSON","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","FallibleStreamingIterator that serializes a Chunk into …","FallibleStreamingIterator that serializes an Array to …","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","","Advances the iterator to the next position.","","","","","","","","","","","","","","Advances the state of the iterator to the next item from …","","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","","","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new RecordSerializer.","Creates a new Serializer.","Advances the iterator, returning the next element.","","","Advances the back of the iterator, returning the last …","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","","","","","","","","","","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Writes valid JSON from an iterator of (assumed …","","","Trait used to get a hold to file handler or to the …","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","A StructArray is a nested Array with an optional validity …","","Arcs this array into a std::sync::Arc<dyn Array>.","APIs to read from and write to NDJSON","","","","","","","Boxes this array into a Box<dyn Array>.","","","","","","","","","","","","Returns the fields of this StructArray.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","This is the recommended way to create a json reader as …","Returns the fields the DataType::Struct.","","","","Calls U::from(self).","Calls U::from(self).","Deconstructs the StructArray into its individual …","","Returns an iterator of Option<Box<dyn Array>>","","Reduce memory consumption at the expense of performance","Create a new JsonLineReader from a file/ stream","Returns a new StructArray","Creates an empty StructArray.","Creates a null StructArray of length length.","Sets the validity of this array.","","Slices this StructArray.","","","Slices this StructArray.","","Returns this array sliced.","Returns this array sliced.","","","","","","","Returns a new StructArray.","","","The optional validity.","","Returns the values of this StructArray.","Returns an iterator of Box<dyn Array>","","","Sets the chunk size used by the parser. This influences …","","","","","","","","Returns this array with a new validity.","APIs to serialize and write to NDJSON.","The error type of iteration.","A fallible, streaming iterator.","An iterator adapter that receives an implementer of Write …","The type being iterated over.","FallibleStreamingIterator that serializes an Array to …","","Advances the iterator to the next position.","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","Borrows an iterator, rather than consuming it.","","","Returns the number of remaining elements in the iterator.","","","","","","","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","Calls U::from(self).","Calls U::from(self).","Returns the inner content of this iterator","","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new FileWriter.","Creates a new Serializer.","Advances the iterator, returning the next element.","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","Automatically determine over which unit to parallelize …","","","","","","Parallelize over the columns","","","","","","Don’t parallelize","","","Read Apache parquet format into a DataFrame.","Write a DataFrame to parquet format","Parallelize over the row groups","","","","Represents a valid zstd compression level.","Represents a valid zstd compression level.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Write the given DataFrame in the the writer W. Returns the …","Writes the footer of the parquet file. Returns the total …","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Turn the batched reader into an iterator.","Create a new ParquetReader from an existing Reader.","","Create a new writer","","Number of rows in the parquet file.","","Read the parquet file in parallel (default). The single …","Schema of the file.","Try to reduce memory pressure at the expense of …","Serialize columns in parallel","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Use statistics in the parquet to determine if pages can be …","","","","","","","","","","Columns to select/ project","Set the compression used. Defaults to Zstd.","Sets the maximum bytes size of a data page. If None will …","Stop parsing when n rows are parsed. By settings this …","Set the reader’s column projection. This counts from 0, …","Add a row_count column.","Set the row group size (in number of rows) during writing. …","Compute and write statistic","Write a batch to the parquet writer.","A collection of column stats with a known schema.","The statistics for a column in a Parquet file they …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Can take &dyn Statistics and determine of a file should be …","Take a DataFrame and produces a boolean Series that serves …","","","",""],"i":[0,0,0,0,0,2,2,2,2,2,117,0,2,2,2,2,2,2,2,2,0,117,118,4,2,2,2,2,0,0,0,0,2,0,118,4,119,2,0,0,0,118,2,2,2,2,2,29,29,0,0,0,28,29,0,28,28,29,22,22,22,22,22,30,28,29,22,30,28,29,28,29,28,29,22,30,28,29,22,30,28,29,22,30,28,29,28,29,28,28,28,28,29,29,29,29,22,30,28,29,22,30,28,29,22,22,30,22,22,30,28,29,22,30,28,29,22,22,30,0,22,28,29,22,30,28,29,22,30,28,29,22,30,28,29,0,22,30,28,29,30,22,22,22,30,30,22,30,22,22,22,22,30,22,22,22,22,30,22,22,22,22,22,30,22,22,22,22,22,30,22,0,0,0,0,23,26,24,27,23,26,24,27,23,26,24,27,23,26,24,27,23,26,26,24,27,27,23,26,24,27,23,26,24,27,23,26,24,27,23,26,24,27,0,0,23,26,24,27,23,26,24,27,23,26,24,27,23,26,24,27,0,0,0,0,0,0,45,45,45,45,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,56,56,56,49,51,51,49,51,52,57,56,49,51,52,57,56,56,56,57,57,56,49,51,52,57,56,49,51,52,57,56,49,51,52,57,56,56,56,56,56,56,57,49,51,52,49,56,49,51,52,57,56,56,49,51,52,57,56,49,51,52,57,56,49,49,51,57,51,49,49,56,49,51,52,57,56,49,51,52,57,56,49,51,52,57,56,49,51,52,57,56,49,51,57,57,49,49,49,52,0,61,0,61,0,0,61,59,60,61,59,60,61,59,60,61,59,60,61,59,60,59,60,61,59,60,60,61,59,60,61,59,60,0,59,60,60,61,59,60,61,59,60,61,59,60,61,59,60,60,60,59,60,60,60,60,0,0,0,0,65,0,0,0,65,0,0,0,0,0,0,0,0,0,79,65,63,64,67,68,69,71,72,73,74,75,76,77,79,81,63,64,69,71,72,65,65,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,65,79,79,0,65,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,0,65,65,79,65,63,64,67,68,69,71,72,73,74,75,76,77,79,65,65,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,65,65,65,77,79,65,68,72,81,72,65,65,65,63,64,67,68,69,71,72,73,74,75,76,65,65,65,65,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,0,41,41,0,41,0,41,41,41,41,41,41,41,41,41,41,21,21,41,41,41,41,0,0,0,86,86,0,86,86,89,86,89,86,86,86,86,86,89,86,89,86,89,86,86,86,86,89,86,89,86,86,86,89,86,89,89,86,89,86,86,86,86,86,89,89,86,86,86,86,86,86,86,86,86,86,86,86,86,86,89,86,89,86,86,89,86,86,86,86,86,89,86,89,89,89,89,89,89,89,86,86,0,65,0,0,65,0,97,65,97,65,65,98,97,98,97,65,97,97,65,98,97,98,97,98,97,65,65,97,65,98,97,65,65,97,98,97,98,97,98,98,65,65,65,98,97,65,98,65,65,65,65,65,65,65,97,98,97,98,97,98,97,98,97,103,0,0,107,0,0,103,107,0,0,107,107,103,0,0,0,0,103,107,107,107,0,0,103,104,105,106,107,99,99,101,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,103,104,105,106,107,103,104,105,106,107,103,107,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,103,104,105,106,107,103,103,103,103,104,104,104,104,105,105,105,105,106,106,106,106,107,107,107,107,99,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,104,105,106,107,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,100,99,100,101,100,99,0,99,99,99,101,99,103,104,105,106,107,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,104,105,106,99,100,101,102,103,104,105,106,107,99,99,100,101,102,103,104,105,106,107,99,101,101,99,99,99,101,101,102,0,0,113,112,113,112,113,112,113,112,113,112,112,112,113,112,113,113,112,113,112,112,113,112,112,112,113,112,113,112,113,112,113,112,0,0,38,38,116,0,0,0],"f":[0,0,0,0,0,[1],[[]],[[]],[2,2],[[]],[3,[[5,[4]]]],0,[6],[6],[6],[[2,2],7],[[],7],[[],7],[[],7],[[],7],0,[[],8],[[],[[10,[9]]]],[9,10],[[2,11],12],[[]],[[],6],[[]],0,[[[14,[13]]],7],0,0,0,0,[[]],[[],15],[[],[[18,[[17,[16]]]]]],0,0,0,0,[[15,7],15],[[]],[[],19],[[],19],[[],20],[[]],0,0,0,0,0,0,0,0,0,[1],[1],[[[22,[21]]],[[10,[23]]]],[[[22,[21]]],[[10,[24]]]],[[[22,[[5,[21]]]],[17,[25]]],[[10,[26]]]],[[[22,[[5,[21]]]],[17,[25]]],[[10,[27]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[28,28],[29,29],[[]],[[]],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[28,28],7],[[29,29],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[[22,[21]]],[[10,[9]]]],[[[30,[3]],9],10],[[28,11],12],[[29,11],12],[[]],[[]],[[]],[[]],[[[31,[8]]],[[10,[[22,[32]]]]]],[[[22,[21]],7],[[22,[21]]]],[[[30,[3]],7],[[30,[3]]]],[[[22,[21]],[17,[6]]],[[22,[21]]]],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[[22,[21]],7],[[22,[21]]]],[21,[[22,[21]]]],[3,[[30,[3]]]],0,[[[22,[21]],6],[[22,[21]]]],[[]],[[]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[],20],0,[[]],[[]],[[]],[[]],[[[30,[3]],6],[[30,[3]]]],[[[22,[21]],6],[[22,[21]]]],[[[22,[21]],[17,[[34,[33]]]]],[[22,[21]]]],[[[22,[21]],[17,[35]]],[[22,[21]]]],[[[30,[3]],[17,[33]]],[[30,[3]]]],[[[30,[3]],[17,[33]]],[[30,[3]]]],[[[22,[21]],35],[[22,[21]]]],[[[30,[3]],35],[[30,[3]]]],[[[22,[21]],[17,[25]]],[[22,[21]]]],[[[22,[21]],[17,[[37,[36]]]]],[[22,[21]]]],[[[22,[21]],28],[[22,[21]]]],[[[22,[21]],35],[[22,[21]]]],[[[30,[3]],[17,[6]]],[[30,[3]]]],[[[22,[21]],7],[[22,[21]]]],[[[22,[21]],7],[[22,[21]]]],[[[22,[21]],[17,[6]]],[[22,[21]]]],[[[22,[21]],[17,[6]]],[[22,[21]]]],[[[30,[3]],33],[[30,[3]]]],[[[22,[21]],[17,[29]]],[[22,[21]]]],[[[22,[21]],[17,[[31,[8]]]]],[[22,[21]]]],[[[22,[21]],[17,[[39,[38]]]]],[[22,[21]]]],[[[22,[21]],[17,[[34,[6]]]]],[[22,[21]]]],[[[22,[21]],[17,[35]]],[[22,[21]]]],[[[30,[3]],35],[[30,[3]]]],[[[22,[21]],7],[[22,[21]]]],[[[22,[21]],[17,[2]]],[[22,[21]]]],[[[22,[21]],25],[[22,[21]]]],[[[22,[21]],6],[[22,[21]]]],[[[22,[21]],6],[[22,[21]]]],[[[30,[3]],[17,[33]]],[[30,[3]]]],[[[22,[21]],7],[[22,[21]]]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[26],[6],[6],[27],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[23,6],[[10,[[17,[[34,[9]]]]]]]],[[26,6],[[10,[[17,[[34,[9]]]]]]]],[[24,6],[[10,[[17,[[34,[9]]]]]]]],[[27,6],[[10,[[17,[[34,[9]]]]]]]],[[[22,[[5,[21]]]],25],26],[[[22,[[5,[21]]]],25],27],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[],20],[[]],[[]],[[]],[[]],[[[0,[40,21,15]]],[[10,[41]]]],[[41,35,[17,[6]],7,[17,[42]],6,6,[17,[35]],[17,[35]],35,[17,[29]],7],10],[[41,35,[17,[6]],7,[17,[42]],6,6,[17,[35]],[17,[35]],35,[17,[29]],7,35],10],[[[37,[35]]],7],0,0,[[]],[[]],[6],[6],[[43,[37,[44]]],[[19,[45,46]]]],0,0,[6],[[45,45],7],[[45,11],[[19,[47]]]],[[]],[48,45],[[],6],[[]],0,0,0,0,0,0,[[],19],[[],19],[[],20],[[]],0,0,0,0,0,0,0,[1],[[[49,[21]]],[[10,[50]]]],[[[51,[3]],42],[[10,[[52,[3]]]]]],[[[51,[[0,[53,54,55]]]],42],[[10,[[0,[[0,[53,54,55]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[56,56],[[]],[[57,3],[[5,[4]]]],[[],57],[[],56],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[56,56],7],[[],7],[[],7],[[],7],[[],7],[57,8],[[[49,[21]]],[[10,[9]]]],[[[51,[3]],9],10],[[[52,[3]]],10],[[[49,[21]],[17,[[39,[38]]]],7],[[10,[9]]]],[[56,11],12],[[]],[[]],[[]],[[]],[[]],[[56,58]],[[],6],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[]],[[[49,[21]],7],[[49,[21]]]],[21,[[49,[21]]]],[3,[[51,[3]]]],[[],57],[[[0,[53,54,55]]],[[51,[[0,[53,54,55]]]]]],[[[49,[21]]],[[10,[42]]]],[[[49,[21]],7],[[49,[21]]]],[[]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[],20],[[],20],[[]],[[]],[[]],[[]],[[]],[[[49,[21]],[17,[[34,[33]]]]],[[49,[21]]]],[[[51,[3]],[17,[56]]],[[51,[3]]]],[[57,[17,[56]]],57],[[57,8],57],[[[49,[21]],[17,[6]]],[[49,[21]]]],[[[49,[21]],[17,[[34,[6]]]]],[[49,[21]]]],[[[49,[21]],[17,[2]]],[[49,[21]]]],[[[52,[3]],9],10],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[[59,[3]],9],10],[[[60,[21]]],[[10,[9]]]],[[]],[[]],[[]],[[[60,[21]],[17,[6]]],[[60,[21]]]],[[],6],[[],6],[[],6],[[]],[[]],[[]],0,[3,[[59,[3]]]],[21,[[60,[21]]]],[[[60,[21]],7],[[60,[21]]]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[]],[[]],[[]],[[[60,[21]],6],[[60,[21]]]],[[[60,[21]],7],[[60,[21]]]],[[[59,[3]],61],[[59,[3]]]],[[[60,[21]],61],[[60,[21]]]],[[[60,[21]],[17,[[34,[33]]]]],[[60,[21]]]],[[[60,[21]],25],[[60,[21]]]],[[[60,[21]],42],[[60,[21]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[],19],[[[63,[62]]],19],[64,19],[[[67,[65,66]]],19],[[[68,[65]]],19],[[[69,[65,66]]],19],[[[71,[65,70]]],19],[[[72,[65,70]]],19],[[[73,[65]]],19],[[[74,[65,66]]],19],[[[75,[65]]],19],[[[76,[65,66]]],19],[77,[[19,[46]]]],[[[79,[[14,[78]],62]]],[[19,[46]]]],[[],19],[[[63,[80]]],19],[64,19],[[[69,[81,66]]],19],[[[71,[81,70]]],19],[[[72,[81,70]]],19],[[15,66],[[19,[7]]]],[[15,66],[[19,[7]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[15,15],[[[79,[[0,[82,[14,[78]]]],[0,[82,62]]]]],[[79,[[0,[82,[14,[78]]]],[0,[82,62]]]]]],[[]],[62,[[63,[62]]]],[15,[[19,[6]]]],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[],64],[[15,66],[[67,[15,66]]]],[[15,66],[[19,[17]]]],[[[79,[[0,[83,[14,[78]]]],[0,[83,62]]]],11],[[19,[47]]]],[[15,66],19],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[15,[[68,[15]]]],[[],17],[[[63,[62]]],17],[64,17],[[[67,[65,66]]],17],[[[68,[65]]],17],[[[69,[65,66]]],17],[[[71,[65,70]]],[[17,[15]]]],[[[72,[65,70]]],17],[[[73,[65]]],17],[[[74,[65,66]]],17],[[[75,[65]]],17],[[[76,[65,66]]],17],[77,17],[[[79,[[14,[78]],62]]],17],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[15,66],[[69,[15,66]]]],[[15,70],[[72,[15,70]]]],[[15,70],[[71,[15,70]]]],[[50,[84,[[14,[78]]]],[34,[35,85]]],77],[[62,[34,[35,85]]],[[79,[[14,[78]],62]]]],[[],[[19,[17]]]],[[[68,[65]]],[[19,[17]]]],[[[72,[65,70]]],[[19,[17]]]],[[],[[19,[17]]]],[[[72,[81,70]]],[[19,[17]]]],[6,[[19,[17]]]],[[15,66],[[19,[[17,[6]]]]]],[[]],[[[63,[62]]]],[64],[[[67,[65,66]]]],[[[68,[65]]]],[[[69,[65,66]]]],[[[71,[65,70]]]],[[[72,[65,70]]]],[[[73,[65]]]],[[[74,[65,66]]]],[[[75,[65]]]],[[[76,[65,66]]]],[[15,6],[[73,[15]]]],[[15,66],[[74,[15,66]]]],[[15,6],[[75,[15]]]],[[15,66],[[76,[15,66]]]],[[]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[3,65],[[19,[46]]]],0,0,0,0,0,[[]],[[]],[6],[41,[[37,[35]]]],[6],[6],[21,41],[[]],[[],6],[[]],[[],[[17,[[37,[35]]]]]],[[],[[17,[32]]]],[[],19],[[],19],[[],20],[[]],0,0,0,[1],[86,[[39,[78]]]],0,[86,87],[86,87],[[]],[[]],[[]],[[]],[86,[[5,[78,85]]]],[86,86],[[]],[86,88],[6],[6],[6],[6],[6],[6],[[86,86],7],[[86,78],7],[86,[[37,[43]]]],[[[89,[21]]],[[10,[9]]]],[[86,11],[[19,[47]]]],[[]],[90,86],[[]],[91,86],[[[31,[8]]],[[10,[[89,[32]]]]]],[88,[[37,[43]]]],[[[89,[21]],[17,[6]]],[[89,[21]]]],[[],6],[[],6],[[]],[[]],[86],[86],[86,[[95,[[34,[[5,[92,85]],85]],93,94]]]],[86,6],[[[89,[21]],7],[[89,[21]]]],[21,[[89,[21]]]],[[88,[34,[[5,[78,85]],85]],[17,[96]]],86],[88,86],[[88,6],86],[[86,[17,[96]]]],[[86,6,6]],[[86,6,6]],[[6,6]],[[6,6]],[[86,6,6]],[[86,6,6]],[[86,6,6],86],[[86,6,6],86],[86,[[5,[78,85]]]],[[]],[[],19],[[],19],[[],19],[[],19],[[88,[34,[[5,[78,85]],85]],[17,[96]]],[[19,[86,46]]]],[[],20],[[],20],[86,[[17,[96]]]],[86,[[17,[96]]]],[86,[[37,[[5,[78,85]]]]]],[86,93],[[]],[[]],[[[89,[21]],[17,[6]]],[[89,[21]]]],[[[89,[21]],[17,[6]]],[[89,[21]]]],[[[89,[21]],[17,[6]]],[[89,[21]]]],[[[89,[21]],[17,[[31,[8]]]]],[[89,[21]]]],[[[89,[21]],7],[[89,[21]]]],[[[89,[21]],25],[[89,[21]]]],[[[89,[21]],42],[[89,[21]]]],[[86,[17,[96]]],[[5,[78,85]]]],[[86,[17,[96]]],86],0,0,0,0,0,0,[1],[[],19],[[[97,[[14,[78]],62]]],[[19,[46]]]],[[15,66],[[19,[7]]]],[[15,66],[[19,[7]]]],[[]],[[]],[[]],[[]],[15,15],[[[97,[[0,[82,[14,[78]]]],[0,[82,62]]]]],[[97,[[0,[82,[14,[78]]]],[0,[82,62]]]]]],[[]],[15,[[19,[6]]]],[6],[6],[6],[6],[6],[6],[[15,66],[[67,[15,66]]]],[[15,66],[[19,[17]]]],[[[97,[[0,[83,[14,[78]]]],[0,[83,62]]]],11],[[19,[47]]]],[[15,66],19],[[]],[[]],[15,[[68,[15]]]],[[],17],[[[97,[[14,[78]],62]]],17],[[],6],[[],6],[[]],[[]],[[[98,[3,65]]]],[[]],[[15,66],[[69,[15,66]]]],[[15,70],[[72,[15,70]]]],[[15,70],[[71,[15,70]]]],[[3,65],[[98,[3,65]]]],[[62,[34,[35,85]]],[[97,[[14,[78]],62]]]],[[],[[19,[17]]]],[[[98,[3,65]]],17],[6,[[19,[17]]]],[[15,66],[[19,[[17,[6]]]]]],[[]],[[15,6],[[73,[15]]]],[[15,66],[[74,[15,66]]]],[[15,6],[[75,[15]]]],[[15,66],[[76,[15,66]]]],[[]],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[[[99,[21]],[17,[[39,[38]]]],[17,[[37,[6]]]]],[[10,[9]]]],[[[99,[21]],6],[[10,[100]]]],[[[101,[3]],42],[[10,[[102,[3]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[103,103],[104,104],[105,105],[106,106],[107,107],[[]],[[]],[[]],[[]],[[]],[[],103],[[],107],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[103,103],7],[[104,104],7],[[105,105],7],[[106,106],7],[[107,107],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[[99,[21]]],[[10,[9]]]],[[[101,[3]],9],[[10,[108]]]],[[[102,[3]]],[[10,[108]]]],[[103,11],12],[[104,11],12],[[105,11],12],[[106,11],12],[[107,11],12],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[104,58]],[[105,58]],[[106,58]],[[107,58]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[21,[[99,[21]]]],[[[5,[0]],109,6,[17,[[34,[6]]]],[17,[2]],6,7],[[10,[100]]]],[[3,3],[[101,[3,3]]]],[[100,6],[[10,[[17,[[34,[9]]]]]]]],[[[99,[21]]],[[10,[6]]]],0,[[[99,[21]],103],[[99,[21]]]],[[[99,[21]]],[[10,[42]]]],[[[99,[21]],7],[[99,[21]]]],[[[101,[3]],7],[[101,[3]]]],[[[99,[21]],7],[[99,[21]]]],[[]],[[]],[[]],[[]],[[]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[35,[[10,[104]]]],[110,[[10,[105]]]],[111,[[10,[106]]]],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[[99,[21]],7],[[99,[21]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[99,[21]],[17,[[34,[33]]]]],[[99,[21]]]],[[[101,[3]],107],[[101,[3]]]],[[[101,[3]],[17,[6]]],[[101,[3]]]],[[[99,[21]],[17,[6]]],[[99,[21]]]],[[[99,[21]],[17,[[34,[6]]]]],[[99,[21]]]],[[[99,[21]],[17,[2]]],[[99,[21]]]],[[[101,[3]],[17,[6]]],[[101,[3]]]],[[[101,[3]],7],[[101,[3]]]],[[[102,[3]],9],10],0,0,[[]],[[]],[[]],[[]],[6],[6],[6],[6],[6],[6],[112,36],[[112,11],12],[[]],[[]],[[113,114],[[10,[112]]]],[[],6],[[],6],[[]],[[]],[112,[[17,[6]]]],[113,42],[112,[[17,[115]]]],[112,[[17,[115]]]],[112,[[17,[115]]]],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[]],[[]],0,0,[[],[[17,[116]]]],[9,[[10,[115]]]],[113,[[10,[7]]]],0,0,[13,8]],"c":[],"p":[[3,"Private"],[3,"RowCount"],[8,"Write"],[8,"SerWriter"],[3,"Box"],[15,"usize"],[15,"bool"],[3,"PathBuf"],[3,"DataFrame"],[6,"PolarsResult"],[3,"Formatter"],[6,"Result"],[3,"Path"],[8,"AsRef"],[8,"Sized"],[6,"ArrowChunk"],[4,"Option"],[6,"ArrowResult"],[4,"Result"],[3,"TypeId"],[8,"MmapBytesReader"],[3,"CsvReader"],[3,"BatchedCsvReaderMmap"],[3,"BatchedCsvReaderRead"],[6,"SchemaRef"],[3,"OwnedBatchedCsvReaderMmap"],[3,"OwnedBatchedCsvReader"],[4,"CsvEncoding"],[4,"NullValues"],[3,"CsvWriter"],[8,"Into"],[3,"File"],[3,"String"],[3,"Vec"],[15,"u8"],[4,"DataType"],[15,"slice"],[8,"PhysicalIoExpr"],[3,"Arc"],[8,"Read"],[4,"ReaderBytes"],[3,"Schema"],[3,"Field"],[3,"RowGroupMetaData"],[3,"Statistics"],[4,"Error"],[3,"Error"],[3,"MutableStatistics"],[3,"IpcReader"],[3,"Schema"],[3,"IpcWriter"],[3,"BatchedWriter"],[8,"AsyncWrite"],[8,"Unpin"],[8,"Send"],[4,"IpcCompression"],[3,"IpcWriterOption"],[8,"Hasher"],[3,"JsonWriter"],[3,"JsonReader"],[4,"JsonFormat"],[8,"Iterator"],[3,"Convert"],[3,"Empty"],[8,"FallibleStreamingIterator"],[8,"FnMut"],[3,"Filter"],[3,"Fuse"],[3,"Map"],[8,"Fn"],[3,"MapRef"],[3,"MapErr"],[3,"Skip"],[3,"SkipWhile"],[3,"Take"],[3,"TakeWhile"],[3,"RecordSerializer"],[8,"Array"],[3,"Serializer"],[8,"DoubleEndedIterator"],[8,"DoubleEndedFallibleStreamingIterator"],[8,"Clone"],[8,"Debug"],[3,"Chunk"],[3,"Global"],[3,"StructArray"],[8,"Any"],[4,"DataType"],[3,"JsonLineReader"],[3,"MutableStructArray"],[3,"GrowableStruct"],[8,"Scalar"],[3,"StructValueIter"],[3,"BitmapIter"],[4,"ZipValidity"],[3,"Bitmap"],[3,"Serializer"],[3,"FileWriter"],[3,"ParquetReader"],[3,"BatchedParquetReader"],[3,"ParquetWriter"],[3,"BatchedWriter"],[4,"ParallelStrategy"],[3,"GzipLevel"],[3,"BrotliLevel"],[3,"ZstdLevel"],[4,"ParquetCompression"],[15,"u64"],[3,"FileMetaData"],[15,"u32"],[15,"i32"],[3,"ColumnStats"],[3,"BatchStats"],[15,"str"],[3,"Series"],[8,"StatsEvaluator"],[8,"WriterFactory"],[8,"SerReader"],[8,"ArrowReader"]]},\ +"polars":{"doc":"Polars: DataFrames in Rust","t":"ROAAOAAFAAAACCAAACFGDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIKKKKKKKDDDDDIDDIDDIDDDLLLKKLLLLLLLLKLLKLLLLLLLLLLMMMLLLLLLLLLLLLLLLLKLLLLLALLLLKKKKFLLLLLLLLLALLLLKLLLLLLLLLLLLLLLLLLDDDDIDDKLKMLLLFLDDDDIDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAANEDNNNGGENDIDENDIENNNNNNGDNDDDDDNNNGDDNDNNDDDIIIIIIIIIIIIIIIIIIIIIIIIIIIDIGNNNDENNNNGDNNGDNNNNGDNNGNNNNGDGNDGENNNDNNNNGDNNNGDNNNIIIIINNDEGQNRNGGGGIEIINGDNNNGDNNNGDNNNGDNNNGDNIIIINNIIIIQQQQQNNDENGNGGNNNINNNNDDIGIDDDDDNNDINNNNNNDNNNNNNNNNNIIINNQNNINNNNNIIDDDINNDGNDDDNNNQDQGGGGGIIEIIIIIIGIDIENEDIEEDDDDNNGNDINNNNNIDDIDNNNNDNNEIIEEIQDINNNNGDEGNNNNGDNNNGDNNNGDNNNGDNENNNNGDNDDDIIINLLLLLLLLLLLLLLLLLLLLKLKKLLLKKLLLLLLLLLLLLLKLLLLLLLKLLLLLLKKKKKKKKKLLKLKLLLLLLLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLKAMMMKKKKALMKKLLKLKKKLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLALLLLLLLLLMAFFFMLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLOKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLMLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLMKKKLKLLLLLALLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLLKLLKLKKKKKLKKKKLLLLLLLLLLLLLLLLKLKLLLKLLLLLKLLLKKLLLLLLLLLLLLLLLLLLKLKLKKLLLLLMMLKLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKLLLLLLLLKKLLMLLLLLLLLLLMKLLLAKLKMLLLLLLLLKLLFMMMLLLMLLKKMMLLLKMMLKKKLLLLLLLLLLLLKKLLLLLKKAKLMMLLLLLLOOOOMLLLLLKLKAKKLKLLLKKMLLKKKKLLKKKLLKLLLAKLMKLKLLKKLLLLLLLKLKLMMALKKMLLKKKKLKKKKLLKLKLLLLLLLLLLLLLLLLLLLLLLMMKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLAMLLMLMLLKLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMKLLLLLKMMDLLLLLLLLLLLLLLLLLLLLLLDDDNNNNEEDNNDENNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLENNGEEINNNGNDNNNGDDNNDDDGENNNNGDNNGDNNNNGDNNNNGDNDNNDNNNNGDNNNGDINNQRGGGGIGDNNNGDNNNGDNNNGDNNNGDNNNNNNNGDNNDINNNNNNNQNNNINNGNDDQGGGGGIIIIIEENDNNNDNNNNNGDEGNNNNGDNNNGDNNNGDNNNGDNNNNNGNDKKKMLLKKFMKKIIIKKKDLLLLLLLLLLLLLLLLLLMDLLFLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLIGGKKFFFFKIKKDFFFFIILLNNDDDDIIIIIIIIIIIIIIIIIIIIIIIIIIGGENIIIIQQQQNNDDNNNNNNNDDDDDNINNNDDIEIIEEIQDIDDNKKKKKKKKKLKKKKKKKKLLLLMMKKLKKKAKKKKKKLLKKLLLKKMLLLLLMMLKKKMMLLLLKLKKKKKAKKLKLKKKKKKLAKFAFFFFFFAFFFFFFFFIENNGEEINNNGNDNNNGDDNNDDDGENNNNGDNNGDNNNNGDNNNNGDNDNNDNNNNGDNNNGDINNQRGGGGIGDNNNGDNNNGDNNNGDNNNGDNNNNNNNGDNNDINNNNNNNQNNNINNGNDDQGGGGGIIIIIEENDNNNDNNNNNGDEGNNNNGDNNNGDNNNGDNNNGDNNNNNGNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLMLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKDDDNNNNEEDADLLLLLLLFLLLLFLLLFLFAAAAAAAAAAAAENNNNDNNNNNNNNNNEGNNNNNLLLLLLLLLLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLFLLLLLLFOOOOLLFLFLLLLLLLLLLLLLLLLFDDDGIGIDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLALLLLLLLLLLLLLLLLKKLLLLLLLLLLLLIDKFDENNLAALLAALLAALLLLLLLLLLLALLALLLLLLLLLLLLLLLLLLAALALAALALLLAALLLLIDDGDGGDIDDGGGGGGIGGGGGGGGGGGGSDGDGGIDDDDDDDDDDDDDDIDIIIGGGGGGGGDDGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLFLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLFLLLLLLLLLLKLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLIDDDDDDDDDDDDLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGFFFFDDDLLLFLLLFFLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLFLLLLLLLLLLFLLLLLLLLLLLLLLLLLLFFLLALLLLFIIDDDDNNDEDLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLKFFLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLKLLLLFFFLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAAAAAAAAAAAAAAASSIIFFFFFFFKKFFFFFKKFFKKKFFFIIIIIIIIIIIIIIIIIIIFKFAFFFFFFKKKKKAFKFFKFFKKKFKKKKFKFAKKKIFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDLFFFFFFFFFFLLFFLLFFFFFFLLLFFFLFFFLLLFLFFMFFFFFFFFFFFFFFFFFFFLLLLFFFFFFFFFLMFFQIIIIAAFFFFFFFFFFFFFKFFFFFKKFKFKFFFKFKFFFKFFFAAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFGFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFNNNNENNNNNNNNNNNDNNNNNNNNNNNNNNNNNNNNNNNNENENNNNNNNNNNGNNNNNNNENEDGNNNNNNENNNNNNNNNNNNNNNENNNLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLFLLLLLLLLLLLLLLLLMLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLENNNNNNNGDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLFFFLLLLLLLLFFLLLLLLLLALLLLLLLLLLLLLLLLLLFFAAAADDLLALLLLLLLLLLLLLMLLLLMMLLLLLLLLMALLLLLLLLLLAGNDDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNENDDENNNLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLFFFFLLMMLMLLLLLLLLLLLLLLLLLLLLLMLLLLLLMMMMMMMMMMEDNDDDNLLLLLLLLLLLLLLLLLLLLMLFLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLALLLLLLLLLLLLLLLLLLLLLLLLLFLLDLLLLLLLLLLLLLLLLLDDLLMLLLLLLLLLLLLLLLADIDQIDDQDDDDDDDDDKKLLLFLFLLLLKLLLLLLLLLLLLFAQIDQDKLLLLLLLLKLLLLLLLLLLLAAGDNNNNDDDNENNNNDNNNNQQINNDDNNNENENNNNNNNNNNQQNNNNNNNINGDNEGDIEEEENEENDDDDNENNDNNNNNNNNNNNNNNNNLLLLLLLLLLFFFKKLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFMLLLLLFFMLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLFFFFFLLLLLLAFLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLFMLLLLLLLLLLLLLLLLLLLLLLMLLLMLLLFFFFFFFMALMLLLLALLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLMMMMMMMMDIDQIDDQDDDDDDDKKLLLFLFLLLLKLLLLLLLLLLLLDEDDNNLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLMMMMLMMFFMMMLLLLLLLLLLLLLLLLLLDNDENDMMFMMMFFMMMMMMMMDLLLLFMLLLLLLLMMMLLLLNNNDNNDEEDNNNNNDNNNDDEQIDDDDNNNNDNNNQDNNNNNEEEENNNNNNGDDNNDNNNEDNDLLLLLLLLLLLLLLLLKLLLLFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLFLLMLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLFLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMLLLLMMMLLMLLLLLLLLLLLLMMFLLLLLLLLLLLLMLLLLMFMMLLLMMLLLLLLLFFLLLLLLLLFFLLLLLLLLLLLLLLLLFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLFFFMLLLLMMMMFFSIDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDIDDDLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLRRRRRRFFFFFFFFFFFFFFFFFFFFFFFFFIIDDQNSNNNSIDNNNNNNNIISENNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLKKLLLLLLKLLLLKKLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLALLLKLLLLLLKLLLLKLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLQISQQIIQLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLFFFNNNNDDIDNDNNIQNDNDNNNDESSRRSSSSSRRSSNNNNNEDDDDDNNNNIQDDDDGDENENNNINNIINNDNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLKLLLLKLLLLKLLLLLALLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLKLLLKLLLKLLLKLLLKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLKLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLKLLLLKLLLLKLLLKLLLKLLLLKLLLLKLLLKLLLLKLLLLKLLLLLKLLLLLKLLLLLLLLLLLLLLNNDNENNNNNNDDNNNNNENNNNNNNNNNNNNNENNNNNEDEGDNNNNNNNDNNNNNNNNNNNNNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLMMMMMMMLLLLLMMFFMLLLLLLLLLLLLLLLLLLLLLAMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMDDDRRRRDDDDNDDENIQNIDLKLLKLLLLKKKKLLLLLLLLLLNNNDDINNDNNNNDNNNNNEDDDNNNIQNENNINNIINDNELKKKLLKLLKLKLLKKKKLLKKKKKKKKLLLLLKKKKKKKKKKKKKLKLLLLLIIQQIIIIIIIIIKNIKKKKKKKKKIIEIIQINKKLKLKIIIIIIIIIIQQQKDIIIKIIIIILIIIIIIIIIIFKKFKKKKKKKKKKLLLLAAFKKKKKKKFKKKKKFFFKLKKKKLLLLKLLLKKKAKLLLKKLLKKLLLLLKLLKKLKLLLKLLKAKLLAKLLKKKKKKLKKKLKMLKKKKKKKKKKKKKKKKKKKFKAAFKKKKAKKLKKKKKKKKLLAKKFKKKKKKKKKKKLLLLLLKLLKKLLLLLLKLLLKKLLLLLLKKLLKKKKKKFKIIIKKKKIIIIKFKLLLLLKLLLLLKLLLLLLLKLLLLLKLLKKKKKKKKKKIIIKKLKLKKKLKLKKKKKKKKKKLKKLKKKLKKKKLKLKKKKKKLKLKLKLKLKLLLKKKKKKLKKKLKKKKKKKKKKKKKLKLKLKLKKKKKKKLKLKLIILKFKLLFKIKKKKLKKLKKKKKKKLKKKAAAAAAAAQQIIIKKLKKLIIIIIIIIKKKKKKKKIIKKKKIQKIIQKKIIIKKKIIIIKKKKKIIIIIIKKKKKKQIFFKIKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKIIFKFKKKFKAAADDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNDNDDDDDDELALLLLLLLLLLLLLLLLLLLFLLLLLLAFLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLFLLLLLLLLLLLLLLLLLLLLLLAFLFFLLLLLLALALAAALFLFLALFLLFLLLFLLLLLLAALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLFLFLDLLLLLLLLLLLLLLLLLLLLLLLAAAAAAADDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDEDDDDDDDDDDDDIIDDDDIIIQQQQQQQQQQQDNDDDDDDDDIIIIIDDDDNDDDDDDDDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKLKKLLLLLALLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIIQQQQQIIIQQQIIFFFKKKLKLKKKKLLKKKKKKDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIIIIIQQQQQQQQQQQIIIIIIIILLKKKLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLKLLLLLLKLKLLLLLLLLLLLLLKLLLLLLLKKLKKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDIIDDDDDDDLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDIDDDLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDNEDDDDDDDIDDDDDDDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDDDIDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNGDNNNNEDNDELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLMLLMLLLLMMMLGNNDENDEEDDGNNGNINNNNNNNNNNNDNNNLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLALLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMIFFFFFFFFKIKKNGGGNNGDEENGNNNNNLLLFFFFFFLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLFMLMLLLLLLLLLLLLLLMLLLNNEENNNNNNNNNNNNNNNNNDNNNNNNNNNNNNLLLLLLFLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLFFFFFFFNNENNDNNNNGNNINDNNNEDINNNNGNDGENDIGDEIINDIIENNNNNDNNNNGDNNINDDDIDDNNNNNGDEDGNDDNDNNNDNNNDDDEDNDDIIIIIIIIIIIIIIIIIIIIIIIIIIIDIINEGNNNNNNNNNNNNEDDNNNNNDIINNENNNNNGINDNNDGIDNNNNGDNNNNNNNNGNDNNNNDGIDGDNNNNNENNNEINNDNNGENNNNNNDNNNNNGDNNNNGDNNNNNNIIINEIIIGGNNDENDEEDDGNNNNDNQNRNNGGGGGNNIEIINGDNNNNGDNNNNGDNNNNGDNNNNGDNENIIIIIINNEDDDDDDDNINIINNINNNNNQQQQQNNNNDDDENEDNDDNNNGNGGNNNNDIDDDNNNNINNNNNDDIGNIDIIDDDDDINENNNNNIDEINNNNNNNNNNNNNNNNNNNDDNNNNNNNNNNNNNNNNIRNNNNIINNNNQNNNINDNNNNNNDNNNNNEIIDDDINNGNDDDNEDNNNQDQEEDDDINIDGGGGGNIIEIIIIIIIGIIIIINDNNNIENNINNEDNIIEENNNIDDDDDDIDNNNNDDDDNNGENNNIIDNIIIIIINNNNNNNNNNNNIDNNNNDDDENNIDNNDNNNDDNNDNNNNNEIIEEIQDININDNNNNNNGIDEGNINNNDNNNNNGDNNNNGDNNNNGDNNNNGDINNNDNENNNNNNNGDIINDDDINNIINDNDNNEDNNNNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLKLLLKLLLALFLFLMLLLLLLLFLKKLLKKKLLFKLKKLLFKKKKFLLLLLLLLKLLKLLKLLFLKLLFMLAALLKLLLLLKLLLLLKLLKKLKLLFLKFLLLFLLLLLLLLALFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKMMMLMMMKKKMMFKKKLKALLLMMMKKMMKLKKAKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMALMLFFLFFLLMMFLFLLFFLLLLLLLLFLLFLLLLFLLLLLLFLLLMLMAFAFFFFLLLMKLMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLMOFLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFALKLMFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKKMMMLLLLLLLLKAMLLLLLLLLLLLLMMLLLLKKKLLKKKKLLLLLLLLLLLLLLKLLLFLLLALLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFMMMMFLMMFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLLKLLLLKLLLKKLLKAKKLKKKKLKLKLLLLKLLLKKLLKLLLKKKLLLKLLLKLKLLFFKLKLLLLLKLMLLLLLLLLLLLLLLLLLLLLLKLLMKMLMMLFMMMKFLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFMFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKKLKLLLFLLLLLLLLLLLLLLLFKLFKLMLLLLLKLLLLLLLLLLALFLLLKMLLLKLLLLLFKLLLLLLMMLLLLMLLLLLLLLLLLLLLLLLLKLKLMMMLLLFLLLLLLFLLFMFLLLLLLLFFLLLLLFLLLLKLLMLFLMMMMKMKMFLLLLLLLFMMMMKLLMKMLLLLLLMKKLLKLLKMMLLKLLMMMMLLLKMMMLLAKLLKLMKLLKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLFLKKAKLLMLMMMMLKLLLLLLMLLLLLMLLMMLKKLLMLKLLLLLLFMMLOOOOLLMMALMLLLMFLLLKLLLLLFLALKKLLMMMFKLKKLLFLLLLLLLFLFKKLLLMLLLLLFFKLLKLLKLLKLLKLLKLLKLLKLLLKLLLLKLLMMMMMMLLLLLKLLLLLLLLLLMMFKLLMKMLAKKKKKLLLLLLLLLLKKLLLKLLLKLLMLLLLMMAKLLLLLMMKLKLLLLLAKLLLLLKLLFLMLLMLLLKLLKLLLLMMMLMLALKLKLLMFLLLLLLFLLLLLKKLKKLKKKKLLFFLLLFLLLLLLKLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMLKMLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKMLKLLLLLLLLLFLLKKMLMALMLLLLMMLLLLLKLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMMFLLMMMMLLLLLKLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMAKMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMIFFFFFFFFKIILLLLLKAQIDQDLKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLDENNIIIIDDIILLLLLLLLMMMMLLMMLLKLLLLMMLKLKLLLLLLKKMMKLKLLKLKLLKKLLLKKKKKKKKKLKLLLMLMFALLLLLMMMMLLINNNNNEILLLLLLKLLLLLLLLLLLLLLLALLLLLLLLDQIILLLLLLLLLFLLMLKLLMLLKLLLLLNNDENNENNGEEINNNGNDNNNGDDNNDDDGENNNNGDNNGDNNNNGDNNNNGDNDNNDNNNNGDNNNGDINNQRGGGGIGDNNNGDNNNGDNNNGDNNNGDNNNNNNNGDNNDINNNNNNNQNNNINNGNDDQGGGGGIIIIIEENDNNNDNNNNNGDEGNNNNGDNNNGDNNNGDNNNGDNNNNNGNDKKAKMLLKKFMKKDDDNNNNEEDADFFFFFIIIKKKDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIKKDMADIDQIDDQDDDDDDDDDLKLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFFDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLIIIIKLLLLLLLKLLLLLLLLLLLLLLKLLLLIKKFAFFFFFFDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFNINIEQNDDGILLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLKKLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLKLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLKLLLKLLLKLLLLLLALLLLLLLLLKLLLLLLLKKLLLLKLLLKLLLKLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLKLLLKLLLKALLLLLLLKLLLKLLLKLLLLLLLLLLLLLLLKLLLLKLLLLLLLLLLLLLLKLKKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLIIIQFKKLAKKLKKLKKLKKLIIKLKLNNELLLLLLLLALLLLLLLLLLLLLLLLGDLLLLLLLLLLLLLLLLLLLLLL","n":["VERSION","apply_method_all_arrow_series","chunked_array","datatypes","df","doc","docs","enable_string_cache","error","export","frame","functions","io","lazy","prelude","series","testing","time","using_string_cache","ChunkIdIter","ChunkedArray","__clone_box","_can_fast_explode","abs","add","add","add","add","add","add","add","add","add","add","add","add","add_to","agg_list","agg_list","agg_list","agg_list","agg_list","agg_list","agg_list","all","all_3val","amortized_iter","amortized_iter","amortized_iter_with_name","amortized_iter_with_name","any","any_3val","append","apply","apply","apply","apply","apply","apply","apply_amortized","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_in_place","apply_kernel","apply_kernel","apply_kernel","apply_kernel","apply_kernel_cast","apply_kernel_cast","apply_kernel_cast","apply_kernel_cast","apply_mut","apply_mut","apply_mut","apply_on_opt","apply_on_opt","apply_on_opt","apply_on_opt","apply_on_opt","apply_on_opt","apply_to_inner","apply_to_inner","apply_to_slice","apply_to_slice","apply_to_slice","apply_to_slice","apply_to_slice","apply_to_slice","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_unique","arg_unique","arg_unique","arg_unique","arg_unique","arg_unique","arg_unique","arithmetic","as_array","as_binary","as_binary","as_list","as_ref","as_ref_dtype","as_utf8","as_utf8","bitand","bitand","bitand","bitor","bitor","bitor","bitxor","bitxor","bitxor","borrow","borrow_mut","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","builder","cast","cast","cast","cast","cast","cast","cast","cast_and_apply_in_place","cast_unchecked","cast_unchecked","cast_unchecked","cast_unchecked","cast_unchecked","cast_unchecked","checked_div","checked_div_num","chunk_id","chunks","chunks_mut","clone","clone_into","comparison","cont_slice","cummax","cummin","cumprod","cumsum","data_views","default","deref","deref_mut","div","div","div","div","divide","drop","drop","dtype","equal","equal","equal","equal","equal","equal","equal","equal","equal","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","explode","explode_and_offsets","explode_and_offsets","explode_and_offsets","extend","fill_null_with_values","fill_null_with_values","fill_null_with_values","filter","filter","filter","filter","filter","filter","filter","first_non_null","float","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_chunks","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter_options","from_iter_options","from_iter_options","from_iter_options","from_iter_options","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_values","from_iter_values","from_iter_values","from_iter_values","from_iter_values","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice_options","from_slice_options","from_slice_options","from_slice_options","from_slice_options","from_trusted_len_iter_rev","from_trusted_len_iter_rev","from_vec","full","full","full","full","full","full","full","full_null","full_null","full_null","full_null","full_null","full_null","full_null","full_null_with_dtype","full_null_with_dtype","get","get","get","get","get","get","get","get","get","get","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_inner","get_inner","get_object","get_object_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_values_size","get_values_size","get_values_size","get_values_size","group_tuples","group_tuples","group_tuples","group_tuples","group_tuples","group_tuples","group_tuples","group_tuples_perfect","gt","gt","gt","gt","gt","gt","gt","gt","gt","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","has_validity","head","init","init_rand","inner_dtype","inner_dtype","into","into_date","into_datetime","into_decimal","into_decimal_unchecked","into_duration","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_no_null_iter","into_series","into_series","into_time","is_empty","is_finite","is_in","is_in","is_in","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_optimal_aligned","is_sorted_flag","iter_validities","iterator","kernels","last_non_null","len","lhs_div","lhs_rem","lhs_sub","limit","lt","lt","lt","lt","lt","lt","lt","lt","lt","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","max","max","max_as_series","max_as_series","max_as_series","max_as_series","max_as_series","max_as_series","mean","mean","median","median","median","median_as_series","median_as_series","median_as_series","min","min","min_as_series","min_as_series","min_as_series","min_as_series","min_as_series","min_as_series","mmap_slice","mmap_slice","mode","mode","mode","mode","mode","mul","mul","mul","mul","multiply","n_unique","n_unique","n_unique","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_from_index","new_from_index","new_from_index","new_from_index","new_from_index","new_from_index","new_from_index","new_from_owned_with_null_bitmap","new_from_vec","new_vec","none_to_nan","not","not","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal_and_validity","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","null_count","object","ops","par_iter","par_iter","par_iter_indexed","par_iter_indexed","peak_max","peak_min","prod_as_series","quantile","quantile","quantile","quantile_as_series","quantile_as_series","quantile_as_series","rand_bernoulli","rand_normal","rand_standard_normal","rand_uniform","rechunk","ref_field","rem","rem","rem","rem","remainder","rename","repeat_by","repeat_by","repeat_by","repeat_by","reverse","reverse","reverse","reverse","reverse","reverse","reverse","rolling_apply","rolling_apply_float","sample_frac","sample_n","set","set","set","set","set_at_idx","set_at_idx","set_at_idx","set_at_idx","set_at_idx2","set_at_idx2","set_at_idx2","set_at_idx_with","set_at_idx_with","set_at_idx_with","set_at_idx_with","set_fast_explode","set_inner_dtype","set_sorted_flag","shift","shift","shift","shift","shift","shift","shift","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","shrink_to_fit","slice","sort","sort","sort","sort","sort","sort","sort_with","sort_with","sort_with","sort_with","sort_with","sort_with","std","std","std","std_as_series","std_as_series","std_as_series","str_concat","str_concat","sub","sub","sub","sub","subtract","sum","sum","sum_as_series","sum_as_series","sum_as_series","sum_as_series","sum_as_series","sum_as_series","tail","take","take","take","take","take","take","take","take_rand","take_rand","take_rand","take_rand","take_rand","take_rand","take_unchecked","take_unchecked","take_unchecked","take_unchecked","take_unchecked","take_unchecked","take_unchecked","temporal","tile","to_decimal","to_ndarray","to_ndarray","to_ops","to_ops","to_ops","to_ops","to_ops","to_ops","to_owned","to_physical","to_physical","to_utf8","to_vec","to_vec_null_aware","try_apply","try_apply","try_apply","try_apply","try_apply","try_apply","try_apply_amortized","try_apply_amortized","try_from","try_into","type_id","unique","unique","unique","unique","unique","unique","unique","unpack_series_matching_type","unset_fast_explode_list","upstream_traits","var","var","var","var_as_series","var_as_series","var_as_series","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vzip","width","with_chunks","zip_with","zip_with","zip_with","zip_with","zip_with","zip_with","zip_with","ArrayArithmetics","add","div","div_scalar","mul","rem","rem_scalar","sub","AnonymousListBuilder","AnonymousOwnedListBuilder","BinaryChunkedBuilder","BinaryChunkedBuilderCow","BooleanChunkedBuilder","ChunkedBuilder","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListPrimitiveChunkedBuilder","ListUtf8ChunkedBuilder","NewChunkedArray","PrimitiveChunkedBuilder","Utf8ChunkedBuilder","Utf8ChunkedBuilderCow","append_array","append_empty","append_empty","append_null","append_null","append_null","append_null","append_null","append_null","append_opt_array","append_opt_series","append_opt_series","append_option","append_series","append_series","append_series","append_value","append_value","append_value","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","capacity","capacity","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","fast_explode","field","finish","finish","finish","finish","finish","finish","fixed_size_list","from","from","from","from","from_iter_options","from_iter_values","from_slice","from_slice_options","get_list_builder","init","init","init","init","inner_array","into","into","into","into","list","new","new","new","new","shrink_to_fit","shrink_to_fit","shrink_to_fit","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","AnonymousListBuilder","AnonymousOwnedListBuilder","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListPrimitiveChunkedBuilder","ListUtf8ChunkedBuilder","append_null","append_opt_series","append_series","builder","fast_explode","field","finish","get_list_builder","inner_array","BinaryIterNoNull","BoolIterNoNull","FixedSizeListIterNoNull","ListIterNoNull","PolarsIterator","SomeIterator","StructIter","Utf8IterNoNull","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","from","from","from","from","from","from","from","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_vec","into_vec","new","new","new","new","new","next","next","next","next","next","next","next","next_back","next_back","next_back","next_back","next_back","next_back","par","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","list","utf8","Any","AnyValue","Arc","Array","Array","Array","ArrayChunked","ArrayRef","ArrowDataType","ArrowError","ArrowField","ArrowGetItem","ArrowSchema","ArrowTimeUnit","AsOf","AsOfOptions","AsRefDataType","AsofStrategy","Average","Backward","Backward","Binary","Binary","Binary","BinaryChunked","BinaryChunkedBuilder","BinaryOwned","BinaryTakeRandom","BinaryTakeRandomSingleChunk","BinaryType","BoolTakeRandom","BoolTakeRandomSingleChunk","Boolean","Boolean","Boolean","BooleanChunked","BooleanChunkedBuilder","BooleanType","C","CatIter","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalType","ChunkAgg","ChunkAggSeries","ChunkAnyValue","ChunkApply","ChunkApplyKernel","ChunkBytes","ChunkCast","ChunkCompare","ChunkCumAgg","ChunkExpandAtIndex","ChunkExplode","ChunkFillNullValue","ChunkFilter","ChunkFull","ChunkFullNull","ChunkPeaks","ChunkQuantile","ChunkReverse","ChunkRollApply","ChunkSet","ChunkShift","ChunkShiftFill","ChunkSort","ChunkTake","ChunkUnique","ChunkVar","ChunkZip","ChunkedArray","ChunkedBuilder","CloudOptions","ColumnNotFound","ComputeError","Cross","DataFrame","DataType","Date","Date","Date32","Date64","DateChunked","DateType","Datetime","Datetime","DatetimeChunked","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dense","Dictionary","Dummy","Duplicate","Duration","Duration","Duration","DurationChunked","DurationType","DynArgs","Extension","Field","FillNullLimit","FillNullStrategy","First","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","Fortran","Forward","Forward","FromData","FromDataBinary","FromDataUtf8","FxHash","GetAnyValue","Global","GlobalFinished","GroupsIdx","GroupsProxy","GroupsSlice","HashMap","Higher","IDX_DTYPE","Idx","IdxArr","IdxCa","IdxSize","IdxType","IndexOfSchema","IndexOrder","IndexToUsize","InitHashMaps","Inner","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","IntoGroupsProxy","IntoSeries","IntoTakeRandom","IntoVec","InvalidOperation","Io","IsFirst","IsFloat","IsIn","IsLast","Item","Item","Item","Item","Item","Iter","IterNulls","JoinArgs","JoinType","LargeBinary","LargeBinaryArray","LargeList","LargeListArray","LargeStringArray","LargeUtf8","Last","Left","LhsNumOps","Linear","List","List","List","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListChunked","ListFromIter","ListPrimitiveChunkedBuilder","ListTakeRandom","ListTakeRandomSingleChunk","ListType","ListUtf8ChunkedBuilder","Local","Local","Logical","LogicalType","Lower","Map","Max","Max","MaxBound","Mean","MeltArgs","Microsecond","Microseconds","Midpoint","Millisecond","Milliseconds","Min","Min","MinBound","Multi","Multi","MutableBitmapExtension","NamedFrom","NamedFromOwned","Nanosecond","Nanoseconds","Native","Nearest","Nearest","NewChunkedArray","NoData","None","Null","Null","Null","NumOpsDispatch","NumOpsDispatchChecked","NumTakeRandomChunked","NumTakeRandomCont","NumTakeRandomSingleChunk","NumericNative","Object","Object","ObjectArray","ObjectChunked","ObjectOwned","ObjectTakeRandom","ObjectTakeRandomSingleChunk","ObjectType","One","Ordinal","Outer","Output","OwnedObject","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsArray","PolarsDataType","PolarsError","PolarsFloatType","PolarsIntegerType","PolarsIterator","PolarsNumericType","PolarsObject","PolarsObjectSafe","PolarsResult","PolarsSingleType","PrimitiveChunkedBuilder","QuantileAggSeries","QuantileInterpolOptions","Random","RankMethod","RankOptions","RepeatBy","RevMapping","RevMappingBuilder","RollingOptionsFixedWindow","RollingQuantileParams","RollingVarParams","Schema","SchemaFieldNotFound","SchemaMismatch","SchemaRef","Second","Series","SeriesTrait","ShapeMismatch","Single","Single","SingleNoNull","Slice","SlicedArray","SortMultipleOptions","SortOptions","StrConcat","StrHashLocal","StringCacheMismatch","Struct","Struct","Struct","StructChunked","StructFieldNotFound","StructOwned","TakeIdx","TakeIterator","TakeIteratorNulls","TakeRandBranch2","TakeRandBranch3","TakeRandom","TakeRandom","TakeRandomBitmap","TakeRandomUtf8","Time","Time","Time32","Time64","TimeChunked","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","UniqueKeepStrategy","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8ChunkedBuilder","Utf8Owned","Utf8TakeRandom","Utf8TakeRandomSingleChunk","Utf8Type","ValueSize","VarAggSeries","VecHash","Zero","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_fx_hash","_sum_as_series","add","add_to","append_iter","append_iter","append_iter_values","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_opt_series","append_opt_slice","append_option","append_option","append_option","append_series","append_series","append_series","append_series","append_series","append_slice","append_trusted_len_iter","append_trusted_len_iter","append_value","append_value","append_value","append_value","append_value","append_values_iter","append_values_iter","apply","apply_cast_numeric","apply_kernel","apply_kernel_cast","apply_on_opt","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arg_sort","arg_sort","arg_sort_multiple","arg_unique","arg_unique","as_any","as_any","as_any","as_any_mut","as_any_mut","as_fd","as_ptr","as_raw_fd","as_ref","as_ref_dtype","as_single_ptr","as_slice_mut","assume_init","assume_init","bitand","bitor","bitxor","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed_clone","boxed_clone","boxed_clone","boxed_clone","branch_apply_cast_numeric_no_null","builder","builder","capacity","capacity","cast","cast","cast","cast_unchecked","categorical","cause","center","check_bounds","check_bounds","check_bounds","check_bounds","checked_div","checked_div","checked_div_num","chunk_lengths","chunks","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_inner","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloud","cmp","compare","contains","cummax","cummin","cumprod","cumsum","data_type","data_type","data_type","datatypes","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","ddof","decrement_strong_count","default","default","default","default","default","default","default","default","default","default","default_arrays","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descending","descending","descending","description","df","div","divide","downcast","downcast_unchecked","downgrade","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_nulls","dtype","dtype","dtype","encode_hex","encode_hex_upper","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","equal_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","explode","explode_and_offsets","fast_explode","fast_explode","fast_explode","fast_explode","fast_explode","field","field","field","field","field","field","fields","fill_null_with_values","filter","filter","filter","finish","finish","finish","finish","finish","finish","fixed_size_list","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fn_params","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_data_default","from_data_unchecked_default","from_data_unchecked_default","from_iter","from_iter","from_iter_binary_trusted_len","from_iter_bool_trusted_len","from_iter_options","from_iter_primitive_trusted_len","from_iter_utf8_trusted_len","from_iter_values","from_raw","from_slice","from_slice_options","from_vec","full","full_null","ge","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_at_index","get_at_index_mut","get_dtype","get_field","get_full","get_k","get_mut","get_mut_unchecked","get_names","get_names","get_names","get_object","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_values_size","group_tuples","gt","gt","gt_eq","has_validity","has_validity","hash","hash","hash","hash","how","id_vars","increment_strong_count","index_of","index_of","index_of","indexes_to_usizes","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_array","inner_array","inner_array","inner_array","inner_array","insert_at_index","interpol","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_inner","into_iter","into_iter","into_raw","into_series","into_series","into_vec","is_empty","is_empty","is_first","is_float","is_in","is_in","is_last","is_nan","is_not_null","is_null","is_null_unchecked","is_null_unchecked","is_nullable","is_series","is_sorted_flag","is_tty","is_valid_unchecked","is_valid_unchecked","iter","iter_dtypes","iter_fields","iter_names","le","left_by","len","len","len","limit","list","lt","lt","lt_eq","maintain_order","make_mut","max","max_as_series","max_as_series","mean","mean","median","median","median_as_series","median_as_series","merge","merge_dtypes","metadata","metadata","method","min","min_as_series","min_as_series","min_periods","mode","mode","mul","multiply","multithreaded","multithreaded","n_chunks","n_unique","n_unique","name","name","name","ne","negative_to_usize","new","new","new","new","new","new","new","new","new","new","new","new","new","new_cyclic","new_from_index","new_from_index","new_inserting_at_index","new_uninit","new_uninit_slice","new_zeroed","new_zeroed_slice","not_equal","not_equal_missing","null","null_count","null_count","nulls_last","other","partial_cmp","peak_max","peak_max","peak_min","peak_min","pin","polars_bail","polars_ensure","polars_err","polars_warn","prob","prod_as_series","provide","provide","ptr_eq","quantile","quantile_as_series","quantile_as_series","rechunk","registry","rem","remainder","remove","rename","rename","repeat_by","repeat_by","reverse","reverse","right_by","rolling_apply","rolling_apply","set","set_at_idx","set_at_idx_with","set_bit_unchecked","set_dtype","set_dtype_at_index","shift","shift","shift_and_fill","shift_remove","shift_remove_index","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","slice","slice","slice","slice","slice_typed","slice_typed","slice_typed_unchecked","slice_typed_unchecked","slice_unchecked","sort","sort_with","sort_with","source","spawn_local_obj","spawn_obj","status","status_local","std","std_as_series","std_as_series","str_concat","str_concat","strategy","streamable","stringcache","strong_count","sub","subtract","suffix","sum","sum_as_series","take","take","take_iter","take_iter_unchecked","take_opt_iter","take_opt_iter_unchecked","take_rand","take_unchecked","take_unchecked","tile","to_arrow","to_boxed","to_boxed","to_byte_slices","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_supertype","tolerance","tolerance_str","try_apply","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_get","try_get_at_index","try_get_field","try_get_full","try_get_mut","try_index_of","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new_uninit","try_new_zeroed","try_pin","try_unwrap","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_name","type_name","unique","unique","unwrap","unwrap_or_clone","utf8","validation","validity","value","value_name","value_unchecked","value_vars","values","var","var_as_series","var_as_series","variable_name","vec_hash","vec_hash_combine","view","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weak_count","weights","window_size","with_capacity","with_capacity","with_column","with_metadata","with_metadata","with_validity","zip_with","groups","rolling","ObjectChunkedBuilder","append_null","append_null","append_option","append_value","append_value","append_value_from_any","borrow","borrow_mut","default","deref","deref_mut","drop","finish","from","init","into","new","to_series","try_from","try_into","type_id","vzip","CatIter","CategoricalChunked","CategoricalChunkedBuilder","Global","GlobalFinished","Local","Local","RevMapping","RevMappingBuilder","StrHashLocal","Aws","Azure","CloudOptions","CloudType","File","Gcp","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","from","from","from_str","from_untyped_config","init","init","into","into","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","AnyValue","Array","Array","ArrayChunked","ArrowDataType","ArrowTimeUnit","AsRefDataType","Binary","Binary","Binary","BinaryChunked","BinaryOwned","BinaryType","Boolean","Boolean","Boolean","BooleanChunked","BooleanType","CatIter","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalType","CloudOptions","DataType","Date","Date","Date32","Date64","DateChunked","DateType","Datetime","Datetime","DatetimeChunked","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dictionary","Duration","Duration","Duration","DurationChunked","DurationType","Extension","Field","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","GetAnyValue","Global","GlobalFinished","HashMap","IDX_DTYPE","IdxArr","IdxCa","IdxSize","IdxType","InitHashMaps","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","LargeBinary","LargeList","LargeUtf8","List","List","List","ListChunked","ListType","Local","Local","Logical","LogicalType","Map","Microsecond","Microseconds","Millisecond","Milliseconds","Nanosecond","Nanoseconds","Native","Null","Null","Null","NumericNative","Object","Object","ObjectChunked","ObjectOwned","ObjectType","OwnedObject","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsDataType","PolarsFloatType","PolarsIntegerType","PolarsNumericType","PolarsSingleType","RevMapping","RevMappingBuilder","Second","StrHashLocal","Struct","Struct","Struct","StructChunked","StructOwned","Time","Time","Time32","Time64","TimeChunked","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8Owned","Utf8Type","as_ref_dtype","cast","dtype","dtype","get_any_value","get_any_value_unchecked","get_dtype","get_unchecked","merge_dtypes","name","new","with_capacity","FromData","FromDataBinary","FromDataUtf8","from_data_default","from_data_unchecked_default","from_data_unchecked_default","AnonymousBuilder","borrow","borrow_mut","default","deref","deref_mut","drop","finish","from","init","into","is_empty","new","push","push_null","try_from","try_into","type_id","vzip","width","AnonymousBuilder","borrow","borrow_mut","convert_inner_type","deref","deref_mut","drop","finish","from","init","into","is_empty","new","offsets","push","push_empty","push_multiple","push_null","push_opt","take_offsets","try_from","try_into","type_id","vzip","MutableNullArray","as_any","as_box","as_mut_any","borrow","borrow_mut","data_type","default","deref","deref_mut","drop","fmt","from","init","into","len","push_null","reserve","shrink_to_fit","try_from","try_into","type_id","validity","vzip","AnonymousObjectBuilder","BuilderConstructor","ObjectConverter","append_null","append_value","get_object_builder","get_object_converter","is_object_builder_registered","register_object_builder","to_series","SlicedArray","slice_typed","slice_typed_unchecked","IUseStringCache","enable_string_cache","reset_string_cache","using_string_cache","with_string_cache","BinaryFromIter","Utf8FromIter","from_values_iter","from_values_iter","Array","Backward","BinaryTakeRandom","BinaryTakeRandomSingleChunk","BoolTakeRandom","BoolTakeRandomSingleChunk","ChunkAgg","ChunkAnyValue","ChunkApply","ChunkApplyKernel","ChunkBytes","ChunkCast","ChunkCompare","ChunkCumAgg","ChunkExpandAtIndex","ChunkExplode","ChunkFillNullValue","ChunkFilter","ChunkFull","ChunkFullNull","ChunkPeaks","ChunkQuantile","ChunkReverse","ChunkRollApply","ChunkSet","ChunkShift","ChunkShiftFill","ChunkSort","ChunkTake","ChunkUnique","ChunkVar","ChunkZip","Dummy","FillNullLimit","FillNullStrategy","Forward","IntoTakeRandom","IsFirst","IsIn","IsLast","Item","Item","Item","Item","Iter","IterNulls","ListTakeRandom","ListTakeRandomSingleChunk","Max","MaxBound","Mean","Min","MinBound","Multi","Multi","NumTakeRandomChunked","NumTakeRandomCont","NumTakeRandomSingleChunk","ObjectTakeRandom","ObjectTakeRandomSingleChunk","One","RepeatBy","Single","Single","SingleNoNull","SortMultipleOptions","SortOptions","StrConcat","TakeIdx","TakeIterator","TakeIteratorNulls","TakeRandBranch2","TakeRandBranch3","TakeRandom","TakeRandom","TakeRandomBitmap","TakeRandomUtf8","Utf8TakeRandom","Utf8TakeRandomSingleChunk","Zero","apply","apply_cast_numeric","apply_kernel","apply_kernel_cast","apply_on_opt","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arg_sort","arg_sort_multiple","arg_unique","boxed_clone","boxed_clone","branch_apply_cast_numeric_no_null","cast","cast_unchecked","check_bounds","check_bounds","cummax","cummin","cumprod","cumsum","descending","descending","equal","equal_missing","explode","explode_and_offsets","fill_null_with_values","filter","full","full","full_null","get","get","get_any_value","get_any_value_unchecked","get_unchecked","get_unchecked","gt","gt_eq","is_first","is_in","is_last","lt","lt_eq","maintain_order","max","mean","median","min","mode","multithreaded","multithreaded","n_unique","new_from_index","not_equal","not_equal_missing","nulls_last","other","peak_max","peak_min","quantile","repeat_by","reverse","rolling_apply","set","set_at_idx","set_at_idx_with","shift","shift_and_fill","sort","sort","sort_with","std","str_concat","sum","take","take_rand","take_unchecked","to_byte_slices","try_apply","unique","var","zip","zip_with","_broadcast_descending","arg_sort_multiple","arg_sort_no_nulls","sort_slice_ascending","sort_slice_descending","_get_rows_encoded","_get_rows_encoded_ca","_get_rows_encoded_compat_array","conversion","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","time_to_time64ns","unix_time","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","PolarsAsRef","AnyValue","Array","Array","ArrayChunked","ArrowDataType","ArrowTimeUnit","AsRefDataType","Binary","Binary","Binary","BinaryChunked","BinaryOwned","BinaryType","Boolean","Boolean","Boolean","BooleanChunked","BooleanType","CatIter","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalType","CloudOptions","DataType","Date","Date","Date32","Date64","DateChunked","DateType","Datetime","Datetime","DatetimeChunked","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dictionary","Duration","Duration","Duration","DurationChunked","DurationType","Extension","Field","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","GetAnyValue","Global","GlobalFinished","HashMap","IDX_DTYPE","IdxArr","IdxCa","IdxSize","IdxType","InitHashMaps","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","LargeBinary","LargeList","LargeUtf8","List","List","List","ListChunked","ListType","Local","Local","Logical","LogicalType","Map","Microsecond","Microseconds","Millisecond","Milliseconds","Nanosecond","Nanoseconds","Native","Null","Null","Null","NumericNative","Object","Object","ObjectChunked","ObjectOwned","ObjectType","OwnedObject","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsDataType","PolarsFloatType","PolarsIntegerType","PolarsNumericType","PolarsSingleType","RevMapping","RevMappingBuilder","Second","StrHashLocal","Struct","Struct","Struct","StructChunked","StructOwned","Time","Time","Time32","Time64","TimeChunked","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8Owned","Utf8Type","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_iter_struct_av","_materialize_struct_av","add","add","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","agg_list","append","append_null","append_value","arg_sort","as_borrowed","as_date_iter","as_datetime_iter","as_ref_dtype","as_time_iter","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cast","cast","cast","cast","cast","cast","cast","cast","cast","cast_time_unit","cast_time_unit","categorical","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","checked_div","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","coerce","convert_time_zone","data_type","days","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","divide","divide","divide","divide","divide","divide","divide","divide","divide","divide","divide","drain_iter","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dtype","dtype","dtype","dtype","dtype","dtype","dtype","dtype","dtype","dtype","eq","eq","eq","eq","eq","eq","eq","eq","equal","equal_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exits","field","field_by_name","fields","fields_mut","find","finish","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_cats_and_rev_map_unchecked","from_duration","from_duration_options","from_global_indices_unchecked","from_naive_date","from_naive_date_options","from_naive_datetime","from_naive_datetime_options","from_naive_time","from_naive_time_options","from_owned","full_null","full_null","get","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_categories","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_optional","get_rev_map","get_str","get_unchecked","gt","gt_eq","hash","hash","hash","hash","hash","hash","hour","hours","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_dtype","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_series","into_series","into_series","into_series","into_series","into_series","into_series","into_static","is_empty","is_empty","is_float","is_global","is_in","is_integer","is_local","is_logical","is_nested_null","is_nested_null","is_numeric","is_primitive","is_signed","is_signed","is_temporal","is_unsigned","is_unsigned","iter_str","len","len","len","logical","lt","lt_eq","merge_dtypes","microseconds","milliseconds","minute","minutes","month_end","month_end","month_start","month_start","mul","multiply","multiply","multiply","multiply","multiply","multiply","multiply","multiply","multiply","multiply","multiply","n_unique","name","name","name","name","nanosecond","nanoseconds","new","new","new","new","new","new","new","new","new","new","new","new","next","not_equal","not_equal_missing","null_count","parse_from_str_slice","parse_from_str_slice","partial_cmp","precision","rechunk","ref_field","remainder","remainder","remainder","remainder","remainder","remainder","remainder","remainder","remainder","remainder","remainder","rename","round","round","same_src","scale","second","seconds","set_lexical_sorted","set_name","set_time_unit","set_time_unit","set_time_zone","size_hint","sort","sort_with","strftime","strftime","strftime","sub","subtract","subtract","subtract","subtract","subtract","subtract","subtract","subtract","subtract","subtract","subtract","time_unit","time_unit","time_zone","to_arrow","to_arrow","to_arrow","to_ascii","to_logical_type","to_ops","to_ops","to_ops","to_ops","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_physical_type","to_string","to_string","to_string","to_string","to_string","to_string","truncate","truncate","try_extract","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unique","unnest","value_counts","value_within_range","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","CatIter","CategoricalChunked","CategoricalChunkedBuilder","Global","GlobalFinished","Local","Local","RevMapping","RevMappingBuilder","StrHashLocal","stringcache","IUseStringCache","borrow","borrow_mut","default","deref","deref_mut","drop","drop","enable_string_cache","from","hold","init","into","reset_string_cache","try_from","try_into","type_id","using_string_cache","vzip","with_string_cache","changelog","v0_10_0_11","v0_3","v0_4","v0_5","v0_6","v0_7","v0_8","v0_9","eager","lazy","performance","ArrowError","ArrowError","ColumnNotFound","ComputeError","Duplicate","ErrString","External","ExternalFormat","InvalidArgumentError","InvalidOperation","Io","Io","NoData","NotYetImplemented","OutOfSpec","Overflow","PolarsError","PolarsResult","SchemaFieldNotFound","SchemaMismatch","ShapeMismatch","StringCacheMismatch","StructFieldNotFound","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","feature_gated","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_external_error","get_warning_function","init","init","init","into","into","into","map_err","polars_bail","polars_ensure","polars_err","polars_warn","provide","provide","set_warning_function","source","to_compute_err","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","wrap_msg","_boost_hash_combine","AHashMap","AHashSet","AHasher","HashMap","HashMapExt","HashSet","HashSetExt","RandomState","__clone_box","__clone_box","__clone_box","bitand","bitor","bitxor","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","build_hasher","clone","clone","clone","clone_into","clone_into","clone_into","default","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","extend","extend","finish","fmt","fmt","fmt","from","from","from","from","from","from_iter","generate_with","hash_one","hash_one","init","init","init","into","into","into","into","into_iter","into_iter","into_vec","into_vec","new","new","new","new","random_state","sub","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_capacity","with_capacity","with_capacity","with_capacity_and_hasher","with_hasher","with_seed","with_seeds","write","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","RandomSource","RandomState","gen_hasher_seed","set_random_source","AHashMap","Either","Left","Right","__clone_box","array","bitmap","borrow","borrow_mut","buffer","chunk","clone","clone_into","compute","datatypes","default","deref","deref","deref_mut","deref_mut","drop","eq","equivalent","equivalent","equivalent","equivalent","error","extend","extend","ffi","fmt","from","from","from","from_iter","get","get_key_value","get_mut","index","init","insert","into","into","into_iter","into_iter","into_iter","into_keys","into_values","io","mmap","new","offset","remove","scalar","temporal_conversions","to_owned","trusted_len","try_from","try_into","type_id","types","util","vzip","with_capacity","with_capacity_and_hasher","with_hasher","Array","ArrayValuesIter","BinaryArray","BinaryValueIter","BooleanArray","DaysMsArray","DaysMsVec","DictionaryArray","DictionaryKey","FixedSizeBinaryArray","FixedSizeListArray","Float16Array","Float16Vec","Float32Array","Float32Vec","Float64Array","Float64Vec","GenericBinaryArray","Int128Array","Int128Vec","Int16Array","Int16Vec","Int256Array","Int256Vec","Int32Array","Int32Vec","Int64Array","Int64Vec","Int8Array","Int8Vec","KEY_TYPE","ListArray","ListValuesIter","MapArray","MonthsDaysNsArray","MonthsDaysNsVec","MutableArray","MutableBinaryArray","MutableBinaryValuesArray","MutableBooleanArray","MutableDictionaryArray","MutableFixedSizeBinaryArray","MutableFixedSizeListArray","MutableListArray","MutableNullArray","MutablePrimitiveArray","MutableStructArray","MutableUtf8Array","MutableUtf8ValuesArray","NullArray","PrimitiveArray","PushUnchecked","StructArray","TryExtend","TryExtendFromSelf","TryPush","UInt16Array","UInt16Vec","UInt32Array","UInt32Vec","UInt64Array","UInt64Vec","UInt8Array","UInt8Vec","UnionArray","Utf8Array","Utf8ValuesIter","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","add","add","always_fits_usize","append_null","append_series","apply_validity","apply_validity","apply_validity","apply_validity","apply_values","apply_values_mut","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","arced","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_any_mut","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_mut_any","as_ref","as_usize","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed","boxed_clone","boxed_clone","capacity","capacity","capacity","capacity","capacity","check_bounds","check_bounds","checked_add","checked_add","checked_add","checked_div","checked_div","checked_div","checked_mul","checked_mul","checked_mul","checked_rem","checked_rem","checked_sub","checked_sub","checked_sub","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","default","default","default","default","default","default","default","default","default","default","default_data_type","default_data_type","default_data_type","default_data_type","default_datatype","default_datatype","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","div","div","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equal","extend","extend","extend","extend","extend","extend","extend_constant","extend_from_slice","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_unchecked","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_trusted_len_values_unchecked","extend_values","extend_values","field","fields","finish","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_data_default","from_data_default","from_data_unchecked_default","from_data_unchecked_default","from_inner","from_inner_unchecked","from_inner_unchecked","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_values","from_iter_values","from_iter_values","from_iter_values","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_slice","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_trusted_len_values_iter_unchecked","from_values","from_vec","from_vec","get","get","get","get","get","get","get","get","get","get","get","get","get_child_field","get_child_type","get_display","get_fields","get_mut_values","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_value_display","get_values_size","get_values_size","get_values_size","get_values_size","growable","index","index_unchecked","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_arc","into_arc","into_arc","into_arc","into_arc","into_arc","into_arc","into_box","into_box","into_data","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_mut","into_mut","into_mut","into_mut","into_vec","into_vec","is_empty","is_empty","is_null","is_null_unchecked","is_null_unchecked","is_null_unchecked","is_null_unchecked","is_null_unchecked","is_null_unchecked","is_ordered","is_sparse","is_valid","is_valid","is_valid_unchecked","is_valid_unchecked","is_valid_unchecked","is_valid_unchecked","is_valid_unchecked","is_valid_unchecked","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter","iter_typed","iter_values","key_value","keys","keys","keys_iter","keys_values_iter","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","map","mul","mul","mul","mut_values","mut_values","mut_values","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty","new_empty_array","new_from","new_from","new_from_mutable","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null","new_null_array","new_unchecked","new_unchecked","new_unchecked","new_with_capacity","new_with_field","new_with_field","next","next_back","nth","null_count","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","offsets","ord","overflowing_add","overflowing_add","overflowing_mul","overflowing_mul","overflowing_sub","overflowing_sub","pop","pop","pop","pop","pop","pop","pop","push","push","push","push","push","push","push","push","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_null","push_unchecked","push_unchecked","push_valid","rem","rem","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","reserve","saturating_add","saturating_add","saturating_add","saturating_mul","saturating_mul","saturating_mul","saturating_sub","saturating_sub","saturating_sub","set","set","set_unchecked","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_validity","set_values","set_values","set_values","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","size","size","size","size","size_hint","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_typed_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","slice_unchecked","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sliced_unchecked","sub","sub","sub","to","to","to","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_boxed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend","try_extend_from_lengths","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_extend_from_self","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_iter","try_from_iter","try_from_iter","try_from_iter","try_from_keys","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_get_child","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new","try_new_unchecked","try_new_unchecked","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push","try_push_valid","try_push_valid","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","types","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","validity","value","value","value","value","value","value","value","value","value","value","value","value","value","value","value","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","value_unchecked","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter","values_iter_typed","values_mut_slice","values_mut_slice","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacities","with_capacities","with_capacities","with_capacities","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity_from","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_validity","with_values","with_values","wrapping_add","wrapping_mul","wrapping_sub","Growable","GrowableBinary","GrowableBoolean","GrowableDictionary","GrowableFixedSizeBinary","GrowableFixedSizeList","GrowableList","GrowableMap","GrowableNull","GrowablePrimitive","GrowableStruct","GrowableUnion","GrowableUtf8","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_arc","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","as_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","extend_validity","from","from","from","from","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","len","len","len","len","len","len","len","len","len","len","len","len","len","make_growable","new","new","new","new","new","new","new","new","new","new","new","new","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","DynComparator","build_compare","total_cmp","total_cmp_f32","total_cmp_f64","Bitmap","IntoIter","MutableBitmap","__clone_box","__clone_box","__clone_box","and","as_slice","as_slice","as_slice_mut","binary","binary_assign","bitand","bitand","bitand_assign","bitor","bitor","bitor_assign","bitxor","bitxor","bitxor_assign","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","capacity","chunk_iter_to_vec","chunks","clear","clone","clone","clone","clone_into","clone_into","clone_into","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","eq","extend_constant","extend_from_bitmap","extend_from_slice","extend_from_slice_unchecked","extend_from_trusted_len_iter","extend_from_trusted_len_iter_unchecked","fmt","fmt","fmt","from","from","from","from","from","from","from_chunk_iter_unchecked","from_inner","from_inner_unchecked","from_iter","from_iter","from_len_set","from_len_zeroed","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_unchecked","from_trusted_len_iter_unchecked","from_u8_slice","from_u8_vec","from_vec","get","get","get_bit","get_bit_unchecked","init","init","init","into","into","into","into_inner","into_iter","into_iter","into_iter","into_iter","into_mut","is_empty","is_empty","iter","iter","len","len","make_mut","new","new","new","new_zeroed","next","next_back","not","not","nth","null_count","null_count","null_count_range","or","par_bridge","pop","push","push_unchecked","quaternary","reserve","set","set_bit_unchecked","set_unchecked","shrink_to_fit","size_hint","slice","slice_unchecked","sliced","sliced_unchecked","ternary","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from_trusted_len_iter","try_from_trusted_len_iter","try_from_trusted_len_iter_unchecked","try_from_trusted_len_iter_unchecked","try_into","try_into","try_into","try_new","try_new","type_id","type_id","type_id","unary","unary_assign","unset_bits","unset_bits","utils","vzip","vzip","vzip","with_capacity","xor","BitChunk","BitChunkIterExact","BitChunks","BitChunksExact","BitChunksExactMut","BitmapIter","Optional","Required","SlicesIterator","ZipValidity","ZipValidityIter","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed_clone","boxed_clone","bytes_for","check_bounds","check_bounds","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","count_zeros","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_ne_bytes","get_bit","get_bit_unchecked","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_vec","into_vec","into_vec","into_vec","is_empty","is_set","len","len","new","new","new","new","new","new","new","new_with_validity","next","next","next","next","next","next","next","next_back","next_back","next_back","nth","nth","nth","remainder","remainder","remainder","remainder","remainder","remainder","remainder_iter","remainder_len","remainder_len","remainder_len","remainder_len","remainder_len","set","set_bit","set_bit_unchecked","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","slots","to_ne_bytes","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap_optional","unwrap_required","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Buffer","Bytes","__clone_box","as_slice","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","from","from","from","from","from","from_inner_unchecked","from_iter","get_mut","get_mut_slice","init","init","into","into","into_inner","into_iter","into_mut","into_vec","into_vec","is_empty","is_sliced","len","new","offset","set_len","shared_count_strong","shared_count_weak","slice","slice_unchecked","sliced","sliced_unchecked","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Chunk","__clone_box","arrays","borrow","borrow_mut","clone","clone_into","columns","deref","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","from","init","into","into_arrays","is_empty","len","new","to_owned","try_from","try_into","try_new","type_id","vzip","aggregate","arithmetics","arity","arity_assign","boolean","boolean_kleene","cast","comparison","concatenate","filter","if_then_else","like","substring","take","temporal","MAX","MIN","SimdOrd","Sum","can_max","can_min","can_sum","estimated_bytes_size","max","max_binary","max_boolean","max_element","max_lane","max_primitive","max_string","min","min_binary","min_boolean","min_element","min_lane","min_primitive","min_string","new_max","new_min","simd_sum","sum","sum_primitive","sum_slice","ArrayAdd","ArrayCheckedAdd","ArrayCheckedDiv","ArrayCheckedMul","ArrayCheckedRem","ArrayCheckedSub","ArrayDiv","ArrayMul","ArrayOverflowingAdd","ArrayOverflowingMul","ArrayOverflowingSub","ArrayRem","ArraySaturatingAdd","ArraySaturatingMul","ArraySaturatingSub","ArraySub","ArrayWrappingAdd","ArrayWrappingMul","ArrayWrappingSub","add","add","add_scalar","basic","can_add","can_div","can_mul","can_neg","can_rem","can_sub","checked_add","checked_div","checked_mul","checked_rem","checked_sub","decimal","div","div","div_scalar","mul","mul","mul_scalar","neg","overflowing_add","overflowing_mul","overflowing_sub","rem","rem","saturating_add","saturating_mul","saturating_sub","sub","sub","sub_scalar","time","wrapping_add","wrapping_mul","wrapping_sub","NativeArithmetics","add","add_scalar","checked_add","checked_add_scalar","checked_div","checked_div_scalar","checked_mul","checked_mul_scalar","checked_negate","checked_powf_scalar","checked_rem","checked_rem_scalar","checked_sub","checked_sub_scalar","div","div_scalar","mul","mul_scalar","negate","overflowing_add","overflowing_add_scalar","overflowing_mul","overflowing_mul_scalar","overflowing_sub","overflowing_sub_scalar","powf_scalar","rem","rem_scalar","saturating_add","saturating_add_scalar","saturating_mul","saturating_mul_scalar","saturating_sub","saturating_sub_scalar","sub","sub_scalar","wrapping_add","wrapping_add_scalar","wrapping_mul","wrapping_mul_scalar","wrapping_negate","wrapping_sub","wrapping_sub_scalar","adaptive_add","adaptive_div","adaptive_mul","adaptive_sub","add","checked_add","checked_div","checked_mul","checked_sub","div","div_scalar","mul","mul_scalar","saturating_add","saturating_div","saturating_mul","saturating_sub","sub","add_duration","add_duration_scalar","add_interval","add_interval_scalar","sub_duration_scalar","sub_timestamps_scalar","subtract_duration","subtract_timestamps","binary","binary_checked","binary_with_bitmap","try_binary","try_unary","unary","unary_checked","unary_with_bitmap","binary","unary","all","and","and_scalar","any","is_not_null","is_null","not","or","or_scalar","all","and","and_scalar","any","or","or_scalar","CastOptions","__clone_box","binary_large_to_binary","binary_to_dictionary","binary_to_large_binary","binary_to_large_utf8","binary_to_list","binary_to_primitive","binary_to_utf8","boolean_to_binary","boolean_to_primitive","boolean_to_utf8","borrow","borrow_mut","can_cast_types","cast","clone","clone_into","date32_to_date64","date64_to_date32","days_ms_to_months_days_ns","decimal_to_decimal","decimal_to_float","decimal_to_integer","default","deref","deref_mut","dictionary_to_dictionary_keys","dictionary_to_dictionary_values","dictionary_to_values","drop","f16_to_f32","fixed_size_binary_binary","float_to_decimal","fmt","from","init","integer_to_decimal","into","months_to_months_days_ns","naive_timestamp_to_utf8","partial","partial_binary_to_primitive","partial_utf8_to_primitive","primitive_as_primitive","primitive_to_binary","primitive_to_boolean","primitive_to_dictionary","primitive_to_primitive","primitive_to_same_primitive","primitive_to_utf8","time32_to_time64","time32ms_to_time32s","time32s_to_time32ms","time64_to_time32","time64ns_to_time64us","time64us_to_time64ns","timestamp_to_date32","timestamp_to_date64","timestamp_to_timestamp","timestamp_to_utf8","to_owned","try_from","try_into","type_id","utf8_large_to_utf8","utf8_to_binary","utf8_to_date32","utf8_to_date64","utf8_to_dictionary","utf8_to_large_utf8","utf8_to_naive_timestamp_ns","utf8_to_primitive","utf8_to_timestamp_ns","vzip","wrapped","wrapping_dictionary_to_dictionary_keys","wrapping_dictionary_to_dictionary_values","Simd","Simd8","Simd8Lanes","Simd8PartialEq","Simd8PartialOrd","binary","boolean","can_eq","can_eq_scalar","can_gt","can_gt_eq","can_gt_eq_scalar","can_gt_scalar","can_lt","can_lt_eq","can_lt_eq_scalar","can_lt_scalar","can_neq","can_neq_scalar","eq","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","finish_eq_validities","finish_neq_validities","from_chunk","from_incomplete_chunk","gt","gt","gt_eq","gt_eq","gt_eq_scalar","gt_scalar","lt","lt","lt_eq","lt_eq","lt_eq_scalar","lt_scalar","neq","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","primitive","utf8","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","compare_op_scalar","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","compare_op_scalar","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","eq","eq_and_validity","eq_scalar","eq_scalar_and_validity","gt","gt_eq","gt_eq_scalar","gt_scalar","lt","lt_eq","lt_eq_scalar","lt_scalar","neq","neq_and_validity","neq_scalar","neq_scalar_and_validity","concatenate","Filter","build_filter","filter","filter_chunk","if_then_else","like_binary","like_binary_scalar","like_utf8","like_utf8_scalar","nlike_binary","nlike_binary_scalar","nlike_utf8","nlike_utf8_scalar","can_substring","substring","can_take","take","can_day","can_hour","can_iso_week","can_minute","can_month","can_nanosecond","can_second","can_weekday","can_year","day","hour","iso_week","minute","month","nanosecond","second","weekday","year","Binary","Binary","Boolean","Boolean","DataType","Date32","Date64","DayTime","DaysMs","Decimal","Decimal256","Dense","Dictionary","Dictionary","Duration","Extension","Field","FixedSizeBinary","FixedSizeBinary","FixedSizeList","FixedSizeList","Float16","Float16","Float32","Float32","Float64","Float64","Int128","Int16","Int16","Int16","Int256","Int32","Int32","Int32","Int64","Int64","Int64","Int8","Int8","Int8","IntegerType","Interval","IntervalUnit","LargeBinary","LargeBinary","LargeList","LargeList","LargeUtf8","LargeUtf8","List","List","Map","Map","Metadata","Microsecond","Millisecond","MonthDayNano","MonthDayNano","Nanosecond","Null","Null","PhysicalType","Primitive","PrimitiveType","Schema","SchemaRef","Second","Sparse","Struct","Struct","Time32","Time64","TimeUnit","Timestamp","UInt16","UInt16","UInt16","UInt32","UInt32","UInt32","UInt64","UInt64","UInt64","UInt8","UInt8","UInt8","Union","Union","UnionMode","Utf8","Utf8","YearMonth","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq_primitive","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","get_extension","hash","hash","hash","hash","hash","init","init","init","init","init","into","into","into","into","into","is_dense","is_nullable","is_sparse","metadata","metadata","name","sparse","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","Error","External","ExternalFormat","InvalidArgumentError","Io","NotYetImplemented","OutOfSpec","Overflow","Result","ArrowArray","ArrowArrayStream","ArrowArrayStreamReader","ArrowSchema","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","empty","empty","empty","export_array_to_c","export_field_to_c","export_iterator","field","fmt","fmt","fmt","from","from","from","from","import_array_from_c","import_field_from_c","init","init","init","init","into","into","into","into","mmap","next","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_new","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","bitmap","slice","ipc","json","ndjson","parquet","IpcField","IpcSchema","__clone_box","__clone_box","append","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","default","deref","deref","deref_mut","deref_mut","dictionary_id","drop","drop","eq","eq","fields","fields","fmt","fmt","from","from","init","init","into","into","is_little_endian","read","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","write","Dictionaries","ExpectedBuffer","FileMetadata","FileReader","InvalidBitmap","InvalidBuffer","InvalidBuffersLength","InvalidDataType","InvalidFlatbufferBlock","InvalidFlatbufferBodyLength","InvalidFlatbufferBuffers","InvalidFlatbufferCompression","InvalidFlatbufferData","InvalidFlatbufferDictionaries","InvalidFlatbufferFooter","InvalidFlatbufferHeader","InvalidFlatbufferId","InvalidFlatbufferIsDelta","InvalidFlatbufferMessage","InvalidFlatbufferNodes","InvalidFlatbufferRecordBatches","InvalidFlatbufferSchema","InvalidFlatbufferVersion","InvalidFooter","InvalidHeader","InvalidId","InvalidIdDataType","MissingData","MissingFields","MissingMessageBuffers","MissingMessageHeader","MissingMessageNodes","MissingRecordBatches","MissingSchema","NegativeFooterLength","OutOfSpecKind","Some","StreamMetadata","StreamReader","StreamState","UnexpectedMessageType","UnexpectedNegativeInteger","Waiting","__clone_box","__clone_box","blocks","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deserialize_schema","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","from","from","from","from","from","from","get_scratches","init","init","init","init","init","init","into","into","into","into","into","into","into_inner","into_iter","into_iter","ipc_schema","ipc_schema","is_finished","metadata","metadata","new","new","next","next","next_record_batch","next_record_batch","read_batch","read_file_dictionaries","read_file_metadata","read_stream_metadata","schema","schema","schema","schema","set_scratches","size","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","unwrap","version","vzip","vzip","vzip","vzip","vzip","vzip","buffer_length","buffers_size","file_size","length","length","number_of_bits","requested_id","requested_id","required_number_of_bytes","type_name","Compression","FileWriter","LZ4","Record","StreamWriter","WriteOptions","ZSTD","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","columns","compression","default","default_ipc_fields","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","file_async","finish","finish","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","get_scratches","hash","hash","init","init","init","init","init","into","into","into","into","into","into_inner","into_inner","new","new","schema_to_bytes","set_scratches","start","start","stream_async","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from_file","try_into","try_into","try_into","try_into","try_into","try_new","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","write","write","write","FileSink","borrow","borrow_mut","deref","deref_mut","drop","from","init","into","new","poll_close","poll_flush","poll_ready","start_send","try_from","try_into","type_id","vzip","StreamSink","WriteOptions","borrow","borrow_mut","compression","deref","deref_mut","drop","from","init","into","new","poll_close","poll_flush","poll_ready","start_send","try_from","try_into","type_id","vzip","write","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","RecordSerializer","Serializer","Skip","SkipWhile","Take","TakeWhile","advance","advance_back","all","any","by_ref","convert","count","empty","filter","find","for_each","fuse","get","map","map_err","map_ref","next","next_back","nth","position","size_hint","skip","skip_while","take","take_while","write","write","Error","FallibleStreamingIterator","FileWriter","Item","Serializer","advance","all","any","by_ref","count","filter","find","for_each","fuse","get","map","map_err","map_ref","next","nth","position","size_hint","skip","skip_while","take","take_while","read","write","ArrayIter","BasicDecompressor","Boolean","Bson","Bson","ByteArray","ColumnChunkMetaData","ColumnDescriptor","CompressedDataPage","Data","DataPageHeader","Date","Date","Decimal","Decimal","Decompressor","Dict","Double","Enum","Enum","Error","Error","FallibleStreamingIterator","FeatureNotActive","FeatureNotSupported","FileMetaData","FileReader","Finished","FixedLenByteArray","Float","GroupLogicalType","GroupType","InitNested","Int16","Int32","Int32","Int64","Int64","Int8","Int96","Integer","Interval","InvalidParameter","Item","Item","Json","Json","List","List","Map","Microseconds","Milliseconds","MutStreamingIterator","Nanoseconds","NestedArrayIter","NestedState","OutOfSpec","Page","PageFilter","PageReader","Pages","ParquetError","ParquetTimeUnit","ParquetType","PhysicalType","Primitive","PrimitiveConvertedType","PrimitiveLogicalType","PrimitiveType","ReadColumnIterator","RowGroupDeserializer","RowGroupMetaData","RowGroupReader","Some","State","String","Struct","StructIterator","Time","TimeMicros","TimeMillis","Timestamp","TimestampMicros","TimestampMillis","Uint16","Uint32","Uint64","Uint8","Unknown","Utf8","Uuid","V1","V2","WouldOverAllocate","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_read_columns_indexes","_read_metadata","_read_metadata_async","advance","advance","advance","advance","advance","all","any","base_type","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","byte_range","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","column_chunk","column_encoding","column_iter_to_arrays","column_orders","columns","compressed_size","compressed_size","compression","count","create_list","create_map","created_by","data_page_offset","decompress","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descriptor","descriptor","dictionary_page_offset","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","file_offset","file_path","filter","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get_column_iterator","get_field_columns","get_field_pages","get_page_iterator","get_page_stream","has_index_page","hash","hash","hash","hash","index_page_offset","indexes","infer_schema","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init_nested","int96_to_i64_ns","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_buffers","into_inner","into_inner","into_iter","into_iter","into_iter","into_iter","into_iter","into_thrift","key_value_metadata","len","map","map_err","map_ref","metadata","n_columns","nested","new","new","new","new","new","new","new","new","new","new","new","new","new_with_page_meta","next","next","next","next","next","next","nth","num_rows","num_rows","num_rows","num_values","num_values","par_bridge","path_in_schema","physical_type","position","provide","read_columns","read_columns_async","read_columns_many","read_columns_many_async","read_metadata","read_metadata_async","read_pages_locations","row_groups","schema","schema","schema_descr","size_hint","size_hint","skip","skip_while","statistics","statistics","swap_buffer","take","take_while","to_deserializer","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","total_byte_size","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uncompressed_size","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","converted_type","field_info","fields","logical_type","is_adjusted_to_utc","is_adjusted_to_utc","unit","unit","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","Skip","SkipWhile","Take","TakeWhile","advance","advance_back","all","any","by_ref","convert","count","empty","filter","find","for_each","fuse","get","map","map_err","map_ref","next","next_back","nth","position","size_hint","skip","skip_while","take","take_while","ColumnPageStatistics","FieldPageStatistics","FilteredPage","Interval","Multiple","Single","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","compute_page_row_intervals","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","has_indexes","hash","hash","init","init","init","init","into","into","into","into","length","length","max","min","new","null_count","num_rows","read_columns_indexes","read_filtered_pages","selected_rows","start","start","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","FileMetaData","GroupType","KeyValue","ParquetType","PrimitiveType","SchemaDescriptor","column_orders","created_by","infer_schema","key","key_value_metadata","num_rows","parquet_to_arrow_schema","read_schema_from_metadata","row_groups","schema_descr","value","version","converted_type","field_info","fields","logical_type","Statistics","borrow","borrow_mut","deref","deref_mut","deserialize","distinct_count","drop","eq","fmt","from","from","init","into","max_value","min_value","null_count","try_from","try_into","type_id","vzip","BitPacked","Boolean","Brotli","BrotliLevel","ByteArray","ByteStreamSplit","CompressedDataPage","CompressedPage","CompressionOptions","Compressor","Data","Data","DeltaBinaryPacked","DeltaByteArray","DeltaLengthByteArray","Descriptor","Dict","Dict","Double","DynIter","DynStreamingIterator","Encoding","Error","FallibleStreamingIterator","FieldInfo","FileMetaData","FileSink","FileWriter","FixedLenByteArray","Float","GroupType","Gzip","GzipLevel","Int32","Int64","Int96","Item","KeyValue","LargeList","List","Lz4","Lz4Raw","Lzo","Nested","Page","ParquetPhysicalType","ParquetType","Plain","PlainDictionary","Primitive","PrimitiveType","Rle","RleDictionary","RowGroupIter","RowGroupIterator","SchemaDescriptor","Snappy","Struct","ThriftFileMetaData","Uncompressed","V1","V2","Version","WriteOptions","Zstd","ZstdLevel","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","advance","advance","advance","all","any","array_to_columns","array_to_page","array_to_page_simple","array_to_pages","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buffer_mut","by_ref","can_encode","check_contains","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","column_order","column_orders","column_orders","columns","compare","compare","compress","compressed_size","compression","compression","compression_level","compression_level","compression_level","count","created_by","created_by","data_pagesize_limit","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encryption_algorithm","end","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","filter","find","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","footer_signing_key_metadata","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_converted","from_group","from_physical","fuse","get","get","get","get_field_info","get_max_length","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","header","id","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_inner","into_inner","into_inner_and_metadata","into_iter","into_iter","into_thrift","into_vec","into_vec","is_compressed","key","key_value_metadata","key_value_metadata","key_value_metadata","len","map","map_err","map_ref","max_def_level","max_rep_level","metadata","name","name","name","new","new","new","new","new","new","new","new_from_vec","next","next","next","nth","num_rows","num_rows","num_values","num_values","options","options","parquet_schema","parquet_schema","parquet_schema","partial_cmp","partial_cmp","poll_close","poll_flush","poll_ready","position","primitive_type","read_from_in_protocol","read_from_in_protocol","read_from_in_protocol","read_from_in_protocol","repetition","row_group_iter","row_groups","row_groups","schema","schema","schema","schema","schema_descr","select_rows","selected_rows","size_hint","size_hint","size_hint","skip","skip_while","slice_nested_leaf","slice_parquet_array","start_send","statistics","stream_from_in_protocol","stream_from_in_protocol","stream_from_in_protocol","stream_from_in_protocol","take","take_while","to_leaves","to_nested","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_parquet_leaves","to_parquet_schema","to_parquet_type","transverse","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_message","try_from_primitive","try_from_thrift","try_from_thrift","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_new","try_new","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uncompressed_size","value","version","version","version","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","write_def_levels","write_metadata_sidecar","write_rep_and_def","write_statistics","write_to_out_protocol","write_to_out_protocol","write_to_out_stream_protocol","write_to_out_stream_protocol","converted_type","field_info","fields","logical_type","mmap_dictionaries_unchecked","mmap_unchecked","IS_LARGE","Offset","Offsets","OffsetsBuffer","__clone_box","__clone_box","as_slice","as_slice","borrow","borrow","borrow_mut","borrow_mut","buffer","capacity","clone","clone","clone_into","clone_into","default","default","deref","deref","deref","deref_mut","deref_mut","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","extend_constant","first","fmt","fmt","from","from","from","from","from","init","init","into","into","into_inner","into_inner","into_mut","last","last","len","len","len_proxy","len_proxy","lengths","new","new","new_unchecked","new_unchecked","new_zeroed","pop","range","reserve","shrink_to_fit","slice","slice_unchecked","start_end","start_end","start_end_unchecked","start_end_unchecked","to_owned","to_owned","try_extend_from_lengths","try_extend_from_self","try_extend_from_slice","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_iter","try_from_lengths","try_into","try_into","try_push","try_push_usize","type_id","type_id","vzip","vzip","with_capacity","BinaryScalar","BooleanScalar","DictionaryScalar","FixedSizeBinaryScalar","FixedSizeListScalar","ListScalar","MapScalar","NullScalar","PrimitiveScalar","Scalar","StructScalar","UnionScalar","Utf8Scalar","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","data_type","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","new","new","new","new","new","new","new","new","new","new","new","new","new_scalar","to","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","value","value","value","value","value","value","value","values","values","values","values","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","EPOCH_DAYS_FROM_CE","MICROSECONDS","MILLISECONDS","MILLISECONDS_IN_DAY","NANOSECONDS","SECONDS_IN_DAY","add_interval","add_naive_interval","date32_to_date","date32_to_datetime","date64_to_date","date64_to_datetime","parse_offset","parse_offset_tz","time32ms_to_time","time32s_to_time","time64ns_to_time","time64us_to_time","timestamp_ms_to_datetime","timestamp_ns_to_datetime","timestamp_s_to_datetime","timestamp_to_datetime","timestamp_to_naive_datetime","timestamp_us_to_datetime","timeunit_scale","utf8_to_naive_timestamp_ns","utf8_to_naive_timestamp_ns_scalar","utf8_to_naive_timestamp_scalar","utf8_to_timestamp_ns","utf8_to_timestamp_ns_scalar","utf8_to_timestamp_scalar","TrustedLen","BitChunk","BitChunkIter","BitChunkOnes","Bytes","DaysMs","EPSILON","Float16","Float32","Float64","IS_LARGE","Index","IndexRange","Int128","Int16","Int256","Int32","Int64","Int8","MonthDayNano","NativeType","Offset","PRIMITIVE","PrimitiveType","UInt16","UInt32","UInt64","UInt8","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","compare","days","days","days_ms","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","f16","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_as_usize","from_be_bytes","from_be_bytes","from_be_bytes","from_be_bytes","from_be_bytes","from_bits","from_f32","from_le_bytes","from_le_bytes","from_le_bytes","from_le_bytes","from_le_bytes","from_ne_bytes","from_usize","from_words","hash","hash","hash","i256","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_vec","into_vec","is_valid_bit_pattern","is_valid_bit_pattern","is_valid_bit_pattern","is_valid_bit_pattern","milliseconds","months","months_days_ns","neg","neg","neg","new","new","new","new","new","next","next","next","ns","partial_cmp","range","simd","size_hint","size_hint","size_hint","to_be_bytes","to_be_bytes","to_be_bytes","to_be_bytes","to_be_bytes","to_bits","to_f32","to_le_bytes","to_le_bytes","to_le_bytes","to_le_bytes","to_le_bytes","to_ne_bytes","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_usize","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Chunk","FromMaskChunk","LANES","Mask","Native","NativeSimd","Simd","Simd","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","add_assign","align","align","align","align","align","align","align","align","align","align","align","align","align","align","align","align","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","days_msx8","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","f16x32","f32x16","f64x8","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","from_incomplete_chunk","i128x8","i16x32","i256x8","i32x16","i64x8","i8x64","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","index_mut","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_element","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","max_lane","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_element","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","min_lane","months_days_nsx8","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_max","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","new_min","select","select","select","select","select","select","select","select","select","select","select","select","select","select","select","select","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","simd_sum","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","u16x32","u32x16","u64x8","u8x64","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","lexical_to_bytes","lexical_to_bytes_mut","lexical_to_string","Ambiguous","April","August","AutoSi","Date","DateTime","Datelike","Days","December","Duration","DurationExceedsLimit","DurationExceedsTimestamp","DurationRound","Err","February","FixedOffset","Fri","IsoWeek","January","July","June","Local","LocalResult","MAX","MAX","MAX_DATE","MAX_DATETIME","MAX_UTC","MAX_UTC","MIN","MIN","MIN","MIN_DATE","MIN_DATETIME","MIN_UTC","MIN_UTC","March","May","Micros","Millis","Mon","Month","Months","NaiveDate","NaiveDateTime","NaiveTime","NaiveWeek","Nanos","None","November","October","Offset","Offset","OutOfRange","OutOfRangeError","ParseError","ParseMonthError","ParseResult","ParseWeekdayError","RoundingError","Sat","SecondsFormat","Secs","September","Single","SubsecRound","Sun","Thu","TimeZone","Timelike","TimestampExceedsLimit","Tue","Utc","Wed","Weekday","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","abs","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add","add_assign","add_assign","add_assign","add_assign","add_assign","and_hms","and_hms","and_hms_micro","and_hms_micro","and_hms_micro_opt","and_hms_micro_opt","and_hms_micro_opt","and_hms_milli","and_hms_milli","and_hms_milli_opt","and_hms_milli_opt","and_hms_milli_opt","and_hms_nano","and_hms_nano","and_hms_nano_opt","and_hms_nano_opt","and_hms_nano_opt","and_hms_opt","and_hms_opt","and_hms_opt","and_local_timezone","and_time","and_time","and_time","and_utc","beginning_of_day","beginning_of_day","beginning_of_day","beginning_of_day","beginning_of_hour","beginning_of_hour","beginning_of_hour","beginning_of_hour","beginning_of_minute","beginning_of_minute","beginning_of_minute","beginning_of_minute","beginning_of_month","beginning_of_month","beginning_of_month","beginning_of_month","beginning_of_quarter","beginning_of_quarter","beginning_of_quarter","beginning_of_quarter","beginning_of_week","beginning_of_week","beginning_of_week","beginning_of_week","beginning_of_week_with_start_day","beginning_of_week_with_start_day","beginning_of_week_with_start_day","beginning_of_week_with_start_day","beginning_of_year","beginning_of_year","beginning_of_year","beginning_of_year","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","checked_add","checked_add_days","checked_add_days","checked_add_days","checked_add_months","checked_add_months","checked_add_months","checked_add_signed","checked_add_signed","checked_add_signed","checked_add_signed","checked_sub","checked_sub_days","checked_sub_days","checked_sub_days","checked_sub_months","checked_sub_months","checked_sub_months","checked_sub_signed","checked_sub_signed","checked_sub_signed","checked_sub_signed","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","cmp","cmp","compare","compare","compare","compare","compare","compare","compare","date","date","date_naive","datetime_from_str","day","day","day","day","day","day0","day0","day0","day0","day0","days","days","default","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","description","description","div","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","duration_round","duration_round","duration_round","duration_trunc","duration_trunc","duration_trunc","earliest","east","east_opt","end_of_day","end_of_day","end_of_day","end_of_day","end_of_hour","end_of_hour","end_of_hour","end_of_hour","end_of_minute","end_of_minute","end_of_minute","end_of_minute","end_of_month","end_of_month","end_of_month","end_of_month","end_of_quarter","end_of_quarter","end_of_quarter","end_of_quarter","end_of_week","end_of_week","end_of_week","end_of_week","end_of_week_with_start_day","end_of_week_with_start_day","end_of_week_with_start_day","end_of_week_with_start_day","end_of_year","end_of_year","end_of_year","end_of_year","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","first_day","fix","fix","fix","fixed_offset","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format","format","format","format","format","format_with_items","format_with_items","format_with_items","format_with_items","format_with_items","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_hms","from_hms_micro","from_hms_micro_opt","from_hms_milli","from_hms_milli_opt","from_hms_nano","from_hms_nano_opt","from_hms_opt","from_i64","from_i64","from_isoywd","from_isoywd_opt","from_local","from_local_date","from_local_datetime","from_num_days_from_ce","from_num_days_from_ce_opt","from_num_seconds_from_midnight","from_num_seconds_from_midnight_opt","from_offset","from_offset","from_offset","from_offset","from_std","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_str","from_timestamp","from_timestamp_micros","from_timestamp_millis","from_timestamp_opt","from_u32","from_u64","from_u64","from_utc","from_utc","from_utc_date","from_utc_datetime","from_weekday_of_month","from_weekday_of_month_opt","from_ymd","from_ymd_opt","from_yo","from_yo_opt","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hour","hour","hour","hour","hour12","hours","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_zero","iso_week","iso_week","iso_week","iso_week","iso_week","isoywd","isoywd_opt","iter_days","iter_weeks","kind","last_day","latest","lit","lit","lit","local_minus_utc","map","max_value","microseconds","milliseconds","min_value","minute","minute","minute","minute","minutes","month","month","month","month","month","month0","month0","month0","month0","month0","mul","naive","naive_local","naive_local","naive_utc","naive_utc","name","nanosecond","nanosecond","nanosecond","nanosecond","nanoseconds","neg","new","new","new","now","now","now","now","now","num_days","num_days_from_ce","num_days_from_monday","num_days_from_sunday","num_hours","num_microseconds","num_milliseconds","num_minutes","num_nanoseconds","num_seconds","num_seconds_from_midnight","num_seconds_from_midnight","num_weeks","number_from_monday","number_from_month","number_from_sunday","offset","offset","offset","offset_from_local_date","offset_from_local_date","offset_from_local_date","offset_from_local_date","offset_from_local_datetime","offset_from_local_datetime","offset_from_local_datetime","offset_from_local_datetime","offset_from_utc_date","offset_from_utc_date","offset_from_utc_date","offset_from_utc_date","offset_from_utc_datetime","offset_from_utc_datetime","offset_from_utc_datetime","offset_from_utc_datetime","ordinal","ordinal","ordinal","ordinal","ordinal","ordinal0","ordinal0","ordinal0","ordinal0","ordinal0","overflowing_add_signed","overflowing_sub_signed","parse_and_remainder","parse_and_remainder","parse_and_remainder","parse_and_remainder","parse_from_rfc2822","parse_from_rfc3339","parse_from_str","parse_from_str","parse_from_str","parse_from_str","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","pred","pred","pred","pred","pred_opt","pred_opt","prelude","provide","provide","provide","provide","provide","round_subsecs","round_subsecs","round_subsecs","round_subsecs","second","second","second","second","seconds","signed_duration_since","signed_duration_since","signed_duration_since","signed_duration_since","signed_duration_since","single","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub","sub_assign","sub_assign","sub_assign","sub_assign","sub_assign","succ","succ","succ","succ","succ_opt","succ_opt","sum","sum","time","time","timestamp","timestamp","timestamp","timestamp_micros","timestamp_micros","timestamp_millis","timestamp_millis","timestamp_millis","timestamp_millis_opt","timestamp_nanos","timestamp_nanos","timestamp_nanos","timestamp_opt","timestamp_subsec_micros","timestamp_subsec_micros","timestamp_subsec_millis","timestamp_subsec_millis","timestamp_subsec_nanos","timestamp_subsec_nanos","timezone","timezone","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_rfc2822","to_rfc3339","to_rfc3339_opts","to_std","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","today","today","trunc_subsecs","trunc_subsecs","trunc_subsecs","trunc_subsecs","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap","utc_minus_local","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","week","week","week0","week_of_year","weekday","weekday","weekday","weekday","weekday","weeks","west","west_opt","with_day","with_day","with_day","with_day","with_day","with_day0","with_day0","with_day0","with_day0","with_day0","with_hour","with_hour","with_hour","with_hour","with_minute","with_minute","with_minute","with_minute","with_month","with_month","with_month","with_month","with_month","with_month0","with_month0","with_month0","with_month0","with_month0","with_nanosecond","with_nanosecond","with_nanosecond","with_nanosecond","with_ordinal","with_ordinal","with_ordinal","with_ordinal","with_ordinal","with_ordinal0","with_ordinal0","with_ordinal0","with_ordinal0","with_ordinal0","with_second","with_second","with_second","with_second","with_timezone","with_timezone","with_year","with_year","with_year","with_year","with_year","with_ymd_and_hms","year","year","year","year","year","year","year_ce","years_since","years_since","years_since","ymd","ymd_opt","yo","yo_opt","zero","BadFormat","Day","DelayedFormat","Error","Fixed","Fixed","Hour","Hour12","Impossible","Internal","Internal","InternalFixed","InternalNumeric","Invalid","IsoWeek","IsoYear","IsoYearDiv100","IsoYearMod100","Item","Literal","LongMonthName","LongWeekdayName","LowerAmPm","Minute","Month","Nanosecond","Nanosecond","Nanosecond3","Nanosecond6","Nanosecond9","None","NotEnough","NumDaysFromSun","Numeric","Numeric","Ordinal","OutOfRange","OwnedLiteral","OwnedSpace","Pad","ParseError","ParseErrorKind","ParseResult","Parsed","RFC2822","RFC3339","Second","ShortMonthName","ShortWeekdayName","Space","Space","StrftimeItems","Timestamp","TimezoneName","TimezoneOffset","TimezoneOffsetColon","TimezoneOffsetColonZ","TimezoneOffsetDoubleColon","TimezoneOffsetTripleColon","TimezoneOffsetZ","TooLong","TooShort","UpperAmPm","WeekFromMon","WeekFromSun","WeekdayFromMon","Year","YearDiv100","YearMod100","Zero","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","day","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","format_item","from","from","from","from","from","from","from","from","from","from","hash","hash","hash","hash","hash","hash","hash","hash","hour_div_12","hour_mod_12","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into_iter","isoweek","isoyear","isoyear_div_100","isoyear_mod_100","minute","month","nanosecond","new","new","new","new_with_offset","next","offset","ordinal","parse","parse_and_remainder","second","set_ampm","set_day","set_hour","set_hour12","set_isoweek","set_isoyear","set_isoyear_div_100","set_isoyear_mod_100","set_minute","set_month","set_nanosecond","set_offset","set_ordinal","set_second","set_timestamp","set_week_from_mon","set_week_from_sun","set_weekday","set_year","set_year_div_100","set_year_mod_100","strftime","timestamp","to_datetime","to_datetime_with_timezone","to_fixed_offset","to_naive_date","to_naive_datetime_with_offset","to_naive_time","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","week_from_mon","week_from_sun","weekday","year","year_div_100","year_mod_100","StrftimeItems","Days","IsoWeek","MAX_DATE","MAX_DATETIME","MIN_DATE","MIN_DATETIME","NaiveDate","NaiveDateTime","NaiveTime","NaiveWeek","Ambiguous","FixedOffset","Local","LocalResult","None","Offset","Offset","Single","TimeZone","Utc","datetime_from_str","fix","from_local_date","from_local_datetime","from_offset","from_utc_date","from_utc_datetime","isoywd","isoywd_opt","offset_from_local_date","offset_from_local_datetime","offset_from_utc_date","offset_from_utc_datetime","timestamp","timestamp_millis","timestamp_millis_opt","timestamp_nanos","timestamp_opt","with_ymd_and_hms","ymd","ymd_opt","yo","yo_opt","April","August","AutoSi","Date","DateTime","Datelike","December","February","FixedOffset","Fri","January","July","June","Local","March","May","Micros","Millis","Mon","Month","NaiveDate","NaiveDateTime","NaiveTime","Nanos","November","October","Offset","Offset","Sat","SecondsFormat","Secs","September","SubsecRound","Sun","Thu","TimeZone","Timelike","Tue","Utc","Wed","Weekday","datetime_from_str","day","day0","fix","from_local_date","from_local_datetime","from_offset","from_utc_date","from_utc_datetime","hour","hour12","iso_week","isoywd","isoywd_opt","minute","month","month0","nanosecond","num_days_from_ce","num_seconds_from_midnight","offset_from_local_date","offset_from_local_datetime","offset_from_utc_date","offset_from_utc_datetime","ordinal","ordinal0","round_subsecs","second","timestamp","timestamp_millis","timestamp_millis_opt","timestamp_nanos","timestamp_opt","trunc_subsecs","weekday","with_day","with_day0","with_hour","with_minute","with_month","with_month0","with_nanosecond","with_ordinal","with_ordinal0","with_second","with_year","with_ymd_and_hms","year","year_ce","ymd","ymd_opt","yo","yo_opt","AsPrimitive","Bounded","Bytes","Bytes","CheckedAdd","CheckedDiv","CheckedEuclid","CheckedMul","CheckedNeg","CheckedRem","CheckedShl","CheckedShr","CheckedSub","E","Empty","Euclid","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","Float","FloatConst","FloatErrorKind","FromBytes","FromPrimitive","FromStrRadixErr","Inv","Invalid","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","MulAdd","MulAddAssign","Num","NumAssign","NumAssignOps","NumAssignRef","NumCast","NumOps","NumRef","One","Output","Output","Output","PI","ParseFloatError","Pow","PrimInt","RefNum","SQRT_2","Saturating","SaturatingAdd","SaturatingMul","SaturatingSub","Signed","TAU","ToBytes","ToPrimitive","Unsigned","WrappingAdd","WrappingMul","WrappingNeg","WrappingShl","WrappingShr","WrappingSub","Zero","abs","abs","abs","abs_sub","abs_sub","abs_sub","acos","acosh","as_","asin","asinh","atan","atan2","atanh","borrow","borrow","borrow_mut","borrow_mut","bounds","cast","cast","cbrt","ceil","checked_add","checked_div","checked_div_euclid","checked_mul","checked_neg","checked_pow","checked_rem","checked_rem_euclid","checked_shl","checked_shr","checked_sub","clamp","clamp_max","clamp_min","classify","copysign","cos","cosh","count_ones","count_zeros","deref","deref","deref_mut","deref_mut","div_euclid","drop","drop","epsilon","exp","exp2","exp_m1","float","floor","fmt","fmt","fmt","fract","from","from","from","from_be","from_be_bytes","from_f32","from_f64","from_i128","from_i16","from_i32","from_i64","from_i8","from_isize","from_le","from_le_bytes","from_ne_bytes","from_str_radix","from_u128","from_u16","from_u32","from_u64","from_u8","from_usize","hypot","identities","infinity","init","init","int","integer_decode","into","into","inv","is_finite","is_infinite","is_nan","is_negative","is_normal","is_one","is_positive","is_sign_negative","is_sign_positive","is_subnormal","is_zero","kind","leading_ones","leading_zeros","ln","ln_1p","log","log10","log2","max","max_value","max_value","min","min_positive_value","min_value","min_value","mul_add","mul_add","mul_add_assign","nan","neg_infinity","neg_zero","one","one","ops","pow","pow","pow","pow","powf","powi","real","recip","rem_euclid","reverse_bits","rotate_left","rotate_right","round","saturating_add","saturating_add","saturating_mul","saturating_sub","saturating_sub","set_one","set_zero","sign","signed_shl","signed_shr","signum","signum","signum","sin","sin_cos","sinh","sqrt","swap_bytes","tan","tanh","to_be","to_be_bytes","to_degrees","to_f32","to_f64","to_i128","to_i16","to_i32","to_i64","to_i8","to_isize","to_le","to_le_bytes","to_ne_bytes","to_radians","to_string","to_u128","to_u16","to_u32","to_u64","to_u8","to_usize","trailing_ones","trailing_zeros","trunc","try_from","try_from","try_into","try_into","type_id","type_id","unsigned_shl","unsigned_shr","vzip","vzip","wrapping_add","wrapping_mul","wrapping_neg","wrapping_shl","wrapping_shr","wrapping_sub","zero","zero","Bounded","LowerBounded","UpperBounded","max_value","max_value","min_value","min_value","AsPrimitive","FromPrimitive","NumCast","ToPrimitive","as_","cast","from","from_f32","from_f64","from_i128","from_i16","from_i32","from_i64","from_i8","from_isize","from_u128","from_u16","from_u32","from_u64","from_u8","from_usize","to_f32","to_f64","to_i128","to_i16","to_i32","to_i64","to_i8","to_isize","to_u128","to_u16","to_u32","to_u64","to_u8","to_usize","E","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","Float","FloatConst","FloatCore","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PI","SQRT_2","TAU","abs","abs","abs_sub","acos","acosh","asin","asinh","atan","atan2","atanh","cbrt","ceil","ceil","classify","classify","copysign","cos","cosh","epsilon","epsilon","exp","exp2","exp_m1","floor","floor","fract","fract","hypot","infinity","infinity","integer_decode","integer_decode","is_finite","is_finite","is_infinite","is_infinite","is_nan","is_nan","is_normal","is_normal","is_sign_negative","is_sign_negative","is_sign_positive","is_sign_positive","is_subnormal","is_subnormal","ln","ln_1p","log","log10","log2","max","max","max_value","max_value","min","min","min_positive_value","min_positive_value","min_value","min_value","mul_add","nan","nan","neg_infinity","neg_infinity","neg_zero","neg_zero","powf","powi","powi","recip","recip","round","round","signum","signum","sin","sin_cos","sinh","sqrt","tan","tanh","to_degrees","to_degrees","to_radians","to_radians","trunc","trunc","One","Zero","is_one","is_zero","one","one","set_one","set_zero","zero","zero","PrimInt","count_ones","count_zeros","from_be","from_le","leading_ones","leading_zeros","pow","reverse_bits","rotate_left","rotate_right","signed_shl","signed_shr","swap_bytes","to_be","to_le","trailing_ones","trailing_zeros","unsigned_shl","unsigned_shr","bytes","checked","euclid","inv","mul_add","overflowing","saturating","wrapping","Bytes","Bytes","FromBytes","NumBytes","ToBytes","from_be_bytes","from_le_bytes","from_ne_bytes","to_be_bytes","to_le_bytes","to_ne_bytes","CheckedAdd","CheckedDiv","CheckedMul","CheckedNeg","CheckedRem","CheckedShl","CheckedShr","CheckedSub","checked_add","checked_div","checked_mul","checked_neg","checked_rem","checked_shl","checked_shr","checked_sub","CheckedEuclid","Euclid","checked_div_euclid","checked_rem_euclid","div_euclid","rem_euclid","Inv","Output","inv","MulAdd","MulAddAssign","Output","mul_add","mul_add_assign","OverflowingAdd","OverflowingMul","OverflowingSub","overflowing_add","overflowing_mul","overflowing_sub","Saturating","SaturatingAdd","SaturatingMul","SaturatingSub","saturating_add","saturating_add","saturating_mul","saturating_sub","saturating_sub","WrappingAdd","WrappingMul","WrappingNeg","WrappingShl","WrappingShr","WrappingSub","wrapping_add","wrapping_mul","wrapping_neg","wrapping_shl","wrapping_shr","wrapping_sub","Output","Pow","checked_pow","pow","pow","Real","abs","abs_sub","acos","acosh","asin","asinh","atan","atan2","atanh","cbrt","ceil","cos","cosh","epsilon","exp","exp2","exp_m1","floor","fract","hypot","is_sign_negative","is_sign_positive","ln","ln_1p","log","log10","log2","max","max_value","min","min_positive_value","min_value","mul_add","powf","powi","recip","round","signum","sin","sin_cos","sinh","sqrt","tan","tanh","to_degrees","to_radians","trunc","Signed","Unsigned","abs","abs","abs_sub","abs_sub","is_negative","is_positive","signum","signum","race","sync","unsync","OnceBool","OnceBox","OnceNonZeroUsize","OnceRef","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","default","default","default","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","get","get","get","get","get_or_init","get_or_init","get_or_init","get_or_init","get_or_try_init","get_or_try_init","get_or_try_init","get_or_try_init","init","init","init","init","into","into","into","into","new","new","new","new","set","set","set","set","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","Lazy","OnceCell","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_from","clone_into","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","force","force_mut","from","from","from","from","get","get","get_mut","get_mut","get_or_init","get_or_try_init","get_unchecked","init","init","into","into","into_inner","into_value","new","new","set","take","to_owned","try_from","try_from","try_insert","try_into","try_into","type_id","type_id","vzip","vzip","wait","with_value","Lazy","OnceCell","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_from","clone_into","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","force","force_mut","from","from","from","from","get","get","get_mut","get_mut","get_or_init","get_or_try_init","init","init","into","into","into_inner","into_value","new","new","set","take","to_owned","try_from","try_from","try_insert","try_into","try_into","type_id","type_id","vzip","vzip","with_value","BroadcastContext","Executed","FnContext","Idle","Scope","ScopeFifo","ThreadBuilder","ThreadPool","ThreadPoolBuildError","ThreadPoolBuilder","Yield","__clone_box","array","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","breadth_first","broadcast","broadcast","build","build_global","build_scoped","clone","clone_into","collections","current_num_threads","current_num_threads","current_thread_has_pending_tasks","current_thread_index","current_thread_index","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","exit_handler","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","in_place_scope","in_place_scope","in_place_scope_fifo","in_place_scope_fifo","index","index","init","init","init","init","init","init","init","init","init","install","into","into","into","into","into","into","into","into","into","iter","join","join","join_context","max_num_threads","migrated","name","new","new","num_threads","num_threads","option","panic_handler","prelude","provide","range","range_inclusive","result","run","scope","scope","scope_fifo","scope_fifo","slice","source","spawn","spawn","spawn","spawn_broadcast","spawn_broadcast","spawn_broadcast","spawn_broadcast","spawn_fifo","spawn_fifo","spawn_fifo","spawn_handler","stack_size","stack_size","start_handler","str","string","thread_name","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vec","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","yield_local","yield_local","yield_now","yield_now","IntoIter","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drive","drive_unindexed","drop","fmt","from","init","into","into_par_iter","len","opt_len","to_owned","try_from","try_into","type_id","vzip","with_producer","binary_heap","btree_map","btree_set","hash_map","hash_set","linked_list","vec_deque","Drain","IntoIter","Iter","__clone_box","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","len","len","len","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_producer","with_producer","with_producer","IntoIter","Iter","IterMut","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","opt_len","opt_len","opt_len","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","IntoIter","Iter","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drop","drop","fmt","fmt","from","from","init","init","into","into","into_par_iter","into_par_iter","opt_len","opt_len","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Drain","IntoIter","Iter","IterMut","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","init","init","init","init","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","opt_len","opt_len","opt_len","opt_len","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","Drain","IntoIter","Iter","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","opt_len","opt_len","opt_len","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","IntoIter","Iter","IterMut","__clone_box","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","Drain","IntoIter","Iter","IterMut","__clone_box","__clone_box","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","from","from","from","from","init","init","init","init","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","len","len","len","len","opt_len","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","with_producer","with_producer","with_producer","with_producer","Chain","Chunks","Cloned","Copied","Either","Empty","Enumerate","Filter","FilterMap","FlatMap","FlatMapIter","Flatten","FlattenIter","Fold","FoldChunks","FoldChunksWith","FoldWith","FromParallelIterator","IndexedParallelIterator","Inspect","Interleave","InterleaveShortest","Intersperse","IntoParallelIterator","IntoParallelRefIterator","IntoParallelRefMutIterator","Item","Item","Item","Item","Item","Item","Iter","Iter","Iter","Iter","Iter","IterBridge","Left","Map","MapInit","MapWith","MaxLen","MinLen","MultiZip","Once","PanicFuse","ParallelBridge","ParallelDrainFull","ParallelDrainRange","ParallelExtend","ParallelIterator","Positions","Repeat","RepeatN","Rev","Right","Skip","SkipAny","SkipAnyWhile","Split","StepBy","Take","TakeAny","TakeAnyWhile","TryFold","TryFoldWith","Update","WhileSome","Zip","ZipEq","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","all","all","any","any","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_mut","as_pin_mut","as_pin_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","chain","chunks","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_from","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloned","cmp","cmp","collect","collect","collect_into_vec","compare","consume","copied","count","count","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","either","either_into","either_with","empty","encode_hex","encode_hex_upper","enumerate","eq","eq","equivalent","equivalent","equivalent","equivalent","execute","expect_left","expect_right","extend","factor_err","factor_first","factor_none","factor_ok","factor_second","fill_buf","filter","filter_map","find","find_any","find_first","find_last","find_map","find_map_any","find_map_first","find_map_last","flat_map","flat_map_iter","flatten","flatten_iter","flip","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold","fold","fold_chunks","fold_chunks_with","fold_with","for_each","for_each","for_each_init","for_each_with","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_par_iter","ge","gt","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inspect","interleave","interleave_shortest","intersperse","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_future","into_inner","into_iter","into_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_vec","into_vec","is_left","is_right","last","le","left","left_and_then","left_or","left_or_default","left_or_else","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","len","lt","map","map","map_either","map_either_with","map_init","map_left","map_right","map_with","max","max_by","max_by_key","min","min_by","min_by_key","ne","next","next_back","nth","once","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","panic_fuse","par_bridge","par_drain","par_drain","par_extend","par_extend","par_iter","par_iter_mut","partial_cmp","partial_cmp","partition","partition","partition_map","plumbing","poll","position","position_any","position_first","position_last","positions","product","provide","queue","read","read_exact","read_line","read_to_end","read_to_string","read_until","read_varint","reduce","reduce_with","repeat","repeatn","rev","rfind","rfold","right","right_and_then","right_or","right_or_default","right_or_else","seek","size_hint","skip","skip_any","skip_any_while","source","split","step_by","sum","sync_update","take","take","take_any","take_any_while","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_fold","try_fold_with","try_for_each","try_for_each_init","try_for_each_with","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_poll","try_reduce","try_reduce_with","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap_left","unwrap_right","unzip","unzip_into_vecs","update","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","while_some","with_max_len","with_min_len","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","write","write_all","write_fmt","write_varint","zip","zip","zip_eq","Consumer","Folder","Folder","IntoIter","Item","Item","Output","Producer","ProducerCallback","Reducer","Reducer","Result","Result","UnindexedConsumer","UnindexedProducer","bridge","bridge_producer_consumer","bridge_unindexed","callback","complete","consume","consume_iter","fold_with","fold_with","full","full","into_folder","into_iter","max_len","min_len","reduce","split","split_at","split_at","split_off_left","to_reducer","IntoIter","Iter","IterMut","__clone_box","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","len","len","len","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_producer","with_producer","with_producer","FromParallelIterator","IndexedParallelIterator","IntoParallelIterator","IntoParallelRefIterator","IntoParallelRefMutIterator","Item","Item","Item","Item","Item","Item","Iter","Iter","Iter","Iter","Iter","ParallelBridge","ParallelDrainFull","ParallelDrainRange","ParallelExtend","ParallelIterator","ParallelSlice","ParallelSliceMut","ParallelString","all","any","as_parallel_slice","as_parallel_slice_mut","as_parallel_string","chain","chunks","cloned","cmp","collect","collect_into_vec","copied","count","drive","drive_unindexed","enumerate","eq","filter","filter_map","find_any","find_first","find_last","find_map_any","find_map_first","find_map_last","flat_map","flat_map_iter","flatten","flatten_iter","fold","fold_chunks","fold_chunks_with","fold_with","for_each","for_each_init","for_each_with","from_par_iter","ge","gt","inspect","interleave","interleave_shortest","intersperse","into_par_iter","le","len","lt","map","map_init","map_with","max","max_by","max_by_key","min","min_by","min_by_key","ne","opt_len","panic_fuse","par_bridge","par_bytes","par_char_indices","par_chars","par_chunks","par_chunks_exact","par_chunks_exact_mut","par_chunks_mut","par_drain","par_drain","par_encode_utf16","par_extend","par_iter","par_iter_mut","par_lines","par_match_indices","par_matches","par_rchunks","par_rchunks_exact","par_rchunks_exact_mut","par_rchunks_mut","par_sort","par_sort_by","par_sort_by_cached_key","par_sort_by_key","par_sort_unstable","par_sort_unstable_by","par_sort_unstable_by_key","par_split","par_split","par_split_mut","par_split_terminator","par_split_whitespace","par_windows","partial_cmp","partition","partition_map","position_any","position_first","position_last","positions","product","reduce","reduce_with","rev","skip","skip_any","skip_any_while","step_by","sum","take","take_any","take_any_while","try_fold","try_fold_with","try_for_each","try_for_each_init","try_for_each_with","try_reduce","try_reduce_with","unzip","unzip_into_vecs","update","while_some","with_max_len","with_min_len","with_producer","zip","zip_eq","Iter","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drive","drive","drive_unindexed","drive_unindexed","drop","fmt","from","init","into","into_par_iter","len","len","opt_len","opt_len","to_owned","try_from","try_into","type_id","vzip","with_producer","with_producer","Iter","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drive","drive","drive_unindexed","drive_unindexed","drop","fmt","from","init","into","into_par_iter","len","len","opt_len","opt_len","to_owned","try_from","try_into","type_id","vzip","with_producer","with_producer","IntoIter","Iter","IterMut","__clone_box","__clone_box","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","fmt","from","from","from","init","init","init","into","into","into","into_par_iter","into_par_iter","into_par_iter","len","len","len","opt_len","opt_len","opt_len","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_producer","with_producer","with_producer","Chunks","ChunksExact","ChunksExactMut","ChunksMut","Iter","IterMut","ParallelSlice","ParallelSliceMut","RChunks","RChunksExact","RChunksExactMut","RChunksMut","Split","SplitMut","Windows","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_parallel_slice","as_parallel_slice_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_remainder","into_remainder","len","len","len","len","len","len","len","len","len","len","len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","opt_len","par_chunks","par_chunks_exact","par_chunks_exact_mut","par_chunks_mut","par_rchunks","par_rchunks_exact","par_rchunks_exact_mut","par_rchunks_mut","par_sort","par_sort_by","par_sort_by_cached_key","par_sort_by_key","par_sort_unstable","par_sort_unstable_by","par_sort_unstable_by_key","par_split","par_split_mut","par_windows","remainder","remainder","remainder","remainder","take_remainder","take_remainder","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","with_producer","Bytes","CharIndices","Chars","EncodeUtf16","Lines","MatchIndices","Matches","ParallelString","Split","SplitTerminator","SplitWhitespace","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_parallel_string","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","into_par_iter","par_bytes","par_char_indices","par_chars","par_encode_utf16","par_lines","par_match_indices","par_matches","par_split","par_split_terminator","par_split_whitespace","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Drain","borrow","borrow_mut","deref","deref_mut","drive_unindexed","drop","drop","fmt","from","init","into","into_par_iter","try_from","try_into","type_id","vzip","Drain","IntoIter","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","deref","deref","deref_mut","deref_mut","drive","drive","drive_unindexed","drive_unindexed","drop","drop","drop","fmt","fmt","from","from","init","init","into","into","into_par_iter","into_par_iter","len","len","opt_len","opt_len","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","with_producer","with_producer","CaptureLocations","CaptureMatches","CaptureNames","Captures","CompiledTooBig","Error","Match","Matches","NoExpand","Regex","RegexBuilder","RegexSet","RegexSetBuilder","Replacer","ReplacerRef","SetMatches","SetMatchesIntoIter","SetMatchesIter","Split","SplitN","SubCaptureMatches","Syntax","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_str","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","by_ref","bytes","capture_locations","capture_names","captures","captures_at","captures_iter","captures_len","captures_read","captures_read_at","case_insensitive","case_insensitive","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","count","count","count","count","crlf","crlf","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","dfa_size_limit","dfa_size_limit","dot_matches_new_line","dot_matches_new_line","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","end","eq","eq","equivalent","equivalent","equivalent","equivalent","escape","expand","extract","find","find_at","find_iter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","get","get","ignore_whitespace","ignore_whitespace","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_vec","into_vec","into_vec","into_vec","is_empty","is_empty","is_match","is_match","is_match_at","is_match_at","iter","iter","len","len","len","len","len","line_terminator","line_terminator","matched","matched_any","matches","matches_at","multi_line","multi_line","name","nest_limit","nest_limit","new","new","new","new","next","next","next","next","next","next","next","next","next_back","next_back","no_expansion","no_expansion","no_expansion","octal","octal","par_bridge","patterns","provide","range","replace","replace_all","replace_append","replace_append","replace_append","replacen","shortest_match","shortest_match_at","size_hint","size_hint","size_hint","size_hint","size_hint","size_limit","size_limit","split","splitn","start","static_captures_len","swap_greed","swap_greed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unicode","unicode","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","CaptureLocations","CaptureMatches","CaptureNames","Captures","Match","Matches","NoExpand","Regex","RegexBuilder","RegexSet","RegexSetBuilder","Replacer","ReplacerRef","SetMatches","SetMatchesIntoIter","SetMatchesIter","Split","SplitN","SubCaptureMatches","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_bytes","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","by_ref","capture_locations","capture_names","captures","captures_at","captures_iter","captures_len","captures_read","captures_read_at","case_insensitive","case_insensitive","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","count","count","count","count","crlf","crlf","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","dfa_size_limit","dfa_size_limit","dot_matches_new_line","dot_matches_new_line","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","end","eq","equivalent","equivalent","equivalent","equivalent","expand","extract","find","find_at","find_iter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","get","get","ignore_whitespace","ignore_whitespace","index","index","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","is_empty","is_empty","is_match","is_match","is_match_at","is_match_at","iter","iter","len","len","len","len","len","line_terminator","line_terminator","matched","matched_any","matches","matches_at","multi_line","multi_line","name","nest_limit","nest_limit","new","new","new","new","next","next","next","next","next","next","next","next","next_back","next_back","no_expansion","no_expansion","no_expansion","octal","octal","par_bridge","patterns","range","replace","replace_all","replace_append","replace_append","replace_append","replacen","shortest_match","shortest_match_at","size_hint","size_hint","size_hint","size_hint","size_hint","size_limit","size_limit","split","splitn","start","static_captures_len","swap_greed","swap_greed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unicode","unicode","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","Any","ArrowChunk","DataFrame","First","Ignore","Last","None","NullStrategy","PhysRecordBatchIter","Propagate","RecordBatchIter","UniqueKeepStrategy","__clone_box","__clone_box","__clone_box","_add_columns","_create_left_df_from_slice","_filter_seq","_finish_left_join","_left_join_from_series","_outer_join_from_series","_slice_and_realloc","agg_chunks","align_chunks","apply","apply_at_idx","as_single_chunk","as_single_chunk_par","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear","clone","clone","clone","clone_into","clone_into","clone_into","column","columns","cross_join","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","describe","drop","drop","drop","drop","drop","drop","drop_in_place","drop_many","drop_many_amortized","drop_nulls","dtypes","empty","eq","eq","equivalent","equivalent","equivalent","equivalent","estimated_size","explode","explode","explode_impl","extend","fields","fill_null","filter","find_idx_by_name","fmt","fmt","fmt","fmt","frame_equal","frame_equal_missing","frame_equal_schema","from","from","from","from","from","from","from","from_iter","from_rows","from_rows_and_schema","from_rows_iter_and_schema","get","get_column_names","get_column_names_owned","get_columns","get_columns_mut","get_row","get_row_amortized","get_row_amortized_unchecked","get_supertype","groupby","groupby","groupby_dynamic","groupby_rolling","groupby_stable","groupby_with_series","hash_join","head","height","hmax","hmean","hmin","hstack","hstack_mut","hstack_mut_unchecked","hsum","index","index","index","index","index","index","index","index","init","init","init","init","init","insert_at_idx","into","into","into","into","into","into_iter","into_iter","into_struct","is_duplicated","is_empty","is_unique","iter","iter_chunks","iter_chunks_physical","join_asof","join_asof_by","lazy","max","mean","median","melt","melt2","min","n_chunks","new","new_no_checks","next","next","null_count","pipe","pipe_mut","pipe_with_args","pop","ptr_equal","quantile","rename","replace","replace_at_idx","replace_or_add","reverse","row","sample_frac","sample_n","schema","select","select_at_idx","select_by_range","select_physical","select_series","select_with_schema","select_with_schema_unchecked","set_column_names","shape","shift","should_rechunk","shrink_to_fit","size_hint","size_hint","slice","slice_par","sort","sort_impl","sort_in_place","sort_with_options","std","sum","tail","take","take_iter","take_iter_unchecked","take_opt_iter_unchecked","to_ndarray","to_owned","to_owned","to_owned","to_string","top_k","transpose","try_apply","try_apply_at_idx","try_find_idx_by_name","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_rows_iter_and_schema","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unique","unique_impl","unique_stable","unnest","upsample","upsample_stable","var","vstack","vstack_mut","vzip","vzip","vzip","vzip","vzip","width","with_column","with_column_and_schema","with_column_unchecked","with_row_count","with_row_count_mut","MeltArgs","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","eq","fmt","from","id_vars","init","into","streamable","to_owned","try_from","try_into","type_id","value_name","value_vars","variable_name","vzip","BorrowIdxItem","Count","First","GroupBy","GroupByMethod","Groups","GroupsIdx","GroupsIndicator","GroupsProxy","GroupsProxyIter","GroupsProxyParIter","GroupsSlice","Idx","Idx","IdxItem","Implode","IntoGroupsProxy","Last","Max","Mean","Median","Min","NUnique","NanMax","NanMin","Quantile","Slice","Slice","SlicedGroups","Std","Sum","Var","__clone_box","__clone_box","__clone_box","__clone_box","agg_list","aggregations","all","apply","as_list_chunked","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","count","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","df","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expr","first","first","first","first_mut","fmt","fmt","fmt","fmt","fmt","fmt_groupby_column","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_par_iter","get","get_groups","get_groups_mut","group_count","group_lengths","group_tuples","groups","idx_mut","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into_idx","into_iter","into_iter","into_iter","into_par_iter","into_par_iter","into_par_iter","is_empty","is_empty","is_sorted_flag","iter","iter","keys","keys_sliced","last","len","len","max","mean","median","min","n_unique","new","new","next","nth","par_apply","par_iter","par_iter","quantile","select","slice","sort","sort","std","sum","take_group_firsts","take_groups","take_groups_mut","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unroll","unwrap_idx","unwrap_slice","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","groups","rolling","AggList","_agg_helper_idx","_agg_helper_idx_no_null","_agg_helper_slice","_agg_helper_slice_no_null","_rolling_apply_agg_window_no_nulls","_rolling_apply_agg_window_nulls","_slice_from_offsets","_use_rolling_kernels","agg_list","PhysicalAggExpr","evaluate","root_name","AsOf","ChunkId","ChunkJoinIds","ChunkJoinOptIds","Cross","Inner","InnerJoinIds","JoinArgs","JoinType","JoinValidation","Left","LeftJoinIds","ManyToMany","ManyToOne","OneToMany","OneToOne","Outer","__clone_box","__clone_box","__clone_box","_check_categorical_src","_inner_join_multiple_keys","_join_suffix_name","_left_join_multiple_keys","_outer_join_multiple_keys","_sort_or_hash_inner","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","default","default_join_ids","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","how","init","init","init","into","into","into","is_valid_join","needs_checks","new","private_left_join_multiple_keys","slice","suffix","suffix","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","validation","vzip","vzip","vzip","All","All","AnyValueBuffer","AnyValueBufferTrusted","Boolean","Boolean","Date","Datetime","Duration","Float32","Float32","Float64","Float64","Int16","Int16","Int32","Int32","Int64","Int64","Int8","Int8","Row","Struct","Time","UInt16","UInt16","UInt32","UInt32","UInt64","UInt64","UInt8","UInt8","Utf8","Utf8","__clone_box","__clone_box","__clone_box","add","add_unchecked_borrowed_physical","add_unchecked_owned_physical","any_values_to_dtype","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","coerce_data_type","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","from","from","from","from","from","infer_schema","init","init","init","into","into","into","into_series","into_series","new","new","new","reset","reset","rows_to_schema_first_non_null","rows_to_schema_supertypes","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","concat_str","cov_f","cov_i","diag_concat_df","hor_concat_df","pearson_corr_f","pearson_corr_i","Abs","Agg","AggExpr","AggGroups","Aggregate","AggregationContext","Alias","All","AllColumns","AllColumnsSingle","AllowedOptimizations","And","AnonymousFunction","AnonymousScan","AnonymousScan","AnonymousScanOptions","Any","Any","Any","AnyValue","Arc","ArgAgg","ArgWhere","Array","Array","Array","ArrayChunked","ArrayExpr","ArrayNameSpace","ArrayRef","ArrowDataType","ArrowError","ArrowField","ArrowGetItem","ArrowResult","ArrowSchema","ArrowTimeUnit","AsBinary","AsList","AsOf","AsOfOptions","AsRefDataType","AsUtf8","AsofStrategy","Atan2","Auto","Average","Backward","Backward","BatchedParquetReader","Binary","Binary","Binary","Binary","BinaryChunked","BinaryChunkedBuilder","BinaryExpr","BinaryExpr","BinaryNameSpaceImpl","BinaryOwned","BinaryTakeRandom","BinaryTakeRandomSingleChunk","BinaryType","BinaryUdfOutputField","BoolTakeRandom","BoolTakeRandomSingleChunk","Boolean","Boolean","Boolean","Boolean","Boolean","BooleanChunked","BooleanChunkedBuilder","BooleanFunction","BooleanType","BorrowIdxItem","Both","Bounds","BoundsIter","Brotli","BrotliLevel","C","Cache","Cast","CatIter","Categorical","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalNameSpace","CategoricalOrdering","CategoricalType","Ceil","ChainedThen","ChainedWhen","ChunkAgg","ChunkAggSeries","ChunkAnyValue","ChunkApply","ChunkApplyKernel","ChunkBytes","ChunkCast","ChunkCompare","ChunkCumAgg","ChunkExpandAtIndex","ChunkExplode","ChunkFillNullValue","ChunkFilter","ChunkFull","ChunkFullNull","ChunkPeaks","ChunkQuantile","ChunkReverse","ChunkRollApply","ChunkSet","ChunkShift","ChunkShiftFill","ChunkSort","ChunkTake","ChunkUnique","ChunkVar","ChunkZip","ChunkedArray","ChunkedBuilder","ChunkedSet","Clip","ClosedWindow","CloudOptions","Coalesce","Column","ColumnNotFound","Columns","Columns","ComputeError","ConcatExpr","Correlation","Count","Count","Count","Cross","CsvEncoding","CsvReader","CsvWriter","Cumcount","Cummax","Cummin","Cumprod","Cumsum","DataFrame","DataFrameJoinOps","DataFrameOps","DataFrameScan","DataPoint","DataType","Date","Date","Date","Date32","Date64","DateChunked","DateMethods","DateTime","DateType","Datetime","Datetime","DatetimeArgs","DatetimeChunked","DatetimeMethods","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dense","Dictionary","Diff","Distinct","Divide","DropNans","Dtype","DtypeColumn","Dummy","Duplicate","Duration","Duration","Duration","Duration","Duration","DurationArgs","DurationChunked","DurationMethods","DurationType","DynArgs","DynamicGroupOptions","Entropy","Eq","EqValidity","Error","Exclude","Excluded","Exp","Explode","Explode","Expr","ExprEvalExtension","ExtContext","Extension","Field","FileSink","FillNull","FillNullLimit","FillNullStrategy","Filter","First","First","First","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64","Float64Chunked","Float64Type","Floor","FloorDivide","Fortran","Forward","Forward","Friday","FromData","FromDataBinary","FromDataUtf8","Function","FunctionExpr","FunctionOutputField","FxHash","GetAnyValue","GetOutput","GlobIterator","Global","GlobalFinished","GroupBy","GroupByMethod","Groups","GroupsIdx","GroupsIndicator","GroupsProxy","GroupsProxyIter","GroupsProxyParIter","GroupsSlice","GroupsToRows","Gt","GtEq","Gzip","GzipLevel","HStack","HashMap","Higher","IDX_DTYPE","Idx","Idx","IdxArr","IdxCa","IdxItem","IdxSize","IdxType","Implode","Implode","IndexOfSchema","IndexOrder","IndexToUsize","InitHashMaps","Inner","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8","Int8Chunked","Int8Type","Interpolate","InterpolationMethod","Interval","IntoGroupsProxy","IntoLazy","IntoListNameSpace","IntoSeries","IntoTakeRandom","IntoVec","InvalidOperation","Io","IpcCompression","IpcReader","IpcStreamReader","IpcStreamWriter","IpcStreamWriterOption","IpcWriter","IpcWriterOption","IpcWriterOptions","IsFinite","IsFirst","IsFirst","IsFloat","IsIn","IsIn","IsInfinite","IsLast","IsNan","IsNot","IsNotNan","IsNotNull","IsNull","Item","Item","Item","Item","Item","Iter","IterNulls","Join","Join","JoinArgs","JoinBuilder","JoinOptions","JoinType","Json","JsonFormat","JsonLineReader","JsonLines","JsonReader","JsonWriter","KeepName","LZ4","LargeBinary","LargeBinaryArray","LargeList","LargeListArray","LargeStringArray","LargeUtf8","Last","Last","Last","LazyCsvReader","LazyFileListReader","LazyFrame","LazyGroupBy","LazyJsonLineReader","Left","Left","Left","Lexical","LhsNumOps","Linear","Linear","List","List","List","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListChunked","ListExpr","ListFromIter","ListNameSpace","ListNameSpaceExtension","ListNameSpaceImpl","ListPrimitiveChunkedBuilder","ListTakeRandom","ListTakeRandomSingleChunk","ListType","ListUtf8ChunkedBuilder","Literal","Literal","LiteralValue","Local","Local","LocalProjection","Log","Log1p","LogSeries","Logical","LogicalPlan","LogicalType","LossyUtf8","Lower","LowerBound","Lt","LtEq","Lz4Raw","Lzo","Map","MapFunction","Max","Max","Max","Max","MaxBound","Mean","Mean","Mean","Median","Median","MeltArgs","MetaNameSpace","Microsecond","Microseconds","Midpoint","Millisecond","Milliseconds","Min","Min","Min","Min","MinBound","Minus","Modulus","Monday","Multi","Multi","Multiply","MutableBitmapExtension","NULL","NUnique","NUnique","Name","Named","NamedFrom","NamedFromOwned","NanMax","NanMin","Nanosecond","Nanoseconds","Native","Nearest","Nearest","Nearest","NewChunkedArray","NoData","NoNull","None","None","None","NotEq","NotEqValidity","Nth","Null","Null","Null","Null","Null","NullCount","NullValues","NumOpsDispatch","NumOpsDispatchChecked","NumTakeRandomChunked","NumTakeRandomCont","NumTakeRandomSingleChunk","NumericNative","Object","Object","ObjectChunked","ObjectOwned","ObjectTakeRandom","ObjectTakeRandomSingleChunk","ObjectType","One","Operator","OptState","Or","Ordinal","Outer","Output","OwnedObject","POLARSTYPE","ParallelStrategy","ParquetCompression","ParquetReader","ParquetWriteOptions","ParquetWriter","PartitionedAggregation","Physical","PhysicalExpr","PhysicalIoHelper","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","Plus","PolarsArray","PolarsDataType","PolarsError","PolarsFloatType","PolarsIntegerType","PolarsIterator","PolarsMonthEnd","PolarsMonthStart","PolarsNumericType","PolarsObject","PolarsResult","PolarsRound","PolarsSingleType","PolarsTemporalGroupby","PolarsTruncate","PolarsUpsample","Pow","PrimitiveChunkedBuilder","Projection","Quantile","Quantile","QuantileAggSeries","QuantileInterpolOptions","Random","Random","Range","Range","Range","RankMethod","RankOptions","RenameAlias","RenameAliasFn","RepeatBy","RevMapping","RevMappingBuilder","Reverse","Right","Right","RollingAgg","RollingCovOptions","RollingGroupOptions","RollingOptions","RollingOptionsFixedWindow","RollingOptionsImpl","RollingQuantileParams","RollingSeries","RollingVarParams","Round","RowGroups","Saturday","Scan","ScanArgsAnonymous","ScanArgsIpc","ScanArgsParquet","Schema","SchemaFieldNotFound","SchemaMismatch","SchemaRef","SearchSortedSide","Second","Selection","Selector","SerReader","SerWriter","Series","Series","SeriesBinaryUdf","SeriesMethods","SeriesOpsTime","SeriesSealed","SeriesTrait","SeriesUdf","SetSortedFlag","ShapeMismatch","Shift","ShiftAndFill","ShrinkType","Single","Single","SingleNoNull","Slice","Slice","Slice","Slice","SlicedArray","SlicedGroups","Snappy","Sort","Sort","SortBy","SortMultipleOptions","SortOptions","SpecialEq","StartBy","Std","Std","StrConcat","StrHashLocal","StringCacheMismatch","StringExpr","StrptimeOptions","Struct","Struct","Struct","StructArray","StructChunked","StructExpr","StructFieldNotFound","StructNameSpace","StructOwned","Sum","Sum","Sunday","Take","TakeIdx","TakeIterator","TakeIteratorNulls","TakeRandBranch2","TakeRandBranch3","TakeRandom","TakeRandom","TakeRandomBitmap","TakeRandomUtf8","TemporalExpr","TemporalMethods","Ternary","Then","Thursday","Time","Time","Time","Time32","Time64","TimeChunked","TimeMethods","TimeType","TimeUnit","TimeZone","Timestamp","ToDummies","ToPhysical","Trigonometry","TrueDivide","TruncateOptions","Tuesday","UInt16","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","UdfSchema","Uncompressed","Union","Union","UnionArgs","Unique","UniqueKeepStrategy","Unknown","UpperBound","Utf8","Utf8","Utf8","Utf8","Utf8","Utf8Chunked","Utf8ChunkedBuilder","Utf8Methods","Utf8NameSpaceImpl","Utf8Owned","Utf8TakeRandom","Utf8TakeRandomSingleChunk","Utf8Type","ValueSize","Var","Var","VarAggSeries","VecHash","Wednesday","When","Wildcard","Window","Window","WindowBound","WindowMapping","WindowOptions","Xor","ZSTD","Zero","Zstd","ZstdLevel","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_finish_with_scan_ops","_fx_hash","_into_selector","_selector_add","_selector_and","_selector_sub","_sum_as_series","_to_dummies","abs","add","add","add_ms","add_ns","add_to","add_us","agg","agg_groups","aggregations","alias","all","all","all_horizontal","allow_parallel","allow_parallel","allows_predicate_pushdown","allows_projection_pushdown","allows_projection_pushdown","allows_slice_pushdown","and","anonymous_scan","any","any_horizontal","append","append_null","append_null","append_opt_series","append_option","append_series","append_value","apply","apply","apply","apply_binary","apply_cast_numeric","apply_children","apply_kernel","apply_kernel_cast","apply_many","apply_many_private","apply_multiple","apply_on_opt","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arange","arccos","arccosh","arced","arcsin","arcsinh","arctan","arctan2","arctanh","arg_max","arg_max","arg_max","arg_min","arg_min","arg_min","arg_sort","arg_sort","arg_sort","arg_sort_by","arg_sort_multiple","arg_unique","arg_unique","arg_unique","arg_where","args","arr","array","arrow_ndjson","arrow_schema","arrow_schema","as_any","as_any","as_any","as_any","as_any_mut","as_any_mut","as_binary","as_date","as_date_not_exact","as_datetime","as_datetime_not_exact","as_expression","as_list","as_partitioned_aggregator","as_ref","as_ref_dtype","as_series","as_single_ptr","as_slice_mut","as_stats_evaluator","as_stats_evaluator","as_struct","as_time","as_utf8","avg","backward_fill","base64_decode","base64_encode","base_utc_offset","batched","batched","batched","batched_async","batched_borrowed_mmap","batched_borrowed_read","batched_mmap","batched_read","binary","binary","binary_expr","bitand","bitor","bitxor","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_k","boxed","boxed_clone","boxed_clone","branch_apply_cast_numeric_no_null","builder","by","by","cache","cache","cache","cache","call","call_udf","call_udf","capacity","capacity","cast","cast","cast","cast","cast","cast_unchecked","cat","cat","cbrt","ceil","center","center","center","check_bounds","check_bounds","check_sorted","check_sorted","checked_div","checked_div","checked_div_num","chunk_lengths","chunkedarray","chunks","clip","clip_max","clip_min","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_inner","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closed_window","closed_window","closed_window","closed_window","cloud","cloud_options","cloud_options","cmp","coalesce","col","collect","collect_all","cols","columns_to_dummies","compare","compression","compression","concat","concat","concat_expr","concat_impl","concat_impl","concat_list","concat_str","contains","contains","contains","contains_literal","contains_literal","cos","cosh","cot","count","count","count_match","cov","create_writer","create_writer","cross_join","cumcount","cumfold_exprs","cummax","cummax","cummin","cummin","cumprod","cumprod","cumreduce_exprs","cumsum","cumsum","cumulative_eval","data_pagesize_limit","data_type","data_type","datatypes","date_ranges","datetime","datetime","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","day","day","day","day","days","days","days","days_only","ddof","ddof","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default","default_arrays","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descending","descending","descending","describe","describe_optimized_plan","describe_plan","df","df","diag_concat_lf","diff","diff","div","div","divide","dot","dot","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_columns","drop_nans","drop_nulls","drop_nulls","drop_nulls","dst_offset","dt","dt","dtype","dtype","dtype","dtype_col","dtype_cols","duration","ends_with","ends_with","entropy","entropy","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_missing","equal","equal_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","eval","evaluate","evaluate","evaluate_on_groups","evaluate_partitioned","every","every","exact","exclude","exclude_dtype","exp","exp","explain","explode","explode","explode","explode_and_offsets","expr","expr","extension","extension","extract","extract_all","extract_all_many","fast_explode","fetch","field","field","field_by_index","field_by_name","fields","fields","file_caching","fill_nan","fill_nan","fill_null","fill_null","fill_null_with_values","filter","filter","filter","filter","finalize","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish","finish_no_glob","finish_no_glob","finish_no_glob","finish_with_scan_ops","first","first","first","first","fixed_size_list","flatten","float_type","floor","floor_div","floor_div_series","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_groupby_column","fmt_str","fn_params","fn_params","fn_params","fold_exprs","force_parallel","force_parallel","format","format_str","forward_fill","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_data_default","from_data_unchecked_default","from_data_unchecked_default","from_iter","from_iter","from_iter_binary_trusted_len","from_iter_bool_trusted_len","from_iter_options","from_iter_primitive_trusted_len","from_iter_trusted_length","from_iter_trusted_length","from_iter_utf8_trusted_len","from_iter_values","from_par_iter","from_path","from_path","from_slice","from_slice_options","from_trusted_len_iter_rev","from_type","from_vec","full","full","full_null","function_with_options","get","get","get","get","get","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_categories","get_current_optimizations","get_datatype","get_dtype","get_earliest_bounds_ms","get_earliest_bounds_ns","get_earliest_bounds_us","get_field","get_field","get_fields","get_k","get_names","get_object","get_output","get_overlapping_bounds_iter","get_schema","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_values_size","glob","group_tuples","groupby","groupby_dynamic","groupby_dynamic","groupby_rolling","groupby_rolling","groupby_stable","groupby_values","groupby_windows","gt","gt","gt_eq","gt_eq","has_header","has_header","has_header","has_multiple_outputs","has_validity","has_validity","has_window_function","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","hash","head","head","head","hex_decode","hex_encode","hour","hour","hour","hour","hours","hours","how","how","id_vars","implode","in_nanoseconds_window","include_boundaries","index_column","index_column","index_of","indexes_to_usizes","infer_schema","infer_schema_len","infer_schema_len","infer_schema_length","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_array","inner_join","inner_join","int_range","int_ranges","interpol","interpolate","interpolate","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_data","into_inner","into_iter","into_iter","into_iter","into_list_name_space","into_list_name_space","into_range","into_series","into_tree_formatter","into_vec","is_constant_duration","is_empty","is_finite","is_first","is_first","is_first","is_float","is_in","is_in","is_in","is_infinite","is_last","is_leap_year","is_leap_year","is_leap_year","is_literal","is_nan","is_nan","is_not_nan","is_not_null","is_not_null","is_not_null","is_null","is_null","is_null","is_nullable","is_regex_projection","is_series","is_simple_projection","is_sorted","is_sorted_flag","is_valid_aggregation","is_zero","iso_year","iso_year","iso_year","iter","iter","join","join","join","join_builder","json","keep_name","last","last","last","last","lazy","left_by","left_join","left_join","left_on","len","len","lengths","limit","limit","list","lit","lit","lit","lit","log","log","log1p","log1p","logical_plan","logical_plan","low_memory","low_memory","low_memory","low_memory","low_memory","lower_bound","lst_arg_max","lst_arg_min","lst_concat","lst_diff","lst_get","lst_join","lst_lengths","lst_max","lst_mean","lst_min","lst_reverse","lst_shift","lst_slice","lst_sort","lst_sum","lst_unique","lst_unique_stable","lt","lt","lt_eq","lt_eq","maintain_order","maintain_order","maintain_order","map","map","map_alias","map_binary","map_children","map_dtype","map_dtypes","map_field","map_fields","map_list","map_list_multiple","map_many","map_many_private","map_multiple","mapping","max","max","max","max","max","max","max_as_series","max_as_series","max_horizontal","mean","mean","mean","mean","mean","mean","median","median","median","median","median","median_as_series","median_as_series","melt","memmap","memory_mapped","merge_dtypes","meta","metadata","metadata","method","microsecond","microseconds","microseconds","milliseconds","milliseconds","min","min","min","min","min","min","min_as_series","min_as_series","min_horizontal","min_periods","min_periods","min_periods","min_periods","minute","minute","minute","minute","minutes","minutes","mode","mode","mode","month","month","month","month","month_end","month_start","months","months_only","mul","mul","mul","multiply","multithreaded","multithreaded","mutate","n_chunks","n_rows","n_rows","n_rows","n_rows","n_rows","n_rows","n_rows","n_unique","n_unique","n_unique","name","name","name","name","nan_max","nan_min","nan_propagating_aggregate","nanosecond","nanosecond","nanosecond","nanoseconds","nanoseconds","nanoseconds","negative_to_usize","neq","neq_missing","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_async","new_empty","new_from_index","new_from_index","new_null","next","next_batches","nodes","nodes_mut","not","not","not_equal","not_equal_missing","null","null_count","null_count","null_count","nulls_last","num_rows","offset","offset","offset","offset","on","ops_time_dtype","optimize","or","ordinal","ordinal","ordinal_day","ordinal_year","other","otherwise","otherwise","outer_join","outer_join","output_name","output_schema","over","over_with_options","parallel","parallel","parse","parse_from_str_slice","parse_from_str_slice","parse_from_str_slice","parse_int","parsed_int","partial_cmp","path","path","path","peak_max","peak_max","peak_min","peak_min","pearson_corr","period","period","pi","polars_bail","polars_ensure","polars_err","polars_warn","pop","pow","predicate","predicate_pushdown","predicates","prefix","prob","prod_as_series","product","profile","projection_pushdown","quantile","quantile","quantile","quantile","quantile_as_series","quantile_as_series","quarter","quarter","quarter","radians","range","rank","read_impl","read_parallel","rechunk","rechunk","rechunk","rechunk","rechunk","rechunk","rechunk","reduce_exprs","rem","rem","remainder","rename","rename","rename_fields","repeat","repeat_by","repeat_by","repeat_by","replace","replace_all","replace_literal","replace_literal_all","replace_time_zone","reshape","resolve_homedir","reverse","reverse","reverse","reverse","reverse","right_by","right_on","rolling_apply","rolling_apply","rolling_apply","rolling_apply_float","rolling_corr","rolling_cov","rolling_max","rolling_max","rolling_max","rolling_mean","rolling_mean","rolling_mean","rolling_median","rolling_median","rolling_median","rolling_min","rolling_min","rolling_min","rolling_quantile","rolling_quantile","rolling_quantile","rolling_std","rolling_std","rolling_std","rolling_sum","rolling_sum","rolling_sum","rolling_var","rolling_var","rolling_var","root_names","round","round","round_ms","round_ns","round_us","row_count","row_count","row_count","row_count","row_count","row_count","row_group_size","rows_left","rows_right","same_type","same_type","sample_frac","sample_n","sample_size","scan","scan","scan_ipc","scan_parquet","schema","schema","schema","schema","schema","schema","schema","schema","schema","search_sorted","second","second","second","second","seconds","seconds","select","series","set","set_at_idx","set_at_idx2","set_at_idx_with","set_bit_unchecked","set_low_memory","set_ordering","set_parallel","set_rechunk","set_rechunk","set_rechunk","set_rechunk","set_rechunk","set_sorted_flag","set_validity","shift","shift","shift","shift","shift","shift_and_fill","shift_and_fill","shift_and_fill","shrink_dtype","shrink_to_fit","shrink_to_fit","shuffle","simplify_expr","sin","sinh","sink_ipc","sink_parquet","skip_rows","skip_rows","slice","slice","slice","slice","slice","slice","slice","slice","slice_pushdown","slice_typed","slice_typed","slice_typed_unchecked","slice_typed_unchecked","slice_unchecked","slice_unchecked","sliced","sliced_unchecked","sort","sort","sort","sort","sort","sort_by","sort_by_exprs","sort_with","sort_with","sort_with","spearman_rank_corr","sqrt","start_by","starts_with","starts_with","statistics","std","std","std","std_as_series","std_as_series","str","str_concat","str_concat","str_lengths","str_n_chars","str_slice","strategy","streamable","streaming","strftime","strict","strict_cast","string","struct_","sub","sub","subtract","suffix","suffix","suffix","sum","sum","sum","sum","sum","sum","sum_as_series","sum_horizontal","super_type","tail","tail","tail","tail","take","take","take","take_iter","take_iter_unchecked","take_opt_iter","take_opt_iter_unchecked","take_rand","take_unchecked","take_unchecked","tan","tanh","temporal_range_vec","ternary_expr","then","then","tile","time_ranges","timestamp","to_alp","to_alp","to_alp_optimized","to_anyvalue","to_boxed","to_byte_slices","to_dot","to_dot","to_dummies","to_dummies","to_field","to_field","to_lowercase","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_string","to_string","to_string","to_string","to_string","to_supertypes","to_uppercase","tolerance","tolerance_str","top_k","truncate","truncate","truncate_impl","truncate_ms","truncate_ms","truncate_no_offset_ms","truncate_no_offset_ns","truncate_no_offset_us","truncate_ns","truncate_ns","truncate_us","truncate_us","try_apply","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_index_of","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","try_new","try_serialize","tu","type_coercion","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_name","tz","undo_aliases","unique","unique","unique","unique","unique","unique","unique_stable","unique_stable","unique_stable","unique_stable","unix_time","unnest","upper_bound","upsample","upsample_stable","use_earliest","use_statistics","use_statistics","utils","validate","validation","validity","validity","value_counts","value_counts","value_name","value_vars","values","values_iter","var","var","var","var_as_series","var_as_series","variable_name","vec_hash","vec_hash_combine","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","week","week","week","weekday","weekday","weekday","weekday","weeks","weeks","weeks_only","weights","weights","weights","when","when","when","window_size","window_size","window_size","window_size","with","with_batch_size","with_batch_size","with_batch_size","with_cache","with_capacity","with_chunk_size","with_chunk_size","with_column","with_columns","with_columns","with_columns","with_columns","with_columns","with_columns","with_comment_char","with_comment_char","with_compression","with_compression","with_compression","with_compression","with_compression","with_context","with_data_pagesize_limit","with_date_format","with_datetime_format","with_day","with_days","with_delimiter","with_delimiter","with_delimiter","with_dtype_overwrite","with_dtypes","with_dtypes_slice","with_encoding","with_encoding","with_end_of_line_char","with_end_of_line_char","with_extension","with_extension","with_float_precision","with_fractional_seconds","with_hms","with_hms","with_hour","with_hours","with_ignore_errors","with_ignore_errors","with_ignore_errors","with_infer_schema_length","with_infer_schema_length","with_json_format","with_json_format","with_microsecond","with_microseconds","with_milliseconds","with_minute","with_minutes","with_missing_is_null","with_missing_is_null","with_month","with_n_rows","with_n_rows","with_n_rows","with_n_rows","with_n_rows","with_n_rows","with_n_rows","with_n_threads","with_n_threads","with_nanoseconds","with_null_value","with_null_values","with_null_values","with_optimizations","with_path","with_path","with_path","with_path","with_path","with_predicate","with_predicate_pushdown","with_projection","with_projection","with_projection","with_projection","with_projection","with_projection_pushdown","with_quote_char","with_quote_char","with_quoting_char","with_rechunk","with_rechunk","with_rechunk","with_rechunk","with_rechunk","with_row_count","with_row_count","with_row_count","with_row_count","with_row_count","with_row_count","with_row_count","with_row_group_size","with_schema","with_schema","with_schema","with_schema","with_schema","with_schema_modify","with_schema_overwrite","with_schema_overwrite","with_second","with_seconds","with_simplify_expr","with_skip_rows","with_skip_rows","with_skip_rows_after_header","with_skip_rows_after_header","with_slice_pushdown","with_statistics","with_streaming","with_time_format","with_try_parse_dates","with_try_parse_dates","with_type_coercion","with_validity","with_validity","with_weeks","with_year","without_optimizations","xor","year","year","year","year","zip","zip_with","expr","input","input","interpol","propagate_nans","propagate_nans","quantile","drop_nulls","drop_nulls","by","by","data_type","descending","expr","expr","expr","expr","expr","falsy","function","function","function","function","idx","input","input","input","input","left","length","offset","op","options","options","options","options","order_by","output_type","partition_by","predicate","right","strict","truthy","atomic_seed","base","base","ddof","decimals","fixed_seed","max","method","method","min","normalize","periods","reverse","reverse","reverse","reverse","reverse","seed","super_type","groups","rolling","data_type","high","low","aggs","apply","args","by_column","contexts","count","df","err","expr","expr","exprs","file_info","file_info","file_options","function","function","id","input","input","input","input","input","input","input","input","input","input","input","input","input","input_left","input_right","inputs","keys","left_on","len","maintain_order","offset","options","options","options","options","options","output_schema","path","payload","predicate","predicate","predicate","projection","right_on","scan_type","schema","schema","schema","schema","schema","schema","schema","selection","AggList","_agg_helper_idx","_agg_helper_idx_no_null","_agg_helper_slice","_agg_helper_slice_no_null","_rolling_apply_agg_window_no_nulls","_rolling_apply_agg_window_nulls","_slice_from_offsets","_use_rolling_kernels","agg_list","ArrayNameSpace","AsArray","array_max","array_min","array_sum","array_unique","array_unique_stable","as_array","write","Error","FallibleStreamingIterator","FileWriter","Item","Serializer","__clone_box","advance","advance","all","any","borrow","borrow","borrow_mut","borrow_mut","by_ref","clone","clone_into","count","deref","deref","deref_mut","deref_mut","drop","drop","filter","find","fmt","for_each","from","from","fuse","get","get","init","init","into","into","into_inner","into_iter","map","map_err","map_ref","new","new","next","next","nth","position","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","BinaryNameSpace","borrow","borrow_mut","contains_literal","deref","deref_mut","drop","ends_with","from","init","into","starts_with","try_from","try_into","type_id","vzip","CategoricalNameSpace","CategoricalOrdering","Lexical","Physical","DateMethods","DatetimeMethods","DurationMethods","RollingAgg","RollingOptions","RollingOptionsImpl","TimeMethods","Utf8Methods","__clone_box","as_date","as_date_not_exact","as_datetime","as_datetime_not_exact","as_time","borrow","borrow_mut","by","by","center","center","clone","clone_into","closed_window","closed_window","day","day","days","default","deref","deref_mut","drop","fn_params","fn_params","from","hour","hour","hours","init","into","is_leap_year","is_leap_year","iso_year","iso_year","microseconds","milliseconds","min_periods","min_periods","minute","minute","minutes","month","month","nanosecond","nanosecond","nanoseconds","ordinal","ordinal","parse_from_str_slice","parse_from_str_slice","parse_from_str_slice","quarter","quarter","rolling_max","rolling_mean","rolling_median","rolling_min","rolling_quantile","rolling_std","rolling_sum","rolling_var","second","second","seconds","to_owned","try_from","try_into","tu","type_id","tz","unix_time","utf8","vzip","week","week","weekday","weekday","weights","weights","window_size","window_size","year","year","AsUtf8","DateDMY","DateYMD","DatetimeDMY","DatetimeYMD","DatetimeYMDZ","Pattern","Utf8Methods","__clone_box","as_date","as_date_not_exact","as_datetime","as_datetime_not_exact","as_time","as_utf8","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","from","hash","infer","init","into","is_inferable","to_owned","try_from","try_into","type_id","vzip","DatetimeInfer","Error","StrpTimeParser","TryFromWithUnit","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","from","infer_pattern_single","init","into","logical_type","parse","parse_bytes","parse_bytes","parse_bytes","pattern","to_owned","try_from","try_from_with_unit","try_from_with_unit","try_from_with_unit","try_into","type_id","vzip","Aws","Azure","CloudOptions","CloudType","File","Gcp","AnyValue","Array","Array","ArrayChunked","ArrowDataType","ArrowTimeUnit","AsRefDataType","Binary","Binary","Binary","BinaryChunked","BinaryOwned","BinaryType","Boolean","Boolean","Boolean","BooleanChunked","BooleanType","CatIter","Categorical","Categorical","CategoricalChunked","CategoricalChunkedBuilder","CategoricalType","CloudOptions","DataType","Date","Date","Date32","Date64","DateChunked","DateType","Datetime","Datetime","DatetimeChunked","DatetimeType","Decimal","Decimal","Decimal","Decimal256","DecimalChunked","DecimalType","Dictionary","Duration","Duration","Duration","DurationChunked","DurationType","Extension","Field","FixedSizeBinary","FixedSizeList","FixedSizeListType","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","GetAnyValue","Global","GlobalFinished","HashMap","IDX_DTYPE","IdxArr","IdxCa","IdxSize","IdxType","InitHashMaps","Int128Chunked","Int128Type","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","LargeBinary","LargeList","LargeUtf8","List","List","List","ListChunked","ListType","Local","Local","Logical","LogicalType","Map","Microsecond","Microseconds","Millisecond","Milliseconds","Nanosecond","Nanoseconds","Native","Null","Null","Null","NumericNative","Object","Object","ObjectChunked","ObjectOwned","ObjectType","OwnedObject","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsDataType","PolarsFloatType","PolarsIntegerType","PolarsNumericType","PolarsSingleType","RevMapping","RevMappingBuilder","Second","StrHashLocal","Struct","Struct","Struct","StructChunked","StructOwned","Time","Time","Time32","Time64","TimeChunked","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8Owned","Utf8Type","as_ref_dtype","cast","categorical","dtype","dtype","get_any_value","get_any_value_unchecked","get_dtype","get_unchecked","merge_dtypes","name","new","with_capacity","CatIter","CategoricalChunked","CategoricalChunkedBuilder","Global","GlobalFinished","Local","Local","RevMapping","RevMappingBuilder","StrHashLocal","stringcache","IUseStringCache","enable_string_cache","reset_string_cache","using_string_cache","with_string_cache","replace_time_zone","FromData","FromDataBinary","FromDataUtf8","from_data_default","from_data_unchecked_default","from_data_unchecked_default","DateLikeNameSpace","base_utc_offset","borrow","borrow_mut","cast_time_unit","combine","convert_time_zone","date","datetime","day","deref","deref_mut","drop","dst_offset","from","hour","init","into","is_leap_year","iso_year","microsecond","millisecond","minute","month","nanosecond","ordinal_day","quarter","replace_time_zone","round","second","strftime","time","timestamp","to_string","truncate","try_from","try_into","type_id","vzip","week","weekday","with_time_unit","year","PhysicalAggExpr","evaluate","root_name","AnonymousBuilder","width","write","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","RecordSerializer","Serializer","Skip","SkipWhile","Take","TakeWhile","__clone_box","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance_back","advance_back","advance_back","advance_back","advance_back","advance_back","all","any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","clone","clone_into","convert","count","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","filter","find","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get","get","get","get","get","get","get","get","get","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","map","map_err","map_ref","new","new","next","next","next","next_back","next_back","nth","position","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","group_agg_nan_max_s","group_agg_nan_min_s","nan_max_s","nan_min_s","MutableNullArray","BatchStats","ColumnStats","borrow","borrow","borrow_mut","borrow_mut","deref","deref","deref_mut","deref_mut","drop","drop","dtype","fmt","from","from","get_stats","init","init","into","into","null_count","schema","to_max","to_min","to_min_max","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","BatchedCsvReaderMmap","BatchedCsvReaderRead","OwnedBatchedCsvReader","OwnedBatchedCsvReaderMmap","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","from","from","from","from","init","init","init","init","into","into","into","into","next_batches","next_batches","next_batches","next_batches","to_batched_owned_mmap","to_batched_owned_read","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","AsSeries","IntoSeriesOps","SeriesOpsTime","TemporalMethods","as_series","day","hour","is_leap_year","iso_year","minute","month","nanosecond","ops_time_dtype","ordinal_day","ordinal_year","quarter","rolling_max","rolling_mean","rolling_median","rolling_min","rolling_quantile","rolling_std","rolling_sum","rolling_var","second","strftime","timestamp","to_ops","to_string","week","weekday","year","SlicedArray","slice_typed","slice_typed_unchecked","_broadcast_descending","arg_sort_multiple","arg_sort_no_nulls","sort_slice_ascending","sort_slice_descending","_get_rows_encoded","_get_rows_encoded_ca","_get_rows_encoded_compat_array","StringNameSpace","borrow","borrow_mut","concat","contains","contains_literal","count_match","deref","deref_mut","drop","ends_with","explode","extract","extract_all","from","from_radix","init","into","lengths","lstrip","n_chars","replace","replace_all","replace_n","rstrip","split","split_exact","split_exact_inclusive","split_inclusive","splitn","starts_with","str_slice","strip","strptime","to_date","to_datetime","to_decimal","to_lowercase","to_time","to_uppercase","try_from","try_into","type_id","vzip","get_reader_bytes","infer_file_schema","infer_file_schema_inner","is_compressed","Ascending","ChunkCompare","Descending","IntoSeries","IsSorted","Item","Not","Series","SeriesIter","SeriesPhysIter","SeriesTrait","__clone_box","__clone_box","_sum_as_series","abs","add","add","add","add","append","arg_max","arg_min","arg_sort","arg_unique","arithmetic","array","array_ref","as_any","as_any_mut","as_list","as_mut","as_ref","as_ref","as_series","as_series","as_single_ptr","as_single_ptr","binary","bitand","bitor","bitxor","bool","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","cast","cast","cast_unchecked","categorical","ceil","checked_div","checked_div","checked_div_num","chunk_lengths","chunks","chunks_mut","clear","clip","clip_max","clip_min","clone","clone","clone_inner","clone_into","clone_into","cummax","cummin","cumprod","cumsum","date","datetime","decimal","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","diff","div","div","div","div","drop","drop","drop","drop_nulls","dtype","duration","eq","eq","equal","equal","equal","equal","equal_missing","equal_missing","equal_missing","equal_missing","equivalent","equivalent","equivalent","equivalent","estimated_size","explode","extend","extend_constant","f32","f64","field","fill_null","filter","filter_threaded","floor","fmt","fmt","fmt","fmt_list","from","from","from","from","from","from","from","from","from_any_values","from_any_values_and_dtype","from_chunks_and_dtype_unchecked","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","full_null","get","get_data_ptr","get_object","get_unchecked","gt","gt","gt","gt","gt_eq","gt_eq","gt_eq","gt_eq","has_validity","head","i16","i32","i64","i8","idx","implementations","implode","init","init","init","into","into","into","into_frame","into_iter","into_series","into_series","is_empty","is_finite","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_series","is_series","is_sorted_flag","iter","len","limit","list","lit","lt","lt","lt","lt","lt_eq","lt_eq","lt_eq","lt_eq","max","max_as_series","mean","mean_as_series","median","median_as_series","min","min_as_series","mode","mul","mul","mul","mul","n_chunks","n_unique","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_from_index","new_null","next","not_equal","not_equal","not_equal","not_equal","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","null_count","ops","ops_time_dtype","peak_max","peak_min","phys_iter","product","quantile_as_series","rank","rechunk","rem","rem","rem","rename","rename","repeat_by","reshape","reverse","rolling_apply","rolling_max","rolling_mean","rolling_median","rolling_min","rolling_quantile","rolling_std","rolling_sum","rolling_var","round","sample_frac","sample_n","series_equal","series_equal_missing","set_sorted_flag","shift","shrink_to_fit","shrink_to_fit","shuffle","size_hint","slice","sort","sort_with","std_as_series","str_concat","str_value","strict_cast","struct_","sub","sub","sub","sub","sum","sum_as_series","tail","take","take_every","take_iter","take_iter_unchecked","take_opt_iter","take_opt_iter_unchecked","take_threaded","take_unchecked","take_unchecked_from_slice","take_unchecked_threaded","tile","time","to_arrow","to_dummies","to_ops","to_owned","to_owned","to_physical_repr","to_string","try_add","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","u16","u32","u64","u8","unique","unique_stable","unpack","unstable","utf8","var_as_series","vzip","vzip","vzip","zip_with","LhsNumOps","NumOpsDispatch","NumOpsDispatchInner","Output","_struct_arithmetic","add","add_to","add_to","checked","div","divide","divide","mul","multiply","multiply","rem","remainder","remainder","sub","subtract","subtract","NumOpsDispatchChecked","NumOpsDispatchCheckedInner","checked_div","checked_div","checked_div_num","checked_div_num","Drop","Ignore","NullBehavior","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","diff","drop","eq","equivalent","equivalent","equivalent","equivalent","fmt","from","hash","init","into","to_owned","try_from","try_into","type_id","vzip","ArrayBox","UnstableSeries","__clone_box","as_mut","as_ref","borrow","borrow_mut","clone","clone_into","deep_clone","deref","deref_mut","drop","from","init","into","new","swap","to_owned","try_from","try_into","type_id","vzip","with_array"],"q":[[0,"polars"],[19,"polars::chunked_array"],[762,"polars::chunked_array::arithmetic"],[770,"polars::chunked_array::builder"],[880,"polars::chunked_array::builder::list"],[896,"polars::chunked_array::iterator"],[1022,"polars::chunked_array::iterator::par"],[1024,"polars::chunked_array::object"],[2580,"polars::chunked_array::object::GroupsProxy"],[2582,"polars::chunked_array::object::builder"],[2605,"polars::chunked_array::object::categorical"],[2615,"polars::chunked_array::object::cloud"],[2654,"polars::chunked_array::object::datatypes"],[2850,"polars::chunked_array::object::default_arrays"],[2856,"polars::chunked_array::object::fixed_size_list"],[2876,"polars::chunked_array::object::list"],[2900,"polars::chunked_array::object::null"],[2924,"polars::chunked_array::object::registry"],[2934,"polars::chunked_array::object::slice"],[2937,"polars::chunked_array::object::stringcache"],[2942,"polars::chunked_array::object::utf8"],[2946,"polars::chunked_array::ops"],[3112,"polars::chunked_array::ops::sort"],[3117,"polars::chunked_array::ops::sort::arg_sort_multiple"],[3120,"polars::chunked_array::temporal"],[3126,"polars::chunked_array::temporal::conversion"],[3129,"polars::chunked_array::upstream_traits"],[3130,"polars::datatypes"],[4256,"polars::datatypes::categorical"],[4267,"polars::datatypes::categorical::stringcache"],[4287,"polars::doc"],[4288,"polars::doc::changelog"],[4296,"polars::docs"],[4299,"polars::error"],[4394,"polars::export"],[4395,"polars::export::ahash"],[4502,"polars::export::ahash::random_state"],[4506,"polars::export::arrow"],[4572,"polars::export::arrow::array"],[6077,"polars::export::arrow::array::growable"],[6313,"polars::export::arrow::array::ord"],[6318,"polars::export::arrow::bitmap"],[6477,"polars::export::arrow::bitmap::utils"],[6666,"polars::export::arrow::buffer"],[6726,"polars::export::arrow::chunk"],[6757,"polars::export::arrow::compute"],[6772,"polars::export::arrow::compute::aggregate"],[6800,"polars::export::arrow::compute::arithmetics"],[6857,"polars::export::arrow::compute::arithmetics::basic"],[6901,"polars::export::arrow::compute::arithmetics::decimal"],[6919,"polars::export::arrow::compute::arithmetics::time"],[6927,"polars::export::arrow::compute::arity"],[6935,"polars::export::arrow::compute::arity_assign"],[6937,"polars::export::arrow::compute::boolean"],[6946,"polars::export::arrow::compute::boolean_kleene"],[6952,"polars::export::arrow::compute::cast"],[7030,"polars::export::arrow::compute::comparison"],[7077,"polars::export::arrow::compute::comparison::binary"],[7093,"polars::export::arrow::compute::comparison::boolean"],[7110,"polars::export::arrow::compute::comparison::primitive"],[7127,"polars::export::arrow::compute::comparison::utf8"],[7143,"polars::export::arrow::compute::concatenate"],[7144,"polars::export::arrow::compute::filter"],[7148,"polars::export::arrow::compute::if_then_else"],[7149,"polars::export::arrow::compute::like"],[7157,"polars::export::arrow::compute::substring"],[7159,"polars::export::arrow::compute::take"],[7161,"polars::export::arrow::compute::temporal"],[7179,"polars::export::arrow::datatypes"],[7398,"polars::export::arrow::error"],[7407,"polars::export::arrow::ffi"],[7477,"polars::export::arrow::ffi::mmap"],[7479,"polars::export::arrow::io"],[7483,"polars::export::arrow::io::ipc"],[7529,"polars::export::arrow::io::ipc::read"],[7684,"polars::export::arrow::io::ipc::read::OutOfSpecKind"],[7694,"polars::export::arrow::io::ipc::write"],[7816,"polars::export::arrow::io::ipc::write::file_async"],[7834,"polars::export::arrow::io::ipc::write::stream_async"],[7854,"polars::export::arrow::io::json"],[7855,"polars::export::arrow::io::json::write"],[7898,"polars::export::arrow::io::ndjson"],[7899,"polars::export::arrow::io::ndjson::write"],[7925,"polars::export::arrow::io::parquet"],[7927,"polars::export::arrow::io::parquet::read"],[8480,"polars::export::arrow::io::parquet::read::ParquetType"],[8484,"polars::export::arrow::io::parquet::read::PrimitiveLogicalType"],[8488,"polars::export::arrow::io::parquet::read::fallible_streaming_iterator"],[8528,"polars::export::arrow::io::parquet::read::indexes"],[8623,"polars::export::arrow::io::parquet::read::schema"],[8641,"polars::export::arrow::io::parquet::read::schema::ParquetType"],[8645,"polars::export::arrow::io::parquet::read::statistics"],[8666,"polars::export::arrow::io::parquet::write"],[9355,"polars::export::arrow::io::parquet::write::ParquetType"],[9359,"polars::export::arrow::mmap"],[9361,"polars::export::arrow::offset"],[9455,"polars::export::arrow::scalar"],[9779,"polars::export::arrow::temporal_conversions"],[9810,"polars::export::arrow::trusted_len"],[9811,"polars::export::arrow::types"],[10040,"polars::export::arrow::types::simd"],[10512,"polars::export::arrow::util"],[10515,"polars::export::chrono"],[11693,"polars::export::chrono::format"],[12038,"polars::export::chrono::format::strftime"],[12039,"polars::export::chrono::naive"],[12049,"polars::export::chrono::offset"],[12082,"polars::export::chrono::prelude"],[12176,"polars::export::num"],[12454,"polars::export::num::bounds"],[12461,"polars::export::num::cast"],[12496,"polars::export::num::float"],[12607,"polars::export::num::identities"],[12617,"polars::export::num::int"],[12637,"polars::export::num::ops"],[12645,"polars::export::num::ops::bytes"],[12656,"polars::export::num::ops::checked"],[12672,"polars::export::num::ops::euclid"],[12678,"polars::export::num::ops::inv"],[12681,"polars::export::num::ops::mul_add"],[12686,"polars::export::num::ops::overflowing"],[12692,"polars::export::num::ops::saturating"],[12701,"polars::export::num::ops::wrapping"],[12713,"polars::export::num::pow"],[12718,"polars::export::num::real"],[12766,"polars::export::num::sign"],[12776,"polars::export::once_cell"],[12779,"polars::export::once_cell::race"],[12860,"polars::export::once_cell::sync"],[12922,"polars::export::once_cell::unsync"],[12982,"polars::export::rayon"],[13192,"polars::export::rayon::array"],[13216,"polars::export::rayon::collections"],[13223,"polars::export::rayon::collections::binary_heap"],[13292,"polars::export::rayon::collections::btree_map"],[13347,"polars::export::rayon::collections::btree_set"],[13385,"polars::export::rayon::collections::hash_map"],[13457,"polars::export::rayon::collections::hash_set"],[13512,"polars::export::rayon::collections::linked_list"],[13571,"polars::export::rayon::collections::vec_deque"],[13660,"polars::export::rayon::iter"],[15033,"polars::export::rayon::iter::plumbing"],[15069,"polars::export::rayon::option"],[15137,"polars::export::rayon::prelude"],[15289,"polars::export::rayon::range"],[15318,"polars::export::rayon::range_inclusive"],[15347,"polars::export::rayon::result"],[15415,"polars::export::rayon::slice"],[15725,"polars::export::rayon::str"],[15937,"polars::export::rayon::string"],[15954,"polars::export::rayon::vec"],[15999,"polars::export::regex"],[16455,"polars::export::regex::bytes"],[16880,"polars::frame"],[17144,"polars::frame::explode"],[17169,"polars::frame::groupby"],[17405,"polars::frame::groupby::GroupsProxy"],[17407,"polars::frame::groupby::aggregations"],[17417,"polars::frame::groupby::expr"],[17420,"polars::frame::hash_join"],[17525,"polars::frame::row"],[17631,"polars::functions"],[17638,"polars::prelude"],[21089,"polars::prelude::AggExpr"],[21096,"polars::prelude::BooleanFunction"],[21098,"polars::prelude::Expr"],[21132,"polars::prelude::FunctionExpr"],[21151,"polars::prelude::GroupsProxy"],[21153,"polars::prelude::LiteralValue"],[21156,"polars::prelude::LogicalPlan"],[21216,"polars::prelude::aggregations"],[21226,"polars::prelude::array"],[21234,"polars::prelude::arrow_ndjson"],[21235,"polars::prelude::arrow_ndjson::write"],[21297,"polars::prelude::binary"],[21313,"polars::prelude::cat"],[21317,"polars::prelude::chunkedarray"],[21409,"polars::prelude::chunkedarray::utf8"],[21448,"polars::prelude::chunkedarray::utf8::infer"],[21478,"polars::prelude::cloud"],[21484,"polars::prelude::datatypes"],[21681,"polars::prelude::datatypes::categorical"],[21692,"polars::prelude::datatypes::categorical::stringcache"],[21697,"polars::prelude::datetime"],[21698,"polars::prelude::default_arrays"],[21704,"polars::prelude::dt"],[21747,"polars::prelude::expr"],[21750,"polars::prelude::fixed_size_list"],[21752,"polars::prelude::json"],[21753,"polars::prelude::json::write"],[22004,"polars::prelude::nan_propagating_aggregate"],[22008,"polars::prelude::null"],[22009,"polars::prelude::predicates"],[22043,"polars::prelude::read_impl"],[22103,"polars::prelude::series"],[22135,"polars::prelude::slice"],[22138,"polars::prelude::sort"],[22143,"polars::prelude::sort::arg_sort_multiple"],[22146,"polars::prelude::string"],[22190,"polars::prelude::utils"],[22194,"polars::series"],[22606,"polars::series::arithmetic"],[22627,"polars::series::arithmetic::checked"],[22633,"polars::series::ops"],[22661,"polars::series::unstable"]],"d":["Polars crate version","","The typed heart of every Series column.","Data types supported by Polars.","","Other documentation","","Use a global string cache for the Categorical Types.","","","DataFrame module.","Functions","","","","Type agnostic columnar data structure.","Testing utilities.","","Check if string cache is set.","","ChunkedArray","","","Convert all values to their absolute/positive value.","","","","","","","","","","","","","","","","","","","","","Check if all values are true","","This is an iterator over a ListChunked that save …","This is an iterator over a ListChunked that save …","","","Check if any value is true","","Append in place. This is done by adding the chunks of other…","Apply a closure F elementwise.","","","","","","Apply a closure F elementwise.","","","","","","","Cast a numeric array to another numeric data type and …","","","","","","","","","","","","","","","","","","Ignore the list indices and apply func to the inner type …","Ignore the list indices and apply func to the inner type …","","","","","","","","","","Apply a closure elementwise. The closure gets the index of …","","","","","","Apply a closure elementwise. The closure gets the index of …","","","","","","","","","","Panics","Panics","Panics","Panics","Panics","","","","","","","","Implementations of arithmetic operations on ChunkedArray’…","","","","","","","","","","","","","","","","","","","","","","","","","","","Implementations of the ChunkCast Trait.","","","","","","","Cast a numeric array to another numeric data type and …","","","","","","","","","Unique id representing the number of chunks","A reference to the chunks","A mutable reference to the chunks","","","","Contiguous slice","","","","","Get slices of the underlying arrow data. NOTE: null values …","","","","","","","","","","","Get data type of ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","Extend the memory backed by this array with the values …","","","","","","","","","","","Get the index of the first non null value in this …","","","","","","","","","","Returns the argument unchanged.","","","","","","","Create a new ChunkedArray from existing chunks.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","","","","","","","","","","","","","","","","","","","Create a new ChunkedArray by taking ownership of the Vec. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the inner values as Series","Get the inner values as Series, ignoring the list offsets.","Get a hold to an object that can be formatted or …","Get a hold to an object that can be formatted or …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return if any the chunks in this [ChunkedArray] have a …","Get the head of the ChunkedArray","","","Get the inner data type of the fixed size list.","Get the inner data type of the list.","Calls U::from(self).","","","","","","","","","","","","","","","","","Check if ChunkedArray is empty.","","","","","","","","","Get a mask of the valid values.","Get a mask of the null values.","Returns true if contains a single chunk and has no null …","","Get the buffer of bits representing null values","","","Get the index of the last non null value in this …","Get the length of the ChunkedArray","Apply lhs / self","Apply lhs % self","Apply lhs - self","Take a view of top n elements","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a temporary ChunkedArray from a slice.","Create a temporary ChunkedArray from a slice.","","","","","","","","","","","","","","Name of the ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Nullify values in slice with an existing null bitmap","","Specialization that prevents an allocation prefer this …","Convert missing values to NaN values.","","","","","","","","","","","","","","","","","","","","","","Count the null values.","","Traits for miscellaneous operations on ChunkedArray","","","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","","","","","","","","Create ChunkedArray with samples from a Bernoulli …","Create ChunkedArray with samples from a Normal …","Create ChunkedArray with samples from a Standard Normal …","Create ChunkedArray with samples from a Uniform …","","Get a reference to the field.","","","","","","Rename this ChunkedArray.","","","","","","","","","","","","Apply a rolling custom function. This is pretty slow …","Apply a rolling custom function. This is pretty slow …","Sample a fraction between 0.0-1.0 of this ChunkedArray.","Sample n datapoints from this ChunkedArray.","","","","","","","","","","","","","","","","","","Set the ‘sorted’ bit meta info.","","","","","","","","","","","","","","","Shrink the capacity of this array to fit its length.","Slice the array. The chunks are reallocated the underlying …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the tail of the ChunkedArray","","","","","","","","","","","","","","","","","","","","","Traits and utilities for temporal data.","","Convert an Utf8Chunked to a Series of DataType::Decimal. …","If data is aligned in a single chunk and has no Null …","If all nested Series have the same length, a 2 dimensional …","","","","","","","","","","Safety","Convert to a Vec of Option<T::Native>.","Convert to a Vec but don’t return Option<T::Native> if …","","","","","","","","","","","","","","","","","","","Series to ChunkedArray<T>","","Implementations of upstream traits for ChunkedArray<T>","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The no null iterator for a BooleanArray","","","A PolarsIterator is an iterator over a ChunkedArray which …","Wrapper struct to convert an iterator of type T into one …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","create a new iterator","create a new iterator","create a new iterator","create a new iterator","create a new iterator","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Keep any of the unique rows This allows more optimizations","","A thread-safe reference-counting pointer. ‘Arc’ stands …","","","A nested list with a fixed size in each row","","","The set of supported logical types in this crate.","","Represents Arrow’s metadata of a “column”.","","An ordered sequence of Fields with associated Metadata.","The time units defined in Arrow.","","","","","","previous value in array","selects the last row in the right DataFrame whose ‘on’ …","","","Opaque binary data of variable length whose offsets are …","","","","","","","","","A binary true or false.","","true and false.","","","","","","","","","","","Aggregation operations","Aggregations that return Series of unit length. Those can …","","Fastest way to do elementwise operations on a …","Apply kernels on the arrow array chunks in a ChunkedArray.","","Cast ChunkedArray<T> to ChunkedArray<N>","Compare Series and ChunkedArray’s and get a boolean mask …","","Create a new ChunkedArray filled with values at that index.","Explode/ flatten a List or Utf8 Series","Replace None values with a value","Filter values by a boolean mask.","Fill a ChunkedArray with one value.","","Find local minima/ maxima","Quantile and median aggregation","Reverse a ChunkedArray<T>","This differs from ChunkWindowCustom and ChunkWindow by not …","Create a ChunkedArray with new values by index or by …","","Shift the values of a ChunkedArray by a number of periods.","Sort operations on ChunkedArray.","Fast access by index.","Get unique values in a ChunkedArray","Variance and standard deviation aggregation.","Combine two ChunkedArray based on some predicate.","ChunkedArray","","","","","","A contiguous growable collection of Series that have the …","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","","A dictionary encoded array (key_type, value_type), where …","Dummy type, we need to instantiate all generic types, so …","","","","Measure of elapsed time. This elapsed time is a physical …","","","","Extension type.","Characterizes the name and the DataType of a column.","","","Keep the first unique row.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","next value in array","selects the first row in the right DataFrame whose …","","","","Ensure that the same hash is used as with VecHash.","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Indexes of the groups, the first index is stored …","","Every group is indicated by an array where the","","","","","","","The type used by polars to index data.","","This trait exists to be unify the API of polars Schema and …","","","","","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Used to create the tuples for a groupby operation.","Used to convert a ChunkedArray, &dyn SeriesTrait and Series","Create a type that implements a faster TakeRandom.","","","","Mask the first unique values as true","Safety","Check if element is member of list array","Mask the last unique values as true","","","","","","","","","","Opaque binary data of variable length whose offsets are …","","A list of some logical data type whose offsets are …","","","A variable-length UTF-8 encoded string whose offsets are …","Keep the last unique row.","","","","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","","","","","","","","","Utf8Array: caches the string values","Utf8Array: caches the string values","Maps a logical type to a a chunked array implementation of …","","","A nested type that is represented as","","maximum value in array","replace with the maximum value of that data type","mean value of array","Arguments for [DataFrame::melt] function","Time in microseconds.","","","Time in milliseconds.","","","minimal value in array","replace with the minimal value of that data type","","","","","","Time in nanoseconds.","","","","selects the right in the right DataFrame whose ‘on’ …","","","Keep None of the unique rows.","","","Null type","","","","","","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","","replace with the value one","","","","","","","","This hashmap has the uses an IdHasher","","","","","","","","A PolarsIterator is an iterator over a ChunkedArray which …","","Values need to implement this so that they can be stored …","Trimmed down object safe polars object","","Any type that is not nested","","","","","","","Repeat the values n times.","","","","","","A map from field/column name (String) to the type of that …","","","","Time in seconds.","Series","","","","","","Slice is always sorted in ascending order.","Utility trait to slice concrete arrow arrays whilst …","","","Concat the values into a string array.","","","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","","One of the three arguments allowed in unchecked_take","","","","","Random access","","","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","","An UTF8 encoded string type.","","","","","","","replace with the value zero","","","","","","","","","","","","","","","","","","","","","","Get the sum of the Series as a new Series of length 1.","","","","Appends from an iterator over values","Appends from an iterator over values","","","Appends a null slot into the builder","","","","","Appends a null slot into the builder","Appends a null slot into the builder","Appends a null slot into the builder","","","","","","","","","","","","","","","Appends a value of type T into the builder","Appends a value of type T into the builder","Appends a value of type T into the builder","Appends a value of type T into the builder","","","Apply a closure elementwise. This is fastest when the null …","Apply a closure elementwise and cast to a Numeric …","Apply kernel and return result as a new ChunkedArray.","Apply a kernel that outputs an array of different type.","Apply a closure elementwise including null values.","Apply a closure elementwise and write results to a mutable …","Apply a closure elementwise. The closure gets the index of …","Apply a closure elementwise. The closure gets the index of …","Retrieve the indexes needed to sort this array.","Retrieve the indexes needed for a sort.","Retrieve the indexes need to sort this and the other …","Get first index of the unique values in a ChunkedArray. …","Get first indexes of unique values.","","Get a hold to self as Any trait reference. Only …","","Get a hold to self as Any trait reference. Only …","","","Provides a raw pointer to the data.","","","","Rechunk and return a pointer to the start of the Series. …","","Converts to Arc<[T]>.","Converts to Arc<T>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Apply a closure on optional values and cast to Numeric …","","","","","Cast a [ChunkedArray] to [DataType]","","","Does not check if the cast is a valid one and may …","","","Set the labels at the center of the window.","","","","","Checked integer division. Computes self / rhs, returning …","","","Get the lengths of the underlying chunks","Underlying chunks.","","","","Makes a clone of the Arc pointer.","","","","","","","","","","","","","","","","","Clone inner ChunkedArray and wrap in a new Arc","","","","","","","","","","","","","","","","","","","","","","Comparison for two Arcs.","","Whether the schema contains a field named name","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","Returns the Field’s DataType.","Its logical DataType","Data types supported by Polars.","","","","","Decrements the strong reference count on the Arc<T> …","","Creates a new Arc<T>, with the Default value for T.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Attempt to downcast the Arc<dyn Any + Send + Sync> to a …","Downcasts the Arc<dyn Any + Send + Sync> to a concrete …","Creates a new Weak pointer to this allocation.","","","","","","","","","","","","","","","","","","","","","","","","","","Drops the Arc.","","","","","","","","","","","","","","","","","","Drop all null values and return a new Series.","Get data type of ChunkedArray.","Get datatype of series.","","","","","Equality for two Arcs.","","","","","","","","","","Check for equality.","Check for equality where None == None.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get field (used in schema)","The fields composing this schema.","Replace None values with a give value T.","Filter values in the ChunkedArray with a boolean mask.","Filter by boolean mask. This operation clones data.","Returns a new Schema with a subset of all fields whose …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Converts a CString into an Arc<CStr> by moving the CString …","Allocate a reference-counted slice and move v’s items …","Converts a &CStr into a Arc<CStr>, by copying the contents …","Returns the argument unchanged.","Converts an atomically reference-counted string slice into …","Allocate a reference-counted str and copy v into it.","Create an atomically reference-counted pointer from a …","Converts a PathBuf into an Arc<Path> by moving the PathBuf …","Converts an OsString into an Arc<OsStr> by moving the …","Converts a T into an Arc<T>","Allocate a reference-counted str and copy v into it.","Copies the string into a newly allocated Arc<OsStr>.","Converts a Path into an Arc by copying the Path data into …","Move a boxed object to a new, reference-counted allocation.","Allocate a reference-counted slice and fill it by cloning v…","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Safety","Safety","Takes each element in the Iterator and collects it into an …","","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a new ChunkedArray from an iterator.","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a new ChunkedArray from an iterator.","Constructs an Arc<T> from a raw pointer.","","","Initialize by name and values.","Create a ChunkedArray with a single value.","","‘Greater than or equal to’ comparison for two Arcs.","","Get a nullable value by index.","Get a nullable value by index.","Get a single value by index. Don’t use this operation …","","","","","","","","","","","","","","","","Get a reference to the dtype of the field named name, or …","Get a single value. Beware this is slow.","Gets AnyValue from LogicalType","Get a single value. Beware this is slow. If you need to …","Safety","Get references to the name and dtype of the field at index","Get mutable references to the name and dtype of the field …","","Look up the name in the schema and return an owned Field …","Return all data about the field named name: its index in …","","Returns a mutable reference into the given Arc, if there …","Returns a mutable reference into the given Arc, without …","Get a vector of all column names.","","","Get the value at this index as a downcastable Any trait …","Safety","Safety","","","","","","","","","","","","","","","","Get a value by index and ignore the null bit.","Get a value by index and ignore the null bit.","Get a single value by index. Don’t use this operation …","Useful for a Utf8 or a List to get underlying value size. …","Create the tuples need for a groupby operation. * The …","Greater than comparison.","Greater-than comparison for two Arcs.","Greater than or equal comparison.","Return if any the chunks in this [ChunkedArray] have a …","","","","","","","","Increments the strong reference count on the Arc<T> …","Get the index of a column by name.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Insert a field with name and dtype at the given index into …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns the inner value, if the Arc has exactly one strong …","","","Consumes the Arc, returning the wrapped pointer.","","","","Check if Series is empty.","","","","Check if elements of this array are in the right Series, …","Check if elements of this Series are in the right Series, …","","","Get a mask of the non-null values.","Get a mask of the null values.","Check validity","","Its nullability","","Check if Series is sorted.","","","Check validity","Iterates over the (&name, &dtype) pairs in this schema","Iterates over references to the dtypes in this schema","Iterates the Fields in this schema, constructing them anew …","Iterates over references to the names in this schema","‘Less than or equal to’ comparison for two Arcs.","","Get length of series.","","The number of fields in the schema","Take num_elements from the top as a zero copy view.","","Less than comparison.","Less-than comparison for two Arcs.","Less than or equal comparison","","Makes a mutable reference into the given Arc.","Returns the maximum value in the array, according to the …","Get the max of the ChunkedArray as a new Series of length …","Get the max of the Series as a new Series of length 1.","Returns the mean value in the array. Returns None if the …","Returns the mean value in the array Returns an option …","Returns the mean value in the array. Returns None if the …","Returns the median value in the array Returns an option …","Get the median of the ChunkedArray as a new Series of …","Get the median of the Series as a new Series of length 1.","Merge other into self","","Additional custom (opaque) metadata.","Optional metadata.","","","Get the min of the ChunkedArray as a new Series of length …","Get the min of the Series as a new Series of length 1.","Amount of elements in the window that should be filled …","The most occurring value(s). Can return multiple Values","Compute the most occurring element in the array.","","","","","Number of chunks in this Series","Number of unique values in the ChunkedArray","Get unique values in the Series.","Name of series.","","Its name","Inequality for two Arcs.","Translate the negative index to an offset.","","Initialize by name and values.","Create a new UtfChunkedBuilder","","","","","Constructs a new Arc<T>.","","","Create a new UtfChunkedBuilder","Create a new, empty schema","Creates a new Field.","Constructs a new Arc<T> while giving you a Weak<T> to the …","Create a new ChunkedArray filled with values at that index.","Create a new Series filled with values from the given …","Create a new schema from this one, inserting a field with …","Constructs a new Arc with uninitialized contents.","Constructs a new atomically reference-counted slice with …","Constructs a new Arc with uninitialized contents, with the …","Constructs a new atomically reference-counted slice with …","Check for inequality.","Check for inequality where None == None.","","Count the null values.","","","","Partial comparison for two Arcs.","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Get a boolean mask of the local minimum peaks.","Constructs a new Pin<Arc<T>>. If T does not implement Unpin…","","","","","","Get the product of the ChunkedArray as a new Series of …","","","Returns true if the two Arcs point to the same allocation …","Aggregate a given quantile of the ChunkedArray. Returns …","Get the quantile of the ChunkedArray as a new Series of …","Get the quantile of the ChunkedArray as a new Series of …","Aggregate all chunks to a contiguous array of memory.","This is a heap allocated utility that can be used to …","","","Swap-remove a field by name and, if the field existed, …","Rename the Series.","Rename field old to new, and return the (owned) old name","Repeat the values n times, where n is determined by the …","","Return a reversed version of this array.","return a Series in reversed order","","","Apply a custom function over a rolling/ moving window of …","Set the values where the mask evaluates to true to some …","Set the values at indexes idx to some optional value …","Set the values at indexes idx by applying a closure to …","Safety","Change the field named name to the given dtype and return …","Change the field at the given index to the given dtype and …","","Shift the values by a given period and fill the parts that …","Shift the values by a given period and fill the parts that …","Remove a field by name, preserving order, and, if the …","Remove a field by name, preserving order, and, if the …","","Shrink the capacity of this array to fit its length.","","","","Get a zero copy view of the data.","","","Slices this Array.","","Slices the Array.","","","Returned a sorted ChunkedArray.","","","","","","","","Compute the standard deviation of this ChunkedArray/Series.","Get the standard deviation of the ChunkedArray as a new …","Get the standard deviation of the Series as a new Series …","Concat the values into a string array.","Concat the values into a string array.","","Whether the melt may be done in the streaming engine This …","","Gets the number of strong (Arc) pointers to this …","","","","Aggregate the sum of the ChunkedArray. Returns None if not …","Get the sum of the ChunkedArray as a new Series of length …","Take values from ChunkedArray by index. Note that the …","Take by index. This operation is clone.","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Create a type that implements TakeRandom.","Take values from ChunkedArray by index.","Take by index if ChunkedArray contains a single chunk.","","Convert self to ArrowSchema by cloning the fields","","","","","","","","","","","","","","","","","","","","","","","","","Take another Schema and try to find the supertypes between …","A tolerance in the same unit as the asof column","An timedelta given as","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a reference to the dtype of the field named name, or …","","Look up the name in the schema and return an owned Field …","Return all data about the field named name: its index in …","Get a mutable reference to the dtype of the field named …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Constructs a new Arc<T>, returning an error if allocation …","Constructs a new Arc with uninitialized contents, …","Constructs a new Arc with uninitialized contents, with the …","Constructs a new Pin<Arc<T>>, return an error if …","Returns the inner value, if the Arc has exactly one strong …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This should be used as type information. Consider this a …","Get unique values of a ChunkedArray","Get unique values in the Series.","","If we have the only reference to T then unwrap it. …","","","","Get a value at a certain index location","","Get a value at a certain index location","","Get a reference to the underlying data","Compute the variance of this ChunkedArray/Series.","Get the variance of the ChunkedArray as a new Series of …","Get the variance of the Series as a new Series of length 1.","","Compute the hash for all values in the array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Gets the number of Weak pointers to this allocation.","An optional slice with the same length as the window that …","The length of the window.","","Create a new, empty schema with capacity","Insert a new column in the Schema","Creates a new Field with metadata.","Attaches a Metadata to Schema","","Create a new ChunkedArray with values from self where the …","","","","Appends a null slot into the builder","","","Appends a value of type T into the builder","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Utf8Array: caches the string values","Utf8Array: caches the string values","","","","","","Options to connect to various cloud providers.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Parse a configuration from a Hashmap. This is the …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","A nested list with a fixed size in each row","","The set of supported logical types in this crate.","The time units defined in Arrow.","","","","Opaque binary data of variable length whose offsets are …","","","","A binary true or false.","","true and false.","","","","","","","","","","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","A dictionary encoded array (key_type, value_type), where …","","","Measure of elapsed time. This elapsed time is a physical …","","","Extension type.","Characterizes the name and the DataType of a column.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","","","","","The type used by polars to index data.","","","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Opaque binary data of variable length whose offsets are …","A list of some logical data type whose offsets are …","A variable-length UTF-8 encoded string whose offsets are …","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","Utf8Array: caches the string values","Utf8Array: caches the string values","Maps a logical type to a a chunked array implementation of …","","A nested type that is represented as","Time in microseconds.","","Time in milliseconds.","","Time in nanoseconds.","","","","","Null type","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","","","This hashmap has the uses an IdHasher","","","","","","","Any type that is not nested","","","Time in seconds.","","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","An UTF8 encoded string type.","","","","Get data type of ChunkedArray.","","Gets AnyValue from LogicalType","Safety","","Safety","","","","","","","","","Safety","Safety","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","Cast null arrays to inner type and ensure that all offsets …","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","This trait can be registered, after which that global …","","","Append a null value.","Append a T of ObjectChunked<T> made generic via the Any …","","","","","Take the current state and materialize as a Series the …","Utility trait to slice concrete arrow arrays whilst …","Slices this Array.","Slices the Array.","RAII for the string cache If an operation creates …","Use a global string cache for the Categorical Types.","Reset the global string cache used for the Categorical …","Check if string cache is set.","","","","","","","previous value in array","","","","","Aggregation operations","","Fastest way to do elementwise operations on a …","Apply kernels on the arrow array chunks in a ChunkedArray.","","Cast ChunkedArray<T> to ChunkedArray<N>","Compare Series and ChunkedArray’s and get a boolean mask …","","Create a new ChunkedArray filled with values at that index.","Explode/ flatten a List or Utf8 Series","Replace None values with a value","Filter values by a boolean mask.","Fill a ChunkedArray with one value.","","Find local minima/ maxima","Quantile and median aggregation","Reverse a ChunkedArray<T>","This differs from ChunkWindowCustom and ChunkWindow by not …","Create a ChunkedArray with new values by index or by …","","Shift the values of a ChunkedArray by a number of periods.","Sort operations on ChunkedArray.","Fast access by index.","Get unique values in a ChunkedArray","Variance and standard deviation aggregation.","Combine two ChunkedArray based on some predicate.","Dummy type, we need to instantiate all generic types, so …","","","next value in array","Create a type that implements a faster TakeRandom.","Mask the first unique values as true","Check if element is member of list array","Mask the last unique values as true","","","","","","","","","maximum value in array","replace with the maximum value of that data type","mean value of array","minimal value in array","replace with the minimal value of that data type","","","","","","","","replace with the value one","Repeat the values n times.","","","","","","Concat the values into a string array.","One of the three arguments allowed in unchecked_take","","","","","Random access","","","","","","replace with the value zero","Apply a closure elementwise. This is fastest when the null …","Apply a closure elementwise and cast to a Numeric …","Apply kernel and return result as a new ChunkedArray.","Apply a kernel that outputs an array of different type.","Apply a closure elementwise including null values.","Apply a closure elementwise and write results to a mutable …","Apply a closure elementwise. The closure gets the index of …","Apply a closure elementwise. The closure gets the index of …","Retrieve the indexes needed to sort this array.","Retrieve the indexes need to sort this and the other …","Get first index of the unique values in a ChunkedArray. …","","","Apply a closure on optional values and cast to Numeric …","Cast a [ChunkedArray] to [DataType]","Does not check if the cast is a valid one and may …","","","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","Check for equality.","Check for equality where None == None.","","","Replace None values with a give value T.","Filter values in the ChunkedArray with a boolean mask.","","Create a ChunkedArray with a single value.","","Get a nullable value by index.","Get a nullable value by index.","Get a single value. Beware this is slow.","Get a single value. Beware this is slow. If you need to …","Get a value by index and ignore the null bit.","Get a value by index and ignore the null bit.","Greater than comparison.","Greater than or equal comparison.","","Check if elements of this array are in the right Series, …","","Less than comparison.","Less than or equal comparison","","Returns the maximum value in the array, according to the …","Returns the mean value in the array. Returns None if the …","Returns the mean value in the array. Returns None if the …","","The most occurring value(s). Can return multiple Values","","","Number of unique values in the ChunkedArray","Create a new ChunkedArray filled with values at that index.","Check for inequality.","Check for inequality where None == None.","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Aggregate a given quantile of the ChunkedArray. Returns …","Repeat the values n times, where n is determined by the …","Return a reversed version of this array.","","Set the values where the mask evaluates to true to some …","Set the values at indexes idx to some optional value …","Set the values at indexes idx by applying a closure to …","","Shift the values by a given period and fill the parts that …","","Returned a sorted ChunkedArray.","","Compute the standard deviation of this ChunkedArray/Series.","Concat the values into a string array.","Aggregate the sum of the ChunkedArray. Returns None if not …","Take values from ChunkedArray by index. Note that the …","Create a type that implements TakeRandom.","Take values from ChunkedArray by index.","","","Get unique values of a ChunkedArray","Compute the variance of this ChunkedArray/Series.","","Create a new ChunkedArray with values from self where the …","","","","used a lot, ensure there is a single impl","","","","","","","","","","","","","","Local AsRef<T> trait to circumvent the orphan rule.","","","A nested list with a fixed size in each row","","The set of supported logical types in this crate.","The time units defined in Arrow.","","","","Opaque binary data of variable length whose offsets are …","","","","A binary true or false.","","true and false.","","","","","","","","","","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","A dictionary encoded array (key_type, value_type), where …","","","Measure of elapsed time. This elapsed time is a physical …","","","Extension type.","Characterizes the name and the DataType of a column.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","","","","","The type used by polars to index data.","","","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Opaque binary data of variable length whose offsets are …","A list of some logical data type whose offsets are …","A variable-length UTF-8 encoded string whose offsets are …","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","Utf8Array: caches the string values","Utf8Array: caches the string values","Maps a logical type to a a chunked array implementation of …","","A nested type that is represented as","Time in microseconds.","","Time in milliseconds.","","Time in nanoseconds.","","","","","Null type","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","","","This hashmap has the uses an IdHasher","","","","","","","Any type that is not nested","","","Time in seconds.","","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","An UTF8 encoded string type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Retrieve the indexes needed to sort this array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Change the underlying TimeUnit. And update the data …","Change the underlying TimeUnit. And update the data …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the Field datatype.","","Returns a reference to the Field datatype.","Extract the days from a Duration","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Appends all the values in a single lock of the global …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get data type of ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check if this categorical already exists","","Get access to one of this [StructChunked]’s fields","","","str to Categorical","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Create a CategoricalChunked from an array of idx and an …","Construct a new DurationChunked from an iterator over …","Construct a new DurationChunked from an iterator over …","Create a CategoricalChunked from a categorical indices. …","Construct a new DateChunked from an iterator over NaiveDate…","Construct a new DateChunked from an iterator over optional …","Construct a new DatetimeChunked from an iterator over …","","Construct a new TimeChunked from an iterator over NaiveTime…","Construct a new TimeChunked from an iterator over optional …","","","","Categorical to str","","","","","","Gets AnyValue from LogicalType","","Gets AnyValue from LogicalType","","","","","","Safety","","","Get the categories in this RevMapping","","","","","","","","","","","","","","","","","","","","","","","","","","Get a reference to the mapping of categorical types to the …","Get a reference to the &str contained within AnyValue.","Safety","","","","","","","","","Extract hour from underlying NaiveDateTime representation. …","Extract the hours from a Duration","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","Try to coerce to an AnyValue with static lifetime. This …","","","","","","","","Check if this DataType is a logical type","","","Check if this DataType is a numeric type.","Check if datatype is a primitive type. By that we mean that","","","Check if this DataType is a temporal type","","","Create an [Iterator] that iterates over the &str values of …","Get the length of the RevMapping","","","Get a reference to the logical array (the categories).","","","","Extract the microseconds from a Duration","Extract the milliseconds from a Duration","Extract minute from underlying NaiveDateTime …","Extract the seconds from a Duration","","","","","","","","","","","","","","","","","","","","Returns a reference to the Field name.","","Extract second from underlying NaiveDateTime …","Extract the nanoseconds from a Duration","","","","","","","","","","","","Creates a new Field.","","","","","","","Only implemented for the same types and physical types!","","","Get a reference to the Field of array.","","","","","","","","","","","","","","","Check if the categoricals are created under the same …","","Extract second from underlying NaiveDateTime …","Extract the seconds from a Duration","","Sets the Field name.","Change the underlying TimeUnit. This does not modify the …","Change the underlying TimeUnit. This does not modify the …","Change the underlying TimeZone. This does not modify the …","","Returned a sorted ChunkedArray.","","Convert from Time into Utf8 with the given format. See …","Convert from Datetime into Utf8 with the given format. See …","Convert from Date into Utf8 with the given format. See …","","","","","","","","","","","","","","","","Convert to an Arrow data type.","Converts the Field to an arrow::datatypes::Field.","","","Returns &self for all but DataType::Extension. For …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert to the physical data type","the PhysicalType of this DataType.","Convert from Date into Utf8 with the given format. See …","Convert from Time into Utf8 with the given format. See …","Convert from Datetime into Utf8 with the given format. See …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Utf8Array: caches the string values","Utf8Array: caches the string values","","","","","RAII for the string cache If an operation creates …","","","","","","","","Use a global string cache for the Categorical Types.","Returns the argument unchanged.","Hold the StringCache","","Calls U::from(self).","Reset the global string cache used for the Categorical …","","","","Check if string cache is set.","","","","Changelog v0.10 / v0.11","Changelog v0.3","Changelog v0.4","Changelog v0.5","Changelog v0.6","Changelog v0.7","Changelog v0.8","Changelog v0.9","Polars Eager cookbook","Polars Lazy cookbook","Performance","Enum with all errors in this crate.","","","","","","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","","","Wrapper for IO errors","","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","","","","","Wraps an external error in an Error.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Set the function that will be called by the polars_warn! …","","","","","","","","","","","","","","","","","","","","A HashMap using RandomState to hash the items. (Requires …","A HashSet using RandomState to hash the items. (Requires …","A Hasher for hashing an arbitrary stream of bytes.","Type alias for HashMap<K, V, ahash::RandomState>","A convenience trait that can be used together with the …","Type alias for HashSet<K, ahash::RandomState>","A convenience trait that can be used together with the …","Provides a Hasher factory. This is typically used (e.g. by …","","","","Returns the intersection of self and rhs as a new …","Returns the union of self and rhs as a new AHashSet<T, S>.","Returns the symmetric difference of self and rhs as a new …","","","","","","","Constructs a new AHasher with keys based on this …","","","","","","","Constructs a new AHasher with fixed keys. If std is …","Creates an empty AHashSet<T, S> with the Default value for …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Examples","Returns the argument unchanged.","This crates a hashset from the provided iterator using …","Create a new RandomState BuildHasher based on the provided …","Calculates the hash of a single value. This provides a …","Calculates the hash of a single value. This provides a …","","","","Calls U::from(self).","Calls U::from(self).","","Calls U::from(self).","","","","","Constructs a new HashMap","Constructs a new HashSet","This crates a hashset using RandomState::new. See the …","Create a new RandomState BuildHasher using random keys.","","Returns the difference of self and rhs as a new …","","","","","","","","","","","","","","","","Constructs a new HashMap with a given initial capacity","Constructs a new HashSet with a given initial capacity","This crates a hashset with the specified capacity using …","","","Build a RandomState from a single key. The provided key …","Allows for explicitly setting the seeds to used. All …","","","","","","","","A supplier of Randomness used for different hashers. See …","Provides a Hasher factory. This is typically used (e.g. by …","","Provides an optional way to manually supply a source of …","A HashMap using RandomState to hash the items. (Requires …","The enum Either with variants Left and Right is a general …","A value of type L.","A value of type R.","","Contains the Array and MutableArray trait objects …","contains Bitmap and MutableBitmap, containers of bool.","","","Contains Buffer, an immutable container for all Arrow …","Contains Chunk, a container of Array where every array has …","","","contains a wide range of compute operations (e.g. …","Contains all metadata, such as PhysicalType, DataType, …","","","","","","","","","","","","Defines Error, representing all errors returned by this …","","","contains FFI bindings to import and export Array via Arrow…","","Examples","Returns the argument unchanged.","","This crates a hashmap from the provided iterator using …","Returns a reference to the value corresponding to the key.","Returns the key-value pair corresponding to the supplied …","Returns a mutable reference to the value corresponding to …","Returns a reference to the value corresponding to the …","","Inserts a key-value pair into the map.","","Calls U::from(self).","","","","Creates a consuming iterator visiting all the keys in …","Creates a consuming iterator visiting all the values in …","Contains modules to interface with other formats such as […","Memory maps regions defined on the IPC format into Array.","This crates a hashmap using RandomState::new which obtains …","Contains the declaration of Offset","Removes a key from the map, returning the value at the key …","contains the Scalar trait object representing individual …","Conversion methods for dates and times.","","Declares TrustedLen.","","","","Sealed traits and implementations to handle all physical …","Misc utilities used in different places in the crate.","","This crates a hashmap with the specified capacity using …","","","A trait representing an immutable Arrow array. Arrow …","Iterator of values of an ArrayAccessor.","A BinaryArray is Arrow’s semantically equivalent of an …","Iterator of values of an BinaryArray.","A BooleanArray is Arrow’s semantically equivalent of an …","A type definition PrimitiveArray for days_ms","A type definition MutablePrimitiveArray for days_ms","An Array whose values are stored as indices. This Array is …","Trait denoting NativeTypes that can be used as keys of a …","The Arrow’s equivalent to an immutable …","The Arrow’s equivalent to an immutable …","A type definition PrimitiveArray for f16","A type definition MutablePrimitiveArray for f16","A type definition PrimitiveArray for f32","A type definition MutablePrimitiveArray for f32","A type definition PrimitiveArray for f64","A type definition MutablePrimitiveArray for f64","Trait that BinaryArray and Utf8Array implement for the …","A type definition PrimitiveArray for i128","A type definition MutablePrimitiveArray for i128","A type definition PrimitiveArray for i16","A type definition MutablePrimitiveArray for i16","A type definition PrimitiveArray for i256","A type definition MutablePrimitiveArray for i256","A type definition PrimitiveArray for i32","A type definition MutablePrimitiveArray for i32","A type definition PrimitiveArray for i64","A type definition MutablePrimitiveArray for i64","A type definition PrimitiveArray for i8","A type definition MutablePrimitiveArray for i8","The corresponding IntegerType of this key","An Array semantically equivalent to …","Iterator of values of a ListArray.","An array representing a (key, value), both of arbitrary …","A type definition PrimitiveArray for months_days_ns","A type definition MutablePrimitiveArray for months_days_ns","A trait describing a mutable array; i.e. an array whose …","The Arrow’s equivalent to Vec<Option<Vec<u8>>>. …","A MutableArray that builds a BinaryArray. It differs from …","The Arrow’s equivalent to Vec<Option<bool>>, but with …","A mutable, strong-typed version of DictionaryArray.","The Arrow’s equivalent to a mutable …","The mutable version of FixedSizeListArray.","The mutable version of ListArray.","A distinct type to disambiguate clashing methods","The Arrow’s equivalent to Vec<Option<T>> where T is …","Converting a MutableStructArray into a StructArray is O(1).","A MutableArray that builds a Utf8Array. It differs from …","A MutableArray that builds a Utf8Array. It differs from …","The concrete Array of DataType::Null.","A PrimitiveArray is Arrow’s semantically equivalent of …","A trait describing the ability of a struct to receive new …","A StructArray is a nested Array with an optional validity …","A trait describing the ability of a struct to create …","A trait describing the ability of a struct to extend from …","A trait describing the ability of a struct to receive new …","A type definition PrimitiveArray for u16","A type definition MutablePrimitiveArray for u16","A type definition PrimitiveArray for u32","A type definition MutablePrimitiveArray for u32","A type definition PrimitiveArray for u64","A type definition MutablePrimitiveArray for u64","A type definition PrimitiveArray for u8","A type definition MutablePrimitiveArray for u8","UnionArray represents an array whose each slot can contain …","A Utf8Array is arrow’s semantic equivalent of an …","Iterator of values of an Utf8Array.","","","","","","","","","","","","","","","","","","","","","","","","","If the key type always can be converted to usize.","","","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the validity of this array.","Applies a function f to the values of this array, cloning …","Applies a function f to the values of this array, cloning …","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Arcs this array into a std::sync::Arc<dyn Array>.","Converts itself to a reference of Any, which enables …","Convert to Any, to enable dynamic casting.","","","","","","","","","","","","","","","","","","","","","","","","Converts itself to a mutable reference of Any, which …","","","","","","","","","","","","Convert itself to an (immutable) atomically reference …","","","","","","","","","","","","Convert itself to an (immutable) Array.","","","","","","","","","","","","","Convert to mutable Any, to enable dynamic casting.","","","","","","","","","","","","","","Represents this key as a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","Boxes this array into a Box<dyn Array>.","","","Returns the capacity in number of items","Returns the capacity of this array","Returns the capacity of this MutablePrimitiveArray.","Reserves additional elements and additional_values on the …","Returns the capacity in number of items","","","","","","","","","","","","","","","","","Clones a dynamic Array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The DataType of the Array. In combination with …","The DataType of the array.","","","Returns the DataType of this array.","","","Returns the arrays’ DataType.","","","","Returns the DataType of this DictionaryArray","","","","","","","","","","","Returns the arrays’ DataType.","","","","","","","Returns the DataType of this array.","","","","","","","","","","","Returns the default DataType of this container: …","Returns the default DataType, DataType::Binary or …","Returns the default DataType of this container: …","Returns a default DataType of this array, which depends on …","Returns a DataType consistent with FixedSizeListArray.","Returns a default DataType: inner field is named “item”…","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Logically compares two Arrays. Two arrays are logically …","","","","","","","Extends the MutablePrimitiveArray with a constant","Extends the MutablePrimitiveArray from a slice","Extends the MutableBinaryValuesArray from a TrustedLen","Extends the MutableBinaryArray from an iterator of …","Extends the MutableBooleanArray from an iterator of …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of trusted …","Extends the MutableUtf8ValuesArray from a TrustedLen","Extends MutableBinaryValuesArray from an iterator of …","Extends the MutableBinaryArray from an iterator of …","Extends the MutableBooleanArray from an iterator of …","Extends the MutablePrimitiveArray from an iterator of …","Extends MutableUtf8Array from an iterator of trusted len.","Extends MutableUtf8ValuesArray from an iterator of trusted …","Extends the MutableBinaryArray from an iterator of trusted …","Extends the MutableBooleanArray from an iterator of values …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of values of …","Extends the MutableBinaryArray from an iterator of values …","Extends the MutableBooleanArray from an iterator of values …","Extends the MutablePrimitiveArray from an iterator of …","Extends the MutableUtf8Array from an iterator of values of …","Extends the MutableBinaryArray from an iterator of values. …","Extends the MutableUtf8Array from an iterator of values. …","Returns the field (guaranteed to be a Struct)","The fields.","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Creates a new MutableBinaryArray from a slice of optional …","Returns the argument unchanged.","","","Returns the argument unchanged.","","Creates a new BinaryArray from a slice of optional &[u8].","","Creates a new MutableBooleanArray out of a slice of …","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Creates a new MutableFixedSizeBinaryArray from a slice of …","Returns the argument unchanged.","","Creates a new FixedSizeBinaryArray from a slice of …","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Creates a new MutableUtf8Array from a slice of optional …","Returns the argument unchanged.","","Returns the argument unchanged.","Returns a new Utf8Array from a slice of &str.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","Creates a [PrimitiveArray] from its internal …","Creates a [BooleanArray] from its internal representation. …","Creates a [PrimitiveArray] from its internal …","","","","","","Creates a FixedSizeBinaryArray from an iterator of …","","","","","","","","","","Creates a new MutableBinaryArray from a Iterator of &[u8].","Returns a new BinaryArray from a Iterator of &[u8].","Creates a new MutableUtf8Array from a Iterator of &str.","Creates a new Utf8Array from a Iterator of &str.","Creates a new BinaryArray from slices of &[u8].","Creates a new MutableBooleanArray from a slice of bool.","Creates a new BooleanArray from a slice of bool.","Creates a FixedSizeBinaryArray from a slice of arrays of …","Creates a MutablePrimitiveArray from a slice of values.","Creates a (non-null) PrimitiveArray from a slice of values.","Returns a Utf8Array from a slice of &str.","Creates a MutableBinaryValuesArray from a TrustedLen","Creates a MutableBinaryArray from an iterator of trusted …","Creates a BinaryArray from a TrustedLen","Creates a BooleanArray from a TrustedLen.","Creates a BooleanArray from a TrustedLen.","Creates a MutablePrimitiveArray from a TrustedLen.","Creates a PrimitiveArray from a TrustedLen of optional …","Creates a MutableUtf8Array from an iterator of trusted …","Creates a MutableUtf8ValuesArray from a TrustedLen","Creates a Utf8Array from an iterator of trusted length.","Returns a new MutableBinaryValuesArray from an iterator of …","Creates a MutableBinaryArray from an iterator of trusted …","Creates a BinaryArray from an iterator of trusted length.","Creates a BooleanArray from an iterator of trusted length. …","Creates a BooleanArray from an iterator of trusted length. …","Creates a MutablePrimitiveArray from an iterator of …","Creates a PrimitiveArray from an iterator of optional …","Creates a MutableUtf8Array from an iterator of trusted …","Returns a new MutableUtf8ValuesArray from an iterator of …","Creates a Utf8Array from an iterator of trusted length.","Creates a new BinaryArray from a TrustedLen of &[u8].","Returns a BinaryArray from an iterator of trusted length.","Creates a new MutableBooleanArray from an TrustedLen of …","Creates a new BooleanArray from an TrustedLen of bool.","Creates a new MutablePrimitiveArray out an iterator over …","Creates a (non-null) PrimitiveArray from a TrustedLen of …","Creates a new MutableUtf8Array from a TrustedLen of &str.","Returns a (non-null) Utf8Array created from a TrustedLen …","Creates a new BinaryArray from a TrustedLen of &[u8].","Creates a new MutableBooleanArray from an TrustedLen of …","Creates a new BooleanArray from an TrustedLen of bool. Use …","Creates a new MutablePrimitiveArray from an iterator over …","Creates a new PrimitiveArray from an iterator over values","Creates a MutableUtf8Array from an iterator of trusted …","Creates a (non-null) PrimitiveArray from an iterator of …","Creates a (non-null) MutablePrimitiveArray from a vector …","Creates a (non-null) PrimitiveArray from a vector of …","","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","","Returns the element at index i or None if it is null","","Returns the element at index i or None if it is null","","","Returns the element at index i or None if it is null","Returns the element at index i or None if it is null","","Returns a the inner Field","Returns a the inner DataType","Returns a function that writes the element of array at …","Returns all fields from DataType::Union.","Returns an option of a mutable reference to the values of …","","","","","","","Returns a function that writes the value of the element of …","","","","","Contains the trait Growable and corresponding concreate …","Returns the index and slot of the field to select from …","Returns the index and slot of the field to select from …","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts itself into an Array.","Converts itself into an Array.","converts itself into Arc<dyn Array>","Converts itself into an Array.","Converts itself into an Array.","Converts itself into an Array.","Converts itself into an Array.","converts itself into Box<dyn Array>","converts itself into Box<dyn Array>","Extract the low-end APIs from the MutableUtf8Array.","Extract the low-end APIs from the MutableBinaryValuesArray.","Returns its internal representation","Returns its internal representation","Extract the low-end APIs from the MutablePrimitiveArray.","Returns its internal representation","Extract the low-end APIs from the MutableStructArray.","Extract the low-end APIs from the MutableUtf8ValuesArray.","Returns its internal representation","","","","","","","","","","","","","","","","","","","Try to convert this BinaryArray to a MutableBinaryArray","Try to convert this BooleanArray to a MutableBooleanArray","Try to convert this PrimitiveArray to a …","Try to convert this Utf8Array to a MutableUtf8Array","","","whether the array is empty","Whether the array is empty.","Returns whether slot i is null.","","","","","","","Returns whether the values of this DictionaryArray are …","Returns whether the DataType::Union is sparse or not.","Returns whether slot i is valid.","Whether index is valid / set.","","","","","","","Returns an iterator of &[u8]","Returns an iterator of Option<&[u8]>","Returns an iterator of Option<&[u8]> over every element of …","Returns an iterator over the optional values of this …","Returns an iterator over the optional values of this …","Returns an iterator of Option<Box<dyn Scalar>>.","constructs a new iterator","constructs a new iterator","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator of Option<Box<dyn Array>>","Returns an iterator over Option<T>","Returns an iterator over the values and validity, …","constructs a new iterator","Returns an iterator of Option<&str>","Returns an iterator of &str","Returns an iterator of Option<&str>","Returns an iterator over the the optional values of …","Returns iterator over the values of …","Returns the keys’ value of the DictionaryArray as usize","Returns the dictionary keys","Returns the keys of the DictionaryArray. These keys can be …","Returns an iterator of the keys’ of the DictionaryArray …","Returns an iterator of the keys’ values of the …","The length of the Array. Every array has a length …","The length of the array.","Returns the length of this array","","","","Returns the length of this array","","Returns the length of this array","","","Returns the length of this array","","Returns the length of this array","","Returns the length of this array","","","The length of this array","Returns the length of this array","","Returns the length of this array","","Returns the length of this array","","Returns the length of this array","","","","","","Returns the length of this array","","Returns the length of this array","","Returns the length of this array","","","Returns the length of this array","","Returns the length of this array","Returns the dictionary map","","","","The values as a mutable reference","The values","The mutable values","Returns an empty MutableBinaryValuesArray.","Creates a new empty MutableBinaryArray.","Alias for unwrapping Self::try_new","Creates an new empty MutableBooleanArray.","Alias to Self::try_new().unwrap()","Creates an empty MutableDictionaryArray.","Creates a new empty MutableFixedSizeBinaryArray.","Creates a new FixedSizeBinaryArray.","Creates a new MutableFixedSizeListArray from a MutableArray…","Alias to Self::try_new(...).unwrap()","Creates a new empty MutableListArray.","Creates a new ListArray.","Creates a new MapArray.","Returns a new NullArray.","Returns a new MutableNullArray.","Creates a new empty MutablePrimitiveArray.","Alias for Self::try_new(..).unwrap().","Creates a new MutableStructArray.","Returns a new UnionArray.","Initializes a new empty MutableUtf8Array.","Returns an empty MutableUtf8ValuesArray.","Creates a new Utf8Array.","Creates a new ArrayValuesIter","Creates an empty BinaryArray, i.e. whose .len is zero.","Returns a new empty BooleanArray.","Returns a new empty DictionaryArray.","Returns a new empty FixedSizeBinaryArray.","Returns a new empty FixedSizeListArray.","Returns a new empty ListArray.","Returns a new empty MapArray.","Returns a new empty NullArray.","Returns a new empty (zero-length) PrimitiveArray.","Creates a new empty UnionArray.","Returns a new empty Utf8Array.","Creates a new Array with a Array::len of 0.","Creates a new MutableFixedSizeListArray from a MutableArray…","Creates a new MutableListArray from a MutableArray and …","Creates a new MutableListArray from a MutableArray, Offsets…","Creates an null BinaryArray, i.e. whose …","Returns a new BooleanArray whose all slots are null / None.","Returns an DictionaryArray whose all elements are null","Returns a new null FixedSizeBinaryArray.","Returns a new null FixedSizeListArray.","Returns a new null ListArray.","Returns a new null MapArray of length.","Returns a new NullArray.","Returns a new PrimitiveArray where all slots are null / …","Creates a new null UnionArray.","Returns a new Utf8Array whose all slots are null / None.","Creates a new Array of DataType data_type and length. The …","Create a MutableUtf8Array out of low-end APIs.","Returns a MutableUtf8ValuesArray created from its internal …","Creates a new Utf8Array without checking for offsets …","Creates a new MutableListArray from a MutableArray and …","Creates a new MutableFixedSizeListArray from a MutableArray…","Creates a new MutableListArray from a MutableArray.","","","","The number of null slots on this Array.","The offsets of the array","returns its offsets.","returns its offsets.","","Returns the offsets of this BinaryArray.","The offsets","The offsets [Buffer].","returns the offsets","The optional offsets.","returns its offsets.","returns its offsets.","","Returns the offsets of this Utf8Array.","Contains functions and function factories to order values …","","","","","","","Pop the last entry from MutableBinaryValuesArray. This …","Pop the last entry from MutableBinaryArray. This function …","Pop an entry from MutableBooleanArray. Note If the values …","Pop the last entry from MutableFixedSizeBinaryArray. This …","Pop a value from the array. Note if the values is empty, …","Pop the last entry from MutableUtf8Array. This function …","Pop the last entry from MutableUtf8ValuesArray. This …","Pushes a new item to the array.","Pushes a new element to the array.","Pushes a new entry to MutableBooleanArray.","pushes a new entry to MutableFixedSizeBinaryArray.","Adds a new value to the array.","Call this once for each “row” of children you push.","Pushes a new element to the array.","Pushes a new item to the array.","Adds a new null element to the array.","","","","pushes a null value","","","","","","","","","","Push a new element that holds the invariants of the struct.","Safety","Needs to be called when a valid value was extended to this …","","","Reserves additional slots to its capacity.","","Reserves additional elements and additional_values on the …","Reserves additional elements and additional_values on the …","","","Reserves additional slots.","Reserves additional slots.","","Reserves additional slots.","","","Reserves additional slots.","","Reserves additional slots.","","","Reserves additional entries.","","Reserves additional entries.","Reserves additional elements and additional_values on the …","","Reserves additional elements and additional_values on the …","","","","","","","","","","","Sets position index to value. Note that if it is the first …","Sets position index to value. Note that if it is the first …","Sets position index to value. Note that if it is the first …","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of the keys of this DictionaryArray.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity of this array.","Sets the validity.","Sets the validity of this array.","Sets the validity.","Sets the validity of this array.","Sets the values of this BooleanArray.","Sets values.","Update the values of this PrimitiveArray.","Shrink the array to fit its length.","","Shrinks the capacity of the MutableBinaryValuesArray to …","","Shrinks the capacity of the MutableBinaryArray to fit its …","","Shrinks the capacity of the MutableBooleanArray to fit its …","Shrinks the capacity of the MutableDictionaryArray to fit …","","Shrinks the capacity of the MutableFixedSizeBinaryArray to …","","","Shrinks the capacity of the MutableFixedSizeListArray to …","Shrinks the capacity of the MutableListArray to fit its …","","","","Shrinks the capacity of the MutablePrimitiveArray to fit …","","Shrinks the capacity of the MutableStructArray to fit its …","Shrinks the capacity of the MutableUtf8Array to fit its …","","","Shrinks the capacity of the MutableUtf8ValuesArray to fit …","returns the (fixed) size of the MutableFixedSizeBinaryArray…","Returns the size","Returns the size (number of elements per slot) of this …","Returns the size (number of elements per slot) of this …","","Slices this Array.","Slices this BinaryArray.","","Slices this BooleanArray.","","","Slices this DictionaryArray.","","Slices this FixedSizeBinaryArray.","","Slices this FixedSizeListArray.","","Slices this ListArray.","","Returns a slice of this MapArray.","","Returns a slice of the NullArray.","","Slices this PrimitiveArray by an offset and length.","Returns a slice of this UnionArray.","","Slices this Utf8Array.","","","","","","","","","","","","","","","","","","","","","","","","Slices the Array.","Slices this BinaryArray.","","","Slices this BooleanArray.","","Slices this DictionaryArray.","","Slices this FixedSizeBinaryArray.","Slices this FixedSizeListArray.","","Slices this ListArray.","","","Returns a slice of this MapArray.","Returns a slice of the NullArray.","","","Slices this PrimitiveArray by an offset and length.","","Returns a slice of this UnionArray.","","Slices this Utf8Array.","Returns a slice of this Array.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns a slice of this Array.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","Returns this array sliced.","","","","Returns a new FixedSizeBinaryArray with a different …","Changes the arrays’ DataType, returning a new …","Returns a new PrimitiveArray with a different logical type.","Clone a &dyn Array to an owned Box<dyn Array>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Fallible version of Extend::extend.","","","This is infalible and is implemented for consistency with …","","","","This is infalible and is implemented for consistency with …","","","Expand this array, using elements from the underlying …","Tries to extend itself with elements from other, failing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a new MutableBinaryValuesArray from an iterator.","Creates a new MutableFixedSizeBinaryArray from an iterator …","Creates a FixedSizeBinaryArray from an fallible iterator …","Returns a new MutableUtf8ValuesArray from an iterator.","Returns a new DictionaryArray.","Creates a MutableBinaryArray from an falible iterator of …","Creates a BinaryArray from an fallible iterator of trusted …","Creates a BooleanArray from a TrustedLen.","Creates a BooleanArray from a TrustedLen.","Creates a MutablePrimitiveArray from an fallible iterator …","Creates a MutableUtf8Array from an falible iterator of …","Creates a Utf8Array from an fallible iterator of trusted …","Creates a MutableBinaryArray from an falible iterator of …","Creates a BinaryArray from an falible iterator of trusted …","Creates a BooleanArray from an falible iterator of trusted …","Creates a BooleanArray from an falible iterator of trusted …","Creates a MutablePrimitiveArray from an fallible iterator …","Creates a MutableUtf8Array from an falible iterator of …","Creates a Utf8Array from an falible iterator of trusted …","Returns a the inner Field","","","","","","","","","","","","","","","","","","","","","","","","","Returns a MutableBinaryValuesArray created from its …","Returns a MutableBinaryArray created from its internal …","Returns a BinaryArray created from its internal …","The canonical method to create a MutableBooleanArray out …","The canonical method to create a BooleanArray out of …","Returns a new DictionaryArray.","Creates a new MutableFixedSizeBinaryArray.","Creates a new FixedSizeBinaryArray.","Creates a new FixedSizeListArray.","Creates a new ListArray.","Returns a new MapArray.","Returns a new NullArray.","The canonical method to create a MutablePrimitiveArray out …","The canonical method to create a PrimitiveArray out of its …","Create a MutableStructArray out of low-end APIs.","Returns a new UnionArray.","Returns a MutableUtf8Array created from its internal …","Returns a MutableUtf8ValuesArray created from its internal …","Returns a Utf8Array created from its internal …","Returns a new DictionaryArray.","Creates a new Utf8Array without checking for offsets …","Tries to push a new element.","","","This is infalible and is implemented for consistency with …","","tries to push a new entry to MutableFixedSizeBinaryArray.","","","This is infalible and is implemented for consistency with …","","","Needs to be called when a valid value was extended to this …","Needs to be called when a valid value was extended to this …","","","","","","","","","","","","","","","","","","","","","","","","","The types.","The validity of the Array: every array has an optional …","The optional validity of the array.","","","The optional validity.","","","","Returns the optional validity.","","","The optional validity. Equivalent to self.keys().validity()…","","The optional validity.","","","The optional validity.","","","","The optional validity.","","","","","Returns the optional validity.","","","","","","","The optional validity.","Returns the value of the element at index i.","Returns the element at index i","Returns the value at index i","Returns the value of the DictionaryArray at position i.","Returns the element at index i as &[u8]","Returns value at position i.","Returns the Vec<T> at position i.","Returns the element at index i","Returns the element at index i.","Returns the value at slot i.","Return the ith child array.","Returns the slot index as a Scalar.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the element at index i","Returns the element at index i as bool","Returns the element at index i as &[u8]","Returns the element at index i as &str","Returns the Vec<T> at position i.","Returns the element at index i as &str","Returns the element at index i.","Returns the value at index i. The value on null slots is …","Returns the slot index as a Scalar.","Returns the value of the element at index i, ignoring the …","Returns the value of the element at index i.","Returns the value of the element at index i, ignoring the …","The values of the array","returns its values.","returns its values.","Returns the values of this BinaryArray.","","Returns its values.","The values Bitmap. Values on null slots are undetermined …","returns a reference to the inner values.","Returns the values of the DictionaryArray.","Returns its values.","Returns the values allocated on this FixedSizeBinaryArray.","The inner values","Returns the inner array.","The values","The values.","Returns its values.","The values Buffer. Values on null slots are undetermined …","The values","returns its values.","returns its values.","Returns the values of this Utf8Array.","","Returns an iterator over the values of this array","Returns an iterator of &[u8] over every element of this …","Returns an iterator over the values of this …","Returns an iterator over the values of this BooleanArray.","Returns an iterator of Box<dyn Scalar>","Returns iterator over the values of FixedSizeBinaryArray","Returns an iterator of Box<dyn Array>","Returns an iterator of Box<dyn Array>","Returns an iterator of Box<dyn Array>","Returns an iterator of T","Returns an iterator of the values, &T, ignoring the arrays…","Returns an iterator of &str","Returns an iterator of &str","Returns an iterator over the the values [V::IterValue].","Returns a mutable slice of values.","Returns a mutable slice of values.","","","","","","","","","","","","","","","","","","","","","","","","","Initializes a new MutableBinaryValuesArray with a …","Initializes a new MutableBinaryArray with a pre-allocated …","Initializes a new MutableUtf8Array with a pre-allocated …","Initializes a new MutableUtf8ValuesArray with a …","Initializes a new MutableBinaryValuesArray with a …","Initializes a new MutableBinaryArray with a pre-allocated …","Creates an new MutableBooleanArray with a capacity of …","Creates a new MutableFixedSizeBinaryArray with capacity …","Creates a new MutableListArray with a capacity.","Creates a new MutablePrimitiveArray with a capacity.","Initializes a new MutableUtf8Array with a pre-allocated …","Initializes a new MutableUtf8ValuesArray with a …","Creates a new MutablePrimitiveArray from a capacity and …","Clones this Array with a new new assigned bitmap.","Returns this array with a new validity.","","Returns this array with a new validity.","Returns this array with a new validity.","","","Returns this DictionaryArray with a new validity.","","Returns this array with a new validity.","","Returns this array with a new validity.","","Returns this array with a new validity.","Returns this array with a new validity.","","","Returns this array with a new validity.","","","","Returns this array with a new validity.","Returns a clone of this BooleanArray with new values.","Returns this PrimitiveArray with new values.","","","","Describes a struct that can be extended from slices of …","Concrete Growable for the BinaryArray.","Concrete Growable for the BooleanArray.","Concrete Growable for the DictionaryArray.","Concrete Growable for the FixedSizeBinaryArray.","Concrete Growable for the FixedSizeListArray.","Concrete Growable for the ListArray.","Concrete Growable for the MapArray.","Concrete Growable for the NullArray.","Concrete Growable for the PrimitiveArray.","Concrete Growable for the StructArray.","Concrete Growable for the UnionArray.","Concrete Growable for the Utf8Array.","","","","","","","","","","","","","Converts this Growable to an Arc<dyn Array>, thereby …","Converts this Growable to an Box<dyn Array>, thereby …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extends this Growable with elements from the bounded Array …","","","","","","","","","","","","","Extends this Growable with null elements, disregarding the …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The current length of the Growable.","","","","","","","","","","","","","Creates a new Growable from an arbitrary number of Arrays.","Creates a new GrowableBinary bound to arrays with a …","Creates a new GrowableUnion bound to arrays with a …","Creates a new GrowableBoolean bound to arrays with a …","Creates a new GrowableFixedSizeBinary bound to arrays with …","Creates a new GrowableNull.","Creates a new GrowablePrimitive bound to arrays with a …","Creates a new GrowableList bound to arrays with a …","Creates a new GrowableMap bound to arrays with a …","Creates a new GrowableStruct bound to arrays with a …","Creates a new GrowableFixedSizeList bound to arrays with a …","Creates a new GrowableUtf8 bound to arrays with a …","Creates a new GrowableDictionary bound to arrays with a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compare the values at two arbitrary indices in two arrays.","returns a comparison function that compares values at two …","Total order of all native types whose Rust implementation …","implements comparison using IEEE 754 total ordering for f32","implements comparison using IEEE 754 total ordering for f64","An immutable container semantically equivalent to …","This crates’ equivalent of std::vec::IntoIter for Bitmap.","A container of booleans. MutableBitmap is semantically …","","","","Compute bitwise AND operation","Returns the byte slice of this Bitmap.","Returns the slice of bytes of this MutableBitmap. Note …","","Apply a bitwise operation op to two inputs and return the …","Apply a bitwise binary operation to a MutableBitmap.","","","","","","","","","","","","","","","","Returns the capacity of MutableBitmap in number of bits.","Creates a Vec<u8> from a TrustedLen of BitChunk.","Returns an iterator over bits in bit chunks BitChunk.","Empties the MutableBitmap.","","","","","","","","","","","","","","","","","","","","Extends MutableBitmap by additional values of constant …","Extends the MutableBitmap from a Bitmap.","Extends the MutableBitmap from a slice of bytes with …","Extends the MutableBitmap from a slice of bytes with …","Extends self from a TrustedLen iterator.","Extends self from an iterator of trusted len.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Creates a Vec from an Iterator of BitChunk.","Creates a [Bitmap] from its internal representation. This …","Creates a [Bitmap] from its internal representation. This …","","","Initializes a MutableBitmap with all values set to valid/ …","Initializes a zeroed MutableBitmap.","Creates a new Bitmap from an iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from an iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from a slice and length.","Alias for Bitmap::try_new().unwrap() This function is O(1)","Initializes a MutableBitmap from a Vec<u8> and a length. …","Returns whether the bit at position i is set.","Returns whether the position index is set.","Returns whether the bit at position i is set.","Unsafely returns whether the bit at position i is set.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns its internal representation","","","","","Converts this Bitmap to MutableBitmap, returning itself if …","Returns whether Bitmap is empty","Returns whether MutableBitmap is empty.","Returns a new iterator of bool over this bitmap","constructs a new iterator over the bits of MutableBitmap.","Returns the length of the Bitmap.","Returns the length of the MutableBitmap.","Converts this Bitmap into a MutableBitmap, cloning its …","Initializes an empty Bitmap.","Creates a new IntoIter from a Bitmap","Initializes an empty MutableBitmap.","Initializes an new Bitmap filled with unset values.","","","","","","Returns the number of unset bits on this Bitmap.","Returns the number of unset bits on this MutableBitmap.","Counts the nulls (unset bits) starting from offset bits …","Compute bitwise OR operation","","Pop the last bit from the MutableBitmap. Note if the …","Pushes a new bit to the MutableBitmap, re-sizing it if …","Pushes a new bit to the MutableBitmap","Apply a bitwise operation op to four inputs and return the …","Reserves additional bits in the MutableBitmap, potentially …","Sets the position index to value","","Sets the position index to value","Shrinks the capacity of the MutableBitmap to fit its …","","Slices self, offsetting by offset and truncating up to …","Slices self, offseting by offset and truncating up to …","Slices self, offsetting by offset and truncating up to …","Slices self, offseting by offset and truncating up to …","Apply a bitwise operation op to three inputs and return …","","","","","","","Creates a new Bitmap from a fallible iterator of booleans.","Creates a new MutableBitmap from an iterator of booleans.","Creates a new Bitmap from a fallible iterator of booleans.","Creates a new MutableBitmap from an falible iterator of …","","","","Initializes a new Bitmap from vector of bytes and a length.","Initializes a new MutableBitmap from a Vec<u8> and a …","","","","Apply a bitwise operation op to one input and return the …","Applies a function to every bit of this MutableBitmap in …","Returns the number of unset bits on this Bitmap.","Returns the number of unset bits on this MutableBitmap.","General utilities for bitmaps representing items where LSB …","","","","Initializes a pre-allocated MutableBitmap with capacity …","Compute bitwise XOR operation","A chunk of bits. This is used to create masks of a given …","Trait representing an exact iterator over bytes in BitChunk…","This struct is used to efficiently iterate over bit masks …","An iterator over a slice of bytes in BitChunks.","An iterator over mutable slices of bytes of exact size.","An iterator over bits according to the LSB, i.e. the bytes …","There are null values","There are no null values","Iterator over a bitmap that returns slices of set regions …","An Iterator over Option<T> This enum can be used in two …","An Iterator over validity and values.","","","","","","","","","","","","","","","","","","","","","Returns the number of bytes required to hold bits bits.","","","","","","","","","","","Returns the number of zero bits in the slice offsetted by …","","","","","","","","","","","","","","","","","","","","","","Formats bytes taking into account an offset and length of …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","convert itself from bytes.","Returns whether bit at position i in data is set","Returns whether bit at position i in data is set or not.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","Returns whether there are still elements in this iterator","Returns whether bit at position i in byte is set or not","Returns the number of chunks of this iterator","","Creates a new BitChunksExact.","Creates a BitChunks.","Returns a new BitChunksExactMut","Creates a new BitmapIter.","Creates a new SlicesIterator","Creates a new ZipValidityIter.","Returns a new ZipValidity","Returns a new ZipValidity and drops the validity if all …","","","","","","","","","","","","","","The remainder of the iterator.","Returns the remaining BitChunk. It is zero iff len / 8 == 0…","","Returns the remainder BitChunk.","","The remainder slice","An iterator over individual items of the remainder","The number of items in the remainder","","","Returns the remainder bits in BitChunks::remainder.","The length of the remainder slice in bits.","Sets bit at position i in byte","Sets bit at position i in data","Sets bit at position i in data without doing bound checks","","","","","","","Returns the total number of slots. It corresponds to the …","convert itself into bytes.","","","","","","","","","","","","","","","","","","","","","","","","","","Unwrap into an iterator that has null values.","Unwrap into an iterator that has no null values.","","","","","","","","Buffer is a contiguous memory region that can be shared …","Bytes representation.","","Returns the byte slice stored in this buffer","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Creates a [Bitmap] from its internal representation. This …","","Returns a mutable reference to its underlying Vec, if …","Returns a mutable reference to its slice, if possible.","","","Calls U::from(self).","Calls U::from(self).","Returns its internal representation","","Returns a mutable reference to its underlying Vec, if …","","","Returns whether the buffer is empty.","Returns whether underlying data is sliced. If sliced the …","Returns the number of bytes in the buffer","Creates an empty Buffer.","Returns the offset of this buffer.","Safety","Get the strong count of underlying Arc data buffer.","Get the weak count of underlying Arc data buffer.","Slices this buffer starting at offset.","Slices this buffer starting at offset.","Returns a new Buffer that is a slice of this buffer …","Returns a new Buffer that is a slice of this buffer …","","","","","","","","","","A vector of trait objects of Array where every item has …","","returns the Arrays in Chunk","","","","","returns the Arrays in Chunk","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","Consumes Chunk into its underlying arrays. The arrays are …","returns whether the columns have any rows","returns the number of rows of every array","Creates a new Chunk.","","","","Creates a new Chunk.","","","Contains different aggregation functions","Defines basic arithmetic kernels for PrimitiveArrays.","Defines kernels suitable to perform operations to …","Defines generics suitable to perform operations to …","null-preserving operators such as and, or and not.","Boolean operators of Kleene logic.","Defines different casting operators such as cast or …","Contains comparison operators","Contains the concatenate kernel","Contains operators to filter arrays such as filter.","Contains the operator if_then_else.","Contains “like” operators such as like_utf8 and …","Defines kernel to extract a substring of a [Large…","Defines take kernel for Array","Defines temporal kernels for time and date related …","The maximum value","The minimum value","Trait describing a type describing multiple lanes with an …","Object that can reduce itself to a number. This is used in …","Whether max supports data_type","Whether min supports data_type","Whether sum supports data_type","Returns the total (heap) allocated size of the array in …","Returns the maximum of Array. The scalar is null when all …","Returns the maximum value in the binary array, according …","Returns the maximum value in the boolean array","reduce itself to the minimum","lane-wise maximum between two instances","Returns the maximum value in the array, according to the …","Returns the maximum value in the string array, according …","Returns the minimum of Array. The scalar is null when all …","Returns the minimum value in the binary array, according …","Returns the minimum value in the boolean array.","reduce itself to the maximum","lane-wise minimum between two instances","Returns the minimum value in the array, according to the …","Returns the minimum value in the string array, according …","returns a new instance with all lanes equal to MAX","returns a new instance with all lanes equal to MIN","Reduces this element to a single value.","Returns the sum of all elements in array as a Scalar of …","Returns the sum of values in the array.","Compute the sum of a slice","Defines basic addition operation for primitive arrays","Defines checked addition operation for primitive arrays","Defines checked division operation for primitive arrays","Defines checked multiplication operation for primitive …","Defines checked reminder operation for primitive arrays","Defines checked subtraction operation for primitive arrays","Defines basic division operation for primitive arrays","Defines basic multiplication operation for primitive arrays","Defines Overflowing addition operation for primitive arrays","Defines Overflowing multiplication operation for primitive …","Defines Overflowing subtraction operation for primitive …","Defines basic reminder operation for primitive arrays","Defines saturating addition operation for primitive arrays","Defines saturating multiplication operation for primitive …","Defines saturating subtraction operation for primitive …","Defines basic subtraction operation for primitive arrays","Defines wrapping addition operation for primitive arrays","Defines wrapping multiplication operation for primitive …","Defines wrapping subtraction operation for primitive arrays","Adds two Arrays.","Adds itself to rhs","Adds an Array and a Scalar.","Contains arithemtic functions for PrimitiveArrays.","Returns whether two DataTypes can be added by add.","Returns whether two DataTypes can be divided by div.","Returns whether two DataTypes can be multiplied by mul.","Whether neg is supported for a given DataType","Returns whether two DataTypes “can be remainder” by rem…","Returns whether two DataTypes can be subtracted by sub.","Checked add","checked division","checked multiplication","checked remainder","checked subtraction","Defines the arithmetic kernels for Decimal PrimitiveArrays…","Divide of two Arrays.","division","Divide an Array with a Scalar.","Multiply two Arrays.","multiplication","Multiply an Array with a Scalar.","Negates an Array.","Overflowing add","overflowing multiplication","overflowing subtraction","Remainder of two Arrays.","remainder","Saturating add","saturating multiplication","saturarting subtraction","Subtracts two Arrays.","subtraction","Adds an Array and a Scalar.","Defines the arithmetic kernels for adding a Duration to a …","Adds itself to rhs using wrapping addition","wrapping multiplication","wrapping subtraction","Trait describing a NativeType whose semantics of …","Adds two primitive arrays with the same type. Panics if …","Adds a scalar T to a primitive array of type T. Panics if …","Checked addition of two primitive arrays. If the result …","Checked addition of a scalar T to a primitive array of …","Checked division of two primitive arrays. If the result …","Checked division of a primitive array of type T by a …","Checked multiplication of two primitive arrays. If the …","Checked multiplication of a scalar T to a primitive array …","Checked negates values from array.","Checked operation of raising an array of primitives to the …","Checked remainder of two primitive arrays. If the result …","Checked remainder of a primitive array of type T by a …","Checked subtraction of two primitive arrays. If the result …","Checked subtraction of a scalar T to a primitive array of …","Divides two primitive arrays with the same type. Panics if …","Divide a primitive array of type T by a scalar T. Panics …","Multiplies two primitive arrays with the same type. Panics …","Multiply a scalar T to a primitive array of type T. Panics …","Negates values from array.","Overflowing addition of two primitive arrays. If the …","Overflowing addition of a scalar T to a primitive array of …","Overflowing multiplication of two primitive arrays. If the …","Overflowing multiplication of a scalar T to a primitive …","Overflowing subtraction of two primitive arrays. If the …","Overflowing subtraction of a scalar T to a primitive array …","Raises an array of primitives to the power of exponent. …","Remainder of two primitive arrays with the same type. …","Remainder a primitive array of type T by a scalar T. …","Saturating addition of two primitive arrays. If the result …","Saturated addition of a scalar T to a primitive array of …","Saturating multiplication of two primitive arrays. If the …","Saturated multiplication of a scalar T to a primitive …","Saturating subtraction of two primitive arrays. If the …","Saturated subtraction of a scalar T to a primitive array …","Subtracts two primitive arrays with the same type. Panics …","Subtract a scalar T to a primitive array of type T. Panics …","Wrapping addition of two PrimitiveArrays. It wraps around …","Wrapping addition of a scalar T to a PrimitiveArray of …","Wrapping multiplication of two PrimitiveArrays. It wraps …","Wrapping multiplication of a scalar T to a PrimitiveArray …","Wrapping negates values from array.","Wrapping subtraction of two PrimitiveArrays. It wraps …","Wrapping subtraction of a scalar T to a PrimitiveArray of …","Adaptive addition of two decimal primitive arrays with …","Adaptive division of two decimal primitive arrays with …","Adaptive multiplication of two decimal primitive arrays …","Adaptive subtract of two decimal primitive arrays with …","Adds two decimal PrimitiveArray with the same precision …","Checked addition of two decimal primitive arrays with the …","Checked division of two decimal primitive arrays with the …","Checked multiplication of two decimal primitive arrays …","Checked subtract of two decimal primitive arrays with the …","Divide two decimal primitive arrays with the same …","Multiply a decimal PrimitiveArray with a PrimitiveScalar …","Multiply two decimal primitive arrays with the same …","Multiply a decimal PrimitiveArray with a PrimitiveScalar …","Saturated addition of two decimal primitive arrays with …","Saturated division of two decimal primitive arrays with …","Saturated multiplication of two decimal primitive arrays …","Saturated subtraction of two decimal primitive arrays with …","Subtract two decimal primitive arrays with the same …","Adds a duration to a time array (Timestamp, Time and …","Adds a duration to a time array (Timestamp, Time and …","Adds an interval to a DataType::Timestamp.","Adds an interval to a DataType::Timestamp.","Subtract a duration to a time array (Timestamp, Time and …","Calculates the difference between two timestamps as …","Subtract a duration to a time array (Timestamp, Time and …","Calculates the difference between two timestamps returning …","Applies a binary operations to two primitive arrays. This …","Version of binary that creates a mutable bitmap that is …","Version of binary that returns an array and bitmap. Used …","Version of binary that checks for errors in the closure …","Version of unary that checks for errors in the closure …","Applies an unary and infallible function to a …","Version of unary that creates a mutable bitmap that is …","Version of unary that returns an array and bitmap. Used …","Applies a binary function to two PrimitiveArrays, …","Applies an unary function to a PrimitiveArray, optionally …","Check if all of the values in the array are true","Performs && operation on two BooleanArray, combining the …","Performs AND operation on an array and a scalar value. If …","Returns whether any of the values in the array is true","Returns a non-null BooleanArray with whether each value of …","Returns a non-null BooleanArray with whether each value of …","Performs unary NOT operation on an arrays. If value is …","Performs || operation on two BooleanArray, combining the …","Performs OR operation on an array and a scalar value. If …","Returns whether all values in the array are true","Logical ‘and’ operation on two arrays with Kleene logic","Logical ‘and’ operation on an array and a scalar value …","Returns whether any of the values in the array is true","Logical ‘or’ operation on two arrays with Kleene logic","Logical ‘or’ operation on an array and a scalar value …","options defining how Cast kernels behave","","Conversion of binary","Cast BinaryArray to DictionaryArray, also known as packing.","Conversion of binary","Conversion to utf8","Conversion of binary","Casts a BinaryArray to a PrimitiveArray, making any …","Conversion to utf8","Casts the BooleanArray to a BinaryArray, casting trues to …","Casts the BooleanArray to a PrimitiveArray.","Casts the BooleanArray to a Utf8Array, casting trues to "1"…","","","Return true if a value of type from_type can be cast into a","Cast array to the provided data type and return a new Array…","","","Conversion of dates","Conversion of dates","Casts days_mss to months_days_ns. This operation is …","Returns a PrimitiveArray<i128> with the casted values. …","Returns a PrimitiveArray<i128> with the casted values. …","Returns a PrimitiveArray<i128> with the casted values. …","","","","Casts a DictionaryArray to a new DictionaryArray backed by …","Casts a DictionaryArray to a new DictionaryArray by …","Casts a DictionaryArray to its values’ DataType, also …","","Casts f16 into f32","Conversion of FixedSizeBinary to Binary.","Returns a PrimitiveArray<i128> with the casted values. …","","Returns the argument unchanged.","","Returns a PrimitiveArray<i128> with the casted values. …","Calls U::from(self).","Casts months represented as i32s to months_days_ns. This …","Returns a Utf8Array where every element is the utf8 …","default to false whether to cast to an integer at the …","Casts a BinaryArray to a PrimitiveArray at best-effort …","Casts a Utf8Array to a PrimitiveArray at best-effort using …","Cast PrimitiveArray as a PrimitiveArray Same as …","Returns a BinaryArray where every element is the binary …","Returns a BooleanArray where every element is different …","Cast PrimitiveArray to DictionaryArray. Also known as …","Cast PrimitiveArray to a PrimitiveArray of another …","Cast PrimitiveArray to a PrimitiveArray of the same …","Returns a Utf8Array where every element is the utf8 …","Conversion of time","Conversion of times","Conversion of times","Conversion of time","Conversion of times","Conversion of times","Conversion of timestamp","Conversion of timestamp","Conversion of timestamp","Returns a Utf8Array where every element is the utf8 …","","","","","Conversion of utf8","Conversion to binary","Casts a Utf8Array to a Date32 primitive, making any …","Casts a Utf8Array to a Date64 primitive, making any …","Cast Utf8Array to DictionaryArray, also known as packing.","Conversion of utf8","crate::temporal_conversions::utf8_to_timestamp_ns applied …","Casts a Utf8Array to a PrimitiveArray, making any …","crate::temporal_conversions::utf8_to_timestamp_ns applied …","","default to false whether an overflowing cast should be …","Similar to dictionary_to_dictionary_keys, but overflowing …","Similar to dictionary_to_dictionary_values, but …","The 8 lane representation of Self","NativeType that supports a representation of 8 lanes","Trait declaring an 8-lane multi-data.","Trait implemented by implementors of Simd8Lanes whose Simd8…","Trait implemented by implementors of Simd8Lanes whose Simd8…","Comparison functions for BinaryArray","Comparison functions for BooleanArray","Returns whether a DataType is comparable is supported by eq…","Returns whether a DataType is supported by eq_scalar.","Returns whether a DataType is comparable is supported by gt…","Returns whether a DataType is comparable is supported by …","Returns whether a DataType is supported by gt_eq_scalar.","Returns whether a DataType is supported by gt_scalar.","Returns whether a DataType is comparable is supported by lt…","Returns whether a DataType is comparable is supported by lt…","Returns whether a DataType is supported by lt_eq_scalar.","Returns whether a DataType is supported by lt_scalar.","Returns whether a DataType is comparable is supported by …","Returns whether a DataType is supported by neq_scalar.","== between two Arrays. Use can_eq to check whether the …","Equal","== between two Arrays and includes validities in …","== between an Array and a Scalar. Use can_eq_scalar to …","== between an Array and a Scalar and includes validities …","Utility for low level end users that implement their own …","Utility for low level end users that implement their own …","loads a complete chunk","loads an incomplete chunk, filling the remaining items …","> between two Arrays. Use can_gt to check whether the …","Greater than",">= between two Arrays. Use can_gt_eq to check whether the …","Greater than or equal to",">= between an Array and a Scalar. Use can_gt_eq_scalar to …","> between an Array and a Scalar. Use can_gt_scalar to …","< between two Arrays. Use can_lt to check whether the …","Less than","<= between two Arrays. Use can_lt_eq to check whether the …","Less than or equal to","<= between an Array and a Scalar. Use can_lt_eq_scalar to …","< between an Array and a Scalar. Use can_lt_scalar to …","!= between two Arrays. Use can_neq to check whether the …","Not equal","!= between two Arrays and includes validities in …","!= between an Array and a Scalar. Use can_neq_scalar to …","!= between an Array and a Scalar and includes validities …","Comparison functions for PrimitiveArray","Comparison functions for Utf8Array","Perform lhs == rhs operation on BinaryArray.","Perform lhs == rhs operation on BinaryArray and include …","Perform lhs == rhs operation on BinaryArray and a scalar.","Perform lhs == rhs operation on BinaryArray and a scalar …","Perform lhs > rhs operation on BinaryArray.","Perform lhs >= rhs operation on BinaryArray.","Perform lhs >= rhs operation on BinaryArray and a scalar.","Perform lhs > rhs operation on BinaryArray and a scalar.","Perform lhs < rhs operation on BinaryArray.","Perform lhs <= rhs operation on BinaryArray.","Perform lhs <= rhs operation on BinaryArray and a scalar.","Perform lhs < rhs operation on BinaryArray and a scalar.","Perform lhs != rhs operation on BinaryArray.","Perform lhs != rhs operation on BinaryArray.","Perform lhs != rhs operation on BinaryArray and a scalar.","Perform lhs != rhs operation on BinaryArray and a scalar …","Evaluate op(left, right) for BooleanArray and scalar using …","Perform lhs == rhs operation on two BooleanArrays.","Perform lhs == rhs operation on two BooleanArrays and …","Perform lhs == rhs operation on a BooleanArray and a …","Perform lhs == rhs operation on a BooleanArray and a …","Perform left > right operation on two arrays. Non-null …","Perform left >= right operation on two arrays. Non-null …","Perform left >= right operation on an array and a scalar …","Perform left > right operation on an array and a scalar …","Perform left < right operation on two arrays.","Perform left <= right operation on two arrays.","Perform left <= right operation on an array and a scalar …","Perform left < right operation on an array and a scalar …","lhs != rhs for BooleanArray","lhs != rhs for BooleanArray and include validities in …","Perform left != right operation on an array and a scalar …","Perform left != right operation on an array and a scalar …","Evaluate op(left, right) for PrimitiveArray and scalar …","Perform lhs == rhs operation on two arrays.","Perform lhs == rhs operation on two arrays and include …","Perform left == right operation on an array and a scalar …","Perform left == right operation on an array and a scalar …","Perform left > right operation on two arrays. Non-null …","Perform left >= right operation on two arrays. Non-null …","Perform left >= right operation on an array and a scalar …","Perform left > right operation on an array and a scalar …","Perform left < right operation on two arrays.","Perform left <= right operation on two arrays.","Perform left <= right operation on an array and a scalar …","Perform left < right operation on an array and a scalar …","Perform left != right operation on two arrays.","Perform left != right operation on two arrays and include …","Perform left != right operation on an array and a scalar …","Perform left != right operation on an array and a scalar …","Perform lhs == rhs operation on Utf8Array.","Perform lhs == rhs operation on Utf8Array and include …","Perform lhs == rhs operation on Utf8Array and a scalar.","Perform lhs == rhs operation on Utf8Array and a scalar. …","Perform lhs > rhs operation on Utf8Array.","Perform lhs >= rhs operation on Utf8Array.","Perform lhs >= rhs operation on Utf8Array and a scalar.","Perform lhs > rhs operation on Utf8Array and a scalar.","Perform lhs < rhs operation on Utf8Array.","Perform lhs <= rhs operation on Utf8Array.","Perform lhs <= rhs operation on Utf8Array and a scalar.","Perform lhs < rhs operation on Utf8Array and a scalar.","Perform lhs != rhs operation on Utf8Array.","Perform lhs != rhs operation on Utf8Array and include …","Perform lhs != rhs operation on Utf8Array and a scalar.","Perform lhs != rhs operation on Utf8Array and a scalar. …","Concatenate multiple Array of the same type into a single …","Function that can filter arbitrary arrays","Returns a prepared function optimized to filter multiple …","Filters an Array, returning elements matching the filter …","Returns a new Chunk with arrays containing only values …","Returns the values from lhs if the predicate is true or …","Returns lhs LIKE rhs operation on two BinaryArray.","Returns lhs LIKE rhs operation.","Returns lhs LIKE rhs operation on two Utf8Array.","Returns lhs LIKE rhs operation.","Returns lhs NOT LIKE rhs operation on two BinaryArrays.","Returns lhs NOT LIKE rhs operation on two BinaryArrays.","Returns lhs NOT LIKE rhs operation on two Utf8Array.","Returns lhs NOT LIKE rhs operation.","Checks if an array of type datatype can perform substring …","Returns an ArrayRef with a substring starting from start …","Checks if an array of type datatype can perform take …","Returns a new Array with only indices at indices. Null …","Checks if an array of type datatype can perform day …","Checks if an array of type datatype can perform hour …","Checks if an array of type data_type can perform ISO week …","Checks if an array of type datatype can perform minute …","Checks if an array of type datatype can perform month …","Checks if an array of type datatype can perform nanosecond …","Checks if an array of type datatype can perform second …","Checks if an array of type data_type can perform weekday …","Checks if an array of type datatype can perform year …","Extracts the days of a temporal array as …","Extracts the hours of a temporal array as …","Extracts ISO week of a temporal array as …","Extracts the minutes of a temporal array as …","Extracts the months of a temporal array as …","Extracts the nanoseconds of a temporal array as …","Extracts the seconds of a temporal array as …","Extracts weekday of a temporal array as PrimitiveArray<u32>…","Extracts the years of a temporal array as …","Opaque binary data of variable length.","Opaque binary data of variable length whose offsets are …","A boolean represented as a single bit.","true and false.","The set of supported logical types in this crate.","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","The number of elapsed days and milliseconds, stored as 2 …","Two i32 representing days and ms","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","Dense union","A dictionary encoded array by IntegerType.","A dictionary encoded array (key_type, value_type), where …","Measure of elapsed time. This elapsed time is a physical …","Extension type.","Represents Arrow’s metadata of a “column”.","Opaque binary data of fixed size.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some data type with fixed length.","A list of some logical data type with a fixed number of …","A 16-bit floating point number.","An 16-bit float","A 32-bit floating point number.","A f32","A 64-bit floating point number.","A f64","A signed 128-bit integer.","A signed 16-bit integer.","A signed 16-bit integer.","An i16","A signed 256-bit integer.","A signed 32-bit integer.","A signed 32-bit integer.","An i32","A signed 64-bit integer.","A signed 64-bit integer.","An i64","A signed 8-bit integer.","A signed 8-bit integer.","An i8","the set of valid indices types of a dictionary-encoded …","A “calendar” interval modeling elapsed time that takes …","Interval units defined in Arrow","Opaque binary data of variable length and 64-bit offsets.","Opaque binary data of variable length whose offsets are …","A list of some data type with variable length and 64-bit …","A list of some logical data type whose offsets are …","A variable-length string in Unicode with UFT-8 encoding …","A variable-length UTF-8 encoded string whose offsets are …","A list of some data type with variable length.","A list of some logical data type whose offsets are …","A nested type.","A nested type that is represented as","typedef for BTreeMap<String, String> denoting Field’s …","Time in microseconds.","Time in milliseconds.","months_days_ns(i32, i32, i64)","The number of elapsed months (i32), days (i32) and …","Time in nanoseconds.","A Null with no allocation.","Null type","The set of physical types: unique in-memory …","An array where each slot has a known compile-time size.","The set of all implementations of the sealed trait …","An ordered sequence of Fields with associated Metadata.","typedef for Arc<Schema>.","Time in seconds.","Sparse union","A nested type that contains an arbitrary number of fields.","A nested DataType with a given number of Fields.","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","The time units defined in Arrow.","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer.","An unsigned 16-bit integer.","An u16","An unsigned 32-bit integer.","An unsigned 32-bit integer.","An u32","An unsigned 64-bit integer.","An unsigned 64-bit integer.","An u64","An unsigned 8-bit integer.","An unsigned 8-bit integer.","An u8","A nested type that represents slots of differing types.","A nested datatype that can represent slots of differing …","Mode of DataType::Union","A variable-length string in Unicode with UTF-8 encoding.","A variable-length UTF-8 encoded string whose offsets are …","The number of elapsed whole months.","","","","","","","","","","","","","","","","","","","","","","","","","","Its logical DataType","","","","","","","","","","","","","","","","","","","","","Whether this physical type equals PhysicalType::Primitive …","","","","","","","","","","","","","","","","","","","","","The fields composing this schema.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","support get extension for metadata","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns whether the mode is dense","Its nullability","Returns whether the mode is sparse","Additional custom (opaque) metadata.","Optional metadata.","Its name","Constructs a UnionMode::Sparse if the input bool is true, …","","","","","","","","","","","","","","","","","","","","","","","","","","Enum with all errors in this crate.","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","Wrapper for IO errors","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","Typedef for a std::result::Result of an Error.","ABI-compatible struct for ArrowArray","ABI-compatible struct for ArrowArrayStream.","Implements an iterator of Array consumed from the C stream …","ABI-compatible struct for ArrowSchema","","","","","","","","","","","","","","","","","","","","","","","","create an empty ArrowSchema","creates an empty ArrowArray, which can be used to import …","Creates an empty ArrowArrayStream used to import from a …","Exports an Box<dyn Array> to the C data interface.","Exports a Field to the C data interface.","Exports an iterator to the C stream interface","Returns the field provided by the stream","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Imports an Array from the C data interface.","Imports a Field from the C data interface.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Functionality to mmap in-memory data regions.","Advances this iterator by one array","","","","","","","","","Returns a new ArrowArrayStreamReader","","","","","","","","","Creates a (non-null) BooleanArray from a slice of bits. …","Creates a (non-null) PrimitiveArray from a slice of values.","APIs to read from and write to Arrow’s IPC format.","Convert data between the Arrow memory format and JSON …","APIs to read from and write to NDJSON","APIs to read from and write to Parquet format.","Struct containing dictionary_id and nested IpcField, …","Struct containing fields and whether the file is written …","","","A struct adapter of Read+Seek+Write to append to IPC files","","","","","","","","","","","","","","dictionary id","","","","","optional children","The fields in the schema","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Endianness of the file","APIs to read Arrow’s IPC format.","","","","","","","","","","","APIs to write to Arrow’s IPC format.","how dictionaries are tracked in this crate","The record contains a number of buffers that does not …","Metadata of an Arrow IPC file, written in the footer of …","An iterator of Chunks from an Arrow IPC file.","A bitmap’s size is smaller than the required for the …","A buffer’s size is smaller than the required for the …","A buffer’s size is larger than the file size","FixedSizeBinaryArray has invalid datatype.","The block is an invalid flatbuffer","The message’s body length is an invalid flatbuffer","The message’s buffers is an invalid flatbuffer","The compression is an invalid flatbuffer","The message’s data is an invalid flatbuffer","The footer’s dictionaries is an invalid flatbuffer","The footer is an invalid flatbuffer","The message’s header is an invalid flatbuffer","The dictionary id is an invalid flatbuffer","The dictionary is_delta is an invalid flatbuffer","The dictionary message is an invalid flatbuffer","The message’s nodes is an invalid flatbuffer","The footer’s record batches is an invalid flatbuffer","The footer’s schema is an invalid flatbuffer","The version is an invalid flatbuffer","The IPC file does not end with [b’A’, b’R’, b’R…","The IPC file does not start with [b’A’, b’R’, b’R…","Invalid dictionary id","Field id is not a dictionary","The message does not contain data","The file’s schema does not contain fields","RecordBatch messages do not contain buffers","The message does not contain a header","RecordBatch messages does not contain nodes","The file’s footer does not contain record batches","The file’s footer does not contain a schema","The first 4 bytes of the last 10 bytes is < 0","The different types of errors that reading from IPC can …","Next item in the stream","Metadata of an Arrow IPC stream, written at the start of …","Arrow Stream reader.","Encodes the stream’s status after each read.","dictionaries can only contain dictionary messages; record …","Relative positions in the file is < 0","A live stream without data","","","The blocks in the file","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Deserialize an flatbuffers-encoded Schema message into …","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Get the inner memory scratches so they can be reused in a …","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Consumes this FileReader, returning the underlying reader","","","The files’ IpcSchema","The IPC fields tracking dictionaries","Check if the stream is finished","Returns the FileMetadata","Return the schema of the stream","Creates a new FileReader. Use projection to only take …","Try to create a new stream reader","","","","","Reads the record batch at position index from the reader.","Reads all file’s dictionaries, if any This function is …","Read the Arrow IPC file’s metadata","Reads the metadata of the stream","Return the schema of the file","Return the schema of the file","The schema that is read from the file footer","The schema that is read from the stream’s first message","Set the inner memory scratches so they can be reused in a …","The total size of the file in bytes","","","","","","","","","","","","","","","","","","","","","Return the data inside this wrapper.","The IPC version of the stream","","","","","","","The size of the IPC buffer","number of bytes of all buffers in the record","the size of the file","Declared number of elements in the buffer","Declared length of the bitmap","Number of bits on the IPC buffer","The requested dictionary id","The requested dictionary id","Bytes required for the length and type","The name of the NativeType","Compression codec","Arrow file writer","LZ4 (framed)","An array Chunk with optional accompanying IPC fields.","Arrow stream writer","Options declaring the behaviour of writing to IPC","ZSTD","","","","","","","","","","","","","","","","","","","","Get the Arrow columns in this record.","Whether the buffers should be compressed and which codec …","","Assigns every dictionary field a unique ID","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the IPC fields for this record.","Async writer for IPC files.","Write continuation bytes, and mark the stream as done","Write footer and closing tag, then mark the writer as done","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Get the inner memory scratches so they can be reused in a …","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Consumes itself, returning the inner writer.","Consumes itself into the inner writer","Creates a new StreamWriter","Creates a new FileWriter.","Converts a Schema and IpcFields to a flatbuffers-encoded …","Set the inner memory scratches so they can be reused in a …","Starts the stream by writing a Schema message to it. Use …","Writes the header and first (schema) message to the file.","async writing of arrow streams","","","","","","","","","Creates a new FileWriter from an existing file, seeking to …","","","","","","Creates a new FileWriter and writes the header to writer","","","","","","","","","","","Writes an Array to arrow_data","Writes Chunk to the stream","Writes Chunk to the file","Sink that writes array chunks as an IPC file.","","","","","","Returns the argument unchanged.","","Calls U::from(self).","Create a new file writer.","","","","","","","","","A sink that writes array chunks as an IPC stream.","Options declaring the behaviour of writing to IPC","","","Whether the buffers should be compressed and which codec …","","","","Returns the argument unchanged.","","Calls U::from(self).","Create a new StreamSink.","","","","","","","","","APIs to write to JSON","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","FallibleStreamingIterator that serializes a Chunk into …","FallibleStreamingIterator that serializes an Array to …","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","Advances the iterator to the next position.","Advances the state of the iterator to the next item from …","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Borrows an iterator, rather than consuming it.","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","Calls a closure on each element of an iterator.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Advances the iterator, returning the next element.","Advances the back of the iterator, returning the last …","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Writes valid JSON from an iterator of (assumed …","APIs to serialize and write to NDJSON.","The error type of iteration.","A fallible, streaming iterator.","An iterator adapter that receives an implementer of Write …","The type being iterated over.","FallibleStreamingIterator that serializes an Array to …","Advances the iterator to the next position.","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Borrows an iterator, rather than consuming it.","Returns the number of remaining elements in the iterator.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","Calls a closure on each element of an iterator.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Advances the iterator, returning the next element.","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","APIs to read from Parquet format.","APIs to write to Parquet format.","Type def for a sharable, boxed dyn Iterator of arrays","A FallibleStreamingIterator that decompresses …","","","An embedded BSON document","","Metadata for a column chunk.","A descriptor for leaf-level primitive columns. This …","A CompressedDataPage is compressed, encoded representation …","A DataPage","","","A Date","","A decimal value.","Decompressor that allows re-using the page buffer of …","A DictPage","","","an enum is converted into a binary field","The error type of iteration.","","A fallible, streaming iterator.","Error presented when trying to use a code branch that …","Error presented when trying to use a feature from parquet …","Metadata for a Parquet file.","An iterator of Chunks coming from row groups of a parquet …","Iterator finished","","","","","The initial info of nested data types.","","","","","","A signed integer value.","","","An interval of time","When encoding, the user passed an invalid parameter","The type being iterated over.","","","An embedded JSON document","","List data types","","","","A special kind of fallible streaming iterator where advance…","","Type def for a sharable, boxed dyn Iterator of …","The state of nested data types.","When the parquet file is known to be out of spec.","A Page is an uncompressed, encoded representation of a …","Type declaration for a page filter","A fallible Iterator of CompressedDataPage. This iterator …","Trait describing a FallibleStreamingIterator of Page","Errors generated by this crate","","Representation of a Parquet type describing primitive and …","The set of all physical types representable in Parquet","Primitive data types","","","","A MutStreamingIterator of pre-read column chunks","An Iterator of Chunk that (dynamically) adapts a vector of …","Metadata for a row group.","An [Iterator<Item=RowGroupDeserializer>] from row groups …","Iterator still has elements","State of MutStreamingIterator.","","Struct data types","An iterator adapter over NestedArrayIter assumed to be …","","A time.","A time","","A date/time combination","A date/time combination","","","","An unsigned integer value.","","","","","","When decoding or decompressing, the page would allocate …","","","","","","","","","","","Reads the column indexes of all ColumnChunkMetaData and …","Reads a FileMetaData from the reader, located at the end …","Asynchronously reads the files’ metadata","Advances the iterator to the next position.","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","The ParquetType this descriptor is a leaf of","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","Returns the offset and length in bytes of the column chunk …","","","","","","","","","","","","","","","","","","","","","Returns this column’s ColumnChunk","Returns the encoding for this column","An iterator adapter that maps multiple iterators of Pages …","Column (sort) order used for min and max values of each …","Returns slice of column chunk metadata.","Returns the total compressed data size of this column …","Total size of all compressed column data in this row group.","Compression for this column.","Returns the number of remaining elements in the iterator.","Creates a new ListArray or FixedSizeListArray.","Creates a new MapArray.","String message for application that wrote this file.","Returns the offset for the column data.","Decompresses the page, using buffer for decompression. If …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The ColumnDescriptor for this column. This descriptor …","The descriptor this columns’ leaf.","Returns the offset for the dictionary page, if any.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Byte offset in file_path().","File where the column chunk is stored.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","","","","","","","","","","","","","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","Returns a ColumnIterator of column chunks corresponding to …","Returns all ColumnChunkMetaData associated to field_name. …","Returns all ColumnChunkMetaData associated to field_name. …","Creates a new iterator of compressed pages.","Returns a stream of compressed data pages","Returns true if this column chunk contains a index page, …","","","","","Returns the offset for the index page.","API to perform page-level filtering (also known as indexes)","Infers a Schema from parquet’s FileMetaData. This first …","","","","","","","","","","","","","","","","","","","","","Initialize NestedState from &[InitNested].","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns two buffers: the first buffer corresponds to the …","Returns its internal buffer, consuming itself.","Returns the reader and this Readers’ interval buffer","","","","","","Method to convert to Thrift.","key_value_metadata of this file.","The number of rows in this state","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","The column’s ColumnMetaData","Returns the number of (parquet) columns that a DataType …","The nesteds composing NestedState.","Creates a new Decompressor.","Returns a new BasicDecompressor.","Returns a new PageReader.","Returns a new ColumnChunkMetaData","Creates new descriptor for leaf-level column.","Create a new RowGroupMetaData","Returns a new ReadColumnIterator","Creates a new StructIterator with iters and fields.","Returns a new FileReader.","Returns a new RowGroupReader","Creates a new RowGroupDeserializer.","Creates a new NestedState.","Create a a new PageReader with PageMetaData.","Advances the iterator, returning the next element.","","","","","","Returns the nth element of the iterator.","Number of rows in this row group.","Returns the number of rows on this row group","number of rows in the file.","Total number of values in this column chunk. Note that …","","","The path of this column. For instance, “a.b.c.d”.","The PhysicalType of this column.","Returns the position of the first element matching a …","","Reads all columns that are part of the parquet field …","Reads all columns that are part of the parquet field …","Returns a vector of iterators of Array (ArrayIter) …","Returns a vector of iterators of Array corresponding to …","Reads parquets’ metadata syncronously.","Reads parquets’ metadata asynchronously.","Read PageLocations from the ColumnChunkMetaDatas. Returns …","The row groups of this file","APIs to handle Parquet <-> Arrow schemas.","Returns the Schema associated to this file.","schema descriptor.","Returns bounds on the number of remaining elements in the …","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","APIs exposing parquet2’s statistics as arrow’s …","Decodes the raw statistics into Statistics.","","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Converts a vector of columns associated with the parquet …","","","","","","","","","","","","Total byte size of all uncompressed column data in this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the total uncompressed data size of this column …","version of this file.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","Advances the iterator to the next position.","Advances the state of the iterator to the next item from …","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Borrows an iterator, rather than consuming it.","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","Calls a closure on each element of an iterator.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Advances the iterator, returning the next element.","Advances the back of the iterator, returning the last …","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","ColumnPageStatistics contains the minimum, maximum, and …","Page statistics of an Arrow field.","An enum describing a page that was either selected in a …","An interval","Variant used for fields with multiple parquet columns …","Variant used for fields with a single parquet column (e.g. …","","","","","","","","","","","","","","","Returns the set of (row) intervals of the pages.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Checks whether the row group have page index information …","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Its length","","The maximum values in the pages","The minimum values in the pages","Create a new interal","The number of null values in the pages.","","Reads the column indexes from the reader assuming a valid …","Reads all page locations and index locations (IO-bounded) …","rows to select from the page","Its start","Location of the page in the file","","","","","","","","","","","","","","","","","","","Metadata for a Parquet file.","","Wrapper struct to store key values","Representation of a Parquet type describing primitive and …","","A schema descriptor. This encapsulates the top-level …","Column (sort) order used for min and max values of each …","String message for application that wrote this file.","Infers a Schema from parquet’s FileMetaData. This first …","","key_value_metadata of this file.","number of rows in the file.","Converts ParquetTypes to a Field, ignoring parquet fields …","Reads an arrow schema from Parquet’s file metadata. …","The row groups of this file","schema descriptor.","","version of this file.","","","","","Arrow-deserialized parquet Statistics of a file","","","","","Deserializes the statistics in the column chunks from all …","number of dictinct values. This is a UInt64Array for …","","","","","Returns the argument unchanged.","","Calls U::from(self).","Maximum","Minimum","number of nulls. This is a UInt64Array for non-nested types","","","","","Bit packed encoding. This can only be used if the data …","","","Represents a valid brotli compression level.","","Encoding for floating-point data. K byte-streams are …","A CompressedDataPage is compressed, encoded representation …","A CompressedPage is a compressed, encoded representation …","Defines the compression settings for writing a parquet …","A FallibleStreamingIterator that consumes Page and yields …","A DataPage","","Delta encoding for integers. This can be used for int …","Incremental-encoded byte array. Prefix lengths are encoded …","Encoding for byte arrays to separate the length values and …","A descriptor of a parquet column. It contains the …","A DictPage","","","DynIter is an implementation of a single-threaded, …","Dynamically-typed FallibleStreamingIterator.","","The error type of iteration.","A fallible, streaming iterator.","Common type information.","Metadata for a Parquet file.","Sink that writes array chunks as a Parquet file.","An interface to write a parquet to a Write","","","","","Represents a valid gzip compression level.","","","","The type being iterated over.","Wrapper struct to store key values","a list","a list","","","","Descriptor of nested information of a field","A Page is an uncompressed, encoded representation of a …","The set of all physical types representable in Parquet","Representation of a Parquet type describing primitive and …","Default encoding. BOOLEAN - 1 bit per value. 0 is false; 1 …","Deprecated: Dictionary encoding. The values in the …","a primitive (leaf or parquet column) bitmap, _, length","","Group packed run length encoding. Usable for …","Dictionary encoding: the ids are encoded using the RLE …","","An iterator adapter that converts an iterator over Chunk …","A schema descriptor. This encapsulates the top-level …","","a struct","Description for file metadata","","","","The parquet version to use","Currently supported options to write to parquet","","Represents a valid zstd compression level.","","","","","","","","","","","","","","","","","Advances the iterator to the next position.","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","Returns a vector of iterators of Page, one per leaf column …","Converts an Array to a CompressedPage based on options, …","Converts an Array to a CompressedPage based on options, …","Returns an iterator of Page.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","Checks whether the data_type can be encoded as encoding. …","Checks if sub_type schema is part of current schema. This …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns column order for ith column in this file. If …","Sort order used for the min_value and max_value fields in …","Column (sort) order used for min and max values of each …","The ColumnDescriptor (leafs) of this schema.","","","Compresses an [EncodedPage] into a CompressedPage using …","","The compression of the data in this page. Note that what …","The compression to apply to every page","Returns the compression level.","Returns the compression level.","Returns the compression level.","Returns the number of remaining elements in the iterator.","String for application that wrote this file. This should …","String message for application that wrote this file.","The size to flush a page, defaults to 1024 * 1024 if None","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Encryption algorithm. This field is set only in encrypted …","Writes the footer of the parquet file. Returns the total …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The schemas’ fields.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","","","","","","","","","","","","","","","","","","","Retrieval metadata of key used for signing the footer. …","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Helper method to create a ParquetType::PrimitiveType …","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","Returns FieldInfo information about the type.","Get the length of Array that should be sliced.","","","","","","","","","","","","","the optional id, to select fields by id","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Deconstructs itself into its iterator and scratch buffer.","Consumes this writer and returns the inner writer","Returns the underlying writer and ThriftFileMetaData","","","Serializes itself to thrift’s …","","","","","returns the metadata","Optional key/value metadata *","key_value_metadata of this file.","Returns the length (number of rows) of the element","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","The maximum definition level","The maximum repetition level","Key-value metadata that will be written to the file on …","The schemas’ name.","Returns this type’s field name.","The field name","Creates a new Compressor","Returns a new DynIter, boxing the incoming iterator","Returns a new DynStreamingIterator, boxing the incoming …","","","Creates new schema descriptor from Parquet schema.","Returns a new CompressedDataPage.","Creates a new Compressor (same as new)","Advances the iterator, returning the next element.","","","Returns the nth element of the iterator.","Number of rows in this file *","number of rows in the file.","return number values of the nested","","The options assigned to the file","The write options for the file.","The SchemaDescriptor assigned to this file","Returns the SchemaDescriptor of the RowGroupIterator.","The Parquet SchemaDescriptor for the file.","","","","","","Returns the position of the first element matching a …","The PrimitiveType of this column","","","","","The repetition","Maps a Chunk and parquet-specific options to an …","Row groups in this file *","The row groups of this file","Returns the SchemaDescriptor that describes schema of this …","The Schema assigned to this file","The Arrow Schema for the file.","Parquet schema for this file. This schema contains …","schema descriptor.","","the rows to be selected by this page. When None, all rows …","Returns bounds on the number of remaining elements in the …","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","returns offset and length to slice the leaf values","Slices the Array to Box<dyn Array> and Vec<Nested>.","","Decodes the raw statistics into a statistics","","","","","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","Convert Array to Vec<&dyn Array> leaves in DFS order.","Constructs the necessary Vec<Vec<Nested>> to write the rep …","","","","","","","","","","","","","","","","","Convert ParquetType to Vec<ParquetPrimitiveType> leaves in …","Creates a parquet SchemaDescriptor from a Schema.","Creates a ParquetType from a Field.","Transverses the data_type up to its (parquet) columns and …","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a schema from","Error","Deserializes crate::thrift_format::FileMetaData into this …","Method to convert from Thrift.","","","","","","","","","","","","","","","","","","","","","","","","","","Attempts to create a brotli compression level.","Attempts to create a gzip compression level.","Attempts to create a zstd compression level from a given …","Returns a new FileWriter.","Creates a new RowGroupIterator from an iterator over Chunk.","Create a new sink that writes arrays to the provided writer…","","","","","","","","","","","","","","","","","","","","","","","","","","","","Version of this file *","version of this file.","The page and file version to use","","","","","","","","","","","","","","","","","","","","","","","","","","Writes a row group to the file.","writes the def levels to a Vec<u8> and returns it.","Writes a parquet file containing only the header and footer","Write repetition_levels and definition_levels to buffer.","Whether to write statistics","","","","","","","","","Memory maps dictionaries from an IPC file into","Memory maps an record batch from an IPC file into a Chunk.","Whether it is i32 (false) or i64 (true).","Sealed trait describing the subset (i32 and i64) of Index …","A wrapper type of Vec<O> representing the invariants of …","A wrapper type of Buffer<O> that is guaranteed to:","","","Returns the byte slice stored in this buffer","Returns the byte slice stored in this buffer","","","","","Returns a reference to its internal Buffer.","Returns the capacity of Offsets.","","","","","","","","","","","","","","","","","","","","Extends itself with additional elements equal to the last …","Returns the first offset.","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Returns the inner Vec.","Returns the inner Buffer.","Copy-on-write API to convert OffsetsBuffer into Offsets.","Returns the last offset of this container.","Returns the last offset.","Returns the number of offsets in this container.","Returns the number of offsets in this container.","Returns the length an array with these offsets would be.","Returns the length an array with these offsets would be.","Returns an iterator with the lengths of the offsets","Returns an empty Offsets (i.e. with a single element, the …","Returns an empty OffsetsBuffer (i.e. with a single …","Returns Offsets assuming that offsets fulfills its …","Safety","Returns an Offsets whose all lengths are zero.","Pops the last element","Returns the range of the offsets.","Reserves additional entries.","Shrinks the capacity of self to fit.","Slices this OffsetsBuffer.","Slices this OffsetsBuffer starting at offset.","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","Returns a range (start, end) corresponding to the position …","","","Try extend from an iterator of lengths","Extends itself from another Offsets","Extends itself from another Offsets sliced by start, length","","","","","","","","Creates a new Offsets from an iterator of lengths","Try to create a new Offsets from a sequence of lengths","","","Pushes a new element with a given length.","Pushes a new element with a given length.","","","","","Returns a new Offsets with a capacity, allocating at least …","The Scalar implementation of binary (Option<Vec<u8>>).","The Scalar implementation of a boolean.","The DictionaryArray equivalent of Array for Scalar.","The Scalar implementation of fixed size binary ([…","The scalar equivalent of FixedSizeListArray. Like …","The scalar equivalent of ListArray. Like ListArray, this …","The scalar equivalent of MapArray. Like MapArray, this …","The representation of a single entry of a …","The implementation of Scalar for primitive, semantically …","Trait object declaring an optional value with a DataType. …","A single entry of a crate::array::StructArray.","A single entry of a crate::array::UnionArray.","The implementation of Scalar for utf8, semantically …","","","","","","","","","","","","","convert itself to","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","the logical type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","whether it is valid","","","","","","","","","","","","","returns a new DictionaryScalar","Returns a new PrimitiveScalar.","Returns a new Utf8Scalar","Returns a new BinaryScalar.","Returns a new BooleanScalar","returns a new ListScalar","returns a new MapScalar","A new NullScalar","Returns a new StructScalar","returns a new FixedSizeListScalar","Returns a new FixedSizeBinaryScalar.","Returns a new UnionScalar","creates a new Scalar from an Array.","Returns a new PrimitiveScalar with the same value but …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the type of the union scalar","","","","","","","","","","","","","The values of the DictionaryScalar","Returns the optional value.","Returns the value irrespectively of the validity.","Its value","The value","Its value","Returns the inner value","The values of the ListScalar","The values of the MapScalar","Returns the values irrespectively of the validity.","The values of the FixedSizeListScalar","","","","","","","","","","","","","Number of days between 0001-01-01 and 1970-01-01","Number of microseconds in a second","Number of milliseconds in a second","Number of milliseconds in a day","Number of nanoseconds in a second","Number of seconds in a day","Adds an interval to a timestamp in time_unit units and …","Adds an interval to a timestamp in time_unit units without …","converts a i32 representing a date32 to NaiveDate","converts a i32 representing a date32 to NaiveDateTime","converts a i64 representing a date64 to NaiveDate","converts a i64 representing a date64 to NaiveDateTime","Parses an offset of the form "+WX:YZ" or "UTC" into …","Parses value to a chrono_tz::Tz with the Arrow’s …","converts a i32 representing a time32(ms) to NaiveTime","converts a i32 representing a time32(s) to NaiveTime","converts a i64 representing a time64(ns) to NaiveTime","converts a i64 representing a time64(us) to NaiveTime","converts a i64 representing a timestamp(ms) to …","converts a i64 representing a timestamp(ns) to …","converts a i64 representing a timestamp(s) to NaiveDateTime","Converts a timestamp in time_unit and timezone into …","Converts a timestamp in time_unit and timezone into …","converts a i64 representing a timestamp(us) to …","Calculates the scale factor between two TimeUnits. The …","Parses a Utf8Array to naive timestamp, i.e. …","Parses value to Option<i64> consistent with the Arrow’s …","Parses value to Option<i64> consistent with the Arrow’s …","Parses a Utf8Array to a timeozone-aware timestamp, i.e. …","Parses value to Option<i64> consistent with the Arrow’s …","Parses value to Option<i64> consistent with the Arrow’s …","An iterator of known, fixed size. A trait denoting Rusts’…","A chunk of bits. This is used to create masks of a given …","An [Iterator<Item=bool>] over a BitChunk. This iterator is …","An [Iterator<Item=usize>] over a BitChunk returning the …","Type denoting its representation as bytes. This is [u8; N] …","Two i32 representing days and ms","The difference between 1.0 and the next largest …","A 16-bit floating point number.","A 32-bit floating point number.","A 64-bit floating point number.","Whether it is i32 (false) or i64 (true).","Sealed trait describing the subset of NativeType (i32, i64…","Range of Index, equivalent to (a..b). Step is unstable in …","A signed 128-bit integer.","A signed 16-bit integer.","A signed 256-bit integer.","A signed 32-bit integer.","A signed 64-bit integer.","A signed 8-bit integer.","months_days_ns(i32, i32, i64)","Sealed trait implemented by all physical types that can be …","Sealed trait describing the subset (i32 and i64) of Index …","The corresponding variant of PrimitiveType.","The set of all implementations of the sealed trait …","An unsigned 16-bit integer.","An unsigned 32-bit integer.","An unsigned 64-bit integer.","An unsigned 8-bit integer.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The number of days","The number of days","The in-memory representation of the DayMillisecond variant …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Type representation of the Float16 physical type","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert itself from usize.","From bytes in big endian","","","","","Casts from u16.","Casts an f32 into f16","From bytes in little endian","","","","","convert itself from bytes.","Convert itself from usize.","Returns a new i256 from two i128.","","","","Physical representation of a decimal","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","The number of milliseconds","The number of months","The in-memory representation of the MonthDayNano variant …","","","","Creates a new BitChunkIter with len bits.","Creates a new BitChunkOnes with len bits.","Returns a new IndexRange.","A new days_ms.","A new months_days_ns.","","","","The number of nanoseconds","","An iterator from (inclusive) start to (exclusive) end.","Contains traits and implementations of multi-data used in …","","","","To bytes in big endian","","","","","Casts to u16.","Casts this f16 to f32","To bytes in little endian","","","","","convert itself into bytes.","","","","","","","","","Convert itself to usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The type holding bits for masks.","Describes the ability to convert itself from a BitChunk.","Number of lanes","Type used for masking.","The NativeType of this struct. E.g. f32 for a …","A struct that lends itself well to be compiled leveraging …","Trait implemented by some NativeType that have a SIMD …","The SIMD type associated with this trait. This type …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a tuple of 3 items whose middle item is itself, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert itself from a slice.","Convert itself from a slice.","","","","","","","","","","","","","","","","creates a new Self from v by populating items from v up to …","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","","","","","","","","Sets values to default based on mask.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","Multi-Data correspondence of the native type","","","","","","","","","","","","","","","","Converts numeric type to a String","Converts numeric type to a String","Converts numeric type to a String","Given local time representation has multiple results and …","April","August","Automatically select one of Secs, Millis, Micros, or Nanos …","ISO 8601 calendar date with time zone.","ISO 8601 combined date and time with time zone.","The common set of methods for date component.","A duration in calendar days.","December","ISO 8601 time duration with nanosecond precision.","Error when Duration.num_nanoseconds exceeds the limit.","Error when the Duration exceeds the Duration from or until …","Extension trait for rounding or truncating a DateTime by a …","Error that can occur in rounding or truncating","February","The time zone with fixed offset, from UTC-23:59:59 to …","Friday.","ISO 8601 week.","January","July","June","The local timescale. This is implemented via the standard …","The conversion result from the local time to the …","The maximum possible NaiveDate (December 31, 262143 CE).","The maximum possible NaiveDateTime.","The maximum possible Date.","The maximum possible DateTime<Utc>.","The maximum possible Date.","The maximum possible DateTime<Utc>.","The minimum possible NaiveDate (January 1, 262145 BCE).","The minimum possible NaiveDateTime.","The earliest possible NaiveTime","The minimum possible Date.","The minimum possible DateTime<Utc>.","The minimum possible Date.","The minimum possible DateTime<Utc>.","March","May","Use fixed 6 subsecond digits. This corresponds to …","Use fixed 3 subsecond digits. This corresponds to …","Monday.","The month of the year.","A duration in calendar months","ISO 8601 calendar date without timezone. Allows for every …","ISO 8601 combined date and time without timezone.","ISO 8601 time without timezone. Allows for the nanosecond …","A week represented by a NaiveDate and a Weekday which is …","Use fixed 9 subsecond digits. This corresponds to …","Given local time representation is invalid. This can occur …","November","October","The offset from the local time to UTC.","An associated offset type. This type is used to store the …","Out of range error type used in various converting APIs","Represents error when converting Duration to/from a …","An error from the parse function.","An error resulting from reading <Month> value with FromStr.","Same as Result<T, ParseError>.","An error resulting from reading Weekday value with FromStr.","An error from rounding by Duration","Saturday.","Specific formatting options for seconds. This may be …","Format whole seconds only, with no decimal point nor …","September","Given local time representation has a single unique result.","Extension trait for subsecond rounding or truncation to a …","Sunday.","Thursday.","The time zone.","The common set of methods for time component.","Error when DateTime.timestamp_nanos exceeds the limit.","Tuesday.","The UTC time zone. This is the most efficient time zone …","Wednesday.","The day of week.","","","","","","","","","","","","","","","","","","","","","","","Returns the duration as an absolute (non-negative) value.","","","","","","","","","An addition of months to NaiveDate clamped to valid days …","","An addition of months to NaiveDateTime clamped to valid …","","","","","","","","","","Makes a new DateTime from the current date, hour, minute …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute, …","Makes a new DateTime from the current date, hour, minute …","Makes a new NaiveDateTime from the current date, hour, …","Makes a new DateTime from the current date, hour, minute …","Converts the NaiveDateTime into the timezone-aware …","Makes a new DateTime from the current date and given …","Makes a new NaiveDateTime from the current date and given …","Makes a new DateTime from the current date and given …","Converts the NaiveDateTime into the timezone-aware …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Add two durations, returning None if overflow occurred.","Add a duration in Days to the date part of the DateTime","Add a duration in Days to the date","Add a duration in Days to the date part of the …","Adds given Months to the current date and time.","Add a duration in Months to the date","Adds given Months to the current date and time.","Adds given Duration to the current date.","Adds given Duration to the current date and time.","Adds the days part of given Duration to the current date.","Adds given Duration to the current date and time.","Subtract two durations, returning None if overflow …","Subtract a duration in Days from the date part of the …","Subtract a duration in Days from the date","Subtract a duration in Days from the date part of the …","Subtracts given Months from the current date and time.","Subtract a duration in Months from the date","Subtracts given Months from the current date and time.","Subtracts given Duration from the current date.","Subtracts given Duration from the current date and time.","Subtracts the days part of given Duration from the current …","Subtracts given Duration from the current date and time.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Retrieves a date component","Retrieves a date component.","Retrieves the Date without an associated timezone","Parses a string with the specified format string and …","Returns the day of month starting from 1.","","","Returns the day of month starting from 1.","Returns the day of month starting from 1.","Returns the day of month starting from 0.","","","Returns the day of month starting from 0.","Returns the day of month starting from 0.","Makes a new Duration with given number of days. Equivalent …","Returns a RangeInclusive<T> representing the whole week …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return a copy rounded by Duration.","","","Return a copy truncated by Duration.","","","Returns Some for the earliest possible conversion result, …","Makes a new FixedOffset for the Eastern Hemisphere with …","Makes a new FixedOffset for the Eastern Hemisphere with …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a date representing the first day of the week.","Returns the fixed offset from UTC to the local time stored.","","","Fix the offset from UTC to its current value, dropping the …","","Format a duration using the ISO 8601 format","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Formatting (and parsing) utilities for date and time.","Formats the date with the specified format string. See the …","Formats the combined date and time per the specified …","Formats the date with the specified format string. See the …","Formats the combined date and time with the specified …","Formats the time with the specified format string. See the …","Formats the date with the specified formatting items.","Formats the combined date and time with the specified …","Formats the date with the specified formatting items. …","Formats the combined date and time with the specified …","Formats the time with the specified formatting items. …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert this DateTime<Utc> instance into a …","","Convert this DateTime<Local> instance into a …","Convert this DateTime<FixedOffset> instance into a …","Convert this DateTime<Utc> instance into a DateTime<Local> …","Returns the argument unchanged.","Convert this DateTime<Local> instance into a DateTime<Utc> …","","Convert this DateTime<FixedOffset> instance into a …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Makes a new NaiveTime from hour, minute and second.","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute, second and …","Makes a new NaiveTime from hour, minute and second.","","","Makes a new NaiveDate from the ISO week date (year, week …","Makes a new NaiveDate from the ISO week date (year, week …","Makes a new DateTime with given local datetime and offset …","Converts the local NaiveDate to the timezone-aware Date if …","Converts the local NaiveDateTime to the timezone-aware …","Makes a new NaiveDate from a day’s number in the …","Makes a new NaiveDate from a day’s number in the …","Makes a new NaiveTime from the number of seconds since …","Makes a new NaiveTime from the number of seconds since …","Reconstructs the time zone from the offset.","","","","Creates a time::Duration object from std::time::Duration","","","","","","","","","Makes a new NaiveDateTime corresponding to a UTC date and …","Creates a new NaiveDateTime from microseconds since the …","Creates a new NaiveDateTime from milliseconds since the …","Makes a new NaiveDateTime corresponding to a UTC date and …","","","Returns an Option<Month> from a i64, assuming a 1-index, …","Makes a new Date with given UTC date and offset. The local …","Makes a new DateTime with given UTC datetime and offset. …","Converts the UTC NaiveDate to the local time. The UTC is …","Converts the UTC NaiveDateTime to the local time. The UTC …","Makes a new NaiveDate by counting the number of …","Makes a new NaiveDate by counting the number of …","Makes a new NaiveDate from the calendar date (year, month …","Makes a new NaiveDate from the calendar date (year, month …","Makes a new NaiveDate from the ordinal date (year and day …","Makes a new NaiveDate from the ordinal date (year and day …","","","","","","","","","","","","","","","","","","Returns the hour number from 0 to 23.","","Returns the hour number from 0 to 23.","Returns the hour number from 0 to 23.","Returns the hour number from 1 to 12 with a boolean flag, …","Makes a new Duration with given number of hours. …","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns true if the duration equals Duration::zero().","Returns the ISO week.","","","","","Makes a new Date from ISO week date (year and week …","Makes a new Date from ISO week date (year and week …","Returns an iterator that steps by days across all …","Returns an iterator that steps by weeks across all …","The category of parse error","Returns a date representing the last day of the week.","Returns Some for the latest possible conversion result, or …","","","","Returns the number of seconds to add to convert from UTC …","Maps a LocalResult<T> into LocalResult<U> with given …","The maximum possible Duration: i64::MAX milliseconds.","Makes a new Duration with given number of microseconds.","Makes a new Duration with given number of milliseconds.","The minimum possible Duration: i64::MIN milliseconds.","Returns the minute number from 0 to 59.","","Returns the minute number from 0 to 59.","Returns the minute number from 0 to 59.","Makes a new Duration with given number of minutes. …","Returns the month number starting from 1.","","","Returns the month number starting from 1.","Returns the month number starting from 1.","Returns the month number starting from 0.","","","Returns the month number starting from 0.","Returns the month number starting from 0.","","Date and time types unconcerned with timezones.","Returns a view to the naive local date.","Returns a view to the naive local datetime.","Returns a view to the naive UTC date.","Returns a view to the naive UTC datetime.","Get the name of the month","Returns the number of nanoseconds since the whole non-leap …","","Returns the number of nanoseconds since the whole non-leap …","Returns the number of nanoseconds since the whole non-leap …","Makes a new Duration with given number of nanoseconds.","","Construct a new Days from a number of days","Makes a new NaiveDateTime from date and time components. …","Construct a new Months from a number of months","","Returns a DateTime which corresponds to the current date …","","Returns a DateTime which corresponds to the current date …","","Returns the total number of whole days in the duration.","Counts the days in the proleptic Gregorian calendar, with …","Returns a day-of-week number starting from Monday = 0.","Returns a day-of-week number starting from Sunday = 0.","Returns the total number of whole hours in the duration.","Returns the total number of whole microseconds in the …","Returns the total number of whole milliseconds in the …","Returns the total number of whole minutes in the duration.","Returns the total number of whole nanoseconds in the …","Returns the total number of whole seconds in the duration.","Returns the number of non-leap seconds past the last …","Returns the number of non-leap seconds past the last …","Returns the total number of whole weeks in the duration.","Returns a day-of-week number starting from Monday = 1. …","Returns a month-of-year number starting from January = 1.","Returns a day-of-week number starting from Sunday = 1.","The time zone, which calculates offsets from the local …","Retrieves an associated offset from UTC.","Retrieves an associated offset from UTC.","Creates the offset(s) for given local NaiveDate if …","","","","Creates the offset(s) for given local NaiveDateTime if …","","","","Creates the offset for given UTC NaiveDate. This cannot …","","","","Creates the offset for given UTC NaiveDateTime. This …","","","","Returns the day of year starting from 1.","","","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Returns the day of year starting from 0.","","","Returns the day of year starting from 0.","Returns the day of year starting from 0.","Adds given Duration to the current time, and also returns …","Subtracts given Duration from the current time, and also …","Parses a string from a user-specified format into a …","Parses a string from a user-specified format into a new …","Parses a string with the specified format string and …","Parses a string from a user-specified format into a new …","Parses an RFC 2822 date-and-time string into a …","Parses an RFC 3339 date-and-time string into a …","Parses a string from a user-specified format into a …","Parses a string with the specified format string and …","Parses a string with the specified format string and …","Parses a string with the specified format string and …","","","Compare two DateTimes based on their true time, ignoring …","","","","","","","","Makes a new Date for the prior date.","Makes a new NaiveDate for the previous calendar date.","The previous day in the week.","The previous month.","Makes a new Date for the prior date.","Makes a new NaiveDate for the previous calendar date.","A convenience module appropriate for glob imports (…","","","","","","Return a copy rounded to the specified number of subsecond …","","","","Returns the second number from 0 to 59.","","Returns the second number from 0 to 59.","Returns the second number from 0 to 59.","Makes a new Duration with given number of seconds. Panics …","Subtracts another Date from the current date. Returns a …","Subtracts another DateTime from the current date and time. …","Subtracts another NaiveDate from the current date. Returns …","Subtracts another NaiveDateTime from the current date and …","Subtracts another NaiveTime from the current time. Returns …","Returns Some only when the conversion result is unique, or …","","","","","","","","","","","","A subtraction of Months from NaiveDate clamped to valid …","","","","","","","","","","","","","","Makes a new Date for the next date.","Makes a new NaiveDate for the next calendar date.","The next day in the week.","The next month.","Makes a new Date for the next date.","Makes a new NaiveDate for the next calendar date.","","","Retrieves a time component. Unlike date, this is not …","Retrieves a time component.","Makes a new DateTime from the number of non-leap seconds …","Returns the number of non-leap seconds since January 1, …","Returns the number of non-leap seconds since the midnight …","Returns the number of non-leap-microseconds since January …","Returns the number of non-leap microseconds since midnight …","Makes a new DateTime from the number of non-leap …","Returns the number of non-leap-milliseconds since January …","Returns the number of non-leap milliseconds since midnight …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Returns the number of non-leap-nanoseconds since January …","Returns the number of non-leap nanoseconds since midnight …","Makes a new DateTime from the number of non-leap seconds …","Returns the number of microseconds since the last second …","Returns the number of microseconds since the last whole …","Returns the number of milliseconds since the last second …","Returns the number of milliseconds since the last whole …","Returns the number of nanoseconds since the last second …","Returns the number of nanoseconds since the last whole …","Retrieves an associated time zone.","Retrieves an associated time zone.","","","","","","","","","","","","","","","","","","","","","","","Returns an RFC 2822 date and time string such as …","Returns an RFC 3339 and ISO 8601 date and time string such …","Return an RFC 3339 and ISO 8601 date and time string with …","Creates a std::time::Duration object from time::Duration","","","","","","","","","","","","","","","Returns a Date which corresponds to the current date.","Returns a Date which corresponds to the current date.","Return a copy truncated to the specified number of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the single unique conversion result, or panics …","Returns the number of seconds to add to convert from the …","","","","","","","","","","","","","","","","","","","","","","","","Returns the NaiveWeek that the date belongs to, starting …","Returns the ISO week number starting from 1.","Returns the ISO week number starting from 0.","","Returns the day of week.","","","Returns the day of week.","Returns the day of week.","Makes a new Duration with given number of weeks. …","Makes a new FixedOffset for the Western Hemisphere with …","Makes a new FixedOffset for the Western Hemisphere with …","Makes a new value with the day of month (starting from 1) …","","","Makes a new NaiveDate with the day of month (starting from …","Makes a new NaiveDateTime with the day of month (starting …","Makes a new value with the day of month (starting from 0) …","","","Makes a new NaiveDate with the day of month (starting from …","Makes a new NaiveDateTime with the day of month (starting …","Makes a new value with the hour number changed.","","Makes a new NaiveDateTime with the hour number changed.","Makes a new NaiveTime with the hour number changed.","Makes a new value with the minute number changed.","","Makes a new NaiveDateTime with the minute number changed.","Makes a new NaiveTime with the minute number changed.","Makes a new value with the month number (starting from 1) …","","","Makes a new NaiveDate with the month number (starting from …","Makes a new NaiveDateTime with the month number (starting …","Makes a new value with the month number (starting from 0) …","","","Makes a new NaiveDate with the month number (starting from …","Makes a new NaiveDateTime with the month number (starting …","Makes a new value with nanoseconds since the whole …","","Makes a new NaiveDateTime with nanoseconds since the whole …","Makes a new NaiveTime with nanoseconds since the whole …","Makes a new value with the day of year (starting from 1) …","","","Makes a new NaiveDate with the day of year (starting from …","Makes a new NaiveDateTime with the day of year (starting …","Makes a new value with the day of year (starting from 0) …","","","Makes a new NaiveDate with the day of year (starting from …","Makes a new NaiveDateTime with the day of year (starting …","Makes a new value with the second number changed.","","Makes a new NaiveDateTime with the second number changed.","Makes a new NaiveTime with the second number changed.","Changes the associated time zone. This does not change the …","Changes the associated time zone. The returned DateTime …","Makes a new value with the year number changed.","","","Makes a new NaiveDate with the year number changed.","Makes a new NaiveDateTime with the year number changed.","Make a new DateTime from year, month, day, time components …","Returns the year number in the calendar date.","","","Returns the year number in the calendar date.","Returns the year number in the calendar date.","Returns the year number for this ISO week.","Returns the absolute year number starting from 1 with a …","Returns the number of whole years from the given base …","Retrieve the elapsed years from now to the given DateTime.","Returns the number of whole years from the given base …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, day of year (DOY or “ordinal…","Makes a new Date from year, day of year (DOY or “ordinal…","A duration where the stored seconds and nanoseconds are …","There was an error on the formatting string, or there were …","Day of the month (FW=PW=2).","A temporary object which can be used as an argument to …","Issues a formatting error. Used to signal an invalid …","Fixed-format item types.","Fixed-format item.","Hour number in the 24-hour clocks (FW=PW=2).","Hour number in the 12-hour clocks (FW=PW=2).","There is no possible date and time value with given set of …","Internal uses only.","Internal uses only.","An opaque type representing fixed-format item types for …","An opaque type representing numeric item types for …","The input string has some invalid character sequence for …","Week number in the ISO week date (FW=PW=2).","Year in the ISO week date (FW=4, PW=∞). May accept years …","Year in the ISO week date, divided by 100 (FW=PW=2). …","Year in the ISO week date, modulo 100 (FW=PW=2). Cannot be …","A single formatting item. This is used for both formatting …","A literally printed and parsed text.","Full month names.","Full day of the week names.","AM/PM.","The number of minutes since the last whole hour (FW=PW=2).","Month (FW=PW=2).","The number of nanoseconds since the last whole second …","An optional dot plus one or more digits for left-aligned …","Same as Nanosecond but the accuracy is fixed to 3.","Same as Nanosecond but the accuracy is fixed to 6.","Same as Nanosecond but the accuracy is fixed to 9.","No padding.","Given set of fields is not enough to make a requested date …","Day of the week, where Sunday = 0 and Saturday = 6 …","Numeric item types. They have associated formatting width …","Numeric item. Can be optionally padded to the maximal …","Day of the year (FW=PW=3).","Given field is out of permitted range.","Same as Literal but with the string owned by the item.","Same as Space but with the string owned by the item.","Padding characters for numeric items.","An error from the parse function.","The category of parse error","Same as Result<T, ParseError>.","Parsed parts of date and time. There are two classes of …","RFC 2822 date and time syntax. Commonly used for email and …","RFC 3339 & ISO 8601 date and time syntax.","The number of seconds since the last whole minute …","Abbreviated month names.","Abbreviated day of the week names.","Space padding.","Whitespace. Prints literally but reads zero or more …","Parsing iterator for strftime-like format strings.","The number of non-leap seconds since the midnight UTC on …","Timezone name.","Same as TimezoneOffsetColon but prints no colon. Parsing …","Offset from the local time to UTC (+09:00 or -04:00 or …","Offset from the local time to UTC (+09:00 or -04:00 or Z).","Offset from the local time to UTC with seconds (+09:00:00 …","Offset from the local time to UTC without minutes (+09 or …","Same as TimezoneOffsetColonZ but prints no colon. Parsing …","All formatting items have been read but there is a …","The input string has been prematurely ended.","AM/PM.","Week number, where the week 1 starts at the first Monday …","Week number, where the week 1 starts at the first Sunday …","Day of the week, where Monday = 1 and Sunday = 7 (FW=PW=1).","Full Gregorian year (FW=4, PW=∞). May accept years …","Gregorian year divided by 100 (century number; FW=PW=2). …","Gregorian year modulo 100 (FW=PW=2). Cannot be negative.","Zero (0) padding.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Day of the month (1–28, 1–29, 1–30 or 1–31 …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Tries to format given arguments with given formatting …","Formats single formatting item","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Hour number divided by 12 (0–1). 0 indicates AM and 1 …","Hour number modulo 12 (0–11).","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","ISO week number (1–52 or 1–53 depending on the year).","Year in the ISO week date.","Year in the ISO week date, divided by 100. Implies that …","Year in the ISO week date, modulo 100. Implies that the …","Minute number (0–59).","Month (1–12).","The number of nanoseconds since the whole second (0–…","Returns the initial value of parsed parts.","Creates a new parsing iterator from the strftime-like …","Makes a new DelayedFormat value out of local date and time.","Makes a new DelayedFormat value out of local date and time …","","Offset from the local time to UTC, in seconds.","Day of the year (1–365 or 1–366 depending on the year).","Tries to parse given string into parsed with given …","Tries to parse given string into parsed with given …","Second number (0–60, accounting for leap seconds).","Tries to set the hour_div_12 field from given value. (false…","Tries to set the day field from given value.","Tries to set both hour_div_12 and hour_mod_12 fields from …","Tries to set the hour_mod_12 field from given hour number …","Tries to set the isoweek field from given value.","Tries to set the isoyear field from given value.","Tries to set the isoyear_div_100 field from given value.","Tries to set the isoyear_mod_100 field from given value.","Tries to set the minute field from given value.","Tries to set the month field from given value.","Tries to set the nanosecond field from given value.","Tries to set the offset field from given value.","Tries to set the ordinal field from given value.","Tries to set the second field from given value.","Tries to set the timestamp field from given value.","Tries to set the week_from_mon field from given value.","Tries to set the week_from_sun field from given value.","Tries to set the weekday field from given value.","Tries to set the year field from given value.","Tries to set the year_div_100 field from given value.","Tries to set the year_mod_100 field from given value.","strftime/strptime-inspired date and time formatting syntax.","The number of non-leap seconds since the midnight UTC on …","Returns a parsed timezone-aware date and time out of given …","Returns a parsed timezone-aware date and time out of given …","Returns a parsed fixed time zone offset out of given …","Returns a parsed naive date out of given fields.","Returns a parsed naive date and time out of given fields, …","Returns a parsed naive time out of given fields.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Week number, where the week 1 starts at the first Monday …","Week number, where the week 1 starts at the first Sunday …","Day of the week.","Year.","Year divided by 100. Implies that the year is >= 1 BCE …","Year modulo 100. Implies that the year is >= 1 BCE when …","Parsing iterator for strftime-like format strings.","A duration in calendar days.","ISO 8601 week.","The maximum possible NaiveDate (December 31, 262143 CE).","The maximum possible NaiveDateTime.","The minimum possible NaiveDate (January 1, 262145 BCE).","The minimum possible NaiveDateTime.","ISO 8601 calendar date without timezone. Allows for every …","ISO 8601 combined date and time without timezone.","ISO 8601 time without timezone. Allows for the nanosecond …","A week represented by a NaiveDate and a Weekday which is …","Given local time representation has multiple results and …","The time zone with fixed offset, from UTC-23:59:59 to …","The local timescale. This is implemented via the standard …","The conversion result from the local time to the …","Given local time representation is invalid. This can occur …","The offset from the local time to UTC.","An associated offset type. This type is used to store the …","Given local time representation has a single unique result.","The time zone.","The UTC time zone. This is the most efficient time zone …","Parses a string with the specified format string and …","Returns the fixed offset from UTC to the local time stored.","Converts the local NaiveDate to the timezone-aware Date if …","Converts the local NaiveDateTime to the timezone-aware …","Reconstructs the time zone from the offset.","Converts the UTC NaiveDate to the local time. The UTC is …","Converts the UTC NaiveDateTime to the local time. The UTC …","Makes a new Date from ISO week date (year and week …","Makes a new Date from ISO week date (year and week …","Creates the offset(s) for given local NaiveDate if …","Creates the offset(s) for given local NaiveDateTime if …","Creates the offset for given UTC NaiveDate. This cannot …","Creates the offset for given UTC NaiveDateTime. This …","Makes a new DateTime from the number of non-leap seconds …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap seconds …","Make a new DateTime from year, month, day, time components …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, day of year (DOY or “ordinal…","Makes a new Date from year, day of year (DOY or “ordinal…","April","August","Automatically select one of Secs, Millis, Micros, or Nanos …","ISO 8601 calendar date with time zone.","ISO 8601 combined date and time with time zone.","The common set of methods for date component.","December","February","The time zone with fixed offset, from UTC-23:59:59 to …","Friday.","January","July","June","The local timescale. This is implemented via the standard …","March","May","Use fixed 6 subsecond digits. This corresponds to …","Use fixed 3 subsecond digits. This corresponds to …","Monday.","The month of the year.","ISO 8601 calendar date without timezone. Allows for every …","ISO 8601 combined date and time without timezone.","ISO 8601 time without timezone. Allows for the nanosecond …","Use fixed 9 subsecond digits. This corresponds to …","November","October","The offset from the local time to UTC.","An associated offset type. This type is used to store the …","Saturday.","Specific formatting options for seconds. This may be …","Format whole seconds only, with no decimal point nor …","September","Extension trait for subsecond rounding or truncation to a …","Sunday.","Thursday.","The time zone.","The common set of methods for time component.","Tuesday.","The UTC time zone. This is the most efficient time zone …","Wednesday.","The day of week.","Parses a string with the specified format string and …","Returns the day of month starting from 1.","Returns the day of month starting from 0.","Returns the fixed offset from UTC to the local time stored.","Converts the local NaiveDate to the timezone-aware Date if …","Converts the local NaiveDateTime to the timezone-aware …","Reconstructs the time zone from the offset.","Converts the UTC NaiveDate to the local time. The UTC is …","Converts the UTC NaiveDateTime to the local time. The UTC …","Returns the hour number from 0 to 23.","Returns the hour number from 1 to 12 with a boolean flag, …","Returns the ISO week.","Makes a new Date from ISO week date (year and week …","Makes a new Date from ISO week date (year and week …","Returns the minute number from 0 to 59.","Returns the month number starting from 1.","Returns the month number starting from 0.","Returns the number of nanoseconds since the whole non-leap …","Counts the days in the proleptic Gregorian calendar, with …","Returns the number of non-leap seconds past the last …","Creates the offset(s) for given local NaiveDate if …","Creates the offset(s) for given local NaiveDateTime if …","Creates the offset for given UTC NaiveDate. This cannot …","Creates the offset for given UTC NaiveDateTime. This …","Returns the day of year starting from 1.","Returns the day of year starting from 0.","Return a copy rounded to the specified number of subsecond …","Returns the second number from 0 to 59.","Makes a new DateTime from the number of non-leap seconds …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap …","Makes a new DateTime from the number of non-leap seconds …","Return a copy truncated to the specified number of …","Returns the day of week.","Makes a new value with the day of month (starting from 1) …","Makes a new value with the day of month (starting from 0) …","Makes a new value with the hour number changed.","Makes a new value with the minute number changed.","Makes a new value with the month number (starting from 1) …","Makes a new value with the month number (starting from 0) …","Makes a new value with nanoseconds since the whole …","Makes a new value with the day of year (starting from 1) …","Makes a new value with the day of year (starting from 0) …","Makes a new value with the second number changed.","Makes a new value with the year number changed.","Make a new DateTime from year, month, day, time components …","Returns the year number in the calendar date.","Returns the absolute year number starting from 1 with a …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, month, day and the current …","Makes a new Date from year, day of year (DOY or “ordinal…","Makes a new Date from year, day of year (DOY or “ordinal…","A generic interface for casting between machine scalars …","Numbers which have upper and lower bounds","","","Performs addition that returns None instead of wrapping …","Performs division that returns None instead of panicking …","","Performs multiplication that returns None instead of …","Performs negation that returns None if the result can’t …","Performs an integral remainder that returns None instead …","Performs a left shift that returns None on shifts larger …","Performs a right shift that returns None on shifts larger …","Performs subtraction that returns None instead of wrapping …","Return Euler’s number.","","","Return 1.0 / π.","Return 1.0 / sqrt(2.0).","Return 2.0 / π.","Return 2.0 / sqrt(π).","Return π / 2.0.","Return π / 3.0.","Return π / 4.0.","Return π / 6.0.","Return π / 8.0.","Generic trait for floating point numbers","","","","A generic trait for converting a number to a value.","","Unary operator for retrieving the multiplicative inverse, …","","Return ln(10.0).","Return ln(2.0).","Return log10(2.0).","Return log10(e).","Return log2(10.0).","Return log2(e).","Fused multiply-add. Computes (self * a) + b with only one …","The fused multiply-add assignment operation …","The base trait for numeric types, covering 0 and 1 values, …","The trait for Num types which also implement assignment …","Generic trait for types implementing numeric assignment …","The trait for NumAssign types which also implement …","An interface for casting between machine scalars.","Generic trait for types implementing basic numeric …","The trait for Num types which also implement numeric …","Defines a multiplicative identity element for Self.","The result after applying the operator.","The resulting type after applying the fused multiply-add.","The result after applying the operator.","Return Archimedes’ constant π.","","Binary operator for raising a value to a power.","Generic trait for primitive integers.","The trait for Num references which implement numeric …","Return sqrt(2.0).","Saturating math operations. Deprecated, use SaturatingAdd, …","Performs addition that saturates at the numeric bounds …","Performs multiplication that saturates at the numeric …","Performs subtraction that saturates at the numeric bounds …","Useful functions for signed numbers (i.e. numbers that can …","Return the full circle constant τ.","","A generic trait for converting a value to a number.","A trait for values which cannot be negative","Performs addition that wraps around on overflow.","Performs multiplication that wraps around on overflow.","Performs a negation that does not panic.","Performs a left shift that does not panic.","Performs a right shift that does not panic.","Performs subtraction that wraps around on overflow.","Defines an additive identity element for Self.","Computes the absolute value.","Computes the absolute value of self. Returns Float::nan() …","Computes the absolute value.","The positive difference of two numbers.","The positive difference of two numbers.","The positive difference of two numbers.","Computes the arccosine of a number. Return value is in …","Inverse hyperbolic cosine function.","Convert a value to another, using the as operator.","Computes the arcsine of a number. Return value is in …","Inverse hyperbolic sine function.","Computes the arctangent of a number. Return value is in …","Computes the four quadrant arctangent of self (y) and other…","Inverse hyperbolic tangent function.","","","","","","","Cast from one machine scalar to another.","Take the cubic root of a number.","Returns the smallest integer greater than or equal to a …","Adds two numbers, checking for overflow. If overflow …","Divides two numbers, checking for underflow, overflow and …","Performs euclid division that returns None instead of …","Multiplies two numbers, checking for underflow or …","Negates a number, returning None for results that can’t …","Raises a value to the power of exp, returning None if an …","Finds the remainder of dividing two numbers, checking for …","Finds the euclid remainder of dividing two numbers, …","Checked shift left. Computes self << rhs, returning None …","Checked shift right. Computes self >> rhs, returning None …","Subtracts two numbers, checking for underflow. If …","A value bounded by a minimum and a maximum","A value bounded by a maximum value","A value bounded by a minimum value","Returns the floating point category of the number. If only …","Returns a number composed of the magnitude of self and the …","Computes the cosine of a number (in radians).","Hyperbolic cosine function.","Returns the number of ones in the binary representation of …","Returns the number of zeros in the binary representation …","","","","","Calculates Euclidean division, the matching method for …","","","Returns epsilon, a small positive value.","Returns e^(self), (the exponential function).","Returns 2^(self).","Returns e^(self) - 1 in a way that is accurate even if the …","","Returns the largest integer less than or equal to a number.","","","","Returns the fractional part of a number.","Creates a number from another value that can be converted …","Returns the argument unchanged.","Returns the argument unchanged.","Convert an integer from big endian to the target’s …","Create a number from its representation as a byte array in …","Converts a f32 to return an optional value of this type. …","Converts a f64 to return an optional value of this type. …","Converts an i128 to return an optional value of this type. …","Converts an i16 to return an optional value of this type. …","Converts an i32 to return an optional value of this type. …","Converts an i64 to return an optional value of this type. …","Converts an i8 to return an optional value of this type. …","Converts an isize to return an optional value of this …","Convert an integer from little endian to the target’s …","Create a number from its representation as a byte array in …","Create a number from its memory representation as a byte …","Convert from a string and radix (typically 2..=36).","Converts an u128 to return an optional value of this type. …","Converts an u16 to return an optional value of this type. …","Converts an u32 to return an optional value of this type. …","Converts an u64 to return an optional value of this type. …","Converts an u8 to return an optional value of this type. …","Converts a usize to return an optional value of this type. …","Calculate the length of the hypotenuse of a right-angle …","","Returns the infinite value.","","","","Returns the mantissa, base 2 exponent, and sign as …","Calls U::from(self).","Calls U::from(self).","Returns the multiplicative inverse of self.","Returns true if this number is neither infinite nor NaN.","Returns true if this value is positive infinity or …","Returns true if this value is NaN and false otherwise.","Returns true if the number is negative and false if the …","Returns true if the number is neither zero, infinite, …","Returns true if self is equal to the multiplicative …","Returns true if the number is positive and false if the …","Returns true if self is negative, including -0.0, …","Returns true if self is positive, including +0.0, …","Returns true if the number is subnormal.","Returns true if self is equal to the additive identity.","","Returns the number of leading ones in the binary …","Returns the number of leading zeros in the binary …","Returns the natural logarithm of the number.","Returns ln(1+n) (natural logarithm) more accurately than if","Returns the logarithm of the number with respect to an …","Returns the base 10 logarithm of the number.","Returns the base 2 logarithm of the number.","Returns the maximum of the two numbers.","Returns the largest finite number this type can represent","Returns the largest finite value that this type can …","Returns the minimum of the two numbers.","Returns the smallest positive, normalized value that this …","Returns the smallest finite number this type can represent","Returns the smallest finite value that this type can …","Fused multiply-add. Computes (self * a) + b with only one …","Performs the fused multiply-add operation (self * a) + b","Performs the fused multiply-add assignment operation …","Returns the NaN value.","Returns the negative infinite value.","Returns -0.0.","Returns the multiplicative identity, 1.","Returns the multiplicative identity element of Self, 1.","","","Raises a value to the power of exp, using exponentiation …","Raises self to the power of exp, using exponentiation by …","Returns self to the power rhs.","Raise a number to a floating point power.","Raise a number to an integer power.","","Take the reciprocal (inverse) of a number, 1/x.","Calculates the least nonnegative remainder of self (mod v).","Reverses the order of bits in the integer.","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Returns the nearest integer to a number. Round half-way …","Saturating addition operator. Returns a+b, saturating at …","Saturating addition. Computes self + other, saturating at …","Saturating multiplication. Computes self * other, …","Saturating subtraction operator. Returns a-b, saturating …","Saturating subtraction. Computes self - other, saturating …","Sets self to the multiplicative identity element of Self, 1…","Sets self to the additive identity element of Self, 0.","","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Returns the sign of the number.","Returns a number that represents the sign of self.","Returns the sign of the number.","Computes the sine of a number (in radians).","Simultaneously computes the sine and cosine of the number, …","Hyperbolic sine function.","Take the square root of a number.","Reverses the byte order of the integer.","Computes the tangent of a number (in radians).","Hyperbolic tangent function.","Convert self to big endian from the target’s endianness.","Return the memory representation of this number as a byte …","Converts radians to degrees.","Converts the value of self to an f32. Overflows may map to …","Converts the value of self to an f64. Overflows may map to …","Converts the value of self to an i128. If the value cannot …","Converts the value of self to an i16. If the value cannot …","Converts the value of self to an i32. If the value cannot …","Converts the value of self to an i64. If the value cannot …","Converts the value of self to an i8. If the value cannot be","Converts the value of self to an isize. If the value …","Convert self to little endian from the target’s …","Return the memory representation of this number as a byte …","Return the memory representation of this number as a byte …","Converts degrees to radians.","","Converts the value of self to a u128. If the value cannot …","Converts the value of self to a u16. If the value cannot be","Converts the value of self to a u32. If the value cannot be","Converts the value of self to a u64. If the value cannot be","Converts the value of self to a u8. If the value cannot be …","Converts the value of self to a usize. If the value cannot …","Returns the number of trailing ones in the binary …","Returns the number of trailing zeros in the binary …","Return the integer part of a number.","","","","","","","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","","","Wrapping (modular) addition. Computes self + other, …","Wrapping (modular) multiplication. Computes self * other, …","Wrapping (modular) negation. Computes -self, wrapping …","Panic-free bitwise shift-left; yields self << mask(rhs), …","Panic-free bitwise shift-right; yields self >> mask(rhs), …","Wrapping (modular) subtraction. Computes self - other, …","Returns the additive identity, 0.","Returns the additive identity element of Self, 0.","Numbers which have upper and lower bounds","Numbers which have lower bounds","Numbers which have upper bounds","Returns the largest finite number this type can represent","Returns the largest finite number this type can represent","Returns the smallest finite number this type can represent","Returns the smallest finite number this type can represent","A generic interface for casting between machine scalars …","A generic trait for converting a number to a value.","An interface for casting between machine scalars.","A generic trait for converting a value to a number.","Convert a value to another, using the as operator.","Cast from one machine scalar to another.","Creates a number from another value that can be converted …","Converts a f32 to return an optional value of this type. …","Converts a f64 to return an optional value of this type. …","Converts an i128 to return an optional value of this type. …","Converts an i16 to return an optional value of this type. …","Converts an i32 to return an optional value of this type. …","Converts an i64 to return an optional value of this type. …","Converts an i8 to return an optional value of this type. …","Converts an isize to return an optional value of this …","Converts an u128 to return an optional value of this type. …","Converts an u16 to return an optional value of this type. …","Converts an u32 to return an optional value of this type. …","Converts an u64 to return an optional value of this type. …","Converts an u8 to return an optional value of this type. …","Converts a usize to return an optional value of this type. …","Converts the value of self to an f32. Overflows may map to …","Converts the value of self to an f64. Overflows may map to …","Converts the value of self to an i128. If the value cannot …","Converts the value of self to an i16. If the value cannot …","Converts the value of self to an i32. If the value cannot …","Converts the value of self to an i64. If the value cannot …","Converts the value of self to an i8. If the value cannot be","Converts the value of self to an isize. If the value …","Converts the value of self to a u128. If the value cannot …","Converts the value of self to a u16. If the value cannot be","Converts the value of self to a u32. If the value cannot be","Converts the value of self to a u64. If the value cannot be","Converts the value of self to a u8. If the value cannot be …","Converts the value of self to a usize. If the value cannot …","Return Euler’s number.","Return 1.0 / π.","Return 1.0 / sqrt(2.0).","Return 2.0 / π.","Return 2.0 / sqrt(π).","Return π / 2.0.","Return π / 3.0.","Return π / 4.0.","Return π / 6.0.","Return π / 8.0.","Generic trait for floating point numbers","","Generic trait for floating point numbers that works with …","Return ln(10.0).","Return ln(2.0).","Return log10(2.0).","Return log10(e).","Return log2(10.0).","Return log2(e).","Return Archimedes’ constant π.","Return sqrt(2.0).","Return the full circle constant τ.","Computes the absolute value of self. Returns Float::nan() …","Computes the absolute value of self. Returns …","The positive difference of two numbers.","Computes the arccosine of a number. Return value is in …","Inverse hyperbolic cosine function.","Computes the arcsine of a number. Return value is in …","Inverse hyperbolic sine function.","Computes the arctangent of a number. Return value is in …","Computes the four quadrant arctangent of self (y) and other…","Inverse hyperbolic tangent function.","Take the cubic root of a number.","Returns the smallest integer greater than or equal to a …","Returns the smallest integer greater than or equal to a …","Returns the floating point category of the number. If only …","Returns the floating point category of the number. If only …","Returns a number composed of the magnitude of self and the …","Computes the cosine of a number (in radians).","Hyperbolic cosine function.","Returns epsilon, a small positive value.","Returns epsilon, a small positive value.","Returns e^(self), (the exponential function).","Returns 2^(self).","Returns e^(self) - 1 in a way that is accurate even if the …","Returns the largest integer less than or equal to a number.","Returns the largest integer less than or equal to a number.","Returns the fractional part of a number.","Returns the fractional part of a number.","Calculate the length of the hypotenuse of a right-angle …","Returns positive infinity.","Returns the infinite value.","Returns the mantissa, base 2 exponent, and sign as …","Returns the mantissa, base 2 exponent, and sign as …","Returns true if this number is neither infinite nor NaN.","Returns true if the number is neither infinite or NaN.","Returns true if this value is positive infinity or …","Returns true if the number is infinite.","Returns true if this value is NaN and false otherwise.","Returns true if the number is NaN.","Returns true if the number is neither zero, infinite, …","Returns true if the number is neither zero, infinite, …","Returns true if self is negative, including -0.0, …","Returns true if self is negative, including -0.0 and …","Returns true if self is positive, including +0.0, …","Returns true if self is positive, including +0.0 and …","Returns true if the number is subnormal.","Returns true if the number is subnormal.","Returns the natural logarithm of the number.","Returns ln(1+n) (natural logarithm) more accurately than if","Returns the logarithm of the number with respect to an …","Returns the base 10 logarithm of the number.","Returns the base 2 logarithm of the number.","Returns the maximum of the two numbers.","Returns the maximum of the two numbers.","Returns the largest finite value that this type can …","Returns the largest finite value that this type can …","Returns the minimum of the two numbers.","Returns the minimum of the two numbers.","Returns the smallest positive, normalized value that this …","Returns the smallest positive, normalized value that this …","Returns the smallest finite value that this type can …","Returns the smallest finite value that this type can …","Fused multiply-add. Computes (self * a) + b with only one …","Returns NaN.","Returns the NaN value.","Returns negative infinity.","Returns the negative infinite value.","Returns -0.0.","Returns -0.0.","Raise a number to a floating point power.","Raise a number to an integer power.","Raise a number to an integer power.","Take the reciprocal (inverse) of a number, 1/x.","Returns the reciprocal (multiplicative inverse) of the …","Returns the nearest integer to a number. Round half-way …","Returns the nearest integer to a number. Round half-way …","Returns a number that represents the sign of self.","Returns a number that represents the sign of self.","Computes the sine of a number (in radians).","Simultaneously computes the sine and cosine of the number, …","Hyperbolic sine function.","Take the square root of a number.","Computes the tangent of a number (in radians).","Hyperbolic tangent function.","Converts to degrees, assuming the number is in radians.","Converts radians to degrees.","Converts to radians, assuming the number is in degrees.","Converts degrees to radians.","Return the integer part of a number.","Return the integer part of a number.","Defines a multiplicative identity element for Self.","Defines an additive identity element for Self.","Returns true if self is equal to the multiplicative …","Returns true if self is equal to the additive identity.","Returns the multiplicative identity, 1.","Returns the multiplicative identity element of Self, 1.","Sets self to the multiplicative identity element of Self, 1…","Sets self to the additive identity element of Self, 0.","Returns the additive identity, 0.","Returns the additive identity element of Self, 0.","Generic trait for primitive integers.","Returns the number of ones in the binary representation of …","Returns the number of zeros in the binary representation …","Convert an integer from big endian to the target’s …","Convert an integer from little endian to the target’s …","Returns the number of leading ones in the binary …","Returns the number of leading zeros in the binary …","Raises self to the power of exp, using exponentiation by …","Reverses the order of bits in the integer.","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","Reverses the byte order of the integer.","Convert self to big endian from the target’s endianness.","Convert self to little endian from the target’s …","Returns the number of trailing ones in the binary …","Returns the number of trailing zeros in the binary …","Shifts the bits to the left by a specified amount, n, …","Shifts the bits to the right by a specified amount, n, …","","","","","","","","","","","","","","Create a number from its representation as a byte array in …","Create a number from its representation as a byte array in …","Create a number from its memory representation as a byte …","Return the memory representation of this number as a byte …","Return the memory representation of this number as a byte …","Return the memory representation of this number as a byte …","Performs addition that returns None instead of wrapping …","Performs division that returns None instead of panicking …","Performs multiplication that returns None instead of …","Performs negation that returns None if the result can’t …","Performs an integral remainder that returns None instead …","Performs a left shift that returns None on shifts larger …","Performs a right shift that returns None on shifts larger …","Performs subtraction that returns None instead of wrapping …","Adds two numbers, checking for overflow. If overflow …","Divides two numbers, checking for underflow, overflow and …","Multiplies two numbers, checking for underflow or …","Negates a number, returning None for results that can’t …","Finds the remainder of dividing two numbers, checking for …","Checked shift left. Computes self << rhs, returning None …","Checked shift right. Computes self >> rhs, returning None …","Subtracts two numbers, checking for underflow. If …","","","Performs euclid division that returns None instead of …","Finds the euclid remainder of dividing two numbers, …","Calculates Euclidean division, the matching method for …","Calculates the least nonnegative remainder of self (mod v).","Unary operator for retrieving the multiplicative inverse, …","The result after applying the operator.","Returns the multiplicative inverse of self.","Fused multiply-add. Computes (self * a) + b with only one …","The fused multiply-add assignment operation …","The resulting type after applying the fused multiply-add.","Performs the fused multiply-add operation (self * a) + b","Performs the fused multiply-add assignment operation …","Performs addition with a flag for overflow.","Performs multiplication with a flag for overflow.","Performs substraction with a flag for overflow.","Returns a tuple of the sum along with a boolean indicating …","Returns a tuple of the product along with a boolean …","Returns a tuple of the difference along with a boolean …","Saturating math operations. Deprecated, use SaturatingAdd, …","Performs addition that saturates at the numeric bounds …","Performs multiplication that saturates at the numeric …","Performs subtraction that saturates at the numeric bounds …","Saturating addition operator. Returns a+b, saturating at …","Saturating addition. Computes self + other, saturating at …","Saturating multiplication. Computes self * other, …","Saturating subtraction operator. Returns a-b, saturating …","Saturating subtraction. Computes self - other, saturating …","Performs addition that wraps around on overflow.","Performs multiplication that wraps around on overflow.","Performs a negation that does not panic.","Performs a left shift that does not panic.","Performs a right shift that does not panic.","Performs subtraction that wraps around on overflow.","Wrapping (modular) addition. Computes self + other, …","Wrapping (modular) multiplication. Computes self * other, …","Wrapping (modular) negation. Computes -self, wrapping …","Panic-free bitwise shift-left; yields self << mask(rhs), …","Panic-free bitwise shift-right; yields self >> mask(rhs), …","Wrapping (modular) subtraction. Computes self - other, …","The result after applying the operator.","Binary operator for raising a value to a power.","Raises a value to the power of exp, returning None if an …","Raises a value to the power of exp, using exponentiation …","Returns self to the power rhs.","A trait for real number types that do not necessarily have …","Computes the absolute value of self. Returns Float::nan() …","The positive difference of two numbers.","Computes the arccosine of a number. Return value is in …","Inverse hyperbolic cosine function.","Computes the arcsine of a number. Return value is in …","Inverse hyperbolic sine function.","Computes the arctangent of a number. Return value is in …","Computes the four quadrant arctangent of self (y) and other…","Inverse hyperbolic tangent function.","Take the cubic root of a number.","Returns the smallest integer greater than or equal to a …","Computes the cosine of a number (in radians).","Hyperbolic cosine function.","Returns epsilon, a small positive value.","Returns e^(self), (the exponential function).","Returns 2^(self).","Returns e^(self) - 1 in a way that is accurate even if the …","Returns the largest integer less than or equal to a number.","Returns the fractional part of a number.","Calculate the length of the hypotenuse of a right-angle …","Returns true if self is negative, including -0.0, …","Returns true if self is positive, including +0.0, …","Returns the natural logarithm of the number.","Returns ln(1+n) (natural logarithm) more accurately than if","Returns the logarithm of the number with respect to an …","Returns the base 10 logarithm of the number.","Returns the base 2 logarithm of the number.","Returns the maximum of the two numbers.","Returns the largest finite value that this type can …","Returns the minimum of the two numbers.","Returns the smallest positive, normalized value that this …","Returns the smallest finite value that this type can …","Fused multiply-add. Computes (self * a) + b with only one …","Raise a number to a real number power.","Raise a number to an integer power.","Take the reciprocal (inverse) of a number, 1/x.","Returns the nearest integer to a number. Round half-way …","Returns a number that represents the sign of self.","Computes the sine of a number (in radians).","Simultaneously computes the sine and cosine of the number, …","Hyperbolic sine function.","Take the square root of a number.","Computes the tangent of a number (in radians).","Hyperbolic tangent function.","Converts radians to degrees.","Converts degrees to radians.","Return the integer part of a number.","Useful functions for signed numbers (i.e. numbers that can …","A trait for values which cannot be negative","Computes the absolute value.","Computes the absolute value.","The positive difference of two numbers.","The positive difference of two numbers.","Returns true if the number is negative and false if the …","Returns true if the number is positive and false if the …","Returns the sign of the number.","Returns the sign of the number.","Thread-safe, non-blocking, “first one wins” flavor of …","Thread-safe, blocking version of OnceCell.","Single-threaded version of OnceCell.","A thread-safe cell which can be written to only once.","A thread-safe cell which can be written to only once.","A thread-safe cell which can be written to only once.","A thread-safe cell which can be written to only once.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Gets a reference to the underlying value.","Gets a reference to the underlying value.","Gets the underlying value.","Gets the underlying value.","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a new empty cell.","Creates a new empty cell.","Creates a new empty cell.","Creates a new empty cell.","Sets the contents of this cell to value.","Sets the contents of this cell to value.","Sets the contents of this cell to value.","Sets the contents of this cell to value.","","","","","","","","","","","","","","","","","A value which is initialized on the first access.","A thread-safe cell which can be written to only once.","","","","","","","","","","Creates a new lazy value using Default as the initializing …","","","","","","","","","","","","","","","","Forces the evaluation of this lazy value and returns a …","Forces the evaluation of this lazy value and returns a …","","","Returns the argument unchanged.","Returns the argument unchanged.","Gets the reference to the underlying value.","Gets the reference to the result of this lazy value if it …","Gets the mutable reference to the underlying value.","Gets the reference to the result of this lazy value if it …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","Get the reference to the underlying value, without …","","","Calls U::from(self).","Calls U::from(self).","Consumes the OnceCell, returning the wrapped value. Returns","Consumes this Lazy returning the stored value.","Creates a new empty cell.","Creates a new lazy value with the given initializing …","Sets the contents of this cell to value.","Takes the value out of this OnceCell, moving it back to an …","","","","Like set, but also returns a reference to the final cell …","","","","","","","Gets the reference to the underlying value, blocking the …","Creates a new initialized cell.","A value which is initialized on the first access.","A cell which can be written to only once. It is not thread …","","","","","","","","","","Creates a new lazy value using Default as the initializing …","","","","","","","","","","","","","","","","Forces the evaluation of this lazy value and returns a …","Forces the evaluation of this lazy value and returns a …","Returns the argument unchanged.","","","Returns the argument unchanged.","Gets a reference to the underlying value.","Gets the reference to the result of this lazy value if it …","Gets a mutable reference to the underlying value.","Gets the mutable reference to the result of this lazy …","Gets the contents of the cell, initializing it with f if …","Gets the contents of the cell, initializing it with f if …","","","Calls U::from(self).","Calls U::from(self).","Consumes the OnceCell, returning the wrapped value.","Consumes this Lazy returning the stored value.","Creates a new empty cell.","Creates a new lazy value with the given initializing …","Sets the contents of this cell to value.","Takes the value out of this OnceCell, moving it back to an …","","","","Like set, but also returns a reference to the final cell …","","","","","","","Creates a new initialized cell.","Provides context to a closure called by broadcast.","Work was found and executed.","Provides the calling context to a closure called by …","No available work was found.","Represents a fork-join scope which can be used to spawn …","Represents a fork-join scope which can be used to spawn …","Thread builder used for customization via …","Represents a user created thread-pool.","Error when initializing a thread pool.","Used to create a new ThreadPool or to configure the global …","Result of yield_now() or yield_local().","","Parallel iterator types for arrays ([T; N])","","","","","","","","","","","","","","","","","","","(DEPRECATED) Suggest to worker threads that they execute …","Executes op within every thread in the current threadpool. …","Executes op within every thread in the threadpool. Any …","Creates a new ThreadPool initialized using this …","Initializes the global thread pool. This initialization is …","Creates a scoped ThreadPool initialized using this …","","","Parallel iterator types for standard collections","Returns the number of threads in the current registry. If …","Returns the (current) number of threads in the thread pool.","Returns true if the current worker thread currently has “…","If called from a Rayon worker thread, returns the index of …","If called from a Rayon worker thread in this thread-pool, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets a callback to be invoked on thread exit.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates a “fork-join” scope s and invokes the closure …","Creates a scope that spawns work into this thread-pool.","Creates a “fork-join” scope s with FIFO order, and …","Creates a scope that spawns work into this thread-pool in …","Our index amongst the broadcast threads (ranges from …","Gets the index of this thread in the pool, within …","","","","","","","","","","Executes op within the threadpool. Any attempts to use join…","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Traits for writing parallel programs using an …","Takes two closures and potentially runs them in parallel. …","Execute oper_a and oper_b in the thread-pool and return …","Identical to join, except that the closures have a …","Returns the maximum number of threads that Rayon supports …","Returns true if the closure was called from a different …","Gets the string that was specified by …","Deprecated in favor of ThreadPoolBuilder::build.","Creates and returns a valid rayon thread pool builder, but …","The number of threads receiving the broadcast in the …","Sets the number of threads to be used in the rayon …","Parallel iterator types for options","Normally, whenever Rayon catches a panic, it tries to …","The rayon prelude imports the various ParallelIterator …","","Parallel iterator types for ranges, the type for values …","Parallel iterator types for inclusive ranges, the type for …","Parallel iterator types for results","Executes the main loop for this thread. This will not …","Creates a “fork-join” scope s and invokes the closure …","Creates a scope that executes within this thread-pool. …","Creates a “fork-join” scope s with FIFO order, and …","Creates a scope that executes within this thread-pool. …","Parallel iterator types for slices","","Fires off a task into the Rayon threadpool in the “static…","Spawns a job into the fork-join scope self. This job will …","Spawns an asynchronous task in this thread-pool. This task …","Spawns an asynchronous task on every thread in this …","Spawns a job into every thread of the fork-join scope self…","Spawns a job into every thread of the fork-join scope self…","Spawns an asynchronous task on every thread in this …","Fires off a task into the Rayon threadpool in the “static…","Spawns a job into the fork-join scope self. This job will …","Spawns an asynchronous task in this thread-pool. This task …","Sets a custom function for spawning threads.","Gets the value that was specified by …","Sets the stack size of the worker threads","Sets a callback to be invoked on thread start.","Parallel iterator types for strings","This module contains the parallel iterator types for owned …","Sets a closure which takes a thread index and returns the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel iterator types for vectors (Vec<T>)","","","","","","","","","","Cooperatively yields execution to local Rayon work.","Cooperatively yields execution to local Rayon work.","Cooperatively yields execution to Rayon.","Cooperatively yields execution to Rayon.","Parallel iterator that moves out of an array.","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","This module contains the parallel iterator types for heaps …","This module contains the parallel iterator types for …","This module contains the parallel iterator types for …","This module contains the parallel iterator types for hash …","This module contains the parallel iterator types for hash …","This module contains the parallel iterator types for …","This module contains the parallel iterator types for …","Draining parallel iterator that moves out of a binary heap,","Parallel iterator over a binary heap","Parallel iterator over an immutable reference to a binary …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel iterator over a B-Tree map","Parallel iterator over an immutable reference to a B-Tree …","Parallel iterator over a mutable reference to a B-Tree map","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Parallel iterator over a B-Tree set","Parallel iterator over an immutable reference to a B-Tree …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Draining parallel iterator that moves out of a hash map, …","Parallel iterator over a hash map","Parallel iterator over an immutable reference to a hash map","Parallel iterator over a mutable reference to a hash map","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","Draining parallel iterator that moves out of a hash set, …","Parallel iterator over a hash set","Parallel iterator over an immutable reference to a hash set","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","Parallel iterator over a linked list","Parallel iterator over an immutable reference to a linked …","Parallel iterator over a mutable reference to a linked list","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","Draining parallel iterator that moves a range out of a …","Parallel iterator over a double-ended queue","Parallel iterator over an immutable reference to a …","Parallel iterator over a mutable reference to a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Chain is an iterator that joins b after a in one …","Chunks is an iterator that groups elements of an …","Cloned is an iterator that clones the elements of an …","Copied is an iterator that copies the elements of an …","The enum Either with variants Left and Right is a general …","Iterator adaptor for the empty() function.","Enumerate is an iterator that returns the current count …","Filter takes a predicate filter_op and filters out …","FilterMap creates an iterator that uses filter_op to both …","FlatMap maps each element to a parallel iterator, then …","FlatMapIter maps each element to a serial iterator, then …","Flatten turns each element to a parallel iterator, then …","FlattenIter turns each element to a serial iterator, then …","Fold is an iterator that applies a function over an …","FoldChunks is an iterator that groups elements of an …","FoldChunksWith is an iterator that groups elements of an …","FoldWith is an iterator that applies a function over an …","FromParallelIterator implements the creation of a …","An iterator that supports “random access” to its data, …","Inspect is an iterator that calls a function with a …","Interleave is an iterator that interleaves elements of …","InterleaveShortest is an iterator that works similarly to …","Intersperse is an iterator that inserts a particular item …","IntoParallelIterator implements the conversion to a …","IntoParallelRefIterator implements the conversion to a …","IntoParallelRefMutIterator implements the conversion to a …","The type of item that the parallel iterator will produce.","The type of item that the parallel iterator will produce. …","The type of item that will be produced; this is typically …","The type of item that this parallel iterator produces. For …","The type of item that the parallel iterator will produce. …","The type of item that the parallel iterator will produce. …","The parallel iterator type that will be created.","The type of the parallel iterator that will be returned.","The type of iterator that will be created.","The draining parallel iterator type that will be created.","The draining parallel iterator type that will be created.","IterBridge is a parallel iterator that wraps a sequential …","A value of type L.","Map is an iterator that transforms the elements of an …","MapInit is an iterator that transforms the elements of an …","MapWith is an iterator that transforms the elements of an …","MaxLen is an iterator that imposes a maximum length on …","MinLen is an iterator that imposes a minimum length on …","MultiZip is an iterator that zips up a tuple of parallel …","Iterator adaptor for the once() function.","PanicFuse is an adaptor that wraps an iterator with a fuse …","Conversion trait to convert an Iterator to a …","ParallelDrainFull creates a parallel iterator that moves …","ParallelDrainRange creates a parallel iterator that moves …","ParallelExtend extends an existing collection with items …","Parallel version of the standard iterator trait.","Positions takes a predicate predicate and filters out …","Iterator adaptor for the repeat() function.","Iterator adaptor for the repeatn() function.","Rev is an iterator that produces elements in reverse …","A value of type R.","Skip is an iterator that skips over the first n elements. …","SkipAny is an iterator that skips over n elements from …","SkipAnyWhile is an iterator that skips over elements from …","Split is a parallel iterator using arbitrary data and a …","StepBy is an iterator that skips n elements between each …","Take is an iterator that iterates over the first n …","TakeAny is an iterator that iterates over n elements from …","TakeAnyWhile is an iterator that iterates over elements …","TryFold is an iterator that applies a function over an …","TryFoldWith is an iterator that applies a function over an …","Update is an iterator that mutates the elements of an …","WhileSome is an iterator that yields the Some elements of …","Zip is an iterator that zips up a and b into a single …","An IndexedParallelIterator that iterates over two parallel …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Tests that every item in the parallel iterator matches the …","","Searches for some item in the parallel iterator that …","","","","","","","Convert &mut Either<L, R> to Either<&mut L, &mut R>.","Convert Pin<&mut Either<L, R>> to …","Convert Pin<&Either<L, R>> to Either<Pin<&L>, Pin<&R>>, …","","","","","","","Convert &Either<L, R> to Either<&L, &R>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Takes two iterators and creates a new iterator over both.","Splits an iterator up into fixed-size chunks.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates an iterator which clones all of its elements. …","","Lexicographically compares the elements of this …","","Creates a fresh collection containing all the elements …","Collects the results of the iterator into the specified …","","","Creates an iterator which copies all of its elements. …","","Counts the number of items in this parallel iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Internal method used to define the behavior of this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Internal method used to define the behavior of this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Apply one of two functions depending on contents, unifying …","Convert the contained value into T","Like either, but provide some context to whichever of the …","Creates a parallel iterator that produces nothing.","","","Yields an index along with each item.","","Determines if the elements of this ParallelIterator are …","","","","","Executes the given command directly.","Returns the left value","Returns the right value","","Factors out a homogenous type from an Either of Result.","Factor out a homogeneous type from an either of pairs.","Factors out None from an Either of Option.","Factors out a homogenous type from an Either of Result.","Factor out a homogeneous type from an either of pairs.","","Applies filter_op to each item of this iterator, producing …","Applies filter_op to each item of this iterator to get an …","","Searches for some item in the parallel iterator that …","Searches for the sequentially first item in the parallel …","Searches for the sequentially last item in the parallel …","","Applies the given predicate to the items in the parallel …","Applies the given predicate to the items in the parallel …","Applies the given predicate to the items in the parallel …","Applies map_op to each item of this iterator to get nested …","Applies map_op to each item of this iterator to get nested …","An adaptor that flattens parallel-iterable Items into one …","An adaptor that flattens serial-iterable Items into one …","Convert Either<L, R> to Either<R, L>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel fold is similar to sequential fold except that the","Splits an iterator into fixed-size chunks, performing a …","Splits an iterator into fixed-size chunks, performing a …","Applies fold_op to the given init value with each item of …","","Executes OP on each item produced by the iterator, in …","Executes OP on a value returned by init with each item …","Executes OP on the given init value with each item …","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates an instance of the collection from the parallel …","Determines if the elements of this ParallelIterator are …","Determines if the elements of this ParallelIterator are …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Applies inspect_op to a reference to each item of this …","Interleaves elements of this iterator and the other given …","Interleaves elements of this iterator and the other given …","Intersperses clones of an element between items of this …","Calls U::from(self).","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Extract the value of an either over two equivalent types.","Convert the inner value to an iterator.","","Converts self into a parallel iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return true if the value is the Left variant.","Return true if the value is the Right variant.","","Determines if the elements of this ParallelIterator are …","Convert the left side of Either<L, R> to an Option<L>.","Apply the function f on the value in the Left variant if …","Return left value or given value","Return left or a default","Returns left value or computes it from a closure","Produces an exact count of how many items this iterator …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Determines if the elements of this ParallelIterator are …","Map f over the contained value and return the result in the","Applies map_op to each item of this iterator, producing a …","Apply the functions f and g to the Left and Right variants …","Similar to [map_either], with an added context ctx …","Applies map_op to a value returned by init with each item …","Apply the function f on the value in the Left variant if …","Apply the function f on the value in the Right variant if …","Applies map_op to the given init value with each item of …","Computes the maximum of all the items in the iterator. If …","Computes the maximum of all the items in the iterator with …","Computes the item that yields the maximum value for the …","Computes the minimum of all the items in the iterator. If …","Computes the minimum of all the items in the iterator with …","Computes the item that yields the minimum value for the …","Determines if the elements of this ParallelIterator are …","","","","Creates a parallel iterator that produces an element …","","","Internal method used to define the behavior of this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Wraps an iterator with a fuse in case of panics, to halt …","Creates a bridge from this type to a ParallelIterator.","Returns a draining parallel iterator over an entire …","Returns a draining parallel iterator over a range of the …","Extends an instance of the collection with the elements …","","Converts self into a parallel iterator.","Creates the parallel iterator from self.","","Lexicographically compares the elements of this …","","Partitions the items of a parallel iterator into a pair of …","Partitions and maps the items of a parallel iterator into …","Traits and functions used to implement parallel iteration. …","","","Searches for some item in the parallel iterator that …","Searches for the sequentially first item in the parallel …","Searches for the sequentially last item in the parallel …","Searches for items in the parallel iterator that match the …","Multiplies all the items in the iterator.","","Queues the given command for further execution.","","","","","","","","Reduces the items in the iterator into one item using op. …","Reduces the items in the iterator into one item using op. …","Creates a parallel iterator that endlessly repeats elt (by …","Creates a parallel iterator that produces n repeats of elt …","Produces a new iterator with the elements of this iterator …","","","Convert the right side of Either<L, R> to an Option<R>.","Apply the function f on the value in the Right variant if …","Return right value or given value","Return right or a default","Returns right value or computes it from a closure","","","Creates an iterator that skips the first n elements.","Creates an iterator that skips n elements from anywhere in …","Creates an iterator that skips elements from anywhere in …","","The split function takes arbitrary data and a closure that …","Creates an iterator that steps by the given amount","Sums up the items in the iterator.","Performs a set of actions within a synchronous update.","Creates an iterator that yields the first n elements.","Takes only n repeats of the element, similar to the general","Creates an iterator that yields n elements from anywhere …","Creates an iterator that takes elements from anywhere in …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Performs a fallible parallel fold.","Performs a fallible parallel fold with a cloneable init …","Executes a fallible OP on each item produced by the …","Executes a fallible OP on a value returned by init with …","Executes a fallible OP on the given init value with each …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Reduces the items in the iterator into one item using a …","Reduces the items in the iterator into one item using a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the left value","Returns the right value","Unzips the items of a parallel iterator into a pair of …","Unzips the results of the iterator into the specified …","Mutates each item of this iterator before yielding it.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates an iterator over the Some items of this iterator, …","Sets the maximum length of iterators desired to process in …","Sets the minimum length of iterators desired to process in …","Internal method used to define the behavior of this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Iterates over tuples (A, B), where the items A are from …","Iterates tuples, repeating the element with items from …","The same as Zip, but requires that both iterators have the …","A consumer is effectively a generalized “fold” …","The Folder trait encapsulates the standard fold operation. …","The type of folder that this consumer can be converted …","The type of iterator we will become.","The type of item that will be produced by this producer …","The type of item returned by this producer.","The type of value returned by this callback. Analogous to …","A Producer is effectively a “splittable IntoIterator”. …","The ProducerCallback trait is a kind of generic closure, …","The reducer is the final step of a Consumer – after a …","The type of reducer that is produced if this consumer is …","The type of result that this consumer will ultimately …","The type of result that will ultimately be produced by the …","A stateless consumer can be freely copied. These consumers …","A variant on Producer which does not know its exact length …","This helper function is used to “connect” a parallel …","This helper function is used to “connect” a producer …","A variant of bridge_producer_consumer where the producer …","Invokes the callback with the given producer as argument. …","Finish consuming items, produce final result.","Consume next item and return new sequential state.","Consume items from the iterator until full, and return new …","Iterate the producer, feeding each element to folder, and …","Iterate the producer, feeding each element to folder, and …","Hint whether this Consumer would like to stop processing …","Hint whether this Folder would like to stop processing …","Convert the consumer into a folder that can consume items …","Convert self into an iterator; at this point, no more …","The maximum number of items that we will process …","The minimum number of items that we will process …","Reduce two final results into one; this is executed after a","Split midway into a new producer if possible, otherwise …","Split into two producers; one produces items 0..index, the …","Divide the consumer into two consumers, one processing …","Splits off a “left” consumer and returns it. The self …","Creates a reducer that can be used to combine the results …","A parallel iterator over the value in Some variant of an …","A parallel iterator over a reference to the Some variant …","A parallel iterator over a mutable reference to the Some …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","FromParallelIterator implements the creation of a …","An iterator that supports “random access” to its data, …","IntoParallelIterator implements the conversion to a …","IntoParallelRefIterator implements the conversion to a …","IntoParallelRefMutIterator implements the conversion to a …","The type of item that the parallel iterator will produce.","The type of item that the parallel iterator will produce. …","The type of item that will be produced; this is typically …","The type of item that this parallel iterator produces. For …","The type of item that the parallel iterator will produce. …","The type of item that the parallel iterator will produce. …","The parallel iterator type that will be created.","The type of the parallel iterator that will be returned.","The type of iterator that will be created.","The draining parallel iterator type that will be created.","The draining parallel iterator type that will be created.","Conversion trait to convert an Iterator to a …","ParallelDrainFull creates a parallel iterator that moves …","ParallelDrainRange creates a parallel iterator that moves …","ParallelExtend extends an existing collection with items …","Parallel version of the standard iterator trait.","Parallel extensions for slices.","Parallel extensions for mutable slices.","Parallel extensions for strings.","Tests that every item in the parallel iterator matches the …","Searches for some item in the parallel iterator that …","Returns a plain slice, which is used to implement the rest …","Returns a plain mutable slice, which is used to implement …","Returns a plain string slice, which is used to implement …","Takes two iterators and creates a new iterator over both.","Splits an iterator up into fixed-size chunks.","Creates an iterator which clones all of its elements. …","Lexicographically compares the elements of this …","Creates a fresh collection containing all the elements …","Collects the results of the iterator into the specified …","Creates an iterator which copies all of its elements. …","Counts the number of items in this parallel iterator.","Internal method used to define the behavior of this …","Internal method used to define the behavior of this …","Yields an index along with each item.","Determines if the elements of this ParallelIterator are …","Applies filter_op to each item of this iterator, producing …","Applies filter_op to each item of this iterator to get an …","Searches for some item in the parallel iterator that …","Searches for the sequentially first item in the parallel …","Searches for the sequentially last item in the parallel …","Applies the given predicate to the items in the parallel …","Applies the given predicate to the items in the parallel …","Applies the given predicate to the items in the parallel …","Applies map_op to each item of this iterator to get nested …","Applies map_op to each item of this iterator to get nested …","An adaptor that flattens parallel-iterable Items into one …","An adaptor that flattens serial-iterable Items into one …","Parallel fold is similar to sequential fold except that the","Splits an iterator into fixed-size chunks, performing a …","Splits an iterator into fixed-size chunks, performing a …","Applies fold_op to the given init value with each item of …","Executes OP on each item produced by the iterator, in …","Executes OP on a value returned by init with each item …","Executes OP on the given init value with each item …","Creates an instance of the collection from the parallel …","Determines if the elements of this ParallelIterator are …","Determines if the elements of this ParallelIterator are …","Applies inspect_op to a reference to each item of this …","Interleaves elements of this iterator and the other given …","Interleaves elements of this iterator and the other given …","Intersperses clones of an element between items of this …","Converts self into a parallel iterator.","Determines if the elements of this ParallelIterator are …","Produces an exact count of how many items this iterator …","Determines if the elements of this ParallelIterator are …","Applies map_op to each item of this iterator, producing a …","Applies map_op to a value returned by init with each item …","Applies map_op to the given init value with each item of …","Computes the maximum of all the items in the iterator. If …","Computes the maximum of all the items in the iterator with …","Computes the item that yields the maximum value for the …","Computes the minimum of all the items in the iterator. If …","Computes the minimum of all the items in the iterator with …","Computes the item that yields the minimum value for the …","Determines if the elements of this ParallelIterator are …","Internal method used to define the behavior of this …","Wraps an iterator with a fuse in case of panics, to halt …","Creates a bridge from this type to a ParallelIterator.","Returns a parallel iterator over the bytes of a string.","Returns a parallel iterator over the characters of a …","Returns a parallel iterator over the characters of a …","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over at most chunk_size …","Returns a draining parallel iterator over an entire …","Returns a draining parallel iterator over a range of the …","Returns a parallel iterator over a string encoded as …","Extends an instance of the collection with the elements …","Converts self into a parallel iterator.","Creates the parallel iterator from self.","Returns a parallel iterator over the lines of a string, …","Returns a parallel iterator over substrings that match a …","Returns a parallel iterator over substrings that match a …","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over at most chunk_size …","Sorts the slice in parallel.","Sorts the slice in parallel with a comparator function.","Sorts the slice in parallel with a key extraction function.","Sorts the slice in parallel with a key extraction function.","Sorts the slice in parallel, but might not preserve the …","Sorts the slice in parallel with a comparator function, …","Sorts the slice in parallel with a key extraction …","Returns a parallel iterator over subslices separated by …","Returns a parallel iterator over substrings separated by a …","Returns a parallel iterator over mutable subslices …","Returns a parallel iterator over substrings terminated by a","Returns a parallel iterator over the sub-slices of a …","Returns a parallel iterator over all contiguous windows of …","Lexicographically compares the elements of this …","Partitions the items of a parallel iterator into a pair of …","Partitions and maps the items of a parallel iterator into …","Searches for some item in the parallel iterator that …","Searches for the sequentially first item in the parallel …","Searches for the sequentially last item in the parallel …","Searches for items in the parallel iterator that match the …","Multiplies all the items in the iterator.","Reduces the items in the iterator into one item using op. …","Reduces the items in the iterator into one item using op. …","Produces a new iterator with the elements of this iterator …","Creates an iterator that skips the first n elements.","Creates an iterator that skips n elements from anywhere in …","Creates an iterator that skips elements from anywhere in …","Creates an iterator that steps by the given amount","Sums up the items in the iterator.","Creates an iterator that yields the first n elements.","Creates an iterator that yields n elements from anywhere …","Creates an iterator that takes elements from anywhere in …","Performs a fallible parallel fold.","Performs a fallible parallel fold with a cloneable init …","Executes a fallible OP on each item produced by the …","Executes a fallible OP on a value returned by init with …","Executes a fallible OP on the given init value with each …","Reduces the items in the iterator into one item using a …","Reduces the items in the iterator into one item using a …","Unzips the items of a parallel iterator into a pair of …","Unzips the results of the iterator into the specified …","Mutates each item of this iterator before yielding it.","Creates an iterator over the Some items of this iterator, …","Sets the maximum length of iterators desired to process in …","Sets the minimum length of iterators desired to process in …","Internal method used to define the behavior of this …","Iterates over tuples (A, B), where the items A are from …","The same as Zip, but requires that both iterators have the …","Parallel iterator over a range, implemented for all …","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","Parallel iterator over an inclusive range, implemented for …","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","Parallel iterator over a result","Parallel iterator over an immutable reference to a result","Parallel iterator over a mutable reference to a result","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel iterator over immutable non-overlapping chunks of …","Parallel iterator over immutable non-overlapping chunks of …","Parallel iterator over mutable non-overlapping chunks of a …","Parallel iterator over mutable non-overlapping chunks of a …","Parallel iterator over immutable items in a slice","Parallel iterator over mutable items in a slice","Parallel extensions for slices.","Parallel extensions for mutable slices.","Parallel iterator over immutable non-overlapping chunks of …","Parallel iterator over immutable non-overlapping chunks of …","Parallel iterator over mutable non-overlapping chunks of a …","Parallel iterator over mutable non-overlapping chunks of a …","Parallel iterator over slices separated by a predicate","Parallel iterator over mutable slices separated by a …","Parallel iterator over immutable overlapping windows of a …","","","","","","","","Returns a plain slice, which is used to implement the rest …","Returns a plain mutable slice, which is used to implement …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","","","","","","","","","","","","","","","","","","","","","","","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over at most chunk_size …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over chunk_size elements of …","Returns a parallel iterator over at most chunk_size …","Sorts the slice in parallel.","Sorts the slice in parallel with a comparator function.","Sorts the slice in parallel with a key extraction function.","Sorts the slice in parallel with a key extraction function.","Sorts the slice in parallel, but might not preserve the …","Sorts the slice in parallel with a comparator function, …","Sorts the slice in parallel with a key extraction …","Returns a parallel iterator over subslices separated by …","Returns a parallel iterator over mutable subslices …","Returns a parallel iterator over all contiguous windows of …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","Return the remainder of the original slice that is not …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Parallel iterator over the bytes of a string","Parallel iterator over the characters of a string, with …","Parallel iterator over the characters of a string","Parallel iterator over a string encoded as UTF-16","Parallel iterator over lines in a string","Parallel iterator over substrings that match a pattern, …","Parallel iterator over substrings that match a pattern","Parallel extensions for strings.","Parallel iterator over substrings separated by a pattern","Parallel iterator over substrings separated by a …","Parallel iterator over substrings separated by whitespace","","","","","","","","","","","Returns a plain string slice, which is used to implement …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Returns a parallel iterator over the bytes of a string.","Returns a parallel iterator over the characters of a …","Returns a parallel iterator over the characters of a …","Returns a parallel iterator over a string encoded as …","Returns a parallel iterator over the lines of a string, …","Returns a parallel iterator over substrings that match a …","Returns a parallel iterator over substrings that match a …","Returns a parallel iterator over substrings separated by a …","Returns a parallel iterator over substrings terminated by a","Returns a parallel iterator over the sub-slices of a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Draining parallel iterator that moves a range of …","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","Draining parallel iterator that moves a range out of a …","Parallel iterator that moves out of a vector.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","A low level representation of the byte offsets of each …","An iterator over all non-overlapping capture matches in a …","An iterator over the names of all capture groups in a …","Represents the capture groups for a single match.","The compiled program exceeded the set size limit. The …","An error that occurred during parsing or compiling a …","Represents a single match of a regex in a haystack.","An iterator over all non-overlapping matches in a haystack.","A helper type for forcing literal string replacement.","A compiled regular expression for searching Unicode …","A configurable builder for a Regex.","Match multiple, possibly overlapping, regexes in a single …","A configurable builder for a RegexSet.","A trait for types that can be used to replace matches in a …","A by-reference adaptor for a Replacer.","A set of matches returned by a regex set.","An owned iterator over the set of matches from a regex set.","A borrowed iterator over the set of matches from a regex …","An iterator over all substrings delimited by a regex match.","An iterator over at most N substrings delimited by a regex …","An iterator over all group matches in a Captures value.","A syntax error.","","","","","","","","","","","","","Returns the original string of this regex.","Returns the substring of the haystack that matched.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compiles the pattern given to RegexBuilder::new with the …","Compiles the patterns given to RegexSetBuilder::new with …","Returns a type that implements Replacer, but that borrows …","Search for regex matches in &[u8] haystacks.","Returns a fresh allocated set of capture locations that can","Returns an iterator over the capture names in this regex.","This routine searches for the first match of this regex in …","Returns the same as Regex::captures, but starts the search …","Returns an iterator that yields successive non-overlapping …","Returns the number of captures groups in this regex.","This is like Regex::captures, but writes the byte offsets …","Returns the same as Regex::captures_read, but starts the …","This configures whether to enable case insensitive …","This configures whether to enable case insensitive …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures CRLF mode for the entire pattern.","This configures CRLF mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Set the approximate capacity, in bytes, of the cache of …","Set the approximate capacity, in bytes, of the cache of …","This configures dot-matches-new-line mode for the entire …","This configures dot-matches-new-line mode for the entire …","","","","","","","","","","","","","","","","","","","","Create a new empty regex set.","Returns the byte offset of the end of the match in the …","","","","","","","Escapes all regular expression meta characters in pattern.","Expands all instances of $ref in replacement to the …","This is a convenience routine for extracting the substrings","This routine searches for the first match of this regex in …","Returns the same as Regex::find, but starts the search at …","Returns an iterator that yields successive non-overlapping …","","","","","","Shows the original regular expression.","Shows the original regular expression.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Attempts to parse a string into a regular expression","Returns the Match associated with the capture group at …","Returns the start and end byte offsets of the capture …","This configures verbose mode for the entire pattern.","This configures verbose mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Returns true if and only if this match has a length of …","Returns true if this set contains no regexes.","Returns true if and only if there is a match for the regex …","Returns true if and only if one of the regexes in this set …","Returns the same as Regex::is_match, but starts the search …","Returns true if and only if one of the regexes in this set …","Returns an iterator over all capture groups. This includes …","Returns an iterator over the indices of the regexes that …","Returns the total number of capture groups. This includes …","Returns the length, in bytes, of this match.","Returns the total number of capture groups (even if they …","Returns the total number of regexes in this set.","The total number of regexes in the set that created these …","Configures the line terminator to be used by the regex.","Configures the line terminator to be used by the regex.","Whether the regex at the given index matched.","Whether this set contains any matches.","Returns the set of regexes that match in the given …","Returns the set of regexes that match in the given …","This configures multi-line mode for the entire pattern.","This configures multi-line mode for all of the patterns.","Returns the Match associated with the capture group named …","Set the nesting limit for this parser.","Set the nesting limit for this parser.","Create a new builder with a default configuration for the …","Create a new builder with a default configuration for the …","Compiles a regular expression. Once compiled, it can be …","Create a new regex set with the given regular expressions.","","","","","","","","","","","Return a fixed unchanging replacement string.","","","This configures octal mode for the entire pattern.","This configures octal mode for all of the patterns.","","Returns the regex patterns that this regex set was …","","Returns the range over the starting and ending byte …","Replaces the leftmost-first match in the given haystack …","Replaces all non-overlapping matches in the haystack with …","Appends possibly empty data to dst to replace the current …","","","Replaces at most limit non-overlapping matches in the …","Returns the end byte offset of the first match in the …","Returns the same as Regex::shortest_match, but starts the …","","","","","","Sets the approximate size limit, in bytes, of the compiled …","Sets the approximate size limit, in bytes, of the compiled …","Returns an iterator of substrings of the haystack given, …","Returns an iterator of at most limit substrings of the …","Returns the byte offset of the start of the match in the …","Returns the total number of capturing groups that appear …","This configures swap-greed mode for the entire pattern.","This configures swap-greed mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","Attempts to parse a string into a regular expression","Attempts to parse a string into a regular expression","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures Unicode mode for the entire pattern.","This configures Unicode mode for the all of the patterns.","","","","","","","","","","","","","","","","","","","","A low level representation of the byte offsets of each …","An iterator over all non-overlapping capture matches in a …","An iterator over the names of all capture groups in a …","Represents the capture groups for a single match.","Represents a single match of a regex in a haystack.","An iterator over all non-overlapping matches in a haystack.","A helper type for forcing literal string replacement.","A compiled regular expression for searching Unicode …","A configurable builder for a Regex.","Match multiple, possibly overlapping, regexes in a single …","A configurable builder for a RegexSet.","A trait for types that can be used to replace matches in a …","A by-reference adaptor for a Replacer.","A set of matches returned by a regex set.","An owned iterator over the set of matches from a regex set.","A borrowed iterator over the set of matches from a regex …","An iterator over all substrings delimited by a regex match.","An iterator over at most N substrings delimited by a regex …","An iterator over all group matches in a Captures value.","","","","","","","","","","","","Returns the substring of the haystack that matched.","Returns the original string of this regex.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compiles the pattern given to RegexBuilder::new with the …","Compiles the patterns given to RegexSetBuilder::new with …","Returns a type that implements Replacer, but that borrows …","Returns a fresh allocated set of capture locations that can","Returns an iterator over the capture names in this regex.","This routine searches for the first match of this regex in …","Returns the same as Regex::captures, but starts the search …","Returns an iterator that yields successive non-overlapping …","Returns the number of captures groups in this regex.","This is like Regex::captures, but writes the byte offsets …","Returns the same as Regex::captures_read, but starts the …","This configures whether to enable case insensitive …","This configures whether to enable case insensitive …","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures CRLF mode for the entire pattern.","This configures CRLF mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Set the approximate capacity, in bytes, of the cache of …","Set the approximate capacity, in bytes, of the cache of …","This configures dot-matches-new-line mode for the entire …","This configures dot-matches-new-line mode for the entire …","","","","","","","","","","","","","","","","","","","Create a new empty regex set.","Returns the byte offset of the end of the match in the …","","","","","","Expands all instances of $ref in replacement to the …","This is a convenience routine for extracting the substrings","This routine searches for the first match of this regex in …","Returns the same as Regex::find, but starts the search at …","Returns an iterator that yields successive non-overlapping …","","","","Shows the original regular expression.","Shows the original regular expression.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Attempts to parse a string into a regular expression","Returns the Match associated with the capture group at …","Returns the start and end byte offsets of the capture …","This configures verbose mode for the entire pattern.","This configures verbose mode for all of the patterns.","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Returns true if and only if this match has a length of …","Returns true if this set contains no regexes.","Returns true if and only if there is a match for the regex …","Returns true if and only if one of the regexes in this set …","Returns the same as Regex::is_match, but starts the search …","Returns true if and only if one of the regexes in this set …","Returns an iterator over all capture groups. This includes …","Returns an iterator over the indices of the regexes that …","Returns the total number of capture groups. This includes …","Returns the length, in bytes, of this match.","Returns the total number of capture groups (even if they …","Returns the total number of regexes in this set.","The total number of regexes in the set that created these …","Configures the line terminator to be used by the regex.","Configures the line terminator to be used by the regex.","Whether the regex at the given index matched.","Whether this set contains any matches.","Returns the set of regexes that match in the given …","Returns the set of regexes that match in the given …","This configures multi-line mode for the entire pattern.","This configures multi-line mode for all of the patterns.","Returns the Match associated with the capture group named …","Set the nesting limit for this parser.","Set the nesting limit for this parser.","Create a new builder with a default configuration for the …","Create a new builder with a default configuration for the …","Compiles a regular expression. Once compiled, it can be …","Create a new regex set with the given regular expressions.","","","","","","","","","","","Return a fixed unchanging replacement byte string.","","","This configures octal mode for the entire pattern.","This configures octal mode for all of the patterns.","","Returns the regex patterns that this regex set was …","Returns the range over the starting and ending byte …","Replaces the leftmost-first match in the given haystack …","Replaces all non-overlapping matches in the haystack with …","Appends possibly empty data to dst to replace the current …","","","Replaces at most limit non-overlapping matches in the …","Returns the end byte offset of the first match in the …","Returns the same as shortest_match, but starts the search …","","","","","","Sets the approximate size limit, in bytes, of the compiled …","Sets the approximate size limit, in bytes, of the compiled …","Returns an iterator of substrings of the haystack given, …","Returns an iterator of at most limit substrings of the …","Returns the byte offset of the start of the match in the …","Returns the total number of capturing groups that appear …","This configures swap-greed mode for the entire pattern.","This configures swap-greed mode for all of the patterns.","","","","","","","","","","","","","","","","Attempts to parse a string into a regular expression","Attempts to parse a string into a regular expression","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures Unicode mode for the entire pattern.","This configures Unicode mode for the all of the patterns.","","","","","","","","","","","","","","","","","","","Keep any of the unique rows This allows more optimizations","","A contiguous growable collection of Series that have the …","Keep the first unique row.","","Keep the last unique row.","Keep None of the unique rows.","","","","","","","","","","Safety","Same as filter but does not parallelize.","","","","","Aggregate all chunks to contiguous memory.","Ensure all the chunks in the DataFrame are aligned.","Apply a closure to a column. This is the recommended way …","Apply a closure to a column at index idx. This is the …","Aggregate all the chunks in the DataFrame to a single …","Aggregate all the chunks in the DataFrame to a single …","","","","","","","","","","","","","","","","","","Select a single column by name.","Selected multiple columns by name.","Creates the cartesian product from both frames, preserves …","","","","","","","","","","","","","Summary statistics for a DataFrame. Only summarizes …","","","","","Drop a column by name. This is a pure method and will …","","Remove a column by name and return the column removed.","Drop columns that are in names.","Drop columns that are in names without allocating a HashSet…","Return a new DataFrame where all null values are dropped.","Get the data types of the columns in the DataFrame.","Creates an empty DataFrame usable in a compile time …","","","","","","","Returns an estimation of the total (heap) allocated size …","","Explode DataFrame to long format by exploding a column …","","Extend the memory backed by this DataFrame with the values …","Get a reference to the schema fields of the DataFrame.","Replace None values with one of the following strategies:","Take the DataFrame rows by a boolean mask.","Get column index of a Series by name.","","","","","Check if DataFrames are equal. Note that None == None …","Check if all values in DataFrames are equal where …","Check if DataFrames schemas are equal.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Panics","Create a new DataFrame from rows. This should only be used …","Create a new DataFrame from rows. This should only be used …","Create a new DataFrame from an iterator over rows. This …","Get a row in the DataFrame. Beware this is slow.","Example","Get the Vec<String> representing the column names.","Get a reference to the DataFrame columns.","Get mutable access to the underlying columns.","Get a row from a DataFrame. Use of this is discouraged as …","Amortize allocations by reusing a row. The caller is …","Amortize allocations by reusing a row. The caller is …","Get the supertype of the columns in this DataFrame","","Group DataFrame using a Series column.","","","Group DataFrame using a Series column. The groups are …","","","Get the head of the DataFrame.","Get the height of the DataFrame which is the number of …","Aggregate the column horizontally to their max values.","Aggregate the column horizontally to their mean values.","Aggregate the column horizontally to their min values.","Add multiple Series to a DataFrame. The added Series are …","Add multiple Series to a DataFrame. The added Series are …","Add columns horizontally.","Aggregate the column horizontally to their sum values.","","","","","","","","","","","","","","Insert a new column at a given index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Get a mask of all the duplicated rows in the DataFrame.","Check if the DataFrame is empty.","Get a mask of all the unique rows in the DataFrame.","Iterator over the columns as Series.","Iterator over the rows in this DataFrame as Arrow …","Iterator over the rows in this DataFrame as Arrow …","This is similar to a left-join except that we match on …","This is similar to a left-join except that we match on …","Convert the DataFrame into a lazy DataFrame","Aggregate the columns to their maximum values.","Aggregate the columns to their mean values.","Aggregate the columns to their median values.","Unpivot a DataFrame from wide to long format.","Similar to melt, but without generics. This may be easier …","Aggregate the columns to their minimum values.","The number of chunks per column","Create a DataFrame from a Vector of Series.","Create a new DataFrame but does not check the length or …","","","Create a new DataFrame that shows the null counts per …","Pipe different functions/ closure operations that work on …","Pipe different functions/ closure operations that work on …","Pipe different functions/ closure operations that work on …","Removes the last Series from the DataFrame and returns it, …","Checks if the Arc ptrs of the Series are equal","Aggregate the columns to their quantile values.","Rename a column in the DataFrame.","Replace a column with a Series.","Replace column at index idx with a Series.","Replace or update a column. The difference between this …","Get a DataFrame with all the columns in reversed order.","","Sample a fraction between 0.0-1.0 of this DataFrame.","Sample n datapoints from this DataFrame.","Get the DataFrame schema.","Select column(s) from this DataFrame and return a new …","Select a Series by index.","Select column(s) from this DataFrame by range and return a …","","Select column(s) from this DataFrame and return them into …","Select with a known schema.","Select with a known schema. This doesn’t check for …","Set the column names.","Get (height, width) of the DataFrame.","Shift the values by a given period and fill the parts that …","Returns true if the chunks of the columns do not align and …","Shrink the capacity of this DataFrame to fit its length.","","","Slice the DataFrame along the rows.","","Return a sorted clone of this DataFrame.","This is the dispatch of Self::sort, and exists to reduce …","Sort DataFrame in place by a column.","Sort the DataFrame by a single column with extra options.","Aggregate the columns to their standard deviation values.","Aggregate the columns to their sum values.","Get the tail of the DataFrame.","Take DataFrame rows by index values.","Take DataFrame value by indexes from an iterator.","Take DataFrame values by indexes from an iterator.","Take DataFrame values by indexes from an iterator that may …","Create a 2D ndarray::Array from this DataFrame. This …","","","","","","Transpose a DataFrame. This is a very expensive operation.","Apply a closure that may fail to a column. This is the …","Apply a closure that may fail to a column at index idx. …","Get column index of a Series by name.","","","","","","","","Create a new DataFrame from an iterator over rows. This …","","","","","","","","","","","Unstable distinct. See DataFrame::unique_stable.","","Drop duplicate rows from a DataFrame. This fails when …","Unnest the given Struct columns. This means that the …","","","Aggregate the columns to their variation values.","Concatenate a DataFrame to this DataFrame and return as …","Concatenate a DataFrame to this DataFrame","","","","","","Get the width of the DataFrame which is the number of …","Add a new column to this DataFrame or replace an existing …","Add a new column to this DataFrame or replace an existing …","Adds a column to the DataFrame without doing any checks on …","Add a new column at index 0 that counts the rows.","Add a row count in place.","Arguments for [DataFrame::melt] function","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","Whether the melt may be done in the streaming engine This …","","","","","","","","","","","","Returned by a groupby operation on a DataFrame. This …","","","Indexes of the groups, the first index is stored …","","","","","Every group is indicated by an array where the","","","","","Used to create the tuples for a groupby operation.","","","","","","","","","","","Slice is always sorted in ascending order.","","","","","","","","","Aggregate the groups of the groupby operation into lists.","","","Apply a closure over the groups as a new DataFrame.","","","","","","","","","","","","","","","","","","","","","","","","","","Aggregate grouped series and compute the number of values …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Aggregate grouped Series and find the first value per …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Get the internal representation of the GroupBy operation. …","Get the internal representation of the GroupBy operation. …","","","Create the tuples need for a groupby operation. * The …","Get the groupby group indexes.","Get a mutable reference to the GroupsIdx.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Aggregate grouped Series and return the last value per …","","","Aggregate grouped series and compute the maximum value per …","Aggregate grouped series and compute the mean per group.","Aggregate grouped Series and determine the median per …","Aggregate grouped series and compute the minimal value per …","Aggregate grouped Series by counting the number of unique …","","","","","Apply a closure over the groups as a new DataFrame in …","","","Aggregate grouped Series and determine the quantile per …","Select the column(s) that should be aggregated. You can …","","","","Aggregate grouped Series and determine the standard …","Aggregate grouped series and compute the sum per group.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a reference to the GroupsIdx.","Get a reference to the GroupsSlice.","Aggregate grouped Series and determine the variance per …","","","","","","","","","","","","","","","","","","","","Safety","","","","","[ChunkIdx, DfIdx]","","","","","","","","","","","No unique checks","Check if join keys are unique in right dataset.","Check if join keys are unique in left dataset.","Check if join keys are unique in both left and right …","","","","","If Categorical types are created without a global string …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An AnyValueBuffer that should be used when we trust the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","Will add the AnyValue into Self and unpack as the physical …","","","","","","","","","","","","","","Coerces a slice of datatypes into a single supertype.","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Infer schema from rows and set the first no null type as …","Infer schema from rows and set the supertypes of the …","","","","","","","","","","","","","","","","Casts all series to string data and will concat them in …","Compute the covariance between two columns.","Compute the covariance between two columns.","Concat [DataFrame]s diagonally. Concat diagonally thereby …","Concat [DataFrame]s horizontally. Concat horizontally and …","Compute the pearson correlation between two columns.","Compute the pearson correlation between two columns.","","","","","Groupby aggregation","","","","Multiple values that are used for all columns","A single value that’s used for all columns","AllowedOptimizations","","","","","","","","Keep any of the unique rows This allows more optimizations","","A thread-safe reference-counting pointer. ‘Arc’ stands …","Argmin/ Argmax","","","","A nested list with a fixed size in each row","","","Specialized expressions for Series of DataType::List.","","The set of supported logical types in this crate.","","Represents Arrow’s metadata of a “column”.","","Typedef for a std::result::Result of an Error.","An ordered sequence of Fields with associated Metadata.","The time units defined in Arrow.","","","","","","","","","Automatically determine over which unit to parallelize …","","previous value in array","selects the last row in the right DataFrame whose ‘on’ …","","A raw binary array","","","Opaque binary data of variable length whose offsets are …","","","","","","","","","","","","","","A binary true or false.","A binary true or false.","","true and false.","","","","","","","","","","","","Cache the input at this point in the LP","","","","","","","","Specialized expressions for Categorical dtypes.","","","","Intermediate state of a chained …","Intermediate state of a chained …","Aggregation operations","Aggregations that return Series of unit length. Those can …","","Fastest way to do elementwise operations on a …","Apply kernels on the arrow array chunks in a ChunkedArray.","","Cast ChunkedArray<T> to ChunkedArray<N>","Compare Series and ChunkedArray’s and get a boolean mask …","","Create a new ChunkedArray filled with values at that index.","Explode/ flatten a List or Utf8 Series","Replace None values with a value","Filter values by a boolean mask.","Fill a ChunkedArray with one value.","","Find local minima/ maxima","Quantile and median aggregation","Reverse a ChunkedArray<T>","This differs from ChunkWindowCustom and ChunkWindow by not …","Create a ChunkedArray with new values by index or by …","","Shift the values of a ChunkedArray by a number of periods.","Sort operations on ChunkedArray.","Fast access by index.","Get unique values in a ChunkedArray","Variance and standard deviation aggregation.","Combine two ChunkedArray based on some predicate.","ChunkedArray","","","","","","","","","Parallelize over the columns","","","","","","Special case that does not need columns","","","","Create a new DataFrame by reading a csv file.","Write a DataFrame to csv.","","","","","","A contiguous growable collection of Series that have the …","","","In memory DataFrame","","","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","Arguments used by datetime in order to produce an Expr of …","","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","","A dictionary encoded array (key_type, value_type), where …","","Remove duplicates from the table","","","","","Dummy type, we need to instantiate all generic types, so …","","","","","","Measure of elapsed time. This elapsed time is a physical …","Arguments used by duration in order to produce an Expr of …","","","","","","","","","Catches errors and throws them later","Can be used in a select statement to exclude a column from …","","","","Explode the aggregated list and just do a hstack instead …","Expressions that can be used in various contexts. Queries …","","This allows expressions to access other tables","Extension type.","Characterizes the name and the DataType of a column.","","","","","","","","Keep the first unique row.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","A 64-bit floating point number.","","A f64","","","","","","next value in array","selects the first row in the right DataFrame whose …","","","","","","","","Ensure that the same hash is used as with VecHash.","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Returned by a groupby operation on a DataFrame. This …","","","Indexes of the groups, the first index is stored …","","","","","Every group is indicated by an array where the","Map the group values to the position","","","","","Adding columns to the table without a Join","","","","","","","","","The type used by polars to index data.","","","","This trait exists to be unify the API of polars Schema and …","","","","","","","A 16-bit integer number.","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","An 8-bit integer number.","","An i8","","","","","A “calendar” interval modeling elapsed time that takes …","Used to create the tuples for a groupby operation.","","","Used to convert a ChunkedArray, &dyn SeriesTrait and Series","Create a type that implements a faster TakeRandom.","","","","Compression codec","Read Arrows IPC format into a DataFrame","Read Arrows Stream IPC format into a DataFrame","Write a DataFrame to Arrow’s Streaming IPC format","","Write a DataFrame to Arrow’s IPC format","","","","Mask the first unique values as true","","Safety","Check if element is member of list array","","","Mask the last unique values as true","","","","","","","","","","","","","Join the groups as ‘List<group_dtype>’ to the row …","Join operation","","","","","A single JSON array containing each DataFrame row as an …","The format to use to write the DataFrame to JSON: Json (a …","","Each DataFrame row is serialized as a JSON object on a …","Reads JSON in one of the formats in JsonFormat into a …","Writes a DataFrame to JSON.","Set root name as Alias","LZ4 (framed)","Opaque binary data of variable length whose offsets are …","","A list of some logical data type whose offsets are …","","","A variable-length UTF-8 encoded string whose offsets are …","","","Keep the last unique row.","","Reads LazyFrame from a filesystem or a cloud storage. …","Lazy abstraction over an eager DataFrame. It really is an …","Utility struct for lazy groupby operation.","","","","","Use the string value for sorting","","","","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","","","","","Specialized expressions for Series of DataType::List.","","","","","","","","","","","Utf8Array: caches the string values","Utf8Array: caches the string values","","","","","Maps a logical type to a a chunked array implementation of …","","","Utf8 encoding and unknown bytes are replaced with �","","","","","","","A nested type that is represented as","A (User Defined) Function","","","maximum value in array","","replace with the maximum value of that data type","","mean value of array","","","","Arguments for [DataFrame::melt] function","Specialized expressions for Categorical dtypes.","Time in microseconds.","","","Time in milliseconds.","","","","minimal value in array","","replace with the minimal value of that data type","","","only useful if periods are weekly","","","","","","","","","Tuples that map column names to null value of that column","","","","","Time in nanoseconds.","","","","","selects the right in the right DataFrame whose ‘on’ …","","","Just a wrapper structure. Useful for certain impl …","","Don’t parallelize","Keep None of the unique rows.","","","Take the nth column in the DataFrame","The literal Null","","","","Null type","","","","","","","","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","replace with the value one","","State of the allowed optimizations","","","","","","","","","Read Apache parquet format into a DataFrame.","","Write a DataFrame to parquet format","","Use the physical categories for sorting","Take a DataFrame and evaluate the expressions. Implement …","Wrapper struct that allow us to use a PhysicalExpr in …","","","This hashmap has the uses an IdHasher","","","","","","","","","A PolarsIterator is an iterator over a ChunkedArray which …","","","","Values need to implement this so that they can be stored …","","","Any type that is not nested","","","","","","Column selection","","","","","","","","","","","","","","Repeat the values n times.","","","","","","","","","","","","","","","","Parallelize over the row groups","","","","","","A map from field/column name (String) to the type of that …","","","","","Time in seconds.","Filter on a boolean mask","Expressions in this node should only be expanding e.g. …","","","Series","","A wrapper trait for any binary closure …","","","","","A wrapper trait for any closure …","","","","","","","","","","Slice the table","","Slice is always sorted in ascending order.","Utility trait to slice concrete arrow arrays whilst …","","","","Sort the table","","","","Wrapper type that has special equality properties …","","","","Concat the values into a string array.","","","","","","","A nested DataType with a given number of Fields.","A StructArray is a nested Array with an optional validity …","This is logical type StructChunked that dispatches most …","","","Specialized expressions for Struct dtypes.","","","","","","One of the three arguments allowed in unchecked_take","","","","","Random access","","","","","","A ternary operation if true then “foo” else “bar”","Intermediate state of when(..).then(..).otherwise(..) …","","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","","A i64 representing a timestamp measured in TimeUnit with …","","","","","","","An unsigned 16-bit integer number.","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","An unsigned 8-bit integer number.","","An u8","","","","","","A nested datatype that can represent slots of differing …","","","","","","Utf8 encoding","A UTF8 encoded string type.","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","","","","An UTF8 encoded string type.","","","","","","","","","","Intermediate state of when(..).then(..).otherwise(..) …","","Represents a window in time","See postgres window functions","","","","","ZSTD","replace with the value zero","","Represents a valid zstd compression level.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the sum of the Series as a new Series of length 1.","","Convert all values to their absolute/positive value.","","","","","","","Group by and aggregate.","Get the group indexes of the group by operation.","","Rename Column.","Selects all columns. Shorthand for col("*").","Check if all boolean values are true","Create a new column with the the bitwise-and of the …","Allow parallel table evaluation.","","specify if the scan provider should allow predicate …","specify if the scan provider should allow projection …","","specify if the scan provider should allow slice pushdowns","and operation","","Check if any boolean value is true","Create a new column with the the bitwise-or of the …","Append expressions. This is done by adding the chunks of …","","","","","","","Apply a closure elementwise. This is fastest when the null …","Apply a function over the groups as a new DataFrame. It is …","Apply a function/closure over the groups. This should only …","Like map_binary, but used in a groupby-aggregation context.","Apply a closure elementwise and cast to a Numeric …","","Apply kernel and return result as a new ChunkedArray.","Apply a kernel that outputs an array of different type.","Apply a function/closure over the groups with many …","","Apply a function/closure over the groups of multiple …","Apply a closure elementwise including null values.","Apply a closure elementwise and write results to a mutable …","Apply a closure elementwise. The closure gets the index of …","Apply a closure elementwise. The closure gets the index of …","Create list entries that are range arrays","Compute the inverse cosine of the given expression","Compute the inverse hyperbolic cosine of the given …","Arcs this array into a std::sync::Arc<dyn Array>.","Compute the inverse sine of the given expression","Compute the inverse hyperbolic sine of the given expression","Compute the inverse tangent of the given expression","Compute the inverse tangent of the given expression, with …","Compute the inverse hyperbolic tangent of the given …","Get the index of the maximal value","Return the index of the maximum value of every sublist","Get the index value that has the maximum value","Get the index of the minimal value","Return the index of the minimal value of every sublist","Get the index value that has the minimum value","Retrieve the indexes needed to sort this array.","Get the index values that would sort this expression.","Retrieve the indexes needed for a sort.","Find the indexes that would sort these series in order of …","Retrieve the indexes need to sort this and the other …","Get first index of the unique values in a ChunkedArray. …","Get the first index of unique values of this expression.","Get first indexes of unique values.","Get the indices where condition evaluates true.","","Get the array::ArrayNameSpace","","APIs to read from and write to NDJSON","Get arrow schema of the Ipc File, this is faster than …","Get arrow schema of the Ipc Stream File, this is faster …","","","Get a hold to self as Any trait reference. Only …","","Get a hold to self as Any trait reference. Only …","","","Parsing string values and return a DateChunked","Parsing string values and return a DateChunked Different …","Parsing string values and return a DatetimeChunked","Parsing string values and return a DatetimeChunked …","","","Convert to a partitioned aggregator.","","","","Rechunk and return a pointer to the start of the Series. …","","Can take &dyn Statistics and determine of a file should be …","","Take several expressions and collect them into a …","Parsing string values and return a TimeChunked","","Find the mean of all the values in the column named name. …","Fill missing value with next non-null.","","","","","","","","","","","","","","Compute op(l, r) (or equivalently l op r). l and r must …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Boxes this array into a Box<dyn Array>.","","","Apply a closure on optional values and cast to Numeric …","","Compute the rolling aggregates with a window defined by a …","","Caches the result into a new LazyFrame. This should be …","","","use a cache of unique, converted dates to apply the …","","","","","","Casts the column given by Expr to a different type.","Cast a [ChunkedArray] to [DataType]","","","Cast expression to another data type.","Does not check if the cast is a valid one and may …","","Get the CategoricalNameSpace","Compute the cube root of the given expression","Ceil underlying floating point array to the highest …","Set the labels at the center of the window.","Set the labels at the center of the window.","Set the labels at the center of the window.","","","In cases sortedness cannot be checked by the sorted flag, …","In cases sortedness cannot be checked by the sorted flag, …","Checked integer division. Computes self / rhs, returning …","","","Get the lengths of the underlying chunks","Traits and utilities for temporal data.","Underlying chunks.","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Clone inner ChunkedArray and wrap in a new Arc","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The closed window of that time window if given","","","","","CloudOptions used to list files.","","","Folds the expressions from left to right keeping the first …","Create a Column Expression based on a column name.","Execute all the lazy operations and collect them into a …","Collect all LazyFrame computations.","Select multiple columns by name.","","","Data page compression","Data page compression","Concat multiple","Concat with the values from a second Utf8Chunked","","Recommended concatenation of LazyFrames from many input …","","Concat lists entries.","Horizontally concat string columns in linear time","Check if binary contains given literal","Check if strings contain a regex pattern.","Check if the list array contain an element","Check if strings contain a given literal","Check if strings contain a given literal","Compute the cosine of the given expression","Compute the hyperbolic cosine of the given expression","Compute the cotangent of the given expression","Count expression","Count the values of the Series or Get counts of the group …","Count all successive non-overlapping regex matches.","Compute the covariance between two columns.","","","Creates the cartesian product from both frames, preserves …","Cumulatively count values from 0 to len.","Accumulate over multiple columns horizontally / row wise.","Get an array with the cumulative max computed at every …","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative product computed at every …","Accumulate over multiple columns horizontally / row wise.","Get an array with the cumulative sum computed at every …","Get an array with the cumulative sum computed at every …","Run an expression over a sliding window that increases 1 …","if None will be 1024^2 bytes","","Its logical DataType","Data types supported by Polars.","Create a column of date ranges from a start and stop …","","Construct a column of Datetime from the provided …","","","","Extract day from underlying NaiveDate representation. …","Extract day from underlying NaiveDateTime representation. …","Extract day from underlying NaiveDateTime representation. …","","Extract the days from a Duration","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert from radians to degrees","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Explain the optimized logical plan.","Explain the naive logical plan.","","","Concat LazyFrames diagonally. Calls concat internally.","Diff every sublist.","","","","","","Arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Removes columns from the DataFrame. Note that its better …","Drop NaN values","Drop null rows.","Drop null values","Drop all null values and return a new Series.","","","","Get data type of ChunkedArray.","Get datatype of series.","","Select multiple columns by dtype.","Select multiple columns by dtype.","Construct a column of Duration from the provided …","Check if strings ends with a substring","Check if strings ends with a substring","Compute the entropy as -sum(pk * log(pk). where pk are …","Compute the entropy as -sum(pk * log(pk). where pk are …","","","","","","","","","","","","","","","","","","Compare Expr with other Expr on equality","","","","","","","","","","","","","","","","","","","Compare Expr with other Expr on equality where None == None","Check for equality.","Check for equality where None == None.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Run any Expr on these lists elements","Take a DataFrame and evaluate the expression.","","Some expression that are not aggregations can be done per …","This is called in partitioned aggregation. Partitioned …","start a window at this interval","Period length","If polars may parse matches that not contain the whole …","Exclude a column from a wildcard/regex selection.","","Calculate the exponential of all elements in the input …","Calculate the exponential of all elements in the input …","Explain the logical plan.","Apply explode operation. See eager explode.","","Explode the utf8/ list column","","","","","","Extract the nth capture group from pattern","Extract each successive non-overlapping regex match in an …","Extract each successive non-overlapping regex match in an …","","Fetch is like a collect operation, but it overwrites the …","","Get field (used in schema)","","Retrieve one of the fields of this StructChunked as a new …","Returns the fields of this StructArray.","The fields composing this schema.","","Fill NaN values in the DataFrame","Replace the floating point NaN values by a value.","Fill none values in the DataFrame","Replace the null values by a value.","Replace None values with a give value T.","Filter values in the ChunkedArray with a boolean mask.","Filter by boolean mask. This operation clones data.","Filter by some predicate expression.","Filter a single column.","Called to merge all the partitioned results in a final …","Take the SerReader and return a parsed DataFrame.","","","Get the final LazyFrame.","Finish builder","Read the file and create the DataFrame.","","","","","","","Take the SerReader and return a parsed DataFrame.","","","Write the given DataFrame in the the writer W. Returns the …","","Get the final LazyFrame. This method assumes, that path is …","","","","First column in DataFrame","Get first item of every sublist.","Get the first row.","Get the first value in the group.","","Alias for explode","","Floor underlying floating point array to the lowest …","Floor divide self by rhs.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Optional parameters for the rolling function","","","Accumulate over multiple columns horizontally / row wise.","Force parallel table evaluation.","","Formatting string","Format the results of an array of expressions using a …","Fill missing value with previous non-null.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Safety","Safety","","","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a new ChunkedArray from an iterator.","Create a list-array from an iterator. Used in groupby …","","","Create a list-array from an iterator. Used in groupby …","Create a new ChunkedArray from an iterator.","","This is the recommended way to create a csv reader as this …","This is the recommended way to create a json reader as …","","","","","Initialize by name and values.","","Create a ChunkedArray with a single value.","","A function that cannot be expressed with map or apply and …","","Get a nullable value by index.","Get a nullable value by index.","Get a single value by index. Don’t use this operation …","Get items in every sublist by index.","Get a single value. Beware this is slow.","Gets AnyValue from LogicalType","Get a single value. Beware this is slow. If you need to …","Safety","","Get current optimizations","Getter for the DataType of the value","","","returns the bounds for the earliest window bounds that …","","","","Returns the fields the DataType::Struct.","","Get a vector of all column names.","Get the value at this index as a downcastable Any trait …","","","","Safety","Safety","Get a value by index and ignore the null bit.","Get a value by index and ignore the null bit.","Get a single value by index. Don’t use this operation …","Useful for a Utf8 or a List to get underlying value size. …","Get list of files referenced by this reader.","Create the tuples need for a groupby operation. * The …","Group by and aggregate.","","Group based on a time value (or index value of type Int32, …","","Create rolling groups based on a time column.","Similar to groupby, but order of the DataFrame is …","Different from groupby_windows, where define window …","Based on the given Window, which has an","Greater than comparison.","Check if Expr > Expr","Greater than or equal comparison.","Check if Expr >= Expr","Set whether the CSV file has headers","Set whether to write headers","Set whether the CSV file has headers","Whether this expression expands to multiple expressions.","Return if any the chunks in this [ChunkedArray] have a …","","","","","","","","","","","","","","","","","","","Get the head of every sublist","Return first n rows of each group","Get the first n elements of the Expr result","","","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","","Extract the hours from a Duration","","Select the join type.","","","Aggregate the group to a Series","","add the boundaries to the dataframe","Time or index column","Time or index column","Get the index of a column by name.","","Set the CSV reader to infer the schema of the file","Set the JSON reader to infer the schema of the file. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Perform an inner join on two DataFrames.","Join query with other lazy query.","Generate a range of integers.","Generate a range of integers for each row of the input …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Deconstructs the StructArray into its individual …","","","","","","","","","Get a hold to an implementor of the Display trait that …","","","Check if Series is empty.","Get mask of finite values if dtype is Float","","","Get a mask of the first unique value.","","Check if elements of this array are in the right Series, …","Check if the values of the left expression are in the …","Check if elements of this Series are in the right Series, …","Get mask of infinite values if dtype is Float","","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDateTime representation. …","","","Get mask of NaN values if dtype is Float","Get inverse mask of NaN values if dtype is Float","A column which is false wherever expr is null, true …","Get a mask of the non-null values.","Run is_not_null operation on Expr.","A column which is true wherever expr is null, false …","Get a mask of the null values.","Run is_null operation on Expr.","Its nullability","Whether this expression expands to multiple expressions …","","A projection that only takes a column or a column + alias.","","Check if Series is sorted.","","true if zero duration.","This year number might not match the calendar year number.","","","Turn the batched reader into an iterator.","Returns an iterator of Option<Box<dyn Array>>","Generic join method. Can be used to join on multiple …","Join all string items in a sublist and place a separator …","Generic join function that can join on multiple columns.","Control more join options with the join builder.","Convert data between the Arrow memory format and JSON …","Keep the original root name","Last column in DataFrame","Get last item of every sublist.","Get the last row","Get the last value in the group.","","","Perform a left join on two DataFrames","Join query with other lazy query.","The columns you want to join the left table on.","Get length of series.","","Get lengths of the arrays in the List type.","Limit the DataFrame to the first n rows. Note if you don’…","Take num_elements from the top as a zero copy view.","","Create a Literal Expression from L. A literal expression …","Literal expression.","","","Compute the logarithm to a given base","Compute the logarithm to a given base","Compute the natural logarithm of all elements plus one in …","Compute the natural logarithm of all elements plus one in …","","","Reduce memory consumption at the expense of performance","Reduce memory consumption at the expense of performance","Reduce memory usage in expensive of performance","Reduce memory usage in expensive of performance","","Get minimal value that could be hold by this dtype.","","","","","Get the value by index in the sublists. So index 0 would …","In case the inner dtype DataType::Utf8, the individual …","","","","","","","","","","","","Less than comparison.","Check if Expr < Expr","Less than or equal comparison","Check if Expr <= Expr","maintain the order the data was processed","maintain the order the data was processed","","Apply a function/closure once the logical plan get …","Apply a function/closure once the logical plan get …","Define an alias by mapping a function over the original …","Apply a closure on the two columns that are evaluated from …","","","","","","Apply a function/closure once the logical plan get …","Apply a function/closure over multiple columns once the …","Apply a function/closure once the logical plan get …","","Apply a function/closure over multiple columns once the …","Explode the aggregated list and just do a hstack instead …","Find the maximum of all the values in the column named name…","Compute the maximum of the items in every subarray.","Compute the maximum of the items in every sublist.","Aggregate all the columns as their maximum values.","Returns the maximum value in the array, according to the …","Reduce groups to maximum value.","Get the max of the ChunkedArray as a new Series of length …","Get the max of the Series as a new Series of length 1.","Create a new column with the the maximum value per row.","Find the mean of all the values in the column named name. …","Compute the mean of every sublist and return a Series of …","Aggregate all the columns as their mean values.","Returns the mean value in the array. Returns None if the …","Reduce groups to the mean value.","Returns the mean value in the array Returns an option …","Find the median of all the values in the column named name…","Aggregate all the columns as their median values.","Returns the mean value in the array. Returns None if the …","Reduce groups to the median value.","Returns the median value in the array Returns an option …","Get the median of the ChunkedArray as a new Series of …","Get the median of the Series as a new Series of length 1.","Melt the DataFrame from wide to long format","","Set if the file is to be memory_mapped. Only works with …","","Get the meta::MetaNameSpace","Additional custom (opaque) metadata.","Optional metadata.","","","Extract the microseconds from a Duration","","Extract the milliseconds from a Duration","","Find the minimum of all the values in the column named name…","Compute the minimum of the items in every subarray.","Compute the minimum of the items in every sublist.","Aggregate all the columns as their minimum values.","","Reduce groups to minimal value.","Get the min of the ChunkedArray as a new Series of length …","Get the min of the Series as a new Series of length 1.","Create a new column with the the minimum value per row.","Amount of elements in the window that should be filled …","Amount of elements in the window that should be filled …","","Amount of elements in the window that should be filled …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","","Extract the minutes from a Duration","","The most occurring value(s). Can return multiple Values","Compute the mode(s) of this column. This is the most …","Compute the most occurring element in the array.","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","","","","","","","","","","","","Expr::mutate().apply(fn())","Number of chunks in this Series","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","","","","","Number of unique values in the ChunkedArray","Get the number of unique values in the groups.","Get unique values in the Series.","Name of series.","","","Its name","Reduce groups to maximum value.","Reduce groups to minimal value.","","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Returns the number of nanoseconds since the whole non-leap …","Extract the nanoseconds from a Duration","Returns the nanoseconds from the Duration without the …","","Translate the negative index to an offset.","Compare Expr with other Expr on non-equality","Compare Expr with other Expr on non-equality where …","Create a new instance of the [SerReader]","","","Initialize by name and values.","","","Create a new CsvReader from a file/ stream","","","","","","","","Create a new JsonWriter writing to buffer with format …","","Create a new JsonLineReader from a file/ stream","Create a new ParquetReader from an existing Reader.","Create a new integer size Duration","","","Create a new writer","","","","Construct a new DatetimeArgs set to year, month, day","Create a new DurationArgs with all fields set to lit(0). …","Returns a new StructArray","","Creates an empty StructArray.","Create a new ChunkedArray filled with values at that index.","Create a new Series filled with values from the given …","Creates a null StructArray of length length.","","","","","Negates a boolean column.","Negate Expr","Check for inequality.","Check for inequality where None == None.","","Count the null values.","Aggregate all the columns as the sum of their null value …","Get the null count of the column/group","","Number of rows in the parquet file.","offset window boundaries","","Offset of the window","","The columns you want to join both tables on.","","","or operation","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Extract ordinal year from underlying NaiveDateTime …","","","","Perform an outer join on two DataFrames","Join query with other lazy query.","Get the output name of this expression.","","Apply window function over a subgroup. This is similar to …","","","","Parse a string into a Duration","","","","","","","Path of the scanned file. It can be potentially a glob …","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Get a boolean mask of the local minimum peaks.","Compute the pearson correlation between two columns.","window duration","window duration","Constant Pi","","","","","Pop latest expression and return the input(s) of the …","Raise expression to the power exponent","","","","Add a prefix to the root column name.","","Get the product of the ChunkedArray as a new Series of …","Get the product aggregation of an expression","Profile a LazyFrame.","","Find a specific quantile of all the values in the column …","Aggregate all the columns as their quantile values.","Aggregate a given quantile of the ChunkedArray. Returns …","Compute the quantile per group.","Get the quantile of the ChunkedArray as a new Series of …","Get the quantile of the ChunkedArray as a new Series of …","Extract month from underlying NaiveDateTime representation.","Extract quarter from underlying NaiveDateTime …","Extract quarter from underlying NaiveDateTime …","Convert from degrees to radians","Create a range literal.","","","Read the parquet file in parallel (default). The single …","Rechunk the memory to contiguous chunks when parsing is …","Aggregate all chunks to a contiguous array of memory.","","","","","","Analogous to Iterator::reduce.","","","","Rename the Series.","Rename columns in the DataFrame.","Rename the fields of the StructChunked.","Create a column of length n containing n copies of the …","Repeat the values n times, where n is determined by the …","Repeat the column n times, where n is determined by the …","","Replace the leftmost regex-matched (sub)string with …","Replace all regex-matched (sub)strings with another string","Replace the leftmost literal (sub)string with another …","Replace all matching literal (sub)strings with another …","","","","Return a reversed version of this array.","return a Series in reversed order","Reverse every sublist","Reverse the DataFrame","Reverse column","","The columns you want to join the right table on.","","Apply a custom function over a rolling/ moving window of …","Apply a custom function over a rolling/ moving window of …","Apply a custom function over a rolling/ moving window of …","","","Apply a rolling max (moving max) over the values in this …","Apply a rolling max to a Series.","Apply a rolling maximum.","Apply a rolling mean (moving mean) over the values in this …","Apply a rolling mean to a Series.","Apply a rolling mean.","Apply a rolling median (moving median) over the values in …","Apply a rolling median to a Series.","Apply a rolling median.","Apply a rolling min (moving min) over the values in this …","Apply a rolling min to a Series.","Apply a rolling minimum.","Apply a rolling quantile (moving quantile) over the values …","Apply a rolling quantile to a Series.","Apply a rolling quantile.","Apply a rolling std (moving std) over the values in this …","Apply a rolling std_dev to a Series.","Apply a rolling std-dev","Apply a rolling sum (moving sum) over the values in this …","Apply a rolling sum to a Series.","Apply a rolling sum.","Apply a rolling var (moving var) over the values in this …","Apply a rolling variance to a Series.","Apply a rolling variance","Get the root column names.","","Round underlying floating point array to given decimal …","Round the given ms timestamp by the window boundary.","Round the given ns timestamp by the window boundary.","Round the given us timestamp by the window boundary.","Add a row_count column.","Add a row_count column.","Add a row_count column.","","","","If None will be all written to a single row group.","Proxy of the number of rows in both sides of the joins …","","","","","","Sets the size of the sample taken from the CSV file. The …","Creates a dataframe from the supplied function & scan …","","Create a LazyFrame directly from a ipc scan.","Create a LazyFrame directly from a parquet scan.","Get schema of the Ipc File","Get schema of the Ipc Stream File","Schema of the file.","function to supply the schema. Allows for an optional …","","Get a hold on the schema of the current LazyFrame …","","","","","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","","Extract the seconds from a Duration","","Select (and rename) columns from the query.","","Set the values where the mask evaluates to true to some …","Set the values at indexes idx to some optional value …","","Set the values at indexes idx by applying a closure to …","Safety","Try to reduce memory pressure at the expense of …","","Serialize columns in parallel","","","","","Make sure that all columns are contiguous in memory by …","Set this Series as sorted so that downstream code can use …","Sets the validity of this array.","","Shift the values by a given period and fill the parts that …","Shift every sublist.","Shift the values by a given period and fill the parts that …","Shift the values in the array by some period. See the …","Shift the values by a given period and fill the parts that …","Shift the values by a given period and fill the parts that …","Shift the values in the array by some period and fill the …","Shrink numeric columns to the minimal required datatype …","","Shrink the capacity of this array to fit its length.","","","Compute the sine of the given expression","Compute the hyperbolic sine of the given expression","Stream a query result into an ipc/arrow file. This is …","Stream a query result into a parquet file. This is useful …","","","","Get a zero copy view of the data.","Slice every sublist.","Slice the DataFrame.","Slice the Series. offset may be negative.","Slices this StructArray.","","","","Slices this Array.","","Slices the Array.","","","Slices this StructArray.","Returns this array sliced.","Returns this array sliced.","","Returned a sorted ChunkedArray.","Sort every sublist.","Add a sort operation to the logical plan.","Sort in increasing order. See the eager implementation.","Sort this column by the ordering of another column. Can …","Add a sort operation to the logical plan.","","Sort with given options.","","Compute the spearman rank correlation between two columns. …","Compute the square root of the given expression","","Check if strings starts with a substring","Check if strings starts with a substring","Compute and write column statistics.","Aggregate all the columns as their standard deviation …","Compute the standard deviation of this ChunkedArray/Series.","Standard deviation of the values of the Series","Get the standard deviation of the ChunkedArray as a new …","Get the standard deviation of the Series as a new Series …","","Concat the values into a string array.","Concat the values into a string array.","Get the length of the string values as number of bytes.","Get the length of the string values as number of chars.","Slice the string values Determines a substring starting …","","Whether the melt may be done in the streaming engine This …","","Convert from Time into Utf8 with the given format. See …","If set then polars will return an error if any date …","Cast expression to another data type. Throws an error if …","","Get the struct_::StructNameSpace","","","","Suffix to add duplicate column names in join. Defaults to …","Add a suffix to the root column name.","","Sum all the values in the column named name. Shorthand for …","Compute the sum of the items in every subarray.","Compute the sum the items in every sublist.","Aggregate all the columns as their sum values.","Aggregate the sum of the ChunkedArray. Returns None if not …","Reduce groups to the sum of all the values.","Get the sum of the ChunkedArray as a new Series of length …","Create a new column with the the sum of the values in each …","","Get the tail of every sublist","Get the last n rows","Return last n rows of each group","Get the last n elements of the Expr result","Take values from ChunkedArray by index. Note that the …","Take by index. This operation is clone.","Take the values by idx.","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Create a type that implements TakeRandom.","Take values from ChunkedArray by index.","Take by index if ChunkedArray contains a single chunk.","Compute the tangent of the given expression","Compute the hyperbolic tangent of the given expression","vector of i64 representing temporal values","","","","","Create a column of time ranges from a start and stop …","Convert date(time) object to timestamp in TimeUnit.","","","","","","","Get a dot language representation of the LogicalPlan.","Get a dot language representation of the Expression.","","Create dummy variables.","Get the output field of this expr","Get Field result of the expression. The schema is the …","Modify the strings to their lowercase equivalent","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert Time into Utf8 with the given format. See chrono …","","","","","","Modify the strings to their uppercase equivalent","A tolerance in the same unit as the asof column","An timedelta given as","","","truncate the time column values to the window","","","","","","","","Truncate the given ns timestamp by the window boundary.","","Truncate the given us timestamp by the window boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a new StructArray.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This should be used as type information. Consider this a …","","Undo any renaming operation like alias, keep_name.","Get unique values of a ChunkedArray","Keep only the unique values in every sub-array.","Keep only the unique values in every sublist.","Keep unique rows, do not maintain order","Get unique values of this expression.","Get unique values in the Series.","Keep only the unique values in every sub-array.","Keep only the unique values in every sublist.","Keep unique rows and maintain order","Get unique values of this expression, while maintaining …","","Unnest the given Struct columns. This means that the …","Get maximal value that could be hold by this dtype.","Upsample a DataFrame at a regular frequency.","Upsample a DataFrame at a regular frequency.","How to deal with ambiguous datetimes","Use statistics in the parquet to determine if pages can be …","","","","","The optional validity.","","Create a DataFrame with the unique values of this Series …","Count all unique values and create a struct mapping value …","","","Returns the values of this StructArray.","Returns an iterator of Box<dyn Array>","Aggregate all the columns as their variance values.","Compute the variance of this ChunkedArray/Series.","Variance of the values of the Series","Get the variance of the ChunkedArray as a new Series of …","Get the variance of the Series as a new Series of length 1.","","Compute the hash for all values in the array.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Extract ISO weekday from underlying NaiveDate …","Extract ISO weekday from underlying NaiveDateTime …","Returns the ISO weekday number where monday = 1 and sunday …","","","","","An optional slice with the same length as the window that …","An optional slice with the same length as the window that …","An optional slice with the same length as the window that …","Start a when(..).then(..).otherwise(..) expression","","","The length of the window.","The length of the window.","","The length of the window.","The table to join with.","","Set the batch size (number of records to load at one time)","","Cache the DataFrame after reading.","","Sets the chunk size used by the parser. This influences …","Sets the chunk size used by the parser. This influences …","Add a column to a DataFrame","Columns to select/ project","Columns to select/ project","Columns to select/ project","Columns to select/ project","Add multiple columns to a DataFrame.","","Set the comment character. Lines starting with this …","Set the comment character. Lines starting with this …","Set the compression used. Defaults to None.","Set the compression used. Defaults to None.","Set the compression used. Defaults to None.","Set the compression used. Defaults to None.","Set the compression used. Defaults to Zstd.","","Sets the maximum bytes size of a data page. If None will …","Set the CSV file’s date format","Set the CSV file’s datetime format","Set the day","Set the days","Set the CSV file’s column delimiter as a byte character","Set the CSV file’s column delimiter as a byte character","Set the CSV file’s column delimiter as a byte character","Overwrite the schema with the dtypes in this given Schema. …","Overwrite the schema with the dtypes in this given Schema. …","Overwrite the dtypes in the schema in the order of the …","Set CsvEncoding","Set CsvEncoding","","Set the char used as end of line. The default is b'\\\\n'.","Set the extension. Defaults to “.ipc”.","Set the extension. Defaults to “.ipc”.","Set the CSV file’s float precision","Set milliseconds, microseconds, and nanoseconds","Set hour, minute, and second","Set hours, minutes, and seconds","Set the hour","Set the hours","Continue with next batch when a ParserError is encountered.","Return a null if an error occurs during parsing.","Continue with next batch when a ParserError is encountered.","Set the number of rows to use when inferring the csv …","Set the number of rows to use when inferring the json …","","","Set the microsecond","Set the microseconds","Set the milliseconds","Set the minute","Set the minutes","Treat missing fields as null.","Treat missing fields as null.","Set the month","Try to stop parsing when n rows are parsed. During …","Stop reading when n rows are read.","Stop reading when n rows are read.","","Stop parsing when n rows are parsed. By settings this …","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","Set the number of threads used in CSV reading. The default …","","Set the nanoseconds","Set the CSV file’s null value representation","Set values that will be interpreted as missing/ null. Note …","Set values that will be interpreted as missing/ null.","Set allowed optimizations","Set path of the scanned file. Support glob patterns.","The preferred way to initialize this builder. This allows …","","","","","Toggle predicate pushdown optimization.","Set the reader’s column projection. This counts from 0, …","Set the reader’s column projection. This counts from 0, …","Set the reader’s column projection. This counts from 0, …","Set the reader’s column projection: the names of the …","Set the reader’s column projection. This counts from 0, …","Toggle projection pushdown optimization.","Set the char used as quote char. The default is b'"'. If …","Set the char used as quote char. The default is b'"'. If …","Set the single byte character used for quoting","Rechunk the memory to contiguous chunks when parsing is …","Rechunk the DataFrame to contiguous memory after the CSV …","","Rechunk the memory to contiguous chunks when parsing is …","Rechunk the memory to contiguous chunks when parsing is …","Add a row_count column.","Add a row_count column.","Add a row_count column.","Add a row_count column.","Add a row_count column.","Add a row_count column.","Add a new column at index 0 that counts the rows.","Set the row group size (in number of rows) during writing. …","Set the CSV file’s schema. This only accepts datatypes …","Set the JSON file’s schema","","Set the CSV file’s schema","Set the JSON file’s schema","Modify a schema before we run the lazy scanning.","Overwrite parts of the inferred schema.","","Set the second","Set the seconds","Toggle expression simplification optimization on or off","Skip the first n rows during parsing. The header will be …","Skip the first n rows during parsing. The header will be …","Skip these rows after the header","Skip this number of rows after the header location.","Toggle slice pushdown optimization","Compute and write statistic","Allow (partial) streaming engine","Set the CSV file’s time format","Automatically try to parse dates/ datetimes and time. If …","Automatically try to parse dates/ datetimes and time. If …","Toggle type coercion optimization.","Returns this array with a new validity.","","Set the weeks","Set the year","Turn off all optimizations","","Extract month from underlying NaiveDate representation. …","Extract month from underlying NaiveDateTime representation.","Extract year from underlying NaiveDateTime representation. …","","","Create a new ChunkedArray with values from self where the …","","","","","","","","","","","","","","","","","","","","function to apply","Also has the input. i.e. avg(“foo”)","","function to apply","","function arguments","","","function arguments","","","length is not yet known so we accept negative offsets","","","","","","","output dtype of the function","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","","APIs to serialize and write to NDJSON.","The error type of iteration.","A fallible, streaming iterator.","An iterator adapter that receives an implementer of Write …","The type being iterated over.","FallibleStreamingIterator that serializes an Array to …","","Advances the iterator to the next position.","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","Borrows an iterator, rather than consuming it.","","","Returns the number of remaining elements in the iterator.","","","","","","","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","Calls U::from(self).","Calls U::from(self).","Returns the inner content of this iterator","","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new FileWriter.","Creates a new Serializer.","Advances the iterator, returning the next element.","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","Specialized expressions for Series of DataType::Utf8.","","","Check if a binary value contains a literal binary.","","","","Check if a binary value ends with the given sequence.","Returns the argument unchanged.","","Calls U::from(self).","Check if a binary value starts with the given sequence.","","","","","Specialized expressions for Categorical dtypes.","","Use the string value for sorting","Use the physical categories for sorting","","","","","","","","","","Parsing string values and return a DateChunked","Parsing string values and return a DateChunked Different …","Parsing string values and return a DatetimeChunked","Parsing string values and return a DatetimeChunked …","Parsing string values and return a TimeChunked","","","Compute the rolling aggregates with a window defined by a …","","Set the labels at the center of the window.","Set the labels at the center of the window.","","","The closed window of that time window if given","","Extract day from underlying NaiveDate representation. …","Extract day from underlying NaiveDateTime representation. …","Extract the days from a Duration","","","","","Optional parameters for the rolling function","","Returns the argument unchanged.","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract the hours from a Duration","","Calls U::from(self).","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","This year number might not match the calendar year number.","","Extract the microseconds from a Duration","Extract the milliseconds from a Duration","Amount of elements in the window that should be filled …","Amount of elements in the window that should be filled …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","Extract the minutes from a Duration","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract the nanoseconds from a Duration","Returns the day of year starting from 1.","Returns the day of year starting from 1.","","","","Extract month from underlying NaiveDateTime representation.","Extract quarter from underlying NaiveDateTime …","Apply a rolling max (moving max) over the values in this …","Apply a rolling mean (moving mean) over the values in this …","Apply a rolling median (moving median) over the values in …","Apply a rolling min (moving min) over the values in this …","Apply a rolling quantile (moving quantile) over the values …","Apply a rolling std (moving std) over the values in this …","Apply a rolling sum (moving sum) over the values in this …","Apply a rolling var (moving var) over the values in this …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract the seconds from a Duration","","","","","","","","","","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Extract ISO weekday from underlying NaiveDate …","Extract ISO weekday from underlying NaiveDateTime …","An optional slice with the same length as the window that …","An optional slice with the same length as the window that …","The length of the window.","The length of the window.","Extract month from underlying NaiveDate representation. …","Extract month from underlying NaiveDateTime representation.","","","","","","","","","","Parsing string values and return a DateChunked","Parsing string values and return a DateChunked Different …","Parsing string values and return a DatetimeChunked","Parsing string values and return a DatetimeChunked …","Parsing string values and return a TimeChunked","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","Options to connect to various cloud providers.","","","","","","A nested list with a fixed size in each row","","The set of supported logical types in this crate.","The time units defined in Arrow.","","","","Opaque binary data of variable length whose offsets are …","","","","A binary true or false.","","true and false.","","","","","","","","","","","A 32-bit date representing the elapsed time since UNIX …","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","","A 64-bit date representing the elapsed time since UNIX …","A 64-bit date representing the elapsed time since UNIX …","","","A 128-bit fixed point decimal number.","Fixed point decimal type optional precision and …","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","","","A dictionary encoded array (key_type, value_type), where …","","","Measure of elapsed time. This elapsed time is a physical …","","","Extension type.","Characterizes the name and the DataType of a column.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","","","","","The type used by polars to index data.","","","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Opaque binary data of variable length whose offsets are …","A list of some logical data type whose offsets are …","A variable-length UTF-8 encoded string whose offsets are …","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","Utf8Array: caches the string values","Utf8Array: caches the string values","Maps a logical type to a a chunked array implementation of …","","A nested type that is represented as","Time in microseconds.","","Time in milliseconds.","","Time in nanoseconds.","","","","","Null type","","Can be used to fmt and implements Any, so can be …","A generic type that can be used in a Series &’static str …","","","","","","","","This hashmap has the uses an IdHasher","","","","","","","Any type that is not nested","","","Time in seconds.","","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","A 64-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","An UTF8 encoded string type.","","","","","Get data type of ChunkedArray.","","Gets AnyValue from LogicalType","Safety","","Safety","","","","","","","","Hashmap: maps the indexes from the global …","Hashmap: maps the indexes from the global …","Utf8Array: caches the string values","Utf8Array: caches the string values","","","","","RAII for the string cache If an operation creates …","Use a global string cache for the Categorical Types.","Reset the global string cache used for the Categorical …","Check if string cache is set.","","","","","","","Safety","Safety","Specialized expressions for Series with dates/datetimes.","","","","Change the underlying TimeUnit. And update the data …","","Change the underlying TimeZone of the Series. This does …","Get the (local) date of a Date/Datetime","Get the (local) datetime of a Datetime","Get the month of a Date/Datetime","","","","","Returns the argument unchanged.","Get the hour of a Datetime/Time64","","Calls U::from(self).","","Get the iso-year of a Date/Datetime. This may not …","Get the microsecond of a Time64 (scaled from nanosecs)","Get the millisecond of a Time64 (scaled from nanosecs)","Get the minute of a Datetime/Time64","Get the month of a Date/Datetime","Get the nanosecond part of a Time64","Get the ordinal_day of a Date/Datetime","Extract quarter from underlying NaiveDateTime …","","","Get the second of a Datetime/Time64","Convert from Date/Time/Datetime into Utf8 with the given …","Get the (local) time of a Date/Datetime/Time","","Convert from Date/Time/Datetime into Utf8 with the given …","","","","","","Extract the week from the underlying Date representation. …","Extract the ISO week day from the underlying Date …","Change the underlying TimeUnit of the Series. This does …","Get the year of a Date/Datetime","","","","","","APIs to write to JSON","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","FallibleStreamingIterator that serializes a Chunk into …","FallibleStreamingIterator that serializes an Array to …","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","","Advances the iterator to the next position.","","","","","","","","","","","","","","Advances the state of the iterator to the next item from …","","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","","","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new RecordSerializer.","Creates a new Serializer.","Advances the iterator, returning the next element.","","","Advances the back of the iterator, returning the last …","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","","","","","","","","","","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Writes valid JSON from an iterator of (assumed …","Safety","Safety","","","","A collection of column stats with a known schema.","The statistics for a column in a Parquet file they …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extract day from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract year from underlying NaiveDateTime representation. …","","Extract minute from underlying NaiveDateTime …","Extract month from underlying NaiveDateTime representation.","Returns the number of nanoseconds since the whole non-leap …","","Returns the day of year starting from 1.","Extract ordinal year from underlying NaiveDateTime …","Extract quarter from underlying NaiveDateTime …","Apply a rolling max to a Series.","Apply a rolling mean to a Series.","Apply a rolling median to a Series.","Apply a rolling min to a Series.","Apply a rolling quantile to a Series.","Apply a rolling std_dev to a Series.","Apply a rolling sum to a Series.","Apply a rolling variance to a Series.","Extract second from underlying NaiveDateTime …","Convert from Time into Utf8 with the given format. See …","Convert date(time) object to timestamp in TimeUnit.","","Convert Time into Utf8 with the given format. See chrono …","Returns the ISO week number starting from 1. The return …","Returns the ISO weekday number where monday = 1 and sunday …","Extract year from underlying NaiveDateTime representation. …","Utility trait to slice concrete arrow arrays whilst …","Slices this Array.","Slices the Array.","","","","used a lot, ensure there is a single impl","","","","","Specialized expressions for Series of DataType::Utf8.","","","Concat the values into a string array.","Check if this column of strings contains a Regex. If strict…","Check if a string value contains a literal substring.","Count all successive non-overlapping regex matches.","","","","Check if a string value ends with the sub string.","","Extract a regex pattern from the a string value. If …","Extract each successive non-overlapping match in an …","Returns the argument unchanged.","Parse string in base radix into decimal.","","Calls U::from(self).","Return the number of bytes in the string (not characters).","Remove leading characters, or whitespace if matches is …","Return the number of characters in the string (not bytes).","Replace values that match a regex pat with a value.","Replace all values that match a regex pat with a value.","Replace values that match a regex pat with a value.","Remove trailing characters, or whitespace if matches is …","Split the string by a substring. The resulting dtype is …","Split exactly n times by a given substring. The resulting …","Split exactly n times by a given substring and keep the …","Split the string by a substring and keep the substring. …","Split by a given substring, returning exactly n items. If …","Check if a string value starts with the sub string.","Slice the string values.","Remove leading and trailing characters, or whitespace if …","Convert a Utf8 column into a Date/Datetime/Time column.","Convert a Utf8 column into a Date column.","Convert a Utf8 column into a Datetime column.","Convert a Utf8 column into a Decimal column.","Convert all characters to lowercase.","Convert a Utf8 column into a Time column.","Convert all characters to uppercase.","","","","","","Infer the schema of a CSV file by reading through the …","","check if csv file is compressed","","Compare Series and ChunkedArray’s and get a boolean mask …","","Used to convert a ChunkedArray, &dyn SeriesTrait and Series","","","","Series","","","","","","Get the sum of the Series as a new Series of length 1.","convert numerical values to their absolute value","","","","","Append in place. This is done by adding the chunks of other…","","","Retrieve the indexes needed for a sort.","Get first indexes of unique values.","","Unpack to ChunkedArray of dtype [DataType::Array]","Returns a reference to the Arrow ArrayRef","Get a hold to self as Any trait reference. Only …","Get a hold to self as Any trait reference. Only …","Packs every element into a list","","","","","","Rechunk and return a pointer to the start of the Series. …","Only implemented for numeric types","Unpack to ChunkedArray of dtype [DataType::Binary]","","","","Unpack to ChunkedArray of dtype [DataType::Boolean]","","","","","","","","Cast [Series] to another [DataType]","Cast from physical to logical types without any checks on …","Unpack to ChunkedArray of dtype [DataType::Categorical]","Ceil underlying floating point array to the highest …","","","","Get the lengths of the underlying chunks","Underlying chunks.","Safety","","Clamp underlying values to the min and max values.","Clamp underlying values to the max value.","Clamp underlying values to the min value.","","","Clone inner ChunkedArray and wrap in a new Arc","","","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","Unpack to ChunkedArray of dtype [DataType::Date]","Unpack to ChunkedArray of dtype [DataType::Datetime]","Unpack to ChunkedArray of dtype [DataType::Decimal]","","","","","","","","","","","","","","","","","Drop all null values and return a new Series.","Get datatype of series.","Unpack to ChunkedArray of dtype [DataType::Duration]","","","Check for equality.","Create a boolean mask by checking for equality.","","","Check for equality where None == None.","","Create a boolean mask by checking for equality.","","","","","","Returns an estimation of the total (heap) allocated size …","Explode a list Series. This expands every item to a new …","Extend the memory backed by this array with the values …","Extend with a constant value.","Unpack to ChunkedArray of dtype [DataType::Float32]","Unpack to ChunkedArray of dtype [DataType::Float64]","Get field (used in schema)","Replace None values with one of the following strategies:","Filter by boolean mask. This operation clones data.","Filter by boolean mask. This operation clones data.","Floor underlying floating point array to the lowest …","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","Takes chunks and a polars datatype and constructs the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a single value by index. Don’t use this operation …","Get a pointer to the underlying data of this Series. Can …","Get the value at this index as a downcastable Any trait …","Get a single value by index. Don’t use this operation …","Greater than comparison.","","Create a boolean mask by checking if self > rhs.","","Greater than or equal comparison.","","","Create a boolean mask by checking if self >= rhs.","Return if any the chunks in this [ChunkedArray] have a …","Get the head of the Series.","Unpack to ChunkedArray of dtype [DataType::Int16]","Unpack to ChunkedArray","Unpack to ChunkedArray of dtype [DataType::Int64]","Unpack to ChunkedArray of dtype [DataType::Int8]","","","Convert the values of this Series to a ListChunked with a …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Check if Series is empty.","Check if numeric value is finite","Check if elements of this Series are in the right Series, …","Check if float value is infinite","Check if float value is NaN (note this is different than …","Check if float value is NaN (note this is different than …","Get a mask of the non-null values.","Get a mask of the null values.","","","Check if Series is sorted.","iterate over Series as AnyValue.","Get length of series.","Take num_elements from the top as a zero copy view.","Unpack to ChunkedArray of dtype list","","Less than comparison.","","Create a boolean mask by checking if self < rhs.","","Less than or equal comparison","Create a boolean mask by checking if self <= rhs.","","","Returns the maximum value in the array, according to the …","Get the max of the Series as a new Series of length 1.","Returns the mean value in the array Returns an option …","","Returns the median value in the array Returns an option …","Get the median of the Series as a new Series of length 1.","Returns the minimum value in the array, according to the …","Get the min of the Series as a new Series of length 1.","Compute the most occurring element in the array.","","","","","Number of chunks in this Series","Get unique values in the Series.","Name of series.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new empty Series","Create a new Series filled with values from the given …","","","Check for inequality.","","Create a boolean mask by checking for inequality.","","Check for inequality where None == None.","","Create a boolean mask by checking for inequality.","","Count the null values.","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","","Get the product of an array.","Get the quantile of the ChunkedArray as a new Series of …","","Aggregate all chunks to a contiguous array of memory.","","","","Rename the Series.","Rename series.","","","return a Series in reversed order","Apply a custom function over a rolling/ moving window of …","Apply a rolling max to a Series.","","","","Apply a rolling quantile to a Series.","Apply a rolling std_dev to a Series.","","Apply a rolling variance to a Series.","Round underlying floating point array to given decimal.","Sample a fraction between 0.0-1.0 of this ChunkedArray.","","Check if series are equal. Note that None == None …","Check if all values in series are equal where None == None …","","Shift the values by a given period and fill the parts that …","Shrink the capacity of this array to fit its length.","Shrink the capacity of this array to fit its length.","","","Get a zero copy view of the data.","","","Get the standard deviation of the Series as a new Series …","Concat the values into a string array.","","Cast throws an error if conversion had overflows","Unpack to ChunkedArray of dtype [DataType::Struct]","","","","","Compute the sum of all values in this Series. Returns …","Get the sum of the Series as a new Series of length 1. …","Get the tail of the Series.","Take by index. This operation is clone.","Traverse and collect every nth element in a new array.","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index. This operation is clone.","Take by index if ChunkedArray contains a single chunk.","Take by index if ChunkedArray contains a single chunk.","Take by index if ChunkedArray contains a single chunk.","","Unpack to ChunkedArray of dtype [DataType::Time]","Convert a chunk in the Series to the correct Arrow type. …","","","","","Cast a datelike Series to their physical representation. …","","","","","","","","","","","","","","Unpack to ChunkedArray of dtype [DataType::UInt16]","Unpack to ChunkedArray of dtype [DataType::UInt32]","Unpack to ChunkedArray of dtype [DataType::UInt64]","Unpack to ChunkedArray of dtype [DataType::UInt8]","Get unique values in the Series.","Compute the unique elements, but maintain order. This …","","","Unpack to ChunkedArray of dtype [DataType::Utf8]","Get the variance of the Series as a new Series of length 1.","","","","Create a new ChunkedArray with values from self where the …","","","","","","","","","","","","","","","","","","","","","","","","Checked integer division. Computes self / rhs, returning …","Checked integer division. Computes self / rhs, returning …","","","drop nulls","ignore nulls","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","A wrapper type that should make it a bit more clear that …","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","Swaps inner state with the array. Prefer …","","","","","","Temporary swaps out the array, and restores the original …"],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,917,917,917,917,917,917,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,108,109,112,918,110,108,109,111,108,108,112,918,112,108,109,918,110,111,110,108,109,111,110,108,109,111,127,128,133,108,109,110,108,109,111,110,108,109,111,110,108,109,111,112,112,918,110,108,109,112,111,0,110,108,109,111,919,919,919,919,0,110,108,109,111,112,110,108,109,111,0,110,108,109,111,918,110,111,110,108,109,111,110,108,109,111,110,108,109,111,110,108,109,111,0,0,0,0,0,0,0,112,112,112,127,112,112,112,0,112,0,0,0,0,0,0,0,0,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,117,117,115,117,119,121,123,115,117,119,121,123,124,125,115,117,119,121,123,125,0,115,117,119,121,123,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,115,117,119,121,123,124,125,0,0,761,0,0,97,53,35,0,0,0,16,0,0,0,0,787,0,0,0,144,146,150,53,35,157,0,0,53,0,0,0,0,0,53,35,157,0,0,0,148,0,53,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,787,0,0,53,35,157,157,0,0,53,35,0,0,53,35,157,157,0,0,144,157,0,16,53,35,157,0,0,0,157,0,0,0,761,157,157,0,157,53,35,157,0,0,53,35,157,0,0,148,146,150,0,0,0,0,0,228,920,0,0,0,921,91,0,19,0,0,0,0,0,0,0,0,787,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,0,0,0,0,16,16,0,0,0,0,922,923,181,924,925,97,97,0,0,157,0,157,0,0,157,761,787,0,91,53,35,157,0,0,0,0,0,0,0,0,0,0,920,228,0,0,91,157,144,146,146,146,0,232,61,91,232,61,144,146,146,182,183,0,0,0,232,61,5,91,150,0,16,761,53,35,157,0,0,0,0,0,0,53,35,0,0,53,0,0,0,146,144,787,926,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,16,16,0,232,0,0,16,182,183,182,19,0,0,0,0,0,16,53,35,157,0,16,53,0,0,0,0,0,0,923,0,0,53,35,157,157,0,0,0,0,157,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,0,35,53,35,157,0,0,53,0,0,0,0,0,0,146,91,142,143,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,927,154,926,928,126,127,127,112,918,128,129,130,126,127,131,132,133,112,127,128,918,133,112,129,130,126,127,127,129,130,918,128,131,132,133,129,130,929,929,930,930,929,929,929,929,931,154,931,932,154,54,154,135,154,135,104,104,104,104,933,154,934,104,104,154,154,154,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,95,96,95,96,929,0,127,128,133,936,937,154,936,0,104,93,95,96,95,96,938,154,938,154,154,91,142,143,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,154,91,142,143,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,0,104,104,151,939,939,939,939,135,152,152,0,0,0,0,142,104,91,104,93,145,29,148,149,150,151,153,0,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,145,29,34,104,0,926,928,104,104,104,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,154,937,154,92,104,104,91,104,104,104,29,148,149,150,151,152,153,925,925,91,91,91,91,104,104,104,104,29,29,29,29,148,148,148,148,149,149,149,149,150,150,150,150,151,151,151,151,152,152,152,152,153,153,153,153,940,940,129,130,126,127,112,129,130,126,127,112,154,153,941,942,154,153,918,128,112,131,132,133,0,91,142,143,104,104,104,29,146,148,135,149,150,151,152,153,93,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,97,97,97,97,97,97,128,129,130,126,127,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,93,93,93,144,145,29,34,146,131,132,133,148,135,149,150,151,151,152,153,153,943,944,945,104,151,946,946,919,946,946,919,104,919,919,947,948,949,104,922,181,924,154,182,183,184,185,186,187,189,190,191,192,193,194,195,196,197,151,950,937,950,937,151,151,28,151,151,927,104,104,951,151,153,154,922,952,182,183,184,185,186,187,189,190,191,192,193,194,195,196,197,181,924,154,953,954,925,104,925,154,955,104,29,148,152,759,776,104,951,151,153,0,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,129,130,126,127,112,151,143,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,104,135,151,104,771,104,775,154,151,956,222,957,154,958,222,154,154,135,135,152,771,154,104,135,135,151,151,151,151,104,149,154,135,151,154,0,925,104,925,29,104,959,960,154,959,154,961,154,962,154,151,0,152,153,145,959,960,154,93,932,154,926,928,29,34,154,932,154,154,92,152,104,963,921,964,128,129,130,126,127,104,131,132,133,151,152,104,965,154,151,104,104,104,104,925,925,0,154,135,29,34,104,966,154,966,154,104,0,0,0,0,143,960,104,104,104,961,962,154,154,0,926,928,151,154,151,967,154,968,154,149,969,154,970,970,970,934,151,151,971,154,972,151,151,918,154,131,132,0,154,135,759,973,135,973,135,135,931,931,154,104,104,104,104,104,974,975,154,976,154,149,776,0,104,926,928,759,959,960,977,154,154,154,154,154,923,977,154,154,151,54,135,978,91,142,143,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,104,151,149,149,929,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,151,151,151,151,151,951,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,104,104,104,104,104,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,54,20,932,154,104,104,0,759,135,135,776,135,776,135,974,975,154,776,979,979,104,182,183,91,184,185,142,186,143,187,189,190,935,191,192,193,194,195,196,197,97,128,129,130,126,127,104,93,144,145,29,34,146,131,132,133,148,135,149,150,151,152,153,104,93,93,921,151,151,152,153,135,980,981,981,0,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,212,0,0,0,228,920,920,228,0,0,0,214,214,0,0,214,214,213,214,213,214,213,213,213,213,214,213,214,213,214,213,213,213,214,213,214,213,214,213,214,213,213,214,213,214,213,214,213,214,213,0,53,35,0,0,0,0,53,35,157,0,53,0,53,35,157,0,0,0,53,35,0,0,0,0,0,53,35,157,157,0,0,53,35,0,0,53,35,157,157,0,0,157,53,35,157,0,0,157,0,157,157,0,157,53,35,157,0,0,53,35,157,0,0,0,228,920,921,0,0,0,0,0,0,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,157,157,157,53,35,157,0,0,920,228,0,0,157,232,61,232,61,232,61,5,53,35,157,0,53,35,0,53,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,232,0,53,35,157,0,53,53,35,157,157,0,0,0,0,157,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,35,53,35,157,0,53,0,933,937,937,92,937,937,28,952,0,92,921,921,0,0,0,943,944,945,0,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,0,216,216,0,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,221,221,0,0,0,0,221,0,973,973,0,0,0,0,0,0,0,982,983,97,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,923,181,924,925,97,97,0,0,146,146,146,146,146,182,183,0,0,0,0,0,146,0,182,183,182,0,0,0,0,0,0,0,0,0,923,0,0,0,0,146,929,929,930,930,929,929,929,929,931,931,932,95,96,929,936,936,95,96,939,939,939,939,29,34,925,925,940,940,941,942,0,948,949,181,924,950,950,181,924,925,925,956,957,958,925,925,29,959,959,961,959,932,29,34,932,965,925,925,29,34,966,966,961,967,968,969,970,970,970,971,972,0,931,931,974,976,959,977,923,977,978,929,932,974,0,980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,0,0,0,0,53,35,157,0,53,0,53,35,157,0,0,0,53,35,0,0,0,0,0,53,35,157,157,0,0,53,35,0,0,53,35,157,157,0,0,157,53,35,157,0,0,157,0,157,157,0,157,53,35,157,0,0,53,35,157,0,0,0,228,920,921,0,0,0,0,0,0,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,157,157,157,53,35,157,0,0,920,228,0,0,157,232,61,232,61,232,61,5,53,35,157,0,53,35,0,53,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,232,0,53,35,157,0,53,53,35,157,157,0,0,0,0,157,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,35,53,35,157,0,53,0,59,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,53,53,59,53,9,8,10,64,80,82,30,83,85,76,57,60,33,31,225,226,227,227,226,53,59,59,933,59,920,227,235,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,920,227,235,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,937,59,59,59,59,59,226,225,53,59,59,0,80,82,30,83,85,76,57,60,33,31,59,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,59,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,92,59,92,59,228,53,35,920,227,235,59,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,920,227,235,59,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,59,64,80,82,30,83,85,76,57,60,33,31,227,920,227,235,59,9,8,18,3,10,64,21,228,229,226,225,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,937,59,59,59,59,59,226,225,53,92,229,53,35,35,92,61,157,232,225,225,229,229,229,229,53,53,53,53,35,35,35,35,92,92,92,92,61,61,61,61,157,157,157,157,232,232,232,232,227,59,225,225,225,228,227,228,230,53,53,35,35,92,61,61,157,232,920,227,235,59,59,59,9,8,18,3,10,64,21,228,229,226,225,230,53,53,53,35,35,35,35,92,92,92,61,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,157,157,232,226,59,59,226,59,59,59,59,59,59,92,226,225,228,59,59,59,59,59,937,226,225,59,59,59,59,59,937,226,225,228,28,9,8,18,3,10,64,21,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,228,226,53,952,225,225,229,53,35,61,157,232,59,59,920,227,235,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,35,920,227,235,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,235,225,59,59,59,59,59,226,225,53,226,225,35,228,225,35,228,35,53,35,35,35,53,35,35,53,35,226,228,226,225,226,225,225,0,59,59,59,59,59,59,59,59,59,64,80,82,30,83,85,76,57,60,33,31,226,226,225,92,92,59,59,921,227,59,59,59,59,59,59,59,59,225,92,235,225,225,225,59,59,53,59,225,225,64,80,82,30,83,85,76,57,60,33,31,225,59,59,228,59,59,59,226,92,59,59,59,235,226,226,59,59,59,59,64,80,82,30,83,85,76,57,60,33,31,59,59,59,35,92,61,61,157,59,59,59,59,59,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,35,157,59,59,59,53,35,61,59,59,53,920,227,235,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,920,227,235,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,920,227,235,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,226,225,226,35,920,227,235,59,9,8,18,3,10,64,21,228,229,226,225,230,53,35,92,61,80,82,30,83,85,76,57,60,33,31,58,65,63,66,231,70,157,232,921,0,0,0,228,920,920,228,0,0,0,0,0,243,243,243,243,243,243,243,0,243,243,243,243,0,243,243,243,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,0,217,217,217,16,16,217,16,217,217,217,0,0,16,16,16,16,16,244,16,217,244,16,217,244,244,16,217,244,16,217,244,16,217,0,244,244,16,16,217,217,244,244,16,16,16,16,217,217,217,217,217,217,217,217,217,217,0,244,16,217,244,16,217,0,0,0,0,0,16,217,0,16,0,244,16,217,244,16,217,244,16,217,244,16,217,244,16,217,16,0,0,0,0,0,0,0,0,0,257,256,107,256,256,256,257,256,107,257,256,107,107,257,256,107,257,256,107,257,256,107,257,256,256,107,257,256,256,107,257,256,107,256,256,256,256,256,256,256,257,257,256,107,257,256,256,256,107,256,107,107,107,257,256,107,257,256,256,107,256,256,256,256,984,985,256,107,0,256,257,256,107,257,256,107,257,256,107,257,256,107,257,256,107,984,985,256,256,256,107,107,257,257,257,257,257,257,257,0,0,260,0,0,0,105,105,261,0,0,261,261,0,0,261,261,0,0,261,261,261,261,261,261,261,261,261,261,261,0,261,261,0,261,261,261,261,261,261,261,261,261,261,261,261,261,261,261,261,261,261,0,0,261,0,261,0,0,261,0,261,261,261,0,0,261,261,261,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,271,118,282,47,276,285,277,286,122,269,120,278,279,274,48,280,273,289,116,296,48,48,48,275,269,269,271,48,273,116,274,47,118,47,276,277,122,120,278,279,48,280,116,37,283,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,37,118,47,276,277,122,120,278,279,48,280,116,283,281,271,282,284,285,286,269,274,288,273,289,283,281,271,282,284,285,286,269,287,274,288,273,289,283,281,271,282,284,285,286,269,287,274,288,273,289,37,275,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,118,47,276,277,122,120,278,279,48,280,116,296,296,281,285,274,273,289,296,296,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,281,271,118,282,47,276,285,277,286,122,269,120,278,279,274,48,280,273,289,116,296,281,271,118,282,47,276,285,277,286,122,269,120,278,279,274,48,280,273,289,116,296,37,283,281,271,118,118,282,47,47,284,276,276,285,277,286,122,269,120,278,279,287,274,48,48,288,280,273,289,116,116,281,271,282,284,269,274,48,273,289,116,281,118,289,116,122,120,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,48,48,48,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,37,37,37,37,271,118,118,282,47,47,276,276,285,277,277,122,122,120,120,278,278,279,279,274,48,48,280,280,273,116,116,0,281,271,282,274,273,289,274,274,281,271,282,274,273,289,281,271,282,274,273,289,271,282,274,273,271,282,274,273,271,273,278,280,269,37,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,281,271,271,271,118,118,118,118,118,282,282,47,47,47,47,284,284,284,276,276,276,276,276,285,285,277,277,277,277,286,122,122,122,269,120,120,120,278,278,279,279,279,287,274,274,274,48,48,48,48,288,280,280,273,273,273,289,116,116,116,116,116,296,47,48,118,116,48,47,48,281,271,118,282,47,277,274,48,273,289,116,47,47,48,48,271,118,273,116,118,282,47,277,274,48,116,281,271,118,282,47,274,48,273,289,116,281,271,118,282,47,274,48,273,289,116,271,118,282,47,274,48,273,116,271,282,47,274,48,273,48,274,48,118,118,47,47,277,122,122,120,48,48,116,116,120,120,0,280,48,118,47,122,120,48,116,0,118,122,120,116,0,280,280,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,271,282,284,269,274,288,273,284,269,273,281,118,47,274,48,288,289,116,281,118,282,47,47,276,285,277,122,120,278,48,48,280,273,289,116,296,118,47,48,116,296,296,37,283,37,118,47,122,120,48,116,276,280,37,283,118,47,122,120,48,116,281,271,118,282,47,276,285,277,122,120,278,274,48,280,273,289,116,276,285,276,284,276,276,276,37,283,281,281,271,118,118,282,47,47,284,276,276,285,285,277,277,286,286,122,122,269,269,120,120,278,278,279,287,274,48,48,288,280,280,273,273,289,289,116,116,284,48,48,48,286,269,288,281,271,118,282,47,284,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,118,47,276,277,122,120,278,279,48,280,116,0,286,269,269,118,47,276,277,122,120,278,279,48,280,116,0,273,289,116,269,286,269,296,296,296,37,986,281,271,118,118,269,120,278,280,273,289,116,116,0,48,48,48,48,48,48,281,271,282,285,274,273,289,281,271,282,285,274,288,273,289,283,281,271,282,284,284,285,286,269,287,274,288,273,289,987,286,286,48,48,283,281,281,271,271,282,282,284,284,285,285,286,286,269,269,287,274,274,288,288,273,273,289,289,48,48,48,48,48,48,48,48,48,282,274,274,271,118,47,276,277,122,120,278,274,48,273,116,47,274,48,283,281,281,271,271,282,282,284,284,285,285,286,286,269,269,287,274,274,288,288,273,273,289,289,285,277,286,122,296,37,118,118,47,47,276,276,277,277,122,122,120,120,278,278,279,279,48,48,280,280,116,116,118,47,276,277,122,120,278,279,48,280,116,118,47,276,277,122,120,278,279,48,280,116,37,118,118,47,47,276,276,277,277,122,122,120,120,278,278,279,279,48,48,280,280,116,116,37,118,47,276,277,122,120,278,279,48,280,116,37,118,47,276,277,122,120,278,279,48,280,116,48,48,48,277,274,48,37,118,47,276,277,122,120,278,279,48,280,116,281,271,118,282,47,276,285,277,286,122,269,120,278,279,274,48,280,273,289,116,296,331,281,271,282,284,286,269,274,273,289,269,332,281,271,282,285,286,269,274,273,289,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,281,285,277,289,276,271,118,282,47,274,273,116,271,118,282,47,274,273,116,120,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,281,271,118,282,47,276,285,277,122,120,278,279,274,48,288,280,273,289,116,276,116,333,281,271,282,284,285,286,269,274,273,289,286,269,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,280,37,283,281,271,118,118,282,47,47,284,276,276,285,277,277,286,122,122,269,120,120,278,279,287,274,48,48,288,280,273,289,116,116,281,118,47,276,285,277,122,120,278,48,288,280,273,289,116,281,118,47,285,277,122,120,278,48,280,273,289,116,986,281,271,118,118,282,47,284,276,285,277,286,122,269,120,274,48,288,273,289,116,116,271,118,282,47,276,277,122,120,278,274,48,273,116,276,285,274,281,271,118,282,47,284,276,285,277,286,122,269,120,278,279,287,274,48,288,280,273,289,116,296,281,271,273,289,281,271,282,285,269,274,273,289,274,37,271,118,118,47,47,276,276,277,277,122,122,120,120,278,278,279,48,48,280,116,116,47,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,299,308,300,302,306,307,304,305,337,303,309,301,338,338,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,306,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,338,299,308,300,302,306,307,304,305,337,303,309,301,338,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,338,299,308,300,302,306,307,304,305,337,303,309,301,0,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,299,308,300,302,306,307,304,305,337,303,309,301,0,0,0,0,0,0,0,0,88,342,220,0,88,220,220,0,0,88,220,220,88,220,220,88,220,220,88,342,220,88,342,220,220,0,88,220,88,342,220,88,342,220,88,220,88,342,220,88,342,220,88,342,220,88,220,220,220,220,220,220,220,88,342,220,88,88,88,342,220,220,0,88,88,88,220,220,220,88,220,88,220,88,88,220,88,220,88,88,88,342,220,88,342,220,88,88,88,342,220,88,88,220,88,220,88,220,88,88,342,220,88,342,342,88,220,342,88,220,88,0,342,220,220,220,0,220,220,220,220,220,342,88,88,88,88,0,88,342,220,88,342,220,88,220,88,220,88,342,220,88,220,88,342,220,0,0,88,220,0,88,342,220,220,0,0,0,0,0,0,0,311,311,0,0,0,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,346,311,0,346,311,310,345,346,311,310,345,346,311,0,347,341,348,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,0,347,341,348,310,345,346,311,347,341,348,310,345,346,311,340,0,0,347,341,348,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,347,347,341,341,347,0,347,341,347,341,348,310,345,346,311,311,347,341,348,310,345,346,311,310,346,311,310,346,311,988,347,347,341,341,348,988,988,347,341,341,348,0,0,0,347,341,348,310,346,311,345,340,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,347,341,348,310,345,346,311,311,311,347,341,348,310,345,346,311,0,0,179,179,343,179,343,179,179,179,179,343,343,179,179,343,179,343,179,179,179,343,343,343,179,179,179,179,179,179,343,179,343,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,343,179,343,179,343,179,343,179,0,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,989,0,0,0,0,0,0,0,0,0,989,989,0,0,0,0,0,989,989,0,0,989,989,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,992,993,994,995,996,0,0,997,0,0,998,0,0,999,1000,1001,0,1002,1003,1004,1005,0,1006,0,0,1007,1008,1009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,364,364,0,0,364,364,0,0,0,0,0,0,364,364,364,0,0,0,364,0,0,0,364,364,364,0,364,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,364,364,364,0,0,0,0,0,0,0,0,0,364,364,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1010,0,0,0,0,0,1011,1011,0,1012,0,1012,0,0,0,1012,0,1012,0,0,0,1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,157,240,157,0,157,157,373,234,157,157,372,240,157,157,157,0,240,157,240,157,234,157,234,157,234,157,234,234,233,157,234,234,233,157,234,233,157,234,233,157,0,157,0,240,157,240,157,240,157,240,157,240,157,0,232,232,234,373,232,240,157,0,240,0,0,0,232,372,240,157,157,157,0,157,234,233,157,234,233,157,234,233,157,234,233,157,240,157,0,240,157,373,234,240,233,372,373,234,240,233,372,373,234,240,233,372,373,234,240,233,372,373,234,240,233,372,373,152,234,240,233,372,373,234,240,233,372,373,234,240,233,372,373,234,240,233,372,373,240,234,234,234,234,240,240,240,240,233,233,233,233,372,372,372,372,373,373,373,373,153,234,240,233,372,373,234,240,233,372,373,0,234,240,233,372,373,234,240,233,372,373,234,240,233,372,373,372,152,372,152,153,152,372,234,240,233,372,373,234,240,233,372,373,234,240,233,372,373,234,240,233,372,373,234,240,233,372,373,0,217,217,217,217,217,217,217,0,0,0,0,0,378,374,375,376,378,374,375,376,378,374,375,376,378,374,375,376,378,374,374,375,375,376,376,374,375,376,0,0,0,378,374,375,376,378,374,375,376,0,0,378,374,375,376,378,374,375,376,0,378,378,374,375,376,378,374,375,376,378,378,374,375,376,378,374,375,376,0,0,0,0,0,0,0,0,379,380,0,379,380,379,380,379,380,379,380,379,379,380,379,380,379,379,380,379,380,379,380,379,380,379,380,379,380,379,380,380,0,379,380,379,380,379,380,379,380,379,380,0,0,252,0,0,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,0,388,0,0,0,252,252,388,381,382,381,385,388,386,252,381,382,385,388,386,252,381,382,381,382,381,382,385,388,386,252,381,382,385,388,386,252,381,382,0,385,388,386,252,381,382,252,381,382,385,388,386,252,381,382,385,385,388,386,252,381,382,385,388,386,252,381,382,385,385,386,381,382,386,385,386,385,386,385,386,385,386,0,0,0,0,385,386,381,382,385,381,381,382,385,388,386,252,381,382,385,388,386,252,381,382,385,388,386,252,381,382,388,382,385,388,386,252,381,382,1013,1014,1014,1013,1015,1015,1016,1017,1013,1013,0,0,389,0,0,0,389,389,390,391,393,394,389,390,391,393,394,389,390,391,389,390,391,389,390,391,391,390,390,0,393,394,389,390,391,393,394,389,390,391,393,394,389,390,391,389,390,391,389,389,389,389,390,390,390,390,391,0,393,394,389,390,391,393,394,389,389,390,391,391,391,391,394,389,390,393,394,389,390,391,393,394,389,390,391,393,394,393,394,0,394,393,394,0,389,390,391,393,394,389,390,391,394,393,394,389,390,391,394,393,394,389,390,391,393,394,389,390,391,0,393,394,0,401,401,401,401,401,401,401,401,401,401,401,401,401,401,401,401,401,0,0,404,404,390,404,404,404,404,404,404,404,404,404,404,404,404,404,404,404,0,0,0,0,416,0,0,0,416,0,0,0,0,0,0,0,0,0,416,911,416,416,416,0,416,0,416,416,416,416,416,416,416,416,416,911,416,416,416,416,416,416,416,0,0,416,0,0,416,0,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,416,0,0,0,0,461,432,434,461,0,0,0,443,0,432,434,432,434,0,443,461,432,434,416,1018,0,253,253,0,0,423,461,461,0,453,0,434,461,434,461,434,434,461,432,434,253,416,1018,432,434,433,435,433,431,431,0,431,0,0,253,0,0,0,0,0,0,0,0,435,0,0,453,0,0,0,0,423,0,432,435,0,432,434,434,432,434,434,434,434,434,434,432,434,432,430,430,253,253,417,428,429,430,431,432,433,434,435,0,0,0,416,1018,425,426,427,416,416,428,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,416,417,253,417,428,429,430,431,432,433,434,435,253,417,428,429,430,431,432,433,434,435,417,417,0,419,429,417,429,417,416,0,0,419,417,0,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,417,428,417,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,428,431,432,433,434,435,431,431,431,431,432,432,432,432,433,433,433,433,434,434,434,434,435,435,435,435,417,417,416,416,253,253,417,428,429,430,431,432,433,423,427,434,435,441,416,425,426,450,253,253,253,253,253,253,253,253,417,428,429,430,431,431,432,433,423,427,434,454,456,457,458,435,441,416,416,1018,425,426,427,0,0,0,0,0,417,431,432,433,434,417,0,0,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,0,0,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,425,426,450,450,454,456,457,458,417,419,441,416,416,416,417,0,441,425,426,450,417,428,429,427,454,456,457,458,441,450,416,450,454,456,457,458,416,429,458,419,417,430,458,428,417,416,253,0,0,0,0,0,0,0,419,0,456,419,416,457,416,416,0,417,450,416,416,0,253,417,428,429,430,431,432,433,434,435,253,429,425,426,450,253,417,428,429,430,431,432,432,433,433,423,427,434,434,454,456,457,458,435,441,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,417,419,425,426,450,253,417,428,429,430,431,432,433,423,427,434,454,456,457,458,435,441,1019,1019,1019,1019,1020,1021,1020,1021,0,0,0,416,0,0,0,416,0,0,0,0,0,0,0,416,911,416,416,416,0,416,0,416,416,416,416,416,416,416,416,416,911,416,416,416,416,416,416,416,0,0,0,0,466,466,465,455,465,455,466,467,465,455,466,467,465,455,465,455,0,465,455,466,467,465,455,466,467,465,455,466,467,465,455,466,467,465,465,465,465,455,455,455,455,465,455,466,467,465,455,466,466,467,0,465,455,465,455,466,467,465,455,466,467,465,455,467,467,465,467,455,0,0,455,465,455,465,455,465,455,466,467,465,455,466,467,465,455,466,467,465,455,466,467,0,453,0,0,453,0,419,419,0,476,419,419,0,0,419,419,476,419,1019,1019,1019,1019,0,468,468,468,468,0,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,473,461,479,0,461,473,0,0,0,0,443,442,473,473,473,0,443,442,461,0,0,0,416,0,0,0,0,0,461,461,453,479,0,461,461,461,416,0,475,475,479,479,479,0,0,0,0,473,473,475,453,473,473,0,0,0,479,475,0,479,484,484,0,0,479,0,476,452,477,419,478,479,480,481,482,473,461,483,453,484,475,472,416,470,471,416,416,0,0,0,0,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,443,416,0,453,476,452,477,419,478,479,480,481,482,473,461,483,453,484,475,472,476,452,477,419,478,479,480,481,482,473,461,483,453,484,475,472,476,477,419,477,419,478,476,477,0,486,486,472,480,481,482,416,477,419,472,480,481,482,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,477,487,476,452,477,479,480,481,482,473,461,483,453,484,475,472,476,476,476,476,452,452,452,452,477,477,477,477,479,479,479,479,480,480,480,480,481,481,481,481,482,482,482,482,473,473,473,473,461,461,461,461,483,483,483,483,484,484,484,484,472,472,472,472,478,416,416,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,475,472,477,416,470,474,471,476,452,477,419,478,486,443,442,479,479,480,481,482,473,461,483,453,484,487,495,496,475,472,453,453,453,416,416,470,471,453,0,476,452,477,479,480,481,482,473,461,483,484,486,483,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,470,487,487,474,495,419,474,474,442,476,419,477,419,475,416,416,416,452,452,496,478,453,483,470,474,471,476,477,478,486,470,416,474,495,416,477,419,0,486,487,496,487,495,496,476,477,496,496,496,416,452,476,476,477,477,483,0,477,419,419,487,496,477,419,486,486,416,474,471,416,416,0,0,496,486,476,476,477,477,416,416,0,0,476,452,477,419,478,479,480,481,482,473,461,483,453,484,475,472,0,0,0,0,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,473,461,461,483,453,484,487,495,496,475,472,478,453,419,453,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,480,481,482,487,495,496,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,486,476,477,419,472,470,474,471,476,452,477,419,478,486,443,442,479,480,481,482,473,461,483,453,484,487,495,496,475,472,487,0,0,0,472,476,477,476,477,1019,1019,1019,1019,0,0,270,0,0,0,218,321,218,321,218,321,218,321,321,218,218,321,218,321,218,321,218,321,321,218,321,218,321,218,321,218,218,218,218,218,321,218,321,218,218,321,321,321,218,321,218,321,218,321,321,218,321,218,321,218,321,321,218,321,218,321,218,218,321,218,218,321,321,218,321,218,321,218,321,218,218,218,218,218,218,321,321,321,321,218,218,218,321,218,218,218,321,218,321,218,0,0,0,0,0,0,0,0,0,0,0,0,0,501,360,502,503,362,504,505,506,507,508,509,510,164,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,164,501,360,502,503,362,504,505,506,507,508,509,510,506,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,164,501,360,502,503,362,504,505,506,507,508,509,510,360,360,360,360,502,502,502,502,503,503,503,503,362,362,362,362,506,506,506,506,509,509,509,509,501,360,502,503,362,504,505,506,507,508,509,510,501,360,360,502,502,503,503,362,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,164,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,0,360,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,504,505,506,507,508,509,510,510,501,360,502,503,362,504,505,506,507,508,509,510,501,360,502,503,362,509,510,504,505,507,508,501,360,502,503,362,504,505,506,507,508,509,510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,234,367,234,234,234,270,0,0,234,234,234,234,234,234,234,0,0,272,0,234,234,234,234,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,365,361,367,514,365,361,367,514,514,514,365,361,0,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,365,361,367,514,365,365,365,365,361,361,361,361,514,514,514,514,0,365,365,361,361,367,367,514,514,349,515,516,365,361,367,514,371,272,365,361,367,514,367,367,272,365,361,367,514,340,371,514,365,361,514,0,349,515,516,365,361,367,514,349,515,516,365,361,367,514,349,515,516,516,516,365,361,367,514,365,361,0,365,361,514,349,515,516,365,361,349,515,516,361,514,371,0,349,515,516,272,365,361,367,514,367,367,272,365,361,367,514,340,365,361,367,514,365,361,367,514,371,349,515,516,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,349,515,516,365,361,367,514,1022,0,1022,1022,1022,0,0,353,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,1022,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,0,0,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,1023,1022,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,1022,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,0,0,0,0,0,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,0,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,527,1022,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,527,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,0,0,0,517,518,519,520,521,522,523,524,525,526,528,529,530,527,531,0,0,0,535,546,546,539,0,0,0,0,546,0,543,543,0,1024,546,0,544,0,546,546,546,0,0,237,158,0,0,532,513,237,158,224,0,0,532,513,546,546,539,539,544,0,0,0,0,0,0,539,535,546,546,0,511,0,0,0,0,0,0,0,544,0,539,546,535,0,544,544,0,0,543,544,0,544,0,238,538,532,539,513,540,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,238,238,532,513,513,513,513,237,237,237,158,158,158,158,224,224,532,513,237,158,224,532,237,532,237,532,237,535,532,237,532,237,535,532,237,532,237,535,532,237,535,158,532,237,535,158,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,238,513,237,158,513,237,158,532,513,237,158,238,513,237,158,513,237,158,532,513,237,158,238,538,532,539,513,540,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,238,538,532,539,513,540,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,238,532,513,237,158,541,224,238,532,513,237,158,541,224,513,158,513,511,1025,532,513,237,158,1025,532,513,237,158,238,549,513,513,513,237,158,224,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,538,540,543,238,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,1024,513,158,1024,513,158,535,512,512,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,513,512,542,536,238,538,532,539,513,540,533,237,158,541,224,512,536,535,543,544,545,546,534,547,548,238,238,238,238,538,538,538,538,532,532,532,532,539,539,539,539,513,513,513,513,540,540,540,540,533,533,533,533,237,237,237,237,158,158,158,158,541,541,541,541,224,224,224,224,512,512,512,512,536,536,536,536,535,535,535,535,543,543,543,543,544,544,544,544,545,545,545,545,546,546,546,546,534,534,534,534,547,547,547,547,548,548,548,548,549,566,512,536,513,238,238,538,538,532,532,539,513,513,540,540,549,533,237,237,158,158,541,224,224,512,512,542,536,536,535,543,543,544,544,545,545,546,534,547,548,548,0,532,513,237,158,224,532,513,237,158,224,238,538,532,539,513,513,513,513,513,513,513,513,513,540,549,533,237,237,158,158,541,224,224,512,542,536,535,543,544,545,546,534,547,548,224,224,224,224,224,224,224,224,544,546,237,237,513,511,511,237,237,224,224,511,512,542,536,238,513,513,513,237,158,224,544,546,158,158,158,158,546,544,546,532,513,511,511,237,237,237,237,237,237,238,532,539,513,540,533,237,158,541,224,512,536,535,544,546,534,548,1026,513,158,224,1026,238,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,238,1025,532,513,237,158,511,511,237,237,540,549,535,238,237,158,512,535,238,238,238,238,1026,513,158,224,238,1025,532,513,237,158,1025,532,513,237,158,238,0,532,513,532,513,546,1026,513,158,224,238,238,533,158,534,512,542,542,536,536,238,1025,544,544,238,238,238,238,238,238,1026,224,238,544,546,544,0,532,513,511,512,542,536,511,512,542,536,511,512,542,536,511,512,542,536,1025,532,513,237,158,1025,532,513,237,158,224,224,513,237,158,224,513,513,513,237,158,224,238,532,513,533,237,158,541,224,546,534,532,237,544,546,532,237,0,538,540,543,545,548,1027,513,158,224,1026,513,158,224,238,532,513,237,158,224,535,238,532,532,513,513,513,513,513,237,237,237,237,158,158,158,158,158,224,224,224,532,513,237,158,224,532,237,544,546,532,237,238,238,513,158,511,513,158,513,158,511,513,158,511,511,513,158,511,513,158,513,158,513,158,532,513,238,538,532,539,513,540,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,513,513,513,238,238,538,532,513,540,237,158,224,512,536,543,544,545,548,542,536,1027,513,158,224,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,544,545,546,546,534,547,548,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,535,512,238,538,532,539,513,540,549,533,237,158,541,224,512,542,536,535,543,544,545,546,534,547,548,237,541,541,513,1025,532,513,237,158,238,512,512,1025,532,513,237,158,1025,532,513,237,158,1026,513,158,224,1026,513,158,224,1025,532,513,237,158,1025,532,513,237,158,1026,513,158,224,1025,532,513,237,158,1025,532,513,237,158,1026,513,158,224,532,513,1025,532,513,237,158,511,1025,532,513,237,158,541,1025,532,513,237,511,511,511,511,238,557,560,0,564,0,564,560,560,557,560,562,0,0,557,560,560,560,560,0,564,562,562,562,560,560,560,562,562,562,562,559,557,560,0,564,560,557,564,564,0,0,0,0,0,562,562,560,562,562,559,564,0,560,562,562,562,562,562,562,562,557,557,562,560,560,560,560,560,560,559,559,560,561,562,563,564,557,565,551,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,559,560,561,562,563,564,557,565,551,565,565,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,559,559,559,559,560,560,560,560,561,561,561,561,562,562,562,562,563,563,563,563,564,564,564,564,557,557,557,557,565,565,565,565,559,560,561,562,563,564,557,565,551,552,552,0,0,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,565,565,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,551,565,565,565,565,565,565,565,565,551,552,552,551,565,565,0,0,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,0,565,565,565,565,565,565,565,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,559,560,561,562,563,564,557,565,551,552,565,565,565,565,565,565,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,535,0,511,535,0,0,511,566,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,546,546,539,0,0,0,546,546,0,544,546,546,546,0,546,546,539,539,544,0,0,0,0,539,546,546,0,511,544,0,539,546,0,544,544,0,0,544,0,544,0,511,1025,1025,566,511,511,511,511,511,1026,1026,1025,511,511,1026,1025,1025,1026,1025,1026,511,511,511,511,1025,1025,1027,1026,511,511,511,511,511,1027,1025,1025,1025,1026,1026,1025,1025,1026,1025,1025,1026,1025,511,1025,1025,511,511,511,511,0,0,1028,1029,0,0,0,0,0,0,0,0,0,1030,569,0,1030,1030,1030,1030,1030,1030,1030,1030,1030,0,0,0,0,0,6,0,569,1030,1030,1030,1030,1030,1030,0,0,0,0,0,0,0,0,0,0,1031,1032,358,1030,0,0,0,0,1030,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,366,567,0,366,567,366,366,368,366,366,366,366,366,569,570,569,570,0,0,0,366,366,290,291,1033,292,355,0,293,1033,1034,1035,294,0,0,0,366,366,366,366,1036,1036,569,570,569,570,1037,569,570,366,366,366,366,0,366,569,570,570,366,73,569,570,1036,1029,1038,1038,1038,1038,1038,1038,1038,1038,1036,1029,1029,6,1038,1038,1038,1038,1038,1038,366,0,366,569,570,0,366,569,570,1031,366,366,366,567,366,356,567,366,366,366,572,570,1036,1036,366,366,366,366,366,366,1039,366,366,366,1039,366,366,1032,1040,366,366,366,0,356,0,0,0,1036,358,366,366,0,366,1037,1036,1036,1036,366,1041,327,328,1041,329,356,572,0,1036,1036,0,366,567,366,366,366,366,1036,366,366,1036,1028,366,7,7,7,7,7,7,7,7,1036,1028,1028,366,570,7,7,7,7,7,7,1036,1036,366,569,570,569,570,569,570,1036,1036,569,570,334,335,359,1042,1043,336,0,572,0,0,0,1039,1044,1039,1045,0,0,0,0,368,0,73,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,1038,7,7,7,7,7,7,7,7,7,7,7,7,7,7,1030,1030,1030,1030,1030,1030,1030,1030,1030,1030,0,0,0,1030,1030,1030,1030,1030,1030,1030,1030,1030,366,1046,366,366,366,366,366,366,366,366,366,366,1046,1046,366,366,366,366,1046,366,366,366,366,366,1046,366,1046,366,1046,366,1046,366,366,1046,366,1046,366,1046,366,1046,366,1046,366,1046,1046,366,366,366,366,366,366,366,1046,1046,366,366,1046,1046,366,1046,366,366,1046,366,1046,366,1046,366,366,366,1046,366,1046,366,1046,366,1046,366,366,366,366,366,366,1046,366,1046,366,366,1046,0,0,356,572,0,356,356,572,0,572,0,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,1036,0,0,0,0,0,0,0,0,1028,1029,0,0,0,1029,1029,1029,1028,1028,1028,0,0,0,0,0,0,0,0,290,291,292,355,293,1034,1035,294,0,0,1033,1033,1037,1037,0,1031,1031,0,0,1032,1032,1040,0,0,0,322,323,324,0,0,0,0,1041,327,328,1041,329,0,0,0,0,0,0,334,335,359,1042,1043,336,358,0,0,0,358,0,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,1047,0,0,0,567,0,567,567,567,0,567,0,0,0,0,0,0,0,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,573,574,575,576,0,0,578,578,579,578,579,578,578,578,578,579,578,579,579,578,579,579,578,579,578,578,578,578,578,578,579,579,579,578,578,578,579,578,579,578,579,578,578,578,578,579,578,579,578,579,578,579,578,578,578,578,579,578,578,579,578,579,578,579,578,578,0,0,580,580,581,580,581,580,580,580,580,581,580,581,581,580,581,581,580,581,580,580,580,580,580,580,581,581,581,580,580,580,581,580,581,580,581,580,580,580,581,580,581,580,581,580,581,580,580,580,580,581,580,580,581,580,581,580,581,580,0,587,0,587,0,0,0,0,0,0,0,587,0,588,589,590,591,583,582,587,585,592,588,589,590,591,583,582,587,585,592,582,0,583,582,582,582,587,587,0,0,583,583,0,583,582,588,589,590,591,583,582,587,585,592,588,589,590,591,583,582,587,585,592,585,588,589,590,591,583,583,582,587,585,592,587,587,587,587,587,582,588,589,590,591,583,582,587,585,585,592,588,589,590,591,583,582,587,585,592,0,583,0,583,588,589,588,589,590,591,583,582,587,585,592,583,588,589,590,591,583,582,587,585,592,0,0,583,0,0,592,589,583,582,588,582,0,582,0,585,0,0,0,589,0,583,0,583,0,585,0,590,583,0,590,591,583,0,591,583,582,589,582,582,0,0,582,587,585,588,589,590,591,583,582,587,585,592,588,589,590,591,583,582,587,585,592,588,589,590,591,583,582,587,585,592,0,588,589,590,591,583,582,587,585,592,0,583,0,583,0,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,0,0,0,0,0,0,0,0,0,0,599,600,599,600,601,599,600,601,599,600,599,600,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,601,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,599,600,599,600,601,599,600,601,599,600,601,599,600,601,599,600,601,0,0,0,602,603,602,604,603,602,604,602,602,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,603,602,604,602,603,602,604,603,602,604,603,602,604,603,602,604,0,0,605,606,605,606,605,605,605,606,605,606,605,606,605,606,605,606,605,606,605,606,605,606,605,606,605,606,605,605,606,605,606,605,606,605,606,605,0,0,0,0,607,608,607,609,610,608,607,609,610,607,607,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,607,608,607,609,610,608,607,609,610,608,607,609,610,608,607,609,610,0,0,0,611,612,611,613,612,611,613,611,611,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,612,611,613,611,612,611,613,612,611,613,612,611,613,612,611,613,0,0,0,614,615,614,615,616,614,615,616,614,615,614,615,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,616,614,615,614,615,616,614,615,616,614,615,616,614,615,616,0,0,0,0,617,618,617,618,619,620,617,618,619,620,617,618,617,618,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,617,618,619,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,1048,1049,89,1050,1051,50,1048,1049,1050,1051,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,105,89,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,90,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,89,105,90,105,89,90,105,105,89,105,89,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,90,105,624,622,623,625,626,627,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,652,653,654,658,659,665,667,668,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,105,0,105,105,90,105,90,105,105,105,105,105,105,105,105,105,105,105,105,105,105,89,89,105,89,89,89,105,89,89,89,89,89,89,89,105,105,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,90,90,89,105,89,89,89,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,669,90,90,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,89,90,90,89,105,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,105,105,50,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,105,105,105,90,105,105,105,105,105,90,105,105,624,622,623,625,626,627,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,652,653,654,658,659,665,667,668,90,105,89,105,105,89,105,105,89,89,89,89,89,89,89,90,105,105,105,0,105,624,89,622,623,625,626,627,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,652,653,654,658,659,665,667,668,89,1052,1050,1051,674,105,1048,1049,105,90,105,89,89,0,105,105,90,90,90,90,89,105,105,105,105,105,105,105,105,105,89,89,0,0,90,105,105,105,105,105,105,105,105,105,90,89,89,105,0,90,89,105,90,651,89,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,89,89,89,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,89,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,105,105,89,90,89,105,624,622,623,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,344,650,651,652,653,654,655,656,657,658,659,660,661,662,664,665,666,667,668,89,90,90,90,105,624,622,623,625,626,627,636,637,638,639,640,641,642,643,644,645,646,647,647,647,647,647,647,647,647,647,647,647,647,648,649,652,653,654,658,659,665,667,668,105,105,105,105,90,651,90,0,0,596,679,679,680,598,0,0,0,596,596,681,0,0,0,0,0,598,681,681,681,680,679,596,681,596,679,679,679,1053,680,679,596,597,597,0,0,0,682,683,682,683,684,682,683,684,682,683,682,683,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,682,683,682,683,684,682,683,684,682,683,684,682,683,684,682,683,684,0,0,0,0,0,50,1048,1049,89,1050,1051,50,1048,1049,1050,1051,0,0,0,0,0,0,0,0,89,89,1054,1055,1056,89,90,89,90,89,90,89,89,90,89,90,90,89,89,89,89,89,89,89,89,89,89,89,89,89,90,90,89,89,89,89,669,90,90,89,90,90,89,50,90,90,90,89,89,89,89,89,89,89,89,89,90,89,89,1052,1056,1056,1056,1054,1054,1055,1055,1050,1051,1056,674,1048,1049,1056,1056,1056,1054,1054,1055,1055,1055,1055,1055,1055,1055,1055,1055,1054,1056,1055,1056,1056,1054,90,89,89,90,90,90,90,89,89,89,90,90,89,89,90,89,90,89,89,89,89,89,89,89,89,89,89,90,89,89,90,90,90,90,90,0,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,707,0,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,0,0,0,713,714,713,714,715,713,714,715,713,714,713,714,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,713,714,713,714,715,713,714,715,713,714,715,713,714,715,713,714,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,701,688,689,697,698,716,706,1054,1055,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,688,689,697,698,716,706,701,688,689,697,698,716,706,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,690,699,688,689,691,690,697,698,700,699,716,706,717,688,689,691,690,697,698,700,699,716,706,717,1054,1054,1055,1055,1054,1054,1055,1055,1055,1055,1055,1055,1055,1055,1055,1054,1055,1054,689,690,698,699,690,699,701,688,689,697,698,716,706,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,701,703,688,689,691,690,697,698,700,699,716,706,717,688,689,691,690,697,698,700,699,716,706,717,0,0,0,0,0,0,0,0,0,0,0,687,686,685,692,702,704,693,705,696,695,1056,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,1056,1056,1056,1056,1056,1056,1056,1056,1056,1056,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,687,686,685,692,702,704,693,705,696,695,0,718,718,718,718,718,718,718,718,718,718,718,718,718,718,718,718,0,0,719,719,720,719,720,719,719,719,720,719,720,719,720,719,720,719,720,720,719,720,719,720,719,720,719,720,719,720,719,720,719,720,719,719,720,719,720,719,720,719,720,719,720,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,723,724,245,721,722,727,728,731,732,725,733,734,721,722,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,723,724,739,0,721,721,721,721,721,721,721,721,723,724,723,724,245,721,722,727,728,731,732,725,733,734,723,724,245,721,722,727,728,731,732,725,733,734,735,730,728,731,723,724,725,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,245,723,724,723,724,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,725,722,245,722,722,722,722,722,0,729,729,721,721,721,729,723,724,245,245,721,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,721,729,727,723,724,729,729,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,735,730,736,737,728,731,733,733,738,734,736,736,737,737,722,725,721,725,721,725,729,733,729,722,727,725,733,723,724,733,733,725,725,723,724,729,723,724,723,724,721,725,735,730,736,737,728,731,738,734,738,734,739,726,732,723,724,738,725,245,722,721,721,739,726,732,721,721,721,737,728,731,738,734,723,724,721,721,722,721,723,724,723,724,245,721,722,727,728,731,732,725,733,734,245,721,729,723,724,245,721,721,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,723,724,729,723,724,245,721,722,727,735,730,736,737,728,731,726,732,725,733,738,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,743,741,740,746,747,750,751,744,752,753,740,741,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,742,743,758,741,741,741,741,741,741,741,741,742,743,742,743,741,740,746,747,750,751,744,752,753,742,743,741,740,746,747,750,751,744,752,753,754,749,747,750,742,743,744,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,742,743,742,743,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,744,740,740,740,740,740,740,748,748,741,741,741,748,742,743,741,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,741,748,746,742,743,748,748,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,754,749,755,756,747,750,752,752,757,753,740,744,741,744,741,744,748,752,748,740,746,744,752,742,743,752,752,744,744,742,743,748,742,743,742,743,741,744,754,749,755,756,747,750,757,753,757,753,758,745,751,742,743,757,744,740,741,741,758,745,751,741,741,741,756,747,750,757,753,742,743,741,741,740,741,742,743,742,743,741,740,746,747,750,751,744,752,753,741,748,742,743,741,741,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,742,743,748,742,743,741,740,746,754,749,755,756,747,750,745,751,744,752,757,753,761,0,0,761,760,761,761,0,0,760,0,0,760,761,242,242,242,242,242,242,242,242,242,242,242,242,242,242,772,773,760,761,242,772,773,760,761,242,242,760,761,242,760,761,242,242,242,242,761,242,772,773,760,761,242,772,773,760,761,242,242,772,773,760,761,242,242,242,242,242,242,242,242,761,242,761,761,761,761,242,0,242,242,242,242,242,242,242,760,761,242,242,242,242,242,772,773,760,761,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,0,242,242,242,242,242,0,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,772,773,760,761,242,242,772,773,760,761,242,772,773,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,772,773,242,242,242,242,242,242,242,242,242,242,242,242,0,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,772,773,242,242,242,242,242,242,242,242,242,242,242,242,242,242,760,761,242,242,242,242,242,242,242,772,773,760,761,242,242,242,242,772,773,760,761,242,772,773,760,761,242,242,242,242,242,242,242,242,242,242,772,773,760,761,242,242,242,242,242,242,242,0,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,776,0,778,778,0,0,778,0,0,0,0,0,0,781,19,0,778,0,778,778,778,778,778,778,778,778,778,781,19,0,778,778,778,777,19,764,778,764,0,777,764,19,781,785,780,779,777,19,764,778,781,785,780,779,777,19,764,778,777,19,764,778,777,19,764,778,764,777,19,781,785,780,779,779,777,19,764,778,781,785,780,779,777,19,764,778,764,780,781,785,780,779,777,777,19,764,778,777,19,777,777,777,777,19,19,19,19,0,781,777,764,777,777,19,764,778,778,0,781,785,780,779,777,777,777,777,19,19,764,778,778,777,777,19,764,764,19,19,954,764,19,781,785,780,779,777,19,764,778,781,785,780,779,777,19,764,778,19,785,777,777,780,777,777,781,19,777,777,19,764,764,764,781,19,764,764,764,764,764,777,764,785,785,764,777,19,764,764,19,777,19,764,764,19,764,764,777,19,764,778,778,781,785,780,779,777,19,764,778,781,785,780,779,777,19,764,778,781,785,780,779,777,19,764,778,19,19,19,764,781,785,780,779,777,19,764,778,981,981,0,0,0,0,0,0,0,0,0,1057,0,1058,1058,787,0,0,0,787,787,0,0,0,0,787,0,786,786,786,786,787,759,787,786,0,0,0,0,0,0,759,787,786,759,787,786,759,787,786,759,787,786,786,0,759,787,786,759,787,786,759,787,786,759,787,786,759,759,759,759,787,787,787,787,786,786,786,786,759,787,787,786,786,759,759,787,786,759,759,787,786,759,787,786,786,786,759,0,759,759,759,759,787,786,787,786,759,787,786,759,787,786,759,787,786,759,759,787,786,788,789,0,0,788,789,788,788,788,788,789,788,789,788,789,788,789,788,789,788,789,0,789,788,788,789,788,789,788,789,788,789,788,789,788,789,178,788,789,789,0,788,789,178,788,789,178,788,789,178,788,789,178,0,178,788,789,178,788,789,178,788,789,178,178,178,178,178,178,178,788,788,789,789,178,0,788,789,178,788,789,178,788,789,788,789,178,788,789,0,0,788,789,178,788,789,178,788,789,178,788,789,178,788,789,178,0,0,0,0,0,0,0,801,558,0,807,859,0,558,846,831,831,0,822,558,0,859,0,825,846,761,0,0,0,801,97,53,35,0,801,0,0,0,16,0,0,0,0,0,0,0,787,0,0,0,0,801,832,144,146,150,0,855,53,35,157,0,0,558,801,0,53,0,0,0,0,0,0,801,855,53,35,157,0,0,0,0,0,827,0,0,488,0,148,859,558,0,801,53,35,0,0,0,0,0,801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,801,558,16,832,558,16,801,801,807,558,778,787,0,0,0,801,801,801,801,801,0,0,0,859,828,0,855,53,35,157,157,0,0,855,0,53,35,0,0,0,0,53,35,157,157,0,0,144,157,801,859,822,801,845,558,0,16,0,855,53,35,157,0,0,0,0,0,0,801,822,822,859,558,0,801,558,853,0,0,859,157,0,859,801,0,0,558,807,778,761,157,157,0,157,855,53,35,157,0,0,855,53,35,157,0,0,801,822,148,146,150,828,0,0,0,558,0,0,0,0,0,0,228,920,0,0,778,0,0,0,0,0,0,853,822,822,488,0,859,921,91,0,781,19,0,0,0,0,0,807,778,0,0,0,0,787,0,0,855,53,35,157,0,0,855,53,35,157,0,0,855,53,35,157,0,0,855,53,35,157,0,0,801,0,157,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,846,0,846,0,0,846,846,0,846,846,846,846,846,922,923,181,924,925,97,97,853,859,0,0,0,0,904,0,0,904,0,0,558,395,157,0,157,0,0,157,807,778,761,0,0,0,0,0,825,827,787,840,0,824,91,53,35,157,0,0,0,0,801,0,0,0,0,0,0,0,0,0,0,558,0,920,228,859,801,801,0,0,0,0,830,91,801,822,822,488,488,157,859,807,144,146,778,146,807,146,778,807,778,0,0,232,61,91,232,61,807,144,146,778,146,822,822,828,182,183,822,0,0,807,778,845,831,0,0,778,778,232,61,5,824,91,150,0,16,0,827,832,761,822,822,558,0,855,53,35,157,801,0,0,0,0,0,0,0,53,35,0,53,0,0,0,146,0,0,822,144,787,926,0,188,0,0,0,0,0,0,840,0,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,859,807,778,0,0,801,144,0,801,855,0,0,558,0,0,0,0,801,825,827,0,0,0,0,0,0,0,0,0,801,832,828,859,0,0,0,0,16,16,0,0,232,859,558,0,0,0,855,0,0,0,0,0,0,801,16,801,801,801,182,183,182,558,859,781,19,0,0,488,558,859,558,0,0,0,0,807,778,0,0,16,801,0,53,35,157,0,0,801,16,0,53,807,778,828,558,0,0,0,0,0,0,923,0,0,801,0,558,0,828,855,53,35,157,157,0,0,0,0,0,157,0,801,801,822,0,828,855,53,35,157,0,0,855,53,35,157,0,0,855,53,35,157,0,0,855,53,35,157,0,0,0,488,859,157,0,801,0,35,801,830,855,53,35,157,0,0,0,0,53,0,0,0,0,807,778,0,0,828,0,558,0,558,828,0,0,822,395,146,488,0,824,825,177,765,766,241,826,239,827,828,829,830,831,395,832,833,834,835,488,836,837,838,795,839,797,774,793,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,790,927,792,792,792,792,154,1059,558,926,558,239,239,928,239,793,558,0,558,0,558,0,794,851,796,796,795,796,558,774,558,0,558,112,918,112,918,112,918,929,793,558,0,929,558,930,930,558,558,0,929,929,929,929,0,558,558,339,558,558,558,558,558,1060,802,558,1060,802,558,931,558,154,0,931,932,558,154,0,851,558,0,0,804,805,796,795,154,339,154,339,1061,1062,1062,1062,1062,880,1063,880,807,933,1064,154,934,880,809,0,1062,1065,0,558,1066,1066,0,810,790,813,810,816,816,816,816,0,558,0,154,154,154,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,774,339,95,96,929,127,176,177,774,838,839,850,879,878,863,128,133,0,936,937,154,558,936,0,558,558,558,176,177,93,95,96,765,766,938,154,938,154,0,154,558,558,558,824,825,177,765,766,241,826,239,827,828,829,830,831,395,832,833,834,835,488,836,837,838,795,839,797,774,793,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,154,824,825,177,765,766,241,826,239,827,828,829,830,831,395,832,833,834,835,488,836,837,838,795,839,797,774,793,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,176,177,765,766,0,1067,839,239,0,0,774,0,0,1059,239,856,857,0,1066,0,1067,837,0,0,1068,1066,802,1068,1066,558,558,558,0,558,1066,0,860,862,774,558,0,939,558,939,558,939,558,0,939,558,1069,856,339,152,0,0,0,0,0,0,0,1070,1071,1072,847,1073,239,848,239,142,849,860,862,825,177,765,766,828,395,832,488,836,838,839,797,774,558,799,799,799,848,850,851,852,853,854,856,857,858,859,0,558,823,865,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,823,865,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,145,29,34,859,774,774,764,0,0,802,558,926,558,928,558,859,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,774,558,774,558,154,0,0,558,937,154,92,0,0,0,1068,1066,1074,558,824,825,765,766,241,239,827,828,830,831,395,832,833,834,835,488,807,558,558,845,822,799,799,846,801,849,850,851,852,853,855,856,857,858,339,339,558,925,925,824,824,824,824,825,825,825,825,765,765,765,765,766,766,766,766,241,241,241,241,239,239,239,239,827,827,827,827,828,828,828,828,830,830,830,830,831,831,831,831,395,395,395,395,832,832,832,832,833,833,833,833,834,834,834,834,835,835,835,835,488,488,488,488,558,558,558,558,845,845,845,845,822,822,822,822,846,846,846,846,849,849,849,849,850,850,850,850,851,851,851,851,852,852,852,852,853,853,853,853,856,856,856,856,857,857,857,857,858,858,858,858,1075,880,809,880,806,765,241,850,558,558,1074,558,774,774,940,558,940,0,809,860,862,1066,1066,1066,112,774,112,154,872,872,339,153,854,774,558,774,558,941,942,154,774,558,806,1076,861,918,1067,794,816,873,804,805,874,810,875,876,877,790,813,112,1067,837,795,804,0,802,774,558,0,558,799,558,558,0,878,863,879,824,825,765,766,241,826,239,827,828,830,831,395,880,796,832,881,833,834,835,488,871,840,558,558,845,822,822,799,846,846,801,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,0,858,176,177,93,0,794,851,850,0,558,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,774,793,871,894,840,841,842,843,844,807,558,558,558,558,558,558,558,558,558,558,558,558,558,558,845,822,799,799,799,799,799,799,799,799,846,801,801,801,801,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,339,339,943,944,945,865,865,946,946,919,946,865,865,946,919,865,816,877,919,919,865,799,947,0,948,949,558,922,181,924,154,802,950,937,950,937,823,774,855,28,829,829,829,864,798,339,927,951,154,878,829,881,922,952,181,924,154,953,1067,954,774,1077,774,1077,774,774,0,0,925,558,925,558,816,873,837,792,154,955,809,824,825,241,239,827,828,395,833,834,835,488,558,845,846,849,850,802,793,558,1066,1066,1078,1071,1072,847,1073,848,794,759,776,558,0,765,765,766,951,0,816,876,877,797,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,112,1079,774,0,0,143,0,558,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,339,865,890,558,339,1080,802,902,771,792,775,239,154,558,0,956,558,222,957,558,154,558,958,1070,1071,1072,880,222,558,558,0,154,558,0,154,558,152,792,771,792,1081,154,880,239,1070,1071,1072,812,339,1079,802,774,774,0,558,0,802,774,558,1082,149,1079,774,794,154,339,802,774,154,558,0,893,894,855,1074,558,1074,558,774,793,816,877,837,795,839,558,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,1083,925,558,925,558,856,857,29,774,558,558,0,558,799,799,799,799,558,0,558,558,0,852,0,803,802,774,959,558,960,154,0,0,802,774,959,558,154,0,774,961,558,154,962,154,774,838,804,0,558,152,153,145,847,1073,848,1073,848,0,803,802,774,959,558,960,154,0,176,177,849,93,1078,1071,1072,847,1073,848,932,558,154,1070,1071,1072,847,1084,1085,239,239,926,239,558,928,29,34,558,154,1067,837,795,838,839,797,858,932,558,154,154,797,92,152,558,558,0,1078,1071,1072,1073,239,848,963,558,558,1076,861,921,964,865,794,816,873,804,805,874,860,810,862,875,876,877,790,239,812,829,813,837,795,799,847,848,339,810,339,965,154,339,890,812,558,558,0,558,925,925,0,154,774,558,29,790,765,766,241,829,794,103,774,558,1070,1071,1072,1072,34,842,844,1079,774,792,858,558,558,836,839,239,1070,1078,1071,1066,239,239,1067,837,795,966,154,966,154,0,765,766,558,0,0,0,0,792,558,858,854,0,558,143,960,558,774,854,0,774,961,558,962,154,1070,1071,1072,558,0,558,0,790,1067,154,837,795,836,838,839,0,926,558,928,154,774,872,0,967,558,154,1066,1066,1066,1066,0,558,0,968,154,802,774,558,149,794,969,558,154,558,0,0,1086,103,558,1086,103,558,1086,103,558,1086,103,558,1086,103,558,1086,103,558,1086,103,558,1086,103,558,792,1087,558,829,829,829,1067,837,795,838,839,797,856,851,851,1083,799,558,558,816,796,795,774,774,804,805,790,796,795,774,859,797,858,0,1078,1071,1072,847,1073,848,774,0,970,970,1088,970,934,790,823,813,804,805,876,790,1076,558,339,971,154,802,774,558,972,774,558,558,918,154,558,854,558,558,774,774,797,858,0,154,802,774,558,339,339,759,854,973,339,973,339,339,339,339,339,0,931,802,774,558,558,774,931,558,154,0,558,765,1068,1066,856,774,974,558,975,154,558,976,154,1066,1066,1066,149,776,854,1072,850,558,0,558,926,558,928,794,558,759,0,803,802,774,959,558,960,0,799,802,774,793,558,977,154,558,154,154,154,154,923,977,154,558,558,0,0,841,843,154,0,1072,774,859,774,855,339,978,774,558,1089,1059,880,558,1066,824,825,177,765,766,241,826,239,827,828,829,830,831,395,832,833,834,835,488,836,837,838,795,839,797,774,793,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,558,1072,558,822,846,801,836,1066,149,149,774,1090,765,239,239,829,829,829,829,239,829,239,829,929,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,855,856,857,858,859,339,951,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,833,834,835,339,878,177,854,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,20,177,792,932,803,802,774,558,154,803,802,774,558,0,774,558,1091,1091,241,790,839,0,794,759,339,339,1081,558,776,776,339,339,774,974,558,975,154,776,979,979,823,865,803,794,816,873,804,805,874,860,824,810,862,825,904,875,876,802,792,877,890,177,872,765,766,790,241,826,239,827,828,812,829,813,830,831,395,809,832,833,834,835,488,836,837,838,795,839,797,774,793,871,894,840,841,842,843,844,807,558,845,822,799,846,801,847,848,849,850,851,852,853,854,855,856,857,858,859,339,1070,1071,1072,1070,1071,1072,828,239,848,239,176,177,93,0,842,844,176,177,849,93,794,873,876,795,837,921,816,877,774,816,804,805,790,774,858,816,837,874,860,810,862,813,774,813,873,873,847,848,816,873,837,837,816,816,816,837,816,837,860,862,873,848,847,848,847,848,816,876,837,837,795,875,876,847,848,848,847,848,816,837,847,816,804,805,877,790,837,795,816,877,848,873,816,837,774,1067,816,877,837,795,816,774,816,804,805,876,790,774,816,837,873,1067,816,877,837,795,816,804,805,790,837,795,774,813,816,876,877,837,795,837,876,877,847,848,774,816,837,816,837,774,813,774,873,816,837,774,339,339,848,847,774,558,1070,1071,1072,847,0,980,1092,1093,1094,1092,1093,1094,1092,1095,1096,1097,1098,1099,1097,1099,1100,1101,1097,1102,1103,1104,1105,1102,1106,1101,1104,1098,1107,1106,1108,1107,1107,1108,1100,1104,1105,1106,1105,1106,1105,1103,1108,1099,1103,1109,1110,1111,1112,1113,1109,1114,1112,1109,1114,1110,1115,1116,1117,1118,1119,1120,1109,1121,981,981,1122,1122,1122,1123,1123,1124,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1133,1132,1134,1126,1135,1126,1129,1130,1123,1131,1136,1124,1137,1134,1128,1125,1138,1139,1139,1140,1123,1139,1137,1123,1137,1132,1123,1139,1136,1140,1127,1133,1138,1132,1135,1133,1127,1139,1133,1127,1129,1130,1123,1139,1131,1125,1127,0,0,0,0,0,0,0,0,0,1057,0,0,1141,1141,1141,1141,1141,1142,0,416,0,0,416,0,905,416,905,416,416,906,905,906,905,416,905,905,416,906,905,906,905,906,905,416,416,905,416,906,905,416,416,905,906,905,906,905,906,906,416,416,416,906,905,416,906,416,416,416,416,416,416,416,905,906,905,906,905,906,905,906,905,0,821,821,821,821,821,821,821,821,821,821,821,821,821,821,821,0,0,840,840,0,0,0,0,0,0,0,0,176,1062,1062,1062,1062,1062,176,176,176,177,176,177,176,176,176,177,1070,1071,1073,176,176,176,176,176,177,176,1078,1071,1073,176,176,1070,1071,1070,1071,1073,1073,176,177,1078,1071,1073,1070,1071,1078,1071,1073,1070,1071,1070,1078,1071,1070,1071,1086,1086,1086,1086,1086,1086,1086,1086,1078,1071,1073,176,176,176,177,176,177,0,0,176,1070,1071,1070,1071,176,177,176,177,1070,1071,0,907,907,907,907,907,0,0,907,1062,1062,1062,1062,1062,1143,907,907,907,907,907,907,907,907,907,907,907,907,907,907,907,0,907,907,907,907,907,907,907,907,0,1144,0,0,908,908,908,908,908,908,908,908,908,0,908,908,908,908,1145,908,908,908,908,908,1144,908,908,908,908,908,214,214,0,0,214,214,0,53,35,0,0,0,0,53,35,157,0,53,0,53,35,157,0,0,0,53,35,0,0,0,0,0,53,35,157,157,0,0,53,35,0,0,53,35,157,157,0,0,157,53,35,157,0,0,157,0,157,157,0,157,53,35,157,0,0,53,35,157,0,0,0,228,920,921,0,0,0,0,0,0,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,157,157,157,53,35,157,0,0,920,228,0,0,157,232,61,232,61,232,61,5,53,35,157,0,53,35,0,53,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,232,0,53,35,157,0,53,53,35,157,157,0,0,0,0,157,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,53,35,157,0,0,157,35,53,35,157,0,53,0,933,937,0,937,92,937,937,28,952,0,92,921,921,0,0,0,228,920,920,228,0,0,0,0,0,0,0,0,0,0,0,0,0,943,944,945,0,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,869,0,1058,1058,0,215,0,0,0,0,416,0,0,0,416,0,0,0,0,0,0,0,0,0,910,416,405,406,407,408,409,411,410,412,413,414,415,909,910,911,405,406,409,411,410,416,416,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,416,910,910,0,416,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,0,416,416,910,416,405,406,407,408,409,411,410,412,413,414,415,909,910,416,416,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,416,416,416,909,910,416,408,410,911,410,416,416,416,405,406,407,408,409,411,410,412,413,414,415,416,416,416,416,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,405,406,407,408,409,411,410,412,413,414,415,909,910,0,0,0,0,0,0,0,0,913,912,913,912,913,912,913,912,913,912,912,912,913,912,913,913,912,913,912,912,913,912,912,912,913,912,913,912,913,912,913,912,0,0,0,0,817,819,818,820,817,819,818,820,817,819,818,820,817,819,818,820,817,819,819,818,820,820,817,819,818,820,817,819,818,820,817,819,818,820,817,819,818,820,0,0,817,819,818,820,817,819,818,820,817,819,818,820,817,819,818,820,0,0,0,0,1146,1072,1072,1072,1072,1072,1072,1072,103,1072,1072,1072,103,103,103,103,103,103,103,103,1072,1072,1072,1147,1072,1072,1072,1072,0,973,973,0,0,0,0,0,0,0,0,0,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,903,0,0,0,0,72,0,72,0,0,925,72,0,0,0,0,72,15,154,15,15,15,15,15,15,15,15,154,154,0,15,15,154,154,15,154,154,15,15,15,154,15,15,154,154,154,15,915,72,15,915,72,15,154,15,15,15,15,154,15,15,154,154,15,15,15,15,15,72,15,154,72,15,15,15,15,15,15,15,15,15,915,72,15,15,915,72,15,15,15,15,15,15,915,72,15,154,154,15,72,15,925,15,15,15,925,15,15,15,72,72,72,72,15,15,15,15,15,15,154,15,154,15,15,72,15,15,15,915,72,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,154,15,154,154,925,15,15,15,925,15,15,15,154,15,15,15,15,15,15,0,15,915,72,15,915,72,15,15,915,771,15,154,15,154,15,15,15,154,154,771,15,154,15,154,154,15,15,925,15,15,15,925,15,15,15,15,154,154,15,154,154,15,154,154,15,15,15,15,154,154,154,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,154,15,915,925,15,15,15,925,15,15,15,154,0,15,154,154,15,15,154,15,154,15,15,15,154,15,154,15,154,154,15,15,15,15,15,15,15,15,15,15,15,15,15,15,154,154,15,15,915,154,15,154,154,154,15,15,15,15,15,15,15,15,15,15,154,15,154,154,154,154,15,154,15,15,154,15,15,15,15,72,15,15,15,15,915,72,15,15,15,915,72,15,915,72,15,15,15,15,15,154,15,154,0,15,154,915,72,15,15,0,0,0,926,0,926,928,14,0,926,928,14,926,928,14,926,928,14,926,928,14,0,0,938,36,938,36,866,866,0,866,866,866,866,866,866,866,866,0,866,866,866,866,866,866,866,866,866,866,866,866,866,866,866,866,0,0,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916,916],"f":[0,0,0,0,0,0,0,[1],0,0,0,0,0,0,0,0,0,0,[[],1],0,0,[2],[[[4,[3]]],1],[[[4,[5]]],[[4,[5]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[8]],[4,[8]]]],[[[4,[9]],[4,[9]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[8]],[4,[8]]]],[[[4,[10]],[4,[10]]]],[[[4,[9]],11]],[[[4,[5]],[4,[5]]]],[[[4,[10]],[4,[10]]]],[[[4,[8]],[13,[12]]]],[[[4,[9]],[4,[9]]]],[[[4,[14]],15],[[17,[15,16]]]],[[[4,[18]],19],15],[[[4,[9]],19],15],[[[4,[8]],19],15],[[[4,[10]],19],15],[[[4,[3]],19],15],[[[4,[5]],19],15],[[[4,[[21,[20]]]],19],15],[[[4,[10]]],1],[[[4,[10]],1],[[22,[1]]]],[[[4,[18]]],[[24,[23]]]],[[[4,[3]]],[[24,[23]]]],[[[4,[18]],11],[[24,[23]]]],[[[4,[3]],11],[[24,[23]]]],[[[4,[10]]],1],[[[4,[10]],1],[[22,[1]]]],[[[4,[5]],[4,[5]]]],[[[4,[3]],[0,[25,26]]],[[4,[3]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[8]],[0,[25,26]]],[[4,[8]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[[21,[20]]]]]],[[[4,[10]],[0,[25,26]]],[[4,[10]]]],[[[4,[9]],[0,[25,26]]],[[4,[9]]]],[[[4,[3]],27],[[4,[3]]]],[[[4,[10]],[0,[25,26]]],[[4,[5]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[5]]]],[[[4,[8]],[0,[25,26]]],[[4,[5]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[3]],[0,[25,26]]],[[4,[5]]]],[[[4,[9]],[0,[25,26]]],[[4,[5]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[10]],25],[[4,[10]]]],[[[4,[9]],25],[[4,[9]]]],[[[4,[5]],25],[[4,[5]]]],[[[4,[8]],25],[[4,[8]]]],[[[4,[9]],25],[[4,[28]]]],[[[4,[5]],25],[[4,[28]]]],[[[4,[8]],25],[[4,[28]]]],[[[4,[10]],25],[[4,[28]]]],[[[4,[9]],27],[[4,[9]]]],[[[4,[5]],[0,[25,26]]]],[[[4,[8]],27],[[4,[8]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[[21,[20]]]]]],[[[4,[3]],[0,[25,26]]],[[4,[3]]]],[[[4,[10]],[0,[25,26]]],[[4,[10]]]],[[[4,[9]],[0,[25,26]]],[[4,[9]]]],[[[4,[8]],[0,[25,26]]],[[4,[8]]]],[[[4,[3]],25],[[17,[[4,[3]],16]]]],[[[4,[18]],25],[[17,[[4,[18]],16]]]],[[[4,[8]],25,13]],[[[4,[5]],25,13]],[[[4,[[21,[20]]]],25,13]],[[[4,[10]],25,13]],[[[4,[9]],25,13]],[[[4,[3]],25,13]],[[[4,[10]],[0,[25,26]]],[[4,[10]]]],[[[4,[8]],[0,[25,26]]],[[4,[8]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[3]],[0,[25,26]]],[[4,[3]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[[21,[20]]]]]],[[[4,[9]],[0,[25,26]]],[[4,[9]]]],[[[4,[9]],[0,[25,26]]],[[4,[9]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[[21,[20]]]]]],[[[4,[10]],[0,[25,26]]],[[4,[10]]]],[[[4,[3]],[0,[25,26]]],[[4,[3]]]],[[[4,[8]],[0,[25,26]]],[[4,[8]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[10]],29],[[4,[30]]]],[[[4,[31]],29],[[4,[30]]]],[[[4,[9]],29],[[4,[30]]]],[[[4,[32]],29],[[4,[30]]]],[[[4,[8]],29],[[4,[30]]]],[[[4,[33]],29],[[4,[30]]]],[[[4,[10]],34],[[17,[[4,[30]],16]]]],[[[4,[31]],34],[[17,[[4,[30]],16]]]],[[[4,[9]],34],[[17,[[4,[30]],16]]]],[[[4,[32]],34],[[17,[[4,[30]],16]]]],[[[4,[8]],34],[[17,[[4,[30]],16]]]],[[[4,[33]],34],[[17,[[4,[30]],16]]]],[[[4,[9]]],[[17,[[4,[30]],16]]]],[[[4,[8]]],[[17,[[4,[30]],16]]]],[[[4,[[21,[20]]]]],[[17,[[4,[30]],16]]]],[[[4,[33]]],[[17,[[4,[30]],16]]]],[[[4,[31]]],[[17,[[4,[30]],16]]]],[[[4,[32]]],[[17,[[4,[30]],16]]]],[[[4,[10]]],[[17,[[4,[30]],16]]]],0,[[[4,[18]]],[[4,[18]]]],[[[4,[9]]],[[4,[8]]]],[[[4,[8]]],[[4,[8]]]],[[[4,[3]]],[[4,[3]]]],[[[4,[28]]],[[4,[28]]]],[[[4,[28]]],35],[[[4,[9]]],[[4,[9]]]],[[[4,[9]]],[[4,[9]]]],[[[4,[10]],[4,[10]]]],[[[4,[10]],[4,[10]]]],[[[4,[32]],[4,[32]]]],[[[4,[32]],[4,[32]]]],[[[4,[10]],[4,[10]]]],[[[4,[10]],[4,[10]]]],[[[4,[10]],[4,[10]]]],[[[4,[32]],[4,[32]]]],[[[4,[10]],[4,[10]]]],[[]],[[]],[[[4,[8]],[0,[25,26]]],[[4,[5]]]],[[[4,[10]],[0,[25,26]]],[[4,[5]]]],[[[4,[3]],[0,[25,26]]],[[4,[5]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[4,[5]]]],[[[4,[9]],[0,[25,26]]],[[4,[5]]]],[[[4,[5]],25],[[4,[5]]]],0,0,[[[4,[10]],35],[[17,[15,16]]]],[[[4,[3]],35],[[17,[15,16]]]],[[[4,[9]],35],[[17,[15,16]]]],[[[4,[8]],35],[[17,[15,16]]]],[[[4,[5]],35],[[17,[15,16]]]],[[[4,[18]],35],[[17,[15,16]]]],[[[4,[5]],[0,[25,26]]],[[4,[5]]]],[[[4,[3]],35],[[17,[15,16]]]],[[[4,[9]],35],[[17,[15,16]]]],[[[4,[8]],35],[[17,[15,16]]]],[[[4,[5]],35],[[17,[15,16]]]],[[[4,[10]],35],[[17,[15,16]]]],[[[4,[18]],35],[[17,[15,16]]]],[[[4,[36]],15],[[17,[15,16]]]],[[[4,[36]],7],[[17,[15,16]]]],[[[4,[28]]],[[41,[[40,[[39,[37,38]]]]]]]],[[[4,[28]]],[[42,[[39,[37,38]],38]]]],[[[4,[28]]],[[42,[[39,[37,38]],38]]]],[[[4,[28]]],[[4,[28]]]],[[]],0,[[[4,[5]]],[[17,[13,16]]]],[[[4,[5]],1],[[4,[5]]]],[[[4,[5]],1],[[4,[5]]]],[[[4,[5]],1],[[4,[5]]]],[[[4,[5]],1],[[4,[5]]]],[[[4,[5]]],[[0,[23,43]]]],[[],[[4,[28]]]],[44],[44],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[5]],[4,[5]]]],[[[4,[14]],15],[[17,[15,16]]]],[44],[[[4,[28]]]],[[[4,[28]]],35],[[[4,[3]],[4,[3]]],[[4,[10]]]],[[[4,[5]],7],[[4,[10]]]],[[[4,[10]],[4,[10]]],[[4,[10]]]],[[[4,[9]],11],[[4,[10]]]],[[[4,[9]],[4,[9]]],[[4,[10]]]],[[[4,[8]],[4,[8]]],[[4,[10]]]],[[[4,[5]],[4,[5]]],[[4,[10]]]],[[[4,[18]],[4,[18]]],[[4,[10]]]],[[[4,[8]],[13,[12]]],[[4,[10]]]],[[[4,[8]],[4,[8]]],[[4,[10]]]],[[[4,[5]],7],[[4,[10]]]],[[[4,[9]],[4,[9]]],[[4,[10]]]],[[[4,[18]],[4,[18]]],[[4,[10]]]],[[[4,[8]],[13,[12]]],[[4,[10]]]],[[[4,[5]],[4,[5]]],[[4,[10]]]],[[[4,[3]],[4,[3]]],[[4,[10]]]],[[[4,[10]],[4,[10]]],[[4,[10]]]],[[[4,[9]],11],[[4,[10]]]],[[[4,[18]]],[[17,[15,16]]]],[[[4,[18]]],[[17,[16]]]],[[[4,[9]]],[[17,[16]]]],[[[4,[3]]],[[17,[16]]]],[[[4,[5]],[4,[5]]]],[[[4,[8]],[13,[12]]],[[17,[[4,[8]],16]]]],[[[4,[10]],1],[[17,[[4,[10]],16]]]],[[[4,[5]]],[[17,[[4,[5]],16]]]],[[[4,[3]],[4,[10]]],[[17,[[4,[3]],16]]]],[[[4,[9]],[4,[10]]],[[17,[[4,[9]],16]]]],[[[4,[[21,[20]]]],[4,[10]]],[[17,[[4,[[21,[20]]]],16]]]],[[[4,[8]],[4,[10]]],[[17,[[4,[8]],16]]]],[[[4,[5]],[4,[10]]],[[17,[[4,[5]],16]]]],[[[4,[18]],[4,[10]]],[[17,[[4,[18]],16]]]],[[[4,[10]],[4,[10]]],[[17,[[4,[10]],16]]]],[[[4,[28]]],[[22,[44]]]],0,[[[4,[[21,[20]]]],45],[[17,[46]]]],[[[4,[3]],45],[[17,[46]]]],[[[4,[8]],45],[[17,[46]]]],[[[4,[5]],45],[[17,[46]]]],[[[4,[9]],45],[[17,[46]]]],[[[4,[10]],45],[[17,[46]]]],[[[4,[18]],45],[[17,[46]]]],[47,[[4,[10]]]],[[]],[[],[[4,[9]]]],[48,[[4,[5]]]],[13,[[4,[5]]]],[[],[[4,[8]]]],[[],[[4,[10]]]],[[],[[4,[5]]]],[[11,[42,[[39,[37,38]],38]]],[[4,[28]]]],[49,[[4,[10]]]],[49,[[4,[5]]]],[49,[[4,[9]]]],[49,[[4,[3]]]],[49,[[4,[5]]]],[49,[[4,[8]]]],[49,[[4,[8]]]],[49,[[4,[3]]]],[49,[[4,[[21,[20]]]]]],[49,[[4,[3]]]],[49,[[4,[9]]]],[49,[[4,[10]]]],[[11,23],[[4,[8]]]],[[11,23],[[4,[5]]]],[[11,23],[[4,[9]]]],[[11,23],[[4,[10]]]],[[11,23],[[4,[[21,[20]]]]]],[49,[[4,[8]]]],[49,[[4,[3]]]],[49,[[4,[10]]]],[49,[[4,[[21,[20]]]]]],[49,[[4,[3]]]],[49,[[4,[10]]]],[49,[[4,[9]]]],[49,[[4,[5]]]],[49,[[4,[8]]]],[49,[[4,[9]]]],[[11,23],[[4,[8]]]],[[11,23],[[4,[5]]]],[[11,23],[[4,[10]]]],[[11,23],[[4,[9]]]],[[11,23],[[4,[[21,[20]]]]]],[50,[[4,[3]]]],[50,[[4,[10]]]],[50,[[4,[5]]]],[50,[[4,[10]]]],[50,[[4,[9]]]],[50,[[4,[9]]]],[[11,[13,[[51,[[13,[12]]]]]]],[[4,[8]]]],[[11,[13,[20]]],[[4,[[21,[20]]]]]],[[11,13],[[4,[5]]]],[[11,[13,[1]]],[[4,[10]]]],[[11,[13,[[51,[11]]]]],[[4,[9]]]],[[11,[13,[22]]],[[4,[5]]]],[[11,[13,[[22,[1]]]]],[[4,[10]]]],[[11,[13,[[22,[20]]]]],[[4,[[21,[20]]]]]],[[11,[13,[[22,[[51,[[13,[12]]]]]]]]],[[4,[8]]]],[[11,[13,[[22,[[51,[11]]]]]]],[[4,[9]]]],[52,[[4,[5]]]],[52,[[4,[10]]]],[[11,[42,[38]]],[[4,[5]]]],[[11,44],[[4,[5]]]],[[11,1,44],[[4,[10]]]],[[11,20,44],[[4,[[21,[20]]]]]],[[11,[13,[12]],44],[[4,[8]]]],[[11,15,44],[[4,[18]]]],[[11,15,44],[[4,[3]]]],[[11,11,44],[[4,[9]]]],[[11,44],[[4,[5]]]],[[11,44],[[4,[18]]]],[[11,44],[[4,[9]]]],[[11,44],[[4,[10]]]],[[11,44],[[4,[3]]]],[[11,44],[[4,[8]]]],[[11,44],[[4,[[21,[20]]]]]],[[11,44,35,44],[[4,[18]]]],[[11,44,35],[[4,[3]]]],[[[4,[8]],44],22],[[[4,[9]],44],22],[[[4,[5]],44],22],[[[4,[10]],44],22],[[[4,[9]],44],22],[[[4,[[21,[20]]]],44],22],[[[4,[3]],44],22],[[[4,[5]],44],22],[[[4,[18]],44],22],[[[4,[10]],44],22],[[[4,[8]],44],[[17,[53,16]]]],[[[4,[10]],44],[[17,[53,16]]]],[[[4,[9]],44],[[17,[53,16]]]],[[[4,[18]],44],[[17,[53,16]]]],[[[4,[[21,[20]]]],44],[[17,[53,16]]]],[[[4,[3]],44],[[17,[53,16]]]],[[[4,[5]],44],[[17,[53,16]]]],[[[4,[9]],44],53],[[[4,[3]],44],53],[[[4,[10]],44],53],[[[4,[8]],44],53],[[[4,[18]],44],53],[[[4,[[21,[20]]]],44],53],[[[4,[5]],44],53],[[[4,[18]]],15],[[[4,[3]]],15],[[[4,[[21,[20]]]],44],[[22,[54]]]],[[[4,[[21,[20]]]],44],[[22,[54]]]],[[[4,[5]],44],22],[[[4,[9]],44],22],[[[4,[5]],44],22],[[[4,[10]],44],22],[[[4,[3]],44],22],[[[4,[18]],44],22],[[[4,[[21,[20]]]],44],22],[[[4,[10]],44],22],[[[4,[8]]],44],[[[4,[18]]],44],[[[4,[3]]],44],[[[4,[9]]],44],[[[4,[10]],1,1],[[17,[19,16]]]],[[[4,[9]],1,1],[[17,[19,16]]]],[[[4,[3]],1,1],[[17,[19,16]]]],[[[4,[[21,[20]]]],1,1],[[17,[19,16]]]],[[[4,[5]],1,1],[[17,[19,16]]]],[[[4,[8]],1,1],[[17,[19,16]]]],[[[4,[18]],1,1],[[17,[19,16]]]],[[[4,[32]],44,1,44],19],[[[4,[5]],[4,[5]]],[[4,[10]]]],[[[4,[3]],[4,[3]]],[[4,[10]]]],[[[4,[10]],[4,[10]]],[[4,[10]]]],[[[4,[8]],[4,[8]]],[[4,[10]]]],[[[4,[9]],[4,[9]]],[[4,[10]]]],[[[4,[8]],[13,[12]]],[[4,[10]]]],[[[4,[5]],7],[[4,[10]]]],[[[4,[18]],[4,[18]]],[[4,[10]]]],[[[4,[9]],11],[[4,[10]]]],[[[4,[10]],[4,[10]]],[[4,[10]]]],[[[4,[3]],[4,[3]]],[[4,[10]]]],[[[4,[5]],[4,[5]]],[[4,[10]]]],[[[4,[9]],11],[[4,[10]]]],[[[4,[9]],[4,[9]]],[[4,[10]]]],[[[4,[8]],[13,[12]]],[[4,[10]]]],[[[4,[5]],7],[[4,[10]]]],[[[4,[18]],[4,[18]]],[[4,[10]]]],[[[4,[8]],[4,[8]]],[[4,[10]]]],[[[4,[28]]],1],[[[4,[28]],[22,[44]]],[[4,[28]]]],[[],44],[[44,55,[22,[56]]],[[4,[5]]]],[[[4,[18]]],35],[[[4,[3]]],35],[[]],[[[4,[57]]],[[59,[58,57]]]],[[[4,[60]],61,[22,[62]]],[[59,[63,60]]]],[[[4,[64]],[22,[44]],44],[[17,[[59,[65,64]],16]]]],[[[4,[64]],[22,[44]],44],[[59,[65,64]]]],[[[4,[60]],61],[[59,[66,60]]]],[[[4,[[21,[20]]]]]],[[[4,[18]]]],[[[4,[10]]]],[[[4,[3]]]],[[[4,[5]]]],[[[4,[9]]]],[[[4,[8]]]],[[[4,[5]]],[[0,[23,67,68,69,43,52]]]],[[[4,[28]]],15],[[[4,[64]]],15],[[[4,[60]]],[[59,[70,60]]]],[[[4,[28]]],1],[[[4,[71]]],[[4,[10]]]],[[[4,[5]],15],[[17,[[4,[10]],16]]]],[[[4,[10]],15],[[17,[[4,[10]],16]]]],[[[4,[8]],15],[[17,[[4,[10]],16]]]],[[[4,[9]],15],[[17,[[4,[10]],16]]]],[[[4,[71]]],[[4,[10]]]],[[[4,[71]]],[[4,[10]]]],[[[4,[71]]],[[4,[10]]]],[[[4,[28]]],[[4,[10]]]],[[[4,[28]]],[[4,[10]]]],[[[4,[28]]],1],[[[4,[28]]],72],[[[4,[28]]],[[41,[[40,[[39,[37,38]]]]]]]],0,0,[[[4,[28]]],[[22,[44]]]],[[[4,[28]]],44],[[[4,[5]],[0,[6,73]]],[[4,[5]]]],[[[4,[5]],[0,[6,73]]],[[4,[5]]]],[[[4,[5]],[0,[6,73]]],[[4,[5]]]],[[[4,[28]],44],[[4,[28]]]],[[[4,[10]],[4,[10]]],[[4,[10]]]],[[[4,[5]],[4,[5]]],[[4,[10]]]],[[[4,[9]],11],[[4,[10]]]],[[[4,[18]],[4,[18]]],[[4,[10]]]],[[[4,[9]],[4,[9]]],[[4,[10]]]],[[[4,[3]],[4,[3]]],[[4,[10]]]],[[[4,[8]],[13,[12]]],[[4,[10]]]],[[[4,[8]],[4,[8]]],[[4,[10]]]],[[[4,[5]],7],[[4,[10]]]],[[[4,[18]],[4,[18]]],[[4,[10]]]],[[[4,[5]],7],[[4,[10]]]],[[[4,[8]],[13,[12]]],[[4,[10]]]],[[[4,[9]],11],[[4,[10]]]],[[[4,[5]],[4,[5]]],[[4,[10]]]],[[[4,[8]],[4,[8]]],[[4,[10]]]],[[[4,[9]],[4,[9]]],[[4,[10]]]],[[[4,[10]],[4,[10]]],[[4,[10]]]],[[[4,[3]],[4,[3]]],[[4,[10]]]],[[[4,[5]]],22],[[[4,[10]]],[[22,[1]]]],[[[4,[3]]],15],[[[4,[8]]],15],[[[4,[10]]],15],[[[4,[5]]],15],[[[4,[9]]],15],[[[4,[18]]],15],[[[4,[5]]],[[22,[74]]]],[[[4,[10]]],[[22,[74]]]],[[[4,[31]]],[[22,[74]]]],[[[4,[33]]],[[22,[55]]]],[[[4,[32]]],[[22,[74]]]],[[[4,[31]]],15],[[[4,[33]]],15],[[[4,[32]]],15],[[[4,[5]]],22],[[[4,[10]]],[[22,[1]]]],[[[4,[18]]],15],[[[4,[10]]],15],[[[4,[8]]],15],[[[4,[5]]],15],[[[4,[9]]],15],[[[4,[3]]],15],[[11,13],[[4,[5]]]],[[11,[13,[12]],44,44],[[4,[10]]]],[[[4,[32]]],[[17,[[4,[32]],16]]]],[[[4,[33]]],[[17,[[4,[33]],16]]]],[[[4,[31]]],[[17,[[4,[31]],16]]]],[[[4,[9]]],[[17,[[4,[9]],16]]]],[[[4,[8]]],[[17,[[4,[8]],16]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[4,[5]]]],[[[4,[14]],15],[[17,[15,16]]]],[[[4,[9]]],[[17,[44,16]]]],[[[4,[32]]],[[17,[44,16]]]],[[[4,[8]]],[[17,[44,16]]]],[[[4,[28]]],11],[[11,[51,[[13,[75]]]]],[[4,[76]]]],[[11,[51,[[13,[[22,[[77,[[13,[12]]]]]]]]]]],[[4,[8]]]],[[11,[51,[[13,[[22,[78]]]]]]],[[4,[30]]]],[[11,[51,[[13,[78]]]]],[[4,[30]]]],[[11,[51,[[13,[[22,[[42,[12,38]]]]]]]]],[[4,[8]]]],[[11,[79,[78]]],[[4,[30]]]],[[11,[51,[[13,[55]]]]],[[4,[33]]]],[[11,[51,[[13,[[22,[12]]]]]]],[[4,[80]]]],[[11,[51,[[13,[11]]]]],[[4,[9]]]],[[11,[51,[[13,[[22,[75]]]]]]],[[4,[76]]]],[[11,[51,[[13,[81]]]]],[[4,[82]]]],[[11,[79,[56]]],[[4,[83]]]],[[11,[51,[[13,[[13,[12]]]]]]],[[4,[8]]]],[[11,[51,[[13,[[22,[56]]]]]]],[[4,[83]]]],[[11,[51,[[13,[[22,[84]]]]]]],[[4,[85]]]],[[11,[51,[[13,[62]]]]],[[4,[9]]]],[[11,[51,[[13,[12]]]]],[[4,[80]]]],[[11,[51,[[13,[[22,[86]]]]]]],[[4,[60]]]],[[11,[51,[[13,[[77,[11]]]]]]],[[4,[9]]]],[[11,[51,[[13,[[77,[[13,[12]]]]]]]]],[[4,[8]]]],[[11,[79,[86]]],[[4,[60]]]],[[11,[51,[[13,[[22,[11]]]]]]],[[4,[9]]]],[[11,[51,[[13,[[22,[87]]]]]]],[[4,[57]]]],[[11,[51,[[13,[[22,[62]]]]]]],[[4,[9]]]],[[11,[13,[20]]],[[4,[[21,[20]]]]]],[[11,[51,[[13,[86]]]]],[[4,[60]]]],[[11,[51,[[13,[[22,[[77,[11]]]]]]]]],[[4,[9]]]],[[11,[51,[[13,[[22,[81]]]]]]],[[4,[82]]]],[[11,[51,[[13,[[22,[20]]]]]]],[[4,[[21,[20]]]]]],[[11,[51,[[13,[74]]]]],[[4,[31]]]],[[11,[51,[[13,[[22,[74]]]]]]],[[4,[31]]]],[[11,[51,[[13,[1]]]]],[[4,[10]]]],[[11,[51,[[13,[87]]]]],[[4,[57]]]],[[11,[51,[[13,[56]]]]],[[4,[83]]]],[[11,[79,[87]]],[[4,[57]]]],[[11,[51,[[13,[[22,[55]]]]]]],[[4,[33]]]],[[11,[51,[[13,[84]]]]],[[4,[85]]]],[[11,[51,[[13,[[22,[[13,[12]]]]]]]]],[[4,[8]]]],[[11,[51,[[13,[[42,[12,38]]]]]]],[[4,[8]]]],[[11,[51,[[13,[[22,[1]]]]]]],[[4,[10]]]],[11,[[4,[[21,[20]]]]]],[[[4,[8]],44,44],[[4,[8]]]],[[[4,[10]],44,44],[[4,[10]]]],[[[4,[[0,[28,5]]]],44,44],[[4,[[0,[28,5]]]]]],[[[4,[9]],44,44],[[4,[9]]]],[[[4,[[21,[20]]]],44,44],[[4,[[21,[20]]]]]],[[[4,[18]],44,44],[[4,[18]]]],[[[4,[3]],44,44],[[4,[3]]]],[[11,[42,[38]],[22,[88]]],[[4,[5]]]],[[11,[42,[20,38]]],[[4,[[21,[20]]]]]],[[11,[42,[38]]],[[4,[5]]]],[[[4,[71]]],[[4,[71]]]],[[[4,[10]]]],[[[4,[10]]]],[[[4,[10]],[4,[10]]],[[4,[10]]]],[[[4,[5]],[4,[5]]],[[4,[10]]]],[[[4,[5]],7],[[4,[10]]]],[[[4,[9]],11],[[4,[10]]]],[[[4,[3]],[4,[3]]],[[4,[10]]]],[[[4,[8]],[4,[8]]],[[4,[10]]]],[[[4,[9]],[4,[9]]],[[4,[10]]]],[[[4,[8]],[13,[12]]],[[4,[10]]]],[[[4,[18]],[4,[18]]],[[4,[10]]]],[[[4,[5]],[4,[5]]],[[4,[10]]]],[[[4,[5]],7],[[4,[10]]]],[[[4,[18]],[4,[18]]]],[[[4,[3]],[4,[3]]],[[4,[10]]]],[[[4,[9]],11],[[4,[10]]]],[[[4,[10]],[4,[10]]],[[4,[10]]]],[[[4,[9]],[4,[9]]],[[4,[10]]]],[[[4,[8]],[4,[8]]],[[4,[10]]]],[[[4,[5]],[4,[5]]],[[4,[10]]]],[[[4,[8]],[13,[12]]],[[4,[10]]]],[[[4,[28]]],44],0,0,[[[4,[3]]],89],[[[4,[9]]],89],[[[4,[9]]],90],[[[4,[3]]],90],[[[4,[5]]],[[4,[10]]]],[[[4,[5]]],[[4,[10]]]],[[[4,[5]]],15],[[[4,[33]],74,91],[[17,[[22,[55]],16]]]],[[[4,[32]],74,91],[[17,[[22,[74]],16]]]],[[[4,[31]],74,91],[[17,[[22,[74]],16]]]],[[[4,[31]],74,91],[[17,[15,16]]]],[[[4,[32]],74,91],[[17,[15,16]]]],[[[4,[33]],74,91],[[17,[15,16]]]],[[11,44,74],[[17,[[4,[10]],16]]]],[[11,44,74,74],[[17,[[4,[5]],16]]]],[[11,44],[[4,[5]]]],[[11,44,74,74],[[4,[5]]]],[[[4,[28]]],[[4,[28]]]],[[[4,[28]]],92],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[14]],15],[[17,[15,16]]]],[[[4,[28]],11]],[[[4,[5]],[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[9]],[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[10]],[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[8]],[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[5]]],[[4,[5]]]],[[[4,[8]]],[[4,[8]]]],[[[4,[[21,[20]]]]],[[4,[[21,[20]]]]]],[[[4,[18]]],[[4,[18]]]],[[[4,[3]]],[[4,[3]]]],[[[4,[9]]],[[4,[9]]]],[[[4,[10]]],[[4,[10]]]],[[[4,[5]],25,93],[[17,[15,16]]]],[[[4,[71]],44,27],[[17,[[4,[71]],16]]]],[[[4,[28]],74,1,1,[22,[56]]],[[17,[[4,[28]],16]]]],[[[4,[28]],44,1,1,[22,[56]]],[[17,[[4,[28]],16]]]],[[[4,[10]],[4,[10]],[22,[1]]],[[17,[[4,[10]],16]]]],[[[4,[8]],[4,[10]],[22,[[13,[12]]]]],[[17,[[4,[8]],16]]]],[[[4,[5]],[4,[10]],22],[[17,[[4,[5]],16]]]],[[[4,[9]],[4,[10]],[22,[11]]],[[17,[[4,[9]],16]]]],[[[4,[5]],49,22],[[17,[[4,[5]],16]]]],[[[4,[9]],49,[22,[11]]],[[17,[[4,[9]],16]]]],[[[4,[10]],49,[22,[1]]],[[17,[[4,[10]],16]]]],[[[4,[8]],49,[22,[[13,[12]]]]],[[17,[[4,[8]],16]]]],[[[4,[9]],[13,[78]],49],[[17,[15,16]]]],[[[4,[94]],[13,[78]],49],[[17,[15,16]]]],[[[4,[10]],[13,[78]],49],[[17,[15,16]]]],[[[4,[8]],49,25],[[17,[[4,[8]],16]]]],[[[4,[10]],49,25],[[17,[[4,[10]],16]]]],[[[4,[5]],49,25],[[17,[[4,[5]],16]]]],[[[4,[9]],49,25],[[17,[[4,[9]],16]]]],[[[4,[3]]]],[[[4,[3]],35]],[[[4,[28]],72]],[[[4,[5]],86],[[4,[5]]]],[[[4,[10]],86],[[4,[10]]]],[[[4,[18]],86],[[4,[18]]]],[[[4,[9]],86],[[4,[9]]]],[[[4,[3]],86],[[4,[3]]]],[[[4,[8]],86],[[4,[8]]]],[[[4,[[21,[20]]]],86],[[4,[[21,[20]]]]]],[[[4,[[21,[20]]]],86,[22,[[21,[20]]]]],[[4,[[21,[20]]]]]],[[[4,[5]],86,22],[[4,[5]]]],[[[4,[18]],86,[22,[15]]],[[4,[18]]]],[[[4,[10]],86,[22,[1]]],[[4,[10]]]],[[[4,[3]],86,[22,[15]]],[[4,[3]]]],[[[4,[9]],86,[22,[11]]],[[4,[9]]]],[[[4,[8]],86,[22,[[13,[12]]]]],[[4,[8]]]],[[[4,[28]]]],[[[4,[28]],86,44],[[4,[28]]]],[[[4,[33]],1],[[4,[33]]]],[[[4,[10]],1],[[4,[10]]]],[[[4,[8]],1],[[4,[8]]]],[[[4,[32]],1],[[4,[32]]]],[[[4,[9]],1],[[4,[9]]]],[[[4,[31]],1],[[4,[31]]]],[[[4,[9]],29],[[4,[9]]]],[[[4,[10]],29],[[4,[10]]]],[[[4,[8]],29],[[4,[8]]]],[[[4,[32]],29],[[4,[32]]]],[[[4,[31]],29],[[4,[31]]]],[[[4,[33]],29],[[4,[33]]]],[[[4,[33]],12],[[22,[55]]]],[[[4,[31]],12],[[22,[74]]]],[[[4,[32]],12],[[22,[74]]]],[[[4,[31]],12],15],[[[4,[33]],12],15],[[[4,[32]],12],15],[[[4,[5]],11],[[4,[9]]]],[[[4,[9]],11],[[4,[9]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[5]],[4,[5]]]],[[[4,[5]],[0,[6,7]]]],[[[4,[5]],[4,[5]]]],[[[4,[14]],15],[[17,[15,16]]]],[[[4,[10]]],[[22,[78]]]],[[[4,[5]]],22],[[[4,[8]]],15],[[[4,[18]]],15],[[[4,[10]]],15],[[[4,[3]]],15],[[[4,[9]]],15],[[[4,[5]]],15],[[[4,[28]],[22,[44]]],[[4,[28]]]],[[[4,[[21,[20]]]],[97,[95,96]]],[[17,[[4,[[21,[20]]]],16]]]],[[[4,[10]],[97,[95,96]]],[[17,[[4,[10]],16]]]],[[[4,[9]],[97,[95,96]]],[[17,[[4,[9]],16]]]],[[[4,[5]],[97,[95,96]]],[[17,[[4,[5]],16]]]],[[[4,[8]],[97,[95,96]]],[[17,[[4,[8]],16]]]],[[[4,[18]],[97,[95,96]]],[[17,[[4,[18]],16]]]],[[[4,[3]],[97,[95,96]]],[[17,[[4,[3]],16]]]],[[[4,[9]]]],[[[4,[3]]]],[[[4,[8]]]],[[[4,[5]]]],[[[4,[[21,[20]]]]]],[[[4,[10]]]],[[[4,[9]],[97,[95,96]]],[[4,[9]]]],[[[4,[8]],[97,[95,96]]],[[4,[8]]]],[[[4,[10]],[97,[95,96]]],[[4,[10]]]],[[[4,[18]],[97,[95,96]]],[[4,[18]]]],[[[4,[5]],[97,[95,96]]],[[4,[5]]]],[[[4,[3]],[97,[95,96]]],[[4,[3]]]],[[[4,[[21,[20]]]],[97,[95,96]]],[[4,[[21,[20]]]]]],0,[[[4,[5]],44],[[4,[5]]]],[[[4,[9]],44],[[17,[15,16]]]],[[[4,[5]]],[[17,[[101,[98,[100,[[99,[44]]]]]],16]]]],[[[4,[3]]],[[17,[[101,[102,[100,[[99,[44]]]]]],16]]]],[[[4,[10]]],[[104,[103]]]],[[[4,[3]]],[[104,[103]]]],[[[4,[33]]],[[104,[103]]]],[[[4,[32]]],[[104,[103]]]],[[[4,[9]]],[[104,[103]]]],[[[4,[31]]],[[104,[103]]]],[[]],[[[4,[3]],35]],[[[4,[18]],35]],[[[4,[8]]],[[4,[9]]]],[[[4,[5]]],[[42,[22,38]]]],[[[4,[5]]],[[105,[[42,[38]],[42,[22,38]]]]]],[[[4,[9]],[0,[25,26]]],[[17,[[4,[9]],16]]]],[[[4,[8]],[0,[25,26]]],[[17,[[4,[8]],16]]]],[[[4,[[21,[20]]]],[0,[25,26]]],[[17,[[4,[[21,[20]]]],16]]]],[[[4,[10]],[0,[25,26]]],[[17,[[4,[10]],16]]]],[[[4,[5]],[0,[25,26]]],[[17,[[4,[5]],16]]]],[[[4,[3]],[0,[25,26]]],[[17,[[4,[3]],16]]]],[[[4,[3]],27],[[17,[[4,[3]],16]]]],[[[4,[18]],27],[[17,[[4,[3]],16]]]],[[],17],[[],17],[[],106],[[[4,[[21,[20]]]]],[[17,[[4,[[21,[20]]]],16]]]],[[[4,[9]]],[[17,[[4,[9]],16]]]],[[[4,[8]]],[[17,[[4,[8]],16]]]],[[[4,[10]]],[[17,[[4,[10]],16]]]],[[[4,[32]]],[[17,[[4,[32]],16]]]],[[[4,[31]]],[[17,[[4,[31]],16]]]],[[[4,[33]]],[[17,[[4,[33]],16]]]],[[[4,[28]],15],[[17,[[4,[28]],16]]]],[[[4,[28]]]],0,[[[4,[33]],12],[[22,[55]]]],[[[4,[31]],12],[[22,[74]]]],[[[4,[32]],12],[[22,[74]]]],[[[4,[32]],12],15],[[[4,[33]],12],15],[[[4,[31]],12],15],[[[4,[83]],107,[42,[56,38]]]],[[[4,[31]],107,[42,[56,38]]]],[[[4,[82]],107,[42,[56,38]]]],[[[4,[30]],107,[42,[56,38]]]],[[[4,[[21,[20]]]],107,[42,[56,38]]]],[[[4,[85]],107,[42,[56,38]]]],[[[4,[33]],107,[42,[56,38]]]],[[[4,[60]],107,[42,[56,38]]]],[[[4,[80]],107,[42,[56,38]]]],[[[4,[76]],107,[42,[56,38]]]],[[[4,[8]],107,[42,[56,38]]]],[[[4,[57]],107,[42,[56,38]]]],[[[4,[9]],107,[42,[56,38]]]],[[[4,[10]],107,[42,[56,38]]]],[[[4,[9]],107,[13,[56]]]],[[[4,[30]],107,[13,[56]]]],[[[4,[82]],107,[13,[56]]]],[[[4,[80]],107,[13,[56]]]],[[[4,[31]],107,[13,[56]]]],[[[4,[76]],107,[13,[56]]]],[[[4,[85]],107,[13,[56]]]],[[[4,[83]],107,[13,[56]]]],[[[4,[60]],107,[13,[56]]]],[[[4,[33]],107,[13,[56]]]],[[[4,[[21,[20]]]],107,[13,[56]]]],[[[4,[10]],107,[13,[56]]]],[[[4,[57]],107,[13,[56]]]],[[[4,[8]],107,[13,[56]]]],[[]],[[[4,[18]]],44],[[[4,[28]],[42,[[39,[37,38]],38]]],[[4,[28]]]],[[[4,[[21,[20]]]],[4,[10]],[4,[[21,[20]]]]],[[17,[[4,[[21,[20]]]],16]]]],[[[4,[3]],[4,[10]],[4,[3]]],[[17,[[4,[3]],16]]]],[[[4,[10]],[4,[10]],[4,[10]]],[[17,[[4,[10]],16]]]],[[[4,[8]],[4,[10]],[4,[8]]],[[17,[[4,[8]],16]]]],[[[4,[9]],[4,[10]],[4,[9]]],[[17,[[4,[9]],16]]]],[[[4,[18]],[4,[10]],[4,[18]]],[[17,[[4,[18]],16]]]],[[[4,[5]],[4,[10]],[4,[5]]],[[17,[[4,[5]],16]]]],0,[[48,48],48],[[48,48],48],[48,48],[[48,48],48],[[48,48],48],[48,48],[[48,48],48],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[108,37]],[108],[109],[[]],[[]],[110],[108],[109],[111],[[108,[22,[37]]]],[[108,[22,[15]]],[[17,[16]]]],[[[22,[15]]],[[17,[16]]]],[22],[15,[[17,[16]]]],[[108,15],[[17,[16]]]],[[109,15],[[17,[16]]]],[[]],[[110,[77,[[13,[12]]]]]],[[111,[77,[11]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[],108],[[],109],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],1],[[],92],[[],4],[110,[[4,[8]]]],[108,[[4,[3]]]],[109,[[4,[3]]]],[[],[[4,[3]]]],[111,[[4,[9]]]],0,[[]],[[]],[[]],[[]],[[11,23]],[[11,23]],[[11,13]],[[11,[13,[22]]]],[[35,44,44,11],[[17,[[39,[112,38]],16]]]],[[],44],[[],44],[[],44],[[],44],[[],[[39,[37,38]]]],[[]],[[]],[[]],[[]],0,[[11,44],110],[[11,44,[22,[35]]],108],[[11,44,[22,[35]]],109],[[11,44],111],[[]],[110],[111],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,[[]],[[[22,[15]]],[[17,[16]]]],[15,[[17,[16]]]],0,[[],1],[[],92],[[],[[4,[3]]]],[[35,44,44,11],[[17,[[39,[112,38]],16]]]],[[],[[39,[37,38]]]],0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[47,115],[[[116,[86]]],117],[[[118,[86]]],119],[[[120,[86]],35],121],[[122,35],123],[115,22],[117,22],[119,22],[121,22],[123,22],[124,22],[[[125,[23]]],22],[115,22],[117,22],[119,22],[121,22],[123,22],[[[125,[43]]],22],0,[115],[117],[119],[121],[123],[[[125,[23]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[56,56],[[],15],[15],[15,[[17,[15,16]]]],[[126,[0,[23,52]]]],[[[127,[5]],[0,[23,52]]]],[[[127,[5]],[0,[23,52]]]],[[]],[[]],[128],[129],[130],[126],[[[127,[5]]]],[131],[[[132,[5]]]],[133],[[[22,[15]]],[[17,[16]]]],[[[127,[5]],[22,[13]]]],[[128,[22,[[51,[[13,[12]]]]]]]],[22],[[133,[22,[[51,[11]]]]]],[15,[[17,[16]]]],[[129,15],[[17,[16]]]],[[130,15],[[17,[16]]]],[[126,15],[[17,[16]]]],[[[127,[5]],15],[[17,[16]]]],[[[127,[5]],13]],[[129,[0,[23,52]]]],[[130,[0,[23,52]]]],[[]],[[128,[51,[[13,[12]]]]]],[[131,1]],[[[132,[5]]]],[[133,[51,[11]]]],[[129,23]],[[130,23]],[[[0,[25,26]]]],[[[0,[25,26]]],[[4,[5]]]],[25],[25,[[4,[28]]]],[[[0,[25,26]]]],[[25,13]],[[[0,[25,26]]]],[[[0,[25,26]]]],[29,[[4,[30]]]],[29,[[4,[30]]]],[34,[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],134],[[],134],[[[135,[20]]],134],[[],134],[[[135,[20]]],134],[[[104,[136]]],137],[[[104,[138]]]],[[[104,[139]]],87],[[[104,[138]]],138],[[],35],[[],[[17,[44,16]]]],[[],[[13,[12]]]],[[[104,[[13,[140]]]]],[[104,[13]]]],[[[104,[140]]],104],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[104,[138]]],138],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[39,[95,38]]]],[[],[[39,[96,38]]]],[95,[[39,[95,38]]]],[96,[[39,[96,38]]]],[[[0,[25,26]]],[[4,[5]]]],0,0,0,0,[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],0,[[[104,[[0,[141,138]]]]],[[22,[141]]]],0,[44,[[17,[16]]]],[44,[[17,[16]]]],[[95,44],[[17,[16]]]],[[96,44],[[17,[16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[7,[[17,[15,16]]]],[[],[[41,[[40,[[39,[37,38]]]]]]]],[[],[[42,[[39,[37,38]],38]]]],[91,91],[142,142],[143,143],[[[104,[138]]],[[104,[138]]]],[93,93],[144,144],[145,145],[29,29],[34,34],[146,146],[131,131],[[[132,[[0,[147,5]]]]],[[132,[[0,[147,5]]]]]],[133,133],[148,148],[[[135,[[0,[147,20]]]]],[[135,[[0,[147,20]]]]]],[149,149],[150,150],[151,151],[152,152],[153,153],[[],[[104,[154]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[[104,[[0,[155,138]]]],[104,[[0,[155,138]]]]],156],[[],156],[[151,11],1],[1,4],[1,4],[1,4],[1,4],[[[135,[20]]],157],[152,157],0,0,[158,86],[158,86],[158,86],0,[[]],[[],91],[[],[[104,[159]]]],[[],93],[[],145],[[],29],[[],148],[[],149],[[],150],[[],151],[[],153],0,[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[104,[138]]],138],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,0,0,[[[104,[[0,[141,138]]]]],11],0,[15],[15,[[17,[15,16]]]],[[[104,[134]]],[[17,[[104,[[0,[134,67,68]]]],[104,[134]]]]]],[[[104,[134]]],[[104,[[0,[134,67,68]]]]]],[[[104,[138]]],[[160,[138]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[104,[138]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],15],[[],35],[[],35],0,[[],[[162,[161]]]],[[],[[162,[161]]]],[[91,91],1],[[[104,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,138]]]],138]]]],138]]]],138]]]]],1],[[[104,[164]],164],1],[[[104,[37]],37],1],[[29,29],1],[[148,148],1],[[149,149],1],[[150,150],1],[[151,151],1],[[152,152],1],[[153,153],1],[[]],[[]],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],[[17,[15,16]]]],[[],[[17,[16]]]],[129,1],[130,1],[126,1],[[[127,[5]]],1],[[],1],[129,92],[130,92],[126,92],[[[127,[5]]],92],[[],92],[[],[[77,[92]]]],0,[138,[[17,[138,16]]]],[[138,[4,[10]]],[[17,[4,16]]]],[[[4,[10]]],[[17,[15,16]]]],[[153,25],153],[[],4],[128,[[4,[8]]]],[[],[[4,[3]]]],[131,[[4,[10]]]],[[[132,[5]]],[[4,[5]]]],[133,[[4,[9]]]],0,[[91,45],[[17,[46]]]],[[142,45],[[17,[46]]]],[[143,45],[[17,[46]]]],[[[104,[[0,[165,138]]]],45],[[17,[46]]]],[[[104,[[0,[166,138]]]],45],[[17,[46]]]],[[[104,[138]],45],[[17,[46]]]],[[29,45],[[17,[46]]]],[[146,45],[[17,[46]]]],[[148,45],[[17,[46]]]],[[[135,[[0,[166,20]]]],45],[[17,[46]]]],[[149,45],[[17,[46]]]],[[150,45],[[17,[46]]]],[[151,45],[[17,[46]]]],[[152,45],[[17,[46]]]],[[153,45],[[17,[46]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[96,[[97,[[167,[44]],96]]]],[[]],[[[42,[78,38]]],[[97,[[41,[[40,[78]]]],[167,[[22,[44]]]]]]]],[[[4,[30]]],[[97,[[167,[44]],[167,[[22,[44]]]]]]]],[168],[[[13,[78]]],[[97,[[41,[[40,[78]]]],[167,[[22,[44]]]]]]]],[95,[[97,[95,[167,[[22,[44]]]]]]]],[[]],[[]],[[]],[[]],[[]],[169,[[104,[170]]]],[[[42,[38]]],[[104,[13]]]],[170,[[104,[170]]]],[[]],[[[104,[11]]],[[104,[[13,[12]]]]]],[62,[[104,[11]]]],[[[77,[[0,[171,138]]]]],[[104,[[0,[171,138]]]]]],[172,[[104,[173]]]],[174,[[104,[175]]]],[[],104],[11,[[104,[11]]]],[175,[[104,[175]]]],[173,[[104,[173]]]],[[[39,[138,38]]],[[104,[138]]]],[[[13,[147]]],[[104,[[13,[147]]]]]],[168],[176,93],[177,93],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[178,151],[[]],[[]],[[[42,[152,38]]],153],[[[22,[88]]]],[[[179,[86]],[179,[12]],[22,[88]]]],[[[179,[86]],[179,[12]],[22,[88]]]],[49,[[104,[13]]]],[49,151],[[49,44],[[120,[86]]]],[49,[[120,[86]]]],[[11,23]],[[49,157],[[120,[86]]]],[[49,44],[[120,[86]]]],[[11,23]],[[],[[104,[138]]]],[[11,13]],[[11,[13,[22]]]],[11],[[11,44],138],[[11,44],138],[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],1],[44,22],[44,22],[44,22],[44,[[17,[53,16]]]],[[[182,[181,181,181]],44],22],[[[183,[181,181]],44],22],[[184,44],22],[[185,44],22],[[186,44],22],[[187,44],22],[[[189,[188]],44],22],[[[190,[26]],44],22],[[[191,[188]],44],22],[[192,44],22],[[193,44],22],[[194,44],22],[[195,44],22],[[[196,[20]],44],22],[[[197,[20]],44],22],[[151,11],[[22,[35]]]],[44,[[17,[53,16]]]],[44,[[17,[53,16]]]],[44,53],[44,53],[[151,44],22],[[151,44],22],[[],35],[[151,11],[[22,[92]]]],[[151,11],22],[107,56],[[[104,[138]]],[[22,[138]]]],[[[104,[138]]],138],[[],[[42,[11,38]]]],[151,[[42,[11,38]]]],[153,[[42,[11,38]]]],[44,[[22,[54]]]],[44,22],[44,53],[[[182,[181,181,181]],44],22],[[[183,[181,181]],44],22],[[184,44],22],[[185,44],22],[[186,44],22],[[187,44],22],[[[189,[188]],44],22],[[[190,[26]],44],22],[[[191,[188]],44],22],[[192,44],22],[[193,44],22],[[194,44],22],[[195,44],22],[[[196,[20]],44],22],[[[197,[20]],44],22],[[138,44],22],[[138,44],22],[44,53],[[],44],[[1,1],[[17,[19,16]]]],[[]],[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],1],[[]],[[],1],[[],1],[[[104,[[0,[198,138]]]],199]],[[29,199]],[[148,199]],[[152,199]],0,0,[[]],[11,[[22,[44]]]],[[151,11],[[22,[44]]]],[[153,11],[[22,[44]]]],[[[13,[78]]],23],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[129,[[39,[37,38]]]],[130,[[39,[37,38]]]],[126,[[39,[37,38]]]],[[[127,[5]]],[[39,[37,38]]]],[[],[[39,[37,38]]]],[[151,44,[114,[113]],35],[[17,[[22,[35]],16]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[104,22],[[[135,[20]]]],[151],[[[104,[138]]]],[138,15],[[[104,[154]]],15],[[],[[42,[38]]]],[[],1],[151,1],[[],[[17,[[4,[10]],16]]]],[[],1],[15,[[17,[[4,[10]],16]]]],[15,[[17,[[4,[10]],16]]]],[[],[[17,[[4,[10]],16]]]],[138,1],[[],[[4,[10]]]],[[],[[4,[10]]]],[[[135,[20]],44],1],[44,1],0,[[],1],[[],72],[[],1],[44,1],[[[135,[20]],44],1],[151,23],[151,[[0,[23,69]]]],[151,[[0,[23,69]]]],[151,[[0,[23,69]]]],[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],1],0,[[],44],[[[135,[20]]],44],[151,44],[44,15],0,[[]],[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],1],[[]],0,[[[104,[147]]],147],[[],22],[[],15],[[],15],[[],[[22,[74]]]],[[],[[22,[74]]]],[[],22],[[],[[22,[74]]]],[[],15],[[],15],[[151,151]],[[35,35],[[17,[35,16]]]],0,0,0,[[],22],[[],15],[[],15],0,[[],[[17,[4,16]]]],[[],[[17,[15,16]]]],[15],[15,[[17,[15,16]]]],0,0,[[],44],[[],[[17,[44,16]]]],[[],[[17,[44,16]]]],[[],11],0,0,[[[104,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,138]]]],138]]]],138]]]],138]]]]],1],[44,[[22,[44]]]],[[]],[11],[[11,44,44],128],[[11,44,44],129],[[11,44,44],130],[[11,44,44],126],[[11,44,44,35],[[127,[5]]]],[[],104],[[11,44],131],[[11,44],[[132,[5]]]],[[11,44,44],133],[[],151],[[[200,[62]],157,1],152],[201,104],[[44,44],4],[[44,44],15],[[151,44,[114,[113]],35],[[17,[151,16]]]],[[],[[104,[140]]]],[44,[[104,[[13,[140]]]]]],[[],[[104,[140]]]],[44,[[104,[[13,[140]]]]]],[[]],[[]],0,[[],44],[[[135,[20]]],44],0,0,[[[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]],[104,[[0,[[180,[[0,[[180,[[0,[[180,[[0,[180,138]]]],138]]]],138]]]],138]]]]],[[22,[156]]]],[[],[[4,[10]]]],[[],[[4,[10]]]],[[],[[4,[10]]]],[[],[[4,[10]]]],[[],[[202,[104]]]],0,0,0,0,0,[[],15],[203],[[[104,[[0,[141,138]]]],203]],[[[104,[138]],[104,[138]]],1],[[74,91],[[17,[22,16]]]],[[74,91],[[17,[15,16]]]],[[74,91],[[17,[15,16]]]],[[],15],0,[15],[15,[[17,[15,16]]]],[[151,11],[[22,[35]]]],[11],[[151,11,[114,[113]]],[[22,[[114,[113]]]]]],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[]],[[],15],0,[[138,25,93],[[17,[15,16]]]],[[25,93],[[17,[15,16]]]],[[138,[4,[10]],22],[[17,[138,16]]]],[[138,49,22],[[17,[138,16]]]],[[138,49,25],[[17,[138,16]]]],[[44,1]],[[151,11,35],[[22,[35]]]],[[151,44,35],[[22,[35]]]],[86,4],[86,15],[86,4],[[151,11],[[22,[35]]]],[[151,44],22],[[]],[[]],[131],[[[132,[5]]]],0,[[86,44],15],[[[135,[20]],44,44]],0,[[138,44,44],138],[[44,44]],[[138,44,44],138],[[44,44]],[[[135,[20]],44,44]],[1,4],[29,4],[29,15],[[[104,[[0,[141,138]]]]],[[22,[141]]]],[[[104,[[0,[204,138]]]],205],[[17,[206]]]],[[[104,[[0,[207,138]]]],208],[[17,[206]]]],[[[104,[[0,[207,138]]]]],[[17,[206]]]],[[[104,[[0,[204,138]]]]],[[17,[206]]]],[12,22],[12,15],[12,15],[11,[[4,[9]]]],[11,[[4,[9]]]],0,0,0,[[[104,[138]]],44],[15],[15,[[17,[15,16]]]],0,[[],22],[[],15],[[138,[97,[95,96]]],[[17,[138,16]]]],[[[4,[30]]],[[17,[15,16]]]],[95,[[17,[15,16]]]],[95,15],[96,[[17,[15,16]]]],[96,15],[[]],[[138,[97,[95,96]]],138],[[[4,[30]]],[[17,[15,16]]]],[44,15],[151,153],[[],[[39,[54,38]]]],[[[135,[20]]],[[39,[37,38]]]],[[],[[42,[[13,[12]],38]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[151,151],[[17,[1,16]]]],0,0,[[138,[0,[25,26]]],[[17,[138,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[[104,[13]]],[[17,[[104,[99]]]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[151,11],[[17,[35,16]]]],[[151,44],[[17,[16]]]],[[151,11],[[17,[92,16]]]],[[151,11],[[17,[16]]]],[[151,11],[[17,[35,16]]]],[11,[[17,[44,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],[[17,[104,209]]]],[[],[[17,[[104,[140]],209]]]],[[],[[17,[[104,[140]],209]]]],[[],[[17,[[202,[104]],209]]]],[104,[[17,[104]]]],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],11],[[],11],[[],[[17,[4,16]]]],[[],[[17,[15,16]]]],[[[104,[[210,[67]]]]],[[17,[67]]]],[[[104,[147]]],147],0,0,[[[135,[20]]],[[22,[88]]]],[[[135,[20]],44],20],0,[[[135,[20]],44],20],0,[[[135,[20]]],[[104,[[42,[20,38]]]]]],[12,22],[12,15],[12,15],0,[[107,[42,[56,38]]]],[[107,[13,[56]]]],[[[104,[[210,[67]]]],201],17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[104,[138]]],44],0,0,[44],[44,151],[[151,[114,[113]],35],[[22,[35]]]],[[152,[211,[62,62,38]]],152],[[153,[211,[62,62,38]]],153],[[[135,[20]],[22,[88]]],[[39,[37,38]]]],[[[4,[10]],4],[[17,[4,16]]]],0,0,0,[[[212,[20]]]],[[[212,[20]]]],[[[212,[20]],[22,[20]]]],[[[212,[20]],20]],[[[212,[20]],134]],[[[212,[20]],134],[[17,[16]]]],[[]],[[]],[[],[[212,[20]]]],[44],[44],[44],[[[212,[20]]],[[4,[[21,[20]]]]]],[[]],[[],44],[[]],[[11,44],[[212,[20]]]],[[[212,[20]]],15],[[],17],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[[]],[[]],[[]],[[]],[213,213],[[]],[[],213],[44],[44],[44],[44],[44],[44],[[213,213],1],[[213,45],[[17,[46]]]],[[]],[[]],[11,[[17,[214]]]],[[11,49],[[17,[213,16]]]],[[],44],[[],44],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],35],[35,[[17,[15,16]]]],[[],35],0,[44,[[17,[53,16]]]],[44,53],[[],35],[44,53],[[35,35],[[17,[35,16]]]],0,[[]],[44],0,0,0,[[[22,[88]]]],[[[179,[86]],[179,[12]],[22,[88]]]],[[[179,[86]],[179,[12]],[22,[88]]]],0,[[]],[[]],[[],215],[44],[44],[44],[[215,[22,[157]]],[[17,[122,16]]]],[[]],[[],44],[[]],[215,1],[[44,44],215],[[215,[39,[37,38]]]],[215],[[],17],[[],17],[[],106],[[]],0,0,[[]],[[]],[[37,157],[[39,[37,38]]]],[44],[44],[44],[[216,[22,[157]]],[[17,[[120,[86]],217]]]],[[]],[[],44],[[]],[216,1],[44,216],[216,[[13,[86]]]],[[216,37]],[216],[[216,[13,[[39,[37,38]]]]]],[216],[[216,[22,[37]]]],[216,[[218,[86]]]],[[],17],[[],17],[[],106],[[]],0,[219,134],[219,[[39,[37,38]]]],[219,134],[[]],[[]],[219,157],[[],219],[44],[44],[44],[[219,45],[[17,[46]]]],[[]],[[],44],[[]],[219,44],[219],[[219,44]],[219],[[],17],[[],17],[[],106],[219,[[22,[220]]]],[[]],0,0,0,[[]],[134],[[11,44],[[39,[221,38]]]],[[],[[104,[25]]]],[[],1],[[[39,[25,38]],[104,[25]]]],[[],15],0,[[138,44,44],138],[[138,44,44],138],0,[1],[[]],[[],1],[201],0,0,[[23,44,44],[[116,[86]]]],[[23,44,44],[[118,[86]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[0,[25,26]]]],[[[0,[25,26]]],[[4,[5]]]],[25],[25,[[4,[28]]]],[[[0,[25,26]]]],[[25,13]],[[[0,[25,26]]]],[[[0,[25,26]]]],[29,[[4,[30]]]],[34,[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[39,[95,38]]]],[[],[[39,[96,38]]]],[[[0,[25,26]]],[[4,[5]]]],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[44,[[17,[16]]]],[44,[[17,[16]]]],[1,4],[1,4],[1,4],[1,4],0,0,[[]],[[]],[[],[[17,[15,16]]]],[[],[[17,[16]]]],[138,[[17,[138,16]]]],[[138,[4,[10]]],[[17,[4,16]]]],0,[[11,44],138],[[11,44],138],[44,22],[44,22],[44,[[17,[53,16]]]],[44,53],[[138,44],22],[[138,44],22],[[]],[[]],[[],[[17,[[4,[10]],16]]]],[15,[[17,[[4,[10]],16]]]],[[],[[17,[[4,[10]],16]]]],[[]],[[]],0,[[],22],[[],[[22,[74]]]],[[],22],[[],22],[[],[[17,[4,16]]]],0,0,[[],[[17,[44,16]]]],[[44,44],4],[[]],[[]],0,0,[[],[[4,[10]]]],[[],[[4,[10]]]],[[74,91],[[17,[22,16]]]],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[]],[[138,25,93],[[17,[15,16]]]],[[138,[4,[10]],22],[[17,[138,16]]]],[[138,49,22],[[17,[138,16]]]],[[138,49,25],[[17,[138,16]]]],[86,4],[86,4],0,[1,4],[29,4],[12,22],[11,[[4,[9]]]],[[],22],[[138,[97,[95,96]]],[[17,[138,16]]]],[[]],[[138,[97,[95,96]]],138],[[],[[42,[[13,[12]],38]]]],[[138,[0,[25,26]]],[[17,[138,16]]]],[[],[[17,[4,16]]]],[12,22],0,[[[4,[10]],4],[[17,[4,16]]]],[[44,[42,[1,38]]]],0,[[13,1,1]],[[[13,[[0,[222,[180,[[0,[222,[180,[[0,[222,[180,[[0,[222,180]]]]]]]]]]]]]]]]]],[[[13,[[0,[222,[180,[[0,[222,[180,[[0,[222,[180,[[0,[222,180]]]]]]]]]]]]]]]]]],[[[13,[15]],[13,[1]],1],[[17,[223,16]]]],[[11,[13,[15]],[13,[1]],1],[[17,[[4,[8]],16]]]],[15,[[17,[[39,[37,38]],16]]]],0,[158,86],[158,86],[158,86],[224,86],[[],158],[158,86],[158,86],[158,86],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[53,23],[[53,[42,[53,38]]]],[[[59,[65,64]],[59,[65,64]]]],[[53,53],53],[[[4,[9]],15],[[17,[15,16]]]],[[[4,[8]],15],[[17,[15,16]]]],[[[4,[10]],15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[225,19],15],[[226,226],[[17,[16]]]],[227],[[227,11]],[[226,29],[[4,[30]]]],[53,53],[[[59,[58,57]]],[[0,[23,52]]]],[[[59,[63,60]]],[[0,[23,52]]]],[[],35],[[[59,[70,60]]],[[0,[23,52]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[35,[[17,[15,16]]]],[[[59,[63,60]],35],[[17,[15,16]]]],[[[59,[58,57]],35],[[17,[15,16]]]],[[[59,[70,60]],35],[[17,[15,16]]]],[[[59,[66,60]],35],[[17,[15,16]]]],[[[59,[65,64]],35],[[17,[15,16]]]],[[226,35],[[17,[15,16]]]],[[225,35],[[17,[15,16]]]],[[53,35],[[17,[53,16]]]],[[[59,[63,60]],61],[[59,[63,60]]]],[[[59,[66,60]],61],[[59,[66,60]]]],0,[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[[4,[33]],15],[[17,[15,16]]]],[[[4,[31]],15],[[17,[15,16]]]],[[[59,[28,28]]],[[59,[28,28]]]],[228,228],[229,229],[226,226],[225,225],[230,230],[53,53],[35,35],[92,92],[61,61],[80,80],[82,82],[30,30],[83,83],[85,85],[76,76],[57,57],[60,60],[33,33],[31,31],[58,58],[65,65],[63,63],[66,66],[231,231],[70,70],[157,157],[232,232],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[92,35]],[[[59,[63,60]],62],[[17,[[59,[63,60]],16]]]],[92,35],[[[59,[66,60]]],[[4,[60]]]],[[],228],[[],53],[[],35],[44],[44],[44],[44],[[[59,[28,28]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[59,[28,28]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[59,[65,64]],[59,[65,64]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[227,49]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[225],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],35],[[[59,[58,57]]],35],[[[59,[63,60]]],35],[[[59,[70,60]]],35],[[[59,[65,64]]],35],[[[59,[66,60]]],35],[226,35],[225,35],[53,35],0,[[229,229],1],[[53,53],1],[[35,157],1],[[35,35],1],[[92,92],1],[[61,61],1],[[157,157],1],[[232,232],1],[[225,225],[[4,[10]]]],[[225,225],[[4,[10]]]],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[227,11],1],[[[59,[28,28]]],92],[[225,11],[[17,[15,16]]]],[225,[[13,[15]]]],[225,[[42,[15,38]]]],[[228,11],[[22,[78]]]],[227,226],[[228,45],[[17,[46]]]],[[230,45],[[17,[46]]]],[[53,45],[[17,[46]]]],[[53,45],[[17,[46]]]],[[35,45],[[17,[46]]]],[[35,45],[[17,[46]]]],[[92,45],[[17,[46]]]],[[61,45],[[17,[46]]]],[[61,45],[[17,[46]]]],[[157,45],[[17,[46]]]],[[232,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[[4,[60]]],[[59,[70,60]]]],[[[4,[57]]],[[59,[58,57]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[188,53],[[[22,[[200,[53]]]]],53],[[]],[[]],[53,35],[53,35],[157,35],[[]],[53,92],[152,92],[[]],[232,61],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[233,157],[234,157],[[]],[[]],[[[4,[30]],[104,[228]]],226],[[11,49,61],[[59,[66,60]]]],[[11,49,61],[[59,[66,60]]]],[[[4,[30]]],226],[[11,49],[[59,[58,57]]]],[[11,49],[[59,[58,57]]]],[[11,49,61],[[59,[63,60]]]],[[11,49,61],[[59,[63,60]]]],[[11,49],[[59,[70,60]]]],[[11,49],[[59,[70,60]]]],[[[114,[113]],35],92],[[11,44],226],[[11,44],225],[[228,78],11],[[[59,[70,60]],44],[[17,[53,16]]]],[[[59,[66,60]],44],[[17,[53,16]]]],[[[59,[65,64]],44],[[17,[53,16]]]],[[[59,[58,57]],44],[[17,[53,16]]]],[[[59,[63,60]],44],[[17,[53,16]]]],[44,[[17,[53,16]]]],[[226,44],[[17,[53,16]]]],[[225,44],[[17,[53,16]]]],[[[59,[63,60]],44],53],[[[59,[58,57]],44],53],[[[59,[65,64]],44],53],[[[59,[70,60]],44],53],[[[59,[66,60]],44],53],[44,53],[[226,44],53],[[225,44],53],[228,[[116,[86]]]],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[228,78],[[22,[11]]]],[226,[[104,[228]]]],[53,[[22,[11]]]],[44,53],[[225,225],[[4,[10]]]],[[225,225],[[4,[10]]]],[[229,199]],[[53,199]],[[35,199]],[[61,199]],[[157,199]],[[232,199]],[[[59,[70,60]]],[[4,[30]]]],[[[59,[66,60]]],[[4,[60]]]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[35,[[22,[35]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[225],[[[59,[70,60]]],15],[[[59,[65,64]]],15],[[[59,[66,60]]],15],[[[59,[63,60]]],15],[[[59,[58,57]]],15],[226,15],[225,15],[53,[[17,[53,16]]]],[226,1],[225,1],[35,1],[228,1],[[225,15],[[17,[[4,[10]],16]]]],[35,1],[228,1],[35,1],[53,1],[35,1],[35,1],[35,1],[53,1],[35,1],[35,1],[53,1],[35,1],[226,235],[228,44],[226,44],[225,44],[226,[[4,[30]]]],[[225,225],[[4,[10]]]],[[225,225],[[4,[10]]]],[[35,35],[[17,[35,16]]]],[[[59,[66,60]]],[[4,[60]]]],[[[59,[66,60]]],[[4,[60]]]],[[[59,[70,60]]],[[4,[30]]]],[[[59,[66,60]]],[[4,[60]]]],[[[59,[63,60]],[22,[236]]],[[17,[[59,[63,60]],16]]]],[[[59,[58,57]],[22,[236]]],[[17,[[59,[58,57]],16]]]],[[[59,[58,57]],[22,[236]]],[[17,[[59,[58,57]],16]]]],[[[59,[63,60]],[22,[236]]],[[17,[[59,[63,60]],16]]]],[[[59,[65,64]],[59,[65,64]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[226,[[17,[44,16]]]],[226,11],[225,[[114,[113]]]],[92,[[114,[113]]]],0,[[[59,[70,60]]],[[4,[30]]]],[[[59,[66,60]]],[[4,[60]]]],[[]],[[11,44],227],[[11,[51,[[13,[[22,[158]]]]]]],[[59,[63,60]]]],[[11,[51,[[13,[237]]]]],[[59,[58,57]]]],[[11,[51,[[13,[[22,[237]]]]]]],[[59,[58,57]]]],[[11,[51,[[13,[158]]]]],[[59,[63,60]]]],[[11,[51,[[13,[224]]]]],[[59,[70,60]]]],[[11,[51,[[13,[238]]]]],[[59,[66,60]]]],[[11,[51,[[13,[[22,[224]]]]]]],[[59,[70,60]]]],[[11,[51,[[13,[[22,[238]]]]]]],[[59,[66,60]]]],[[11,[13,[15]]],[[17,[225,16]]]],[[11,35],92],[235,22],[[225,225],[[4,[10]]]],[[225,225],[[4,[10]]]],[225,44],[[11,[13,[11]],11],[[59,[58,57]]]],[[11,[13,[11]],11],[[59,[70,60]]]],[[53,53],[[22,[156]]]],[[[59,[65,64]]],[[22,[44]]]],[225],[225,92],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[225,11]],[[[59,[63,60]],239,239,[22,[236]]],[[17,[[59,[63,60]],16]]]],[[[59,[58,57]],239,239,[22,[236]]],[[17,[[59,[58,57]],16]]]],[[228,228],1],[[[59,[65,64]]],44],[[[59,[70,60]]],[[4,[30]]]],[[[59,[66,60]]],[[4,[60]]]],[[226,1]],[[92,[114,[113]]]],[[[59,[63,60]],61]],[[[59,[66,60]],61]],[[[59,[63,60]],62],[[17,[16]]]],[235],[[226,1],226],[[226,29],226],[[[59,[70,60]],11],[[4,[9]]]],[[[59,[63,60]],11],[[17,[[4,[9]],16]]]],[[[59,[58,57]],11],[[4,[9]]]],[[[59,[65,64]],[59,[65,64]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[[[59,[63,60]]],61],[[[59,[66,60]]],61],[[[59,[63,60]]],[[22,[62]]]],[35,157],[92,152],[61,232],[61,11],[157,157],[[[59,[58,57]]],[[104,[103]]]],[[[59,[66,60]]],[[104,[103]]]],[[[59,[70,60]]],[[104,[103]]]],[[[59,[63,60]]],[[104,[103]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[35,35],[157,240],[[[59,[58,57]],11],[[4,[9]]]],[[[59,[70,60]],11],[[4,[9]]]],[[[59,[63,60]],11],[[17,[[4,[9]],16]]]],[[],62],[[],62],[[],62],[[[59,[63,60]],241,[22,[236]]],[[17,[[59,[63,60]],16]]]],[[[59,[58,57]],241,[22,[236]]],[[17,[[59,[58,57]],16]]]],[53,[[17,[73,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[226,[[17,[226,16]]]],[225,242],[226,[[17,[242,16]]]],[[35,53],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[],243],[44],[44],[44],[243],[1],[[]],[[],243],[[],44],[[]],[[]],[[],17],[[],17],[[],106],[[],1],[[]],[201],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[44],[244],[44],[44],[44],[44],[44],[44],[44],[44],0,[[244,45],[[17,[46]]]],[[244,45],[[17,[46]]]],[[16,45],[[17,[46]]]],[[16,45],[[17,[46]]]],[[217,45],[[17,[46]]]],[[217,45],[[17,[46]]]],[[[200,[[77,[11]]]]],244],[[]],[[]],[245,16],[217,16],[246,16],[247,217],[248,217],[249,217],[[]],[250,217],[251,217],[252,217],[246,217],[253,217],[[[0,[141,67,68]]],217],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[141,16],0,0,0,0,[203],[203],[[]],[16,[[22,[141]]]],[165,16],[[],62],[[],62],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[16,25],16],[[56,56],56],0,0,0,0,0,0,0,0,[2],[2],[2],[[[256,[[0,[254,198,147]],[0,[255,159]]]],[256,[[0,[254,198,147]],[0,[255,159]]]]],[[256,[[0,[254,198,147]],[0,[255,159]]]]]],[[[256,[[0,[254,198,147]],[0,[255,159]]]],[256,[[0,[254,198,147]],[0,[255,159]]]]],[[256,[[0,[254,198,147]],[0,[255,159]]]]]],[[[256,[[0,[254,198,147]],[0,[255,159]]]],[256,[[0,[254,198,147]],[0,[255,159]]]]],[[256,[[0,[254,198,147]],[0,[255,159]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[107,257],[257,257],[[[256,[147,147]]],[[256,[147,147]]]],[107,107],[[]],[[]],[[]],[[],257],[[],[[256,[107]]]],[[],107],[44],[44],[256],[44],[44],[44],[256],[44],[44],[44],[44],[[[256,[[0,[254,198]],255]],[256,[[0,[254,198]],255]]],1],[[],1],[[],1],[[],1],[[],1],[[[256,[[0,[254,198,26]],255]],49]],[[[256,[[0,[254,198]],255]],49]],[257,56],[[257,45],[[17,[46]]]],[[[256,[166,255]],45],[[17,[46]]]],[[107,45],[[17,[46]]]],[[]],[[]],[[[258,[107]]],[[256,[107]]]],[[[99,[[0,[254,198]]]]],[[256,[[0,[254,198]],107]]]],[[]],[49,[[256,[[0,[254,198]],107]]]],[[56,56,56,56],107],[[107,198],56],[[107,198],56],[[],44],[[],44],[[],44],[[]],[[]],[[[256,[107]]],[[258,[107]]]],[[]],[256],[256],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[[]],[[]],[[],[[256,[107]]]],[[],107],0,[[[256,[[0,[254,198,147]],[0,[255,159]]]],[256,[[0,[254,198,147]],[0,[255,159]]]]],[[256,[[0,[254,198,147]],[0,[255,159]]]]]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[44],[44],[44,[[256,[107]]]],[[44,255],[[256,[255]]]],[255,[[256,[255]]]],[44,107],[[56,56,56,56],107],[[257,[13,[12]]]],[[257,259]],[[257,81]],[[257,78]],[[257,56]],[[257,12]],[[257,44]],0,0,[[],44],[[[0,[260,67,68]]],[[17,[1]]]],0,0,0,0,[2],0,0,[[]],[[]],0,0,[[[261,[147,147,147]]],[[261,[147,147,147]]]],[[]],0,0,[[],[[261,[107]]]],[261],[44],[261],[44],[44],[[[261,[[0,[254,198]],[163,[[163,[[163,[163]]]]]],255]],[261,[[0,[254,198]],[163,[[163,[[163,[163]]]]]],255]]],1],[[],1],[[],1],[[],1],[[],1],0,[[[261,[[0,[254,198,26]],26,255]],49]],[[[261,[[0,[254,198]],255]],49]],0,[[[261,[166,166,255]],45],[[17,[46]]]],[99,[[261,[[0,[254,198]],107]]]],[[]],[[[262,[107]]],[[261,[107]]]],[49,[[261,[[0,[254,198]],107]]]],[[[261,[[263,[[0,[198,254,138]]]],[0,[198,254]],255]],[0,[198,254,138]]],22],[[[261,[[263,[[0,[198,254,138]]]],[0,[198,254]],255]],[0,[198,254,138]]],22],[[[261,[[263,[[0,[198,254,138]]]],[0,[198,254]],255]],[0,[198,254,138]]],22],[[[261,[[0,[254,198,[263,[[0,[254,198,138]]]]]],255]],[0,[254,198,138]]]],[[],44],[[[261,[[0,[198,254]],255]],[0,[198,254]]],22],[[[261,[107]]],[[262,[107]]]],[[]],[261],[261],[261],[[[261,[[0,[198,254]],255]]],[[264,[[0,[198,254]]]]]],[[[261,[[0,[198,254]],255]]],[[265,[[0,[198,254]]]]]],0,0,[[],[[261,[107]]]],0,[[[261,[[263,[[0,[198,254,138]]]],[0,[198,254]],255]],[0,[198,254,138]]],22],0,0,[[]],0,[[],17],[[],17],[[],106],0,0,[[]],[44,[[261,[107]]]],[[44,255],[[261,[255]]]],[255,[[261,[255]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]],[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]]],[[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]],[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]]]]],[[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]]]],[[],1],[[[269,[86,219]]]],[[[269,[86,219]],15],[[17,[16]]]],[[[271,[270]],201]],[[[48,[272]],201]],[[[273,[270]],201]],[[[116,[270]],201]],[[[274,[272]],25]],[[47,25]],[[[118,[270]]],[[104,[37]]]],[47,[[104,[37]]]],[[[276,[275]]],[[104,[37]]]],[277,[[104,[37]]]],[122,[[104,[37]]]],[[[120,[270]]],[[104,[37]]]],[278,[[104,[37]]]],[279,[[104,[37]]]],[[[48,[272]]],[[104,[37]]]],[280,[[104,[37]]]],[[[116,[270]]],[[104,[37]]]],[[],134],[[],134],[[[281,[270]]],134],[[[271,[270]]],134],[[[118,[270]]],134],[282,134],[47,134],[[[284,[275,283]]],134],[[[276,[275]]],134],[285,134],[277,134],[[[286,[283]]],134],[122,134],[[[269,[270,283]]],134],[[[120,[270]]],134],[278,134],[279,134],[287,134],[[[274,[272]]],134],[[[48,[272]]],134],[288,134],[280,134],[[[273,[270]]],134],[[[289,[270]]],134],[[[116,[270]]],134],[[],134],[[[118,[270]]],134],[47,134],[[[276,[275]]],134],[277,134],[122,134],[[[120,[270]]],134],[278,134],[279,134],[[[48,[272]]],134],[280,134],[[[116,[270]]],134],[[],[[104,[37]]]],[[[281,[270]]],[[104,[37]]]],[[[271,[270]]],[[104,[37]]]],[282,[[104,[37]]]],[[[284,[275,283]]],[[104,[37]]]],[285,[[104,[37]]]],[[[286,[283]]],[[104,[37]]]],[[[269,[270,283]]],[[104,[37]]]],[[[274,[272]]],[[104,[37]]]],[288,[[104,[37]]]],[[[273,[270]]],[[104,[37]]]],[[[289,[270]]],[[104,[37]]]],[[],[[39,[37,38]]]],[[[281,[270]]],[[39,[37,38]]]],[[[271,[270]]],[[39,[37,38]]]],[282,[[39,[37,38]]]],[[[284,[275,283]]],[[39,[37,38]]]],[285,[[39,[37,38]]]],[[[286,[283]]],[[39,[37,38]]]],[[[269,[270,283]]],[[39,[37,38]]]],[287,[[39,[37,38]]]],[[[274,[272]]],[[39,[37,38]]]],[288,[[39,[37,38]]]],[[[273,[270]]],[[39,[37,38]]]],[[[289,[270]]],[[39,[37,38]]]],[[],134],[[[281,[270]]],134],[[[271,[270]]],134],[282,134],[[[284,[275,283]]],134],[285,134],[[[286,[283]]],134],[[[269,[270,283]]],134],[287,134],[[[274,[272]]],134],[288,134],[[[273,[270]]],134],[[[289,[270]]],134],[37,37],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[118,[270]]],[[39,[37,38]]]],[47,[[39,[37,38]]]],[[[276,[275]]],[[39,[37,38]]]],[277,[[39,[37,38]]]],[122,[[39,[37,38]]]],[[[120,[270]]],[[39,[37,38]]]],[278,[[39,[37,38]]]],[279,[[39,[37,38]]]],[[[48,[272]]],[[39,[37,38]]]],[280,[[39,[37,38]]]],[[[116,[270]]],[[39,[37,38]]]],[[],[[39,[96,38]]]],[[],[[39,[95,38]]]],[[[281,[270]]],44],[285,44],[[[274,[272]]],44],[[[273,[270]]],44],[[[289,[270]]],44],[44,[[17,[16]]]],[44,[[17,[16]]]],[[[48,[[0,[267,290]]]],[48,[[0,[267,290]]]]],[[48,[[0,[267,290]]]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,290]]]],[0,[267,290]]],[[48,[[0,[267,290]]]]]],[[[48,[[0,[267,291]]]],[0,[267,291]]],[[48,[[0,[267,291]]]]]],[[[48,[[0,[267,291]]]],[48,[[0,[267,291]]]]],[[48,[[0,[267,291]]]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,292]]]],[48,[[0,[267,292]]]]],[[48,[[0,[267,292]]]]]],[[[48,[[0,[267,292]]]],[0,[267,292]]],[[48,[[0,[267,292]]]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,293]]]],[0,[267,293]]],[[48,[[0,[267,293]]]]]],[[[48,[[0,[267,293]]]],[48,[[0,[267,293]]]]],[[48,[[0,[267,293]]]]]],[[[48,[[0,[267,294]]]],[48,[[0,[267,294]]]]],[[48,[[0,[267,294]]]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,294]]]],[0,[267,294]]],[[48,[[0,[267,294]]]]]],[37,[[39,[37,38]]]],[[[281,[[0,[147,270]]]]],[[281,[[0,[147,270]]]]]],[[[271,[[0,[147,270]]]]],[[271,[[0,[147,270]]]]]],[[[118,[[0,[147,270]]]]],[[118,[[0,[147,270]]]]]],[282,282],[47,47],[[[276,[[0,[147,275]]]]],[[276,[[0,[147,275]]]]]],[285,285],[277,277],[[[286,[[0,[147,283]]]]],[[286,[[0,[147,283]]]]]],[122,122],[[[269,[[0,[147,270]],[0,[147,283]]]]],[[269,[[0,[147,270]],[0,[147,283]]]]]],[[[120,[[0,[147,270]]]]],[[120,[[0,[147,270]]]]]],[278,278],[279,279],[[[274,[[0,[147,272]]]]],[[274,[[0,[147,272]]]]]],[[[48,[[0,[147,272]]]]],[[48,[[0,[147,272]]]]]],[280,280],[[[273,[[0,[147,270]]]]],[[273,[[0,[147,270]]]]]],[[[289,[[0,[147,270]]]]],[[289,[[0,[147,270]]]]]],[[[116,[[0,[147,270]]]]],[[116,[[0,[147,270]]]]]],[[[296,[[0,[147,295]]]]],[[296,[[0,[147,295]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],157],[[],157],[[[281,[270]]],157],[[[271,[270]]],157],[[[118,[270]]],157],[[[118,[270]]],157],[282,157],[47,157],[47,157],[[[284,[275,283]]],157],[[[276,[275]]],157],[[[276,[275]]],157],[285,157],[277,157],[[[286,[283]]],157],[122,157],[[[269,[270,283]]],157],[[[120,[270]]],157],[278,157],[279,157],[287,157],[[[274,[272]]],157],[[[48,[272]]],157],[[[48,[272]]],157],[288,157],[280,157],[[[273,[270]]],157],[[[289,[270]]],157],[[[116,[270]]],157],[[[116,[270]]],157],[[],[[281,[270]]]],[[],[[271,[270]]]],[[],282],[[],[[284,[275,[0,[283,159]]]]]],[[],[[269,[270,[0,[283,159]]]]]],[[],[[274,[272]]]],[[],[[48,[272]]]],[[],[[273,[270]]]],[[],[[289,[270]]]],[[],[[116,[270]]]],[[],157],[[],157],[[],157],[[],157],[[157,44],157],[157,157],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297,73]]]],73]]]],73]]]],73]]]],[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297,73]]]],73]]]],73]]]],73]]]],73]]],[[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297,73]]]],73]]]],73]]]],73]]]]]],[[[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297]]]]]]]]]]]]]]]],[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297]]]]]]]]]]]]]]]]],[[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297]]]]]]]]]]]]]]]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[37,[118,[270]]],1],[[37,[48,[272]]],1],[[37,[116,[270]]],1],[[37,37],1],[[[271,[270]],[271,[270]]],1],[[[118,[270]],[118,[270]]],1],[[[118,[270]],37],1],[[282,282],1],[[47,47],1],[[47,37],1],[[[276,[275]],37],1],[[[276,[275]],[276,[275]]],1],[[285,285],1],[[277,277],1],[[277,37],1],[[122,122],1],[[122,37],1],[[[120,[270]],37],1],[[[120,[270]],[120,[270]]],1],[[278,278],1],[[278,37],1],[[279,37],1],[[279,279],1],[[[274,[272]],[274,[272]]],1],[[[48,[272]],[48,[272]]],1],[[[48,[272]],37],1],[[280,280],1],[[280,37],1],[[[273,[270]],[273,[270]]],1],[[[116,[270]],[116,[270]]],1],[[[116,[270]],37],1],[[37,37],1],[[[281,[270]],49]],[[[271,[270]],49]],[[282,49]],[[[274,[272]],49]],[[[273,[270]],49]],[[[289,[270]],49]],[[[274,[272]],44,[22,[272]]]],[[[274,[272]],[13,[272]]]],[[[281,[270]],298]],[[[271,[270]],298]],[[282,298]],[[[274,[272]],298]],[[[273,[270]],298]],[[[289,[270]],298]],[[[281,[270]],23]],[[[271,[270]],23]],[[282,23]],[[[274,[272]],23]],[[[273,[270]],23]],[[[289,[270]],23]],[[[271,[270]],298]],[[282,298]],[[[274,[272]],298]],[[[273,[270]],298]],[[[271,[270]],23]],[[282,23]],[[[274,[272]],23]],[[[273,[270]],23]],[[[271,[270]],23]],[[[273,[270]],23]],[278,[[39,[37,38]]]],[280,[[42,[[39,[37,38]],38]]]],[[[269,[86,219]]],[[4,[3]]]],[[37,45],[[17,[46]]]],[[[281,[[0,[166,270]]]],45],[[17,[46]]]],[[[271,[[0,[166,270]]]],45],[[17,[46]]]],[[[118,[270]],45],[[17,[46]]]],[[282,45],[[17,[46]]]],[[47,45],[[17,[46]]]],[[[284,[[0,[166,275]],[0,[166,283]]]],45],[[17,[46]]]],[[[276,[275]],45],[[17,[46]]]],[[285,45],[[17,[46]]]],[[277,45],[[17,[46]]]],[[[286,[[0,[166,283]]]],45],[[17,[46]]]],[[122,45],[[17,[46]]]],[[[269,[[0,[166,270]],[0,[166,283]]]],45],[[17,[46]]]],[[[120,[270]],45],[[17,[46]]]],[[278,45],[[17,[46]]]],[[279,45],[[17,[46]]]],[[287,45],[[17,[46]]]],[[[274,[[0,[166,272]]]],45],[[17,[46]]]],[[[48,[272]],45],[[17,[46]]]],[[288,45],[[17,[46]]]],[[280,45],[[17,[46]]]],[[[273,[[0,[166,270]]]],45],[[17,[46]]]],[[[289,[[0,[166,270]]]],45],[[17,[46]]]],[[[116,[270]],45],[[17,[46]]]],[[[296,[[0,[166,295]]]],45],[[17,[46]]]],[[]],[[[51,[[13,[[22,[[51,[[13,[12]]]]]]]]]]],[[271,[270]]]],[[]],[[[281,[270]]],[[271,[270]]]],[[[271,[270]]],[[118,[270]]]],[[]],[[[299,[270]]],[[118,[270]]]],[[[51,[[13,[[22,[[51,[[13,[12]]]]]]]]]]],[[118,[270]]]],[[[281,[270]]],[[118,[270]]]],[[[51,[[13,[[22,[1]]]]]]],282],[[]],[282,47],[300,47],[[]],[[[51,[[13,[[22,[1]]]]]]],47],[[]],[283,[[284,[275,283]]]],[168],[226,[[276,[78]]]],[[[301,[275]]],[[276,[275]]]],[226,[[276,[86]]]],[[[284,[275,283]]],[[276,[275]]]],[[]],[[]],[[[51,[[13,[[22,[[99,[12]]]]]]]]],285],[[]],[302,277],[[[51,[[13,[[22,[[99,[12]]]]]]]]],277],[285,277],[[]],[[]],[[[286,[283]]],122],[303,122],[[]],[[[269,[270,283]]],[[120,[270]]]],[[]],[[[304,[270]]],[[120,[270]]]],[305,278],[[]],[287,279],[[]],[306,279],[[]],[[]],[157,[[274,[272]]]],[[[51,[[13,[[22,[272]]]]]]],[[274,[272]]]],[[]],[[[51,[[13,[[22,[272]]]]]]],[[48,[272]]]],[[[307,[272]]],[[48,[272]]]],[[[274,[272]]],[[48,[272]]]],[[]],[[]],[308,280],[[[51,[[13,[[22,[[51,[11]]]]]]]]],[[273,[270]]]],[[]],[[[289,[270]]],[[273,[270]]]],[[]],[[[51,[[13,[[22,[[51,[11]]]]]]]]],[[116,[270]]]],[[]],[[[289,[270]]],[[116,[270]]]],[[[309,[270]]],[[116,[270]]]],[[[273,[270]]],[[116,[270]]]],[[]],[[88,[22,[88]]],47],[[[179,[272]],[22,[88]]],[[48,[272]]]],[[[179,[86]],[179,[12]],[22,[88]]],[[118,[86]]]],[[[179,[86]],[179,[12]],[22,[88]]],[[116,[86]]]],[[157,[179,[272]],[22,[88]]],[[17,[[48,[272]],217]]]],[[157,88,[22,[88]]],47],[[157,[179,[272]],[22,[88]]],[[48,[272]]]],[49,[[281,[270]]]],[49,[[271,[270]]]],[49,[[118,[270]]]],[49,282],[49,47],[[49,44],277],[49,[[274,[272]]]],[49,[[48,[272]]]],[49,[[273,[270]]]],[49,[[289,[270]]]],[49,[[116,[270]]]],[49,47],[49,47],[49,[[48,[272]]]],[49,[[48,[272]]]],[23,[[271,[270]]]],[23,[[118,[270]]]],[23,[[273,[270]]]],[23,[[116,[270]]]],[[[51,[[13,[[51,[[13,[12]]]]]]]]],[[118,[270]]]],[[[51,[[13,[1]]]]],282],[[[51,[[13,[1]]]]],47],[[[51,[[13,[[99,[12]]]]]]],277],[[[51,[[13,[272]]]]],[[274,[272]]]],[[[51,[[13,[272]]]]],[[48,[272]]]],[[[51,[[13,[[51,[11]]]]]]],[[116,[270]]]],[298,[[281,[270]]]],[298,[[271,[270]]]],[298,[[118,[270]]]],[298,282],[298,47],[298,[[274,[272]]]],[298,[[48,[272]]]],[298,[[273,[270]]]],[298,[[289,[270]]]],[298,[[116,[270]]]],[23,[[281,[270]]]],[23,[[271,[270]]]],[23,[[118,[270]]]],[23,282],[23,47],[23,[[274,[272]]]],[23,[[48,[272]]]],[23,[[273,[270]]]],[23,[[289,[270]]]],[23,[[116,[270]]]],[298,[[271,[270]]]],[298,[[118,[270]]]],[298,282],[298,47],[298,[[274,[272]]]],[298,[[48,[272]]]],[298,[[273,[270]]]],[298,[[116,[270]]]],[23,[[271,[270]]]],[23,282],[23,47],[23,[[274,[272]]]],[23,[[48,[272]]]],[23,[[273,[270]]]],[49,[[48,[272]]]],[[[42,[272,38]]],[[274,[272]]]],[[[42,[272,38]]],[[48,[272]]]],[[[118,[86]],44],22],[[[118,[270]],44],[[22,[[13,[12]]]]]],[[47,44],[[22,[1]]]],[[47,44],22],[[277,44],[[22,[[13,[12]]]]]],[[122,44],22],[[122,44],[[22,[[39,[37,38]]]]]],[[[120,[86]],44],22],[[[48,[272]],44],22],[[[48,[272]],44],[[22,[272]]]],[[[116,[270]],44],[[22,[11]]]],[[[116,[86]],44],22],[157,152],[157,157],[[37,11],[[39,[25,38]]]],[157,[[13,[152]]]],[[[48,[272]]],[[22,[[13,[272]]]]]],[[[118,[86]],44],22],[[47,44],22],[[122,44],22],[[[120,[86]],44],22],[[[48,[272]],44],22],[[[116,[86]],44],22],[[37,11],[[39,[25,38]]]],[[[118,[86]]],44],[122,44],[[[120,[86]]],44],[[[116,[86]]],44],0,[[280,44]],[[280,44]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[271,[270]]],[[104,[37]]]],[282,[[104,[37]]]],[[[284,[275,283]]],[[104,[37]]]],[[[269,[270,283]]],[[104,[37]]]],[[[274,[272]]],[[104,[37]]]],[288,[[104,[37]]]],[[[273,[270]]],[[104,[37]]]],[[[284,[275,283]]],[[39,[37,38]]]],[[[269,[270,283]]],[[39,[37,38]]]],[[[273,[270]]]],[[[281,[270]]]],[[[118,[270]]]],[47],[[[274,[272]]]],[[[48,[272]]]],[288],[[[289,[270]]]],[[[116,[270]]]],[[[281,[270]]]],[[[118,[270]]]],[282],[47],[47],[[[276,[275]]]],[285],[277],[122],[[[120,[270]]]],[278],[[[48,[272]]]],[[[48,[272]]]],[280],[[[273,[270]]]],[[[289,[270]]]],[[[116,[270]]]],[[]],[[[118,[270]]],[[105,[[118,[270]],[271,[270]]]]]],[47,[[105,[47,282]]]],[[[48,[272]]],[[105,[[48,[272]],[274,[272]]]]]],[[[116,[270]]],[[105,[[116,[270]],[273,[270]]]]]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[[],1],[[],1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[[[276,[275]]],1],[157,1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[44,1],[[[281,[270]]],[[296,[[281,[270]]]]]],[[[271,[270]]],[[311,[[13,[12]],[296,[[281,[270]]]],310]]]],[[[118,[270]]],[[311,[[13,[12]],[296,[[118,[270]]]],310]]]],[282,[[311,[1,310,310]]]],[47,[[311,[1,310,310]]]],[[[276,[275]]],[[311,[[39,[164,38]],[312,[275]],310]]]],[285,[[311,[[13,[12]],[313,[12]],310]]]],[277,[[311,[[13,[12]],[313,[12]],310]]]],[122,[[311,[[39,[37,38]],[296,[122]],310]]]],[[[120,[270]]],[[311,[[39,[37,38]],[296,[[120,[270]]]],310]]]],[278,[[311,[[39,[37,38]],314,310]]]],[[[274,[272]]],[[311,[272,[40,[272]],310]]]],[[[48,[272]]],[[311,[272,[40,[272]],310]]]],[280,315],[[[273,[270]]],[[311,[11,[296,[[289,[270]]]],310]]]],[[[289,[270]]],[[296,[[289,[270]]]]]],[[[116,[270]]],[[311,[11,[296,[[116,[270]]]],310]]]],[[[276,[275]]],[[17,[[311,[[317,[275,316]],310]],217]]]],[285,[[313,[12]]]],[[[276,[275]],44],44],[[[284,[275,283]]],[[274,[275]]]],[[[276,[275]]],[[48,[275]]]],[[[276,[275]]],[[0,[298,147]]]],[[[276,[275]]],[[0,[298,147]]]],[[],44],[[],44],[[[281,[270]]],44],[[[281,[270]]],44],[[[271,[270]]],44],[[[118,[270]]],44],[[[118,[270]]],44],[282,44],[47,44],[47,44],[[[284,[275,283]]],44],[[[276,[275]]],44],[[[276,[275]]],44],[285,44],[285,44],[277,44],[277,44],[[[286,[283]]],44],[[[286,[283]]],44],[122,44],[122,44],[[[269,[270,283]]],44],[[[269,[270,283]]],44],[[[120,[270]]],44],[[[120,[270]]],44],[278,44],[278,44],[279,44],[287,44],[[[274,[272]]],44],[[[48,[272]]],44],[[[48,[272]]],44],[288,44],[280,44],[280,44],[[[273,[270]]],44],[[[273,[270]]],44],[[[289,[270]]],44],[[[289,[270]]],44],[[[116,[270]]],44],[[[116,[270]]],44],[[[284,[275,283]]],[[262,[56,275,[319,[318]]]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]],[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]]]]],[[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]],[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]]],[[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]]]],[[[286,[283]]],283],[[[269,[270,283]]],283],[288,[[42,[[39,[283,38]],38]]]],[[],[[281,[270]]]],[[],[[271,[270]]]],[[157,[321,[270]],[179,[12]],[22,[88]]],[[118,[270]]]],[[],282],[[157,88,[22,[88]]],47],[[],[[284,[275,[0,[283,159]]]]]],[44,285],[[157,[179,[12]],[22,[88]]],277],[[283,44],[[286,[283]]]],[[157,[39,[37,38]],[22,[88]]],122],[[],[[269,[270,[0,[283,159]]]]]],[[157,[321,[270]],[39,[37,38]],[22,[88]]],[[120,[270]]]],[[157,[321,[87]],[39,[37,38]],[22,[88]]],278],[[157,44],279],[[157,44],287],[[],[[274,[272]]]],[[157,[179,[272]],[22,[88]]],[[48,[272]]]],[[157,[42,[[39,[283,38]],38]]],288],[[157,[179,[84]],[42,[[39,[37,38]],38]],[22,[[179,[87]]]]],280],[[],[[273,[270]]]],[[],[[289,[270]]]],[[157,[321,[270]],[179,[12]],[22,[88]]],[[116,[270]]]],[295,[[296,[295]]]],[157,[[118,[270]]]],[157,47],[157,[[276,[275]]]],[157,277],[157,122],[157,[[120,[270]]]],[157,278],[157,279],[157,[[48,[272]]]],[157,280],[157,[[116,[270]]]],[157,[[39,[37,38]]]],[[283,157,44],[[286,[283]]]],[[283,157,44],[[269,[270,283]]]],[[283,[218,[270]],[22,[220]]],[[269,[270,283]]]],[[157,44],[[118,[270]]]],[[157,44],47],[[157,44],[[276,[275]]]],[[157,44],277],[[157,44],122],[[157,44],[[120,[270]]]],[[157,44],278],[[157,44],279],[[157,44],[[48,[272]]]],[[157,44],280],[[157,44],[[116,[270]]]],[[157,44],[[39,[37,38]]]],[[157,[218,[270]],[42,[12,38]],[22,[220]]],[[273,[270]]]],[[157,[218,[270]],[42,[12,38]]],[[289,[270]]]],[[157,[321,[270]],[179,[12]],[22,[88]]],[[116,[270]]]],[[283,44],[[269,[270,283]]]],[[283,11,1,44],[[286,[283]]]],[[283,11,1],[[269,[270,283]]]],[[[296,[295]]],22],[[[296,[295]]],22],[[[296,[295]],44],22],[[],44],[[],13],[[[281,[270]]],[[218,[270]]]],[[[271,[270]]],[[218,[270]]]],[[[118,[270]]],[[13,[270]]]],[[[118,[270]]],[[321,[270]]]],[[[269,[270,283]]],[[218,[270]]]],[[[120,[270]]],[[321,[270]]]],[278,[[321,[87]]]],[280,[[22,[[179,[87]]]]]],[[[273,[270]]],[[218,[270]]]],[[[289,[270]]],[[218,[270]]]],[[[116,[270]]],[[13,[270]]]],[[[116,[270]]],[[321,[270]]]],0,[[[48,[[0,[267,322]]]],[48,[[0,[267,322]]]]]],[[[48,[[0,[267,322]]]],[0,[267,322]]]],[[[48,[[0,[267,323]]]],[48,[[0,[267,323]]]]]],[[[48,[[0,[267,323]]]],[0,[267,323]]]],[[[48,[[0,[267,324]]]],[48,[[0,[267,324]]]]]],[[[48,[[0,[267,324]]]],[0,[267,324]]]],[[[281,[270]]],[[22,[[42,[12,38]]]]]],[[[271,[270]]],[[22,[[42,[12,38]]]]]],[282,[[22,[1]]]],[285,[[22,[[42,[12,38]]]]]],[[[274,[272]]],[[22,[272]]]],[[[273,[270]]],[[22,[62]]]],[[[289,[270]]],[[22,[62]]]],[[[281,[270]],[51,[[13,[12]]]]]],[[[271,[270]],[22,[[51,[[13,[12]]]]]]]],[[282,[22,[1]]]],[[285,[22,[[51,[[13,[12]]]]]]]],[[[274,[272]],[22,[272]]]],[[288,1]],[[[273,[270]],[22,[[51,[11]]]]]],[[[289,[270]],[51,[11]]]],[[]],[[[281,[270]]]],[[[271,[270]]]],[282],[[[284,[275,283]]]],[[[284,[275,283]]]],[285],[[[286,[283]]]],[[[269,[270,283]]]],[287],[[[274,[272]]]],[288],[[[273,[270]]]],[[[289,[270]]]],[[]],[[[286,[[0,[283,[325,[22]]]]]],[22,[49]]]],[[[286,[283]]]],[[[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326,73]]]],73]]]],73]]]],73]]]],[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326,73]]]],73]]]],73]]]],73]]]],73]]],[[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326,73]]]],73]]]],73]]]],73]]]]]],[[[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326]]]]]]]]]]]]]]]],[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326]]]]]]]]]]]]]]]]],[[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326]]]]]]]]]]]]]]]]]],[44],[[[281,[270]],44]],[[[281,[270]],44,44]],[[[271,[270]],44,44]],[[[271,[270]],44]],[[282,44]],[[282,44]],[[[284,[275,283]],44]],[[[284,[275,283]],44]],[[285,44]],[[285,44]],[[[286,[283]],44]],[[[286,[283]],44]],[[[269,[270,283]],44]],[[[269,[270,283]],44]],[[287,44]],[[[274,[272]],44]],[[[274,[272]],44]],[[288,44]],[[288,44]],[[[273,[270]],44,44]],[[[273,[270]],44]],[[[289,[270]],44,44]],[[[289,[270]],44]],[[[48,[[0,[267,327]]]],[0,[267,327]]],[[48,[[0,[267,327]]]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,327]]]],[48,[[0,[267,327]]]]],[[48,[[0,[267,327]]]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,328]]]],[48,[[0,[267,328]]]]],[[48,[[0,[267,328]]]]]],[[[48,[[0,[267,328]]]],[0,[267,328]]],[[48,[[0,[267,328]]]]]],[[[48,[[0,[267,329]]]],[48,[[0,[267,329]]]]],[[48,[[0,[267,329]]]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[267,329]]]],[0,[267,329]]],[[48,[[0,[267,329]]]]]],[[282,44,[22,[1]]]],[[[274,[272]],44,[22,[272]]]],[[[274,[272]],44,[22,[272]]]],[[[271,[270]],[22,[220]]]],[[[118,[270]],[22,[88]]]],[[47,[22,[88]]]],[[[276,[275]],[22,[88]]]],[[277,[22,[88]]]],[[122,[22,[88]]]],[[[120,[270]],[22,[88]]]],[[278,[22,[88]]]],[[[274,[272]],[22,[220]]]],[[[48,[272]],[22,[88]]]],[[[273,[270]],[22,[220]]]],[[[116,[270]],[22,[88]]]],[[47,88]],[[[274,[272]],[42,[272,38]]]],[[[48,[272]],[179,[272]]]],[[]],[[[281,[270]]]],[[[281,[270]]]],[[[271,[270]]]],[[[271,[270]]]],[282],[282],[[[284,[275,283]]]],[[[284,[275,283]]]],[285],[285],[[[286,[283]]]],[[[286,[283]]]],[[[269,[270,283]]]],[[[269,[270,283]]]],[287],[[[274,[272]]]],[[[274,[272]]]],[288],[288],[[[273,[270]]]],[[[273,[270]]]],[[[289,[270]]]],[[[289,[270]]]],[285,44],[277,44],[[[286,[283]]],44],[122,44],[[[296,[295]]]],[[44,44]],[[[118,[270]],44,44]],[[[118,[270]],44,44]],[[47,44,44]],[[47,44,44]],[[[276,[275]],44,44]],[[[276,[275]],44,44]],[[277,44,44]],[[277,44,44]],[[122,44,44]],[[122,44,44]],[[[120,[270]],44,44]],[[[120,[270]],44,44]],[[278,44,44]],[[278,44,44]],[[279,44,44]],[[279,44,44]],[[[48,[272]],44,44]],[[[48,[272]],44,44]],[[280,44,44]],[[280,44,44]],[[[116,[270]],44,44]],[[[116,[270]],44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[44,44]],[[[118,[270]],44,44]],[[[118,[270]],44,44]],[[47,44,44]],[[47,44,44]],[[[276,[275]],44,44]],[[[276,[275]],44,44]],[[277,44,44]],[[277,44,44]],[[122,44,44]],[[122,44,44]],[[[120,[270]],44,44]],[[[120,[270]],44,44]],[[278,44,44]],[[278,44,44]],[[279,44,44]],[[279,44,44]],[[[48,[272]],44,44]],[[[48,[272]],44,44]],[[280,44,44]],[[280,44,44]],[[[116,[270]],44,44]],[[[116,[270]],44,44]],[[44,44],[[39,[37,38]]]],[[[118,[270]],44,44],[[118,[270]]]],[[47,44,44],47],[[[276,[275]],44,44],[[276,[275]]]],[[277,44,44],277],[[122,44,44],122],[[[120,[270]],44,44],[[120,[270]]]],[[278,44,44],278],[[279,44,44],279],[[[48,[272]],44,44],[[48,[272]]]],[[280,44,44],280],[[[116,[270]],44,44],[[116,[270]]]],[[44,44],[[39,[37,38]]]],[[[118,[270]],44,44],[[118,[270]]]],[[47,44,44],47],[[[276,[275]],44,44],[[276,[275]]]],[[277,44,44],277],[[122,44,44],122],[[[120,[270]],44,44],[[120,[270]]]],[[278,44,44],278],[[279,44,44],279],[[[48,[272]],44,44],[[48,[272]]]],[[280,44,44],280],[[[116,[270]],44,44],[[116,[270]]]],[[[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]],[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]]]]],[[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]],[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]]],[[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[277,157],277],[[[274,[272]],157],[[274,[272]]]],[[[48,[272]],157],[[48,[272]]]],[[],[[39,[37,38]]]],[[[118,[270]]],[[39,[37,38]]]],[47,[[39,[37,38]]]],[[[276,[275]]],[[39,[37,38]]]],[277,[[39,[37,38]]]],[122,[[39,[37,38]]]],[[[120,[270]]],[[39,[37,38]]]],[278,[[39,[37,38]]]],[279,[[39,[37,38]]]],[[[48,[272]]],[[39,[37,38]]]],[280,[[39,[37,38]]]],[[[116,[270]]],[[39,[37,38]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[49,[[17,[217]]]],[[[281,[270]],49],[[17,[217]]]],[[[271,[270]],49],[[17,[217]]]],[[282,49],[[17,[217]]]],[[[284,[275,[0,[283,[331,[[22,[198]]]]]]]],49],[[17,[217]]]],[[[286,[[0,[283,[331,[22]]]]]],49],[[17,[217]]]],[[[269,[270,[0,[283,[331,[22]]]]]],49],[[17,[217]]]],[[[274,[272]],49],[[17,[217]]]],[[[273,[270]],49],[[17,[217]]]],[[[289,[270]],49],[[17,[217]]]],[[[269,[270,283]],[0,[298,147]]],[[17,[217]]]],[[],[[17,[217]]]],[[[281,[270]],[281,[270]]],[[17,[217]]]],[[[271,[270]],[271,[270]]],[[17,[217]]]],[[282,282],[[17,[217]]]],[[285,285],[[17,[217]]]],[[[286,[[0,[283,332]]]],[286,[[0,[283,332]]]]],[[17,[217]]]],[[[269,[270,[0,[283,332]]]],[269,[270,[0,[283,332]]]]],[[17,[217]]]],[[[274,[272]],[274,[272]]],[[17,[217]]]],[[[273,[270]],[273,[270]]],[[17,[217]]]],[[[289,[270]],[289,[270]]],[[17,[217]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[49,[[17,[[281,[270]],217]]]],[[49,44],[[17,[285,217]]]],[[49,44],[[17,[277,217]]]],[49,[[17,[[289,[270]],217]]]],[[[48,[275]],[39,[37,38]]],[[17,[[276,[275]],217]]]],[298,[[17,[[271,[270]]]]]],[298,[[17,[[118,[270]]]]]],[298,[[17,[282]]]],[298,[[17,[47]]]],[298,[[17,[[274,[272]]]]]],[298,[[17,[[273,[270]]]]]],[298,[[17,[[116,[270]]]]]],[49,[[17,[[271,[270]]]]]],[49,[[17,[[118,[270]]]]]],[23,[[17,[282]]]],[23,[[17,[47]]]],[49,[[17,[[274,[272]]]]]],[49,[[17,[[273,[270]]]]]],[49,[[17,[[116,[270]]]]]],[157,[[17,[152,217]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[157,[218,[270]],[42,[12,38]]],[[17,[[281,[270]],217]]]],[[157,[218,[270]],[42,[12,38]],[22,[220]]],[[17,[[271,[270]],217]]]],[[157,[321,[270]],[179,[12]],[22,[88]]],[[17,[[118,[270]],217]]]],[[157,220,[22,[220]]],[[17,[282,217]]]],[[157,88,[22,[88]]],[[17,[47,217]]]],[[157,[48,[275]],[39,[37,38]]],[[17,[[276,[275]],217]]]],[[157,[42,[12,38]],[22,[220]]],[[17,[285,217]]]],[[157,[179,[12]],[22,[88]]],[[17,[277,217]]]],[[157,[39,[37,38]],[22,[88]]],[[17,[122,217]]]],[[157,[321,[270]],[39,[37,38]],[22,[88]]],[[17,[[120,[270]],217]]]],[[157,[321,[87]],[39,[37,38]],[22,[88]]],[[17,[278,217]]]],[[157,44],[[17,[279,217]]]],[[157,[42,[272,38]],[22,[220]]],[[17,[[274,[272]],217]]]],[[157,[179,[272]],[22,[88]]],[[17,[[48,[272]],217]]]],[[157,[42,[[39,[283,38]],38]],[22,[220]]],[[17,[288,217]]]],[[157,[179,[84]],[42,[[39,[37,38]],38]],[22,[[179,[87]]]]],[[17,[280,217]]]],[[157,[218,[270]],[42,[12,38]],[22,[220]]],[[17,[[273,[270]],217]]]],[[157,[218,[270]],[42,[12,38]]],[[17,[[289,[270]],217]]]],[[157,[321,[270]],[179,[12]],[22,[88]]],[[17,[[116,[270]],217]]]],[[157,[48,[275]],[39,[37,38]]],[[17,[[276,[275]],217]]]],[[157,[321,[270]],[179,[12]],[22,[88]]],[[17,[[116,[270]],217]]]],[[],[[17,[217]]]],[[[281,[270]],[51,[[13,[12]]]]],[[17,[217]]]],[[[271,[270]],[22,[[51,[[13,[12]]]]]]],[[17,[217]]]],[[282,[22,[1]]],[[17,[217]]]],[[[284,[275,[0,[283,[333,[[22,[198]]]]]]]],[22,[198]]],[[17,[217]]]],[[285,[22,[[51,[[13,[12]]]]]]],[[17,[217]]]],[[[286,[[0,[283,[331,[22]]]]]],[22,[49]]],[[17,[217]]]],[[[269,[270,[0,[283,[331,[22]]]]]],[22,[49]]],[[17,[217]]]],[[[274,[272]],[22,[272]]],[[17,[217]]]],[[[273,[270]],[22,[[51,[11]]]]],[[17,[217]]]],[[[289,[270]],[51,[11]]],[[17,[217]]]],[[[286,[283]]],[[17,[217]]]],[[[269,[270,283]]],[[17,[217]]]],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[280,[[179,[84]]]],[[],[[22,[88]]]],[[],[[22,[220]]]],[[[281,[270]]],[[22,[220]]]],[[[271,[270]]],[[22,[220]]]],[[[118,[270]]],[[22,[88]]]],[[[118,[270]]],[[22,[88]]]],[282,[[22,[220]]]],[47,[[22,[88]]]],[47,[[22,[88]]]],[[[284,[275,283]]],[[22,[220]]]],[[[276,[275]]],[[22,[88]]]],[[[276,[275]]],[[22,[88]]]],[285,[[22,[220]]]],[277,[[22,[88]]]],[277,[[22,[88]]]],[[[286,[283]]],[[22,[220]]]],[122,[[22,[88]]]],[122,[[22,[88]]]],[[[269,[270,283]]],[[22,[220]]]],[[[120,[270]]],[[22,[88]]]],[[[120,[270]]],[[22,[88]]]],[278,[[22,[88]]]],[279,[[22,[88]]]],[287,[[22,[220]]]],[[[274,[272]]],[[22,[220]]]],[[[48,[272]]],[[22,[88]]]],[[[48,[272]]],[[22,[88]]]],[288,[[22,[220]]]],[280,[[22,[88]]]],[[[273,[270]]],[[22,[220]]]],[[[289,[270]]],[[22,[220]]]],[[[116,[270]]],[[22,[88]]]],[[[116,[270]]],[[22,[88]]]],[[[281,[270]],44],[[13,[12]]]],[[[118,[270]],44],[[13,[12]]]],[[47,44],1],[[[276,[275]],44],[[39,[164,38]]]],[[285,44],[[13,[12]]]],[[277,44],[[13,[12]]]],[[122,44],[[39,[37,38]]]],[[[120,[270]],44],[[39,[37,38]]]],[[278,44],[[39,[37,38]]]],[[[48,[272]],44],272],[[288,44],[[22,[283]]]],[[280,44],[[39,[164,38]]]],[[[273,[270]],44],11],[[[289,[270]],44],11],[[[116,[270]],44],11],[[[281,[270]],44],[[13,[12]]]],[[[118,[270]],44],[[13,[12]]]],[[47,44],1],[[285,44],[[13,[12]]]],[[277,44],[[13,[12]]]],[[122,44],[[39,[37,38]]]],[[[120,[270]],44],[[39,[37,38]]]],[[278,44],[[39,[37,38]]]],[[[48,[272]],44],272],[[280,44],[[39,[164,38]]]],[[[273,[270]],44],11],[[[289,[270]],44],11],[[[116,[270]],44],11],[[],[[13,[12]]]],[[[281,[270]]],[[42,[12,38]]]],[[[271,[270]]],[[42,[12,38]]]],[[[118,[270]]],[[179,[12]]]],[[[118,[270]]],[[13,[12]]]],[282,220],[47,88],[[[284,[275,283]]],283],[[[276,[275]]],[[39,[37,38]]]],[285,[[42,[12,38]]]],[277,[[179,[12]]]],[[[286,[283]]],283],[122,[[39,[37,38]]]],[[[269,[270,283]]],283],[[[120,[270]]],[[39,[37,38]]]],[[[274,[272]]],[[42,[272,38]]]],[[[48,[272]]],[[179,[272]]]],[288,[[42,[[39,[283,38]],38]]]],[[[273,[270]]],[[42,[12,38]]]],[[[289,[270]]],[[42,[12,38]]]],[[[116,[270]]],[[179,[12]]]],[[[116,[270]]],[[13,[12]]]],[[[271,[270]]],[[296,[[281,[270]]]]]],[[[118,[270]]],[[296,[[118,[270]]]]]],[282,310],[47,310],[[[276,[275]]],[[312,[275]]]],[277,[[313,[12]]]],[122,[[296,[122]]]],[[[120,[270]]],[[296,[[120,[270]]]]]],[278,314],[[[274,[272]]],[[40,[272]]]],[[[48,[272]]],[[40,[272]]]],[[[273,[270]]],[[296,[[289,[270]]]]]],[[[116,[270]]],[[296,[[116,[270]]]]]],[[[276,[275]]],[[17,[[317,[275,316]],217]]]],[285,[[13,[12]]]],[[[274,[272]]],[[13,[272]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[44,44],[[281,[270]]]],[[44,44],[[271,[270]]]],[[44,44],[[273,[270]]]],[[44,44],[[289,[270]]]],[44,[[281,[270]]]],[44,[[271,[270]]]],[44,282],[[44,44],285],[44,[[269,[270,[0,[283,159]]]]]],[44,[[274,[272]]]],[44,[[273,[270]]]],[44,[[289,[270]]]],[[44,157],[[274,[272]]]],[[[22,[88]]],[[39,[37,38]]]],[[[271,[270]],[22,[220]]],[[271,[270]]]],[[[118,[270]],[22,[88]]],[[39,[37,38]]]],[[[118,[270]],[22,[88]]],[[118,[270]]]],[[47,[22,[88]]],47],[[47,[22,[88]]],[[39,[37,38]]]],[[[276,[275]],[22,[88]]],[[39,[37,38]]]],[[[276,[275]],[22,[88]]],[[276,[275]]]],[[277,[22,[88]]],[[39,[37,38]]]],[[277,[22,[88]]],277],[[122,[22,[88]]],[[39,[37,38]]]],[[122,[22,[88]]],122],[[[120,[270]],[22,[88]]],[[39,[37,38]]]],[[[120,[270]],[22,[88]]],[[120,[270]]]],[[278,[22,[88]]],278],[[278,[22,[88]]],[[39,[37,38]]]],[[279,[22,[88]]],[[39,[37,38]]]],[[[48,[272]],[22,[88]]],[[48,[272]]]],[[[48,[272]],[22,[88]]],[[39,[37,38]]]],[[280,[22,[88]]],[[39,[37,38]]]],[[[116,[270]],[22,[88]]],[[39,[37,38]]]],[[[116,[270]],[22,[88]]],[[116,[270]]]],[[47,88],47],[[[48,[272]],[179,[272]]],[[48,[272]]]],[[[48,[[0,[267,334]]]],[48,[[0,[267,334]]]]],[[48,[[0,[267,334]]]]]],[[[48,[[0,[267,335]]]],[48,[[0,[267,335]]]]],[[48,[[0,[267,335]]]]]],[[[48,[[0,[267,336]]]],[48,[[0,[267,336]]]]],[[48,[[0,[267,336]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[[299,[270]]],[[104,[37]]]],[308,[[104,[37]]]],[300,[[104,[37]]]],[302,[[104,[37]]]],[306,[[104,[37]]]],[[[307,[272]]],[[104,[37]]]],[[[304,[270]]],[[104,[37]]]],[305,[[104,[37]]]],[337,[[104,[37]]]],[303,[[104,[37]]]],[[[309,[270]]],[[104,[37]]]],[[[301,[275]]],[[104,[37]]]],[[],[[104,[37]]]],[[],[[39,[37,38]]]],[[[299,[270]]],[[39,[37,38]]]],[308,[[39,[37,38]]]],[300,[[39,[37,38]]]],[302,[[39,[37,38]]]],[306,[[39,[37,38]]]],[[[307,[272]]],[[39,[37,38]]]],[[[304,[270]]],[[39,[37,38]]]],[305,[[39,[37,38]]]],[337,[[39,[37,38]]]],[303,[[39,[37,38]]]],[[[309,[270]]],[[39,[37,38]]]],[[[301,[275]]],[[39,[37,38]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],306],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[44,44,44]],[[[299,[270]],44,44,44]],[[308,44,44,44]],[[300,44,44,44]],[[302,44,44,44]],[[306,44,44,44]],[[[307,[272]],44,44,44]],[[[304,[270]],44,44,44]],[[305,44,44,44]],[[337,44,44,44]],[[303,44,44,44]],[[[309,[270]],44,44,44]],[[[301,[275]],44,44,44]],[44],[[[299,[270]],44]],[[308,44]],[[300,44]],[[302,44]],[[306,44]],[[[307,[272]],44]],[[[304,[270]],44]],[[305,44]],[[337,44]],[[303,44]],[[[309,[270]],44]],[[[301,[275]],44]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[[299,[270]]],44],[308,44],[300,44],[302,44],[306,44],[[[307,[272]]],44],[[[304,[270]]],44],[305,44],[337,44],[303,44],[[[309,[270]]],44],[[[301,[275]]],44],[[[13,[37]],1,44],[[39,[338,38]]]],[[[42,[[118,[270]],38]],1,44],[[299,[270]]]],[[[42,[280,38]],44],308],[[[42,[47,38]],1,44],300],[[[42,[277,38]],1,44],302],[157,306],[[[42,[[48,[272]],38]],1,44],[[307,[272]]]],[[[42,[[120,[270]],38]],1,44],[[304,[270]]]],[[[42,[278,38]],1,44],305],[[[42,[339,38]],1,44],337],[[[42,[122,38]],1,44],303],[[[42,[[116,[270]],38]],1,44],[[309,[270]]]],[[[13,[[276,[275]]]],1,44],[[301,[275]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[37,37],[[17,[[39,[25,38]],217]]]],[[[0,[272,155]],[0,[272,155]]],156],[[55,55],156],[[74,74],156],0,0,0,[2],[2],[2],[[88,88],88],[88],[220,[[13,[12]]]],[220,[[13,[12]]]],[[88,88,25],88],[[220,88,25]],[[88,88],88],[[220,88],220],[[220,88]],[[88,88],88],[[220,88],220],[[220,88]],[[88,88],88],[[220,88],220],[[220,88]],[[]],[[]],[[]],[[]],[[]],[[]],[220,44],[298,[[42,[12,38]]]],[88,[[341,[340]]]],[220],[88,88],[342,342],[220,220],[[]],[[]],[[]],[[],88],[[],220],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[88,88],1],[[220,220],1],[[220,44,1]],[[220,88]],[[220,[13,[12]],44,44]],[[220,[13,[12]],44,44]],[[220,298]],[[220,23]],[[88,45],[[17,[46]]]],[[342,45],[[17,[46]]]],[[220,45],[[17,[46]]]],[220,88],[[[51,[[13,[1]]]]],88],[[]],[[]],[[[51,[[13,[1]]]]],220],[[]],[23,[[42,[12,38]]]],[[[104,[[343,[12]]]],44,44,44],[[17,[88,217]]]],[[[104,[[343,[12]]]],44,44,44],88],[49,88],[49,220],[44,220],[44,220],[298,88],[298,220],[23,88],[23,220],[[[51,[[13,[12]]]],44],88],[[[42,[12,38]],44],88],[[[42,[12,38]],44],220],[[88,44],[[22,[1]]]],[[220,44],1],[[88,44],1],[[88,44],1],[[],44],[[],44],[[],44],[[]],[[]],[[]],[88],[88],[88],[[]],[220],[88,[[105,[88,220]]]],[88,1],[220,1],[88,310],[220,310],[88,44],[220,44],[88,220],[[],88],[88,342],[[],220],[44,88],[342,22],[342,22],[88,88],[220,220],[[342,44],22],[88,44],[220,44],[[88,44,44],44],[[88,88],88],[[],344],[220,[[22,[1]]]],[[220,1]],[[220,1]],[[88,88,88,88,25],88],[[220,44]],[[220,44,1]],[[220,44,1]],[[220,44,1]],[220],[342],[[88,44,44]],[[88,44,44]],[[88,44,44],88],[[88,44,44],88],[[88,88,88,25],88],[[]],[[]],[[]],[[],17],[[],17],[[],17],[298,[[17,[88]]]],[298,[[17,[220]]]],[23,[[17,[88]]]],[23,[[17,[220]]]],[[],17],[[],17],[[],17],[[[42,[12,38]],44],[[17,[88,217]]]],[[[42,[12,38]],44],[[17,[220,217]]]],[[],106],[[],106],[[],106],[[88,25],88],[[220,25]],[88,44],[220,44],0,[[]],[[]],[[]],[44,220],[[88,88],88],0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[39,[96,38]]]],[[],[[39,[96,38]]]],[44,44],[44,[[17,[16]]]],[44,[[17,[16]]]],[310,310],[345,345],[[[346,[147,[0,[147,23]],[0,[147,23]]]]],[[346,[147,[0,[147,23]],[0,[147,23]]]]]],[[[311,[147,[0,[147,23]],[0,[147,23]]]]],[[311,[147,[0,[147,23]],[0,[147,23]]]]]],[[]],[[]],[[]],[[]],[[[13,[12]],44,44],44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[13,[12]],44,44,45],[[17,[46]]]],[[[347,[[0,[166,340]]]],45],[[17,[46]]]],[[[341,[[0,[166,340]]]],45],[[17,[46]]]],[[[348,[[0,[166,340]]]],45],[[17,[46]]]],[[310,45],[[17,[46]]]],[[345,45],[[17,[46]]]],[[[346,[166,[0,[166,23]],[0,[166,23]]]],45],[[17,[46]]]],[[[311,[166,[0,[166,23]],[0,[166,23]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[13,[12]],44],1],[[[13,[12]],44],1],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[[[347,[340]]],1],[[12,44],1],[[[347,[340]]],44],[[[341,[340]]],44],[[[13,[12]],44],[[347,[340]]]],[[[13,[12]],44,44],[[341,[340]]]],[[[13,[12]],44],[[348,[340]]]],[[[13,[12]],44,44],310],[88,345],[[23,23],[[346,[23,23]]]],[[23,[22,[23]]],[[311,[23,23]]]],[[23,[22,[88]]],[[311,[23,310]]]],[[[347,[340]]],22],[[[341,[340]]],[[22,[340]]]],[[[348,[340]]],22],[310,22],[345,22],[[[346,[23,23]]],22],[[[311,[23,23]]],22],[310,[[22,[1]]]],[[[346,[43,43]]],22],[[[311,[43,43]]],22],[[310,44],22],[[[346,[23,23]],44],22],[[[311,[23,23]],44],22],[[]],[[[347,[340]]],340],[[[347,[340]]],340],[[[341,[340]]],340],[[[341,[340]]],340],[[[348,[340]]],[[13,[12]]]],[[],349],[[],44],[[[347,[340]]],44],[[[341,[340]]],44],[[[341,[340]]],44],[[[348,[340]]],44],[[12,44,1],12],[[[13,[12]],44,1]],[[[13,[12]],44,1]],[[[347,[340]]]],[[[341,[340]]]],[[[348,[340]]]],[310],[[[346,[23,23]]]],[[[311,[23,23]]]],[345,44],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[[311,[23,23]]],[[346,[23,23]]]],[[[311,[23,23]]],23],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[2],[179,13],[[]],[[]],[[]],[[]],[[[179,[147]]],[[179,[147]]]],[[]],[[],179],[44],[343],[44],[179,13],[44],[44],[44],[44],[[[179,[[163,[[163,[[163,[163]]]]]]]],[179,[[163,[[163,[[163,[163]]]]]]]]],1],[[[179,[166]],45],[[17,[46]]]],[[[42,[38]]],343],[[]],[[[351,[350]]],343],[[]],[[[42,[38]]],179],[[[104,[343]],44,44],179],[49,179],[179,[[22,[[42,[38]]]]]],[179,[[22,[13]]]],[[],44],[[],44],[[]],[[]],[179],[[[179,[26]]]],[179,[[105,[179,[42,[38]]]]]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[179,1],[179,1],[179,44],[[],179],[179,44],[[179,44]],[179,44],[179,44],[[179,44,44]],[[179,44,44]],[[179,44,44],179],[[179,44,44],179],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,[2],[[[352,[[51,[37]]]]],[[13,[[51,[37]]]]]],[[]],[[]],[[[352,[[0,[147,[51,[37]]]]]]],[[352,[[0,[147,[51,[37]]]]]]]],[[]],[[[352,[[51,[37]]]]],[[13,[[51,[37]]]]]],[44],[[[352,[[51,[37]]]]],[[13,[[51,[37]]]]]],[44],[44],[[[352,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,[51,[37]]]]]],[51,[37]]]]]],[51,[37]]]]]],[51,[37]]]]]],[352,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,[51,[37]]]]]],[51,[37]]]]]],[51,[37]]]]]],[51,[37]]]]]]],1],[[],1],[[],1],[[],1],[[],1],[[[352,[[0,[166,[51,[37]]]]]],45],[[17,[46]]]],[[]],[[],44],[[]],[[[352,[[51,[37]]]]],[[42,[[51,[37]],38]]]],[[[352,[[51,[37]]]]],1],[[[352,[[51,[37]]]]],44],[[[42,[[51,[37]],38]]],[[352,[[51,[37]]]]]],[[]],[[],17],[[],17],[[[42,[[51,[37]],38]]],[[17,[[352,[[51,[37]]]],217]]]],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[157,1],[157,1],[157,1],[37,44],[37,[[17,[[39,[164,38]],217]]]],[[[118,[270]]],[[22,[[13,[12]]]]]],[47,[[22,[1]]]],[[]],[[]],[[[48,[[0,[272,353]]]]],[[22,[[0,[272,353]]]]]],[[[116,[270]]],[[22,[11]]]],[37,[[17,[[39,[164,38]],217]]]],[[[118,[270]]],[[22,[[13,[12]]]]]],[47,[[22,[1]]]],[[]],[[]],[[[48,[[0,[272,353]]]]],[[22,[[0,[272,353]]]]]],[[[116,[270]]],[[22,[11]]]],[[]],[[]],[[]],[37,[[17,[[39,[164,38]],217]]]],[[[48,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]]]]]]],[[22,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]]]]]]]],[[[13,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]]]]]]],[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]],[354,[[0,[272,353,[268,[[0,[272,353,268,354]]]],[354,[[0,[272,353,268,354]]]]]]]]]]]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[37,37],[[39,[37,38]]]],[[]],[[37,164],[[39,[37,38]]]],0,[[157,157],1],[[157,157],1],[[157,157],1],[157,1],[[157,157],1],[[157,157],1],[[]],[[]],[[]],[[]],[[]],0,[[37,37],[[39,[37,38]]]],[[]],[[37,164],[[39,[37,38]]]],[[37,37],[[39,[37,38]]]],[[]],[[37,164],[[39,[37,38]]]],[37,[[39,[37,38]]]],[[]],[[]],[[]],[[37,37],[[39,[37,38]]]],[[]],[[]],[[]],[[]],[[37,37],[[39,[37,38]]]],[[]],[[37,164],[[39,[37,38]]]],0,[[]],[[]],[[]],0,[[[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]],[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]]],[[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]],[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]]]]],[[48,[[0,[267,[268,[[0,[267,[268,[[0,[267,[268,[[0,[267,268]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,290]]]],[48,[[0,[267,290]]]]],[[48,[[0,[267,290]]]]]],[[[48,[[0,[267,290]]]],[0,[267,290]]],[[48,[[0,[267,290]]]]]],[[[48,[[0,[267,291]]]],[48,[[0,[267,291]]]]],[[48,[[0,[267,291]]]]]],[[[48,[[0,[267,291]]]],[0,[267,291]]],[[48,[[0,[267,291]]]]]],[[[48,[[0,[267,292]]]],[48,[[0,[267,292]]]]],[[48,[[0,[267,292]]]]]],[[[48,[[0,[267,292]]]],[0,[267,292]]],[[48,[[0,[267,292]]]]]],[[[48,[[0,[272,355]]]]],[[48,[[0,[272,355]]]]]],[[[48,[[0,[267,292,356]]]],44],[[48,[[0,[267,292,356]]]]]],[[[48,[[0,[267,293]]]],[48,[[0,[267,293]]]]],[[48,[[0,[267,293]]]]]],[[[48,[[0,[267,293]]]],[0,[267,293]]],[[48,[[0,[267,293]]]]]],[[[48,[[0,[267,294]]]],[48,[[0,[267,294]]]]],[[48,[[0,[267,294]]]]]],[[[48,[[0,[267,294]]]],[0,[267,294]]],[[48,[[0,[267,294]]]]]],[[[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297]]]]]]]]]]]]]]]],[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297]]]]]]]]]]]]]]]]],[[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297,73]]]],73]]]],73]]]],73]]]],[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297,73]]]],73]]]],73]]]],73]]]],73]]],[[48,[[0,[267,[297,[[0,[267,[297,[[0,[267,[297,[[0,[267,297,73]]]],73]]]],73]]]],73]]]]]],[[[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]],[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]]],[[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]],[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]]]]],[[48,[[0,[267,[320,[[0,[267,[320,[[0,[267,[320,[[0,[267,320]]]]]]]]]]]]]]]]]],[[[48,[[0,[272,357]]]]],[[48,[[0,[272,357]]]]]],[[[48,[[0,[267,322]]]],[48,[[0,[267,322]]]]]],[[[48,[[0,[267,322]]]],[0,[267,322]]]],[[[48,[[0,[267,323]]]],[48,[[0,[267,323]]]]]],[[[48,[[0,[267,323]]]],[0,[267,323]]]],[[[48,[[0,[267,324]]]],[48,[[0,[267,324]]]]]],[[[48,[[0,[267,324]]]],[0,[267,324]]]],[[[48,[[0,[267,[358,[[0,[267,[358,[[0,[267,[358,[[0,[267,358]]]]]]]]]]]]]]]],[0,[267,[358,[[0,[267,[358,[[0,[267,[358,[[0,[267,[358,[[0,[267,358]]]]]]]]]]]]]]]]]]],[[48,[[0,[267,[358,[[0,[267,[358,[[0,[267,[358,[[0,[267,358]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326]]]]]]]]]]]]]]]],[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326]]]]]]]]]]]]]]]]],[[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326,73]]]],73]]]],73]]]],73]]]],[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326,73]]]],73]]]],73]]]],73]]]],73]]],[[48,[[0,[267,[326,[[0,[267,[326,[[0,[267,[326,[[0,[267,326,73]]]],73]]]],73]]]],73]]]]]],[[[48,[[0,[267,327]]]],[48,[[0,[267,327]]]]],[[48,[[0,[267,327]]]]]],[[[48,[[0,[267,327]]]],[0,[267,327]]],[[48,[[0,[267,327]]]]]],[[[48,[[0,[267,328]]]],[48,[[0,[267,328]]]]],[[48,[[0,[267,328]]]]]],[[[48,[[0,[267,328]]]],[0,[267,328]]],[[48,[[0,[267,328]]]]]],[[[48,[[0,[267,329]]]],[48,[[0,[267,329]]]]],[[48,[[0,[267,329]]]]]],[[[48,[[0,[267,329]]]],[0,[267,329]]],[[48,[[0,[267,329]]]]]],[[[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]],[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]]],[[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]],[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]]]]],[[48,[[0,[267,[330,[[0,[267,[330,[[0,[267,[330,[[0,[267,330]]]]]]]]]]]]]]]]]],[[[48,[[0,[267,334]]]],[48,[[0,[267,334]]]]],[[48,[[0,[267,334]]]]]],[[[48,[[0,[267,334]]]],[0,[267,334]]],[[48,[[0,[267,334]]]]]],[[[48,[[0,[267,335]]]],[48,[[0,[267,335]]]]],[[48,[[0,[267,335]]]]]],[[[48,[[0,[267,335]]]],[0,[267,335]]],[[48,[[0,[267,335]]]]]],[[[48,[[0,[272,359]]]]],[[48,[[0,[272,359]]]]]],[[[48,[[0,[267,336]]]],[48,[[0,[267,336]]]]],[[48,[[0,[267,336]]]]]],[[[48,[[0,[267,336]]]],[0,[267,336]]],[[48,[[0,[267,336]]]]]],[[[48,[266]],[48,[266]]],[[17,[[48,[266]],217]]]],[[[48,[266]],[48,[266]]],[[17,[[48,[266]],217]]]],[[[48,[266]],[48,[266]]],[[17,[[48,[266]],217]]]],[[[48,[266]],[48,[266]]],[[17,[[48,[266]],217]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[360,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[360,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[266]],[48,[266]]],[[48,[266]]]],[[[48,[[0,[272,[268,[[0,[272,[268,[[0,[272,[268,[[0,[272,268]]]]]]]]]]]]]]]],[48,[86]]],[[48,[[0,[272,[268,[[0,[272,[268,[[0,[272,[268,[[0,[272,268]]]]]]]]]]]]]]]]]],[[[48,[[0,[272,[268,[[0,[272,[268,[[0,[272,[268,[[0,[272,268]]]]]]]]]]]]]]]],[360,[86]]],[[48,[[0,[272,[268,[[0,[272,[268,[[0,[272,[268,[[0,[272,268]]]]]]]]]]]]]]]]]],[[[48,[86]],[48,[361]]],[[17,[[48,[86]],217]]]],[[[48,[86]],[360,[361]]],[[17,[[48,[86]],217]]]],[[[48,[[0,[272,[330,[[0,[272,[330,[[0,[272,[330,[[0,[272,330]]]]]]]]]]]]]]]],[360,[86]]],[[48,[[0,[272,[330,[[0,[272,[330,[[0,[272,[330,[[0,[272,330]]]]]]]]]]]]]]]]]],[[[48,[86]],[360,[86]]],[[17,[[48,[86]],217]]]],[[[48,[[0,[272,[330,[[0,[272,[330,[[0,[272,[330,[[0,[272,330]]]]]]]]]]]]]]]],[48,[86]]],[[48,[[0,[272,[330,[[0,[272,[330,[[0,[272,[330,[[0,[272,330]]]]]]]]]]]]]]]]]],[[[48,[86]],[48,[86]]],[[17,[[48,[86]],217]]]],[[[48,[272]],[48,[272]],157,25],[[48,[272]]]],[[[48,[272]],[48,[272]],157,25],[[48,[272]]]],[[[48,[272]],[48,[272]],157,25]],[[[48,[272]],[48,[272]],157,25],[[17,[[48,[272]],217]]]],[[[48,[272]],25,157],[[17,[[48,[272]],217]]]],[[[48,[272]],25,157],[[48,[272]]]],[[[48,[272]],25,157],[[48,[272]]]],[[[48,[272]],25,157]],[[[48,[272]],[48,[272]],25]],[[[48,[272]],25]],[47,1],[[47,47],47],[[47,362],47],[47,1],[37,47],[37,47],[47,47],[[47,47],47],[[47,362],47],[47,1],[[47,47],47],[[47,362],47],[47,1],[[47,47],47],[[47,362],47],0,[2],[[[118,[86]],157],[[17,[[118,[87]],217]]]],[[[118,[270]]],[[17,[[276,[275]],217]]]],[[[118,[87]],157],[[118,[86]]]],[[[118,[87]],157],[[17,[[116,[86]],217]]]],[[[118,[270]],157],[[120,[270]]]],[[[118,[270]],157],[[48,[[0,[272,363]]]]]],[[[118,[270]],157],[[17,[[116,[270]],217]]]],[47,[[118,[270]]]],[47,[[48,[[0,[272,356]]]]]],[47,[[116,[270]]]],[[]],[[]],[[157,157],1],[[37,157,364],[[17,[[39,[37,38]],217]]]],[364,364],[[]],[[[48,[87]]],[[48,[86]]]],[[[48,[86]]],[[48,[87]]]],[[[48,[365]]],[[48,[361]]]],[[[48,[266]],44,44],[[48,[266]]]],[[[48,[266]]],[[48,[[0,[272,366]]]]]],[[[48,[266]]],[[48,[[0,[272,73]]]]]],[[],364],[44],[44],[[[276,[[0,[275,73]]]]],[[17,[[276,[[0,[275,73]]]],217]]]],[[[276,[275]],157],[[17,[[276,[275]],217]]]],[[[276,[[0,[275,73]]]]],[[39,[37,38]]]],[44],[[[48,[367]]],[[48,[55]]]],[[277,157],[[118,[270]]]],[[[48,[[0,[272,366,7]]]],44,44],[[48,[266]]]],[[364,45],[[17,[46]]]],[[]],[[],44],[[[48,[[0,[272,[368,[266]]]]]],44,44],[[48,[266]]]],[[]],[[[48,[87]]],[[48,[361]]]],[[[48,[86]],232],[[116,[270]]]],0,[[[118,[270]],157],[[48,[[0,[272,363]]]]]],[[[116,[270]],157],[[48,[[0,[272,363]]]]]],[[[48,[[0,[272,[368,[272]]]]]],157],[[48,[272]]]],[[[48,[[0,[272,369]]]]],[[118,[270]]]],[[[48,[272]],157],47],[[[48,[[0,[272,254,198]]]]],[[17,[[276,[275]],217]]]],[[[48,[[0,[272,73]]]],157],[[48,[[0,[272,73]]]]]],[[[48,[272]],157],[[48,[272]]]],[[[48,[[0,[272,369]]]]],[[116,[270]]]],[[[48,[87]],232,232],[[48,[86]]]],[[[48,[87]]],[[48,[87]]]],[[[48,[87]]],[[48,[87]]]],[[[48,[86]],232,232],[[48,[87]]]],[[[48,[86]]],[[48,[86]]]],[[[48,[86]]],[[48,[86]]]],[[[48,[86]],232],[[48,[87]]]],[[[48,[86]],232],[[48,[86]]]],[[[48,[86]],232,232,[22,[62]]],[[48,[86]]]],[[[48,[86]],232,11],[[17,[[116,[270]],217]]]],[[]],[[],17],[[],17],[[],106],[[[116,[86]]],[[17,[[116,[87]],217]]]],[[[116,[270]],157],[[118,[270]]]],[[[116,[270]]],[[48,[87]]]],[[[116,[270]]],[[48,[86]]]],[[[116,[270]]],[[17,[[276,[275]],217]]]],[[[116,[87]]],[[116,[86]]]],[[[116,[270]]],[[48,[86]]]],[[[116,[270]],157],[[48,[[0,[272,363]]]]]],[[[116,[270]],62],[[17,[[48,[86]],217]]]],[[]],0,[[[276,[[0,[275,[368,[275]]]]]]],[[17,[[276,[275]],217]]]],[[[276,[275]],157],[[17,[[276,[275]],217]]]],0,0,0,0,0,0,0,[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[[37,37],47],[[],12],[[37,37],47],[[37,164],47],[[37,164],47],[[47,[22,[88]],[22,[88]]],47],[[47,[22,[88]],[22,[88]]],47],[13],[13],[[37,37],47],[[],12],[[37,37],47],[[],12],[[37,164],47],[[37,164],47],[[37,37],47],[[],12],[[37,37],47],[[],12],[[37,164],47],[[37,164],47],[[37,37],47],[[],12],[[37,37],47],[[37,164],47],[[37,164],47],0,0,[[[118,[270]],[118,[270]]],47],[[[118,[270]],[118,[270]]],47],[[[118,[270]],[13,[12]]],47],[[[118,[270]],[13,[12]]],47],[[[118,[270]],[118,[270]]],47],[[[118,[270]],[118,[270]]],47],[[[118,[270]],[13,[12]]],47],[[[118,[270]],[13,[12]]],47],[[[118,[270]],[118,[270]]],47],[[[118,[270]],[118,[270]]],47],[[[118,[270]],[13,[12]]],47],[[[118,[270]],[13,[12]]],47],[[[118,[270]],[118,[270]]],47],[[[118,[270]],[118,[270]]],47],[[[118,[270]],[13,[12]]],47],[[[118,[270]],[13,[12]]],47],[[47,1,25],47],[[47,47],47],[[47,47],47],[[47,1],47],[[47,1],47],[[47,47],47],[[47,47],47],[[47,1],47],[[47,1],47],[[47,47],47],[[47,47],47],[[47,1],47],[[47,1],47],[[47,47],47],[[47,47],47],[[47,1],47],[[47,1],47],[[[48,[[0,[272,370]]]],[0,[272,370]],25],47],[[[48,[[0,[272,370]]]],[48,[[0,[272,370]]]]],47],[[[48,[[0,[272,370]]]],[48,[[0,[272,370]]]]],47],[[[48,[[0,[272,370]]]],[0,[272,370]]],47],[[[48,[[0,[272,370]]]],[0,[272,370]]],47],[[[48,[[0,[272,370]]]],[48,[[0,[272,370]]]]],47],[[[48,[[0,[272,370]]]],[48,[[0,[272,370]]]]],47],[[[48,[[0,[272,370]]]],[0,[272,370]]],47],[[[48,[[0,[272,370]]]],[0,[272,370]]],47],[[[48,[[0,[272,370]]]],[48,[[0,[272,370]]]]],47],[[[48,[[0,[272,370]]]],[48,[[0,[272,370]]]]],47],[[[48,[[0,[272,370]]]],[0,[272,370]]],47],[[[48,[[0,[272,370]]]],[0,[272,370]]],47],[[[48,[[0,[272,370]]]],[48,[[0,[272,370]]]]],47],[[[48,[[0,[272,370]]]],[48,[[0,[272,370]]]]],47],[[[48,[[0,[272,370]]]],[0,[272,370]]],47],[[[48,[[0,[272,370]]]],[0,[272,370]]],47],[[[116,[270]],[116,[270]]],47],[[[116,[270]],[116,[270]]],47],[[[116,[270]],11],47],[[[116,[270]],11],47],[[[116,[270]],[116,[270]]],47],[[[116,[270]],[116,[270]]],47],[[[116,[270]],11],47],[[[116,[270]],11],47],[[[116,[270]],[116,[270]]],47],[[[116,[270]],[116,[270]]],47],[[[116,[270]],11],47],[[[116,[270]],11],47],[[[116,[270]],[116,[270]]],47],[[[116,[270]],[116,[270]]],47],[[[116,[270]],11],47],[[[116,[270]],11],47],[[[13,[37]]],[[17,[[39,[37,38]],217]]]],0,[47,[[17,[[39,[25,38]],217]]]],[[37,47],[[17,[[39,[37,38]],217]]]],[[[352,[[51,[37]]]],47],[[17,[[352,[[39,[37,38]]]],217]]]],[[47,37,37],[[17,[[39,[37,38]],217]]]],[[[118,[270]],[118,[270]]],[[17,[47,217]]]],[[[118,[270]],[13,[12]]],[[17,[47,217]]]],[[[116,[270]],[116,[270]]],[[17,[47,217]]]],[[[116,[270]],11],[[17,[47,217]]]],[[[118,[270]],[118,[270]]],[[17,[47,217]]]],[[[118,[270]],[13,[12]]],[[17,[47,217]]]],[[[116,[270]],[116,[270]]],[[17,[47,217]]]],[[[116,[270]],11],[[17,[47,217]]]],[157,1],[[37,86,[22,[56]]],[[17,[[39,[37,38]],217]]]],[157,1],[[37,[48,[371]]],[[17,[[39,[37,38]],217]]]],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[157,1],[37,[[17,[[48,[78]],217]]]],[37,[[17,[[48,[78]],217]]]],[37,[[17,[[48,[78]],217]]]],[37,[[17,[[48,[78]],217]]]],[37,[[17,[[48,[78]],217]]]],[37,[[17,[[48,[78]],217]]]],[37,[[17,[[48,[78]],217]]]],[37,[[17,[[48,[78]],217]]]],[37,[[17,[[48,[87]],217]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[234,234],[240,240],[233,233],[372,372],[373,373],[[]],[[]],[[]],[[]],[[]],0,[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[234,234],1],[[240,240],1],[[233,233],1],[[372,372],1],[[373,373],1],[[240,234],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],0,[[234,45],[[17,[46]]]],[[240,45],[[17,[46]]]],[[233,45],[[17,[46]]]],[[372,45],[[17,[46]]]],[[373,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[[211,[62,62,38]]],22],[[234,199]],[[240,199]],[[233,199]],[[372,199]],[[373,199]],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[372,1],0,[372,1],0,0,0,[1,372],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[374],[375],[44],[44],[376],[[],374],[[],375],[[],376],[[[39,[37,38]]],375],[152,374],[[[39,[23,38]],152],376],[[[378,[377]]],152],[[374,45],[[17,[46]]]],[[375,45],[[17,[46]]]],[[376,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[375,157],[[17,[[39,[37,38]],217]]]],[374,[[17,[152,217]]]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],0,[[[378,[377]]],[[22,[[17,[[39,[37,38]],217]]]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[377,[[17,[[378,[377]],217]]]],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[[13,[12]],44,44],[[17,[47,217]]]],[[[13,[272]]],[[48,[272]]]],0,0,0,0,0,0,[2],[2],0,[[]],[[]],[[]],[[]],[379,379],[380,380],[[]],[[]],[[],379],[44],[44],[44],[44],0,[44],[44],[[379,379],1],[[380,380],1],0,0,[[379,45],[[17,[46]]]],[[380,45],[[17,[46]]]],[[]],[[]],[[],44],[[],44],[[]],[[]],0,0,[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[381,381],[382,382],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[13,[12]]],[[17,[217]]]],[44],[44],[44],[44],[44],[44],[[252,45],[[17,[46]]]],[[381,45],[[17,[46]]]],[[382,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[[385,[[0,[383,384]]]]]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[385,[[0,[383,384]]]]],[[0,[383,384]]]],[[]],[[]],0,0,[[[386,[383]]],1],[[[385,[[0,[383,384]]]]],381],[[[386,[383]]],382],[[[0,[383,384]],381,[22,[[42,[44,38]]]],[22,[44]]],[[385,[[0,[383,384]]]]]],[[383,382,[22,[[42,[44,38]]]]],[[386,[383]]]],[[[385,[[0,[383,384]]]]],22],[[[386,[383]]],22],[[[385,[[0,[387,383,384]]]]],[[17,[[22,[[352,[[39,[37,38]]]]]],217]]]],[[[386,[383]]],[[17,[[22,[[352,[[39,[37,38]]]]]],217]]]],[[[0,[383,384]],[261,[86,[39,[37,38]],107]],381,[22,[[13,[44]]]],[22,[44]],44,[42,[12,38]],[42,[12,38]]],[[17,[[352,[[39,[37,38]]]],217]]]],[[[0,[383,384]],381,[42,[12,38]]],[[17,[[261,[86,[39,[37,38]],107]],217]]]],[[[0,[383,384]]],[[17,[381,217]]]],[383,[[17,[382,217]]]],[[[385,[[0,[383,384]]]]],153],[[[386,[383]]],153],0,0,[[[385,[[0,[383,384]]]]]],0,[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[388,[[352,[[39,[37,38]]]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[389,389],[390,390],[391,391],[[]],[[]],[[]],[391,[[352,[[39,[37,38]]]]]],0,[[],390],[[[13,[152]]],[[42,[379,38]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[389,389],1],[[390,390],1],[[391,391],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[391,[[22,[[13,[379]]]]]],0,[[[393,[392]]],[[17,[217]]]],[[[394,[392]]],[[17,[217]]]],[[389,45],[[17,[46]]]],[[390,45],[[17,[46]]]],[[391,45],[[17,[46]]]],[[]],[[]],[395,389],[[]],[[]],[[]],[[],391],[[[352,[[39,[37,38]]]]],391],[[],391],[[[394,[392]]],396],[[389,199]],[[390,199]],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[[393,[392]]],392],[[[394,[392]]],392],[[392,390],[[393,[392]]]],[[392,153,[22,[[42,[379,38]]]],390],[[394,[392]]]],[[153,[13,[379]]],[[42,[12,38]]]],[[[394,[392]],396]],[[[393,[392]],153,[22,[[42,[379,38]]]]],[[17,[217]]]],[[[394,[392]]],[[17,[217]]]],0,[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[[0,[383,384,392]],381,390],[[17,[[394,[[0,[383,384,392]]]],217]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[392,153,[22,[[42,[379,38]]]],390],[[17,[[394,[392]],217]]]],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[37,[42,[397,38]],[42,[12,38]],[42,[398,38]],86,1,[22,[389]]]],[[[393,[392]],[352,[[39,[37,38]]]],[22,[[13,[379]]]]],[[17,[217]]]],[[[394,[392]],[352,[[39,[37,38]]]],[22,[[13,[379]]]]],[[17,[217]]]],0,[[]],[[]],[44],[44],[44],[[]],[[],44],[[]],[[[0,[399,400,67]],153,[22,[[42,[379,38]]]],390],[[401,[[0,[399,400,67]]]]]],[[[202,[[401,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[401,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[401,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[401,[[0,[399,400,67]]]]]],391],[[17,[217]]]],[[],17],[[],17],[[],106],[[]],0,0,[[]],[[]],0,[44],[44],[44],[[]],[[],44],[[]],[[[0,[399,400,67]],153,[22,[[42,[379,38]]]],390],[[404,[[0,[399,400,67]]]]]],[[[202,[[404,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[404,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[404,[[0,[399,400,67]]]]]],402],[[403,[[17,[217]]]]]],[[[202,[[404,[[0,[399,400,67]]]]]],391],[[17,[217]]]],[[],17],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],17],[[],17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[138,138],[23,[[405,[23]]]],[138,[[17,[44]]]],[[],406],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[138,27],17],[138,[[408,[138]]]],[[],22],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[],[[17,[22]]]],[[],[[17,[22]]]],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[[392,416],[[17,[217]]]],0,0,0,0,0,0,[[],17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[138,138],[138,[[17,[44]]]],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[138,27],17],[138,[[408,[138]]]],[[],22],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[],[[17,[22]]]],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[0,[383,384]],[13,[417]]],[[17,[[42,[[39,[418,38]],38]],253]]]],[[[0,[383,384]]],[[17,[419,253]]]],[[[0,[420,421,67,400]]],422],[[],17],[[],[[17,[423]]]],[[[425,[424]]],[[17,[253]]]],[[[426,[23]]],[[17,[253]]]],[427,[[17,[[423,[427]],253]]]],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[138,138],[417],[253,253],[417,417],[428,428],[429,429],[430,430],[431,431],[432,432],[433,433],[434,434],[435,435],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[417,436],[417,[[42,[437,38]]]],[[[42,[438,38]],[42,[439,38]],152,[22,[44]],44],[[17,[[39,[23,38]],217]]]],0,[429,[[13,[417]]]],[417,86],[429,44],[417,440],[138,[[17,[44]]]],[[157,441,[39,[37,38]]],[[39,[37,38]]]],[[157,441,[39,[37,38]]],[[39,[37,38]]]],0,[417,86],[[442,[42,[12,38]]],[[17,[443,253]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[417,428],0,[417,[[22,[86]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[428,428],1],[[431,431],1],[[432,432],1],[[433,433],1],[[434,434],1],[[435,435],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[417,86],[417,[[22,[62]]]],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[253,45],[[17,[46]]]],[[253,45],[[17,[46]]]],[[417,45],[[17,[46]]]],[[428,45],[[17,[46]]]],[[429,45],[[17,[46]]]],[[430,45],[[17,[46]]]],[[431,45],[[17,[46]]]],[[432,45],[[17,[46]]]],[[433,45],[[17,[46]]]],[[[423,[166]],45],[[17,[46]]]],[[427,45],[[17,[46]]]],[[434,45],[[17,[46]]]],[[435,45],[[17,[46]]]],[[441,45],[[17,[46]]]],[[138,27],17],[[]],[[]],[[]],[444,253],[445,253],[[]],[246,253],[446,253],[247,253],[447,253],[217,253],[[]],[[]],[[]],[[]],[[]],[448,431],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[138,[[408,[138]]]],[[],22],[[],22],[[[425,[424]]],22],[[[426,[23]]],22],[427,22],[[[0,[383,384]],429,11,[22,[[104,[25]]]],[42,[12,38]],44],[[449,[[0,[383,384]]]]]],[[[13,[417]],11],[[42,[417,38]]]],[[[13,[417]],13,11],[[42,[38]]]],[[417,[0,[383,384]],[22,[[104,[25]]]],[42,[12,38]],44],[[17,[[450,[[0,[383,384]]]],217]]]],[[417,[0,[420,400,67,421]],[42,[12,38]],[104,[25]],44],422],[417,1],[[431,199]],[[432,199]],[[433,199]],[[434,199]],[417,[[22,[86]]]],0,[419,[[17,[153,217]]]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[[13,[435]],44],441],[[[99,[78]]],86],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[425,[424]]]],[[[426,[23]]],[[42,[12,38]]]],[[[450,[383]]]],[[]],[[]],[[]],[[]],[[]],[417,436],0,[441,44],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[417,451],[157,44],0,[[424,[42,[12,38]]],[[425,[424]]]],[[23,[42,[12,38]]],[[426,[23]]]],[[383,417,[104,[25]],[42,[12,38]],44],[[450,[383]]]],[[436,428],417],[[452,[42,[62,38]],453],428],[[[42,[417,38]],44,44],429],[[453,[42,[38]]],427],[[[42,[[39,[23,38]],38]],[42,[152,38]]],454],[[[0,[383,384]],[42,[429,38]],153,[22,[44]],[22,[44]],[22,[[42,[[42,[[42,[[42,[455,38]],38]],38]],38]]]]],[[456,[[0,[383,384]]]]]],[[[0,[383,384]],153,[42,[429,38]],[22,[44]],[22,[44]],[22,[[42,[[42,[[42,[[42,[455,38]],38]],38]],38]]]]],[[457,[[0,[383,384]]]]]],[[[42,[[39,[23,38]],38]],44,[22,[44]]],458],[[[42,[[39,[459,38]],38]]],441],[[383,460,[104,[25]],[42,[12,38]],44],[[450,[383]]]],[[],[[17,[22]]]],[[[450,[383]]],22],[454,22],[[[456,[[0,[383,384]]]]],22],[[[457,[[0,[383,384]]]]],22],[458,22],[44,[[17,[22]]]],[429,44],[458,44],0,[417,86],[430,44],[[],344],0,[417,461],[[138,27],[[17,[[22,[44]]]]]],[203],[[[0,[383,384]],[13,[417]],11],[[17,[[42,[38]],217]]]],[[[0,[25,147]],[13,[417]],11],422],[[[0,[383,384]],429,[42,[152,38]],[22,[44]],[22,[44]],[22,[[42,[[42,[[42,[455,38]],38]],38]]]]],[[17,[[42,[[39,[23,38]],38]],217]]]],[[[0,[25,147]],429,[42,[152,38]],[22,[44]],[22,[44]],[22,[[42,[[42,[[42,[455,38]],38]],38]]]]],422],[[[0,[383,384]]],[[17,[419,217]]]],[[[0,[420,421,67,400]]],422],[[[0,[383,384]],[13,[417]]],[[17,[[42,[[42,[462,38]],38]],253]]]],0,0,[[[456,[[0,[383,384]]]]],153],0,[[]],[[[457,[[0,[383,384]]]]]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],0,[417,[[22,[[17,[[104,[463]],253]]]]]],[[[450,[383]],[42,[12,38]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[[[42,[38]],152,44,[22,[44]],[22,[[42,[[42,[455,38]],38]]]]],[[17,[[39,[23,38]],217]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[429,44],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[464,[[17,[432]]]],[[],17],[464,[[17,[433]]]],[[],17],[[],17],[[],17],[[],17],[[],[[17,[434]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[417,86],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],17],[[],17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[138,138],[23,[[405,[23]]]],[138,[[17,[44]]]],[[],406],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[138,27],17],[138,[[408,[138]]]],[[],22],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[],[[17,[22]]]],[[],[[17,[22]]]],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],0,0,0,0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[465,465],[455,455],[[]],[[]],[[[13,[462]],44],[[17,[[42,[465,38]],253]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[465,465],1],[[455,455],1],[[466,466],1],[[467,467],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[465,45],[[17,[46]]]],[[455,45],[[17,[46]]]],[[466,45],[[17,[46]]]],[[467,45],[[17,[46]]]],[[]],[[]],[[]],[467,466],[[]],[429,1],[[465,199]],[[455,199]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],0,0,0,0,[[44,44],465],0,0,[[[0,[383,384]],[13,[417]],[13,[152]]],[[17,[[42,[466,38]],217]]]],[[[0,[383,384]],429,[13,[152]],25],[[17,[[42,[[42,[[42,[455,38]],38]],38]],217]]]],0,0,0,[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[419,[[17,[153,217]]]],0,0,0,[[[13,[453]]],[[42,[152,38]]]],[[[211,[62,62,38]]],[[17,[[22,[153]],217]]]],0,0,0,0,0,0,0,0,0,[[]],[[]],[44],[44],[[152,[13,[429]]],[[17,[468,217]]]],0,[44],[[468,468],1],[[468,45],[[17,[46]]]],[469,468],[[]],[[],44],[[]],0,0,0,[[],17],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[],17],[[[470,[23]]],17],[471,17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[[[0,[[51,[37]],67,68]],453,472,[13,[473]]],[[17,[[42,[[474,[[17,[443,217]]]],38]],217]]]],[[37,439,[13,[475]],472,473],[[17,[443,217]]]],[[37,439,472,473],[[17,[443,217]]]],[[37,439,[13,[475]],472,473],[[17,[[474,[[17,[443,217]]]],217]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[443,[[42,[12,38]]]],[138,138],[[157,473],1],[[453,453],1],[476,476],[452,452],[477,477],[419,419],[478,478],[479,479],[480,480],[481,481],[482,482],[473,473],[461,461],[483,483],[453,453],[484,484],[475,475],[472,472],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[476,476],156],[[477,477],156],[[419,44],485],0,0,[478,[[13,[428]]]],[[],156],[[],156],[[443,[42,[12,38]],479],[[17,[442,253]]]],[486,44],[486,440],0,[480,78],[481,12],[482,87],[138,[[17,[44]]]],0,0,0,[[],480],[[],481],[[],482],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,[[[487,[392]],[22,[[42,[476,38]]]]],[[17,[56,217]]]],[[476,476],1],[[452,452],1],[[477,477],1],[[479,479],1],[[480,480],1],[[481,481],1],[[482,482],1],[[473,473],1],[[461,461],1],[[483,483],1],[[453,453],1],[[484,484],1],[[475,475],1],[[472,472],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[478,[[13,[453]]]],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[476,45],[[17,[46]]]],[[452,45],[[17,[46]]]],[[477,45],[[17,[46]]]],[[419,45],[[17,[46]]]],[[478,45],[[17,[46]]]],[[486,45],[[17,[46]]]],[[443,45],[[17,[46]]]],[[442,45],[[17,[46]]]],[[479,45],[[17,[46]]]],[[480,45],[[17,[46]]]],[[481,45],[[17,[46]]]],[[482,45],[[17,[46]]]],[[473,45],[[17,[46]]]],[[461,45],[[17,[46]]]],[[483,45],[[17,[46]]]],[[453,45],[[17,[46]]]],[[484,45],[[17,[46]]]],[[475,45],[[17,[46]]]],[[472,45],[[17,[46]]]],0,[[138,27],17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[488,479],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[62,[42,[453,38]],489,[22,[490]],[22,[87]]],453],[[62,489,[22,[490]],[22,[433]],[42,[453,38]],[22,[87]]],453],[[62,461],453],[138,[[408,[138]]]],[[],22],[[[470,[23]]],22],[471,22],[453,483],[[[13,[475]]],44],[[476,199]],[[452,199]],[[477,199]],[[479,199]],[[480,199]],[[481,199]],[[482,199]],[[473,199]],[[461,199]],[[483,199]],[[484,199]],[486,430],0,[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[470,[23]]]],[[[487,[392]]],392],[[[487,[392]]]],[[]],[[]],[419,477],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[442,1],0,[419,[[22,[[42,[476,38]]]]]],0,0,[475,44],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],0,0,0,[478,11],[453,11],0,[[23,479,[42,[12,38]]],[[470,[23]]]],[[[0,[23,67,68]]],474],[[[0,[416,67,68]]],471],[[62,[200,[[22,[62]]]]],476],[[87,[42,[491,38]],86,[42,[492,38]],[200,[[22,[[42,[476,38]]]]]],[200,[[22,[62]]]],[200,[[22,[[42,[493,38]]]]]],[200,[[22,[494]]]],[200,[[22,[[42,[12,38]]]]]]],477],[[62,[42,[453,38]]],478],[[430,[42,[12,38]],440,44,452,[22,[44]]],486],[[23,479,[42,[12,38]]],[[470,[23]]]],[[],[[17,[22]]]],[474,22],[[[495,[[0,[[51,[37]],67,68]],23]]],22],[44,[[17,[22]]]],0,0,[[[13,[475]]],44],[486,44],[[[487,[392]]],472],[[[496,[[0,[399,67,400]]]]],472],[[[487,[392]]],478],[[[495,[[51,[37]],23]]],478],[[[496,[[0,[399,67,400]]]]],478],[[476,476],[[22,[156]]]],[[477,477],[[22,[156]]]],[[[202,[[496,[[0,[399,67,400]]]]]],402],[[403,[17]]]],[[[202,[[496,[[0,[399,67,400]]]]]],402],[[403,[17]]]],[[[202,[[496,[[0,[399,67,400]]]]]],402],[[403,[17]]]],[[138,27],[[17,[[22,[44]]]]]],0,[497,[[17,[476,447]]]],[497,[[17,[476,447]]]],[497,[[17,[477,447]]]],[497,[[17,[477,447]]]],0,[[[352,[[0,[[51,[37]],67,68]]]],[42,[[42,[473,38]],38]],[42,[453,38]],472],[[474,[[17,[[471,[442,217]],217]]]]]],0,0,[419,478],[[[487,[392]]],153],[[[496,[[0,[399,67,400]]]]],153],0,0,[[486,[42,[465,38]]]],[486,[[22,[[13,[465]]]]]],[[]],[474],[471],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[[13,[475]]]],[[37,[13,[475]],44,44]],[[[202,[[496,[[0,[399,67,400]]]]]],[352,[[39,[37,38]]]]],17],[486,[[22,[[17,[[104,[463]],253]]]]]],[498,422],[498,[[202,[[39,[422,38]]]]]],[498,422],[498,[[202,[[39,[422,38]]]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[37,[[42,[37,38]]]],[[37,453],[[17,[[42,[[42,[475,38]],38]],217]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[453,[[42,[439,38]]]],[153,[[17,[478,217]]]],[152,[[17,[453,217]]]],[[157,[0,[25,147]]],[[42,[38]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[437,[[17,[473]]]],[[],[[17,[461]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[11,[[17,[478,253]]]],[[62,461,489,[22,[434]],[22,[432]],[22,[87]]],[[17,[453,253]]]],[477,[[17,[419,253]]]],[[[13,[491]]],[[17,[453,253]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[78,[[17,[480,253]]]],[12,[[17,[481,253]]]],[87,[[17,[482,253]]]],[[392,153,472],[[17,[[487,[392]],217]]]],[[23,153,472,[42,[[42,[473,38]],38]]],[[17,[[495,[[51,[37]],23]],217]]]],[[[0,[399,67,400]],153,[42,[[42,[473,38]],38]],472],[[17,[[496,[[0,[399,67,400]]]],217]]]],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[486,44],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[487,[392]],[474,[[17,[[471,[442,217]],217]]]]],[[17,[217]]]],[[[42,[12,38]],1,[22,[88]],44,484],[[17,[217]]]],[[392,477],[[17,[56,253]]]],[[484,[13,[475]],[42,[12,38]]],[[17,[217]]]],0,[[476,499],[[17,[44,447]]]],[[477,499],[[17,[44,447]]]],[[476,500],422],[[477,500],422],0,0,0,0,[[381,[104,[[51,[[13,[12]]]]]]],[[17,[[261,[86,[39,[37,38]],107]],217]]]],[[381,[261,[86,[39,[37,38]],107]],[104,[[51,[[13,[12]]]]]],44],[[17,[[352,[[39,[37,38]]]],217]]]],0,0,0,0,[2],[2],[[[218,[270]]],[[13,[270]]]],[[[321,[270]]],[[13,[270]]]],[[]],[[]],[[]],[[]],[[[321,[270]]],[[179,[270]]]],[[[218,[270]]],44],[[[218,[[0,[147,270]]]]],[[218,[[0,[147,270]]]]]],[[[321,[[0,[147,270]]]]],[[321,[[0,[147,270]]]]]],[[]],[[]],[[],[[218,[270]]]],[[],[[321,[270]]]],[44],[[[321,[270]]],[[13,[270]]]],[44],[44],[44],[44],[44],[[[218,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,270]]]],270]]]],270]]]],270]]]],[218,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,270]]]],270]]]],270]]]],270]]]]],1],[[[321,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,270]]]],270]]]],270]]]],270]]]],[321,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,270]]]],270]]]],270]]]],270]]]]],1],[[],1],[[],1],[[],1],[[],1],[[[218,[270]],44]],[[[321,[270]]],270],[[[218,[[0,[166,270]]]],45],[[17,[46]]]],[[[321,[[0,[166,270]]]],45],[[17,[46]]]],[[[218,[87]]],[[218,[86]]]],[[]],[[[321,[87]]],[[321,[86]]]],[[[218,[270]]],[[321,[270]]]],[[]],[[],44],[[],44],[[]],[[]],[[[218,[270]]],[[42,[270,38]]]],[[[321,[270]]],[[179,[270]]]],[[[321,[270]]],[[105,[[321,[270]],[218,[270]]]]]],[[[218,[270]]],270],[[[321,[270]]],270],[[[218,[270]]],44],[[[321,[270]]],44],[[[218,[270]]],44],[[[321,[270]]],44],[[[321,[270]]],23],[[],[[218,[270]]]],[[],[[321,[270]]]],[[[42,[270,38]]],[[218,[270]]]],[[[179,[270]]],[[321,[270]]]],[44,[[218,[270]]]],[[[218,[270]]],[[22,[270]]]],[[[321,[270]]],270],[[[218,[270]],44]],[[[218,[270]]]],[[[321,[270]],44,44]],[[[321,[270]],44,44]],[[[218,[270]],44]],[[[321,[270]],44]],[[[218,[270]],44]],[[[321,[270]],44]],[[]],[[]],[[[218,[270]],23],[[17,[217]]]],[[[218,[270]],[218,[270]]],[[17,[217]]]],[[[218,[270]],[321,[270]],44,44],[[17,[217]]]],[[],17],[[[42,[270,38]]],[[17,[[218,[270]]]]]],[[[218,[86]]],[[17,[[218,[87]]]]]],[[[179,[270]]],[[17,[[321,[270]]]]]],[[[321,[86]]],[[17,[[321,[87]]]]]],[[[42,[270,38]]],[[17,[[321,[270]]]]]],[[],17],[49,[[17,[[218,[270]],217]]]],[23,[[17,[[218,[270]],217]]]],[[],17],[[],17],[[[218,[270]],270],[[17,[217]]]],[[[218,[270]],44],[[17,[217]]]],[[],106],[[],106],[[]],[[]],[44,[[218,[270]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[],134],[[[501,[275]]],134],[[[360,[272]]],134],[[[502,[270]]],134],[[[503,[270]]],134],[362,134],[[[504,[270]]],134],[505,134],[506,134],[507,134],[508,134],[509,134],[510,134],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[501,[[0,[147,275]]]]],[[501,[[0,[147,275]]]]]],[[[360,[[0,[147,272]]]]],[[360,[[0,[147,272]]]]]],[[[502,[[0,[147,270]]]]],[[502,[[0,[147,270]]]]]],[[[503,[[0,[147,270]]]]],[[503,[[0,[147,270]]]]]],[362,362],[[[504,[[0,[147,270]]]]],[[504,[[0,[147,270]]]]]],[505,505],[506,506],[507,507],[508,508],[509,509],[510,510],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],157],[[[501,[275]]],157],[[[360,[272]]],157],[[[502,[270]]],157],[[[503,[270]]],157],[362,157],[[[504,[270]]],157],[505,157],[506,157],[507,157],[508,157],[509,157],[510,157],[[],506],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[164,164],1],[[[501,[275]],[501,[275]]],1],[[[360,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,272]]]],272]]]],272]]]],272]]]],[360,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,272]]]],272]]]],272]]]],272]]]]],1],[[[502,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,270]]]],270]]]],270]]]],270]]]],[502,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,270]]]],270]]]],270]]]],270]]]]],1],[[[503,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,270]]]],270]]]],270]]]],270]]]],[503,[[0,[[163,[[0,[[163,[[0,[[163,[[0,[163,270]]]],270]]]],270]]]],270]]]]],1],[[362,362],1],[[[504,[270]],[504,[270]]],1],[[505,505],1],[[506,506],1],[[507,507],1],[[508,508],1],[[509,509],1],[[510,510],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[[501,[[0,[166,275]]]],45],[[17,[46]]]],[[[360,[[0,[166,272]]]],45],[[17,[46]]]],[[[502,[[0,[166,270]]]],45],[[17,[46]]]],[[[503,[[0,[166,270]]]],45],[[17,[46]]]],[[362,45],[[17,[46]]]],[[[504,[[0,[166,270]]]],45],[[17,[46]]]],[[505,45],[[17,[46]]]],[[506,45],[[17,[46]]]],[[507,45],[[17,[46]]]],[[508,45],[[17,[46]]]],[[509,45],[[17,[46]]]],[[510,45],[[17,[46]]]],[[]],[[]],[[[22,[272]]],[[360,[272]]]],[[]],[[[22,[[200,[62]]]]],[[502,[270]]]],[[]],[[[22,[[200,[[42,[12,38]]]]]]],[[503,[270]]]],[[]],[[[22,[1]]],362],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],1],[[[501,[275]]],1],[[[360,[272]]],1],[[[502,[270]]],1],[[[503,[270]]],1],[362,1],[[[504,[270]]],1],[505,1],[506,1],[507,1],[508,1],[509,1],[510,1],[[157,[22,[[39,[164,38]]]]],[[501,[275]]]],[[157,[22,[272]]],[[360,[272]]]],[[[22,[[200,[62]]]]],[[502,[270]]]],[[[22,[[200,[[42,[12,38]]]]]]],[[503,[270]]]],[[[22,[1]]],362],[[157,[22,[[39,[37,38]]]]],[[504,[270]]]],[[157,[22,[[39,[37,38]]]]],505],[[],506],[[157,[22,[[42,[[39,[164,38]],38]]]]],507],[[157,[22,[[39,[37,38]]]]],508],[[157,[22,[[200,[[42,[12,38]]]]]]],509],[[157,84,[39,[164,38]]],510],[[37,44],[[39,[164,38]]]],[[[360,[272]],157],[[360,[272]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[510,84],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[[501,[275]]],[[22,[[39,[164,38]]]]]],[[[360,[272]]],[[22,[272]]]],[[[502,[270]]],[[22,[11]]]],[[[503,[270]]],[[22,[[13,[12]]]]]],[362,[[22,[1]]]],[509,[[22,[[13,[12]]]]]],[510,[[39,[164,38]]]],[[[504,[270]]],[[39,[37,38]]]],[505,[[39,[37,38]]]],[507,[[13,[[39,[164,38]]]]]],[508,[[22,[[39,[37,38]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,[[86,232,361,511],86],[[86,232,361],86],[87,237],[87,158],[86,237],[86,158],[11,[[17,[512,217]]]],[11,[[17,[236,217]]]],[87,224],[87,224],[86,224],[86,224],[86,158],[86,158],[86,158],[[86,232,511],[[513,[511]]]],[[86,232],158],[86,158],[[232,232],74],[[[116,[270]],11],[[48,[86]]]],[[11,11],[[22,[86]]]],[[11,11,232],[[22,[86]]]],[[[116,[270]],11,62],[[17,[[48,[86]],217]]]],[[11,11,511],[[22,[86]]]],[[11,11,511,232],[[22,[86]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[365,365],[361,361],[367,367],[514,514],[[]],[[]],[[]],[[]],[[514,514],156],[[],156],[365,87],[361,87],0,[[],365],[[],361],[[],367],[[],514],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[365,365],1],[[361,361],1],[[367,367],1],[[514,514],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],0,[[365,45],[[17,[46]]]],[[365,45],[[17,[46]]]],[[361,45],[[17,[46]]]],[[361,45],[[17,[46]]]],[[367,45],[[17,[46]]]],[[367,45],[[17,[46]]]],[[514,45],[[17,[46]]]],[[514,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[[]],[[],365],[[],361],[[],367],[[],514],[81,367],[55,367],[[]],[[],365],[[],361],[[],367],[[],514],[[]],[44,22],[[266,266],514],[[365,199]],[[361,199]],[[514,199]],0,[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[[],1],[[],1],[[],1],[[],1],[365,87],[361,87],0,[365],[361],[514],[[340,44],[[349,[340]]]],[340,[[515,[340]]]],[[371,371],[[516,[371]]]],[[87,87],365],[[87,87,86],361],[[[349,[340]]],22],[[[515,[340]]],22],[[[516,[371]]],22],[361,86],[[514,514],[[22,[156]]]],[[44,44],[[22,[516]]]],0,[[[349,[340]]]],[[[515,[340]]]],[[[516,[371]]]],[[]],[365],[361],[367],[514],[367,81],[367,55],[[]],[365],[361],[367],[514],[[]],[[]],[[]],[[]],[[]],[[],62],[[],62],[[],62],[[],62],[[],44],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[517,517]],[[518,518]],[[519,519]],[[520,520]],[[521,521]],[[522,522]],[[523,523]],[[524,524]],[[525,525]],[[526,526]],[[527,527]],[[517,517]],[[518,518]],[[519,519]],[[520,520]],[[521,521]],[[522,522]],[[523,523]],[[524,524]],[[525,525]],[[526,526]],[[527,527]],[13],[13],[13],[13],[13],[13],[13],[13],[13],[13],[13],[13],[13],[13],[13],[13],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[517,517],[518,518],[519,519],[520,520],[521,521],[522,522],[523,523],[524,524],[525,525],[526,526],[528,528],[529,529],[530,530],[527,527],[531,531],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],517],[[],518],[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],528],[[],529],[[],530],[[],527],[[],531],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[13],[[[13,[12]]],517],[[[13,[81]]],518],[[[13,[78]]],519],[[[13,[56]]],520],[[[13,[84]]],521],[[[13,[75]]],522],[[[13,[87]]],523],[[[13,[86]]],524],[[[13,[55]]],525],[[[13,[74]]],526],[[[13,[367]]],528],[[[13,[365]]],529],[[[13,[361]]],530],[[[13,[266]]],527],[[[13,[514]]],531],[13],[[[13,[12]],12],517],[[[13,[81]],81],518],[[[13,[78]],78],519],[[[13,[56]],56],520],[[[13,[84]],84],521],[[[13,[75]],75],522],[[[13,[87]],87],523],[[[13,[86]],86],524],[[[13,[55]],55],525],[[[13,[74]],74],526],[[[13,[367]],367],528],[[[13,[365]],365],529],[[[13,[361]],361],530],[[[13,[266]],266],527],[[[13,[514]],514],531],0,0,0,0,0,0,[[517,44]],[[518,44]],[[519,44]],[[520,44]],[[521,44]],[[522,44]],[[523,44]],[[524,44]],[[525,44]],[[526,44]],[[528,44]],[[529,44]],[[530,44]],[[527,44]],[[531,44]],[[517,44]],[[518,44]],[[519,44]],[[520,44]],[[521,44]],[[522,44]],[[523,44]],[[524,44]],[[525,44]],[[526,44]],[[528,44]],[[529,44]],[[530,44]],[[527,44]],[[531,44]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[517,12],[518,81],[519,78],[520,56],[521,84],[522,75],[523,87],[524,86],[525,55],[526,74],[527,266],[[517,517],517],[[518,518],518],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],[517,12],[518,81],[519,78],[520,56],[521,84],[522,75],[523,87],[524,86],[525,55],[526,74],[527,266],[[517,517],517],[[518,518],518],[[519,519],519],[[520,520],520],[[521,521],521],[[522,522],522],[[523,523],523],[[524,524],524],[[525,525],525],[[526,526],526],[[527,527],527],0,[[],517],[[],518],[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],527],[[],517],[[],518],[[],519],[[],520],[[],521],[[],522],[[],523],[[],524],[[],525],[[],526],[[],527],[[]],[[517,56,517],517],[[518,78,518],518],[[519,81,519],519],[[520,12,520],520],[[521,56,521],521],[[522,78,522],522],[[523,81,523],523],[[524,12,524],524],[[525,81,525],525],[[526,12,526],526],[[528,78,528],528],[[529,12,529],529],[[530,12,530],530],[[527,12,527],527],[[531,12,531],531],[517,12],[518,81],[519,78],[520,56],[521,84],[522,75],[523,87],[524,86],[525,55],[526,74],[527,266],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[369,[[42,[12,38]]]],[[369,[42,[12,38]]]],[369,62],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[238,238],[[238,238],238],[[[532,[511]],238],[[532,[511]]]],[[[513,[511]],533]],[[[513,[511]],238],[[513,[511]]]],[[[513,[511]],534]],[[[513,[511]],512],[[513,[511]]]],[[237,533]],[[237,238],237],[[237,534]],[[158,533]],[[158,534]],[[158,512],158],[[158,238],158],[[224,512],224],[[224,238],224],[[[532,[511]],238]],[[[513,[511]],238]],[[237,238]],[[158,238]],[[224,238]],[[[532,[511]],78,78,78],[[513,[511]]]],[[237,78,78,78],158],[[[532,[511]],78,78,78,78],[[513,[511]]]],[[237,78,78,78,78],158],[[[532,[511]],78,78,78,78],[[22,[[513,[511]]]]]],[[237,78,78,78,78],[[22,[158]]]],[[[535,[[532,[511]]]],78,78,78,78],[[535,[[513,[511]]]]]],[[[532,[511]],78,78,78,78],[[513,[511]]]],[[237,78,78,78,78],158],[[[532,[511]],78,78,78,78],[[22,[[513,[511]]]]]],[[237,78,78,78,78],[[22,[158]]]],[[[535,[[532,[511]]]],78,78,78,78],[[535,[[513,[511]]]]]],[[[532,[511]],78,78,78,78],[[513,[511]]]],[[237,78,78,78,78],158],[[[532,[511]],78,78,78,78],[[22,[[513,[511]]]]]],[[237,78,78,78,78],[[22,[158]]]],[[[535,[[532,[511]]]],78,78,78,78],[[535,[[513,[511]]]]]],[[[532,[511]],78,78,78],[[22,[[513,[511]]]]]],[[237,78,78,78],[[22,[158]]]],[[[535,[[532,[511]]]],78,78,78],[[535,[[513,[511]]]]]],[[158,511],[[535,[[513,[511]]]]]],[[[532,[511]],224],[[22,[[513,[511]]]]]],[[237,224],158],[[[535,[[532,[511]]]],224],[[535,[[513,[511]]]]]],[158,[[513,[536]]]],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]],537],513],[537,513],[537,513],[537,513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[238,238],[[22,[238]]]],[[[513,[511]],533],[[22,[[513,[511]]]]]],[[237,533],[[22,[237]]]],[[158,533],[[22,[158]]]],[[[513,[511]],534],[[22,[[513,[511]]]]]],[[237,534],[[22,[237]]]],[[158,534],[[22,[158]]]],[[[532,[511]],238],[[22,[[532,[511]]]]]],[[[513,[511]],238],[[22,[[513,[511]]]]]],[[237,238],[[22,[237]]]],[[158,238],[[22,[158]]]],[[238,238],[[22,[238]]]],[[[513,[511]],533],[[22,[[513,[511]]]]]],[[237,533],[[22,[237]]]],[[158,533],[[22,[158]]]],[[[513,[511]],534],[[22,[[513,[511]]]]]],[[237,534],[[22,[237]]]],[[158,534],[[22,[158]]]],[[[532,[511]],238],[[22,[[532,[511]]]]]],[[[513,[511]],238],[[22,[[513,[511]]]]]],[[237,238],[[22,[237]]]],[[158,238],[[22,[158]]]],[238,238],[538,538],[[[532,[[0,[147,511]]]]],[[532,[[0,[147,511]]]]]],[539,539],[[[513,[[0,[147,511]]]]],[[513,[[0,[147,511]]]]]],[540,540],[533,533],[237,237],[158,158],[541,541],[224,224],[512,512],[542,542],[536,536],[[[535,[147]]],[[535,[147]]]],[543,543],[544,544],[545,545],[546,546],[534,534],[547,547],[548,548],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[238,238],156],[[[532,[511]],[532,[511]]],156],[[[513,[511]],[513,[511]]],156],[[237,237],156],[[158,158],156],[[541,541],156],[[224,224],156],[[],156],[[],156],[[],156],[[],156],[[],156],[[],156],[[],156],[[[513,[511]]],[[532,[511]]]],[158,237],[[[513,[511]]],237],[[11,11],[[17,[513,540]]]],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[86,238],[549,[[550,[237]]]],[[],[[513,[536]]]],[[],[[513,[512]]]],[[],[[513,[542]]]],[[],237],[[],158],[[],224],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[538,11],[540,11],[543,11],[[238,87],238],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[238,17],[[[513,[511]],238],[[17,[[513,[511]]]]]],[[158,238],[[17,[158]]]],[238,17],[[[513,[511]],238],[[17,[[513,[511]]]]]],[[158,238],[[17,[158]]]],[535,22],[87,512],[87,[[22,[512]]]],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[[513,[511]],537],513],[537,513],[537,513],[537,513],[[[513,[511]]],513],[[],513],[[],513],[[],513],[[238,238],1],[[538,538],1],[[[532,[511]],[532,[511]]],1],[[539,539],1],[[[513,[511]],[513,[511]]],1],[[540,540],1],[[533,533],1],[[237,237],1],[[158,158],1],[[541,541],1],[[224,224],1],[[512,512],1],[[536,536],1],[[[535,[[163,[[163,[[163,[163]]]]]]]],[535,[[163,[[163,[[163,[163]]]]]]]]],1],[[543,543],1],[[544,544],1],[[545,545],1],[[546,546],1],[[534,534],1],[[547,547],1],[[548,548],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[549,237],[[],512],[512,512],[536,512],[[[513,[511]]],[[513,[512]]]],[[238,45],[[17,[46]]]],[[238,45],[[17,[46]]]],[[538,45],[[17,[46]]]],[[538,45],[[17,[46]]]],[[[532,[511]],45],[[17,[46]]]],[[[532,[511]],45],[[17,[46]]]],[[539,45],[[17,[46]]]],[[[513,[511]],45],[[17,[46]]]],[[[513,[511]],45],[[17,[46]]]],[[540,45],[[17,[46]]]],[[540,45],[[17,[46]]]],[[549,45],[[17,[46]]]],[[533,45],[[17,[46]]]],[[237,45],[[17,[46]]]],[[237,45],[[17,[46]]]],[[158,45],[[17,[46]]]],[[158,45],[[17,[46]]]],[[541,45],[[17,[46]]]],[[224,45],[[17,[46]]]],[[224,45],[[17,[46]]]],[[512,45],[[17,[46]]]],[[512,45],[[17,[46]]]],[[542,45],[[17,[46]]]],[[536,45],[[17,[46]]]],[[536,45],[[17,[46]]]],[[[535,[166]],45],[[17,[46]]]],[[543,45],[[17,[46]]]],[[543,45],[[17,[46]]]],[[544,45],[[17,[46]]]],[[544,45],[[17,[46]]]],[[545,45],[[17,[46]]]],[[545,45],[[17,[46]]]],[[546,45],[[17,[46]]]],[[534,45],[[17,[46]]]],[[547,45],[[17,[46]]]],[[548,45],[[17,[46]]]],[[548,45],[[17,[46]]]],0,[[[532,[511]],11],[[552,[551]]]],[[[513,[511]],11],[[552,[551]]]],[[237,11],[[552,[551]]]],[[158,11],[[552,[551]]]],[[224,11],[[552,[551]]]],[[[532,[511]],[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[[513,[511]],[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[237,[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[158,[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[224,[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[]],[[]],[[]],[[]],[[[513,[536]]],[[513,[512]]]],[553,[[513,[542]]]],[[[513,[542]]],[[513,[512]]]],[[[513,[512]]],[[513,[536]]]],[[[513,[536]]],[[513,[542]]]],[[]],[[[513,[542]]],[[513,[536]]]],[553,[[513,[536]]]],[[[513,[512]]],[[513,[542]]]],[[]],[[]],[[]],[[]],[158,237],[53,158],[[]],[[]],[[]],[53,224],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[78,78,78],224],[[78,78,78,78],224],[[78,78,78,78],[[22,[224]]]],[[78,78,78,78],224],[[78,78,78,78],[[22,[224]]]],[[78,78,78,78],224],[[78,78,78,78],[[22,[224]]]],[[78,78,78],[[22,[224]]]],[86,[[22,[544]]]],[86,[[22,[546]]]],[[87,78,544],237],[[87,78,544],[[22,[237]]]],[158,[[513,[511]]]],[237,[[535,[532]]]],[158,[[535,[513]]]],[87,237],[87,[[22,[237]]]],[[78,78],224],[[78,78],[[22,[224]]]],[[]],[512,512],[512,542],[536,536],[554,[[17,[238,538]]]],[11,[[17,[[513,[542]],540]]]],[11,[[17,[[513,[536]],540]]]],[11,[[17,[[513,[512]],540]]]],[11,[[17,[237,540]]]],[11,[[17,[158,540]]]],[11,[[17,[224,540]]]],[11,[[17,[544]]]],[11,[[17,[546]]]],[[86,78],158],[86,[[22,[158]]]],[86,[[22,[158]]]],[[86,78],[[22,[158]]]],[78,[[22,[546]]]],[56,[[22,[544]]]],[56,[[22,[546]]]],[237,[[532,[511]]]],[158,[[513,[511]]]],[237,532],[158,513],[[87,78,544,12],237],[[87,78,544,12],[[22,[237]]]],[[87,78,78],237],[[87,78,78],[[22,[237]]]],[[87,78],237],[[87,78],[[22,[237]]]],[[238,199]],[[[532,[511]],199]],[[539,199]],[[[513,[511]],199]],[[540,199]],[[533,199]],[[237,199]],[[158,199]],[[541,199]],[[224,199]],[[512,199]],[[536,199]],[[[535,[198]],199]],[[544,199]],[[546,199]],[[534,199]],[[548,199]],[[],78],[[[513,[511]]],78],[158,78],[224,78],[[]],[86,238],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[238,1],[[],541],[[[532,[511]]],541],[[[513,[511]]],541],[237,541],[158,541],[[87,78,544],532],[[87,78,544],[[535,[532]]]],[237,555],[237,556],[540,557],[549,237],[535,22],[238,558],[237,558],[158,558],[512,87],[[535,27],535],[[],238],[86,238],[86,238],[[],238],[[],78],[[[513,[511]]],78],[158,78],[224,78],[86,238],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[238,87],238],0,[[[532,[511]]],237],[[[513,[511]]],158],[[[532,[511]]],237],[[[513,[511]]],158],[546,11],[[],78],[[[513,[511]]],78],[158,78],[224,78],[86,238],[238,238],[56,533],[[237,224],158],[78,534],[[],513],[[],[[513,[542]]]],[[],513],[[],[[513,[536]]]],[[],513],[238,86],[[],87],[544,78],[544,78],[238,86],[238,[[22,[86]]]],[238,86],[238,86],[238,[[22,[86]]]],[238,86],[[],78],[224,78],[238,86],[544,78],[546,78],[544,78],0,[[[532,[511]]]],[[[513,[511]]]],[237,535],[[512,237],[[535,[512]]]],[[542,237],[[535,[512]]]],[[536,237],[[535,[536]]]],[158,535],[[512,158],[[535,[512]]]],[[542,158],[[535,[512]]]],[[536,158],[[535,[536]]]],[237],[[512,237],512],[[542,237],512],[[536,237],536],[158],[[512,158],512],[[542,158],512],[[536,158],536],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[],78],[[[532,[511]]],78],[[[513,[511]]],78],[237,78],[158,78],[[224,238]],[[224,238]],[[11,11],[[17,[540]]]],[[11,11],[[17,[540]]]],[[11,11],[[17,[540]]]],[[11,11],[[17,[540]]]],[11,[[17,[[513,[512]],540]]]],[11,[[17,[[513,[512]],540]]]],[[11,11],[[17,[[513,[512]],540]]]],[[11,11],[[17,[237,540]]]],[[11,11],[[17,[158,540]]]],[[11,11],[[17,[224,540]]]],[[238,238],[[22,[156]]]],[[[532,[511]],[532,[511]]],[[22,[156]]]],[[[513,[511]],[513,[511]]],[[22,[156]]]],[[533,533],[[22,[156]]]],[[237,237],[[22,[156]]]],[[158,158],[[22,[156]]]],[[541,541],[[22,[156]]]],[[224,224],[[22,[156]]]],[[546,546],[[22,[156]]]],[[534,534],[[22,[156]]]],[[[532,[511]]],[[532,[511]]]],[237,237],[544,544],[546,546],[[[532,[511]]],[[22,[[532,[511]]]]]],[237,[[22,[237]]]],0,[203],[203],[203],[203],[203],[81],[81],[81],[81],[[],78],[[[513,[511]]],78],[158,78],[224,78],[86,238],[[[532,[511]],[532,[511]]],238],[[[513,[511]],[513,[511]]],238],[[237,237],238],[[158,158],238],[[224,224],238],[535,22],[[238,238],238],[[[532,[511]],[532,[511]]],238],[[[532,[511]],238],[[532,[511]]]],[[[513,[511]],[513,[511]]],238],[[[513,[511]],533]],[[[513,[511]],534]],[[[513,[511]],512],[[513,[511]]]],[[[513,[511]],238],[[513,[511]]]],[[237,238],237],[[237,533]],[[237,237],238],[[237,534]],[[158,158],238],[[158,534]],[[158,238],158],[[158,512],158],[[158,533]],[[224,224],238],[[224,512],224],[[224,238],224],[[[532,[511]],238]],[[[513,[511]],238]],[[237,238]],[[158,238]],[[224,238]],[[[532,[511]]],[[532,[511]]]],[237,237],[544,544],[546,546],[[[532,[511]]],[[22,[[532,[511]]]]]],[237,[[22,[237]]]],[23,238],[23,238],[[[513,[511]]],224],[158,224],[[86,78],513],[[[513,[511]]],86],[158,86],[[[513,[511]]],86],[158,86],[86,513],[[[513,[511]]],86],[158,86],[86,[[535,[513]]]],[86,513],[[[513,[511]]],86],[158,86],[[86,78],[[535,[513]]]],[[[513,[511]]],78],[158,78],[[[513,[511]]],78],[158,78],[[[513,[511]]],78],[158,78],[[[532,[511]]],511],[[[513,[511]]],511],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[513,[511]]],62],[[[513,[511]]],62],[[[513,[511]],539,1],62],[238,[[17,[554,538]]]],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],62],[[],[[532,[542]]]],[[],[[532,[536]]]],[81],[81],[81],[81],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[12,[[17,[544]]]],[[],17],[[],17],[[],17],[12,[[17,[546]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[[535,[166]]],166],[512,87],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[237,544],549],[541,78],[541,78],[[[513,[511]]],78],[[],544],[[[532,[511]]],544],[[[513,[511]]],544],[237,544],[158,544],[86,238],[87,512],[87,[[22,[512]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[158,78],[[22,[158]]]],[[224,78],[[22,[224]]]],[78,22],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[158,78],[[22,[158]]]],[[224,78],[[22,[224]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[158,78],[[22,[158]]]],[[224,78],[[22,[224]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[532,[511]],78],[[22,[[532,[511]]]]]],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[237,78],[[22,[237]]]],[[158,78],[[22,[158]]]],[78,22],[[[513,[511]],78],[[22,[[513,[511]]]]]],[[158,78],[[22,[158]]]],[[224,78],[[22,[224]]]],[[[532,[511]],511],[[532,[511]]]],[[[513,[511]],511],[[513,[511]]]],[87,22],[[[532,[511]],87],[[22,[[532,[511]]]]]],[[[513,[511]],87],[[22,[[513,[511]]]]]],[[237,87],[[22,[237]]]],[[158,87],[[22,[158]]]],[[87,78,78,78,78,78],[[535,[513]]]],[[],87],[[[532,[511]]],87],[[[513,[511]]],87],[237,87],[158,87],[541,87],[[]],[[[532,[511]],[532,[511]]],[[22,[78]]]],[[[513,[511]],[513,[511]]],[[22,[78]]]],[[237,237],[[22,[78]]]],[[87,78,78],532],[[87,78,78],[[535,[532]]]],[[87,78],532],[[87,78],[[535,[532]]]],[[],238],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[559,559],[560,560],[561,561],[562,562],[563,563],[564,564],[557,557],[565,565],[551,551],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],565],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[559,559],1],[[560,560],1],[[561,561],1],[[562,562],1],[[563,563],1],[[564,564],1],[[557,557],1],[[565,565],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[559,45],[[17,[46]]]],[[560,45],[[17,[46]]]],[[561,45],[[17,[46]]]],[[562,45],[[17,[46]]]],[[563,45],[[17,[46]]]],[[564,45],[[17,[46]]]],[[557,45],[[17,[46]]]],[[565,45],[[17,[46]]]],[[551,45],[[17,[46]]]],[[[552,[[0,[23,147]]]],45],[[17,[46]]]],[[[552,[166]],45],[[17,[46]]]],[[45,[22,[237]],[22,[224]],22,[0,[23,147]]],[[17,[46]]]],[[45,[22,[237]],[22,[224]],22,564],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[559,199]],[[560,199]],[[561,199]],[[562,199]],[[563,199]],[[564,199]],[[557,199]],[[565,199]],0,0,[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,[[],565],[11,551],[[[22,[237]],[22,[224]],[0,[23,147]]],[[552,[[0,[23,147]]]]]],[[[22,[237]],[22,[224]],[0,[566,165]],[0,[23,147]]],[[552,[[0,[23,147]]]]]],[551,[[22,[564]]]],0,0,[[565,11,23],[[17,[540]]]],[[565,11,23],[[17,[11,540]]]],0,[[565,1],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,544],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],[[565,86],[[17,[540]]]],0,0,[565,[[17,[[513,[512]],540]]]],[[565,511],[[17,[[513,[511]],540]]]],[565,[[17,[512,540]]]],[565,[[17,[237,540]]]],[[565,87],[[17,[158,540]]]],[565,[[17,[224,540]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[11,11],[[17,[513,540]]]],[[],512],[237,[[535,[532]]]],[158,[[535,[513]]]],[[]],[237,532],[158,513],[[87,78,544],532],[[87,78,544],[[535,[532]]]],[237,535],[158,535],[237],[158],[[86,78],513],[86,513],[86,[[535,[513]]]],[86,513],[[86,78],[[535,[513]]]],[[87,78,78,78,78,78],[[535,[513]]]],[[87,78,78],532],[[87,78,78],[[535,[532]]]],[[87,78],532],[[87,78],[[535,[532]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[11,11],[[17,[513,540]]]],[[],78],[[],78],[[],512],[237,[[535,[532]]]],[158,[[535,[513]]]],[[]],[237,532],[158,513],[[],78],[[]],[[],541],[[87,78,544],532],[[87,78,544],[[535,[532]]]],[[],78],[[],78],[[],78],[[],78],[[],87],[[],78],[237,535],[158,535],[237],[158],[[],78],[[],78],[81],[[],78],[[86,78],513],[86,513],[86,[[535,[513]]]],[86,513],[[86,78],[[535,[513]]]],[81],[[],544],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[78,22],[87,22],[[87,78,78,78,78,78],[[535,[513]]]],[[],87],[[]],[[87,78,78],532],[[87,78,78],[[535,[532]]]],[[87,78],532],[[87,78],[[535,[532]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[[]],[[]],[[],[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,297]]]]]]]]]]]]]]]]]]]],[[]],[[],[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,297]]]]]]]]]]]]]]]]]]]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],0,0,0,0,[[]],0,0,0,0,0,[[],[[0,[138,[268,[[0,[138,[268,[[0,[138,[268,[[0,[138,[268,[[0,[138,268]]]]]]]]]]]]]]]]]]]],0,0,0,0,0,0,0,0,0,0,[567,567],[[]],[[]],[[567,567],567],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[73,[[22,[73]]]],[[]],[[]],[[],22],[[],22],[[],22],[[],22],[[],22],[[[0,[147,356,292]],44],[[22,[[0,[147,356,292]]]]]],[[],22],[[],22],[78,22],[78,22],[[],22],[[[180,[[180,[[180,[[180,[180]]]]]]]],[180,[[180,[[180,[[180,[180]]]]]]]],[180,[[180,[[180,[[180,[180]]]]]]]]],[[180,[[180,[[180,[[180,[180]]]]]]]]]],[[[180,[[180,[[180,[[180,[180]]]]]]]],[180,[[180,[[180,[[180,[180]]]]]]]]],[[180,[[180,[[180,[[180,[180]]]]]]]]]],[[[180,[[180,[[180,[[180,[180]]]]]]]],[180,[[180,[[180,[[180,[180]]]]]]]]],[[180,[[180,[[180,[[180,[180]]]]]]]]]],[[],568],[[]],[[]],[[]],[[],78],[[],78],[44],[44],[44],[44],[[]],[44],[44],[[]],[[]],[[]],[[]],0,[[]],[[569,45],[[17,[46]]]],[[570,45],[[17,[46]]]],[[570,45],[[17,[46]]]],[[]],[7,22],[[]],[[]],[[]],[[]],[55,22],[74,22],[266,22],[75,22],[87,22],[86,22],[84,22],[571,22],[[]],[[]],[[]],[[11,78],17],[259,22],[81,22],[78,22],[56,22],[12,22],[44,22],[[]],0,[[]],[[],44],[[],44],0,[[]],[[]],[[]],[[]],[[],1],[[],1],[[],1],[[],1],[[],1],[[[163,[[163,[[163,[[163,[163]]]]]]]]],1],[[],1],[[],1],[[],1],[[],1],[[],1],0,[[],78],[[],78],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],356],[[]],0,0,[[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,320]]]]]]]]]]]]]]]]]],44],[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,320]]]]]]]]]]]]]]]]]]]],[78],[[]],[[]],[87],0,[[]],[[]],[[]],[78],[78],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[78],[78],[567,567],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[22,[55]]]],[[],[[22,[74]]]],[[],[[22,[266]]]],[[],[[22,[75]]]],[[],[[22,[87]]]],[[],[[22,[86]]]],[[],[[22,[84]]]],[[],[[22,[571]]]],[[]],[[]],[[]],[[]],[[],62],[[],[[22,[259]]]],[[],[[22,[81]]]],[[],[[22,[78]]]],[[],[[22,[56]]]],[[],[[22,[12]]]],[[],[[22,[44]]]],[[],78],[[],78],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[78],[78],[[]],[[]],[[]],[[]],[[]],[78],[78],[[]],[[],572],[[]],0,0,0,[[]],[[]],[[]],[[]],0,0,0,0,[[]],[73,[[22,[73]]]],[7,22],[55,22],[74,22],[266,22],[75,22],[87,22],[86,22],[84,22],[571,22],[259,22],[81,22],[78,22],[56,22],[12,22],[44,22],[[],[[22,[55]]]],[[],[[22,[74]]]],[[],[[22,[266]]]],[[],[[22,[75]]]],[[],[[22,[87]]]],[[],[[22,[86]]]],[[],[[22,[84]]]],[[],[[22,[571]]]],[[],[[22,[259]]]],[[],[[22,[81]]]],[[],[[22,[78]]]],[[],[[22,[56]]]],[[],[[22,[12]]]],[[],[[22,[44]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[]],[[]],[[],[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,297]]]]]]]]]]]]]]]]]]]],[[]],[[],[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,[297,[[0,[138,297]]]]]]]]]]]]]]]]]]]],[[]],[[]],[[]],[[],[[0,[138,[268,[[0,[138,[268,[[0,[138,[268,[[0,[138,[268,[[0,[138,268]]]]]]]]]]]]]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],568],[[],568],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[87],[87],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[[[163,[[163,[[163,[[163,[163]]]]]]]]],1],[[],1],[[],356],[[]],[[]],[[]],[[],572],[[]],0,[[],78],[[],78],[[]],[[]],[[],78],[[],78],[78],[[]],[78],[78],[78],[78],[[]],[[]],[[]],[[],78],[[],78],[78],[78],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,[[],22],[[],22],[[],22],[[],22],[[],22],[78,22],[78,22],[[],22],0,0,[[],22],[[],22],[[]],[[]],0,0,[[]],0,0,0,[[]],[[]],0,0,0,[[]],[[]],[[]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,[[]],[[]],[[]],[78],[78],[[]],0,0,[[[0,[147,356,292]],44],[[22,[[0,[147,356,292]]]]]],[[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,320]]]]]]]]]]]]]]]]]],44],[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,[320,[[0,[147,356,320]]]]]]]]]]]]]]]]]]]],[[]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],1],[[],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[87],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[567,567],[[]],[[567,567],567],[[]],[[],1],[[],1],[567,567],[[]],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],573],[[],574],[[],575],[[],576],[44],[44],[44],[44],[44],[44],[44],[44],[44],[574],[44],[44],[44],[[573,45],[[17,[46]]]],[[574,45],[[17,[46]]]],[[575,45],[[17,[46]]]],[[576,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[573,22],[574,22],[575,[[22,[577]]]],[576,[[22,[1]]]],[[573,201]],[[574,201]],[[575,201],577],[[576,201],1],[[573,201],17],[[574,201],17],[[575,201],[[17,[577]]]],[[576,201],[[17,[1]]]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[],573],[[],574],[[],575],[[],576],[573,17],[[574,[39,[38]]],[[17,[[39,[38]]]]]],[[575,577],17],[[576,1],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,[2],[[]],[[]],[[]],[[]],[[[578,[147]]],[[578,[147]]]],[[[578,[147]],[578,[147]]]],[[]],[[],578],[[],[[579,[159]]]],[44],[[[579,[201]]]],[44],[44],[44],[[[579,[201]]]],[44],[44],[[[578,[[163,[[163,[[163,[163]]]]]]]],[578,[[163,[[163,[[163,[163]]]]]]]]],1],[[],1],[[],1],[[],1],[[],1],[[[578,[166]],45],[[17,[46]]]],[[[579,[166]],45],[[17,[46]]]],[[[579,[201]]]],[[[579,[201]]]],[[],578],[168],[[]],[[]],[578,22],[[[579,[201]]],22],[578,22],[[[579,[201]]],22],[[578,201]],[[578,201],17],[578],[[],44],[[],44],[[]],[[]],[578,22],[579,17],[[],578],[[],579],[578,17],[578,22],[[]],[[],17],[[],17],[578,17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],[578],[[],578],0,0,[2],[[]],[[]],[[]],[[]],[[[580,[147]]],[[580,[147]]]],[[[580,[147]],[580,[147]]]],[[]],[[],580],[[],[[581,[159]]]],[44],[[[581,[201]]]],[44],[44],[[[581,[201]]]],[44],[44],[44],[[[580,[[163,[[163,[[163,[163]]]]]]]],[580,[[163,[[163,[[163,[163]]]]]]]]],1],[[],1],[[],1],[[],1],[[],1],[[[580,[166]],45],[[17,[46]]]],[[[581,[166]],45],[[17,[46]]]],[[[581,[201]]]],[[[581,[201]]]],[[]],[[],580],[168],[[]],[580,22],[[[581,[201]]],22],[580,22],[[[581,[201]]],22],[[580,201]],[[580,201],17],[[],44],[[],44],[[]],[[]],[580,22],[581,17],[[],580],[[],581],[580,17],[580,22],[[]],[[],17],[[],17],[580,17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],[[],580],0,0,0,0,0,0,0,0,0,0,0,[2],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[582,582],[[[0,[25,68]]],[[42,[67,38]]]],[[583,[0,[25,68]]],[[42,[67,38]]]],[[[582,[584]]],[[17,[583,585]]]],[[[582,[584]]],[[17,[585]]]],[[[582,[586]],[0,[25,68]],201],[[17,[585]]]],[587,587],[[]],0,[[],44],[583,44],[583,[[22,[1]]]],[[],[[22,[44]]]],[583,[[22,[44]]]],[[],[[582,[586]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[585,11],[44],[44],[44],[44],[44],[583],[44],[44],[44],[44],[[587,587],1],[[],1],[[],1],[[],1],[[],1],[[582,[0,[25,67,68]]],582],[[588,45],[[17,[46]]]],[[589,45],[[17,[46]]]],[[590,45],[[17,[46]]]],[[591,45],[[17,[46]]]],[[583,45],[[17,[46]]]],[[582,45],[[17,[46]]]],[[587,45],[[17,[46]]]],[[585,45],[[17,[46]]]],[[585,45],[[17,[46]]]],[[592,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[201],[[583,201]],[201],[[583,201]],[588,44],[589,44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[583,[0,[201,67]]],67],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[[0,[201,67]],[0,[201,67]]]],[[583,[0,[201,67]],[0,[201,67]]]],[[[0,[201,67]],[0,[201,67]]]],[[],44],[592,1],[589,[[22,[11]]]],[593,[[17,[583,[39,[141,38]]]]]],[[],[[582,[586]]]],[588,44],[[582,44],582],0,[[582,[0,[25,67,68]]],582],0,[203],0,0,0,[589],[[[0,[201,67]]],67],[[583,[0,[201,67]]],67],[[[0,[201,67]]],67],[[583,[0,[201,67]]],67],0,[585,[[22,[141]]]],[[[0,[201,67]]]],[[590,[0,[201,67]]]],[[583,[0,[201,67]]]],[[[0,[25,67,68]]]],[[590,[0,[25,67,68]]]],[[591,[0,[25,67,68]]]],[[583,[0,[25,67,68]]]],[[[0,[201,67]]]],[[591,[0,[201,67]]]],[[583,[0,[201,67]]]],[[582,27],[[582,[[594,[27]]]]]],[589,[[22,[44]]]],[[582,44],582],[[582,[0,[25,67,68]]],582],0,0,[[582,27],582],[[]],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[22,[587]]]],[583,[[22,[587]]]],[[],[[22,[587]]]],[583,[[22,[587]]]],0,[2],[[]],[[]],[[[595,[[0,[147,67]]]]],[[595,[[0,[147,67]]]]]],[[]],[44],[44],[[[595,[67]],596]],[[[595,[67]],597]],[44],[[[595,[[0,[166,67]]]],45],[[17,[46]]]],[[]],[[],44],[[]],[[]],[[[595,[67]]],44],[[[595,[67]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],106],[[]],[[[595,[67]],598]],0,0,0,0,0,0,0,0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[599,[[0,[147,155,67]]]]],[[599,[[0,[147,155,67]]]]]],[[[600,[[0,[155,68]]]]],[[600,[[0,[155,68]]]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[[[599,[[0,[155,67]]]],596]],[[[600,[[0,[155,68]]]],596]],[[[601,[[0,[155,67]]]],596]],[[[599,[[0,[155,67]]]],597]],[[[600,[[0,[155,68]]]],597]],[[[601,[[0,[155,67]]]],597]],[44],[44],[[[601,[[0,[155,67]]]]]],[44],[[[599,[[0,[166,155,67]]]],45],[[17,[46]]]],[[[600,[[0,[166,155,68]]]],45],[[17,[46]]]],[[[601,[[0,[166,155,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[599,[[0,[155,67]]]]],44],[[[600,[[0,[155,68]]]]],44],[[[601,[[0,[155,67]]]]],44],[[[599,[[0,[155,67]]]]],[[22,[44]]]],[[[600,[[0,[155,68]]]]],[[22,[44]]]],[[[601,[[0,[155,67]]]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[[599,[[0,[155,67]]]],598]],[[[600,[[0,[155,68]]]],598]],[[[601,[[0,[155,67]]]],598]],0,0,0,[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[602,[[0,[155,68]],68]]],[[602,[[0,[155,68]],68]]]],[[]],[44],[44],[44],[44],[44],[44],[[[603,[[0,[155,67]],67]],597]],[[[602,[[0,[155,68]],68]],597]],[[[604,[[0,[155,68]],67]],597]],[44],[44],[44],[[[603,[[0,[166,155,67]],[0,[166,67]]]],45],[[17,[46]]]],[[[602,[[0,[166,155,68]],[0,[166,68]]]],45],[[17,[46]]]],[[[604,[[0,[166,155,68]],[0,[166,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[603,[[0,[155,67]],67]]],[[22,[44]]]],[[[602,[[0,[155,68]],68]]],[[22,[44]]]],[[[604,[[0,[155,68]],67]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],0,0,[2],[[]],[[]],[[]],[[]],[[[605,[[0,[155,68]]]]],[[605,[[0,[155,68]]]]]],[[]],[44],[44],[44],[44],[[[606,[[0,[155,67]]]],597]],[[[605,[[0,[155,68]]]],597]],[44],[44],[[[606,[[0,[166,155,67]]]],45],[[17,[46]]]],[[[605,[[0,[166,155,68]]]],45],[[17,[46]]]],[[]],[[]],[[],44],[[],44],[[]],[[]],[[]],[[]],[[[606,[[0,[155,67]]]]],[[22,[44]]]],[[[605,[[0,[155,68]]]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,0,0,0,[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[607,[[0,[198,254,68]],68]]],[[607,[[0,[198,254,68]],68]]]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[[[608,[[0,[198,254,67]],67]],597]],[[[607,[[0,[198,254,68]],68]],597]],[[[609,[[0,[198,254,68]],67]],597]],[[[610,[[0,[198,254,67]],67]],597]],[44],[44],[44],[44],[[[608,[[0,[166,198,254,67]],[0,[166,67]]]],45],[[17,[46]]]],[[[607,[[0,[166,198,254,68]],[0,[166,68]]]],45],[[17,[46]]]],[[[609,[[0,[166,198,254,68]],[0,[166,67]]]],45],[[17,[46]]]],[[[610,[[0,[166,198,254,67]],[0,[166,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[608,[[0,[198,254,67]],67]]],[[22,[44]]]],[[[607,[[0,[198,254,68]],68]]],[[22,[44]]]],[[[609,[[0,[198,254,68]],67]]],[[22,[44]]]],[[[610,[[0,[198,254,67]],67]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,0,[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[611,[[0,[198,254,68]]]]],[[611,[[0,[198,254,68]]]]]],[[]],[44],[44],[44],[44],[44],[44],[[[612,[[0,[198,254,67]]]],597]],[[[611,[[0,[198,254,68]]]],597]],[[[613,[[0,[198,254,67]]]],597]],[44],[44],[44],[[[612,[[0,[166,198,254,67]]]],45],[[17,[46]]]],[[[611,[[0,[166,198,254,68]]]],45],[[17,[46]]]],[[[613,[[0,[166,198,254,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[612,[[0,[198,254,67]]]]],[[22,[44]]]],[[[611,[[0,[198,254,68]]]]],[[22,[44]]]],[[[613,[[0,[198,254,67]]]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[614,[[0,[147,67]]]]],[[614,[[0,[147,67]]]]]],[[[615,[68]]],[[615,[68]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[[[614,[67]],597]],[[[615,[68]],597]],[[[616,[67]],597]],[44],[44],[44],[[[614,[[0,[166,67]]]],45],[[17,[46]]]],[[[615,[[0,[166,68]]]],45],[[17,[46]]]],[[[616,[[0,[166,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[614,[67]]],[[22,[44]]]],[[[615,[68]]],[[22,[44]]]],[[[616,[67]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],0,0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[617,[[0,[147,67]]]]],[[617,[[0,[147,67]]]]]],[[[618,[68]]],[[618,[68]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[[[617,[67]],596]],[[[618,[68]],596]],[[[619,[67]],596]],[[[620,[67]],596]],[[[617,[67]],597]],[[[618,[68]],597]],[[[619,[67]],597]],[[[620,[67]],597]],[44],[44],[44],[44],[[[620,[67]]]],[[[617,[[0,[166,67]]]],45],[[17,[46]]]],[[[618,[[0,[166,68]]]],45],[[17,[46]]]],[[[619,[[0,[166,67]]]],45],[[17,[46]]]],[[[620,[[0,[166,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[617,[67]]],44],[[[618,[68]]],44],[[[619,[67]]],44],[[[620,[67]]],44],[[[617,[67]]],[[22,[44]]]],[[[618,[68]]],[[22,[44]]]],[[[619,[67]]],[[22,[44]]]],[[[620,[67]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[[617,[67]],598]],[[[618,[68]],598]],[[[619,[67]],598]],[[[620,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[105,[23,23]],27],1],[[[0,[25,68,67]]],1],[[[105,[23,23]],27],1],[[[0,[25,68,67]]],1],[[[105,[[621,[170]],[621,[170]]]]],170],[[[105,[621,621]]]],[[[105,[[621,[175]],[621,[175]]]]],175],[[[105,[[621,[13]],[621,[13]]]]],13],[[[105,[[621,[173]],[621,[173]]]]],173],[[[105,[[621,[11]],[621,[11]]]]],11],[105,105],[[[202,[105]]],[[105,[202,202]]]],[[[202,[105]]],[[105,[202,202]]]],[[[105,[[51,[173]],[51,[173]]]]],173],[[[105,[[51,[13]],[51,[13]]]]],13],[[[105,[[51,[170]],[51,[170]]]]],170],[[[105,[[51,[11]],[51,[11]]]]],11],[[[105,[[51,[175]],[51,[175]]]]],175],[[[105,[51,51]]]],[105,105],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[105,[141,141]]],[[22,[141]]]],[50,622],[44,623],[[[105,[147,147]]],[[105,[147,147]]]],[[[624,[67]]],[[624,[67]]]],[[[622,[[0,[147,89]],[0,[147,89]]]]],[[622,[[0,[147,89]],[0,[147,89]]]]]],[[[623,[[0,[147,90]]]]],[[623,[[0,[147,90]]]]]],[[[625,[[0,[147,89]]]]],[[625,[[0,[147,89]]]]]],[[[626,[[0,[147,89]]]]],[[626,[[0,[147,89]]]]]],[[[627,[[0,[147,90]]]]],[[627,[[0,[147,90]]]]]],[[[628,[[0,[147,89]],147]]],[[628,[[0,[147,89]],147]]]],[[[629,[[0,[147,89]],147]]],[[629,[[0,[147,89]],147]]]],[[[630,[[0,[147,89]],147]]],[[630,[[0,[147,89]],147]]]],[[[631,[[0,[147,89]],147]]],[[631,[[0,[147,89]],147]]]],[[[632,[[0,[147,89]]]]],[[632,[[0,[147,89]]]]]],[[[633,[[0,[147,89]]]]],[[633,[[0,[147,89]]]]]],[[[634,[147,147,147]]],[[634,[147,147,147]]]],[[[635,[147,147,147]]],[[635,[147,147,147]]]],[[[636,[[0,[147,90]],147,147]]],[[636,[[0,[147,90]],147,147]]]],[[[637,[[0,[147,90]],147,147]]],[[637,[[0,[147,90]],147,147]]]],[[[638,[[0,[147,89]],147]]],[[638,[[0,[147,89]],147]]]],[[[639,[[0,[147,90]],[0,[147,90]]]]],[[639,[[0,[147,90]],[0,[147,90]]]]]],[[[640,[[0,[147,90]],[0,[147,90]]]]],[[640,[[0,[147,90]],[0,[147,90]]]]]],[[[641,[[0,[147,89]]]]],[[641,[[0,[147,89]]]]]],[[[642,[[0,[147,90]]]]],[[642,[[0,[147,90]]]]]],[[[643,[[0,[147,90]]]]],[[643,[[0,[147,90]]]]]],[[[644,[[0,[147,89]],147]]],[[644,[[0,[147,89]],147]]]],[[[645,[[0,[147,89]],147,147]]],[[645,[[0,[147,89]],147,147]]]],[[[646,[[0,[147,89]],147,147]]],[[646,[[0,[147,89]],147,147]]]],[[[647,[147]]],[[647,[147]]]],[[[648,[[0,[147,67]]]]],[[648,[[0,[147,67]]]]]],[[[649,[[0,[147,89]]]]],[[649,[[0,[147,89]]]]]],[[[344,[147]]],[[344,[147]]]],[[[650,[[0,[147,90]],147]]],[[650,[[0,[147,90]],147]]]],[[[651,[[0,[147,147,67]]]]],[[651,[[0,[147,147,67]]]]]],[[[652,[[0,[147,147,67]]]]],[[652,[[0,[147,147,67]]]]]],[[[653,[[0,[147,90]]]]],[[653,[[0,[147,90]]]]]],[[[654,[147]]],[[654,[147]]]],[[[655,[[0,[147,89]]]]],[[655,[[0,[147,89]]]]]],[[[656,[[0,[147,89]],147]]],[[656,[[0,[147,89]],147]]]],[[[657,[147,147]]],[[657,[147,147]]]],[[[658,[[0,[147,90]]]]],[[658,[[0,[147,90]]]]]],[[[659,[147]]],[[659,[147]]]],[[[660,[[0,[147,89]]]]],[[660,[[0,[147,89]]]]]],[[[661,[[0,[147,89]],147]]],[[661,[[0,[147,89]],147]]]],[[[662,[147,147,147,147]]],[[662,[147,147,147,147]]]],[[[664,[147,[0,[147,663]],147]]],[[664,[147,[0,[147,663]],147]]]],[[[665,[[0,[147,89]],147]]],[[665,[[0,[147,89]],147]]]],[[[666,[[0,[147,89]]]]],[[666,[[0,[147,89]]]]]],[[[667,[[0,[147,90]],[0,[147,90]]]]],[[667,[[0,[147,90]],[0,[147,90]]]]]],[[[668,[[0,[147,90]],[0,[147,90]]]]],[[668,[[0,[147,90]],[0,[147,90]]]]]],[[[105,[147,147]],[105,[147,147]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[89,[[625,[89]]]],[[[105,[155,155]],[105,[155,155]]],156],[50,156],[[[105,[23,23]]],162],[[],669],[[[42,[38]]]],[[],156],[[[105,[670,670]],44]],[89,[[626,[89]]]],[[[105,[23,23]]],44],[[],44],[[[105,[671,671]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[105,[377,377]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[105,[141,141]]],11],[596],[[[105,[90,90]],596]],[[[624,[67]],596]],[[[622,[90,90]],596]],[[[623,[90]],596]],[[[625,[90]],596]],[[[626,[90]],596]],[[[627,[90]],596]],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]],596]],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]],596]],[[[638,[90,[0,[25,68,67]]]],596]],[[[639,[90,90]],596]],[[[640,[90,90]],596]],[[[641,[90]],596]],[[[642,[90]],596]],[[[643,[90]],596]],[[[644,[90,[0,[25,68,67]]]],596]],[[[645,[90,[0,[67,147]],[0,[25,68,67]]]],596]],[[[646,[90,[0,[25,68,67]],[0,[25,68,67]]]],596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[647,596]],[[[648,[67]],596]],[[[649,[90]],596]],[[[652,[[0,[147,67]]]],596]],[[[653,[90]],596]],[[[654,[90]],596]],[[[658,[90]],596]],[[[659,[90]],596]],[[[665,[90,[0,[25,67,68]]]],596]],[[[667,[90,90]],596]],[[[668,[90,90]],596]],[597],[[[105,[89,89]],597]],[[[624,[67]],597]],[[[622,[89,89]],597]],[[[623,[90]],[596,[[42,[38]]]]]],[[[625,[89]],597]],[[[626,[89]],597]],[[[627,[90]],597]],[[[628,[89,[0,[25,68,67]]]],597]],[[[629,[89,[0,[25,68,67]]]],597]],[[[630,[89,[0,[25,68,67]]]],597]],[[[631,[89,[0,[25,68,67]]]],597]],[[[632,[89]],597]],[[[633,[89]],597]],[[[634,[89,[0,[25,68,67]],[0,[25,68,67]]]],597]],[[[635,[89,[0,[67,147]],[0,[25,68,67]]]],597]],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]],[596,[67]]]],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]],[596,[[0,[67,147]]]]]],[[[638,[89,[0,[25,68,67]]]],597]],[[[639,[90,90]],596]],[[[640,[90,90]],596]],[[[641,[89]],597]],[[[642,[90]],597]],[[[643,[90]],597]],[[[644,[89,[0,[25,68,67]]]],597]],[[[645,[89,[0,[67,147]],[0,[25,68,67]]]],597]],[[[646,[89,[0,[25,68,67]],[0,[25,68,67]]]],597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[647,597]],[[[648,[67]],597]],[[[649,[89]],597]],[[[344,[[0,[23,67]]]],597]],[[[650,[90,[0,[25,68,67]]]],597]],[[[651,[[0,[147,67]]]],597]],[[[652,[[0,[147,67]]]],597]],[[[653,[90]],597]],[[[654,[90]],597]],[[[655,[89]],597]],[[[656,[89,[0,[25,68,67]]]],597]],[[[657,[67,[0,[25,68,67]]]],597]],[[[658,[90]],597]],[[[659,[90]],597]],[[[660,[89]],597]],[[[661,[89,[0,[25,68,67]]]],597]],[[[662,[89,[0,[663,67]],[0,[25,68,67]],[0,[25,68,67]]]],597]],[[[664,[89,[0,[663,67]],[0,[25,68,67]]]],597]],[[[665,[89,[0,[25,67,68]]]],597]],[[[666,[89]],597]],[[[667,[90,90]],597]],[[[668,[90,90]],597]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[105,201,201]],[[[105,[200,200]]]],[[105,201,201]],[[],[[624,[67]]]],[[],[[162,[161]]]],[[],[[162,[161]]]],[[],627],[[[105,[[163,[[163,[[163,[163]]]]]],[163,[[163,[[163,[163]]]]]]]],[105,[[163,[[163,[[163,[163]]]]]],[163,[[163,[[163,[163]]]]]]]]],1],[50,1],[[],1],[[],1],[[],1],[[],1],[672,[[17,[246]]]],[[[105,[166]],11]],[[[105,[166]],11]],[[[105,[325,325]],49]],[[[105,[17,17]]],[[17,[105]]]],[105],[[[105,[22,22]]],[[22,[105]]]],[[[105,[17,17]]],[[17,[105]]]],[105],[[[105,[670,670]]],[[17,[[13,[12]],246]]]],[[[0,[25,68,67]]],[[628,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[629,[[0,[25,68,67]]]]]],[[[105,[23,23]],27],22],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],22],[[[105,[23,23]],27],22],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[630,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[631,[[0,[25,68,67]]]]]],[[],632],[[],633],[105,105],[[[105,[392,392]]],[[17,[246]]]],[[[105,[166,166]],45],[[17,[46]]]],[[[105,[165,165]],45],[[17,[46]]]],[[[624,[67]],45],[[17,[46]]]],[[[622,[[0,[166,89]],[0,[166,89]]]],45],[[17,[46]]]],[[[623,[[0,[166,90]]]],45],[[17,[46]]]],[[[625,[[0,[166,89]]]],45],[[17,[46]]]],[[[626,[[0,[166,89]]]],45],[[17,[46]]]],[[[627,[[0,[166,90]]]],45],[[17,[46]]]],[[[628,[[0,[89,166]]]],45],[[17,[46]]]],[[[629,[[0,[89,166]]]],45],[[17,[46]]]],[[[630,[[0,[89,166]]]],45],[[17,[46]]]],[[[631,[[0,[89,166]]]],45],[[17,[46]]]],[[[632,[[0,[166,89]]]],45],[[17,[46]]]],[[[633,[[0,[166,89]]]],45],[[17,[46]]]],[[[634,[[0,[89,166]]]],45],[[17,[46]]]],[[[635,[[0,[89,166]],166]],45],[[17,[46]]]],[[[636,[[0,[90,166]]]],45],[[17,[46]]]],[[[637,[[0,[90,166]],166]],45],[[17,[46]]]],[[[638,[[0,[89,166]]]],45],[[17,[46]]]],[[[639,[[0,[166,90]],[0,[166,90]]]],45],[[17,[46]]]],[[[640,[[0,[166,90]],[0,[166,90]]]],45],[[17,[46]]]],[[[641,[[0,[166,89]]]],45],[[17,[46]]]],[[[642,[[0,[166,90]]]],45],[[17,[46]]]],[[[643,[[0,[166,90]]]],45],[[17,[46]]]],[[[644,[[0,[89,166]]]],45],[[17,[46]]]],[[[645,[[0,[89,166]],166]],45],[[17,[46]]]],[[[646,[[0,[89,166]]]],45],[[17,[46]]]],[[[647,[166]],45],[[17,[46]]]],[[[648,[[0,[166,67]]]],45],[[17,[46]]]],[[[649,[[0,[166,89]]]],45],[[17,[46]]]],[[[344,[166]],45],[[17,[46]]]],[[[650,[[0,[90,166]]]],45],[[17,[46]]]],[[[651,[[0,[166,147,67]]]],45],[[17,[46]]]],[[[652,[[0,[166,147,67]]]],45],[[17,[46]]]],[[[653,[[0,[166,90]]]],45],[[17,[46]]]],[[[654,[166]],45],[[17,[46]]]],[[[655,[[0,[166,89]]]],45],[[17,[46]]]],[[[656,[[0,[89,166]]]],45],[[17,[46]]]],[[[657,[166]],45],[[17,[46]]]],[[[658,[[0,[166,90]]]],45],[[17,[46]]]],[[[659,[166]],45],[[17,[46]]]],[[[660,[[0,[166,89]]]],45],[[17,[46]]]],[[[661,[[0,[89,166]]]],45],[[17,[46]]]],[[[662,[[0,[89,166]]]],45],[[17,[46]]]],[[[664,[[0,[89,166]],663]],45],[[17,[46]]]],[[[665,[[0,[89,166]]]],45],[[17,[46]]]],[[[666,[[0,[166,89]]]],45],[[17,[46]]]],[[[667,[[0,[166,90]],[0,[166,90]]]],45],[[17,[46]]]],[[[668,[[0,[166,90]],[0,[166,90]]]],45],[[17,[46]]]],[[[105,[23,23]],27]],[[[0,[25,68,67]],[0,[25,68,67]]],[[634,[[0,[25,68,67]],[0,[25,68,67]]]]]],[[44,[0,[25,67,68]],[0,[25,67,68]]],[[636,[[0,[25,67,68]],[0,[25,67,68]]]]]],[[44,[0,[67,147]],[0,[25,67,68]]],[[637,[[0,[67,147]],[0,[25,67,68]]]]]],[[[0,[67,147]],[0,[25,68,67]]],[[635,[[0,[67,147]],[0,[25,68,67]]]]]],[[[105,[23,23]],27]],[[[0,[25,68,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[67,147]],[0,[25,68,67]]]],[[]],[17,105],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[50],[50,1],[50,1],[[[105,[198,198]],199]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[[0,[25,68,67]]],[[638,[[0,[25,68,67]]]]]],[50,639],[50,640],[[],641],[[]],[105,17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[105],[[[105,[49,49]]],105],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[105,1],[105,1],[[[105,[23,23]]],22],[50,1],[105,22],[[105,201],105],[105],[[[105,[159]]],159],[[105,201]],[[],44],[[[105,[69,69]]],44],[[[105,[90,90]]],44],[[[624,[67]]],44],[[[622,[90,90]]],44],[[[623,[90]]],44],[[[625,[90]]],44],[[[626,[90]]],44],[[[627,[90]]],44],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]]],44],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]]],44],[[[638,[90,[0,[25,68,67]]]]],44],[[[639,[90,90]]],44],[[[640,[90,90]]],44],[[[641,[90]]],44],[[[642,[90]]],44],[[[643,[90]]],44],[[[644,[90,[0,[25,68,67]]]]],44],[[[645,[90,[0,[67,147]],[0,[25,68,67]]]]],44],[[[646,[90,[0,[25,68,67]],[0,[25,68,67]]]]],44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[647,44],[[[648,[67]]],44],[[[649,[90]]],44],[[[652,[[0,[147,67]]]]],44],[[[653,[90]]],44],[[[654,[90]]],44],[[[658,[90]]],44],[[[659,[90]]],44],[[[665,[90,[0,[25,67,68]]]]],44],[[[667,[90,90]]],44],[[[668,[90,90]]],44],[50,1],[[105,201],105],[[[0,[25,68,67]]],[[644,[[0,[25,68,67]]]]]],[[105,201,201],105],[[105,201,201],105],[[[0,[25,68,67]],[0,[25,68,67]]],[[646,[[0,[25,68,67]],[0,[25,68,67]]]]]],[[105,201],105],[[105,201],105],[[[0,[67,147]],[0,[25,68,67]]],[[645,[[0,[67,147]],[0,[25,68,67]]]]]],[[],22],[[[0,[68,67,25]]],22],[[[0,[68,67,25]]],22],[[],22],[[[0,[68,67,25]]],22],[[[0,[68,67,25]]],22],[50,1],[[[105,[23,23]]],22],[[[105,[43,43]]],22],[[[105,[23,23]],44],22],[67,[[648,[67]]]],[[[105,[89,89]]],[[22,[44]]]],[[[624,[67]]],[[22,[44]]]],[[],[[22,[44]]]],[[[622,[89,89]]],[[22,[44]]]],[[[623,[90]]],[[22,[44]]]],[[[625,[89]]],[[22,[44]]]],[[[626,[89]]],[[22,[44]]]],[[[627,[90]]],[[22,[44]]]],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]]],[[22,[44]]]],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]]],[[22,[44]]]],[[[638,[89,[0,[25,68,67]]]]],[[22,[44]]]],[[[639,[90,90]]],[[22,[44]]]],[[[640,[90,90]]],[[22,[44]]]],[[[641,[89]]],[[22,[44]]]],[[[642,[90]]],[[22,[44]]]],[[[643,[90]]],[[22,[44]]]],[[[644,[89,[0,[25,68,67]]]]],[[22,[44]]]],[[[645,[89,[0,[67,147]],[0,[25,68,67]]]]],[[22,[44]]]],[[[646,[89,[0,[25,68,67]],[0,[25,68,67]]]]],[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[647,[[22,[44]]]],[[[648,[67]]],[[22,[44]]]],[[[649,[89]]],[[22,[44]]]],[[[652,[[0,[147,67]]]]],[[22,[44]]]],[[[653,[90]]],[[22,[44]]]],[[[654,[90]]],[[22,[44]]]],[[[658,[90]]],[[22,[44]]]],[[[659,[90]]],[[22,[44]]]],[[[665,[89,[0,[25,67,68]]]]],[[22,[44]]]],[[[667,[90,90]]],[[22,[44]]]],[[[668,[90,90]]],[[22,[44]]]],[[],649],[[],344],[[]],[673],[50],[[[105,[[674,[67]],[674,[67]]]],50]],[[]],[[]],[[[105,[[180,[[180,[[180,[180]]]]]],[180,[[180,[[180,[180]]]]]]]],[105,[[180,[[180,[[180,[180]]]]]],[180,[[180,[[180,[180]]]]]]]]],[[22,[156]]]],[50,[[22,[156]]]],[[[105,[23,23]],27]],[[[0,[25,68,67]]]],[[[0,[25,68,67]]]],0,[[[202,[[105,[422,422]]]],402],403],[[[105,[23,23]],27],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[650,[[0,[25,68,67]]]]]],[[],[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,675]]]]]]]]]]]]]]]]]]]],[203],[672,[[17,[246]]]],[[[105,[383,383]],[13,[12]]],[[17,[44,246]]]],[[[105,[383,383]],[13,[12]]],[[17,[246]]]],[[[105,[670,670]],62],[[17,[44,246]]]],[[[105,[383,383]],[42,[12,38]]],[[17,[44,246]]]],[[[105,[383,383]],62],[[17,[44,246]]]],[[[105,[670,670]],12,[42,[12,38]]],[[17,[44,246]]]],[[],[[17,[676,246]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[25,68,67]]],22],[[[0,[147,67]]],[[651,[[0,[147,67]]]]]],[[[0,[147,67]],44],[[652,[[0,[147,67]]]]]],[[],653],[[[105,[43,43]],27],22],[[[105,[43,43]],27]],[105,22],[[105,201],105],[105],[[[105,[159]]],159],[[105,201]],[[[105,[384,384]],677],[[17,[56,246]]]],[[[105,[23,23]]]],[44,654],[44,655],[[[0,[25,68,67]]],[[656,[[0,[25,68,67]]]]]],[[[105,[141,141]]],[[22,[141]]]],[[67,[0,[25,68]]],[[657,[67,[0,[25,68]]]]]],[44,658],[[],[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,354]]]]]]]]]]]]]]]]]]]],[201,[[17,[246]]]],[44,659],[[[651,[[0,[147,67]]]],44],[[652,[[0,[147,67]]]]]],[44,660],[[[0,[25,68,67]]],[[661,[[0,[25,68,67]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[[0,[25,68,67]],[0,[25,68,67]]],[[662,[[0,[663,67]],[0,[25,68,67]],[0,[25,68,67]]]]]],[[[0,[147,67]],[0,[25,68,67]]],[[664,[[0,[663,67]],[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[67,147]],[0,[25,68,67]]],[[0,[663,67]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[202,402],403],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[25,68,67]]],22],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[[105,[166]]]],[[[105,[166]]]],[89],[[90,[42,[67,38]],[42,[67,38]]]],[[[0,[25,68,67]]],[[665,[[0,[25,68,67]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[89,[[666,[89]]]],[44,643],[44,642],[598],[[[105,[90,90]],598]],[[[624,[67]],598]],[[[622,[90,90]],598]],[[[623,[90]],598]],[[[625,[90]],598]],[[[626,[90]],598]],[[[627,[90]],598]],[[[636,[90,[0,[25,67,68]],[0,[25,67,68]]]],598]],[[[637,[90,[0,[67,147]],[0,[25,67,68]]]],598]],[[[638,[90,[0,[25,68,67]]]],598]],[[[639,[90,90]],598]],[[[640,[90,90]],598]],[[[641,[90]],598]],[[[642,[90]],598]],[[[643,[90]],598]],[[[644,[90,[0,[25,68,67]]]],598]],[[[645,[90,[0,[67,147]],[0,[25,68,67]]]],598]],[[[646,[90,[0,[25,68,67]],[0,[25,68,67]]]],598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[647,598]],[[[648,[67]],598]],[[[649,[90]],598]],[[[652,[[0,[147,67]]]],598]],[[[653,[90]],598]],[[[654,[90]],598]],[[[658,[90]],598]],[[[659,[90]],598]],[[[665,[90,[0,[25,67,68]]]],598]],[[[667,[90,90]],598]],[[[668,[90,90]],598]],[[[105,[392,392]],[13,[12]]],[[17,[44,246]]]],[[[105,[392,392]],[13,[12]]],[[17,[246]]]],[[[105,[392,392]],678],[[17,[246]]]],[676,[[17,[44,246]]]],[50,667],[[[651,[[0,[147,67]]]],50],[[667,[[652,[[0,[147,67]]]]]]]],[50,668],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[90,596]],[[44,679,596]],[[680,597]],[679],[[]],[[]],[49],[681,681],[681,681],[[],1],[[],1],[[]],[[]],[[],44],[[],44],[[]],[[]],[44],[44],[[]],[[]],0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[682,[[0,[147,67]]]]],[[682,[[0,[147,67]]]]]],[[[683,[68]]],[[683,[68]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[[[682,[67]],596]],[[[683,[68]],596]],[[[684,[67]],596]],[[[682,[67]],597]],[[[683,[68]],597]],[[[684,[67]],597]],[44],[44],[44],[[[682,[[0,[166,67]]]],45],[[17,[46]]]],[[[683,[[0,[166,68]]]],45],[[17,[46]]]],[[[684,[[0,[166,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[682,[67]]],44],[[[683,[68]]],44],[[[684,[67]]],44],[[[682,[67]]],[[22,[44]]]],[[[683,[68]]],[[22,[44]]]],[[[684,[67]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[[682,[67]],598]],[[[683,[68]],598]],[[[684,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[0,[25,68,67]]],1],[[[0,[25,68,67]]],1],[[],13],[[],13],[[],11],[50,622],[44,623],[89,[[625,[89]]]],[50,156],[[],669],[[[42,[38]]]],[89,[[626,[89]]]],[[],44],[596],[597],[[],627],[50,1],[[[0,[25,68,67]]],[[628,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[629,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],22],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[22,[67]]]],[[[0,[25,68,67]]],[[630,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[631,[[0,[25,68,67]]]]]],[[],632],[[],633],[[[0,[25,68,67]],[0,[25,68,67]]],[[634,[[0,[25,68,67]],[0,[25,68,67]]]]]],[[44,[0,[25,67,68]],[0,[25,67,68]]],[[636,[[0,[25,67,68]],[0,[25,67,68]]]]]],[[44,[0,[67,147]],[0,[25,67,68]]],[[637,[[0,[67,147]],[0,[25,67,68]]]]]],[[[0,[67,147]],[0,[25,68,67]]],[[635,[[0,[67,147]],[0,[25,68,67]]]]]],[[[0,[25,68,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[67,147]],[0,[25,68,67]]]],[50],[50,1],[50,1],[[[0,[25,68,67]]],[[638,[[0,[25,68,67]]]]]],[50,639],[50,640],[[],641],[[]],[50,1],[[],44],[50,1],[[[0,[25,68,67]]],[[644,[[0,[25,68,67]]]]]],[[[0,[25,68,67]],[0,[25,68,67]]],[[646,[[0,[25,68,67]],[0,[25,68,67]]]]]],[[[0,[67,147]],[0,[25,68,67]]],[[645,[[0,[67,147]],[0,[25,68,67]]]]]],[[],22],[[[0,[68,67,25]]],22],[[[0,[68,67,25]]],22],[[],22],[[[0,[68,67,25]]],22],[[[0,[68,67,25]]],22],[50,1],[[],[[22,[44]]]],[[],649],[[],344],[[],685],[[],686],[[],687],[44,688],[44,689],[44,690],[44,691],[[]],[673],[[],692],[50],[[]],[[]],[[],693],[694,[[695,[694]]]],[694,[[696,[694]]]],[44,697],[44,698],[44,699],[44,700],[[]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[[0,[25,68,67]]],[[701,[[0,[25,68,67]]]]]],[694,[[702,[694]]]],[[[0,[25,68,67]]],[[703,[[0,[25,68,67]]]]]],[694,[[704,[694]]]],[[],705],[44,706],[50,[[22,[156]]]],[[[0,[25,68,67]]]],[[[0,[25,68,67]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[22,[44]]]],[[[0,[25,68,67]]],[[650,[[0,[25,68,67]]]]]],[[],[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,[675,[[0,[67,675,675]]]]]]]]]]]]]]]]]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[25,68,67]]],22],[[],653],[44,654],[44,655],[[[0,[25,68,67]]],[[656,[[0,[25,68,67]]]]]],[44,658],[[],[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,[354,[[0,[67,354,354]]]]]]]]]]]]]]]]]]]],[44,659],[44,660],[[[0,[25,68,67]]],[[661,[[0,[25,68,67]]]]]],[[[0,[25,68,67]],[0,[25,68,67]]],[[662,[[0,[663,67]],[0,[25,68,67]],[0,[25,68,67]]]]]],[[[0,[147,67]],[0,[25,68,67]]],[[664,[[0,[663,67]],[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[67,147]],[0,[25,68,67]]],[[0,[663,67]]]],[[[0,[25,68,67]],[0,[25,68,67]]]],[[[0,[25,68,67]]],22],[89],[[90,[42,[67,38]],[42,[67,38]]]],[[[0,[25,68,67]]],[[665,[[0,[25,68,67]]]]]],[89,[[666,[89]]]],[44,643],[44,642],[598],[50,667],[50,668],0,[2],[[]],[[]],[[[707,[147]]],[[707,[147]]]],[[]],[44],[44],[[[707,[161]],596]],[[[707,[708]],[596,[708]]]],[[[707,[161]],597]],[[[707,[709]],[597,[709]]]],[44],[[[707,[166]],45],[[17,[46]]]],[[]],[[],44],[[]],[[]],[[[707,[708]]],44],[[[707,[161]]],44],[[[707,[709]]],[[22,[44]]]],[[[707,[161]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],106],[[]],[[[707,[161]],598]],[[[707,[708]],[598,[708]]]],0,[2],[[]],[[]],[[[710,[147]]],[[710,[147]]]],[[]],[44],[44],[[[710,[161]],596]],[[[710,[711]],[596,[711]]]],[[[710,[712]],[597,[712]]]],[[[710,[161]],597]],[44],[[[710,[166]],45],[[17,[46]]]],[[]],[[],44],[[]],[[]],[[[710,[161]]],44],[[[710,[711]]],44],[[[710,[712]]],[[22,[44]]]],[[[710,[161]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],106],[[]],[[[710,[161]],598]],[[[710,[711]],[598,[711]]]],0,0,0,[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[[713,[[0,[147,67]]]]],[[713,[[0,[147,67]]]]]],[[[714,[68]]],[[714,[68]]]],[[]],[[]],[44],[44],[44],[44],[44],[44],[[[713,[67]],596]],[[[714,[68]],596]],[[[715,[67]],596]],[[[713,[67]],597]],[[[714,[68]],597]],[[[715,[67]],597]],[44],[44],[44],[[[713,[[0,[166,67]]]],45],[[17,[46]]]],[[[714,[[0,[166,68]]]],45],[[17,[46]]]],[[[715,[[0,[166,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[[713,[67]]],44],[[[714,[68]]],44],[[[715,[67]]],44],[[[713,[67]]],[[22,[44]]]],[[[714,[68]]],[[22,[44]]]],[[[715,[67]]],[[22,[44]]]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[[713,[67]],598]],[[[714,[68]],598]],[[[715,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[[],13],[[],13],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[701,[147]]],[[701,[147]]]],[[[688,[68]]],[[688,[68]]]],[[[689,[68]]],[[689,[68]]]],[[[697,[68]]],[[697,[68]]]],[[[698,[68]]],[[698,[68]]]],[[[716,[68]]],[[716,[68]]]],[[[706,[68]]],[[706,[68]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[688,[68]],596]],[[[689,[68]],596]],[[[691,[67]],596]],[[[690,[67]],596]],[[[697,[68]],596]],[[[698,[68]],596]],[[[700,[67]],596]],[[[699,[67]],596]],[[[716,[68]],596]],[[[706,[68]],596]],[[[717,[67]],596]],[[[701,[68,[0,[25,68,67]]]],597]],[[[703,[67,[0,[25,68,67]]]],597]],[[[688,[68]],597]],[[[689,[68]],597]],[[[691,[67]],597]],[[[690,[67]],597]],[[[697,[68]],597]],[[[698,[68]],597]],[[[700,[67]],597]],[[[699,[67]],597]],[[[716,[68]],597]],[[[706,[68]],597]],[[[717,[67]],597]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[[701,[166]],45],[[17,[46]]]],[[[703,[166]],45],[[17,[46]]]],[[[688,[[0,[166,68]]]],45],[[17,[46]]]],[[[689,[[0,[166,68]]]],45],[[17,[46]]]],[[[691,[[0,[166,67]]]],45],[[17,[46]]]],[[[690,[[0,[166,67]]]],45],[[17,[46]]]],[[[697,[[0,[166,68]]]],45],[[17,[46]]]],[[[698,[[0,[166,68]]]],45],[[17,[46]]]],[[[700,[[0,[166,67]]]],45],[[17,[46]]]],[[[699,[[0,[166,67]]]],45],[[17,[46]]]],[[[716,[[0,[166,68]]]],45],[[17,[46]]]],[[[706,[[0,[166,68]]]],45],[[17,[46]]]],[[[717,[[0,[166,67]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[690,[67]]],[[13,[67]]]],[[[699,[67]]],[[13,[67]]]],[[[688,[68]]],44],[[[689,[68]]],44],[[[691,[67]]],44],[[[690,[67]]],44],[[[697,[68]]],44],[[[698,[68]]],44],[[[700,[67]]],44],[[[699,[67]]],44],[[[716,[68]]],44],[[[706,[68]]],44],[[[717,[67]]],44],[[[688,[68]]],[[22,[44]]]],[[[689,[68]]],[[22,[44]]]],[[[691,[67]]],[[22,[44]]]],[[[690,[67]]],[[22,[44]]]],[[[697,[68]]],[[22,[44]]]],[[[698,[68]]],[[22,[44]]]],[[[700,[67]]],[[22,[44]]]],[[[699,[67]]],[[22,[44]]]],[[[716,[68]]],[[22,[44]]]],[[[706,[68]]],[[22,[44]]]],[[[717,[67]]],[[22,[44]]]],[44,688],[44,689],[44,690],[44,691],[44,697],[44,698],[44,699],[44,700],[[]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[]],[[[0,[25,68]]]],[[[0,[25,68]]]],[[[0,[25,68,67]]],[[701,[[0,[25,68,67]]]]]],[[[0,[25,68,67]]],[[703,[[0,[25,68,67]]]]]],[44,706],[[[689,[68]]],[[13,[68]]]],[[[690,[67]]],[[13,[67]]]],[[[698,[68]]],[[13,[68]]]],[[[699,[67]]],[[13,[67]]]],[[[690,[67]]],[[13,[67]]]],[[[699,[67]]],[[13,[67]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[688,[68]],598]],[[[689,[68]],598]],[[[691,[67]],598]],[[[690,[67]],598]],[[[697,[68]],598]],[[[698,[68]],598]],[[[700,[67]],598]],[[[699,[67]],598]],[[[716,[68]],598]],[[[706,[68]],598]],[[[717,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[],11],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[687,687],[686,686],[685,685],[692,692],[[[702,[[0,[147,694]]]]],[[702,[[0,[147,694]]]]]],[[[704,[[0,[147,694]]]]],[[704,[[0,[147,694]]]]]],[693,693],[705,705],[[[696,[[0,[147,694]]]]],[[696,[[0,[147,694]]]]]],[[[695,[[0,[147,694]]]]],[[695,[[0,[147,694]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[687,597]],[[686,597]],[[685,597]],[[692,597]],[[[702,[694]],597]],[[[704,[694]],597]],[[693,597]],[[705,597]],[[[696,[694]],597]],[[[695,[694]],597]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[687,45],[[17,[46]]]],[[686,45],[[17,[46]]]],[[685,45],[[17,[46]]]],[[692,45],[[17,[46]]]],[[[702,[[0,[166,694]]]],45],[[17,[46]]]],[[[704,[[0,[166,694]]]],45],[[17,[46]]]],[[693,45],[[17,[46]]]],[[705,45],[[17,[46]]]],[[[696,[[0,[166,694]]]],45],[[17,[46]]]],[[[695,[[0,[166,694]]]],45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],685],[[],686],[[],687],[[],692],[[],693],[694,[[695,[694]]]],[694,[[696,[694]]]],[694,[[702,[694]]]],[694,[[704,[694]]]],[[],705],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[]],[[]],[44],[44],[[718,597]],[44],[718],[[718,45],[[17,[46]]]],[[]],[[],44],[[]],[[]],[[],17],[[],17],[[],106],[[]],0,0,[2],[[]],[[]],[[]],[[]],[[[719,[[0,[147,67]]]]],[[719,[[0,[147,67]]]]]],[[]],[44],[44],[44],[44],[[[719,[67]],596]],[[[720,[67]],596]],[[[719,[67]],597]],[[[720,[67]],597]],[44],[44],[[[720,[67]]]],[[[719,[[0,[166,67]]]],45],[[17,[46]]]],[[[720,[[0,[166,67]]]],45],[[17,[46]]]],[[]],[[]],[[],44],[[],44],[[]],[[]],[[]],[[]],[[[719,[67]]],44],[[[720,[67]]],44],[[[719,[67]]],[[22,[44]]]],[[[720,[67]]],[[22,[44]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],[[[719,[67]],598]],[[[720,[67]],598]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[721,11],[722,11],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[723,[[17,[721,245]]]],[724,[[17,[725,245]]]],[[],726],0,[721,727],[721,728],[[721,11],[[22,[729]]]],[[721,11,44],[[22,[729]]]],[[721,11],730],[721,44],[[721,727,11],[[22,[722]]]],[[721,727,11,44],[[22,[722]]]],[[723,1],723],[[724,1],724],[723,723],[724,724],[245,245],[721,721],[722,722],[727,727],[728,728],[731,731],[732,732],[725,725],[733,733],[734,734],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[735,44],[730,44],[728,44],[731,44],[[723,1],723],[[724,1],724],[[],725],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[245,11],[[723,44],723],[[724,44],724],[[723,1],723],[[724,1],724],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],725],[722,44],[[245,245],1],[[722,722],1],[[],1],[[],1],[[],1],[[],1],[11,62],[[729,11,62]],[729],[[721,11],[[22,[722]]]],[[721,11,44],[[22,[722]]]],[[721,11],735],[[729,45],[[17,[46]]]],[[723,45],[[17,[46]]]],[[724,45],[[17,[46]]]],[[245,45],[[17,[46]]]],[[245,45],[[17,[46]]]],[[721,45],[[17,[46]]]],[[721,45],[[17,[46]]]],[[722,45],[[17,[46]]]],[[727,45],[[17,[46]]]],[[735,45],[[17,[46]]]],[[730,45],[[17,[46]]]],[[736,45],[[17,[46]]]],[[737,45],[[17,[46]]]],[[728,45],[[17,[46]]]],[[731,45],[[17,[46]]]],[[[726,[[0,[166,138]]]],45],[[17,[46]]]],[[732,45],[[17,[46]]]],[[725,45],[[17,[46]]]],[[733,45],[[17,[46]]]],[[738,45],[[17,[46]]]],[[734,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[11,[[17,[721,245]]]],[[729,44],[[22,[722]]]],[[727,44],22],[[723,1],723],[[724,1],724],[[729,44],11],[[729,11],11],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[733],[733],[[]],[[]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[[],[[42,[62,38]]]],[[],[[42,[[114,[113]],38]]]],[722,1],[725,1],[[721,11],1],[[725,11],1],[[721,11,44],1],[[725,11,44],1],[729,731],[733,734],[729,44],[722,44],[727,44],[725,44],[733,44],[[723,12],723],[[724,12],724],[[733,44],1],[733,1],[[725,11],733],[[725,11,44],733],[[723,1],723],[[724,1],724],[[729,11],[[22,[722]]]],[[723,78],723],[[724,78],724],[11,723],[49,724],[11,[[17,[721,245]]]],[49,[[17,[725,245]]]],[735,[[22,[722]]]],[730,[[22,[729]]]],[736,[[22,[11]]]],[737,[[22,[11]]]],[728,[[22,[[22,[11]]]]]],[731,[[22,[[22,[722]]]]]],[738,[[22,[44]]]],[734,[[22,[44]]]],[738,[[22,[44]]]],[734,[[22,[44]]]],[[],[[22,[[77,[11]]]]]],[[[726,[[0,[739,138]]]]],[[22,[[77,[11]]]]]],[732,[[22,[[77,[11]]]]]],[[723,1],723],[[724,1],724],[[],344],[725,[[13,[62]]]],[203],[722,[[79,[44]]]],[[721,11,739],[[77,[11]]]],[[721,11,739],[[77,[11]]]],[[729,62]],[[[726,[[0,[739,138]]]],729,62]],[[732,729,62]],[[721,11,44,739],[[77,[11]]]],[[721,11],[[22,[44]]]],[[721,11,44],[[22,[44]]]],[737],[728],[731],[738],[734],[[723,44],723],[[724,44],724],[[721,11],736],[[721,11,44],737],[722,44],[721,[[22,[44]]]],[[723,1],723],[[724,1],724],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[11,[[17,[721,245]]]],[62,[[17,[721,245]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[723,1],723],[[724,1],724],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[740,[[13,[12]]]],[741,11],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[742,[[17,[741,245]]]],[743,[[17,[744,245]]]],[[],745],[741,746],[741,747],[[741,[13,[12]]],[[22,[748]]]],[[741,[13,[12]],44],[[22,[748]]]],[[741,[13,[12]]],749],[741,44],[[741,746,[13,[12]]],[[22,[740]]]],[[741,746,[13,[12]],44],[[22,[740]]]],[[742,1],742],[[743,1],743],[742,742],[743,743],[741,741],[740,740],[746,746],[747,747],[750,750],[751,751],[744,744],[752,752],[753,753],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[754,44],[749,44],[747,44],[750,44],[[742,1],742],[[743,1],743],[[],744],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[742,44],742],[[743,44],743],[[742,1],742],[[743,1],743],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],744],[740,44],[[740,740],1],[[],1],[[],1],[[],1],[[],1],[[748,[13,[12]],[42,[12,38]]]],[748],[[741,[13,[12]]],[[22,[740]]]],[[741,[13,[12]],44],[[22,[740]]]],[[741,[13,[12]]],754],[[748,45],[[17,[46]]]],[[742,45],[[17,[46]]]],[[743,45],[[17,[46]]]],[[741,45],[[17,[46]]]],[[741,45],[[17,[46]]]],[[740,45],[[17,[46]]]],[[746,45],[[17,[46]]]],[[754,45],[[17,[46]]]],[[749,45],[[17,[46]]]],[[755,45],[[17,[46]]]],[[756,45],[[17,[46]]]],[[747,45],[[17,[46]]]],[[750,45],[[17,[46]]]],[[[745,[[0,[166,138]]]],45],[[17,[46]]]],[[751,45],[[17,[46]]]],[[744,45],[[17,[46]]]],[[752,45],[[17,[46]]]],[[757,45],[[17,[46]]]],[[753,45],[[17,[46]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[11,[[17,[741,245]]]],[[748,44],[[22,[740]]]],[[746,44],22],[[742,1],742],[[743,1],743],[[748,11],[[13,[12]]]],[[748,44],[[13,[12]]]],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[752],[752],[[]],[[]],[740,1],[744,1],[[741,[13,[12]]],1],[[744,[13,[12]]],1],[[741,[13,[12]],44],1],[[744,[13,[12]],44],1],[748,750],[752,753],[748,44],[740,44],[746,44],[744,44],[752,44],[[742,12],742],[[743,12],743],[[752,44],1],[752,1],[[744,[13,[12]]],752],[[744,[13,[12]],44],752],[[742,1],742],[[743,1],743],[[748,11],[[22,[740]]]],[[742,78],742],[[743,78],743],[11,742],[49,743],[11,[[17,[741,245]]]],[49,[[17,[744,245]]]],[754,[[22,[740]]]],[749,[[22,[748]]]],[755,[[22,[[13,[12]]]]]],[756,[[22,[[13,[12]]]]]],[747,[[22,[[22,[11]]]]]],[750,[[22,[[22,[740]]]]]],[757,[[22,[44]]]],[753,[[22,[44]]]],[757,[[22,[44]]]],[753,[[22,[44]]]],[[],[[22,[[77,[[13,[12]]]]]]]],[[[745,[[0,[758,138]]]]],[[22,[[77,[[13,[12]]]]]]]],[751,[[22,[[77,[[13,[12]]]]]]]],[[742,1],742],[[743,1],743],[[],344],[744,[[13,[62]]]],[740,[[79,[44]]]],[[741,[13,[12]],758],[[77,[[13,[12]]]]]],[[741,[13,[12]],758],[[77,[[13,[12]]]]]],[[748,[42,[12,38]]]],[[[745,[[0,[758,138]]]],748,[42,[12,38]]]],[[751,748,[42,[12,38]]]],[[741,[13,[12]],44,758],[[77,[[13,[12]]]]]],[[741,[13,[12]]],[[22,[44]]]],[[741,[13,[12]],44],[[22,[44]]]],[756],[747],[750],[757],[753],[[742,44],742],[[743,44],743],[[741,[13,[12]]],755],[[741,[13,[12]],44],756],[740,44],[741,[[22,[44]]]],[[742,1],742],[[743,1],743],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],62],[[],17],[[],17],[[],17],[62,[[17,[741,245]]]],[11,[[17,[741,245]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[742,1],742],[[743,1],743],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[[242,[42,[15,38]],151],[[17,[16]]]],[[242,[13,[78]],1,1],242],[[242,[4,[10]]],[[17,[242,16]]]],[[242,242,759],[[17,[242,16]]]],[[242,242,15,15,759,1],[[17,[242,16]]]],[[242,242,15,15,759],[[17,[242,16]]]],[[242,86,44],242],[242,242],[242,242],[[242,11,201],[[17,[242,16]]]],[[242,44,201],[[17,[242,16]]]],[242,242],[242,242],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[242,242],[760,760],[761,761],[242,242],[[]],[[]],[[]],[[242,11],[[17,[15,16]]]],[[242,49],[[17,[[42,[15,38]],16]]]],[[242,242,[22,[11]],22],[[17,[242,16]]]],[[],761],[[],242],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[242,[22,[[13,[74]]]]],[[17,[242,16]]]],[44],[44],[44],[44],[[242,11],[[17,[242,16]]]],[44],[[242,11],[[17,[15,16]]]],[[242,[13,[[51,[11]]]]],242],[[242,[763,[11,107,762]]],242],[[242,[22,[[13,[[51,[11]]]]]]],[[17,[242,16]]]],[242,[[42,[35,38]]]],[[],242],[[761,761],1],[[242,242],1],[[],1],[[],1],[[],1],[[],1],[242,44],0,[[242,49],[[17,[242,16]]]],[[242,[42,[15,38]]],[[17,[242,16]]]],[[242,242],[[17,[16]]]],[242,[[42,[92,38]]]],[[242,146],[[17,[242,16]]]],[[242,[4,[10]]],[[17,[242,16]]]],[[242,11],[[22,[44]]]],[[760,45],[[17,[46]]]],[[761,45],[[17,[46]]]],[[242,45],[[17,[46]]]],[[242,45],[[17,[46]]]],[[242,242],1],[[242,242],1],[[242,242],[[17,[16]]]],[[]],[[]],[[]],[[]],[[]],[151,242],[225,242],[49,242],[[[13,[178]]],[[17,[242,16]]]],[[[13,[178]],151],[[17,[242,16]]]],[[23,151],[[17,[242,16]]]],[[242,44],[[22,[[42,[53,38]]]]]],[242,[[42,[11,38]]]],[242,[[42,[[114,[113]],38]]]],[242,[[13,[15]]]],[242,[[42,[15,38]]]],[[242,44],[[17,[178,16]]]],[[242,44,178],[[17,[16]]]],[[242,44,178]],[242,[[22,[[17,[35,16]]]]]],0,[[242,49],[[17,[764,16]]]],[[242,[42,[15,38]],765],[[17,[16]]]],[[242,[42,[15,38]],766],[[17,[16]]]],[[242,49],[[17,[764,16]]]],[[242,[42,[15,38]],1,1],[[17,[764,16]]]],0,[[242,[22,[44]]],242],[242,44],[242,[[17,[[22,[15]],16]]]],[[242,760],[[17,[[22,[15]],16]]]],[242,[[17,[[22,[15]],16]]]],[[242,[13,[15]]],[[17,[242,16]]]],[[242,[13,[15]]],[[17,[242,16]]]],[[242,[13,[15]]],242],[[242,760],[[17,[[22,[15]],16]]]],[[242,767]],[[242,44]],[[242,[79,[44]]]],[[242,[768,[44]]]],[[242,[550,[44]]]],[[242,[769,[44]]]],[[242,[770,[44]]]],[[242,11]],[[],44],[[],44],[[],44],[[],44],[[],44],[[242,44,771],[[17,[242,16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[242,11],225],[242,[[17,[[4,[10]],16]]]],[242,1],[242,[[17,[[4,[10]],16]]]],[242,[[40,[15]]]],[242,772],[242,773],[[242,242,11,11,150,[22,[53]],[22,[62]]],[[17,[242,16]]]],[[242,242,11,11,49,49,150,[22,[53]]],[[17,[242,16]]]],[242,774],[242,242],[242,242],[242,242],[[242,[775,[[114,[113]]]],[775,[[114,[113]]]]],[[17,[242,16]]]],[[242,776],[[17,[242,16]]]],[242,242],[242,44],[[[42,[771,38]]],[[17,[242,16]]]],[[[42,[15,38]]],242],[772,22],[773,22],[242,242],[[242,25],[[17,[16]]]],[[242,25],[[17,[16]]]],[[242,25],[[17,[16]]]],[242,[[22,[15]]]],[[242,242],1],[[242,74,91],[[17,[242,16]]]],[[242,11,11],[[17,[242,16]]]],[[242,11,771],[[17,[242,16]]]],[[242,44,771],[[17,[242,16]]]],[[242,11,771],[[17,[242,16]]]],[242,242],0,[[242,74,1,1,[22,[56]]],[[17,[242,16]]]],[[242,44,1,1,[22,[56]]],[[17,[242,16]]]],[242,151],[[242,49],[[17,[242,16]]]],[[242,44],[[22,[15]]]],[[242,[673,[44]]],[[17,[242,16]]]],[[242,49],[[17,[242,16]]]],[[242,[775,[[114,[113]]]]],[[17,[[42,[15,38]],16]]]],[[242,49,[104,[151]]],[[17,[242,16]]]],[[242,49,151],[[17,[242,16]]]],[[242,[13,[[51,[11]]]]],[[17,[16]]]],[242],[[242,86],242],[242,1],[242],[772],[773],[[242,86,44],242],[[242,86,44],242],[[242,[775,[[114,[113]]]],[775,[1]],1],[[17,[242,16]]]],[[242,[42,[15,38]],[42,[1,38]],1,1,22,1],[[17,[242,16]]]],[[242,[775,[[114,[113]]]],[775,[1]],1],[[17,[242,16]]]],[[242,11,29],[[17,[242,16]]]],[[242,12],242],[242,242],[[242,[22,[44]]],242],[[242,[4,[30]]],[[17,[242,16]]]],[[242,[0,[23,147,68,52]]],[[17,[242,16]]]],[[242,[0,[23,147,68,52]]],242],[[242,[0,[23,147,68,52]]],242],[[242,148],[[17,[[101,[102,[100,[[99,[44]]]]]],16]]]],[[]],[[]],[[]],[[],62],[[242,44,[775,[1]],[775,[[114,[113]]]]],[[17,[242,16]]]],[[242,[22,[11]],[22,[[105,[62,[42,[62,38]]]]]]],[[17,[242,16]]]],[[242,11,201],[[17,[242,16]]]],[[242,44,201],[[17,[242,16]]]],[[242,11],[[17,[44,16]]]],[[],17],[[],17],[[],17],[[],17],[[],[[17,[242,16]]]],[[],17],[339,[[17,[242,16]]]],[[23,151],[[17,[242,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[242,[22,[[13,[62]]]],761,22],[[17,[242,16]]]],[[242,1,[22,[[13,[62]]]],761,22],[[17,[242,16]]]],[[242,[22,[[13,[62]]]],761,22],[[17,[242,16]]]],[[242,[775,[62]]],[[17,[242,16]]]],[[242,[775,[62]],11,239,239],[[17,[242,16]]]],[[242,[775,[62]],11,239,239],[[17,[242,16]]]],[[242,12],242],[[242,242],[[17,[242,16]]]],[[242,242],[[17,[242,16]]]],[[]],[[]],[[]],[[]],[[]],[242,44],[[242,771],[[17,[242,16]]]],[[242,771,151],[[17,[242,16]]]],[[242,15],242],[[242,11,[22,[78]]],[[17,[242,16]]]],[[242,11,[22,[78]]],242],0,[2],[[]],[[]],[776,776],[[]],[[],776],[44],[44],[44],[[776,776],1],[[776,45],[[17,[46]]]],[[]],0,[[],44],[[]],0,[[]],[[],17],[[],17],[[],106],0,0,0,[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[764,[[17,[242,16]]]],0,[777,[[13,[[42,[78,38]]]]]],[[764,[0,[27,67,68]]],[[17,[242,16]]]],[19,[[4,[3]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[777,777],[19,19],[764,764],[778,778],[[]],[[]],[[]],[[]],[764,[[17,[242,16]]]],[[],777],[[],19],[44],[44],[44],[44],[779],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,[[780,597]],[44],[44],[44],[44],[44],[777],[44],[44],[44],[[777,777],1],[[19,19],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],0,[781,78],[777,[[13,[78]]]],[764,[[17,[242,16]]]],[777,[[42,[78,38]]]],[[777,45],[[17,[46]]]],[[19,45],[[17,[46]]]],[[764,45],[[17,[46]]]],[[778,45],[[17,[46]]]],[[778,45],[[17,[46]]]],[[11,778],62],[[]],[[]],[[]],[[]],[[[42,[38]]],777],[[[42,[38]]],777],[[[42,[[42,[38]],38]]],777],[[]],[777,19],[[]],[[]],[782,778],[[]],[49,777],[50,777],[[19,44],781],[764,19],[764,19],[19,[[4,[30]]]],[[19,11],[[4,[30]]]],[[1,1],[[17,[19,16]]]],[764,[[17,[242,16]]]],[19,777],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[19,777],[[]],[777],[777],[[]],[777],[777],[781,1],[19,1],[777,1],[777,[[784,[[783,[[40,[78]]]],[40,[[42,[78,38]]]]]]]],[19,785],[764,[[42,[15,38]]]],[[764,22],[[42,[15,38]]]],[764,[[17,[242,16]]]],[781,44],[19,44],[764,[[17,[242,16]]]],[764,[[17,[242,16]]]],[764,[[17,[242,16]]]],[764,[[17,[242,16]]]],[764,[[17,[242,16]]]],[[[42,[78,38]],[42,[[42,[78,38]],38]],1],777],[[242,[42,[15,38]],19,[22,[[42,[62,38]]]]],764],[785,22],[[785,44],22],[[764,[0,[25,67,68]]],[[17,[242,16]]]],[[]],[19,780],[[764,74,91],[[17,[242,16]]]],[[764,49],764],[[19,86,44],779],[777],[19],[[764,12],[[17,[242,16]]]],[764,[[17,[242,16]]]],[19,[[42,[78,38]]]],[764,19],[764,19],[[]],[[]],[[]],[[]],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[19,19],[19,777],[19,[[42,[[99,[78]],38]]]],[[764,12],[[17,[242,16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[777,[0,[25,67,68]]],15],[[777,[0,[25,67,68]]],15],[[[13,[[99,[78]]]],[0,[25,67,68]]],15],[[[13,[[99,[78]]]],[0,[25,67,68]]],15],[[[13,[[0,[222,272]]]],[0,[23,52]],[22,[[104,[134]]]]],[[39,[37,38]]]],[[[13,[[0,[222,272]]]],88,[0,[23,52]],[22,[[104,[134]]]]],[[39,[37,38]]]],[[[4,[28]],78,78],[[4,[28]]]],[[[42,[[99,[78]],38]],[13,[[39,[37,38]]]]],1],[19,15],0,[[242,19],[[17,[15,16]]]],[[],[[17,[11,16]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[[35,35],[[17,[16]]]],[[242,242,1]],[[11,11],62],[[242,242,[22,[[13,[[99,[78]]]]]],[22,[[13,[[99,[78]]]]]]]],[[242,242,1],[[42,[38]]]],[[15,15,1,786],[[17,[16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[759,759],[787,787],[786,786],[[]],[[]],[[]],[[],786],[[],[[42,[[22,[78]],38]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[759,759],1],[[787,787],1],[[786,786],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[759,45],[[17,[46]]]],[[787,45],[[17,[46]]]],[[787,45],[[17,[46]]]],[[786,45],[[17,[46]]]],[[786,45],[[17,[46]]]],[[]],[787,759],[[]],[[]],0,[[],44],[[],44],[[],44],[[]],[[]],[[]],[[786,787,44],[[17,[16]]]],[786,1],[787,759],[[242,242,[22,[[13,[[99,[78]]]]]],[22,[[13,[[99,[78]]]]]]]],0,[759,11],0,[[]],[[]],[[]],[[],62],[[],62],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],0,[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[[788,53],22],[[789,53]],[[789,53]],[[[13,[53]]],[[17,[16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[788,788],[789,789],[178,178],[[]],[[]],[[]],[[[13,[[263,[35]]]]],35],[[],178],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[178,178],1],[[],1],[[],1],[[],1],[[],1],[[178,45],[[17,[46]]]],[[]],[[],788],[[]],[[],789],[[]],[[23,44],151],[[],44],[[],44],[[],44],[[]],[[]],[[]],[788,15],[789,15],[[35,44],788],[[35,44],789],[[[42,[53,38]]],178],[[788,44],15],[[789,44],15],[[[13,[178]],[22,[44]]],151],[[[13,[178]],[22,[44]]],[[17,[151,16]]]],[[]],[[]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[[13,[15]],11],[[17,[[4,[9]],16]]]],[[[4,[71]],[4,[71]]],22],[[[4,[32]],[4,[32]]],[[22,[74]]]],[[[13,[242]]],[[17,[242,16]]]],[[[13,[242]]],[[17,[242,16]]]],[[[4,[71]],[4,[71]],12],22],[[[4,[32]],[4,[32]],12],[[22,[74]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[[790,[387]],[22,[[104,[791]]]],[22,[[13,[44]]]]],[[17,[242,16]]]],[56,56],[792,558],[[792,558],[[17,[558,16]]]],[[792,558],[[17,[558,16]]]],[[792,558],[[17,[558,16]]]],[[],15],[[[22,[[42,[11,38]]]],[22,[11]],1],[[17,[242,16]]]],[558,558],[15],[[558,558]],[[239,86,[22,[236]]],[[17,[86,16]]]],[[239,86,[22,[236]]],[[17,[86,16]]]],[15,[[17,[15,16]]]],[[239,86,[22,[236]]],[[17,[86,16]]]],[[793,[51,[[13,[558]]]]],774],[558,558],0,[[558,11],558],[[],558],[[558,1],558],[[[51,[[13,[558]]]]],558],[[794,1],794],0,[[],1],[[],1],[795,1],[[],1],[[558,[200,[558]]],558],[[[104,[796]],797],[[17,[774,16]]]],[[558,1],558],[[[51,[[13,[558]]]]],558],[[558,[200,[558]],1],558],[[]],[[]],[[[22,[15]]],[[17,[16]]]],[22],[15,[[17,[16]]]],[[]],[[[0,[25,26]]]],[[793,[0,[25,67,68]],[104,[151]]],774],[[558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[558,558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[[0,[25,26]]],[[4,[5]]]],[[558,27],[[17,[800,16]]]],[25],[25,[[4,[28]]]],[[558,[0,[25,67,68]],[13,[558]],[799,[[104,[798]]]]],558],[[558,801,[13,[558]],1,1],558],[[[0,[25,67,68]],[51,[[13,[558]]]],[799,[[104,[798]]]],1],558],[[[0,[25,26]]]],[[25,13]],[[[0,[25,26]]]],[[[0,[25,26]]]],[[558,558,86],558],[558,558],[558,558],[339,[[104,[37]]]],[558,558],[558,558],[558,558],[[558,558],558],[558,558],[[],[[22,[44]]]],[802,558],[558,558],[[],[[22,[44]]]],[802,558],[558,558],[29,[[4,[30]]]],[[558,29],558],[29,[[4,[30]]]],[[[51,[[13,[558]]]],[13,[1]]],558],[34,[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[558,558],[[],[[17,[[4,[30]],16]]]],[[[200,[558]]],558],0,[558,803],0,0,[[[804,[387]]],[[17,[153,16]]]],[[[805,[383]]],[[17,[153,16]]]],[[],134],[795,134],[[],134],[339,134],[[],134],[339,134],[[],[[4,[8]]]],[[[22,[11]],1],[[17,[[59,[58,57]],16]]]],[[[22,[11]]],[[17,[[59,[58,57]],16]]]],[[[22,[11]],61,1,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[11]],61,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[],[[22,[558]]]],[[],[[4,[3]]]],[[],[[22,[806]]]],[807,558],[[],35],[[],15],[[],[[17,[44,16]]]],[[],[[13,[12]]]],[[],[[22,[808]]]],[809,[[22,[808]]]],[[[13,[558]]],558],[[[22,[11]],1],[[17,[[59,[70,60]],16]]]],[[],[[4,[9]]]],[11,558],[[558,[22,[78]]],558],[[],[[17,[[4,[9]],16]]]],[[],[[4,[9]]]],[[[59,[63,60]],61,236],[[59,[66,60]]]],[[[810,[392]],151],[[17,[[811,[392]],16]]]],[[[790,[387]],44],[[17,[812,16]]]],[[[813,[392]],151],[[17,[[814,[392]],16]]]],[[[810,[[0,[399,400,67]]]],151],[[17,[[815,[[0,[399,400,67]]]],16]]]],[[[816,[387]]],[[17,[817,16]]]],[[[816,[387]]],[[17,[818,16]]]],[[[816,[[39,[387,38]]]],[22,[[104,[151]]]]],[[17,[819,16]]]],[[[816,[[39,[387,38]]]],[22,[[104,[151]]]]],[[17,[820,16]]]],0,[558,821],[[558,822,558],558],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[774,78,[51,[[13,[558]]]],[51,[[13,[1]]]],1,1],774],[339,[[39,[37,38]]]],[[],[[39,[95,38]]]],[[],[[39,[96,38]]]],[[[0,[25,26]]],[[4,[5]]]],0,0,0,[774,774],0,0,0,[11,[[17,[62,16]]]],[[[13,[15]]],[[17,[[22,[15]],16]]]],[[15,15],[[17,[15,16]]]],0,0,[[558,35],558],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[35,[[17,[15,16]]]],[[558,35],558],[35,[[17,[15,16]]]],0,[558,823],[558,558],[558,558],0,0,0,[44,[[17,[16]]]],[44,[[17,[16]]]],0,0,[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[7,[[17,[15,16]]]],[[],[[41,[[40,[[39,[37,38]]]]]]]],0,[[],[[42,[[39,[37,38]],38]]]],[[558,53,53],558],[[558,53],558],[[558,53],558],[824,824],[825,825],[177,177],[765,765],[766,766],[241,241],[826,826],[239,239],[827,827],[828,828],[829,829],[830,830],[831,831],[395,395],[832,832],[833,833],[834,834],[835,835],[488,488],[836,836],[837,837],[838,838],[795,795],[839,839],[797,797],[774,774],[793,793],[840,840],[841,841],[842,842],[843,843],[844,844],[807,807],[558,558],[845,845],[822,822],[[[799,[147]]],[[799,[147]]]],[846,846],[801,801],[847,847],[848,848],[849,849],[850,850],[851,851],[852,852],[853,853],[854,854],[855,855],[856,856],[857,857],[858,858],[859,859],[339,339],[[],[[104,[154]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,[[],[[22,[213]]]],0,[[239,239],156],[[[13,[558]]],558],[11,558],[774,[[17,[242,16]]]],[50,[[17,[[42,[242,38]],16]]]],[[[775,[62]]],558],[[[42,[11,38]],[22,[11]],1],[[17,[242,16]]]],[[],156],0,0,[[[51,[[13,[774]]]],836],[[17,[774,16]]]],[[[4,[9]]],[[4,[9]]]],[[[51,[[13,[[0,[[200,[558]],147]]]]]],1],[[17,[558,16]]]],[[[42,[774,38]]],[[17,[774,16]]]],[[837,[42,[774,38]]],[[17,[774,16]]]],[[[51,[[13,[[0,[[200,[558]],147]]]]]]],[[17,[558,16]]]],[[[51,[[13,[558]]]],11],558],[[[13,[12]]],[[17,[[4,[10]],16]]]],[[11,1],[[17,[[4,[10]],16]]]],[[802,[200,[558]]],558],[[[13,[12]]],[[17,[[4,[10]],16]]]],[11,[[17,[[4,[10]],16]]]],[558,558],[558,558],[558,558],[[],558],[558,558],[11,[[17,[[4,[30]],16]]]],[[558,558],558],[[860,392],[[39,[861,38]]]],[[862,392],[[39,[861,38]]]],[[774,774],774],[[558,1],558],[[558,[0,[25,67,68,147]],[51,[[13,[558]]]],1],558],[1,4],[[558,1],558],[1,4],[[558,1],558],[1,4],[[558,1],558],[[[0,[25,67,68,147]],[51,[[13,[558]]]]],558],[1,4],[[558,1],558],[[558,44,1],558],0,[339,157],0,0,[[558,558,239,827,[22,[61]],[22,[62]]],558],0,[847,558],[158,86],[158,86],[158,86],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[],[[4,[60]]]],[239,86],0,[239,1],0,0,[[],860],[[],862],[[],825],[[],177],[[],765],[[],766],[[],828],[[],395],[[],832],[[],488],[[],836],[[],838],[[],839],[[],797],[[],774],[[],558],[[],[[799,[[104,[798]]]]]],[[],[[799,[[104,[863]]]]]],[[],[[799,[[104,[864]]]]]],[[],848],[[],850],[[],851],[[],852],[[],853],[[],854],[[],856],[[],857],[[],858],[[],859],0,[558,558],[44],[865],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[799],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[865],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],0,0,0,[859,62],[774,[[17,[62,16]]]],[774,62],0,0,[[[51,[[13,[774]]]],1,1],[[17,[774,16]]]],[[802,86,866],558],[[558,86,866],558],[15],[[558,558]],[15,[[17,[15,16]]]],[[558,[200,[558]]],558],[[859,62,867,[868,[62,62,107,762]]],[[17,[46]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[774,49],774],[558,558],[[774,[22,[[42,[558,38]]]]],774],[558,558],[[],15],[[[59,[63,60]],61,236],[[59,[66,60]]]],0,[558,869],[[],35],[[],35],0,[35,558],[[[51,[[13,[35]]]]],558],[848,558],[[[13,[12]]],[[4,[10]]]],[11,[[4,[10]]]],[[74,1],[[22,[74]]]],[[558,74,1],558],[[824,824],1],[[825,825],1],[[765,765],1],[[766,766],1],[[241,241],1],[[239,239],1],[[827,827],1],[[828,828],1],[[830,830],1],[[831,831],1],[[395,395],1],[[832,832],1],[[833,833],1],[[834,834],1],[[835,835],1],[[488,488],1],[[807,807],1],[[558,[200,[558]]],558],[[558,558],1],[[845,845],1],[[822,822],1],[[[799,[15]],[799,[15]]],1],[[[799,[[104,[138]]]],[799,[[104,[138]]]]],1],[[846,846],1],[[801,801],1],[[849,849],1],[[850,850],1],[[851,851],1],[[852,852],1],[[853,853],1],[[855,855],1],[[856,856],1],[[857,857],1],[[858,858],1],[[339,339],1],[[339,37],1],[[558,[200,[558]]],558],[[]],[[]],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[],1],[[558,1],558],[[242,870],[[17,[15,16]]]],[[809,242],[[17,[15,16]]]],[[242,19,870],[[17,[871,16]]]],[[242,19,870],[[17,[15,16]]]],0,0,0,[[558,[775,[62]]],558],[[558,[51,[[13,[35]]]]],558],[[],15],[558,558],[[774,1],[[17,[62,16]]]],[[774,[51,[[13,[[0,[[200,[558]],147]]]]]]],774],[[],[[17,[15,16]]]],[558,558],[[],[[17,[16]]]],0,0,[860,172],[862,172],[[11,44],[[17,[[4,[9]],16]]]],[11,[[17,[[4,[3]],16]]]],[[[4,[9]]],[[17,[[4,[3]],16]]]],[[],1],[[774,44],[[17,[242,16]]]],[[],92],[[],[[77,[92]]]],[[872,86],558],[[872,11],558],[339,[[13,[152]]]],0,0,[[774,[200,[558]]],774],[[558,[200,[558]]],558],[[774,[200,[558]]],774],[[558,[200,[558]]],558],[138,[[17,[138,16]]]],[[138,[4,[10]]],[[17,[4,16]]]],[[[4,[10]]],[[17,[15,16]]]],[[774,558],774],[[558,[200,[558]]],558],[[15,19,870],[[17,[15,16]]]],[[],[[17,[242,16]]]],[242,[[17,[16]]]],[[],4],[[],[[17,[774,16]]]],[794,774],[[[816,[387]]],[[17,[242,16]]]],[[[873,[392]],242],[[17,[16]]]],[[[804,[387]]],[[17,[242,16]]]],[[[805,[383]]],[[17,[242,16]]]],[[[874,[392]],242],[[17,[16]]]],[[[810,[392]],242],[[17,[16]]]],[[[875,[392]],242],[[17,[16]]]],[[[876,[387]]],[[17,[242,16]]]],[[[877,[387]]],[[17,[242,16]]]],[[[790,[387]]],[[17,[242,16]]]],[[[813,[392]],242],[[17,[56,16]]]],[[],[[4,[3]]]],[[],[[17,[774,16]]]],[837,[[17,[774,16]]]],[795,[[17,[774,16]]]],[[[804,[387]],[22,[[104,[791]]]],1],[[17,[242,16]]]],[[],558],[802,558],[774,774],[558,558],0,[558,558],[[],[[799,[[104,[798]]]]]],[558,558],[[558,558],558],[[15,15],[[17,[15,16]]]],[[878,45],[[17,[46]]]],[[863,45],[[17,[46]]]],[[879,45],[[17,[46]]]],[[824,45],[[17,[46]]]],[[825,45],[[17,[46]]]],[[765,45],[[17,[46]]]],[[766,45],[[17,[46]]]],[[241,45],[[17,[46]]]],[[826,45],[[17,[46]]]],[[239,45],[[17,[46]]]],[[827,45],[[17,[46]]]],[[828,45],[[17,[46]]]],[[830,45],[[17,[46]]]],[[831,45],[[17,[46]]]],[[395,45],[[17,[46]]]],[[880,45],[[17,[46]]]],[[796,45],[[17,[46]]]],[[832,45],[[17,[46]]]],[[881,45],[[17,[46]]]],[[833,45],[[17,[46]]]],[[834,45],[[17,[46]]]],[[835,45],[[17,[46]]]],[[488,45],[[17,[46]]]],[[871,45],[[17,[46]]]],[[840,45],[[17,[46]]]],[[558,45],[[17,[46]]]],[[558,45],[[17,[46]]]],[[845,45],[[17,[46]]]],[[822,45],[[17,[46]]]],[[822,45],[[17,[46]]]],[[799,45],[[17,[46]]]],[[846,45],[[17,[46]]]],[[846,45],[[17,[46]]]],[[801,45],[[17,[46]]]],[[801,45],[[17,[46]]]],[[847,45],[[17,[46]]]],[[848,45],[[17,[46]]]],[[849,45],[[17,[46]]]],[[850,45],[[17,[46]]]],[[851,45],[[17,[46]]]],[[852,45],[[17,[46]]]],[[853,45],[[17,[46]]]],[[854,45],[[17,[46]]]],[[855,45],[[17,[46]]]],[[856,45],[[17,[46]]]],[[857,45],[[17,[46]]]],[[858,45],[[17,[46]]]],[[859,45],[[17,[46]]]],[[339,45],[[17,[46]]]],[[11,778],62],0,0,0,0,[[558,[0,[25,67,68,147]],[51,[[13,[558]]]]],558],[[794,1],794],0,0,[[11,[51,[[13,[558]]]]],[[17,[558,16]]]],[[558,[22,[78]]],558],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[176,177],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[859,774],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[84,558],[81,558],[1,558],[56,558],[74,558],[86,558],[12,558],[78,558],[11,558],[87,558],[[]],[807,558],[75,558],[55,558],[[]],[[]],[[]],[882,[[799,[[104,[878]]]]]],[801,[[799,[[104,[878]]]]]],[883,[[799,[[104,[878]]]]]],[846,[[799,[[104,[878]]]]]],[884,[[799,[[104,[878]]]]]],[885,[[799,[[104,[878]]]]]],[886,[[799,[[104,[878]]]]]],[[]],[[]],[885,801],[846,801],[884,801],[883,801],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[288,339],[337,339],[[]],[[[22,[88]]]],[[[179,[86]],[179,[12]],[22,[88]]]],[[[179,[86]],[179,[12]],[22,[88]]]],[49,[[865,[[4,[10]]]]]],[49,[[865,[[4,[5]]]]]],[[49,44],[[120,[86]]]],[49,[[120,[86]]]],[[11,23]],[[49,157],[[120,[86]]]],[49,[[865,[[4,[5]]]]]],[49,[[865,[[4,[10]]]]]],[[49,44],[[120,[86]]]],[[11,23]],[50,[[865,[[4,[5]]]]]],[[[200,[172]]],[[17,[[816,[887]],16]]]],[[[200,[172]]],[[17,[[877,[887]],16]]]],[[11,13]],[[11,[13,[22]]]],[52,[[865,[[4,[5]]]]]],[35,[[799,[[104,[798]]]]]],[11],0,[[11,44],138],[[11,44],138],[[558,[0,[25,67,68]],[799,[[104,[798]]]],888],558],[44,22],[44,22],[44,22],[44,[[17,[53,16]]]],[[802,558],558],[44,[[17,[53,16]]]],[44,[[17,[53,16]]]],[44,53],[44,53],[823,558],[774,854],[855,35],[[],35],[[829,86,[22,[236]]],[[17,[826,16]]]],[[829,86,[22,[236]]],[[17,[826,16]]]],[[829,86,[22,[236]]],[[17,[826,16]]]],[[151,889,92,92],[[22,[92]]]],[[151,889,[13,[92]]],92],[157,[[13,[152]]]],[107,56],[[],[[42,[11,38]]]],[44,[[22,[54]]]],[[],[[22,[[799,[[104,[798]]]]]]]],[[829,826,61,[22,[236]],828],[[17,[890,16]]]],[151,[[17,[[104,[151]],16]]]],[44,22],[44,53],[[138,44],22],[[138,44],22],[44,53],[[],44],[[],[[17,[[22,[[39,[23,38]]]],16]]]],[[1,1],[[17,[19,16]]]],[[774,[51,[[13,[[0,[[200,[558]],147]]]]]]],793],[[[42,[15,38]],765],[[17,[16]]]],[[774,558,[51,[[13,[558]]]],765],793],[[[42,[15,38]],766],[[17,[16]]]],[[774,558,[51,[[13,[558]]]],766],793],[[774,[51,[[13,[[0,[[200,[558]],147]]]]]]],793],[[239,239,[13,[86]],827,61,[22,[236]]],[[17,[[42,[[99,[78]],38]],16]]]],[[829,[13,[86]],827,61,[22,[62]],1,1,828]],[[]],[[558,[200,[558]]],558],[[]],[[558,[200,[558]]],558],[[[816,[387]],1],[[816,[387]]]],[[[873,[392]],1],[[873,[392]]]],[[837,1],837],[792,1],[[],1],[[],1],0,[[824,199]],[[825,199]],[[241,199]],[[239,199]],[[827,199]],[[828,199]],[[395,199]],[[833,199]],[[834,199]],[[835,199]],[[488,199]],[[558,199]],[[845,199]],[[846,199]],[[849,199]],[[850,199]],[[802,558],558],[[793,[22,[44]]],774],[[558,[22,[44]]],558],[[],[[17,[[4,[9]],16]]]],[[],[[4,[9]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[],[[4,[60]]]],0,[[794,787],794],0,0,[558,558],[158,1],0,0,0,[11,[[22,[44]]]],[[[13,[78]]],23],[[[816,[387]],[22,[44]]],[[816,[387]]]],[[[876,[387]],[22,[44]]],[[876,[387]]]],[[[877,[387]],[22,[44]]],[[877,[387]]]],0,[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],[[39,[37,38]]]],[[242,49,49],[[17,[242,16]]]],[[774,774,[200,[558]],[200,[558]]],774],[[558,558,86],558],[[558,558,86],558],0,[[15,824],15],[[558,824],558],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[339],[865],[[]],[558],[339],[[],802],[802,802],[[],558],[138,15],[792,[[17,[165,16]]]],[[],[[42,[38]]]],[239,1],[[],1],[558,558],[15,[[17,[[4,[10]],16]]]],[[],[[17,[[4,[10]],16]]]],[558,558],[[],1],[15,[[17,[[4,[10]],16]]]],[[558,[200,[558]]],558],[15,[[17,[[4,[10]],16]]]],[558,558],[[],[[17,[[4,[10]],16]]]],[[],[[4,[10]]]],[[],[[4,[10]]]],[[],[[17,[[4,[10]],16]]]],[[],1],[138,1],[558,558],[558,558],[558,558],[[],[[4,[10]]]],[558,558],[558,558],[[],[[4,[10]]]],[558,558],0,[792,1],[[],1],[792,1],[29,[[17,[1,16]]]],[[],72],[[],1],[239,1],[[],[[4,[57]]]],[[],[[4,[57]]]],[[],[[17,[[4,[57]],16]]]],[[812,44],891],[339,[[311,[[42,[[39,[164,38]],38]],892,310]]]],[[242,49,49,759],[[17,[242,16]]]],[[802,11],558],[[774,774,[51,[[13,[558]]]],[51,[[13,[558]]]],759],774],[774,794],0,[558,558],[[],558],[802,558],[774,774],[558,558],[[],774],0,[[242,49,49],[[17,[242,16]]]],[[774,774,[200,[558]],[200,[558]]],774],[[794,[51,[[13,[558]]]]],794],[[],44],[339,44],[802,558],[[774,78],774],[44,15],[558,802],[893,558],[[],558],[894,558],[855,558],[74,15],[[558,74],558],[[],15],[558,558],0,0,[[[816,[387]],1],[[816,[387]]]],[[[877,[387]],1],[[877,[387]]]],[[837,1],837],[[795,1],795],0,[558,558],[[],[[4,[30]]]],[[],[[4,[30]]]],[[[13,[15]]],[[17,[[4,[3]],16]]]],[[86,866],[[17,[[4,[3]],16]]]],[86,[[17,[15,16]]]],[11,[[17,[[4,[9]],16]]]],[[],[[4,[30]]]],[[],15],[[],15],[[],15],[[],[[4,[3]]]],[86,[[4,[3]]]],[[86,44],[[4,[3]]]],[29,[[4,[3]]]],[[],15],[[],[[17,[[4,[3]],16]]]],[[],[[17,[[4,[3]],16]]]],[[]],[[558,[200,[558]]],558],[[]],[[558,[200,[558]]],558],0,0,0,[[774,[0,[25,67,68]],854,[22,[[104,[881]]]],[22,[11]]],774],[[558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[558,[0,[25,67,68]]],558],[[558,558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[558,27],[[17,[558,16]]]],[[[0,[25,67,68]]],[[799,[[104,[798]]]]]],[[[0,[25,67,68]]],[[799,[[104,[798]]]]]],[[[0,[25,67,68]]],[[799,[[104,[798]]]]]],[[[0,[25,67,68]]],[[799,[[104,[798]]]]]],[[558,[0,[25,67,68]],[799,[[104,[798]]]]],558],[[[0,[25,67,68]],[51,[[13,[558]]]],[799,[[104,[798]]]]],558],[[558,[0,[25,67,68]],[13,[558]],[799,[[104,[798]]]]],558],[[558,801,[13,[558]],1],558],[[[0,[25,67,68]],[51,[[13,[558]]]],[799,[[104,[798]]]]],558],0,[11,558],[803,558],[802,558],[774,774],[[],22],[558,558],[[],15],[[],15],[[[51,[[13,[558]]]]],558],[11,558],[802,558],[774,774],[[],[[22,[74]]]],[558,558],[[],[[22,[74]]]],[11,558],[774,774],[[],22],[558,558],[[],[[22,[74]]]],[[],15],[[],15],[[774,776],774],0,[[[804,[387]],1],[[804,[387]]]],[[35,35],[[17,[35,16]]]],[558,792],0,0,0,0,[[],[[4,[60]]]],0,[[],[[4,[60]]]],0,[11,558],[803,558],[802,558],[774,774],[[],22],[558,558],[[],15],[[],15],[[[51,[[13,[558]]]]],558],0,0,0,0,[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[],[[4,[60]]]],0,[[],[[17,[4,16]]]],[558,558],[[],[[17,[15,16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[138,[22,[236]]],[[17,[138,16]]]],[[138,[22,[236]]],[[17,[138,16]]]],[239,86],[239,1],[15],[[239,86],239],[[558,558]],[15,[[17,[15,16]]]],0,0,[558,895],[[],44],[[],[[22,[44]]]],[837,[[22,[44]]]],[795,[[22,[44]]]],0,0,0,0,[[],[[17,[44,16]]]],[558,558],[[],[[17,[44,16]]]],[[],11],0,0,0,[558,558],[558,558],0,[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[[],[[4,[60]]]],[239,86],0,[44,[[22,[44]]]],[[558,[200,[558]]],558],[[558,[200,[558]]],558],[[]],[[],138],[[]],[11],[[],865],[774,794],[387,[[816,[387]]]],[392,[[873,[392]]]],[387,[[804,[387]]]],[383,[[805,[383]]]],[392,[[874,[392]]]],[[],860],[392,[[810,[392]]]],[[],862],[392,[[875,[392]]]],[387,[[876,[387]]]],[387,[[877,[387]]]],[387,[[790,[387]]]],[86,239],[[[39,[896,38]],419,44,[22,[[42,[44,38]]]],[22,[897]],44,1],[[17,[812,16]]]],[[239,239,239],829],[[392,392],[[813,[392,392]]]],[[[51,[173]]],837],[[[51,[173]]],795],[[],799],[[558,558,558],847],[[],848],[[157,[42,[[39,[37,38]],38]],[22,[88]]],339],[[[0,[399,400,67]]],[[810,[[0,[399,400,67]]]]]],[157,339],[[44,44],4],[[44,44],15],[[157,44],339],[890,22],[[812,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[558,[42,[558,38]]]],[[558,[42,[558,38]]]],[558,558],[558,558],[[]],[[]],0,[[],44],[774,774],[558,558],0,[[[790,[387]]],[[17,[44,16]]]],0,0,0,0,[[794,[51,[[13,[558]]]]],794],[[],35],[[774,[899,[898]],[899,[900]]],[[17,[901,16]]]],[[558,[200,[558]]],558],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[57]],16]]]],0,[[842,[200,[558]]],558],[[844,[200,[558]]],558],[[242,49,49],[[17,[242,16]]]],[[774,774,[200,[558]],[200,[558]]],774],[792,[[17,[[104,[11]],16]]]],0,[[558,[51,[[13,[[0,[[200,[558]],147]]]]]]],558],[[558,[51,[[13,[[0,[[200,[558]],147]]]]]],852],558],0,0,[11,239],[[11,[13,[11]],11],[[59,[58,57]]]],[[11,[13,[11]],11],[[59,[70,60]]]],[[11,[13,[11]],11,61],[[59,[63,60]]]],[[78,1],[[17,[[4,[57]],16]]]],0,[[239,239],[[22,[156]]]],[[],173],[837,173],[795,173],[[],[[4,[10]]]],[[],[[4,[10]]]],[[],[[4,[10]]]],[[],[[4,[10]]]],[[558,558,12],558],0,0,[[],558],0,0,0,0,[792,[[42,[558,38]]]],[[558,[200,[558]]],558],0,0,0,[[558,11],558],0,[[],15],[558,558],[774,[[17,[16]]]],0,[[11,558,91],558],[[774,558,91],774],[[74,91],[[17,[22,16]]]],[[558,558,91],558],[[74,91],[[17,[15,16]]]],[[74,91],[[17,[15,16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[558,558],[[[902,[[902,[[902,[[902,[902]]]]]]]],[902,[[902,[[902,[[902,[902]]]]]]]]],558],[[558,145,[22,[56]]],558],0,[[[790,[387]],832],[[790,[387]]]],[[],1],[[],15],[837,1],[795,1],0,0,0,[[[0,[25,67,68,147]],[51,[[13,[558]]]]],558],[15],[[558,558]],[15,[[17,[15,16]]]],[11],[[774,49,49],774],[[872,[42,[62,38]]],558],[[[200,[558]],558],558],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[558,[200,[558]]],558],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[11,11],[[17,[[4,[9]],16]]]],[[11,11],[[17,[[4,[9]],16]]]],[[11,11,44],[[17,[[4,[9]],16]]]],[[11,11],[[17,[[4,[9]],16]]]],[[[59,[63,60]],[22,[11]],[22,[1]]],[[17,[[59,[63,60]],16]]]],[[558,[13,[86]]],558],[173,172],[[]],[[],15],[802,558],[774,774],[558,558],0,[[794,[51,[[13,[558]]]]],794],[[138,25,93],[[17,[15,16]]]],[[558,[104,[25]],[799,[[104,[798]]]],93],558],[[25,93],[[17,[15,16]]]],[[558,44,[0,[27,67,68,26]]],558],[[558,558,849],558],[[558,558,849],558],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[558,176],558],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[558,176],558],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[558,176],558],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[558,176],558],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[558,176],558],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[558,176],558],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[558,176],558],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[558,176],558],[792,[[42,[[104,[11]],38]]]],[[138,239,239,[22,[236]]],[[17,[138,16]]]],[[558,78],558],[[829,86,[22,[236]]],[[17,[86,16]]]],[[829,86,[22,[236]]],[[17,[86,16]]]],[[829,86,[22,[236]]],[[17,[86,16]]]],[[],[[22,[897]]]],[837,[[22,[897]]]],[795,[[22,[897]]]],0,0,0,0,0,0,[[[4,[3]]],[[4,[3]]]],[[],[[799,[[104,[798]]]]]],[[558,74,1,1,[22,[56]],1],558],[[558,44,1,1,[22,[56]],1],558],[[[816,[387]],44],[[816,[387]]]],[858,[[17,[242,16]]]],[[795,858],[[17,[242,16]]]],[[[51,[173]],838],[[17,[774,16]]]],[[[51,[173]],839],[[17,[774,16]]]],[[[804,[387]]],[[17,[151,16]]]],[[[805,[383]]],[[17,[151,16]]]],[[[790,[387]]],[[17,[151,16]]]],[[[22,[44]]],[[17,[151,16]]]],[[795,[22,[44]]],[[17,[151,16]]]],[774,[[17,[[104,[151]],16]]]],[859,[[17,[[77,[[104,[151]]]],16]]]],0,0,[[15,15,825,1],[[17,[[4,[30]],16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[[],[[4,[60]]]],0,[[774,[51,[[13,[558]]]]],774],0,[[138,[4,[10]],22],[[17,[138,16]]]],[[138,49,22],[[17,[138,16]]]],[[[13,[78]],49],[[17,[15,16]]]],[[138,49,25],[[17,[138,16]]]],[[44,1]],[[[790,[387]],1],[[790,[387]]]],[[823,840],558],[[[813,[392]],1],[[813,[392]]]],[[[804,[387]],1],[[804,[387]]]],[[[805,[383]],1],[[805,[383]]]],[[[876,[387]],1],[[876,[387]]]],[[[790,[387]],1],[[790,[387]]]],[[138,1],138],[[558,72],558],[[339,[22,[88]]]],[86,4],[86,15],[[802,86],558],[[774,86],774],[[558,86],558],[86,4],[[774,86,[200,[558]]],774],[[558,86,[200,[558]]],558],[558,558],[[]],[[]],[[558,[22,[56]],1],558],0,[558,558],[558,558],[[774,172,857],[[17,[16]]]],[[774,172,856],[[17,[16]]]],0,0,0,[[86,44],15],[[802,558,558],558],[[774,86,78],774],[[558,[200,[558]],[200,[558]]],558],[[339,44,44]],[[339,44,44]],0,0,[[138,44,44],138],[[44,44]],[[138,44,44],138],[[44,44]],[[339,44,44]],[[339,44,44]],[[339,44,44],339],[[339,44,44],339],0,[1,4],[[802,29],558],[[774,11,29],774],[[558,1],558],[[558,[51,[[13,[[0,[[200,[558]],147]]]]]],[51,[[13,[1]]]]],558],[[774,[51,[[13,[558]]]],[51,[[13,[1]]]],1,1],774],[29,4],[[558,29],558],[29,15],[[558,558,12,1],558],[558,558],0,[[[13,[12]]],[[4,[10]]]],[11,[[4,[10]]]],0,[[774,12],774],[12,22],[[558,12],558],[12,15],[12,15],[558,903],[11,[[4,[9]]]],[11,[[4,[9]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[86,[22,[56]]],[[17,[[4,[9]],16]]]],0,0,0,[11,[[17,[15,16]]]],0,[[558,35],558],0,[558,872],[15],[[558,558]],[15,[[17,[15,16]]]],[[794,[51,[11]]],794],[[558,11],558],0,[11,558],[803,558],[802,558],[774,774],[[],22],[558,558],[[],15],[[[51,[[13,[558]]]]],558],[[],[[799,[[104,[798]]]]]],[[802,558],558],[[774,78],774],[[793,[22,[44]]],774],[[558,[22,[44]]],558],[[138,[97,[95,96]]],[[17,[138,16]]]],[[[4,[30]]],[[17,[15,16]]]],[[558,[200,[558]]],558],[95,[[17,[15,16]]]],[95,15],[96,[[17,[15,16]]]],[96,15],[[]],[[138,[97,[95,96]]],138],[[[4,[30]]],[[17,[15,16]]]],[558,558],[558,558],[[86,86,239,827,61,[22,[236]]],[[17,[[42,[86,38]],16]]]],[[558,558,558],558],[[841,[200,[558]]],842],[[843,[200,[558]]],844],[44,15],[[558,558,239,827],558],[61,[[17,[[4,[60]],16]]]],[774,[[17,[16]]]],[859,[[17,[16]]]],[774,[[17,[16]]]],[855,[[22,[53]]]],[339,[[39,[37,38]]]],[[],[[42,[[13,[12]],38]]]],[[774,1],[[17,[62,16]]]],[558,[[17,[62,16]]]],[[[22,[11]],1],[[17,[242,16]]]],[[[22,[11]],1],[[17,[242,16]]]],[151,[[17,[92,16]]]],[[558,151,889],[[17,[92,16]]]],[[],[[4,[9]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[558,558],[11,[[17,[15,16]]]],[[],62],[[],62],[[],62],[[],62],0,[[],[[4,[9]]]],0,0,[[774,78,[51,[[13,[558]]]],[51,[[13,[1]]]],1,1],774],[[138,241,[22,[236]]],[[17,[138,16]]]],0,[[239,86,[22,[236]],25,25,25,[22,[1]]],[[17,[86,16]]]],[[239,86,[22,[236]],[22,[1]]],[[17,[86,16]]]],[[829,86,[22,[236]],[22,[1]]],[[17,[86,16]]]],[[829,86,[22,[236]]],[[17,[86,16]]]],[[829,86,[22,[236]]],[[17,[86,16]]]],[[829,86,[22,[236]]],[[17,[86,16]]]],[[239,86,[22,[236]],[22,[1]]],[[17,[86,16]]]],[[829,86,[22,[236]],[22,[1]]],[[17,[86,16]]]],[[239,86,[22,[236]],[22,[1]]],[[17,[86,16]]]],[[829,86,[22,[236]],[22,[1]]],[[17,[86,16]]]],[[138,[0,[25,26]]],[[17,[138,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[53,[[17,[855,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[11,[[17,[44,16]]]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[12,[[17,[833,16]]]],[78,[[17,[834,16]]]],[87,[[17,[835,16]]]],[[157,[42,[[39,[37,38]],38]],[22,[88]]],[[17,[339,217]]]],[[[42,[12,38]]],[[17,[16]]]],0,0,[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],11],0,[792,558],[[],[[17,[4,16]]]],[803,558],[802,558],[[774,[22,[[42,[62,38]]]],761],774],[558,558],[[],[[17,[15,16]]]],[803,558],[802,558],[[774,[22,[[42,[62,38]]]],761],774],[558,558],[[],158],[[774,49],774],[558,558],[[[775,[62]],11,239,239],[[17,[242,16]]]],[[[775,[62]],11,239,239],[[17,[242,16]]]],0,[[[790,[387]],1],[[790,[387]]]],0,0,[[794,786],794],0,[339,[[22,[88]]]],[339,[[22,[88]]]],[[1,1],[[17,[242,16]]]],[[558,1,1],558],0,0,[339,[[13,[[39,[37,38]]]]]],[339,892],[[774,12],774],[12,22],[[558,12],558],[12,15],[12,15],0,[[107,[42,[56,38]]]],[[107,[13,[56]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],[828,[[22,[78]]]],[239,86],0,[239,1],0,0,0,[[[200,[558]]],841],[[842,[200,[558]]],843],[[844,[200,[558]]],843],0,0,0,0,[[794,774],794],[[[873,[392]],44],[[873,[392]]]],[[[876,[387]],44],[[876,[387]]]],[[795,[22,[44]]],795],[[837,1],837],[44],[[[816,[387]],44],[[816,[387]]]],[[[877,[387]],[22,[44]]],[[877,[387]]]],[[774,558],774],[[[816,[387]],[22,[[42,[62,38]]]]],[[816,[387]]]],[[[804,[387]],[22,[[42,[62,38]]]]],[[804,[387]]]],[[[805,[383]],[22,[[42,[62,38]]]]],[[805,[383]]]],[[[790,[387]],[22,[[42,[62,38]]]]],[[790,[387]]]],[[774,[51,[[13,[558]]]]],774],0,[[[816,[387]],[22,[12]]],[[816,[387]]]],[[837,[22,[12]]],837],[[874,[22,[389]]],874],[[860,[22,[389]]],860],[[[810,[392]],[22,[395]]],[[810,[392]]]],[[862,[22,[395]]],862],[[[813,[392]],488],[[813,[392]]]],[[774,[51,[[13,[774]]]]],774],[[[813,[392]],[22,[44]]],[[813,[392]]]],[[[873,[392]],[22,[62]]],[[873,[392]]]],[[[873,[392]],[22,[62]]],[[873,[392]]]],[[847,558],847],[[848,558],848],[[[816,[387]],12],[[816,[387]]]],[[[873,[392]],12],[[873,[392]]]],[[837,12],837],[[837,[22,[151]]],837],[[[816,[387]],[22,[[104,[151]]]]],[[816,[387]]]],[[[816,[387]],[22,[[13,[35]]]]],[[816,[387]]]],[[[816,[387]],830],[[816,[387]]]],[[837,830],837],[[[816,[387]],12],[[816,[387]]]],[[837,12],837],[[860,172],860],[[862,172],862],[[[873,[392]],[22,[44]]],[[873,[392]]]],[[848,558,558,558],848],[[847,558,558,558],847],[[848,558,558,558],848],[[847,558],847],[[848,558],848],[[[816,[387]],1],[[816,[387]]]],[[[876,[387]],1],[[876,[387]]]],[[837,1],837],[[837,[22,[44]]],837],[[795,[22,[44]]],795],[[[875,[392]],904],[[875,[392]]]],[[[876,[387]],904],[[876,[387]]]],[[847,558],847],[[848,558],848],[[848,558],848],[[847,558],847],[[848,558],848],[[[816,[387]],1],[[816,[387]]]],[[837,1],837],[[847,558],847],[[[816,[387]],[22,[44]]],[[816,[387]]]],[[[804,[387]],[22,[44]]],[[804,[387]]]],[[[805,[383]],[22,[44]]],[[805,[383]]]],[[[877,[387]],[22,[44]]],[[877,[387]]]],[[[790,[387]],[22,[44]]],[[790,[387]]]],[[837,[22,[44]]],837],[[795,[22,[44]]],795],[[[816,[387]],[22,[44]]],[[816,[387]]]],[[[877,[387]],[22,[44]]],[[877,[387]]]],[[848,558],848],[[[873,[392]],62],[[873,[392]]]],[[[816,[387]],[22,[831]]],[[816,[387]]]],[[837,[22,[831]]],837],[[774,854],774],[172],[[[816,[387]],[22,[[200,[172]]]]],[[816,[387]]]],[[[877,[387]],[22,[[200,[172]]]]],[[877,[387]]]],[[837,172],837],[[795,172],795],[[[816,[387]],[22,[[104,[791]]]]],[[816,[387]]]],[[774,1],774],[[[816,[387]],[22,[[42,[44,38]]]]],[[816,[387]]]],[[[804,[387]],[22,[[42,[44,38]]]]],[[804,[387]]]],[[[805,[383]],[22,[[42,[44,38]]]]],[[805,[383]]]],[[[876,[387]],[22,[[42,[62,38]]]]],[[876,[387]]]],[[[790,[387]],[22,[[42,[44,38]]]]],[[790,[387]]]],[[774,1],774],[[[816,[387]],[22,[12]]],[[816,[387]]]],[[837,[22,[12]]],837],[[[873,[392]],12],[[873,[392]]]],[1],[[[816,[387]],1],[[816,[387]]]],[[[877,[387]],1],[[877,[387]]]],[[837,1],837],[[795,1],795],[[[816,[387]],[22,[897]]],[[816,[387]]]],[[[804,[387]],[22,[897]]],[[804,[387]]]],[[[805,[383]],[22,[897]]],[[805,[383]]]],[[[790,[387]],[22,[897]]],[[790,[387]]]],[[837,[22,[897]]],837],[[795,[22,[897]]],795],[[774,11,[22,[78]]],774],[[[813,[392]],[22,[44]]],[[813,[392]]]],[[[816,[387]],[104,[151]]],[[816,[387]]]],[[[876,[387]],[104,[151]]],[[876,[387]]]],[[[877,[387]],[104,[151]]],[[877,[387]]]],[[837,[104,[151]]],837],[[795,151],795],[[837,25],[[17,[837,16]]]],[[[876,[387]],151],[[876,[387]]]],[[[877,[387]],151],[[877,[387]]]],[[847,558],847],[[848,558],848],[[774,1],774],[[[816,[387]],44],[[816,[387]]]],[[837,44],837],[[[816,[387]],44],[[816,[387]]]],[[837,44],837],[[774,1],774],[[[813,[392]],1],[[813,[392]]]],[[774,1],774],[[[873,[392]],[22,[62]]],[[873,[392]]]],[[[816,[387]],1],[[816,[387]]]],[[837,1],837],[[774,1],774],[[339,[22,[88]]],339],[[339,[22,[88]]],[[39,[37,38]]]],[[848,558],848],[[847,558],847],[774,774],[[558,[200,[558]]],558],[[],[[4,[57]]]],[[],[[4,[57]]]],[[],[[17,[[4,[57]],16]]]],0,0,[[[4,[10]],4],[[17,[4,16]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[777,[0,[25,67,68]]],15],[[777,[0,[25,67,68]]],15],[[[13,[[99,[78]]]],[0,[25,67,68]]],15],[[[13,[[99,[78]]]],[0,[25,67,68]]],15],[[[13,[[0,[222,272]]]],[0,[23,52]],[22,[[104,[134]]]]],[[39,[37,38]]]],[[[13,[[0,[222,272]]]],88,[0,[23,52]],[22,[[104,[134]]]]],[[39,[37,38]]]],[[[4,[28]],78,78],[[4,[28]]]],[[[42,[[99,[78]],38]],[13,[[39,[37,38]]]]],1],[19,15],0,0,[[],15],[[],15],[[],[[17,[15,16]]]],[[],[[17,[[4,[3]],16]]]],[[],[[17,[[4,[3]],16]]]],[[],[[4,[18]]]],0,0,0,0,0,0,[2],[[],17],[[[905,[[51,[37]],23]]],[[17,[217]]]],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[[]],[[]],[[]],[[]],[138,138],[[[905,[[0,[147,[51,[37]]]],[0,[147,23]]]]],[[905,[[0,[147,[51,[37]]]],[0,[147,23]]]]]],[[]],[138,[[17,[44]]]],[44],[44],[44],[44],[44],[44],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[[905,[[0,[166,[51,[37]]]],[0,[166,23]]]],45],[[17,[46]]]],[[138,27],17],[[]],[[]],[138,[[408,[138]]]],[[],22],[[[905,[[51,[37]],23]]],22],[[],44],[[],44],[[]],[[]],[[[906,[392,416]]]],[[]],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[392,416],[[906,[392,416]]]],[[23,[42,[12,38]]],[[905,[[51,[37]],23]]]],[[],[[17,[22]]]],[[[906,[392,416]]],22],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,[[]],[[]],[[821,[51,[[13,[12]]]]],558],[44],[44],[44],[[821,[51,[[13,[12]]]]],558],[[]],[[],44],[[]],[[821,[51,[[13,[12]]]]],558],[[],17],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,[2],[[[22,[11]],1],[[17,[[59,[58,57]],16]]]],[[[22,[11]]],[[17,[[59,[58,57]],16]]]],[[[22,[11]],61,1,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[11]],61,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[11]],1],[[17,[[59,[70,60]],16]]]],[[]],[[]],0,0,0,0,[176,176],[[]],0,0,[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[],176],[44],[44],[44],0,0,[[]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[],44],[[]],[[],[[4,[10]]]],[[],[[4,[10]]]],[[],[[4,[57]]]],[[],[[4,[57]]]],[[],[[4,[60]]]],[[],[[4,[60]]]],0,0,[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[11,[13,[11]],11],[[59,[58,57]]]],[[11,[13,[11]],11],[[59,[70,60]]]],[[11,[13,[11]],11,61],[[59,[63,60]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[60]]]],[[]],[[],17],[[],17],0,[[],106],0,[[],158],0,[[]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],[[],[[4,[30]]]],0,0,0,0,[[],[[4,[57]]]],[[],[[4,[57]]]],0,0,0,0,0,0,0,0,[2],[[[22,[11]],1],[[17,[[59,[58,57]],16]]]],[[[22,[11]]],[[17,[[59,[58,57]],16]]]],[[[22,[11]],61,1,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[11]],61,1,[22,[62]]],[[17,[[59,[63,60]],16]]]],[[[22,[11]],1],[[17,[[59,[70,60]],16]]]],[[],[[4,[9]]]],[[]],[[]],[907,907],[[]],[44],[44],[44],[[907,907],1],[[],1],[[],1],[[],1],[[],1],[[907,45],[[17,[46]]]],[[]],[[907,199]],0,[[],44],[[]],[[907,11],1],[[]],[[],17],[[],17],[[],106],[[]],0,0,0,0,[2],[[]],[[]],[[[908,[147]]],[[908,[147]]]],[[]],[44],[44],[44],[[]],[11,[[22,[907]]]],[[],44],[[]],0,[[[908,[272]],11],[[22,[272]]]],[[[13,[12]],[22,[61]]],22],[[[908,[86]],[13,[12]],[22,[61]]],[[22,[86]]]],[[[908,[87]],[13,[12]],[22,[61]]],[[22,[87]]]],0,[[]],[[],17],[[[22,[61]]],[[17,[16]]]],[[907,[22,[61]]],[[17,[[908,[87]],16]]]],[[907,[22,[61]]],[[17,[[908,[86]],16]]]],[[],17],[[],106],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],35],[35,[[17,[15,16]]]],0,[[],35],0,[44,[[17,[53,16]]]],[44,53],[[],35],[44,53],[[35,35],[[17,[35,16]]]],0,[[]],[44],0,0,0,0,0,0,0,0,0,0,0,0,[1],[[]],[[],1],[201],[[[59,[63,60]],[22,[11]],[22,[1]]],[[17,[[59,[63,60]],16]]]],0,0,0,[[[22,[88]]]],[[[179,[86]],[179,[12]],[22,[88]]]],[[[179,[86]],[179,[12]],[22,[88]]]],0,[869,558],[[]],[[]],[[869,61],558],[[869,558,61],558],[[869,62],558],[869,558],[869,558],[869,558],[44],[44],[44],[869,558],[[]],[869,558],[[],44],[[]],[869,558],[869,558],[869,558],[869,558],[869,558],[869,558],[869,558],[869,558],[869,558],[[869,[22,[62]],[22,[1]]],558],[[869,[51,[11]],[51,[11]]],558],[869,558],[[869,11],558],[869,558],[[869,61],558],[[869,11],558],[[869,241],558],[[],17],[[],17],[[],106],[[]],[869,558],[869,558],[[869,61],558],[869,558],0,[[242,19],[[17,[15,16]]]],[[],[[17,[11,16]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[2],[[],17],[[[405,[23]]],17],[406,17],[[[407,[416,27]]],17],[[[408,[416]]],17],[[[409,[416,27]]],17],[[[411,[416,25]]],17],[[[410,[416,25]]],17],[[[412,[416]]],17],[[[413,[416,27]]],17],[[[414,[416]]],17],[[[415,[416,27]]],17],[909,[[17,[217]]]],[[[910,[[51,[37]],23]]],[[17,[217]]]],[[],17],[[[405,[43]]],17],[406,17],[[[409,[911,27]]],17],[[[411,[911,25]]],17],[[[410,[911,25]]],17],[[138,27],[[17,[1]]]],[[138,27],[[17,[1]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[138,138],[[[910,[[0,[147,[51,[37]]]],[0,[147,23]]]]],[[910,[[0,[147,[51,[37]]]],[0,[147,23]]]]]],[[]],[23,[[405,[23]]]],[138,[[17,[44]]]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[44],[[],406],[[138,27],[[407,[138,27]]]],[[138,27],[[17,[22]]]],[[[910,[[0,[166,[51,[37]]]],[0,[166,23]]]],45],[[17,[46]]]],[[138,27],17],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[138,[[408,[138]]]],[[],22],[[[405,[23]]],22],[406,22],[[[407,[416,27]]],22],[[[408,[416]]],22],[[[409,[416,27]]],22],[[[411,[416,25]]],[[22,[138]]]],[[[410,[416,25]]],22],[[[412,[416]]],22],[[[413,[416,27]]],22],[[[414,[416]]],22],[[[415,[416,27]]],22],[909,22],[[[910,[[51,[37]],23]]],22],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[138,27],[[409,[138,27]]]],[[138,25],[[410,[138,25]]]],[[138,25],[[411,[138,25]]]],[[153,[352,[[51,[37]]]],[42,[12,38]]],909],[[23,[42,[12,38]]],[[910,[[51,[37]],23]]]],[[],[[17,[22]]]],[[[408,[416]]],[[17,[22]]]],[[[410,[416,25]]],[[17,[22]]]],[[],[[17,[22]]]],[[[410,[911,25]]],[[17,[22]]]],[44,[[17,[22]]]],[[138,27],[[17,[[22,[44]]]]]],[[]],[[[405,[23]]]],[406],[[[407,[416,27]]]],[[[408,[416]]]],[[[409,[416,27]]]],[[[411,[416,25]]]],[[[410,[416,25]]]],[[[412,[416]]]],[[[413,[416,27]]]],[[[414,[416]]]],[[[415,[416,27]]]],[[138,44],[[412,[138]]]],[[138,27],[[413,[138,27]]]],[[138,44],[[414,[138]]]],[[138,27],[[415,[138,27]]]],[[]],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[392,416],[[17,[217]]]],[[15,19],15],[[15,19],15],[[15,11],15],[[15,11],15],0,0,0,[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[912,35],[[912,45],[[17,[46]]]],[[]],[[]],[[913,11],[[17,[912,16]]]],[[],44],[[],44],[[]],[[]],[912,[[22,[44]]]],[913,151],[912,[[22,[15]]]],[912,[[22,[15]]]],[912,[[22,[15]]]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[]],[[]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[44],[44],[44],[44],[44],[44],[44],[44],[44],[819],[44],[44],[44],[820],[[]],[[]],[[]],[[]],[[],44],[[],44],[[],44],[[],44],[[]],[[]],[[]],[[]],[[817,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[819,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[818,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[820,44],[[17,[[22,[[42,[242,38]]]],16]]]],[[[816,[[39,[387,38]]]],[104,[151]]],819],[[[816,[[39,[387,38]]]],[104,[151]]],820],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[[],106],[[]],[[]],[[]],[[]],0,0,0,0,[[],15],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[10]],16]]]],[[],[[17,[[4,[57]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],35],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[57]],16]]]],[[],[[17,[[4,[30]],16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[177,[[17,[15,16]]]],[[],[[17,[[4,[30]],16]]]],[11,[[17,[15,16]]]],[61,[[17,[[4,[60]],16]]]],[[],[[104,[103]]]],[11,[[17,[15,16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[30]],16]]]],[[],[[17,[[4,[57]],16]]]],0,[[138,44,44],138],[[138,44,44],138],[[44,[42,[1,38]]]],0,[[13,1,1]],[[[13,[[0,[222,[180,[[0,[222,[180,[[0,[222,[180,[[0,[222,180]]]]]]]]]]]]]]]]]],[[[13,[[0,[222,[180,[[0,[222,[180,[[0,[222,[180,[[0,[222,180]]]]]]]]]]]]]]]]]],[[[13,[15]],[13,[1]],1],[[17,[223,16]]]],[[11,[13,[15]],[13,[1]],1],[[17,[[4,[8]],16]]]],[15,[[17,[[39,[37,38]],16]]]],0,[[]],[[]],[[903,11],558],[[903,558,1],558],[[903,558],558],[[903,11],558],[44],[44],[44],[[903,558],558],[903,558],[[903,11,44],558],[[903,558],558],[[]],[[903,78,1],558],[[],44],[[]],[903,558],[[903,[22,[62]]],558],[903,558],[[903,558,558,1],558],[[903,558,558,1],558],[[903,558,558,1,86],558],[[903,[22,[62]]],558],[[903,11],558],[[903,11,44],558],[[903,11,44],558],[[903,11],558],[[903,11,44],558],[[903,558],558],[[903,86,[22,[56]]],558],[[903,[22,[62]]],558],[[903,35,850],558],[[903,850],558],[[903,[22,[61]],[22,[62]],850],558],[[903,44],558],[903,558],[[903,850],558],[903,558],[[],17],[[],17],[[],106],[[]],[[[0,[383,387,138]]],[[17,[914,16]]]],[[914,12,[22,[44]],1,[22,[151]],44,44,[22,[12]],[22,[12]],12,[22,[831]],1],[[17,[16]]]],[[914,12,[22,[44]],1,[22,[151]],44,44,[22,[12]],[22,[12]],12,[22,[831]],1,12],[[17,[16]]]],[[[13,[12]]],1],0,0,0,0,0,0,0,0,0,0,0,[2],[2],[[],15],[15,[[17,[15,16]]]],[[15,[0,[6,73]]]],[[15,15]],[[15,[0,[6,73]]]],[[15,15]],[[15,15],[[17,[15,16]]]],[15,[[22,[44]]]],[15,[[22,[44]]]],[29,[[4,[30]]]],[[],[[17,[[4,[30]],16]]]],0,[15,[[17,[[4,[18]],16]]]],[[15,44],[[39,[37,38]]]],[[],134],[[],134],[15,[[4,[3]]]],[154,[[4,[28]]]],[154,[[4,[28]]]],[15,154],[15,15],[15,15],[[],[[17,[44,16]]]],[15,[[17,[44,16]]]],[15,[[17,[[4,[8]],16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[15,[[17,[[4,[10]],16]]]],[[]],[[]],[[]],[[]],[[]],[[]],[35,[[17,[15,16]]]],[[15,35],[[17,[15,16]]]],[[15,35],[[17,[15,16]]]],[15,[[17,[226,16]]]],[15,[[17,[15,16]]]],[15,[[17,[15,16]]]],[[15,15],[[17,[15,16]]]],[[15,7],[[17,[15,16]]]],[[],[[41,[[40,[[39,[37,38]]]]]]]],[[],[[42,[[39,[37,38]],38]]]],[15,[[42,[[39,[37,38]],38]]]],[15,15],[[15,53,53],[[17,[15,16]]]],[[15,53],[[17,[15,16]]]],[[15,53],[[17,[15,16]]]],[72,72],[15,15],[[],[[104,[154]]]],[[]],[[]],[[15,1],15],[[15,1],15],[[15,1],15],[[15,1],15],[15,[[17,[[59,[58,57]],16]]]],[15,[[17,[[59,[63,60]],16]]]],[15,[[17,[[59,[65,64]],16]]]],[[],15],[44],[44],[15],[44],[44],[44],[44],[[15,86,866],[[17,[15,16]]]],[[15,15]],[[15,15]],[[15,[0,[6,73]]]],[[15,[0,[6,73]]]],[44],[44],[44],[[],15],[[],35],[15,[[17,[[59,[66,60]],16]]]],[[72,72],1],[[15,15],1],[[]],[[15,15],[[17,[[4,[10]],16]]]],[[15,11],[[17,[[4,[10]],16]]]],[[15,188],[[17,[[4,[10]],16]]]],[[]],[[15,11]],[[15,15],[[17,[[4,[10]],16]]]],[[15,188]],[[],1],[[],1],[[],1],[[],1],[15,44],[15,[[17,[15,16]]]],[[15,15],[[17,[15,16]]]],[[15,53,44],[[17,[15,16]]]],[15,[[17,[[4,[33]],16]]]],[15,[[17,[[4,[31]],16]]]],[[],[[77,[92]]]],[[15,146],[[17,[15,16]]]],[[[4,[10]]],[[17,[15,16]]]],[[15,[4,[10]],1],[[17,[15,16]]]],[15,[[17,[15,16]]]],[[72,45],[[17,[46]]]],[[15,45],[[17,[46]]]],[[15,45],[[17,[46]]]],[15,62],[[]],[[]],[[[59,[63,60]]],15],[[]],[[[59,[66,60]]],15],[[[59,[58,57]]],15],[[[4,[28]]],15],[[[59,[70,60]]],15],[[11,[13,[53]],1],[[17,[15,16]]]],[[11,[13,[53]],35,1],[[17,[15,16]]]],[[11,[42,[[39,[37,38]],38]],35],15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[[11,[42,[75,38]]],15],[[11,[42,[86,38]]],15],[[11,[42,[74,38]]],15],[[11,[42,[81,38]]],15],[[11,[42,[56,38]]],15],[[11,[42,[78,38]]],15],[[11,[42,[55,38]]],15],[[11,[42,[12,38]]],15],[[11,[42,[84,38]]],15],[[11,[42,[87,38]]],15],[[11,44,35],15],[44,[[17,[53,16]]]],[15,44],[44,[[22,[54]]]],[44,53],[[]],[[15,188],[[17,[[4,[10]],16]]]],[[15,15],[[17,[[4,[10]],16]]]],[[15,11],[[17,[[4,[10]],16]]]],[[]],[[15,188],[[17,[[4,[10]],16]]]],[[15,11],[[17,[[4,[10]],16]]]],[[15,15],[[17,[[4,[10]],16]]]],[[],1],[[15,[22,[44]]],15],[15,[[17,[[4,[76]],16]]]],[15,[[17,[[4,[57]],16]]]],[15,[[17,[[4,[60]],16]]]],[15,[[17,[[4,[85]],16]]]],[15,[[17,[[4,[30]],16]]]],0,[15,[[17,[[4,[3]],16]]]],[[],44],[[],44],[[],44],[[]],[[]],[[]],[15,242],[[]],[138,15],[15,15],[[],1],[15,[[17,[[4,[10]],16]]]],[15,[[17,[[4,[10]],16]]]],[15,[[17,[[4,[10]],16]]]],[15,[[17,[[4,[10]],16]]]],[15,[[17,[[4,[10]],16]]]],[[],[[4,[10]]]],[[],[[4,[10]]]],[[],1],[[],1],[[],72],[15,915],[[],44],[44,15],[15,[[17,[[4,[3]],16]]]],[15,558],[[]],[[15,11],[[17,[[4,[10]],16]]]],[[15,15],[[17,[[4,[10]],16]]]],[[15,188],[[17,[[4,[10]],16]]]],[[]],[[15,15],[[17,[[4,[10]],16]]]],[[15,188],[[17,[[4,[10]],16]]]],[[15,11],[[17,[[4,[10]],16]]]],[15,[[22,[73]]]],[[],15],[[],[[22,[74]]]],[15,15],[[],[[22,[74]]]],[[],15],[15,[[22,[73]]]],[[],15],[[],[[17,[15,16]]]],[[15,15]],[[15,[0,[6,73]]]],[[15,[0,[6,73]]]],[[15,15]],[[],44],[[],[[17,[44,16]]]],[[],11],[[11,[51,[[13,[62]]]]],15],[[11,[51,[[13,[[22,[[42,[12,38]]]]]]]]],15],[[11,[51,[[13,[[22,[87]]]]]]],15],[[11,[51,[[13,[[77,[11]]]]]]],15],[[11,[51,[[13,[[22,[237]]]]]]],15],[[11,[51,[[13,[81]]]]],15],[[11,[51,[[13,[237]]]]],15],[[11,[51,[[13,[84]]]]],15],[[11,[51,[[13,[15]]]]],15],[[11,[51,[[13,[75]]]]],15],[[11,[79,[78]]],15],[[11,[51,[[13,[[22,[1]]]]]]],15],[[11,[51,[[13,[1]]]]],15],[[11,[51,[[13,[[22,[74]]]]]]],15],[[11,[51,[[13,[53]]]]],15],[[11,[51,[[13,[[22,[62]]]]]]],15],[[11,[51,[[13,[238]]]]],15],[[11,15],15],[[11,[51,[[13,[11]]]]],15],[[11,[51,[[13,[[22,[84]]]]]]],15],[[11,[51,[[13,[[22,[86]]]]]]],15],[[11,[51,[[13,[[22,[[77,[11]]]]]]]]],15],[[11,[51,[[13,[[22,[15]]]]]]],15],[[11,[51,[[13,[[22,[55]]]]]]],15],[[11,[51,[[13,[87]]]]],15],[[11,[51,[[13,[56]]]]],15],[[11,[51,[[13,[78]]]]],15],[[11,[51,[[13,[158]]]]],15],[[11,[51,[[13,[[22,[81]]]]]]],15],[[11,[79,[87]]],15],[[11,[51,[[13,[[22,[[13,[12]]]]]]]]],15],[[11,[51,[[13,[224]]]]],15],[[11,[51,[[13,[[22,[56]]]]]]],15],[[11,[51,[[13,[74]]]]],15],[[11,[51,[[13,[[77,[[13,[12]]]]]]]]],15],[[11,[51,[[13,[[22,[[77,[[13,[12]]]]]]]]]]],15],[[11,[51,[[13,[[22,[12]]]]]]],15],[[11,[79,[56]]],15],[[11,[51,[[13,[[22,[158]]]]]]],15],[[11,[51,[[13,[[22,[11]]]]]]],15],[[11,[51,[[13,[12]]]]],15],[[11,[51,[[13,[[42,[12,38]]]]]]],15],[[11,[51,[[13,[55]]]]],15],[[11,[79,[86]]],15],[[11,[51,[[13,[[22,[238]]]]]]],15],[[11,[51,[[13,[[22,[224]]]]]]],15],[[11,[51,[[13,[[13,[12]]]]]]],15],[[11,[51,[[13,[[22,[75]]]]]]],15],[[11,771],15],[[11,[51,[[13,[86]]]]],15],[[11,[51,[[13,[[22,[78]]]]]]],15],[[11,35],15],[[44,44],15],[[11,44],15],[915,22],[[]],[[15,11],[[17,[[4,[10]],16]]]],[[15,15],[[17,[[4,[10]],16]]]],[[15,188],[[17,[[4,[10]],16]]]],[[]],[[15,11]],[[15,15],[[17,[[4,[10]],16]]]],[[15,188]],[[],44],0,[15,35],[[],[[4,[10]]]],[[],[[4,[10]]]],[15,[[39,[69,38]]]],[15,15],[[74,91],[[17,[15,16]]]],[[15,145,[22,[56]]],15],[[],15],[[15,[0,[6,73]]]],[[15,[0,[6,73]]]],[[15,15]],[11],[[15,11],15],[[[4,[30]]],[[17,[[4,[3]],16]]]],[[15,[13,[86]]],[[17,[15,16]]]],[[],15],[[25,93],[[17,[15,16]]]],[[15,177],[[17,[15,16]]]],[[15,177],[[17,[15,16]]]],[[15,177],[[17,[15,16]]]],[[15,177],[[17,[15,16]]]],[[15,177],[[17,[15,16]]]],[[15,177],[[17,[15,16]]]],[[15,177],[[17,[15,16]]]],[[15,177],[[17,[15,16]]]],[[15,78],[[17,[15,16]]]],[[15,74,1,1,[22,[56]]],[[17,[15,16]]]],[[15,44,1,1,[22,[56]]],[[17,[15,16]]]],[[15,15],1],[[15,15],1],[[15,72]],[86,15],[[]],[15],[[15,[22,[56]]],15],[915],[[86,44],15],[[15,1],15],[29,15],[12,15],[11,[[4,[9]]]],[[15,44],[[17,[[77,[11]],16]]]],[[15,35],[[17,[15,16]]]],[15,[[17,[225,16]]]],[[15,15]],[[15,[0,[6,73]]]],[[15,[0,[6,73]]]],[[15,15]],[15,[[22,[73]]]],[15,15],[[15,[22,[44]]],15],[[[4,[30]]],[[17,[15,16]]]],[[15,44],15],[95,[[17,[15,16]]]],[95,15],[96,[[17,[15,16]]]],[96,15],[[15,[4,[30]],1],[[17,[15,16]]]],[[[4,[30]]],[[17,[15,16]]]],[[15,[13,[78]]],[[17,[15,16]]]],[[15,[4,[30]],1],[[17,[15,16]]]],[44,15],[15,[[17,[[59,[70,60]],16]]]],[[15,44],[[39,[37,38]]]],[[15,[22,[11]],1],[[17,[242,16]]]],[15,[[104,[103]]]],[[]],[[]],[15,[[77,[15]]]],[[],62],[[15,15],[[17,[15,16]]]],[[],17],[[],17],[[],[[17,[15,16]]]],[[],[[17,[15,16]]]],[[],17],[[],17],[[],17],[[],17],[[],106],[[],106],[[],106],[15,[[17,[[4,[82]],16]]]],[15,[[17,[[4,[30]],16]]]],[15,[[17,[[4,[83]],16]]]],[15,[[17,[[4,[80]],16]]]],[[],[[17,[15,16]]]],[15,[[17,[15,16]]]],[154,[[17,[[4,[28]],16]]]],0,[15,[[17,[[4,[9]],16]]]],[12,15],[[]],[[]],[[]],[[15,[4,[10]],15],[[17,[15,16]]]],0,0,0,0,[[15,15,27],15],[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],0,[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[15],[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],0,0,[15,[[17,[15,16]]]],[[4,15],[[17,[15,16]]]],[7,[[17,[15,16]]]],[[4,7],[[17,[15,16]]]],0,0,0,[2],[[]],[[]],[866,866],[[]],[[],866],[44],[44],0,[44],[[866,866],1],[[],1],[[],1],[[],1],[[],1],[[866,45],[[17,[46]]]],[[]],[[866,199]],[[],44],[[]],[[]],[[],17],[[],17],[[],106],[[]],0,0,[2],[916,15],[916,15],[[]],[[]],[916,916],[[]],[916,15],[44],[44],[44],[[]],[[],44],[[]],[15,916],[[916,[39,[37,38]]]],[[]],[[],17],[[],17],[[],106],[[]],[[916,[39,[37,38]],25]]],"c":[6429,6430,10519,10540,10541,10547,10548,10633,10634,10635,10636,10640,10641,10645,10646,10816,10918,11144,11145,11147,11149,11154,11157,11159,11161,11176,11185,11187,11189,11191,11268,11269,11387,11388,11439,11440,11449,11454,11510,11511,11622,11688,11689,11690,11691,12041,12042,12043,12044,12061,12064,12066,12067,12072,12073,12078,12079,12080,12081,12085,12127,12130,12135,12136,12151,12152,12172,12173,12174,12175,13013,13114,17205,17278,17339,17342,17343,17344,17345,17346,17351,17354,17359,17360,17396],"p":[[15,"bool"],[3,"Private"],[3,"ListType"],[3,"ChunkedArray"],[8,"PolarsNumericType"],[8,"Num"],[8,"ToPrimitive"],[3,"BinaryType"],[3,"Utf8Type"],[3,"BooleanType"],[15,"str"],[15,"u8"],[15,"slice"],[8,"NumOpsDispatchInner"],[3,"Series"],[4,"PolarsError"],[4,"Result"],[3,"FixedSizeListType"],[4,"GroupsProxy"],[8,"PolarsObject"],[3,"ObjectType"],[4,"Option"],[8,"Iterator"],[3,"AmortizedListIter"],[8,"Fn"],[8,"Copy"],[8,"FnMut"],[8,"PolarsDataType"],[3,"SortOptions"],[3,"UInt32Type"],[3,"Float64Type"],[8,"PolarsIntegerType"],[3,"Float32Type"],[3,"SortMultipleOptions"],[4,"DataType"],[8,"NumOpsDispatchCheckedInner"],[8,"Array"],[3,"Global"],[3,"Box"],[3,"Iter"],[3,"Map"],[3,"Vec"],[8,"DoubleEndedIterator"],[15,"usize"],[3,"Formatter"],[3,"Error"],[3,"BooleanArray"],[3,"PrimitiveArray"],[8,"IntoIterator"],[8,"IntoParallelIterator"],[8,"AsRef"],[8,"TrustedLen"],[4,"AnyValue"],[8,"PolarsObjectSafe"],[15,"f32"],[15,"u64"],[3,"Int32Type"],[3,"DateType"],[3,"Logical"],[3,"Int64Type"],[4,"TimeUnit"],[3,"String"],[3,"DatetimeType"],[3,"Int128Type"],[3,"DecimalType"],[3,"DurationType"],[8,"Send"],[8,"Sync"],[8,"ExactSizeIterator"],[3,"TimeType"],[8,"PolarsFloatType"],[4,"IsSorted"],[8,"NumCast"],[15,"f64"],[15,"i16"],[3,"Int16Type"],[4,"Cow"],[15,"u32"],[3,"Range"],[3,"UInt8Type"],[15,"u16"],[3,"UInt16Type"],[3,"UInt64Type"],[15,"i8"],[3,"Int8Type"],[15,"i64"],[15,"i32"],[3,"Bitmap"],[8,"ParallelIterator"],[8,"IndexedParallelIterator"],[4,"QuantileInterpolOptions"],[3,"Field"],[3,"RollingOptionsFixedWindow"],[8,"PolarsOpsNumericType"],[8,"TakeIterator"],[8,"TakeIteratorNulls"],[4,"TakeIdx"],[3,"ViewRepr"],[15,"array"],[3,"Dim"],[3,"ArrayBase"],[3,"OwnedRepr"],[8,"SeriesOpsTime"],[3,"Arc"],[4,"Either"],[3,"TypeId"],[3,"RandomState"],[3,"AnonymousListBuilder"],[3,"AnonymousOwnedListBuilder"],[3,"BinaryChunkedBuilderCow"],[3,"Utf8ChunkedBuilderCow"],[8,"ListBuilderTrait"],[3,"LazyCompact"],[3,"SmartString"],[3,"BoolIterNoNull"],[3,"Utf8Array"],[3,"Utf8IterNoNull"],[3,"BinaryArray"],[3,"BinaryIterNoNull"],[3,"ListArray"],[3,"ListIterNoNull"],[3,"FixedSizeListArray"],[3,"FixedSizeListIterNoNull"],[3,"StructIter"],[3,"SomeIterator"],[3,"ListBooleanChunkedBuilder"],[3,"ListPrimitiveChunkedBuilder"],[3,"BinaryChunkedBuilder"],[3,"ListUtf8ChunkedBuilder"],[3,"ListBinaryChunkedBuilder"],[3,"BooleanChunkedBuilder"],[3,"PrimitiveChunkedBuilder"],[3,"Utf8ChunkedBuilder"],[8,"Any"],[3,"ObjectArray"],[8,"AsFd"],[3,"BorrowedFd"],[8,"Sized"],[8,"AsRawFd"],[19,"MaybeUninit"],[8,"Error"],[3,"RollingVarParams"],[3,"RollingQuantileParams"],[4,"RankMethod"],[3,"RankOptions"],[4,"FillNullStrategy"],[8,"Clone"],[4,"IndexOrder"],[3,"AsOfOptions"],[4,"AsofStrategy"],[3,"Schema"],[3,"ArrowField"],[3,"ArrowSchema"],[8,"SeriesTrait"],[8,"Ord"],[4,"Ordering"],[4,"ArrowDataType"],[3,"NaiveDateTime"],[8,"Default"],[3,"Weak"],[15,"char"],[8,"FromIterator"],[8,"PartialEq"],[8,"Scalar"],[8,"Display"],[8,"Debug"],[3,"Once"],[15,"never"],[3,"CString"],[3,"CStr"],[8,"ToOwned"],[3,"PathBuf"],[3,"Path"],[3,"OsString"],[3,"OsStr"],[3,"RollingOptions"],[3,"RollingOptionsImpl"],[3,"Row"],[3,"Buffer"],[8,"PartialOrd"],[8,"TakeRandom"],[4,"TakeRandBranch3"],[4,"TakeRandBranch2"],[3,"Utf8TakeRandom"],[3,"Utf8TakeRandomSingleChunk"],[3,"BinaryTakeRandom"],[3,"BinaryTakeRandomSingleChunk"],[8,"NumericNative"],[3,"NumTakeRandomChunked"],[3,"NumTakeRandomCont"],[3,"NumTakeRandomSingleChunk"],[3,"BoolTakeRandom"],[3,"BoolTakeRandomSingleChunk"],[3,"ListTakeRandom"],[3,"ListTakeRandomSingleChunk"],[3,"ObjectTakeRandom"],[3,"ObjectTakeRandomSingleChunk"],[8,"Hash"],[8,"Hasher"],[8,"Into"],[8,"FnOnce"],[3,"Pin"],[3,"Demand"],[8,"LocalSpawn"],[3,"LocalFutureObj"],[3,"SpawnError"],[8,"Spawn"],[3,"FutureObj"],[3,"AllocError"],[3,"RwLock"],[3,"BTreeMap"],[3,"ObjectChunkedBuilder"],[3,"CloudOptions"],[4,"CloudType"],[3,"AnonymousBuilder"],[3,"AnonymousBuilder"],[4,"ArrowError"],[3,"Offsets"],[3,"MutableNullArray"],[3,"MutableBitmap"],[8,"AnonymousObjectBuilder"],[8,"IsFloat"],[3,"RowsEncoded"],[3,"NaiveTime"],[3,"StructChunked"],[3,"CategoricalChunked"],[3,"CategoricalChunkedBuilder"],[4,"RevMapping"],[3,"StrHashLocal"],[3,"OwnedObject"],[3,"CategoricalType"],[4,"ArrowTimeUnit"],[4,"IntegerType"],[4,"PrimitiveType"],[3,"CatIter"],[4,"Tz"],[3,"NaiveDate"],[3,"Duration"],[3,"Duration"],[4,"PhysicalType"],[3,"TruncateOptions"],[3,"DataFrame"],[3,"IUseStringCache"],[3,"ErrString"],[4,"Error"],[3,"Error"],[3,"TryReserveError"],[3,"Error"],[3,"FromUtf8Error"],[3,"Utf8Error"],[3,"Utf8Error"],[4,"OutOfSpecKind"],[4,"ParquetError"],[8,"Eq"],[8,"BuildHasher"],[3,"AHashSet"],[3,"AHasher"],[3,"HashSet"],[15,"u128"],[8,"RandomSource"],[3,"AHashMap"],[3,"HashMap"],[8,"Borrow"],[3,"IntoKeys"],[3,"IntoValues"],[15,"i128"],[8,"NativeArithmetics"],[8,"Add"],[3,"MutableListArray"],[8,"Offset"],[3,"MutableBinaryArray"],[8,"NativeType"],[3,"MutableUtf8Array"],[3,"MutablePrimitiveArray"],[8,"DictionaryKey"],[3,"DictionaryArray"],[3,"FixedSizeBinaryArray"],[3,"MapArray"],[3,"NullArray"],[3,"UnionArray"],[3,"MutableBinaryValuesArray"],[3,"MutableBooleanArray"],[8,"MutableArray"],[3,"MutableDictionaryArray"],[3,"MutableFixedSizeBinaryArray"],[3,"MutableFixedSizeListArray"],[3,"MutableNullArray"],[3,"MutableStructArray"],[3,"MutableUtf8ValuesArray"],[8,"CheckedAdd"],[8,"CheckedDiv"],[8,"CheckedMul"],[8,"CheckedRem"],[8,"CheckedSub"],[8,"ArrayAccessor"],[3,"ArrayValuesIter"],[8,"Div"],[8,"TrustedLen"],[3,"GrowableBinary"],[3,"GrowableBoolean"],[3,"GrowableDictionary"],[3,"GrowableFixedSizeBinary"],[3,"GrowableFixedSizeList"],[3,"GrowableList"],[3,"GrowableMap"],[3,"GrowableNull"],[3,"GrowablePrimitive"],[3,"GrowableUnion"],[3,"GrowableUtf8"],[3,"BitmapIter"],[4,"ZipValidity"],[3,"DictionaryValuesIter"],[3,"ChunksExact"],[3,"MapValuesIter"],[3,"UnionIter"],[8,"DictValue"],[3,"DictionaryValuesIterTyped"],[3,"HashHasher"],[3,"BuildHasherDefault"],[8,"Mul"],[3,"OffsetsBuffer"],[8,"OverflowingAdd"],[8,"OverflowingMul"],[8,"OverflowingSub"],[8,"Extend"],[8,"Rem"],[8,"SaturatingAdd"],[8,"SaturatingMul"],[8,"SaturatingSub"],[8,"Sub"],[8,"TryExtend"],[8,"TryExtendFromSelf"],[8,"TryPush"],[8,"WrappingAdd"],[8,"WrappingMul"],[8,"WrappingSub"],[3,"GrowableStruct"],[8,"Growable"],[3,"StructArray"],[8,"BitChunk"],[3,"BitChunks"],[3,"IntoIter"],[3,"Bytes"],[3,"IterBridge"],[3,"SlicesIterator"],[3,"ZipValidityIter"],[3,"BitChunksExact"],[3,"BitChunksExactMut"],[3,"BitChunkIter"],[4,"BytesAllocator"],[3,"ForeignVec"],[3,"Chunk"],[8,"Simd"],[8,"Sum"],[8,"CheckedNeg"],[8,"One"],[8,"Neg"],[8,"Pow"],[8,"WrappingNeg"],[3,"PrimitiveScalar"],[3,"months_days_ns"],[3,"BooleanScalar"],[8,"FromLexical"],[3,"CastOptions"],[3,"days_ms"],[8,"Float"],[3,"f16"],[8,"AsPrimitive"],[8,"ToLexical"],[8,"Simd8"],[8,"Index"],[4,"UnionMode"],[4,"IntervalUnit"],[3,"ArrowSchema"],[3,"ArrowArray"],[3,"ArrowArrayStream"],[8,"DerefMut"],[3,"ArrowArrayStreamReader"],[3,"IpcField"],[3,"IpcSchema"],[3,"FileMetadata"],[3,"StreamMetadata"],[8,"Read"],[8,"Seek"],[3,"FileReader"],[3,"StreamReader"],[8,"MmapBytesReader"],[4,"StreamState"],[4,"Compression"],[3,"WriteOptions"],[3,"Record"],[8,"Write"],[3,"StreamWriter"],[3,"FileWriter"],[4,"IpcCompression"],[3,"EncodedData"],[3,"Buffer"],[3,"FieldNode"],[8,"AsyncWrite"],[8,"Unpin"],[3,"FileSink"],[3,"Context"],[4,"Poll"],[3,"StreamSink"],[3,"Convert"],[3,"Empty"],[3,"Filter"],[3,"Fuse"],[3,"Map"],[3,"MapErr"],[3,"MapRef"],[3,"Skip"],[3,"SkipWhile"],[3,"Take"],[3,"TakeWhile"],[8,"FallibleStreamingIterator"],[3,"ColumnChunkMetaData"],[8,"Index"],[3,"FileMetaData"],[8,"AsyncRead"],[8,"AsyncSeek"],[8,"Future"],[4,"State"],[8,"PageIterator"],[3,"Decompressor"],[3,"BasicDecompressor"],[3,"ReadColumnIterator"],[3,"ColumnDescriptor"],[3,"RowGroupMetaData"],[4,"DataPageHeader"],[4,"ParquetTimeUnit"],[4,"PrimitiveLogicalType"],[4,"GroupLogicalType"],[4,"PrimitiveConvertedType"],[4,"InitNested"],[3,"ColumnChunk"],[3,"Encoding"],[8,"Pages"],[3,"PrimitiveType"],[4,"Compression"],[3,"NestedState"],[4,"CompressedPage"],[4,"Page"],[3,"TryFromSliceError"],[4,"Error"],[3,"TryFromIntError"],[4,"Error"],[4,"TimeUnit"],[3,"ColumnIterator"],[3,"PageReader"],[3,"ColumnMetaData"],[3,"Descriptor"],[4,"ParquetType"],[3,"StructIterator"],[3,"FilteredPage"],[3,"FileReader"],[3,"RowGroupReader"],[3,"RowGroupDeserializer"],[8,"Nested"],[3,"PageMetaData"],[4,"ParquetPhysicalType"],[3,"PageLocation"],[8,"Statistics"],[4,"LogicalType"],[3,"Interval"],[4,"FieldPageStatistics"],[3,"ColumnPageStatistics"],[3,"Statistics"],[3,"MutableStatistics"],[3,"Compressor"],[3,"DynStreamingIterator"],[3,"WriteOptions"],[4,"Encoding"],[3,"DynIter"],[4,"Nested"],[3,"KeyValue"],[3,"ThriftFileMetaData"],[3,"SchemaDescriptor"],[4,"CompressionOptions"],[3,"BrotliLevel"],[3,"GzipLevel"],[3,"ZstdLevel"],[3,"FieldInfo"],[4,"Version"],[4,"ColumnOrder"],[3,"CompressedDataPage"],[3,"FileWriter"],[4,"ParquetCompression"],[4,"Repetition"],[4,"GroupConvertedType"],[3,"SchemaElement"],[3,"RowGroup"],[4,"ColumnOrder"],[4,"EncryptionAlgorithm"],[3,"RowGroupIterator"],[3,"FileSink"],[8,"TInputProtocol"],[8,"TInputStreamProtocol"],[8,"TOutputProtocol"],[8,"TOutputStreamProtocol"],[3,"DictionaryScalar"],[3,"Utf8Scalar"],[3,"BinaryScalar"],[3,"ListScalar"],[3,"MapScalar"],[3,"NullScalar"],[3,"StructScalar"],[3,"FixedSizeListScalar"],[3,"FixedSizeBinaryScalar"],[3,"UnionScalar"],[8,"TimeZone"],[3,"FixedOffset"],[3,"DateTime"],[3,"i256"],[3,"BitChunkOnes"],[3,"IndexRange"],[3,"u8x64"],[3,"u16x32"],[3,"u32x16"],[3,"u64x8"],[3,"i8x64"],[3,"i16x32"],[3,"i32x16"],[3,"i64x8"],[3,"f32x16"],[3,"f64x8"],[3,"i128x8"],[3,"f16x32"],[3,"days_msx8"],[3,"months_days_nsx8"],[3,"i256x8"],[3,"Date"],[3,"Days"],[3,"Months"],[4,"LocalResult"],[3,"Utc"],[4,"WeekStartDay"],[3,"OutOfRangeError"],[4,"SecondsFormat"],[3,"ParseError"],[3,"IsoWeek"],[3,"Local"],[4,"RoundingError"],[4,"Weekday"],[3,"ParseWeekdayError"],[4,"Month"],[3,"ParseMonthError"],[3,"OutOfRange"],[3,"NaiveWeek"],[3,"RangeInclusive"],[3,"StrftimeItems"],[3,"DelayedFormat"],[3,"SystemTime"],[3,"Duration"],[3,"NaiveDateDaysIterator"],[3,"NaiveDateWeeksIterator"],[4,"ParseErrorKind"],[4,"Expr"],[4,"Pad"],[4,"Numeric"],[3,"InternalNumeric"],[4,"Fixed"],[3,"InternalFixed"],[4,"Item"],[3,"Parsed"],[8,"Offset"],[8,"Signed"],[4,"FpCategory"],[4,"FloatErrorKind"],[3,"ParseFloatError"],[15,"isize"],[8,"Zero"],[3,"OnceRef"],[3,"OnceBox"],[3,"OnceNonZeroUsize"],[3,"OnceBool"],[3,"NonZeroUsize"],[3,"OnceCell"],[3,"Lazy"],[3,"OnceCell"],[3,"Lazy"],[3,"ThreadPoolBuilder"],[3,"ThreadPool"],[8,"ThreadSpawn"],[3,"ThreadPoolBuildError"],[3,"DefaultSpawn"],[4,"Yield"],[3,"BroadcastContext"],[3,"ThreadBuilder"],[3,"Scope"],[3,"ScopeFifo"],[3,"FnContext"],[3,"Configuration"],[3,"CustomSpawn"],[3,"IntoIter"],[8,"Consumer"],[8,"UnindexedConsumer"],[8,"ProducerCallback"],[3,"IntoIter"],[3,"Iter"],[3,"Drain"],[3,"Iter"],[3,"IntoIter"],[3,"IterMut"],[3,"Iter"],[3,"IntoIter"],[3,"Iter"],[3,"IntoIter"],[3,"IterMut"],[3,"Drain"],[3,"Iter"],[3,"IntoIter"],[3,"Drain"],[3,"IntoIter"],[3,"Iter"],[3,"IterMut"],[3,"IntoIter"],[3,"Iter"],[3,"IterMut"],[3,"Drain"],[8,"AsMut"],[3,"Chain"],[3,"Chunks"],[3,"Empty"],[3,"Cloned"],[3,"Copied"],[3,"Enumerate"],[3,"Filter"],[3,"FilterMap"],[3,"FlatMap"],[3,"FlatMapIter"],[3,"Flatten"],[3,"FlattenIter"],[3,"Fold"],[3,"FoldWith"],[3,"FoldChunks"],[3,"FoldChunksWith"],[3,"Inspect"],[3,"Interleave"],[3,"InterleaveShortest"],[3,"Intersperse"],[3,"MinLen"],[3,"MaxLen"],[3,"Map"],[3,"MapWith"],[3,"MapInit"],[3,"MultiZip"],[3,"Once"],[3,"PanicFuse"],[3,"Positions"],[3,"Repeat"],[3,"RepeatN"],[3,"Rev"],[3,"Skip"],[3,"SkipAny"],[3,"SkipAnyWhile"],[3,"Split"],[3,"StepBy"],[3,"Take"],[3,"TakeAny"],[3,"TakeAnyWhile"],[3,"TryFold"],[8,"Try"],[3,"TryFoldWith"],[3,"Update"],[3,"WhileSome"],[3,"Zip"],[3,"ZipEq"],[8,"FromParallelIterator"],[8,"BufRead"],[8,"Deref"],[8,"Command"],[8,"RangeBounds"],[8,"ParallelExtend"],[8,"Product"],[8,"VarInt"],[4,"SeekFrom"],[3,"Arguments"],[8,"Producer"],[8,"UnindexedProducer"],[8,"Folder"],[3,"IntoIter"],[3,"Iter"],[3,"IterMut"],[3,"Bytes"],[3,"CharIndices"],[3,"Chars"],[3,"Chunks"],[3,"ChunksExact"],[3,"ChunksExactMut"],[3,"ChunksMut"],[3,"EncodeUtf16"],[3,"Lines"],[8,"Pattern"],[3,"MatchIndices"],[3,"Matches"],[3,"RChunks"],[3,"RChunksExact"],[3,"RChunksExactMut"],[3,"RChunksMut"],[3,"Split"],[3,"Split"],[3,"SplitMut"],[3,"SplitTerminator"],[3,"SplitWhitespace"],[3,"Windows"],[3,"Iter"],[8,"IndexedRangeInteger"],[8,"RangeInteger"],[3,"Iter"],[8,"IndexedRangeInteger"],[8,"RangeInteger"],[3,"IntoIter"],[3,"Iter"],[3,"IterMut"],[3,"Iter"],[3,"IterMut"],[3,"Drain"],[3,"IntoIter"],[3,"Drain"],[3,"Regex"],[3,"Match"],[3,"RegexBuilder"],[3,"RegexSetBuilder"],[3,"RegexSet"],[3,"ReplacerRef"],[3,"CaptureLocations"],[3,"CaptureNames"],[3,"Captures"],[3,"CaptureMatches"],[3,"SubCaptureMatches"],[3,"NoExpand"],[3,"SetMatches"],[3,"SetMatchesIter"],[3,"Matches"],[3,"Split"],[3,"SplitN"],[3,"SetMatchesIntoIter"],[8,"Replacer"],[3,"Match"],[3,"Regex"],[3,"RegexBuilder"],[3,"RegexSetBuilder"],[3,"RegexSet"],[3,"ReplacerRef"],[3,"CaptureLocations"],[3,"CaptureNames"],[3,"Captures"],[3,"CaptureMatches"],[3,"SubCaptureMatches"],[3,"NoExpand"],[3,"SetMatches"],[3,"SetMatchesIter"],[3,"Matches"],[3,"Split"],[3,"SplitN"],[3,"SetMatchesIntoIter"],[8,"Replacer"],[3,"JoinArgs"],[4,"NullStrategy"],[4,"UniqueKeepStrategy"],[3,"Global"],[3,"HashSet"],[3,"GroupBy"],[3,"DynamicGroupOptions"],[3,"RollingGroupOptions"],[3,"RangeFull"],[3,"RangeTo"],[3,"RangeToInclusive"],[3,"RangeFrom"],[8,"IntoSeries"],[3,"RecordBatchIter"],[3,"PhysRecordBatchIter"],[3,"LazyFrame"],[8,"IntoVec"],[3,"MeltArgs"],[3,"GroupsIdx"],[4,"GroupByMethod"],[3,"SlicedGroups"],[3,"GroupsProxyParIter"],[4,"GroupsIndicator"],[4,"AAggExpr"],[3,"Copied"],[3,"Zip"],[3,"GroupsProxyIter"],[4,"JoinValidation"],[4,"JoinType"],[4,"AnyValueBuffer"],[4,"AnyValueBufferTrusted"],[3,"ParquetReader"],[8,"PhysicalIoExpr"],[3,"MetaNameSpace"],[3,"LazyGroupBy"],[3,"JoinBuilder"],[3,"LazyJsonLineReader"],[8,"AnonymousScan"],[3,"ScanArgsAnonymous"],[8,"FunctionOutputField"],[3,"SpecialEq"],[4,"VisitRecursion"],[4,"FunctionExpr"],[3,"ListNameSpace"],[3,"ArrayNameSpace"],[3,"IpcReader"],[3,"IpcStreamReader"],[8,"PartitionedAggregation"],[4,"AggExpr"],[8,"StatsEvaluator"],[3,"PhysicalIoHelper"],[3,"IpcWriter"],[3,"BatchedWriter"],[3,"BatchedParquetReader"],[3,"ParquetWriter"],[3,"BatchedWriter"],[3,"BatchedWriterAsync"],[3,"CsvReader"],[3,"BatchedCsvReaderMmap"],[3,"BatchedCsvReaderRead"],[3,"OwnedBatchedCsvReaderMmap"],[3,"OwnedBatchedCsvReader"],[3,"BinaryNameSpace"],[4,"Operator"],[3,"CategoricalNameSpace"],[4,"InterpolationMethod"],[4,"SearchSortedSide"],[3,"Bounds"],[4,"ClosedWindow"],[4,"StartBy"],[3,"Window"],[4,"CsvEncoding"],[4,"NullValues"],[4,"ParallelStrategy"],[3,"GzipLevel"],[3,"BrotliLevel"],[3,"ZstdLevel"],[3,"UnionArgs"],[3,"LazyCsvReader"],[3,"ScanArgsIpc"],[3,"ScanArgsParquet"],[4,"CategoricalOrdering"],[3,"When"],[3,"Then"],[3,"ChainedWhen"],[3,"ChainedThen"],[4,"Excluded"],[4,"BooleanFunction"],[3,"DatetimeArgs"],[3,"DurationArgs"],[3,"RollingCovOptions"],[3,"StrptimeOptions"],[3,"JoinOptions"],[3,"WindowOptions"],[4,"WindowMapping"],[3,"OptState"],[4,"LiteralValue"],[3,"ParquetWriteOptions"],[3,"IpcWriterOptions"],[3,"AnonymousScanOptions"],[4,"LogicalPlan"],[3,"IpcStreamWriterOption"],[8,"SerWriter"],[3,"IpcWriterOption"],[8,"SeriesBinaryUdf"],[8,"BinaryUdfOutputField"],[3,"NoNull"],[4,"NullBehavior"],[3,"DotNode"],[3,"HashMap"],[3,"DateLikeNameSpace"],[3,"ExecutionState"],[3,"AggregationContext"],[3,"StructNameSpace"],[3,"CsvWriter"],[3,"IpcStreamWriter"],[3,"JsonWriter"],[3,"JsonReader"],[3,"JsonLineReader"],[8,"SeriesUdf"],[8,"RenameAliasFn"],[8,"PhysicalExpr"],[8,"UdfSchema"],[4,"RangeFunction"],[4,"CategoricalFunction"],[4,"BinaryFunction"],[4,"StringFunction"],[4,"TemporalFunction"],[3,"File"],[3,"FunctionOptions"],[4,"Context"],[3,"BoundsIter"],[3,"BatchedParquetIter"],[3,"StructValueIter"],[8,"Literal"],[3,"Null"],[3,"ExprMut"],[8,"FetchRowGroups"],[3,"RowCount"],[4,"ALogicalPlan"],[3,"Arena"],[4,"AExpr"],[3,"Node"],[8,"Range"],[3,"StringNameSpace"],[4,"JsonFormat"],[3,"Serializer"],[3,"FileWriter"],[4,"Pattern"],[3,"DatetimeInfer"],[3,"RecordSerializer"],[3,"Serializer"],[8,"DoubleEndedFallibleStreamingIterator"],[3,"ColumnStats"],[3,"BatchStats"],[4,"ReaderBytes"],[3,"SeriesIter"],[3,"UnstableSeries"],[8,"ArrayArithmetics"],[8,"ChunkedBuilder"],[8,"NewChunkedArray"],[4,"RevMappingBuilder"],[8,"InitHashMaps"],[8,"ArrowGetItem"],[8,"IntoTakeRandom"],[8,"TakeRandomUtf8"],[8,"ChunkCompare"],[8,"LhsNumOps"],[8,"FxHash"],[8,"NumOpsDispatch"],[8,"ChunkApply"],[8,"ChunkApplyKernel"],[8,"ChunkSort"],[8,"ChunkUnique"],[8,"AsRefDataType"],[8,"MutableBitmapExtension"],[3,"TakeRandomBitmap"],[8,"ChunkCast"],[8,"LogicalType"],[8,"NumOpsDispatchChecked"],[8,"ChunkCumAgg"],[8,"ChunkExplode"],[8,"ChunkFillNullValue"],[8,"ChunkFilter"],[8,"FromData"],[8,"FromDataUtf8"],[8,"FromDataBinary"],[8,"ListFromIter"],[8,"NamedFromOwned"],[8,"ChunkFull"],[8,"ChunkFullNull"],[8,"ChunkAnyValue"],[8,"IndexOfSchema"],[8,"GetAnyValue"],[8,"ValueSize"],[8,"IntoGroupsProxy"],[8,"PolarsArray"],[8,"IsFirst"],[8,"IsIn"],[8,"IsLast"],[8,"ChunkAgg"],[8,"ChunkAggSeries"],[8,"ChunkQuantile"],[8,"QuantileAggSeries"],[8,"IndexToUsize"],[8,"NamedFrom"],[8,"ChunkExpandAtIndex"],[8,"ChunkPeaks"],[8,"RepeatBy"],[8,"ChunkReverse"],[8,"ChunkRollApply"],[8,"ChunkSet"],[8,"ChunkShift"],[8,"ChunkShiftFill"],[8,"SlicedArray"],[8,"ChunkVar"],[8,"VarAggSeries"],[8,"StrConcat"],[8,"ChunkTake"],[8,"ChunkBytes"],[8,"VecHash"],[8,"ChunkZip"],[13,"Slice"],[8,"Utf8FromIter"],[8,"BinaryFromIter"],[8,"HashMapExt"],[8,"HashSetExt"],[8,"GenericBinaryArray"],[8,"PushUnchecked"],[8,"BitChunkIterExact"],[8,"SimdOrd"],[8,"Sum"],[8,"ArrayAdd"],[8,"ArrayCheckedAdd"],[8,"ArrayCheckedDiv"],[8,"ArrayCheckedMul"],[8,"ArrayCheckedRem"],[8,"ArrayCheckedSub"],[8,"ArrayDiv"],[8,"ArrayMul"],[8,"ArrayOverflowingAdd"],[8,"ArrayOverflowingMul"],[8,"ArrayOverflowingSub"],[8,"ArrayRem"],[8,"ArraySaturatingAdd"],[8,"ArraySaturatingMul"],[8,"ArraySaturatingSub"],[8,"ArraySub"],[8,"ArrayWrappingAdd"],[8,"ArrayWrappingMul"],[8,"ArrayWrappingSub"],[8,"Simd8PartialEq"],[8,"Simd8Lanes"],[8,"Simd8PartialOrd"],[13,"InvalidBuffer"],[13,"InvalidBuffersLength"],[13,"InvalidBitmap"],[13,"InvalidId"],[13,"InvalidIdDataType"],[8,"MutStreamingIterator"],[13,"GroupType"],[13,"Time"],[13,"Timestamp"],[8,"NativeSimd"],[8,"FromMaskChunk"],[8,"DurationRound"],[8,"Datelike"],[8,"Timelike"],[8,"SubsecRound"],[8,"ToBytes"],[8,"FromBytes"],[8,"FloatConst"],[8,"Inv"],[8,"MulAdd"],[8,"CheckedEuclid"],[8,"CheckedShl"],[8,"CheckedShr"],[8,"PrimInt"],[8,"Euclid"],[8,"FromPrimitive"],[8,"Bounded"],[8,"MulAddAssign"],[8,"Saturating"],[8,"WrappingShl"],[8,"WrappingShr"],[8,"UpperBounded"],[8,"LowerBounded"],[8,"FloatCore"],[8,"Real"],[8,"IntoParallelRefIterator"],[8,"IntoParallelRefMutIterator"],[8,"ParallelDrainFull"],[8,"ParallelDrainRange"],[8,"ParallelBridge"],[8,"Reducer"],[8,"ParallelSlice"],[8,"ParallelSliceMut"],[8,"ParallelString"],[8,"AggList"],[8,"PhysicalAggExpr"],[8,"DataFrameOps"],[8,"ArgAgg"],[8,"AsBinary"],[8,"Utf8Methods"],[8,"AsList"],[8,"SeriesSealed"],[8,"AsUtf8"],[8,"Utf8NameSpaceImpl"],[8,"LazyFileListReader"],[8,"BinaryNameSpaceImpl"],[8,"ExprEvalExtension"],[8,"DateMethods"],[8,"DatetimeMethods"],[8,"TemporalMethods"],[8,"DurationMethods"],[8,"LogSeries"],[8,"ListNameSpaceExtension"],[8,"SerReader"],[8,"PolarsTemporalGroupby"],[8,"TimeMethods"],[8,"DataFrameJoinOps"],[8,"IntoListNameSpace"],[8,"SeriesMethods"],[8,"IntoLazy"],[8,"ListNameSpaceImpl"],[8,"PolarsMonthEnd"],[8,"PolarsMonthStart"],[8,"RollingAgg"],[8,"PolarsRound"],[8,"ChunkedSet"],[8,"ToDummies"],[8,"PolarsTruncate"],[8,"PolarsUpsample"],[13,"Quantile"],[13,"Min"],[13,"Max"],[13,"All"],[13,"Any"],[13,"SortBy"],[13,"Filter"],[13,"Cast"],[13,"Sort"],[13,"Take"],[13,"RenameAlias"],[13,"Ternary"],[13,"Function"],[13,"Window"],[13,"AnonymousFunction"],[13,"Slice"],[13,"BinaryExpr"],[13,"Random"],[13,"Entropy"],[13,"Log"],[13,"Correlation"],[13,"Round"],[13,"Clip"],[13,"ShiftAndFill"],[13,"Cumcount"],[13,"Cumsum"],[13,"Cumprod"],[13,"Cummin"],[13,"Cummax"],[13,"FillNull"],[13,"Range"],[13,"Aggregate"],[13,"Sort"],[13,"ExtContext"],[13,"Cache"],[13,"DataFrameScan"],[13,"Error"],[13,"LocalProjection"],[13,"Projection"],[13,"HStack"],[13,"AnonymousScan"],[13,"Scan"],[13,"MapFunction"],[13,"Selection"],[13,"Distinct"],[13,"Slice"],[13,"FileSink"],[13,"Join"],[13,"Union"],[8,"ArrayNameSpace"],[8,"AsArray"],[8,"AsUtf8"],[8,"TryFromWithUnit"],[8,"StrpTimeParser"],[8,"AsSeries"],[8,"IntoSeriesOps"]]},\ +"polars_arrow":{"doc":"","t":"AAAAAAAAAAAAAAAAAIQIIIALLLLKKKLAAAAIIIKKKDLLFLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLIKKIILLFFFFFFFFFAFIKKAAFAAAAFFFFFAFFFFFFFFFFFFFFFFFFFFFFFFFFGILLLENNNNDNNNNNNNNNNEGNNNNNLLLLLLLLLLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLFLLLLLLFOOOOLLFLFLLLLLLLLLLLLLCCDLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLLLGGIFKIIKKAAAAAAAAAAFDLMMLLLLLLMLLLLLLLLFFFFLLMLLMLLLLFFFFFFFGDDLLLLLLLLLLFFMLLLLLLLLLLLLMLLAAMLLLLLLLLNNNDDNDNEDIDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLFFFFFFLLLLLLLLLLLLLLLLLLLLLLKLLLLLLDDDDDIDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFKLLLLLLLKLLLLLLLFFFFFFLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLFFFFFFFFFFFFFFFFFFFFCGGGCCCCIKKELLLLLLLLLLLLLLLIIILLKLLKKKIIIDLLLLLLLLFFLLLLLLKLLLLLLLLLLLL","n":["array","bit_util","bitmap","compute","conversion","data_types","error","export","floats","index","is_valid","kernels","prelude","slice","time_zone","trusted_len","utils","ArrowGetItem","Item","ListFromIter","PolarsArray","ValueSize","default_arrays","from_iter_binary_trusted_len","from_iter_bool_trusted_len","from_iter_primitive_trusted_len","from_iter_utf8_trusted_len","get","get_unchecked","get_values_size","has_validity","list","null","slice","utf8","FromData","FromDataBinary","FromDataUtf8","from_data_default","from_data_unchecked_default","from_data_unchecked_default","AnonymousBuilder","borrow","borrow_mut","convert_inner_type","deref","deref_mut","drop","finish","from","init","into","is_empty","new","offsets","push","push_empty","push_multiple","push_null","push_opt","take_offsets","try_from","try_into","type_id","MutableNullArray","as_any","as_box","as_mut_any","borrow","borrow_mut","data_type","default","deref","deref_mut","drop","fmt","from","init","into","len","push_null","reserve","shrink_to_fit","try_from","try_into","type_id","validity","SlicedArray","slice_typed","slice_typed_unchecked","BinaryFromIter","Utf8FromIter","from_values_iter","from_values_iter","ceil","get_bit","get_bit_raw","round_upto_multiple_of_64","round_upto_power_of_2","set_bit","set_bit_raw","unset_bit","unset_bit_raw","mutable","unary_mut","MutableBitmapExtension","as_slice_mut","set_bit_unchecked","arithmetics","arity","binary_mut","bitwise","cast","take","tile","unary_mut","bitand","bitor","bitxor","cast","bitmap","take_binary_iter_unchecked","take_binary_opt_iter_unchecked","take_binary_unchecked","take_bool_iter_unchecked","take_bool_opt_iter_unchecked","take_no_null_binary_iter_unchecked","take_no_null_binary_opt_iter_unchecked","take_no_null_bool_iter_unchecked","take_no_null_bool_opt_iter_unchecked","take_no_null_primitive_iter_unchecked","take_no_null_primitive_opt_iter_unchecked","take_no_null_primitive_unchecked","take_no_null_utf8_iter_unchecked","take_no_null_utf8_opt_iter_unchecked","take_primitive_iter_unchecked","take_primitive_opt_iter_unchecked","take_primitive_unchecked","take_unchecked","take_utf8_iter_unchecked","take_utf8_opt_iter_unchecked","take_utf8_unchecked","take_value_indices_from_list","take_bitmap_unchecked","tile_primitive","chunk_to_struct","primitive_to_vec","ArrayRef","IsFloat","get_values_size","is_float","is_nan","ArrowError","ArrowError","ColumnNotFound","ComputeError","Duplicate","ErrString","External","ExternalFormat","InvalidArgumentError","InvalidOperation","Io","Io","NoData","NotYetImplemented","OutOfSpec","Overflow","PolarsError","PolarsResult","SchemaFieldNotFound","SchemaMismatch","ShapeMismatch","StringCacheMismatch","StructFieldNotFound","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","feature_gated","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_external_error","get_warning_function","init","init","init","into","into","into","map_err","polars_bail","polars_ensure","polars_err","polars_warn","provide","provide","set_warning_function","source","to_compute_err","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","wrap_msg","arrow","hashbrown","OrdFloat","__clone_box","borrow","borrow_mut","clone","clone_into","cmp","deref","deref_mut","drop","eq","equivalent","equivalent","f32_to_ordablef32","f64_to_ordablef64","from","init","into","partial_cmp","to_f32","to_f64","to_i16","to_i32","to_i64","to_i8","to_isize","to_owned","to_u16","to_u32","to_u64","to_u8","to_usize","try_from","try_into","type_id","IdxArr","IdxSize","IndexToUsize","indexes_to_usizes","negative_to_usize","ArrowArray","IsValid","is_null_unchecked","is_valid_unchecked","concatenate","ewm","float","list","list_bytes_iter","rolling","set","sort_partition","string","take_agg","concatenate_owned_unchecked","EWMOptions","__clone_box","adjust","alpha","and_adjust","and_com","and_half_life","and_ignore_nulls","and_min_periods","and_span","bias","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","ewm_cov","ewm_mean","ewm_std","ewm_var","fmt","from","ignore_nulls","init","into","min_periods","to_owned","try_from","try_into","type_id","is_finite","is_infinite","is_nan","is_not_nan","array_to_unit_list","sublist_get","numeric_list_bytes_iter","DynArgs","RollingQuantileParams","RollingVarParams","__clone_box","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","compare_fn_nan_max","compare_fn_nan_min","ddof","deref","deref","deref_mut","deref_mut","drop","drop","fmt","fmt","from","from","init","init","interpol","into","into","no_nulls","nulls","prob","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","Higher","Linear","Lower","MaxWindow","MeanWindow","Midpoint","MinWindow","Nearest","QuantileInterpolOptions","QuantileWindow","RollingAggWindowNoNulls","SumWindow","VarWindow","__clone_box","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","eq","equivalent","equivalent","fmt","from","from","from","from","from","from","from","init","init","init","init","init","init","init","into","into","into","into","into","into","into","new","new","new","new","new","new","new","rolling_max","rolling_mean","rolling_min","rolling_quantile","rolling_sum","rolling_var","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","update","update","update","update","update","update","update","MaxWindow","MeanWindow","MinMaxWindow","MinWindow","QuantileWindow","RollingAggWindowNulls","SortedMinMax","SumWindow","VarWindow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","from","from","from","from","from","from","from","from","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","is_reverse_sorted_max_nulls","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","is_valid","new","new","new","new","new","new","new","new","rolling_max","rolling_mean","rolling_min","rolling_quantile","rolling_sum","rolling_var","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","update","update","update","update","update","update","update","update","set_at_idx_no_null","set_at_nulls","set_with_mask","create_clean_partitions","partition_to_groups","partition_to_groups_amortized","string_lengths","string_nchars","online_variance","take_agg_no_null_primitive_iter_unchecked","take_agg_primitive_iter_unchecked","take_agg_primitive_iter_unchecked_count_nulls","take_agg_utf8_iter_unchecked","take_agg_utf8_iter_unchecked_no_null","take_max_bool_iter_unchecked_no_nulls","take_max_bool_iter_unchecked_nulls","take_min_bool_iter_unchecked_no_nulls","take_min_bool_iter_unchecked_nulls","take_var_no_null_primitive_iter_unchecked","take_var_nulls_primitive_iter_unchecked","DynArgs","LargeBinaryArray","LargeListArray","LargeStringArray","MutableBitmapExtension","QuantileInterpolOptions","RollingQuantileParams","RollingVarParams","ExtremaNanAware","max_value_nan_aware","min_value_nan_aware","Tz","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","from","init","into","to_owned","try_from","try_into","type_id","FromIteratorReversed","TrustedLen","TrustedLenPush","extend_trusted_len","extend_trusted_len","extend_trusted_len_unchecked","from_trusted_len_iter","from_trusted_len_iter","from_trusted_len_iter_rev","from_trusted_len_iter_unchecked","push_unchecked","CustomIterTools","CustomIterToolsSized","FromTrustedLenIterator","TrustMyLength","__clone_box","all_equal","borrow","borrow_mut","clone","clone_into","collect_reversed","collect_trusted","combine_validities_and","combine_validities_or","deref","deref_mut","drop","fold_first_","fold_options","from","from_iter_trusted_length","init","into","into_iter","new","next","next_back","size_hint","to_owned","trust_my_length","try_from","try_into","type_id"],"q":[[0,"polars_arrow"],[17,"polars_arrow::array"],[35,"polars_arrow::array::default_arrays"],[41,"polars_arrow::array::list"],[64,"polars_arrow::array::null"],[87,"polars_arrow::array::slice"],[90,"polars_arrow::array::utf8"],[94,"polars_arrow::bit_util"],[103,"polars_arrow::bitmap"],[105,"polars_arrow::bitmap::mutable"],[108,"polars_arrow::compute"],[116,"polars_arrow::compute::bitwise"],[119,"polars_arrow::compute::cast"],[120,"polars_arrow::compute::take"],[143,"polars_arrow::compute::take::bitmap"],[144,"polars_arrow::compute::tile"],[145,"polars_arrow::conversion"],[147,"polars_arrow::data_types"],[152,"polars_arrow::error"],[244,"polars_arrow::export"],[246,"polars_arrow::floats"],[281,"polars_arrow::index"],[286,"polars_arrow::is_valid"],[290,"polars_arrow::kernels"],[300,"polars_arrow::kernels::concatenate"],[301,"polars_arrow::kernels::ewm"],[334,"polars_arrow::kernels::float"],[338,"polars_arrow::kernels::list"],[340,"polars_arrow::kernels::list_bytes_iter"],[341,"polars_arrow::kernels::rolling"],[383,"polars_arrow::kernels::rolling::no_nulls"],[502,"polars_arrow::kernels::rolling::nulls"],[630,"polars_arrow::kernels::set"],[633,"polars_arrow::kernels::sort_partition"],[636,"polars_arrow::kernels::string"],[638,"polars_arrow::kernels::take_agg"],[650,"polars_arrow::prelude"],[658,"polars_arrow::slice"],[661,"polars_arrow::time_zone"],[677,"polars_arrow::trusted_len"],[688,"polars_arrow::utils"]],"d":["","","","","","","","","","","","","","","","","","","","","","","","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","","Safety","Useful for a Utf8 or a List to get underlying value size. …","","","","","","","","","","Safety","Safety","","","","Cast null arrays to inner type and ensure that all offsets …","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","Utility trait to slice concrete arrow arrays whilst …","Slices this Array.","Slices the Array.","","","","","Returns the ceil of value/divisor","Returns whether bit at position i in data is set or not","Returns whether bit at position i in data is set or not.","Returns the nearest number that is >= than num and is a …","Returns the nearest multiple of factor that is >= than num…","Sets bit at position i for data","Sets bit at position i for data","Sets bit at position i for data to 0","Sets bit at position i for data to 0","","Apply a bitwise operation op to one input and return the …","","","Safety","","","","","","","","","","","","","","Safety","Safety","Safety","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Safety","Safety","Take kernel for single chunk without nulls and an iterator …","Take kernel for single chunk without null values and an …","Take kernel for single chunk without nulls and an iterator …","Take kernel for a single chunk without nulls and an …","Take kernel for single chunk without nulls and arrow array …","Safety","Safety","Take kernel for a single chunk with null values and an …","Take kernel for a single chunk and an iterator that can …","Take kernel for single chunk with nulls and arrow array as …","Safety","Safety","Safety","Safety","Forked and adapted from arrow-rs This is faster because it …","Safety","","","Returns its underlying Vec, if possible.","","Safety","","","","Enum with all errors in this crate.","","","","","","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","","","Wrapper for IO errors","","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","","","","Wraps an external error in an Error.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Set the function that will be called by the polars_warn! …","","","","","","","","","","","","","","","","","","A utility type that make floats Ord by nan == nan == true …","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","The type used by polars to index data.","","","Translate the negative index to an offset.","","","Safety","Safety","","","","","","","","","","kernels that combine take and aggregations.","Concatenate multiple Array of the same type into a single …","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","Convert a list [1, 2, 3] to a list type of [[1], [2], [3]]","","","","","","","","","","","","","","","","NaN will be larger than every valid value","NaN will be smaller than every valid value","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Update and recompute the window","","","","","","","","","Generic Min / Max kernel.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","","","","","Efficiently sets value at the indices from the iterator to …","Set values in a primitive array where the primitive array …","Set values in a primitive array based on a mask array. …","","Take a clean-partitioned slice and return the groups slices","","","","Numerical stable online variance aggregation See: Welford, …","Take kernel for single chunk without nulls and an iterator …","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","Take kernel for single chunk and an iterator as index.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","An iterator of known, fixed size. A trait denoting Rusts’…","","Extend the array with an iterator who’s length can be …","Extend the array with an iterator who’s length can be …","Safety","","","","Safety","Will push an item and not check if there is enough capacity","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","Turn any iterator in a trusted length iterator","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,128,128,128,128,127,127,129,130,0,0,0,0,0,0,0,131,132,133,0,13,13,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,134,134,0,0,135,136,0,0,0,0,0,0,0,0,0,0,0,0,137,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,71,71,0,47,47,47,47,0,48,48,48,47,47,48,47,48,48,48,0,0,47,47,47,47,47,45,47,48,45,47,48,45,45,47,48,45,47,48,45,47,48,0,45,45,47,47,48,48,45,45,47,47,47,47,48,48,48,48,48,48,48,48,48,48,0,45,47,48,45,47,48,0,0,0,0,0,47,48,0,47,0,45,47,48,45,47,48,45,47,48,45,47,48,47,0,0,0,70,70,70,70,70,70,70,70,70,70,70,70,0,0,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,0,0,0,0,138,0,0,139,139,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,0,0,0,0,85,85,85,85,85,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,92,93,92,93,92,93,92,93,92,93,0,0,92,92,93,92,93,92,93,92,93,92,93,92,93,93,92,93,0,0,93,92,93,92,93,92,93,92,93,94,94,94,0,0,94,0,94,0,0,0,0,0,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,94,94,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,94,94,94,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,140,100,104,105,106,107,108,0,0,0,0,0,0,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,100,104,105,106,107,108,94,140,100,104,105,106,107,108,0,0,0,0,0,0,0,0,0,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,0,142,112,113,114,115,116,117,118,142,112,113,114,115,116,117,118,0,0,0,0,0,0,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,112,113,141,114,115,116,117,118,142,112,113,114,115,116,117,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,143,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,0,0,0,144,144,144,144,144,124,144,144,0,0,0,0,123,145,123,123,123,123,145,145,0,0,123,123,123,145,145,123,125,123,123,123,123,123,123,123,123,145,123,123,123],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],[[4,[3]]]],[1,[[4,[3]]]],[[1,5],[[4,[3]]]],[[1,2],[[4,[3]]]],[2,6],[2,6],[[],2],[[],7],0,0,0,0,0,0,0,[[[6,[8]]]],[[[9,[3]],[9,[10]],[6,[8]]]],[[[9,[3]],[9,[10]],[6,[8]]]],0,[[]],[[]],[[11,5],[[12,[11]]]],[2],[2],[2],[[13,[6,[5]]],[[14,[[4,[3]]]]]],[[]],[[],2],[[]],[13,7],[2,13],[13,[[15,[3]]]],[[13,11]],[13],[[13,[15,[16]]]],[13],[[13,[6,[11]]]],[13,[[17,[3]]]],[[],18],[[],18],[[],19],0,[20,21],[20,[[12,[11]]]],[20,21],[[]],[[]],[20,5],[[],20],[2],[2],[2],[[20,22],23],[[]],[[],2],[[]],[20,2],[20],[[20,2]],[20],[[],18],[[],18],[[],19],[20,[[6,[24]]]],0,[[25,2,2],25],[[25,2,2],25],0,0,[[26,2,2],[[27,[3]]]],[[26,2,2],[[28,[3]]]],[[2,2],2],[[[15,[10]],2],7],[[10,2],7],[2,2],[[2,2],2],[[[15,[10]],2]],[[10,2]],[[[15,[10]],2]],[[10,2]],0,[[8,29],8],0,[[],[[15,[10]]]],[[2,7]],0,0,[[[31,[30]],[31,[30]],5,29],[[31,[30]]]],0,0,0,0,[[[31,[30]],29,5],[[31,[30]]]],[[[31,[[0,[[32,[[0,[[32,[[0,[[32,[[0,[32,30]]]],30]]]],30]]]],30]]]],[31,[[0,[[32,[[0,[[32,[[0,[[32,[[0,[32,30]]]],30]]]],30]]]],30]]]]],[[31,[[0,[[32,[[0,[[32,[[0,[[32,[[0,[32,30]]]],30]]]],30]]]],30]]]]]],[[[31,[[0,[[33,[[0,[[33,[[0,[[33,[[0,[33,30]]]],30]]]],30]]]],30]]]],[31,[[0,[[33,[[0,[[33,[[0,[[33,[[0,[33,30]]]],30]]]],30]]]],30]]]]],[[31,[[0,[[33,[[0,[[33,[[0,[[33,[[0,[33,30]]]],30]]]],30]]]],30]]]]]],[[[31,[[0,[[34,[[0,[[34,[[0,[[34,[[0,[34,30]]]],30]]]],30]]]],30]]]],[31,[[0,[[34,[[0,[[34,[[0,[[34,[[0,[34,30]]]],30]]]],30]]]],30]]]]],[[31,[[0,[[34,[[0,[[34,[[0,[[34,[[0,[34,30]]]],30]]]],30]]]],30]]]]]],[[11,5],[[14,[[12,[11]]]]]],0,[[35,1],[[12,[35]]]],[[35,1],[[12,[35]]]],[[35,36],[[12,[35]]]],[[37,1],[[12,[37]]]],[[37,1],[[12,[37]]]],[[35,1],[[12,[35]]]],[[35,1],[[12,[35]]]],[[37,1],[[12,[37]]]],[[37,1],[[12,[37]]]],[[[31,[30]],38],[[12,[[31,[30]]]]]],[[[31,[30]],1],[[12,[[31,[30]]]]]],[[[31,[30]],36],[[12,[[31,[30]]]]]],[[39,1],[[12,[39]]]],[[39,1],[[12,[39]]]],[[[31,[30]],1],[[12,[[31,[30]]]]]],[[[31,[30]],1],[[12,[[31,[30]]]]]],[[[31,[30]],36],[[12,[[31,[30]]]]]],[[11,36],16],[[39,1],[[12,[39]]]],[[39,1],[[12,[39]]]],[[39,36],[[12,[39]]]],[[[4,[3]],36]],[[8,[15,[40]]],8],[[[31,[30]],2],[[31,[30]]]],[[[41,[16]],[43,[42]]],44],[16,[[6,[[43,[30]]]]]],0,0,[16,2],[[],7],[25,7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[45],[2],[2],[2],[2],[2],[2],[2],[2],[2],0,[[45,22],[[18,[46]]]],[[45,22],[[18,[46]]]],[[47,22],[[18,[46]]]],[[47,22],[[18,[46]]]],[[48,22],[[18,[46]]]],[[48,22],[[18,[46]]]],[[[51,[[50,[49]]]]],45],[[]],[48,47],[[]],[52,47],[53,47],[54,48],[55,48],[56,48],[[]],[57,48],[58,48],[59,48],[52,48],[60,48],[[[0,[61,62,63]]],48],[[]],[[],2],[[],2],[[],2],[[]],[[]],[[]],[61,47],0,0,0,0,[64],[64],[[]],[47,[[6,[61]]]],[65,47],[[],66],[[],66],[[],66],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],19],[[],19],[[],19],[[47,67],47],0,0,0,[68],[[]],[[]],[[[70,[69]]],[[70,[69]]]],[[]],[[[70,[[0,[71,72,73]]]],[70,[[0,[71,72,73]]]]],74],[2],[2],[2],[[[70,[[0,[71,72]]]],[70,[[0,[71,72]]]]],7],[[],7],[[],7],[[[15,[75]]],[[15,[[70,[75]]]]]],[[[15,[76]]],[[15,[[70,[76]]]]]],[[]],[[],2],[[]],[[[70,[[0,[71,72,73]]]],[70,[[0,[71,72,73]]]]],[[6,[74]]]],[[[70,[77]]],[[6,[75]]]],[[[70,[77]]],[[6,[76]]]],[[[70,[77]]],[[6,[78]]]],[[[70,[77]]],[[6,[79]]]],[[[70,[77]]],[[6,[3]]]],[[[70,[77]]],[[6,[80]]]],[[[70,[77]]],[[6,[81]]]],[[]],[[[70,[77]]],[[6,[82]]]],[[[70,[77]]],[[6,[83]]]],[[[70,[77]]],[[6,[84]]]],[[[70,[77]]],[[6,[10]]]],[[[70,[77]]],[[6,[2]]]],[[],18],[[],18],[[],19],0,0,0,[[[15,[40]]],26],[2,[[6,[2]]]],0,0,[2,7],[2,7],0,0,0,0,0,0,0,0,0,0,[[[15,[16]]],[[14,[16]]]],0,[68],0,0,[[85,7],85],[[85,76],85],[[85,76],85],[[85,7],85],[[85,2],85],[[85,2],85],0,[[]],[[]],[85,85],[[]],[[],85],[2],[2],[2],[[1,1,[0,[86,30,87,88,89]],7,7,2,7],[[31,[[0,[86,30,87,88,89]]]]]],[[1,[0,[86,30,87,88]],7,2,7],[[31,[[0,[86,30,87,88]]]]]],[[[0,[1,69]],[0,[86,30,87,88,89]],7,7,2,7],[[31,[[0,[86,30,87,88,89]]]]]],[[[0,[1,69]],[0,[86,30,87,88,89]],7,7,2,7],[[31,[[0,[86,30,87,88,89]]]]]],[[85,22],23],[[]],0,[[],2],[[]],0,[[]],[[],18],[[],18],[[],19],[[[31,[[0,[30,86]]]]],16],[[[31,[[0,[30,86]]]]],16],[[[31,[[0,[30,86]]]]],16],[[[31,[[0,[30,86]]]]],16],[16,[[4,[3]]]],[[[4,[3]],3],16],[[[4,[3]]],[[91,[[12,[90]]]]]],0,0,0,[68],[68],[[]],[[]],[[]],[[]],[92,92],[93,93],[[]],[[]],[[[0,[73,71]],[0,[73,71]]],74],[[[0,[73,71]],[0,[73,71]]],74],0,[2],[2],[2],[2],[2],[2],[[92,22],23],[[93,22],23],[[]],[[]],[[],2],[[],2],0,[[]],[[]],0,0,0,[[]],[[]],[[],18],[[],18],[[],18],[[],18],[[],19],[[],19],0,0,0,0,0,0,0,0,0,0,0,0,0,[68],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[94,94],[[]],[[],94],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[94,94],7],[[],7],[[],7],[[94,22],23],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[15,2,2,95]],[[[15,[[0,[30,71,96,87,97,98,99]]]],2,2,95],[[100,[[0,[30,71,96,87,97,98,99]]]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2,95],[[104,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]]]],[[[15,[[0,[30,71,96,87,97]]]],2,2,95],[[105,[[0,[30,71,96,87,97]]]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2,95],[[106,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]]]],[[[15,[[0,[30,71,73]]]],2,2,95],[[107,[[0,[30,71,73]]]]]],[[[15,[[0,[30,71,73]]]],2,2,95],[[108,[[0,[30,71,73]]]]]],[[[15,[[0,[30,73,71,109,99,110]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,86,[96,[[0,[30,86,[96,[[0,[30,86,[96,[[0,[30,86,96,97,87,71]]]],97,87,71]]]],97,87,71]]]],97,87,71]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,73,71,109,99,110]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,96,99,110,87,97,71]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[[15,[[0,[30,86,71,96,87,97,98,99,101,102,103]]]],2,2,7,[6,[[15,[76]]]],95],[[91,[16]]]],[[]],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[2,2]],[[[100,[[0,[30,71,96,87,97,98,99]]]],2,2],[[0,[30,71,96,87,97,98,99]]]],[[[104,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2],[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],[[[105,[[0,[30,71,96,87,97]]]],2,2],[[0,[30,71,96,87,97]]]],[[[106,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2],[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],[[[107,[[0,[30,71,73]]]],2,2],[[0,[30,71,73]]]],[[[108,[[0,[30,71,73]]]],2,2],[[0,[30,71,73]]]],0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[15,[[0,[30,73,71]]]],8],7],[2,7],[[[112,[[0,[30,71,111,103,99,98]]]],2],7],[[[113,[30]],2],7],[[[114,[[0,[30,71,73]]]],2],7],[[[115,[[0,[30,71,73]]]],2],7],[[[116,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2],7],[[[117,[[0,[30,71,111,103]]]],2],7],[[[118,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]],2],7],[[15,8,2,2,95]],[[[15,[[0,[30,71,111,103,99,98]]]],8,2,2,95],[[112,[[0,[30,71,111,103,99,98]]]]]],[[[15,[30]],8,2,2,95],[[113,[30]]]],[[[15,[[0,[30,71,73]]]],8,2,2,95],[[114,[[0,[30,71,73]]]]]],[[[15,[[0,[30,71,73]]]],8,2,2,95],[[115,[[0,[30,71,73]]]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],8,2,2,95],[[116,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]]]],[[[15,[[0,[30,71,111,103]]]],8,2,2,95],[[117,[[0,[30,71,111,103]]]]]],[[[15,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]],8,2,2,95],[[118,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]]]],[[[31,[[0,[30,96,102,87,119,73,109,71]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,71,73,111,103,99,98]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,96,102,87,119,73,109,71]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,71,73,111,103]]]],2,2,7,[6,[[15,[76]]]],95],16],[[[31,[[0,[30,[96,[[0,[30,[96,[[0,[30,[96,[[0,[30,96,102,87,97,71,86]]]],102,87,97,71,86]]]],102,87,97,71,86]]]],102,87,97,71,86]]]],2,2,7,[6,[[15,[76]]]],95],16],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[2,2],6],[[[112,[[0,[30,71,111,103,99,98]]]],2,2],[[6,[[0,[30,71,111,103,99,98]]]]]],[[[113,[30]],2,2],[[6,[30]]]],[[[114,[[0,[30,71,73]]]],2,2],[[6,[[0,[30,71,73]]]]]],[[[115,[[0,[30,71,73]]]],2,2],[[6,[[0,[30,71,73]]]]]],[[[116,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]],2,2],[[6,[[0,[30,71,86,96,87,97,98,99,101,102,73,103]]]]]],[[[117,[[0,[30,71,111,103]]]],2,2],[[6,[[0,[30,71,111,103]]]]]],[[[118,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]],2,2],[[6,[[0,[30,71,86,96,87,97,98,99,101,102,73,111,103]]]]]],[[[31,[30]],1,30,5],[[91,[[31,[30]]]]]],[[[31,[30]],30],[[31,[30]]]],[[[31,[30]],37,30,5],[[31,[30]]]],[[[15,[[0,[120,30,73]]]],2,7],[[43,[[15,[[0,[120,30,73]]]]]]]],[[[15,[[0,[120,30,73]]]],40,7,40],[[43,[[121,[40]]]]]],[[[15,[[0,[120,30,73]]]],40,7,40,[43,[[121,[40]]]]]],[[[27,[3]]],16],[[[27,[3]]],16],[[1,10],[[6,[76]]]],[[[31,[[0,[30,77]]]],1,67,[0,[99,30]]],[[0,[99,30]]]],[[[31,[30]],1,67,30,40],[[6,[30]]]],[[[31,[[0,[30,77]]]],1,67,[0,[99,30]],40],6],[[[27,[3]],1,67,40],[[6,[49]]]],[[[27,[3]],1,67],[[6,[49]]]],[[37,1],[[6,[7]]]],[[37,1,40],[[6,[7]]]],[[37,1],[[6,[7]]]],[[37,1,40],[[6,[7]]]],[[[31,[[0,[77,30]]]],1,10],[[6,[76]]]],[[[31,[[0,[77,30]]]],1,10],[[6,[76]]]],0,0,0,0,0,0,0,0,0,[[],6],[[],6],0,[68],[[]],[[]],[122,122],[[]],[2],[2],[2],[[]],[[],2],[[]],[[]],[[],18],[[],18],[[],19],0,0,0,[1],[1],[1],[1,25],[1,25],[38],[1],[[]],0,0,0,0,[68],[25,7],[[]],[[]],[[[123,[[0,[69,26]],69]]],[[123,[[0,[69,26]],69]]]],[[]],[[[0,[25,38]]],124],[[[0,[25,38]]],125],[[[6,[8]],[6,[8]]],[[6,[8]]]],[[[6,[8]],[6,[8]]],[[6,[8]]]],[2],[2],[2],[[25,29],6],[[26,29],6],[[]],[1],[[],2],[[]],[[]],[[26,2],[[123,[26]]]],[[[123,[26]]],6],[[[123,[[0,[26,126]]]]],6],[[[123,[26]]]],[[]],[[25,2],[[123,[25]]]],[[],18],[[],18],[[],19]],"c":[],"p":[[8,"IntoIterator"],[15,"usize"],[15,"i64"],[3,"ListArray"],[4,"DataType"],[4,"Option"],[15,"bool"],[3,"Bitmap"],[3,"Buffer"],[15,"u8"],[8,"Array"],[3,"Box"],[3,"AnonymousBuilder"],[6,"Result"],[15,"slice"],[6,"ArrayRef"],[3,"Offsets"],[4,"Result"],[3,"TypeId"],[3,"MutableNullArray"],[8,"Any"],[3,"Formatter"],[6,"Result"],[3,"MutableBitmap"],[8,"Sized"],[8,"Iterator"],[3,"Utf8Array"],[3,"BinaryArray"],[8,"FnMut"],[8,"NativeType"],[3,"PrimitiveArray"],[8,"BitAnd"],[8,"BitOr"],[8,"BitXor"],[6,"LargeBinaryArray"],[6,"IdxArr"],[3,"BooleanArray"],[8,"TrustedLen"],[6,"LargeStringArray"],[6,"IdxSize"],[3,"Chunk"],[3,"Field"],[3,"Vec"],[3,"StructArray"],[3,"ErrString"],[3,"Error"],[4,"PolarsError"],[4,"ArrowError"],[15,"str"],[4,"Cow"],[8,"Into"],[3,"Error"],[4,"Error"],[4,"OutOfSpecKind"],[3,"FromUtf8Error"],[3,"Utf8Error"],[4,"Error"],[3,"Utf8Error"],[3,"Error"],[3,"TryReserveError"],[8,"Error"],[8,"Send"],[8,"Sync"],[3,"Demand"],[8,"Display"],[3,"String"],[8,"Fn"],[3,"Private"],[8,"Clone"],[3,"OrdFloat"],[8,"IsFloat"],[8,"PartialEq"],[8,"PartialOrd"],[4,"Ordering"],[15,"f32"],[15,"f64"],[8,"ToPrimitive"],[15,"i16"],[15,"i32"],[15,"i8"],[15,"isize"],[15,"u16"],[15,"u32"],[15,"u64"],[3,"EWMOptions"],[8,"Float"],[8,"AddAssign"],[8,"MulAssign"],[8,"DivAssign"],[8,"ExactSizeIterator"],[6,"PolarsResult"],[3,"RollingVarParams"],[3,"RollingQuantileParams"],[4,"QuantileInterpolOptions"],[6,"DynArgs"],[8,"Sum"],[8,"SubAssign"],[8,"Div"],[8,"NumCast"],[3,"MeanWindow"],[8,"One"],[8,"Zero"],[8,"Sub"],[3,"QuantileWindow"],[3,"SumWindow"],[3,"VarWindow"],[3,"MinWindow"],[3,"MaxWindow"],[8,"Bounded"],[8,"Mul"],[8,"Add"],[3,"MeanWindow"],[3,"SortedMinMax"],[3,"MinWindow"],[3,"MaxWindow"],[3,"QuantileWindow"],[3,"SumWindow"],[3,"VarWindow"],[8,"Copy"],[8,"Debug"],[15,"array"],[4,"Tz"],[3,"TrustMyLength"],[8,"FromIteratorReversed"],[8,"FromTrustedLenIterator"],[8,"DoubleEndedIterator"],[8,"ArrowGetItem"],[8,"ListFromIter"],[8,"ValueSize"],[8,"PolarsArray"],[8,"FromData"],[8,"FromDataUtf8"],[8,"FromDataBinary"],[8,"SlicedArray"],[8,"Utf8FromIter"],[8,"BinaryFromIter"],[8,"MutableBitmapExtension"],[8,"IndexToUsize"],[8,"IsValid"],[8,"RollingAggWindowNoNulls"],[3,"MinMaxWindow"],[8,"RollingAggWindowNulls"],[8,"ExtremaNanAware"],[8,"TrustedLenPush"],[8,"CustomIterTools"]]},\ +"polars_core":{"doc":"","t":"CHHHOOOAAAAOAOOAAAAAAOOOAAAAAOOOOGDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLAALLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLALLLLLLIKKKKKKKDDDIIDDDLLLKLLLLLLLLLKLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLKKKKLLLLLLLLLLLLALLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDIDDLLLLLLKLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDIDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLAANNDDDDIIIIIIIIIIIIIIIIIIIIIIIIIGGENIIQQQQNNDDNNNNNNNDDDNNNNDDEIIEEIQDIDDNLLLKKKKKKKKKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLKKLLLLKKKLLLLLLLLLLLLLLLLLLLLLLLLLLAKKKKLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKMLLLLMMLKKKMMLLLKKKKKKAKKLLKKKKLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLAKFAFFFFFFAFFFFINNDENNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFEEEINNNGNDNNNGDDGENNNDNDNNNNNDNDNNNNNNGDNNNGDIQRGGGGINNNGDNNNGDNNNGDNNNGDNNNNNNNGDDINNNNNNNQNNNIQGGGGGIIIIINNNNDNNNNDEGNNNNGDNNNGDNNNGDNNNGDNNNNNGNDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLMKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLAAAAAAAAAENNNNDNNNNNNNNNNEGNNNNNLLLLLLLLLLLOLLLLLLLLLLLLLLLLFLLLLFOOOOLFFLLLLLLLLLLCCCCCCCCENNLLLLLLLLLFLLFLLLLLNGDNNNNEDNDELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLMLLMLLLLMMMLGNNDENDEEDDGNNGNINNNNNNNNNNNDNNNLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLALLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMIFFFFFFFFKIKKGGGNNGDEENGNNNNNLLLFFFFFLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLFMLMLLLLLLLLLLLLLLMLLLNNEENNNNNNNNNNDNNNNNNNLLLLLLFLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLFFFFIGDIFKFLLLLLLLLLLLLALLLLLLLLLLLLLIKFDGNDIDCCICCNNCNGIIICCCCNGGICCCNNIQCCGGGCNCCCICCNCNIIINCNCIECGCIEDDNNCCNINNCCIICLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCLLLMCMLLLLALLLLLLLLLLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLLLLKLKLLLKLKLLLLLLFLLLLLLLMLLLLLLLLLLLLMLALLLLKMMLLMLKKLLLLLLLALLOOOOMLLLLLLKKAKKLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAKLLLLLLLLLLLLIIIKKKDLLFLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLIKKIILLIDGLLLLLLLLLLLLLLLLLLLLLLLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNCCNNIEENNDDGILLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLKLLLKKLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLKLLLLLLALLLLLLLLLKLLLLLLLLLKKLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLKALLLLLLLLKLLLKLLKLLLLLLKLLLLLKLLLLLLLLLLLLLLLKLKKKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLIIIQFKKLLKKLLKKLLKKLLKKLLNNELLLLLLLLLLLLLLLLLLLLLLLGDLLLLLLLLLLLLLLLLLLLLLLIIIIIDDDLFFFFFFFLCCLLLLLLLLLLLLFFLLFFFFLLLLLLLLLLLLFLLLLALLLLLLLKLLLLFFLLLLLLLLLKLLLLLLCLFFFLLLLLFLLLLLLLLLFFFF","n":["IdBuildHasher","POOL","PROCESS_ID","SINGLE_LOCK","apply_method_all_arrow_series","apply_method_physical_integer","apply_method_physical_numeric","chunked_array","cloud","config","datatypes","df","doc","downcast_as_macro_arg_physical","downcast_as_macro_arg_physical_mut","error","export","fmt","frame","functions","hashing","match_arrow_data_type_apply_macro_ca","match_dtype_to_logical_apply_macro","match_dtype_to_physical_apply_macro","prelude","schema","series","testing","utils","with_match_physical_integer_polars_type","with_match_physical_integer_type","with_match_physical_numeric_polars_type","with_match_physical_numeric_type","ChunkIdIter","ChunkedArray","RevMapping","__clone_box","_can_fast_explode","abs","add","add","add","add","add_to","agg_list","all","all_3val","amortized_iter","amortized_iter_with_name","any","any_3val","append","apply","apply_amortized","apply_cast_numeric","apply_in_place","apply_kernel","apply_kernel_cast","apply_mut","apply_mut","apply_mut","apply_on_opt","apply_to_inner","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arg_sort","arg_sort_multiple","arg_unique","arithmetic","as_binary","as_ref","as_ref_dtype","bitand","bitor","bitxor","borrow","borrow","borrow_mut","borrow_mut","branch_apply_cast_numeric_no_null","builder","cast","cast","cast_and_apply_in_place","cast_unchecked","chunk_id","chunks","chunks_mut","clone","clone_into","comparison","cont_slice","cummax","cummin","cumprod","cumsum","data_views","default","deref","deref","deref_mut","deref_mut","div","div","div","div","divide","drop","drop","dtype","equal","equal","equal_missing","equal_missing","extend","fill_null_with_values","filter","first_non_null","float","fmt","fmt","from","from","from","from","from","from_chunks","from_iter","from_iter","from_iter","from_iter_options","from_iter_trusted_length","from_iter_trusted_length","from_iter_values","from_par_iter","from_slice","from_slice_options","from_trusted_len_iter_rev","from_vec","full","full_null","full_null_with_dtype","get","get","get_any_value","get_any_value_unchecked","get_inner","get_unchecked","get_unchecked","group_tuples","group_tuples_perfect","gt","gt","gt_eq","gt_eq","has_validity","head","init","init","init_rand","inner_dtype","into","into","into_iter","into_no_null_iter","into_series","is_empty","is_finite","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_optimal_aligned","is_sorted_flag","iter_validities","iterator","kernels","last_non_null","len","lhs_div","lhs_rem","lhs_sub","limit","lt","lt","lt_eq","lt_eq","max","max","max_as_series","mean","mean","median","median_as_series","min","min","min_as_series","mmap_slice","mmap_slice","mul","mul","mul","mul","multiply","n_unique","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_from_index","new_from_owned_with_null_bitmap","new_vec","none_to_nan","not_equal","not_equal","not_equal_and_validity","not_equal_missing","not_equal_missing","null_count","ops","par_iter","par_iter","par_iter_indexed","par_iter_indexed","peak_max","peak_min","prod_as_series","quantile","quantile_as_series","rand_bernoulli","rand_normal","rand_standard_normal","rand_uniform","rechunk","ref_field","rem","rem","rem","rem","remainder","rename","reverse","sample_frac","sample_n","set","set_at_idx","set_at_idx_with","set_fast_explode","set_inner_dtype","set_sorted_flag","shift","shift_and_fill","shrink_to_fit","slice","sort","sort_with","std","std_as_series","sub","sub","sub","sub","subtract","sum","sum","sum_as_series","tail","take","take_rand","take_unchecked","temporal","tile","to_owned","to_physical","to_utf8","to_vec","to_vec_null_aware","try_apply","try_apply_amortized","try_from","try_from","try_into","try_into","type_id","type_id","unique","unpack_series_matching_type","unset_fast_explode_list","upstream_traits","var","var_as_series","vzip","vzip","with_chunks","zip_with","ArrayArithmetics","add","div","div_scalar","mul","rem","rem_scalar","sub","BinaryChunkedBuilder","BinaryChunkedBuilderCow","BooleanChunkedBuilder","ChunkedBuilder","NewChunkedArray","PrimitiveChunkedBuilder","Utf8ChunkedBuilder","Utf8ChunkedBuilderCow","__clone_box","__clone_box","__clone_box","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_option","append_option","append_option","append_value","append_value","append_value","append_value","append_value","append_value","append_value","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","capacity","clone","clone","clone","clone_into","clone_into","clone_into","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","finish","finish","finish","finish","finish","finish","finish","from","from","from","from","from","from","from_iter_options","from_iter_values","from_slice","from_slice_options","init","init","init","init","init","init","into","into","into","into","into","into","list","new","new","new","new","new","new","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","shrink_to_fit","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","AnonymousListBuilder","AnonymousOwnedListBuilder","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListPrimitiveChunkedBuilder","ListUtf8ChunkedBuilder","append_array","append_empty","append_empty","append_iter","append_iter","append_iter_values","append_null","append_null","append_null","append_null","append_null","append_null","append_null","append_opt_array","append_opt_series","append_opt_series","append_opt_slice","append_series","append_series","append_series","append_series","append_series","append_series","append_series","append_slice","append_trusted_len_iter","append_trusted_len_iter","append_values_iter","append_values_iter","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","default","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","fast_explode","fast_explode","fast_explode","fast_explode","fast_explode","field","field","field","field","field","finish","finish","finish","from","from","from","from","from","from","get_list_builder","init","init","init","init","init","init","inner_array","inner_array","inner_array","inner_array","inner_array","into","into","into","into","into","into","new","new","new","new","new","new","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","BinaryIterNoNull","BoolIterNoNull","ListIterNoNull","PolarsIterator","SomeIterator","StructIter","Utf8IterNoNull","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","from","from","from","from","from","from","init","init","init","init","init","init","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_vec","into_vec","new","new","new","new","next","next","next","next","next","next","next_back","next_back","next_back","next_back","next_back","par","size_hint","size_hint","size_hint","size_hint","size_hint","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","list","utf8","Array","Backward","BinaryTakeRandom","BinaryTakeRandomSingleChunk","BoolTakeRandom","BoolTakeRandomSingleChunk","ChunkAgg","ChunkAnyValue","ChunkApply","ChunkApplyKernel","ChunkBytes","ChunkCast","ChunkCompare","ChunkCumAgg","ChunkExpandAtIndex","ChunkExplode","ChunkFillNullValue","ChunkFilter","ChunkFull","ChunkFullNull","ChunkPeaks","ChunkQuantile","ChunkReverse","ChunkSet","ChunkShift","ChunkShiftFill","ChunkSort","ChunkTake","ChunkUnique","ChunkVar","ChunkZip","Dummy","FillNullLimit","FillNullStrategy","Forward","IntoTakeRandom","IsIn","Item","Item","Item","Item","Iter","IterNulls","ListTakeRandom","ListTakeRandomSingleChunk","Max","MaxBound","Mean","Min","MinBound","Multi","Multi","NumTakeRandomChunked","NumTakeRandomCont","NumTakeRandomSingleChunk","One","Single","Single","SingleNoNull","SortMultipleOptions","SortOptions","TakeIdx","TakeIterator","TakeIteratorNulls","TakeRandBranch2","TakeRandBranch3","TakeRandom","TakeRandom","TakeRandomBitmap","TakeRandomUtf8","Utf8TakeRandom","Utf8TakeRandomSingleChunk","Zero","__clone_box","__clone_box","__clone_box","apply","apply_cast_numeric","apply_kernel","apply_kernel_cast","apply_on_opt","apply_to_slice","apply_with_idx","apply_with_idx_on_opt","arg_sort","arg_sort_multiple","arg_unique","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed_clone","boxed_clone","boxed_clone","boxed_clone","branch_apply_cast_numeric_no_null","cast","cast_unchecked","check_bounds","check_bounds","check_bounds","check_bounds","clone","clone","clone","clone_into","clone_into","clone_into","cummax","cummin","cumprod","cumsum","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descending","descending","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","equal","equal_missing","equivalent","equivalent","equivalent","explode","explode_and_offsets","fill_null_with_values","filter","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","full","full","full_null","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get","get_any_value","get_any_value_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","gt","gt_eq","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_in","lt","lt_eq","maintain_order","max","mean","median","min","multithreaded","multithreaded","n_unique","new_from_index","not_equal","not_equal_missing","nulls_last","other","peak_max","peak_min","quantile","reverse","set","set_at_idx","set_at_idx_with","shift","shift_and_fill","sort","sort","sort_with","std","sum","take","take_rand","take_unchecked","to_byte_slices","to_owned","to_owned","to_owned","try_apply","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unique","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","zip","zip_with","_broadcast_descending","arg_sort_multiple","arg_sort_no_nulls","sort_slice_ascending","sort_slice_descending","_get_rows_encoded","_get_rows_encoded_ca","_get_rows_encoded_compat_array","conversion","unix_time","datetime_to_timestamp_ms","datetime_to_timestamp_ns","datetime_to_timestamp_us","PolarsAsRef","Aws","Azure","CloudOptions","CloudType","File","Gcp","__clone_box","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","default","deref","deref","deref_mut","deref_mut","drop","drop","eq","fmt","from","from","from_str","from_untyped_config","init","init","into","into","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","verbose","AnyValue","ArrowDataType","ArrowTimeUnit","AsRefDataType","Binary","Binary","Binary","BinaryChunked","BinaryOwned","BinaryType","Boolean","Boolean","Boolean","BooleanChunked","BooleanType","CategoricalType","CloudOptions","DataType","Date","Date32","Date64","DateType","Datetime","DatetimeType","Decimal","Decimal256","Dictionary","Duration","Duration","DurationType","Extension","Field","FixedSizeBinary","FixedSizeList","Float16","Float32","Float32","Float32","Float32Chunked","Float32Type","Float64","Float64","Float64","Float64Chunked","Float64Type","GetAnyValue","HashMap","IDX_DTYPE","IdxArr","IdxCa","IdxSize","IdxType","InitHashMaps","Int16","Int16","Int16","Int16Chunked","Int16Type","Int32","Int32","Int32","Int32Chunked","Int32Type","Int64","Int64","Int64","Int64Chunked","Int64Type","Int8","Int8","Int8","Int8Chunked","Int8Type","Interval","LargeBinary","LargeList","LargeUtf8","List","List","List","ListChunked","ListType","Logical","LogicalType","Map","Microsecond","Microseconds","Millisecond","Milliseconds","Nanosecond","Nanoseconds","Native","Null","Null","Null","NumericNative","POLARSTYPE","PlHashMap","PlHashSet","PlIdHashMap","PlIndexMap","PlIndexSet","PolarsDataType","PolarsFloatType","PolarsIntegerType","PolarsNumericType","PolarsSingleType","Second","Struct","Struct","Struct","StructChunked","StructOwned","Time","Time32","Time64","TimeType","TimeUnit","TimeZone","Timestamp","UInt16","UInt16","UInt16","UInt16Chunked","UInt16Type","UInt32","UInt32","UInt32","UInt32Chunked","UInt32Type","UInt64","UInt64","UInt64","UInt64Chunked","UInt64Type","UInt8","UInt8","UInt8","UInt8Chunked","UInt8Type","Union","Unknown","Utf8","Utf8","Utf8","Utf8Chunked","Utf8Owned","Utf8Type","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_can_fast_explode","_iter_struct_av","_materialize_struct_av","add","add","add","add","add","add","add","add","add","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","add_to","agg_list","agg_list","agg_list","agg_list","agg_list","all","all_3val","amortized_iter","amortized_iter_with_name","any","any_3val","apply","apply","apply","apply","apply_amortized","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_cast_numeric","apply_kernel","apply_kernel","apply_kernel","apply_kernel_cast","apply_kernel_cast","apply_kernel_cast","apply_mut","apply_mut","apply_on_opt","apply_on_opt","apply_on_opt","apply_on_opt","apply_to_inner","apply_to_slice","apply_to_slice","apply_to_slice","apply_to_slice","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","apply_with_idx_on_opt","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_sort_multiple","arg_unique","arg_unique","arg_unique","arg_unique","arg_unique","as_binary","as_borrowed","as_ref_dtype","bitand","bitand","bitor","bitor","bitxor","bitxor","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","branch_apply_cast_numeric_no_null","cast","cast","cast","cast","cast","cast","cast","cast_unchecked","cast_unchecked","cast_unchecked","cast_unchecked","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","coerce","data_type","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","divide","divide","divide","divide","divide","divide","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","dtype","dtype","dtype","dtype","eq","eq","eq","eq","eq","eq","eq","equal","equal","equal","equal","equal","equal","equal","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equal_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","explode_and_offsets","explode_and_offsets","field","field_by_name","fields","fields_mut","fill_null_with_values","fill_null_with_values","filter","filter","filter","filter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter_options","from_iter_options","from_iter_options","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_iter_values","from_iter_values","from_iter_values","from_owned","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_par_iter","from_slice","from_slice","from_slice","from_slice_options","from_slice_options","from_slice_options","from_trusted_len_iter_rev","full","full","full","full","full_null","full_null","full_null","full_null","full_null","full_null_with_dtype","get","get","get","get","get","get","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_any_value_unchecked","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_dtype","get_inner","get_str","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_unchecked","get_values_size","get_values_size","get_values_size","group_tuples","group_tuples","group_tuples","group_tuples","gt","gt","gt","gt","gt","gt","gt","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","gt_eq","hash","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","inner_dtype","inner_dtype","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_series","into_static","is_empty","is_float","is_in","is_in","is_in","is_in","is_integer","is_logical","is_nested_null","is_nested_null","is_numeric","is_primitive","is_signed","is_signed","is_temporal","is_unsigned","is_unsigned","len","lt","lt","lt","lt","lt","lt","lt","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","lt_eq","max","max_as_series","max_as_series","max_as_series","max_as_series","mean","median","median","median_as_series","median_as_series","merge_dtypes","min","min_as_series","min_as_series","min_as_series","min_as_series","mmap_slice","multiply","multiply","multiply","multiply","multiply","multiply","n_unique","n_unique","name","name","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_from_index","new_from_index","new_from_index","new_from_index","not","not","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","not_equal_missing","null_count","par_iter","par_iter","par_iter_indexed","par_iter_indexed","partial_cmp","quantile","quantile","quantile_as_series","quantile_as_series","rand_bernoulli","rechunk","ref_field","remainder","remainder","remainder","remainder","remainder","remainder","rename","reverse","reverse","reverse","reverse","set","set","set","set_at_idx","set_at_idx","set_at_idx","set_at_idx_with","set_at_idx_with","set_at_idx_with","set_fast_explode","set_inner_dtype","set_name","shift","shift","shift","shift","shift_and_fill","shift_and_fill","shift_and_fill","shift_and_fill","sort","sort","sort","sort","sort","sort_with","sort_with","sort_with","sort_with","sort_with","std","std","std_as_series","std_as_series","subtract","subtract","subtract","subtract","subtract","subtract","sum","sum_as_series","sum_as_series","sum_as_series","sum_as_series","take","take","take","take","take_rand","take_rand","take_rand","take_rand","take_unchecked","take_unchecked","take_unchecked","take_unchecked","to_arrow","to_arrow","to_arrow","to_ascii","to_logical_type","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_physical","to_physical_type","to_string","to_string","to_string","to_utf8","try_apply","try_apply","try_apply","try_apply","try_apply_amortized","try_extract","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unique","unique","unique","unique","unique","unnest","value_within_range","var","var","var_as_series","var_as_series","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vec_hash_combine","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","with_capacity","zip_with","zip_with","zip_with","zip_with","changelog","v0_10_0_11","v0_3","v0_4","v0_5","v0_6","v0_7","v0_8","v0_9","ArrowError","ArrowError","ColumnNotFound","ComputeError","Duplicate","ErrString","External","ExternalFormat","InvalidArgumentError","InvalidOperation","Io","Io","NoData","NotYetImplemented","OutOfSpec","Overflow","PolarsError","PolarsResult","SchemaFieldNotFound","SchemaMismatch","ShapeMismatch","StringCacheMismatch","StructFieldNotFound","borrow","borrow","borrow_mut","borrow_mut","deref","deref","deref","deref_mut","deref_mut","drop","drop","feature_gated","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_external_error","get_warning_function","init","init","into","into","map_err","polars_bail","polars_ensure","polars_err","polars_warn","provide","set_warning_function","to_compute_err","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","_boost_hash_combine","ahash","arrow","chrono","num","once_cell","rayon","regex","FloatFmt","Full","Mixed","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","from","get_float_fmt","init","into","set_float_fmt","to_owned","try_from","try_into","type_id","vzip","Any","ArrowChunk","DataFrame","First","Ignore","Last","None","NullStrategy","PhysRecordBatchIter","Propagate","RecordBatchIter","UniqueKeepStrategy","__clone_box","__clone_box","__clone_box","_add_columns","_create_left_df_from_slice","_filter_seq","_finish_left_join","_left_join_from_series","_outer_join_from_series","_slice_and_realloc","agg_chunks","align_chunks","apply","apply_at_idx","as_single_chunk","as_single_chunk_par","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear","clone","clone","clone","clone_into","clone_into","clone_into","column","columns","cross_join","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop_in_place","drop_many","drop_many_amortized","drop_nulls","dtypes","empty","eq","eq","equivalent","equivalent","equivalent","estimated_size","explode","explode","explode_impl","extend","fields","fill_null","filter","find_idx_by_name","fmt","fmt","fmt","fmt","frame_equal","frame_equal_missing","frame_equal_schema","from","from","from","from","from","from","from","from_iter","from_rows","from_rows_and_schema","from_rows_iter_and_schema","get","get_column_names","get_column_names_owned","get_columns","get_columns_mut","get_row","get_row_amortized","get_row_amortized_unchecked","get_supertype","groupby","groupby","groupby_stable","groupby_with_series","hash_join","head","height","hmax","hmean","hmin","hstack","hstack_mut","hstack_mut_unchecked","hsum","index","index","index","index","index","index","index","index","init","init","init","init","init","insert_at_idx","into","into","into","into","into","into_iter","into_iter","into_struct","is_duplicated","is_empty","is_unique","iter","iter_chunks","iter_chunks_physical","max","mean","median","melt","melt2","min","n_chunks","new","new_no_checks","next","next","null_count","pipe","pipe_mut","pipe_with_args","pop","ptr_equal","quantile","rename","replace","replace_at_idx","replace_or_add","reverse","row","sample_frac","sample_n","schema","select","select_at_idx","select_by_range","select_physical","select_series","select_with_schema","select_with_schema_unchecked","set_column_names","shape","shift","should_rechunk","shrink_to_fit","size_hint","size_hint","slice","slice_par","sort","sort_impl","sort_in_place","sort_with_options","std","sum","tail","take","take_iter","take_iter_unchecked","take_opt_iter_unchecked","to_owned","to_owned","to_owned","to_string","top_k","transpose","try_apply","try_apply_at_idx","try_find_idx_by_name","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_rows_iter_and_schema","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","unique","unique_impl","unique_stable","unnest","var","vstack","vstack_mut","vzip","vzip","vzip","vzip","vzip","width","with_column","with_column_and_schema","with_column_unchecked","with_row_count","with_row_count_mut","MeltArgs","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","eq","fmt","from","id_vars","init","into","streamable","to_owned","try_from","try_into","type_id","value_name","value_vars","variable_name","vzip","BorrowIdxItem","Count","First","GroupBy","GroupByMethod","Groups","GroupsIdx","GroupsIndicator","GroupsProxy","GroupsProxyIter","GroupsProxyParIter","GroupsSlice","Idx","Idx","IdxItem","Implode","IntoGroupsProxy","Last","Max","Mean","Median","Min","NUnique","NanMax","NanMin","Quantile","Slice","Slice","SlicedGroups","Std","Sum","Var","__clone_box","__clone_box","__clone_box","__clone_box","agg_list","aggregations","all","apply","as_list_chunked","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","count","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","df","drive_unindexed","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expr","first","first","first","first_mut","fmt","fmt","fmt","fmt","fmt","fmt_groupby_column","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_par_iter","get","get_groups","get_groups_mut","group_count","group_lengths","group_tuples","group_tuples","groups","idx_mut","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into_idx","into_iter","into_iter","into_iter","into_par_iter","into_par_iter","into_par_iter","is_empty","is_empty","is_sorted_flag","iter","iter","keys","keys_sliced","last","len","len","max","mean","median","min","n_unique","new","new","next","nth","par_apply","par_iter","par_iter","quantile","select","slice","sort","sort","std","sum","take_group_firsts","take_groups","take_groups_mut","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unroll","unwrap_idx","unwrap_slice","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","groups","rolling","AggList","_agg_helper_idx","_agg_helper_idx_no_null","_agg_helper_slice","_agg_helper_slice_no_null","_rolling_apply_agg_window_no_nulls","_rolling_apply_agg_window_nulls","_slice_from_offsets","_use_rolling_kernels","agg_list","PhysicalAggExpr","evaluate","root_name","ChunkId","ChunkJoinIds","ChunkJoinOptIds","Cross","Inner","InnerJoinIds","JoinArgs","JoinType","JoinValidation","Left","LeftJoinIds","ManyToMany","ManyToOne","OneToMany","OneToOne","Outer","__clone_box","__clone_box","__clone_box","_inner_join_multiple_keys","_join_suffix_name","_left_join_multiple_keys","_outer_join_multiple_keys","_sort_or_hash_inner","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","default","default_join_ids","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","how","init","init","init","into","into","into","is_valid_join","needs_checks","new","private_left_join_multiple_keys","slice","suffix","suffix","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","validation","vzip","vzip","vzip","All","All","AnyValueBuffer","AnyValueBufferTrusted","Boolean","Boolean","Float32","Float32","Float64","Float64","Int32","Int32","Int64","Int64","Row","Struct","UInt32","UInt32","UInt64","UInt64","Utf8","Utf8","__clone_box","__clone_box","__clone_box","add","add_unchecked_borrowed_physical","add_unchecked_owned_physical","any_values_to_dtype","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","coerce_data_type","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","eq","equivalent","equivalent","equivalent","fmt","from","from","from","from","from","infer_schema","init","init","init","into","into","into","into_series","into_series","new","new","new","reset","reset","rows_to_schema_first_non_null","rows_to_schema_supertypes","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","cov_f","cov_i","pearson_corr_f","pearson_corr_i","FxHash","IdBuildHasher","IdHasher","VecHash","_boost_hash_combine","_fx_hash","_hash_binary_array","borrow","borrow_mut","default","deref","deref_mut","drop","finish","from","get_k","get_k","init","into","partition","try_from","try_into","type_id","vec_hash","vec_hash","vec_hash_combine","vec_hash_combine","vzip","write","write_i32","write_i64","write_u32","write_u64","AsU64","as_u64","this_partition","Arc","ArrayRef","ArrowError","ArrowField","ArrowGetItem","ArrowSchema","BinaryChunkedBuilder","BooleanChunkedBuilder","ChunkAggSeries","ChunkedArray","ChunkedBuilder","ColumnNotFound","ComputeError","DataFrame","Duplicate","DynArgs","FromData","FromDataBinary","FromDataUtf8","FxHash","GroupsIdx","GroupsProxy","GroupsSlice","Higher","IdxArr","IdxSize","IndexToUsize","IntoGroupsProxy","IntoSeries","IntoVec","InvalidOperation","Io","IsFloat","Item","JoinArgs","JoinType","LargeBinaryArray","LargeListArray","LargeStringArray","LhsNumOps","Linear","ListBinaryChunkedBuilder","ListBooleanChunkedBuilder","ListBuilderTrait","ListFromIter","ListPrimitiveChunkedBuilder","ListUtf8ChunkedBuilder","Lower","MeltArgs","Midpoint","MutableBitmapExtension","NamedFrom","NamedFromOwned","Nearest","NewChunkedArray","NoData","NumOpsDispatch","PolarsArray","PolarsError","PolarsIterator","PolarsResult","PrimitiveChunkedBuilder","QuantileAggSeries","QuantileInterpolOptions","RollingQuantileParams","RollingVarParams","SchemaFieldNotFound","SchemaMismatch","Series","SeriesTrait","ShapeMismatch","SlicedArray","StringCacheMismatch","StructFieldNotFound","UniqueKeepStrategy","Utf8ChunkedBuilder","ValueSize","VarAggSeries","VecHash","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","as_fd","as_ptr","as_raw_fd","as_ref","as_slice_mut","assume_init","assume_init","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloud","cmp","compare","data_type","data_type","datatypes","ddof","decrement_strong_count","default","default","default","default_arrays","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","description","df","downcast","downcast_unchecked","downgrade","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fields","filter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_data_default","from_data_unchecked_default","from_data_unchecked_default","from_iter","from_iter_binary_trusted_len","from_iter_bool_trusted_len","from_iter_primitive_trusted_len","from_iter_utf8_trusted_len","from_raw","from_vec","ge","get","get_mut","get_mut_unchecked","get_names","get_unchecked","get_unchecked","get_values_size","gt","has_validity","hash","hash","increment_strong_count","index_of","indexes_to_usizes","init","init","init","init","init","init","init","interpol","into","into","into","into","into","into","into","into_inner","into_raw","into_series","is_float","is_nan","is_nullable","le","list","lt","make_mut","max_as_series","max_as_series","median_as_series","metadata","metadata","min_as_series","min_as_series","name","ne","negative_to_usize","new","new","new","new_cyclic","new_uninit","new_uninit_slice","new_zeroed","new_zeroed_slice","null","partial_cmp","pin","polars_bail","polars_ensure","polars_err","polars_warn","prob","prod_as_series","prod_as_series","provide","provide","provide","ptr_eq","quantile_as_series","set_bit_unchecked","slice","slice_typed","slice_typed_unchecked","source","source","spawn_local_obj","spawn_obj","status","status_local","std_as_series","strong_count","sum_as_series","sum_as_series","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new_uninit","try_new_zeroed","try_pin","try_unwrap","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap","unwrap_or_clone","utf8","var_as_series","view","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weak_count","with_metadata","with_metadata","wrap_msg","FromData","FromDataBinary","FromDataUtf8","from_data_default","from_data_unchecked_default","from_data_unchecked_default","AnonymousBuilder","borrow","borrow_mut","convert_inner_type","deref","deref_mut","drop","finish","from","init","into","is_empty","new","offsets","push","push_empty","push_multiple","push_null","push_opt","take_offsets","try_from","try_into","type_id","vzip","MutableNullArray","as_any","as_box","as_mut_any","borrow","borrow_mut","data_type","default","deref","deref_mut","drop","fmt","from","init","into","len","push_null","reserve","shrink_to_fit","try_from","try_into","type_id","validity","vzip","SlicedArray","slice_typed","slice_typed_unchecked","BinaryFromIter","Utf8FromIter","from_values_iter","from_values_iter","IndexOfSchema","Schema","SchemaRef","__clone_box","borrow","borrow_mut","clone","clone_into","contains","default","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","fmt","from","from","from_iter","get","get_at_index","get_at_index_mut","get_field","get_full","get_names","get_names","index_of","index_of","init","insert_at_index","into","into_iter","is_empty","iter","iter_dtypes","iter_fields","iter_names","len","merge","new","new_inserting_at_index","remove","rename","set_dtype","set_dtype_at_index","shift_remove","shift_remove_index","to_arrow","to_owned","to_supertype","try_from","try_get","try_get_at_index","try_get_field","try_get_full","try_get_mut","try_index_of","try_into","type_id","vzip","with_capacity","with_column","Ascending","Ascending","ChunkCompare","ChunkCompare","Descending","Descending","IntoSeries","IsSorted","IsSorted","Not","Not","Series","SeriesIter","SeriesPhysIter","SeriesTrait","__clone_box","__clone_box","_sum_as_series","_sum_as_series","abs","add","add","add","add","append","arg_sort","arg_sort","arg_unique","arg_unique","arithmetic","array_ref","as_any","as_any","as_any_mut","as_any_mut","as_list","as_mut","as_ref","as_ref","as_single_ptr","as_single_ptr","as_single_ptr","binary","bitand","bitand","bitor","bitor","bitxor","bitxor","bool","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","cast","cast","cast_unchecked","ceil","chunk_lengths","chunks","chunks_mut","clear","clip","clip_max","clip_min","clone","clone","clone_inner","clone_into","clone_into","cummax","cummin","cumprod","cumsum","default","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","div","div","div","div","drop","drop","drop","drop_nulls","drop_nulls","dtype","dtype","eq","eq","equal","equal","equal","equal_missing","equal_missing","equal_missing","equivalent","equivalent","equivalent","estimated_size","explode","extend","extend_constant","f32","f64","field","field","fill_null","filter","filter_threaded","floor","fmt","fmt","fmt","fmt_list","from","from","from","from","from_any_values","from_any_values_and_dtype","from_chunks_and_dtype_unchecked","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_iter","from_vec","from_vec","from_vec","from_vec","from_vec","from_vec","full_null","get","get_data_ptr","get_unchecked","get_unchecked","gt","gt","gt","gt_eq","gt_eq","gt_eq","has_validity","head","i16","i32","i64","i8","idx","implementations","implode","init","init","init","into","into","into","into_frame","into_iter","into_series","into_series","is_empty","is_empty","is_finite","is_in","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_series","is_series","is_series","is_sorted_flag","is_sorted_flag","iter","len","limit","limit","list","lt","lt","lt","lt_eq","lt_eq","lt_eq","max","max_as_series","max_as_series","mean","mean","mean_as_series","median","median","median_as_series","median_as_series","min","min_as_series","min_as_series","mul","mul","mul","mul","n_chunks","n_chunks","n_unique","n_unique","name","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_empty","new_from_index","new_null","next","not_equal","not_equal","not_equal","not_equal_missing","not_equal_missing","not_equal_missing","null_count","ops","peak_max","peak_max","peak_min","peak_min","phys_iter","product","quantile_as_series","quantile_as_series","rechunk","rem","rem","rem","rename","rename","reshape","reverse","round","sample_frac","sample_n","series_equal","series_equal_missing","set_sorted_flag","shift","shrink_to_fit","shrink_to_fit","shrink_to_fit","shuffle","size_hint","slice","sort","sort_with","sort_with","std_as_series","std_as_series","str_value","strict_cast","struct_","sub","sub","sub","sub","sum","sum_as_series","tail","take","take_every","take_iter","take_iter_unchecked","take_opt_iter_unchecked","take_threaded","take_unchecked","take_unchecked_from_slice","take_unchecked_threaded","tile","tile","to_arrow","to_owned","to_owned","to_physical_repr","to_string","try_add","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","u16","u32","u64","u8","unique","unique","unique_stable","unpack","unstable","utf8","var_as_series","var_as_series","vzip","vzip","vzip","zip_with","LhsNumOps","NumOpsDispatch","NumOpsDispatchInner","Output","_struct_arithmetic","add","add_to","add_to","add_to","div","divide","divide","divide","mul","multiply","multiply","multiply","rem","remainder","remainder","remainder","sub","subtract","subtract","subtract","Drop","Ignore","NullBehavior","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","fmt","from","hash","init","into","to_owned","try_from","try_into","type_id","vzip","ArrayBox","UnstableSeries","__clone_box","as_mut","as_ref","borrow","borrow_mut","clone","clone_into","deep_clone","deref","deref_mut","drop","from","init","into","new","swap","to_owned","try_from","try_into","type_id","vzip","with_array","Arg","CustomIterTools","CustomIterToolsSized","FromTrustedLenIterator","IntoVec","NoNull","TrustMyLength","Wrap","__clone_box","_set_partition_size","_to_physical_and_bit_repr","accumulate_dataframes_horizontal","accumulate_dataframes_vertical","accumulate_dataframes_vertical_unchecked","align_chunks_binary","align_chunks_ternary","all_equal","arg_sort_no_nulls","arrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","boxed_clone","boxed_clone","check_bounds","check_bounds","clone","clone_into","coalesce_nulls","coalesce_nulls_series","collect_reversed","collect_trusted","combine_validities_and","combine_validities_or","concat_df","concat_df_unchecked","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","ensure_sorted_arg","eq","equivalent","equivalent","equivalent","flatten","fold_first_","fold_options","from","from","from","from_iter","from_iter","from_iter_trusted_length","from_iter_trusted_length","from_iter_trusted_length","from_par_iter","from_trusted_len_iter_rev","get_supertype","get_time_units","hash","init","init","init","into","into","into","into_inner","into_iter","into_vec","into_vec","into_vec","new","new","next","next_back","rayon","size_hint","slice_slice","split_ca","split_df_as_ref","to_owned","trust_my_length","try_from","try_from","try_from","try_get_supertype","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_unstable_series","flatten_df_iter","flatten_par","flatten_series"],"q":[[0,"polars_core"],[33,"polars_core::chunked_array"],[317,"polars_core::chunked_array::arithmetic"],[325,"polars_core::chunked_array::builder"],[459,"polars_core::chunked_array::builder::list"],[595,"polars_core::chunked_array::iterator"],[703,"polars_core::chunked_array::iterator::par"],[705,"polars_core::chunked_array::ops"],[1130,"polars_core::chunked_array::ops::sort"],[1135,"polars_core::chunked_array::ops::sort::arg_sort_multiple"],[1138,"polars_core::chunked_array::temporal"],[1140,"polars_core::chunked_array::temporal::conversion"],[1143,"polars_core::chunked_array::upstream_traits"],[1144,"polars_core::cloud"],[1183,"polars_core::config"],[1184,"polars_core::datatypes"],[2314,"polars_core::doc"],[2315,"polars_core::doc::changelog"],[2323,"polars_core::error"],[2397,"polars_core::export"],[2405,"polars_core::fmt"],[2426,"polars_core::frame"],[2680,"polars_core::frame::explode"],[2705,"polars_core::frame::groupby"],[2939,"polars_core::frame::groupby::GroupsProxy"],[2941,"polars_core::frame::groupby::aggregations"],[2951,"polars_core::frame::groupby::expr"],[2954,"polars_core::frame::hash_join"],[3054,"polars_core::frame::row"],[3147,"polars_core::functions"],[3151,"polars_core::hashing"],[3184,"polars_core::hashing::partition"],[3187,"polars_core::prelude"],[3551,"polars_core::prelude::default_arrays"],[3557,"polars_core::prelude::list"],[3581,"polars_core::prelude::null"],[3605,"polars_core::prelude::slice"],[3608,"polars_core::prelude::utf8"],[3612,"polars_core::schema"],[3676,"polars_core::series"],[4047,"polars_core::series::arithmetic"],[4072,"polars_core::series::ops"],[4098,"polars_core::series::unstable"],[4122,"polars_core::utils"],[4230,"polars_core::utils::flatten"]],"d":["","","","","","","","The typed heart of every Series column.","","","Data types supported by Polars.","","Other documentation","Apply a macro on the Downcasted ChunkedArray’s of …","Apply a macro on the Downcasted ChunkedArray’s of …","","","","DataFrame module.","Functions","","Apply a macro on the Downcasted ChunkedArray’s","Apply a macro on the Series","Apply a macro on the Series","Everything you need to get started with Polars.","","Type agnostic columnar data structure.","Testing utilities.","","","","","","","ChunkedArray","","","","Convert all values to their absolute/positive value.","","","","","","","Check if all values are true","","This is an iterator over a ListChunked that save …","","Check if any value is true","","Append in place. This is done by adding the chunks of other…","","Apply a closure F elementwise.","","Cast a numeric array to another numeric data type and …","","","","","","","Ignore the list indices and apply func to the inner type …","","","","","Panics","","Implementations of arithmetic operations on ChunkedArray’…","","","","","","","","","","","","","Implementations of the ChunkCast Trait.","","Cast a numeric array to another numeric data type and …","","Unique id representing the number of chunks","A reference to the chunks","A mutable reference to the chunks","","","","Contiguous slice","","","","","Get slices of the underlying arrow data. NOTE: null values …","","","","","","","","","","","","","Get data type of ChunkedArray.","","","","","Extend the memory backed by this array with the values …","","","Get the index of the first non null value in this …","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Create a new ChunkedArray from existing chunks.","","","","","","","Create a new ChunkedArray from an iterator.","","","","","Create a new ChunkedArray by taking ownership of the Vec. …","","","","","","","","Get the inner values as Series, ignoring the list offsets.","","","","","","","","","Return if any the chunks in this [ChunkedArray] have a …","Get the head of the ChunkedArray","","","","Get the inner data type of the list.","Calls U::from(self).","Calls U::from(self).","","","","Check if ChunkedArray is empty.","","","","","","Get a mask of the valid values.","Get a mask of the null values.","Returns true if contains a single chunk and has no null …","","Get the buffer of bits representing null values","","","Get the index of the last non null value in this …","Get the length of the ChunkedArray","Apply lhs / self","Apply lhs % self","Apply lhs - self","Take a view of top n elements","","","","","","","","","","","","","","","Create a temporary ChunkedArray from a slice.","Create a temporary ChunkedArray from a slice.","","","","","","","Name of the ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","","Nullify values in slice with an existing null bitmap","Specialization that prevents an allocation prefer this …","Convert missing values to NaN values.","","","","","","Count the null values.","Traits for miscellaneous operations on ChunkedArray","","","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","","","","Create ChunkedArray with samples from a Bernoulli …","Create ChunkedArray with samples from a Normal …","Create ChunkedArray with samples from a Standard Normal …","Create ChunkedArray with samples from a Uniform …","","Get a reference to the field.","","","","","","Rename this ChunkedArray.","","Sample a fraction between 0.0-1.0 of this ChunkedArray.","Sample n datapoints from this ChunkedArray.","","","","","","Set the ‘sorted’ bit meta info.","","","Shrink the capacity of this array to fit its length.","Slice the array. The chunks are reallocated the underlying …","","","","","","","","","","","","","Get the tail of the ChunkedArray","","","","Traits and utilities for temporal data.","","","","Safety","Convert to a Vec of Option<T::Native>.","Convert to a Vec but don’t return Option<T::Native> if …","","","","","","","","","","Series to ChunkedArray<T>","","Implementations of upstream traits for ChunkedArray<T>","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","Appends a null slot into the builder","","","Appends a null slot into the builder","Appends a null slot into the builder","Appends a null slot into the builder","","","","","Appends a value of type T into the builder","","","Appends a value of type T into the builder","Appends a value of type T into the builder","Appends a value of type T into the builder","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Create a new UtfChunkedBuilder","","","","","Create a new UtfChunkedBuilder","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Appends from an iterator over values","Appends from an iterator over values","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The no null iterator for a BooleanArray","","A PolarsIterator is an iterator over a ChunkedArray which …","Wrapper struct to convert an iterator of type T into one …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","create a new iterator","create a new iterator","create a new iterator","create a new iterator","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","previous value in array","","","","","Aggregation operations","","Fastest way to do elementwise operations on a …","Apply kernels on the arrow array chunks in a ChunkedArray.","","Cast ChunkedArray<T> to ChunkedArray<N>","Compare Series and ChunkedArray’s and get a boolean mask …","","Create a new ChunkedArray filled with values at that index.","Explode/ flatten a List or Utf8 Series","Replace None values with a value","Filter values by a boolean mask.","Fill a ChunkedArray with one value.","","Find local minima/ maxima","Quantile and median aggregation","Reverse a ChunkedArray<T>","Create a ChunkedArray with new values by index or by …","","Shift the values of a ChunkedArray by a number of periods.","Sort operations on ChunkedArray.","Fast access by index.","Get unique values in a ChunkedArray","Variance and standard deviation aggregation.","Combine two ChunkedArray based on some predicate.","Dummy type, we need to instantiate all generic types, so …","","","next value in array","Create a type that implements a faster TakeRandom.","Check if element is member of list array","","","","","","","","","maximum value in array","replace with the maximum value of that data type","mean value of array","minimal value in array","replace with the minimal value of that data type","","","","","","replace with the value one","","","","","","One of the three arguments allowed in unchecked_take","","","","","Random access","","","","","","replace with the value zero","","","","Apply a closure elementwise. This is fastest when the null …","Apply a closure elementwise and cast to a Numeric …","Apply kernel and return result as a new ChunkedArray.","Apply a kernel that outputs an array of different type.","Apply a closure elementwise including null values.","Apply a closure elementwise and write results to a mutable …","Apply a closure elementwise. The closure gets the index of …","Apply a closure elementwise. The closure gets the index of …","Retrieve the indexes needed to sort this array.","Retrieve the indexes need to sort this and the other …","Get first index of the unique values in a ChunkedArray. …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Apply a closure on optional values and cast to Numeric …","Cast a [ChunkedArray] to [DataType]","Does not check if the cast is a valid one and may …","","","","","","","","","","","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check for equality.","Check for equality where None == None.","","","","","","Replace None values with a give value T.","Filter values in the ChunkedArray with a boolean mask.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Create a ChunkedArray with a single value.","","Get a nullable value by index.","Get a nullable value by index.","","","","","","","","","","","","","","Get a single value. Beware this is slow.","Get a single value. Beware this is slow. If you need to …","","","","","","","","","","","","","","Get a value by index and ignore the null bit.","Get a value by index and ignore the null bit.","Greater than comparison.","Greater than or equal comparison.","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Check if elements of this array are in the right Series, …","Less than comparison.","Less than or equal comparison","","Returns the maximum value in the array, according to the …","Returns the mean value in the array. Returns None if the …","Returns the mean value in the array. Returns None if the …","","","","Number of unique values in the ChunkedArray","Create a new ChunkedArray filled with values at that index.","Check for inequality.","Check for inequality where None == None.","","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Aggregate a given quantile of the ChunkedArray. Returns …","Return a reversed version of this array.","Set the values where the mask evaluates to true to some …","Set the values at indexes idx to some optional value …","Set the values at indexes idx by applying a closure to …","","Shift the values by a given period and fill the parts that …","","Returned a sorted ChunkedArray.","","Compute the standard deviation of this ChunkedArray/Series.","Aggregate the sum of the ChunkedArray. Returns None if not …","Take values from ChunkedArray by index. Note that the …","Create a type that implements TakeRandom.","Take values from ChunkedArray by index.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get unique values of a ChunkedArray","Compute the variance of this ChunkedArray/Series.","","","","","","","","","","","","","","","","","","","","Create a new ChunkedArray with values from self where the …","","","","used a lot, ensure there is a single impl","","","","","","","","","","Local AsRef<T> trait to circumvent the orphan rule.","","","Options to connect to various cloud providers.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Parse a configuration from a Hashmap. This is the …","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","The set of supported logical types in this crate.","The time units defined in Arrow.","","","","Opaque binary data of variable length whose offsets are …","","","","A binary true or false.","","true and false.","","","","","","A 32-bit date representing the elapsed time since UNIX …","An i32 representing the elapsed time since UNIX epoch …","An i64 representing the elapsed time since UNIX epoch …","","A 64-bit date representing the elapsed time since UNIX …","","Decimal value with precision and scale precision is the …","Decimal backed by 256 bits","A dictionary encoded array (key_type, value_type), where …","","Measure of elapsed time. This elapsed time is a physical …","","Extension type.","Characterizes the name and the DataType of a column.","Opaque binary data of fixed size. Enum parameter specifies …","A list of some logical data type with a fixed number of …","An 16-bit float","A 32-bit floating point number.","","A f32","","","A 64-bit floating point number.","","A f64","","","","","","","","The type used by polars to index data.","","","A 16-bit integer number.","","An i16","","","A 32-bit integer number.","","An i32","","","A 64-bit integer number.","","An i64","","","An 8-bit integer number.","","An i8","","","A “calendar” interval modeling elapsed time that takes …","Opaque binary data of variable length whose offsets are …","A list of some logical data type whose offsets are …","A variable-length UTF-8 encoded string whose offsets are …","Nested type, contains arrays that are filled with one of …","A nested list with a variable size in each row","A list of some logical data type whose offsets are …","","","Maps a logical type to a a chunked array implementation of …","","A nested type that is represented as","Time in microseconds.","","Time in milliseconds.","","Time in nanoseconds.","","","","","Null type","","","","","This hashmap has the uses an IdHasher","","","","","","","Any type that is not nested","Time in seconds.","","","A nested DataType with a given number of Fields.","This is logical type StructChunked that dispatches most …","","A 64-bit time representing the elapsed time since midnight …","A 32-bit time representing the elapsed time since midnight …","A 64-bit time representing the elapsed time since midnight …","","","","A i64 representing a timestamp measured in TimeUnit with …","An unsigned 16-bit integer number.","","An u16","","","An unsigned 32-bit integer number.","","An u32","","","An unsigned 64-bit integer number.","","An u64","","","An unsigned 8-bit integer number.","","An u8","","","A nested datatype that can represent slots of differing …","","A UTF8 encoded string type.","String data","A variable-length UTF-8 encoded string whose offsets are …","","An UTF8 encoded string type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check if all values are true","","This is an iterator over a ListChunked that save …","","Check if any value is true","","Apply a closure F elementwise.","","","","Apply a closure F elementwise.","","","","","","","","","","","","","","","","","Ignore the list indices and apply func to the inner type …","","","","","Apply a closure elementwise. The closure gets the index of …","","","","Apply a closure elementwise. The closure gets the index of …","","","","","","","","","","Panics","Panics","Panics","Panics","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Sets the Field datatype.","Returns a reference to the Field datatype.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get data type of ChunkedArray.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get access to one of this [StructChunked]’s fields","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","Create a new ChunkedArray from an iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Gets AnyValue from LogicalType","Gets AnyValue from LogicalType","","","","","Gets AnyValue from LogicalType","Safety","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","Get the inner values as Series, ignoring the list offsets.","Get a reference to the &str contained within AnyValue.","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the inner data type of the list.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","Try to coerce to an AnyValue with static lifetime. This …","","","","","","","","Check if this DataType is a logical type","","","Check if this DataType is a numeric type.","Check if datatype is a primitive type. By that we mean that","","","Check if this DataType is a temporal type","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a temporary ChunkedArray from a slice.","","","","","","","","","","Returns a reference to the Field name.","","","","","","","","","","","","","","","","","Creates a new Field.","","","","","","","","","","","","","","","","","","","","","","","","","","Only implemented for the same types and physical types!","","","","","Create ChunkedArray with samples from a Bernoulli …","","Get a reference to the Field of array.","","","","","","","","","","","","","","","","","","","","","","","Sets the Field name.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert to an Arrow data type.","Converts the Field to an arrow::datatypes::Field.","","","Returns &self for all but DataType::Extension. For …","","","","","","","","","","","","","","","","","","","","","","","","","Convert to the physical data type","the PhysicalType of this DataType.","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Changelog v0.10 / v0.11","Changelog v0.3","Changelog v0.4","Changelog v0.5","Changelog v0.6","Changelog v0.7","Changelog v0.8","Changelog v0.9","Enum with all errors in this crate.","","","","","","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","","","Wrapper for IO errors","","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","Wraps an external error in an Error.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","Set the function that will be called by the polars_warn! …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","Keep any of the unique rows This allows more optimizations","","A contiguous growable collection of Series that have the …","Keep the first unique row.","","Keep the last unique row.","Keep None of the unique rows.","","","","","","","","","","Safety","Same as filter but does not parallelize.","","","","","Aggregate all chunks to contiguous memory.","Ensure all the chunks in the DataFrame are aligned.","Apply a closure to a column. This is the recommended way …","Apply a closure to a column at index idx. This is the …","Aggregate all the chunks in the DataFrame to a single …","Aggregate all the chunks in the DataFrame to a single …","","","","","","","","","","","","","","","","","","Select a single column by name.","Selected multiple columns by name.","Creates the cartesian product from both frames, preserves …","","","","","","","","","","","","","","","","","Drop a column by name. This is a pure method and will …","","Remove a column by name and return the column removed.","Drop columns that are in names.","Drop columns that are in names without allocating a HashSet…","Return a new DataFrame where all null values are dropped.","Get the data types of the columns in the DataFrame.","Creates an empty DataFrame usable in a compile time …","","","","","","Returns an estimation of the total (heap) allocated size …","","Explode DataFrame to long format by exploding a column …","","Extend the memory backed by this DataFrame with the values …","Get a reference to the schema fields of the DataFrame.","Replace None values with one of the following strategies:","Take the DataFrame rows by a boolean mask.","Get column index of a Series by name.","","","","","Check if DataFrames are equal. Note that None == None …","Check if all values in DataFrames are equal where …","Check if DataFrames schemas are equal.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Panics","Create a new DataFrame from rows. This should only be used …","Create a new DataFrame from rows. This should only be used …","Create a new DataFrame from an iterator over rows. This …","Get a row in the DataFrame. Beware this is slow.","Example","Get the Vec<String> representing the column names.","Get a reference to the DataFrame columns.","Get mutable access to the underlying columns.","Get a row from a DataFrame. Use of this is discouraged as …","Amortize allocations by reusing a row. The caller is …","Amortize allocations by reusing a row. The caller is …","Get the supertype of the columns in this DataFrame","","Group DataFrame using a Series column.","Group DataFrame using a Series column. The groups are …","","","Get the head of the DataFrame.","Get the height of the DataFrame which is the number of …","Aggregate the column horizontally to their max values.","Aggregate the column horizontally to their mean values.","Aggregate the column horizontally to their min values.","Add multiple Series to a DataFrame. The added Series are …","Add multiple Series to a DataFrame. The added Series are …","Add columns horizontally.","Aggregate the column horizontally to their sum values.","","","","","","","","","","","","","","Insert a new column at a given index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Get a mask of all the duplicated rows in the DataFrame.","Check if the DataFrame is empty.","Get a mask of all the unique rows in the DataFrame.","Iterator over the columns as Series.","Iterator over the rows in this DataFrame as Arrow …","Iterator over the rows in this DataFrame as Arrow …","Aggregate the columns to their maximum values.","Aggregate the columns to their mean values.","Aggregate the columns to their median values.","Unpivot a DataFrame from wide to long format.","Similar to melt, but without generics. This may be easier …","Aggregate the columns to their minimum values.","The number of chunks per column","Create a DataFrame from a Vector of Series.","Create a new DataFrame but does not check the length or …","","","Create a new DataFrame that shows the null counts per …","Pipe different functions/ closure operations that work on …","Pipe different functions/ closure operations that work on …","Pipe different functions/ closure operations that work on …","Removes the last Series from the DataFrame and returns it, …","Checks if the Arc ptrs of the Series are equal","Aggregate the columns to their quantile values.","Rename a column in the DataFrame.","Replace a column with a Series.","Replace column at index idx with a Series.","Replace or update a column. The difference between this …","Get a DataFrame with all the columns in reversed order.","","Sample a fraction between 0.0-1.0 of this DataFrame.","Sample n datapoints from this DataFrame.","Get the DataFrame schema.","Select column(s) from this DataFrame and return a new …","Select a Series by index.","Select column(s) from this DataFrame by range and return a …","","Select column(s) from this DataFrame and return them into …","Select with a known schema.","Select with a known schema. This doesn’t check for …","Set the column names.","Get (height, width) of the DataFrame.","Shift the values by a given period and fill the parts that …","Returns true if the chunks of the columns do not align and …","Shrink the capacity of this DataFrame to fit its length.","","","Slice the DataFrame along the rows.","","Return a sorted clone of this DataFrame.","This is the dispatch of Self::sort, and exists to reduce …","Sort DataFrame in place by a column.","Sort the DataFrame by a single column with extra options.","Aggregate the columns to their standard deviation values.","Aggregate the columns to their sum values.","Get the tail of the DataFrame.","Take DataFrame rows by index values.","Take DataFrame value by indexes from an iterator.","Take DataFrame values by indexes from an iterator.","Take DataFrame values by indexes from an iterator that may …","","","","","","Transpose a DataFrame. This is a very expensive operation.","Apply a closure that may fail to a column. This is the …","Apply a closure that may fail to a column at index idx. …","Get column index of a Series by name.","","","","","","","","Create a new DataFrame from an iterator over rows. This …","","","","","","","","","","","Unstable distinct. See DataFrame::unique_stable.","","Drop duplicate rows from a DataFrame. This fails when …","Unnest the given Struct columns. This means that the …","Aggregate the columns to their variation values.","Concatenate a DataFrame to this DataFrame and return as …","Concatenate a DataFrame to this DataFrame","","","","","","Get the width of the DataFrame which is the number of …","Add a new column to this DataFrame or replace an existing …","Add a new column to this DataFrame or replace an existing …","Adds a column to the DataFrame without doing any checks on …","Add a new column at index 0 that counts the rows.","Add a row count in place.","Arguments for [DataFrame::melt] function","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","Whether the melt may be done in the streaming engine This …","","","","","","","","","","","","Returned by a groupby operation on a DataFrame. This …","","","Indexes of the groups, the first index is stored …","","","","","Every group is indicated by an array where the","","","","","Used to create the tuples for a groupby operation.","","","","","","","","","","","Slice is always sorted in ascending order.","","","","","","","","","Aggregate the groups of the groupby operation into lists.","","","Apply a closure over the groups as a new DataFrame.","","","","","","","","","","","","","","","","","","","","","","","","","","Aggregate grouped series and compute the number of values …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Aggregate grouped Series and find the first value per …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Get the internal representation of the GroupBy operation. …","Get the internal representation of the GroupBy operation. …","","","Create the tuples need for a groupby operation. * The …","Create the tuples need for a groupby operation. * The …","Get the groupby group indexes.","Get a mutable reference to the GroupsIdx.","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","Aggregate grouped Series and return the last value per …","","","Aggregate grouped series and compute the maximum value per …","Aggregate grouped series and compute the mean per group.","Aggregate grouped Series and determine the median per …","Aggregate grouped series and compute the minimal value per …","Aggregate grouped Series by counting the number of unique …","","","","","Apply a closure over the groups as a new DataFrame in …","","","Aggregate grouped Series and determine the quantile per …","Select the column(s) that should be aggregated. You can …","","","","Aggregate grouped Series and determine the standard …","Aggregate grouped series and compute the sum per group.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a reference to the GroupsIdx.","Get a reference to the GroupsSlice.","Aggregate grouped Series and determine the variance per …","","","","","","","","","","","","","","","","","","","","Safety","","","","[ChunkIdx, DfIdx]","","","","","","","","","","","No unique checks","Check if join keys are unique in right dataset.","Check if join keys are unique in left dataset.","Check if join keys are unique in both left and right …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An AnyValueBuffer that should be used when we trust the …","","","","","","","","","","","","","","","","","","","","","","","Safety","Will add the AnyValue into Self and unpack as the physical …","","","","","","","","","","","","","","Coerces a slice of datatypes into a single supertype.","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Infer schema from rows and set the first no null type as …","Infer schema from rows and set the supertypes of the …","","","","","","","","","","","","","","","","Compute the covariance between two columns.","Compute the covariance between two columns.","Compute the pearson correlation between two columns.","Compute the pearson correlation between two columns.","Ensure that the same hash is used as with VecHash.","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","Compute the hash for all values in the array.","Compute the hash for all values in the array.","","","","","","","","","","","For partitions that are a power of 2 we can use a bitshift …","A thread-safe reference-counting pointer. ‘Arc’ stands …","","","Represents Arrow’s metadata of a “column”.","","An ordered sequence of Fields with associated Metadata.","","","Aggregations that return Series of unit length. Those can …","","","","","","","","","","","","","","","","","The type used by polars to index data.","","","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Utility trait to slice concrete arrow arrays whilst …","","","","","","","","","","","","","","","Provides a raw pointer to the data.","","","","Converts to Arc<[T]>.","Converts to Arc<T>.","","","","","","","","","","","","","","","","","","","","Makes a clone of the Arc pointer.","","","","","","","","","","Comparison for two Arcs.","","Returns the Field’s DataType.","Its logical DataType","","","Decrements the strong reference count on the Arc<T> …","","Creates a new Arc<T>, with the Default value for T.","","","","","","","","","","","","","","","","","","","","Attempt to downcast the Arc<dyn Any + Send + Sync> to a …","Downcasts the Arc<dyn Any + Send + Sync> to a concrete …","Creates a new Weak pointer to this allocation.","","","","","","Drops the Arc.","","","","","Equality for two Arcs.","","","","","","","","","","","","","","","","The fields composing this schema.","Returns a new Schema with a subset of all fields whose …","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Allocate a reference-counted slice and move v’s items …","Allocate a reference-counted str and copy v into it.","Returns the argument unchanged.","Create an atomically reference-counted pointer from a …","Converts an atomically reference-counted string slice into …","Converts a PathBuf into an Arc<Path> by moving the PathBuf …","Converts a CString into an Arc<CStr> by moving the CString …","Allocate a reference-counted slice and fill it by cloning v…","Converts a T into an Arc<T>","Converts an OsString into an Arc<OsStr> by moving the …","Allocate a reference-counted str and copy v into it.","Copies the string into a newly allocated Arc<OsStr>.","Converts a &CStr into a Arc<CStr>, by copying the contents …","Converts a Path into an Arc by copying the Path data into …","Move a boxed object to a new, reference-counted allocation.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Safety","Safety","Takes each element in the Iterator and collects it into an …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Create a list-array from an iterator. Used in groupby …","Constructs an Arc<T> from a raw pointer.","Initialize by name and values.","‘Greater than or equal to’ comparison for two Arcs.","","Returns a mutable reference into the given Arc, if there …","Returns a mutable reference into the given Arc, without …","","Safety","","Useful for a Utf8 or a List to get underlying value size. …","Greater-than comparison for two Arcs.","","","","Increments the strong reference count on the Arc<T> …","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns the inner value, if the Arc has exactly one strong …","Consumes the Arc, returning the wrapped pointer.","","","","Its nullability","‘Less than or equal to’ comparison for two Arcs.","","Less-than comparison for two Arcs.","Makes a mutable reference into the given Arc.","Get the max of the ChunkedArray as a new Series of length …","Get the max of the ChunkedArray as a new Series of length …","Get the median of the ChunkedArray as a new Series of …","Additional custom (opaque) metadata.","Optional metadata.","Get the min of the ChunkedArray as a new Series of length …","Get the min of the ChunkedArray as a new Series of length …","Its name","Inequality for two Arcs.","Translate the negative index to an offset.","Initialize by name and values.","Constructs a new Arc<T>.","Creates a new Field.","Constructs a new Arc<T> while giving you a Weak<T> to the …","Constructs a new Arc with uninitialized contents.","Constructs a new atomically reference-counted slice with …","Constructs a new Arc with uninitialized contents, with the …","Constructs a new atomically reference-counted slice with …","","Partial comparison for two Arcs.","Constructs a new Pin<Arc<T>>. If T does not implement Unpin…","","","","","","Get the product of the ChunkedArray as a new Series of …","Get the product of the ChunkedArray as a new Series of …","","","","Returns true if the two Arcs point to the same allocation …","Get the quantile of the ChunkedArray as a new Series of …","Safety","","Slices this Array.","Slices the Array.","","","","","","","Get the standard deviation of the ChunkedArray as a new …","Gets the number of strong (Arc) pointers to this …","Get the sum of the ChunkedArray as a new Series of length …","Get the sum of the ChunkedArray as a new Series of length …","","","","","","","","","","","","","","","","","","","","","","","","Constructs a new Arc<T>, returning an error if allocation …","Constructs a new Arc with uninitialized contents, …","Constructs a new Arc with uninitialized contents, with the …","Constructs a new Pin<Arc<T>>, return an error if …","Returns the inner value, if the Arc has exactly one strong …","","","","","","","","","If we have the only reference to T then unwrap it. …","","Get the variance of the ChunkedArray as a new Series of …","","","","","","","","","Gets the number of Weak pointers to this allocation.","Creates a new Field with metadata.","Attaches a Metadata to Schema","","","","","","Safety","Safety","","","","Cast null arrays to inner type and ensure that all offsets …","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","Utility trait to slice concrete arrow arrays whilst …","Slices this Array.","Slices the Array.","","","","","This trait exists to be unify the API of polars Schema and …","A map from field/column name (String) to the type of that …","","","","","","","Whether the schema contains a field named name","","","","","","","","","","Returns the argument unchanged.","","","Get a reference to the dtype of the field named name, or …","Get references to the name and dtype of the field at index","Get mutable references to the name and dtype of the field …","Look up the name in the schema and return an owned Field …","Return all data about the field named name: its index in …","Get a vector of all column names.","","Get the index of a column by name.","","","Insert a field with name and dtype at the given index into …","Calls U::from(self).","","","Iterates over the (&name, &dtype) pairs in this schema","Iterates over references to the dtypes in this schema","Iterates the Fields in this schema, constructing them anew …","Iterates over references to the names in this schema","The number of fields in the schema","Merge other into self","Create a new, empty schema","Create a new schema from this one, inserting a field with …","Swap-remove a field by name and, if the field existed, …","Rename field old to new, and return the (owned) old name","Change the field named name to the given dtype and return …","Change the field at the given index to the given dtype and …","Remove a field by name, preserving order, and, if the …","Remove a field by name, preserving order, and, if the …","Convert self to ArrowSchema by cloning the fields","","Take another Schema and try to find the supertypes between …","","Get a reference to the dtype of the field named name, or …","","Look up the name in the schema and return an owned Field …","Return all data about the field named name: its index in …","Get a mutable reference to the dtype of the field named …","","","","","Create a new, empty schema with capacity","Insert a new column in the Schema","","","","","","","Used to convert a ChunkedArray, &dyn SeriesTrait and Series","","","","","Series","","","","","","Get the sum of the Series as a new Series of length 1.","Get the sum of the Series as a new Series of length 1.","convert numerical values to their absolute value","","","","","Append in place. This is done by adding the chunks of other…","Retrieve the indexes needed for a sort.","Retrieve the indexes needed for a sort.","Get first indexes of unique values.","Get first indexes of unique values.","","Returns a reference to the Arrow ArrayRef","Get a hold to self as Any trait reference. Only …","Get a hold to self as Any trait reference. Only …","Get a hold to self as Any trait reference. Only …","Get a hold to self as Any trait reference. Only …","Packs every element into a list","","","","Rechunk and return a pointer to the start of the Series. …","Rechunk and return a pointer to the start of the Series. …","Only implemented for numeric types","Unpack to ChunkedArray of dtype [DataType::Binary]","","","","","","","Unpack to ChunkedArray of dtype [DataType::Boolean]","","","","","","","","Cast [Series] to another [DataType]","Cast from physical to logical types without any checks on …","Ceil underlying floating point array to the highest …","Get the lengths of the underlying chunks","Underlying chunks.","Safety","","Clamp underlying values to the min and max values.","Clamp underlying values to the max value.","Clamp underlying values to the min value.","","","Clone inner ChunkedArray and wrap in a new Arc","","","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","","","","","","","","","","","","","","Drop all null values and return a new Series.","Drop all null values and return a new Series.","Get datatype of series.","Get datatype of series.","","","","","Create a boolean mask by checking for equality.","","","Create a boolean mask by checking for equality.","","","","Returns an estimation of the total (heap) allocated size …","Explode a list Series. This expands every item to a new …","Extend the memory backed by this array with the values …","Extend with a constant value.","Unpack to ChunkedArray of dtype [DataType::Float32]","Unpack to ChunkedArray of dtype [DataType::Float64]","Get field (used in schema)","Get field (used in schema)","Replace None values with one of the following strategies:","Filter by boolean mask. This operation clones data.","Filter by boolean mask. This operation clones data.","Floor underlying floating point array to the lowest …","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Takes chunks and a polars datatype and constructs the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get a single value by index. Don’t use this operation …","Get a pointer to the underlying data of this Series. Can …","Get a single value by index. Don’t use this operation …","Get a single value by index. Don’t use this operation …","","","Create a boolean mask by checking if self > rhs.","Create a boolean mask by checking if self >= rhs.","","","Return if any the chunks in this [ChunkedArray] have a …","Get the head of the Series.","Unpack to ChunkedArray of dtype [DataType::Int16]","Unpack to ChunkedArray","Unpack to ChunkedArray of dtype [DataType::Int64]","Unpack to ChunkedArray of dtype [DataType::Int8]","","","Convert the values of this Series to a ListChunked with a …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Check if Series is empty.","Check if Series is empty.","Check if numeric value is finite","Check if elements of this Series are in the right Series, …","Check if elements of this Series are in the right Series, …","Check if float value is infinite","Check if float value is NaN (note this is different than …","Check if float value is NaN (note this is different than …","Get a mask of the non-null values.","Get a mask of the null values.","","","","Check if Series is sorted.","Check if Series is sorted.","iterate over Series as AnyValue.","Get length of series.","Take num_elements from the top as a zero copy view.","Take num_elements from the top as a zero copy view.","Unpack to ChunkedArray of dtype list","","Create a boolean mask by checking if self < rhs.","","Create a boolean mask by checking if self <= rhs.","","","Returns the maximum value in the array, according to the …","Get the max of the Series as a new Series of length 1.","Get the max of the Series as a new Series of length 1.","Returns the mean value in the array Returns an option …","Returns the mean value in the array Returns an option …","","Returns the median value in the array Returns an option …","Returns the median value in the array Returns an option …","Get the median of the Series as a new Series of length 1.","Get the median of the Series as a new Series of length 1.","Returns the minimum value in the array, according to the …","Get the min of the Series as a new Series of length 1.","Get the min of the Series as a new Series of length 1.","","","","","Number of chunks in this Series","Number of chunks in this Series","Get unique values in the Series.","Get unique values in the Series.","Name of series.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a new empty Series","Create a new Series filled with values from the given …","","","","Create a boolean mask by checking for inequality.","","Create a boolean mask by checking for inequality.","","","Count the null values.","","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local maximum peaks.","Get a boolean mask of the local minimum peaks.","Get a boolean mask of the local minimum peaks.","","Get the product of an array.","Get the quantile of the ChunkedArray as a new Series of …","Get the quantile of the ChunkedArray as a new Series of …","Aggregate all chunks to a contiguous array of memory.","","","","Rename the Series.","Rename series.","","return a Series in reversed order","Round underlying floating point array to given decimal.","Sample a fraction between 0.0-1.0 of this ChunkedArray.","","Check if series are equal. Note that None == None …","Check if all values in series are equal where None == None …","","Shift the values by a given period and fill the parts that …","Shrink the capacity of this array to fit its length.","Shrink the capacity of this array to fit its length.","Shrink the capacity of this array to fit its length.","","","Get a zero copy view of the data.","","","","Get the standard deviation of the Series as a new Series …","Get the standard deviation of the Series as a new Series …","","Cast throws an error if conversion had overflows","Unpack to ChunkedArray of dtype [DataType::Struct]","","","","","Compute the sum of all values in this Series. Returns …","Get the sum of the Series as a new Series of length 1. …","Get the tail of the Series.","Take by index. This operation is clone.","Traverse and collect every nth element in a new array.","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index from an iterator. This operation clones the …","Take by index. This operation is clone.","Take by index if ChunkedArray contains a single chunk.","Take by index if ChunkedArray contains a single chunk.","Take by index if ChunkedArray contains a single chunk.","","","Convert a chunk in the Series to the correct Arrow type. …","","","Cast a datelike Series to their physical representation. …","","","","","","","","","","","","","","Unpack to ChunkedArray of dtype [DataType::UInt16]","Unpack to ChunkedArray of dtype [DataType::UInt32]","Unpack to ChunkedArray of dtype [DataType::UInt64]","Unpack to ChunkedArray of dtype [DataType::UInt8]","Get unique values in the Series.","Get unique values in the Series.","Compute the unique elements, but maintain order. This …","","","Unpack to ChunkedArray of dtype [DataType::Utf8]","Get the variance of the Series as a new Series of length 1.","Get the variance of the Series as a new Series of length 1.","","","","Create a new ChunkedArray with values from self where the …","","","","","","","","","","","","","","","","","","","","","","","","","","drop nulls","ignore nulls","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","A wrapper type that should make it a bit more clear that …","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","Swaps inner state with the array. Prefer …","","","","","","Temporary swaps out the array, and restores the original …","","","","","","Just a wrapper structure. Useful for certain impl …","","","","","Transform to physical type and coerce floating point and …","","This takes ownership of the DataFrame so that drop is …","This takes ownership of the DataFrame so that drop is …","","","","","","","","","","","","","","","","","","ensure that nulls are propagated to both arrays","","","","","","Concat the DataFrames to a single DataFrame.","Concat the DataFrames to a single DataFrame.","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Given two datatypes, determine the supertype that both …","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Turn any iterator in a trusted length iterator","","","","Given two datatypes, determine the supertype that both …","","","","","","","","","","A utility that allocates an UnstableSeries. The applied …","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,279,3,279,3,3,0,0,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,279,3,279,3,3,3,3,3,3,279,3,3,3,3,3,3,3,3,3,3,0,3,3,279,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,279,3,3,3,279,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,279,3,279,3,279,3,3,3,3,0,3,3,279,3,3,3,0,280,280,280,280,280,280,280,0,0,0,0,0,0,0,0,83,84,85,281,80,81,82,83,84,85,80,281,85,281,80,81,82,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,80,85,83,84,85,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,281,80,81,82,83,84,85,80,81,82,83,84,85,282,282,282,282,80,81,82,83,84,85,80,81,82,83,84,85,0,80,81,82,83,84,85,281,81,82,83,84,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,80,81,82,83,84,85,0,0,0,0,0,0,0,88,88,90,91,92,92,95,88,90,93,94,91,92,88,88,95,92,95,88,90,93,94,91,92,92,93,94,93,94,88,90,93,94,91,92,88,90,93,94,91,92,92,88,90,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,93,94,91,92,95,93,94,91,92,95,88,90,95,88,90,93,94,91,92,0,88,90,93,94,91,92,93,94,91,92,95,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,88,90,93,94,91,92,0,0,0,0,0,0,0,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,103,103,101,103,105,107,101,103,105,107,108,109,101,103,105,107,109,0,101,103,105,107,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,101,103,105,107,108,109,0,0,75,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,283,114,284,285,75,75,0,0,110,110,110,110,110,115,116,0,0,0,110,115,116,115,0,0,0,0,0,0,0,0,283,0,0,0,0,110,25,27,110,286,286,287,287,286,286,286,286,288,288,289,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,73,74,73,74,286,291,291,73,74,73,74,25,27,110,25,27,110,292,292,292,292,25,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,25,27,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,25,285,285,25,25,25,293,293,294,295,25,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,75,75,75,75,75,75,25,27,110,0,296,297,114,284,115,116,117,118,119,120,122,123,124,125,126,127,128,298,298,115,116,117,118,119,120,122,123,124,125,126,127,128,114,284,285,285,25,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,299,285,285,25,300,300,301,300,25,27,289,302,285,285,25,27,303,303,301,304,305,305,305,306,307,0,288,288,308,300,309,283,309,310,25,27,110,286,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,289,308,115,116,117,118,119,120,122,123,290,124,125,126,127,128,75,25,27,110,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,135,135,134,135,134,135,134,134,134,134,135,134,135,134,135,134,134,134,135,134,135,134,135,134,135,134,134,135,134,135,134,135,134,135,134,0,0,0,0,0,42,29,151,0,42,0,42,29,151,0,0,0,0,0,29,151,151,0,29,0,151,151,151,29,151,0,151,0,151,151,151,42,29,151,0,0,42,29,151,0,0,0,312,0,0,0,0,0,0,42,29,151,0,0,42,29,151,0,0,42,29,151,0,0,42,29,151,0,0,151,151,151,151,42,29,151,0,0,0,0,151,152,141,152,141,152,141,5,42,29,151,0,121,0,0,0,0,0,0,0,0,0,0,152,42,29,151,0,42,29,151,151,0,0,0,151,42,29,151,0,0,42,29,151,0,0,42,29,151,0,0,42,29,151,0,0,151,29,42,29,151,0,42,0,140,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,22,42,42,35,35,76,76,76,28,28,28,42,20,21,12,62,56,59,66,64,60,22,35,76,28,137,35,35,22,22,35,35,22,35,76,28,22,22,35,76,28,35,76,28,35,76,28,76,28,22,35,76,28,22,22,35,76,28,22,35,76,28,22,35,76,28,35,138,139,76,28,35,138,139,76,28,35,138,139,76,28,76,42,313,35,35,35,35,35,35,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,22,35,76,28,314,22,35,76,28,137,42,22,35,76,28,140,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,140,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,71,71,42,29,140,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,140,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,62,56,59,66,64,60,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,314,137,42,71,42,29,29,71,141,151,152,22,35,76,76,28,28,137,22,35,76,76,28,28,137,42,42,42,29,29,29,71,71,71,141,141,141,151,151,151,152,152,152,22,76,140,137,137,137,35,28,22,35,76,28,22,76,28,42,42,29,29,71,141,141,151,152,140,20,21,2,12,35,35,76,28,137,42,42,42,29,29,29,29,71,71,71,141,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,151,151,152,22,22,22,35,76,76,28,28,35,76,28,22,22,35,76,76,28,28,35,76,28,71,22,35,35,76,76,35,76,28,35,76,28,35,22,35,76,28,22,35,76,28,137,22,22,35,35,76,76,28,314,314,22,35,76,28,137,314,314,22,35,76,28,137,19,20,21,2,12,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,22,42,315,22,35,35,76,22,76,28,22,35,76,28,22,35,76,76,28,28,137,22,35,76,76,28,28,137,42,29,141,151,152,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,22,29,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,22,35,76,28,137,137,42,137,29,35,76,28,137,29,29,42,29,29,29,42,29,29,42,29,137,22,35,76,76,28,28,137,22,35,76,76,28,28,137,35,22,35,76,28,35,138,139,138,139,0,35,22,35,76,28,35,62,56,59,66,64,60,76,28,137,71,71,312,171,172,173,316,317,76,76,76,76,28,28,28,28,137,71,22,35,76,28,35,35,22,35,76,76,28,28,137,22,35,76,76,28,28,137,137,22,76,22,76,42,138,139,138,139,35,137,137,62,56,59,66,64,60,137,22,35,76,28,35,76,28,35,76,28,35,76,28,22,22,71,22,35,76,28,22,35,76,28,35,138,139,76,28,35,138,139,76,28,138,139,138,139,62,56,59,66,64,60,35,22,35,76,28,22,35,76,28,22,35,76,28,22,35,76,28,29,71,141,141,151,140,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,22,29,151,42,29,141,28,22,35,76,28,22,42,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,35,138,139,76,28,137,29,138,139,138,139,35,163,164,165,166,167,168,169,170,138,139,76,28,35,163,164,165,166,167,168,169,170,138,139,76,28,140,20,21,2,12,137,42,29,71,141,142,143,62,56,144,145,59,66,64,60,146,147,148,149,150,151,152,312,171,172,173,316,317,22,35,76,28,0,0,0,0,0,0,0,0,0,0,136,136,136,136,0,175,175,175,136,136,175,136,175,175,175,0,0,136,136,136,136,136,174,175,174,175,174,174,175,174,175,174,175,0,174,174,175,175,174,174,175,175,175,175,175,175,175,175,175,175,0,174,175,174,175,0,0,0,0,0,175,0,0,174,175,174,175,174,175,174,175,174,175,0,0,0,0,0,0,0,0,0,187,187,187,187,187,187,187,187,187,187,187,0,187,187,0,187,187,187,187,187,193,0,0,193,192,193,193,0,0,192,0,0,192,193,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,203,192,193,161,202,203,192,193,161,161,192,193,161,192,193,161,161,161,161,193,161,202,203,192,193,161,202,203,192,193,161,202,203,192,193,161,161,161,161,161,161,161,161,193,161,193,193,193,161,0,161,161,161,161,161,161,161,192,193,161,161,161,161,161,202,203,192,193,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,0,161,161,161,0,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,203,192,193,161,161,202,203,192,193,161,202,203,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,203,161,161,161,161,161,161,161,161,161,161,161,161,0,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,202,203,161,161,161,161,161,161,161,161,161,161,161,161,161,192,193,161,161,161,161,161,161,161,202,203,192,193,161,161,161,161,202,203,192,193,161,202,203,192,193,161,161,161,161,161,161,161,161,202,203,192,193,161,161,161,161,161,161,161,0,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,0,210,210,0,0,210,0,0,0,0,0,0,214,11,0,210,0,210,210,210,210,210,210,210,210,210,214,11,0,210,210,210,209,11,195,210,195,0,209,195,11,214,218,212,211,209,11,195,210,214,218,212,211,209,11,195,210,209,11,195,210,209,11,195,210,195,209,11,214,218,212,211,211,209,11,195,210,214,218,212,211,209,11,195,210,195,212,214,218,212,211,209,209,11,195,210,209,11,209,209,209,11,11,11,0,214,209,195,209,209,11,195,210,210,0,214,218,212,211,209,209,209,209,11,11,195,210,209,209,11,195,195,11,11,318,318,195,11,214,218,212,211,209,11,195,210,214,218,212,211,209,11,195,210,11,218,209,209,212,209,209,214,11,209,209,11,195,195,195,214,11,195,195,195,195,195,209,195,218,218,195,209,11,195,195,11,209,11,195,195,11,195,195,209,11,195,210,210,214,218,212,211,209,11,195,210,214,218,212,211,209,11,195,210,214,218,212,211,209,11,195,210,11,11,11,195,214,218,212,211,209,11,195,210,319,319,0,0,0,0,0,0,0,0,0,320,0,321,321,0,0,0,225,225,0,0,0,0,225,0,224,224,224,224,225,190,225,224,0,0,0,0,0,190,225,224,190,225,224,190,225,224,190,225,224,224,0,190,225,224,190,225,224,190,225,224,190,225,224,190,190,190,225,225,225,224,224,224,190,225,225,224,224,190,190,225,224,190,190,225,224,190,225,224,224,224,190,0,190,190,190,190,225,224,225,224,190,225,224,190,225,224,190,225,224,190,190,225,224,227,228,0,0,227,228,227,228,227,228,227,228,227,228,0,228,227,228,227,228,227,228,227,228,194,227,228,228,0,227,228,194,227,228,194,227,228,194,227,228,194,0,194,227,228,194,227,228,194,227,228,194,194,194,194,194,194,227,227,228,228,194,0,227,228,194,227,228,194,227,228,227,228,194,227,228,0,0,227,228,194,227,228,194,227,228,194,227,228,194,227,228,194,0,0,0,0,0,0,0,0,0,322,0,230,230,230,230,230,230,230,230,322,322,230,230,0,230,230,230,323,323,323,323,230,230,230,230,230,230,0,324,0,0,0,136,0,0,0,0,0,0,0,0,136,136,0,136,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,136,136,0,325,0,0,0,0,0,0,70,0,0,0,0,0,0,70,0,70,0,0,0,70,0,136,0,0,0,0,0,0,0,0,0,0,136,136,0,0,136,0,136,136,0,0,0,0,0,70,236,237,232,155,238,232,232,232,232,326,232,232,136,70,236,237,232,232,155,238,136,70,236,237,232,155,238,232,70,236,237,232,155,238,70,236,237,232,155,238,0,232,232,155,155,0,236,232,70,232,238,0,136,70,236,237,232,232,155,238,136,70,236,237,232,155,238,232,0,232,232,232,136,70,236,237,232,232,155,238,70,232,232,232,155,238,70,70,70,232,232,232,155,155,155,238,238,238,238,238,136,136,70,236,237,232,232,232,155,238,136,136,136,136,70,236,237,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,232,155,238,238,327,328,329,232,330,330,330,330,232,331,232,325,232,232,238,325,31,332,232,333,232,155,232,238,0,136,70,236,237,232,155,238,237,136,70,236,237,232,155,238,232,232,232,130,130,155,232,0,232,232,334,334,335,155,238,334,334,155,232,336,337,232,155,232,232,232,232,232,0,232,232,0,0,0,0,237,334,334,136,232,232,232,335,326,0,338,338,136,232,232,232,232,232,339,232,334,334,70,236,237,232,155,238,136,232,136,70,236,237,232,232,155,238,136,70,236,237,232,155,238,232,232,232,232,232,136,70,236,237,232,155,238,232,232,0,339,232,136,70,236,237,232,155,238,232,155,238,136,0,0,0,327,328,329,0,266,266,0,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,0,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,268,0,338,338,0,0,340,341,0,0,0,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,342,188,342,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,342,188,188,188,188,188,49,49,0,0,49,49,0,0,0,49,49,0,0,0,0,49,9,256,256,9,9,9,9,9,9,256,256,256,256,0,9,256,256,256,256,9,256,256,9,256,256,9,9,256,256,256,256,256,256,9,270,49,9,270,49,9,256,9,9,9,256,256,9,9,9,9,9,49,9,256,49,9,9,9,9,9,9,270,49,9,9,270,49,9,9,9,9,9,270,49,9,256,256,256,256,49,9,9,9,9,9,9,9,49,49,49,9,9,9,9,9,9,256,256,9,256,9,9,49,9,9,9,270,49,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,256,9,256,256,9,9,9,9,9,9,256,9,9,9,9,9,9,0,9,270,49,9,270,49,9,9,270,201,9,256,256,9,256,256,9,9,9,256,256,201,201,9,256,256,9,256,256,256,9,9,9,9,9,9,9,9,256,256,256,256,9,256,256,256,256,9,256,256,9,9,9,9,256,256,256,256,256,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,256,9,270,9,9,9,9,9,9,256,0,256,256,256,256,9,9,256,256,256,9,9,9,256,9,9,256,9,9,9,9,9,9,256,256,256,9,9,270,256,9,256,256,256,256,9,9,9,9,9,9,9,9,9,9,256,9,256,256,256,9,256,9,9,256,256,9,49,9,9,9,9,270,49,9,9,9,270,49,9,270,49,9,9,9,9,9,256,256,9,256,0,9,256,256,270,49,9,9,0,0,0,343,0,343,344,8,8,343,344,8,8,343,344,8,8,343,344,8,8,343,344,8,8,272,272,0,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,0,0,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,345,0,0,277,278,274,277,278,274,274,274,274,274,274,274,0,0,345,345,0,0,0,0,277,277,278,278,274,277,278,278,274,277,278,274,0,277,277,277,277,0,345,345,277,278,274,278,278,276,278,278,278,278,0,0,277,277,278,274,277,278,274,278,274,204,274,274,278,274,274,274,0,274,0,0,0,274,345,277,278,274,0,277,278,274,277,278,274,277,278,274,0,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[[3,[2]]],4],[[[3,[5]]],[[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[8]],9],[[10,[9]]]],[[[3,[5]],11],9],[[[3,[12]]],4],[[[3,[12]],4],[[13,[4]]]],[[[3,[2]]],[[0,[14]]]],[[[3,[2]],15],[[0,[14]]]],[[[3,[12]]],4],[[[3,[12]],4],[[13,[4]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[2]],18],[[3,[2]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[5]],16],[[3,[5]]]],[[[3,[5]],16],[[3,[19]]]],[[[3,[20]],18],[[3,[20]]]],[[[3,[21]],18],[[3,[21]]]],[[[3,[5]],[0,[16,17]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[2]],16],[[10,[22]]]],[[[3,[5]],16,23]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[24]],25],26],[[[3,[24]],27],[[10,[26]]]],[[[3,[24]]],[[10,[26]]]],0,[[[3,[20]]],28],[[[3,[19]]],[[3,[19]]]],[[[3,[19]]],29],[[[3,[24]],[3,[24]]]],[[[3,[24]],[3,[24]]]],[[[3,[24]],[3,[24]]]],[[]],[[]],[[]],[[]],[[[3,[5]],16],[[3,[5]]]],0,0,[[[3,[5]],29],[[10,[9]]]],[[[3,[5]],[0,[16,17]]],[[3,[5]]]],[[[3,[5]],29],[[10,[9]]]],[[[3,[19]]],30],[[[3,[19]]],[[32,[31]]]],[[[3,[19]]],[[32,[31]]]],[[[3,[19]]],[[3,[19]]]],[[]],0,[[[3,[5]]],[[10,[23]]]],[[[3,[5]],4],[[3,[5]]]],[[[3,[5]],4],[[3,[5]]]],[[[3,[5]],4],[[3,[5]]]],[[[3,[5]],4],[[3,[5]]]],[[[3,[5]]],[[0,[14,33]]]],[[],[[3,[19]]]],[34],[34],[34],[34],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[8]],9],[[10,[9]]]],[34],[34],[[[3,[19]]],29],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],[3,[5]]]],[[[3,[5]]],[[10,[[3,[5]]]]]],[[[3,[5]],35],[[10,[[3,[5]]]]]],[[[3,[19]]],[[13,[34]]]],0,[[[3,[5]],36],37],[[[3,[12]],36],37],[[]],[[],[[3,[5]]]],[[]],[38,[[3,[5]]]],[23,[[3,[5]]]],[[15,[32,[31]]],[[3,[19]]]],[39,[[3,[5]]]],[39,[[3,[5]]]],[39,[[3,[12]]]],[[15,14],[[3,[5]]]],[39,[[3,[5]]]],[39,[[3,[12]]]],[[15,14],[[3,[5]]]],[40,[[3,[5]]]],[[15,23],[[3,[5]]]],[[15,[23,[13]]],[[3,[5]]]],[41,[[3,[5]]]],[[15,32],[[3,[5]]]],[[15,34],[[3,[5]]]],[[15,34],[[3,[5]]]],[[15,34,29],22],[[[3,[5]],34],13],[[[3,[5]],34],13],[[[3,[5]],34],[[10,[42]]]],[[[3,[5]],34],42],[[[3,[2]]],9],[[[3,[5]],34],13],[[[3,[5]],34],13],[[[3,[5]],4,4],[[10,[11]]]],[[[3,[24]],34,4,34],11],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[19]]],4],[[[3,[19]],[13,[34]]],[[3,[19]]]],[[],34],[[],34],[[34,43,[13,[44]]],[[3,[5]]]],[[[3,[2]]],29],[[]],[[]],[[[3,[5]]]],[[[3,[5]]],[[0,[14,45,46,47,33,41]]]],[[[3,[19]]],9],[[[3,[19]]],4],[[[3,[48]]],35],[[[3,[5]],9],[[10,[35]]]],[[[3,[48]]],35],[[[3,[48]]],35],[[[3,[48]]],35],[[[3,[19]]],35],[[[3,[19]]],35],[[[3,[19]]],4],[[[3,[19]]],49],[[[3,[19]]],[[51,[[50,[31]]]]]],0,0,[[[3,[19]]],[[13,[34]]]],[[[3,[19]]],34],[[[3,[5]],[0,[6,52]]],[[3,[5]]]],[[[3,[5]],[0,[6,52]]],[[3,[5]]]],[[[3,[5]],[0,[6,52]]],[[3,[5]]]],[[[3,[19]],34],[[3,[19]]]],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[5]]],13],[[[3,[12]]],[[13,[4]]]],[[[3,[5]]],9],[[[3,[5]]],[[13,[53]]]],[[[3,[12]]],[[13,[53]]]],[[[3,[24]]],[[13,[53]]]],[[[3,[24]]],9],[[[3,[12]]],[[13,[4]]]],[[[3,[5]]],13],[[[3,[5]]],9],[[15,[23,[54]],34,34],[[3,[12]]]],[[15,23],[[3,[5]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[8]],9],[[10,[9]]]],[[[3,[24]]],[[10,[34]]]],[[[3,[19]]],15],[[15,[55,[[23,[44]]]]],[[3,[56]]]],[[15,[58,[57]]],[[3,[59]]]],[[15,[55,[[23,[53]]]]],[[3,[60]]]],[[15,[55,[[23,[[13,[44]]]]]]],[[3,[56]]]],[[15,[55,[[23,[[13,[[32,[54]]]]]]]]],[[3,[21]]]],[[15,[55,[[23,[61]]]]],[[3,[62]]]],[[15,[55,[[23,[63]]]]],[[3,[20]]]],[[15,[55,[[23,[43]]]]],[[3,[64]]]],[[15,[55,[[23,[[13,[61]]]]]]],[[3,[62]]]],[[15,[58,[65]]],[[3,[66]]]],[[15,[55,[[23,[[13,[57]]]]]]],[[3,[59]]]],[[15,[58,[44]]],[[3,[56]]]],[[15,[55,[[23,[65]]]]],[[3,[66]]]],[[15,[55,[[23,[[13,[63]]]]]]],[[3,[20]]]],[[15,[55,[[23,[[13,[4]]]]]]],[[3,[12]]]],[[15,[55,[[23,[57]]]]],[[3,[59]]]],[[15,[55,[[23,[[13,[65]]]]]]],[[3,[66]]]],[[15,[55,[[23,[4]]]]],[[3,[12]]]],[[15,[55,[[23,[[13,[43]]]]]]],[[3,[64]]]],[[15,[55,[[23,[[32,[54]]]]]]],[[3,[21]]]],[[15,[58,[61]]],[[3,[62]]]],[[15,[55,[[23,[[13,[53]]]]]]],[[3,[60]]]],[[[3,[[0,[5,19]]]],34,34],[[3,[[0,[5,19]]]]]],[[15,32,[13,[67]]],[[3,[5]]]],[[15,32],[[3,[5]]]],[[[3,[48]]],[[3,[48]]]],[[[3,[5]],7],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],[3,[5]]],35],[[[3,[5]],7],35],[[[3,[19]]],34],0,[[[3,[2]]],68],[[[3,[20]]],68],[[[3,[2]]],69],[[[3,[20]]],69],[[[3,[5]]],35],[[[3,[5]]],35],[[[3,[5]]],9],[[[3,[24]],53,70],[[10,[[13,[53]]]]]],[[[3,[24]],53,70],[[10,[9]]]],[[15,34,53],[[10,[[3,[12]]]]]],[[15,34,53,53],[[10,[[3,[5]]]]]],[[15,34],[[3,[5]]]],[[15,34,53,53],[[3,[5]]]],[[[3,[19]]],[[3,[19]]]],[[[3,[19]]],71],[[[3,[5]],[3,[5]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[8]],9],[[10,[9]]]],[[[3,[19]],15]],[[[3,[5]]],[[3,[5]]]],[[[3,[19]],53,4,4,[13,[44]]],[[10,[[3,[19]]]]]],[[[3,[19]],34,4,4,[13,[44]]],[[10,[[3,[19]]]]]],[[[3,[5]],35,13],[[10,[[3,[5]]]]]],[[[3,[5]],39,13],[[10,[[3,[5]]]]]],[[[3,[5]],39,16],[[10,[[3,[5]]]]]],[[[3,[2]]]],[[[3,[2]],29]],[[[3,[19]],49]],[[[3,[5]],65],[[3,[5]]]],[[[3,[5]],65,13],[[3,[5]]]],[[[3,[19]]]],[[[3,[19]],65,34],[[3,[19]]]],[[[3,[24]],4],[[3,[24]]]],[[[3,[24]],25],[[3,[24]]]],[[[3,[24]],54],[[13,[53]]]],[[[3,[24]],54],9],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[5]],[0,[6,7]]]],[[[3,[5]],[3,[5]]]],[[[3,[8]],9],[[10,[9]]]],[[[3,[5]]],13],[[[3,[12]]],[[13,[72]]]],[[[3,[5]]],9],[[[3,[19]],[13,[34]]],[[3,[19]]]],[[[3,[5]],[75,[73,74]]],[[10,[[3,[5]]]]]],[[[3,[5]]]],[[[3,[5]],[75,[73,74]]],[[3,[5]]]],0,[[[3,[5]],34],[[3,[5]]]],[[]],[[[3,[2]],29]],[[[3,[21]]],76],[[[3,[5]]],[[32,[13]]]],[[[3,[5]]],[[77,[32,[32,[13]]]]]],[[[3,[5]],[0,[16,17]]],[[10,[[3,[5]]]]]],[[[3,[2]],18],[[10,[[3,[2]]]]]],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[[3,[24]]],[[10,[[3,[24]]]]]],[[[3,[19]],9],[[10,[[3,[19]]]]]],[[[3,[19]]]],0,[[[3,[24]],54],[[13,[53]]]],[[[3,[24]],54],9],[[]],[[]],[[[3,[19]],[32,[31]]],[[3,[19]]]],[[[3,[5]],35,[3,[5]]],[[10,[[3,[5]]]]]],0,[[38,38],38],[[38,38],38],[38,38],[[38,38],38],[[38,38],38],[38,38],[[38,38],38],0,0,0,0,0,0,0,0,[1],[1],[1],[[]],[80],[81],[82],[83],[[[84,[5]]]],[85],[[80,[13,[[55,[[23,[54]]]]]]]],[13],[[85,[13,[[55,[15]]]]]],[[]],[[80,[55,[[23,[54]]]]]],[[81,[86,[[23,[54]]]]]],[[82,[86,[15]]]],[[83,4]],[[[84,[5]]]],[[85,[55,[15]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[83,83],[[[84,[[0,[5,87]]]]],[[84,[[0,[5,87]]]]]],[85,85],[[]],[[]],[[]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[],3],[80,28],[81,[[3,[21]]]],[82,[[3,[20]]]],[83,35],[[[84,[5]]],[[3,[5]]]],[85,76],[[]],[[]],[[]],[[]],[[]],[[]],[[15,14]],[[15,14]],[[15,23]],[[15,[23,[13]]]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[]],[[]],[[]],[[]],[[]],[[]],0,[[15,34,34],80],[[15,34],81],[[15,34],82],[[15,34],83],[[15,34],[[84,[5]]]],[[15,34,34],85],[[]],[81],[82],[83],[[[84,[5]]]],[[]],[[]],[[]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,[[88,89]],[88],[90],[[91,[0,[14,41]]]],[[[92,[5]],[0,[14,41]]]],[[[92,[5]],[0,[14,41]]]],[[]],[88],[90],[93],[94],[91],[[[92,[5]]]],[[88,[13,[89]]]],[[88,[13,[9]]],10],[[[13,[9]]],10],[[[92,[5]],[13,[23]]]],[9,10],[[88,9],10],[[90,9],10],[[93,9],10],[[94,9],10],[[91,9],10],[[[92,[5]],9],10],[[[92,[5]],23]],[[93,[0,[14,41]]]],[[94,[0,[14,41]]]],[[93,14]],[[94,14]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],88],[[],90],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[93,4],[94,4],[91,4],[[[92,[5]]],4],[[],4],[93,71],[94,71],[91,71],[[[92,[5]]],71],[[],71],[88,22],[90,22],[[],22],[[]],[[]],[[]],[[]],[[]],[[]],[[29,34,34,15],[[10,[[96,[95]]]]]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[93,31],[94,31],[91,31],[[[92,[5]]],31],[[],31],[[]],[[]],[[]],[[]],[[]],[[]],[[15,34,[13,[29]]],88],[[15,34,[13,[29]]],90],[[15,34,34],93],[[15,34,34],94],[[15,34,34],91],[[15,34,34,29],[[92,[5]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[]],[[]],[[]],[[]],[[]],[[]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[32,[[98,[97]],99]]]],[[],[[32,[63,99]]]],[100,101],[[[102,[65]]],103],[[[104,[65]]],105],[[[106,[65]],29],107],[101,13],[103,13],[105,13],[107,13],[108,13],[[[109,[14]]],13],[101,13],[103,13],[105,13],[107,13],[[[109,[33]]],13],0,[101],[103],[105],[107],[[[109,[14]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[[0,[16,17]]]],[[[0,[16,17]]],[[3,[5]]]],[16],[16,[[3,[19]]]],[[[0,[16,17]]]],[[16,23]],[[[0,[16,17]]]],[[[0,[16,17]]]],[25,26],[27,[[10,[26]]]],[[],[[10,[26]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[96,[73]]]],[[],[[96,[74]]]],[73,[[96,[73]]]],[74,[[96,[74]]]],[[[0,[16,17]]],[[3,[5]]]],[29,[[10,[9]]]],[29,[[10,[9]]]],[34,10],[34,10],[[73,34],10],[[74,34],10],[25,25],[27,27],[110,110],[[]],[[]],[[]],[4,3],[4,3],[4,3],[4,3],[[],25],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],0,0,[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[25,25],4],[[]],[[]],[[],4],[[],4],[[],4],[[],[[10,[9]]]],[[],10],[111,[[10,[111]]]],[[111,35],[[10,[3]]]],[[25,36],37],[[110,36],37],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[23,[72]]],[[75,[[51,[[50,[72]]]],[112,[[13,[34]]]]]]]],[[[32,[72]]],[[75,[[51,[[50,[72]]]],[112,[[13,[34]]]]]]]],[74,[[75,[[112,[34]],74]]]],[73,[[75,[73,[112,[[13,[34]]]]]]]],[113],[26,[[75,[[112,[34]],[112,[[13,[34]]]]]]]],[[]],[[]],[[]],0,[[15,34],111],[[15,34],111],[34,13],[34,13],[[[115,[114,114,114]],34],13],[[[116,[114,114]],34],13],[[117,34],13],[[118,34],13],[[119,34],13],[[120,34],13],[[[122,[121]],34],13],[[[123,[17]],34],13],[[[124,[121]],34],13],[[125,34],13],[[126,34],13],[[127,34],13],[[128,34],13],[34,[[10,[42]]]],[34,42],[[[115,[114,114,114]],34],13],[[[116,[114,114]],34],13],[[117,34],13],[[118,34],13],[[119,34],13],[[120,34],13],[[[122,[121]],34],13],[[[123,[17]],34],13],[[[124,[121]],34],13],[[125,34],13],[[126,34],13],[[127,34],13],[[128,34],13],[[111,34],13],[[111,34],13],[[]],[[]],[[25,129]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[9,[[10,[35]]]],[[]],[[]],0,[[],13],[[],[[13,[53]]]],[[],13],[[],13],0,0,[[],[[10,[34]]]],[[34,34],3],[[]],[[]],0,0,[[],35],[[],35],[[53,70],[[10,[13]]]],[[]],[[111,35,13],[[10,[111]]]],[[111,39,13],[[10,[111]]]],[[111,39,16],[[10,[111]]]],[65,3],[65,3],0,[4,3],[25,3],[54,13],[[],13],[[111,[75,[73,74]]],[[10,[111]]]],[[]],[[111,[75,[73,74]]],111],[[],[[32,[[23,[54]]]]]],[[]],[[]],[[]],[[111,[0,[16,17]]],[[10,[111]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],[[10,[3]]]],[54,13],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[35,3],[[10,[3]]]],[[34,[32,[4]]]],0,[[23,4,4]],[[[23,[[0,[130,131]]]]]],[[[23,[[0,[130,131]]]]]],[[[23,[9]],[23,[4]],4],[[10,[132]]]],[[15,[23,[9]],[23,[4]],4],[[10,[28]]]],[9,[[10,[31]]]],0,[[],133],[133,65],[133,65],[133,65],0,0,0,0,0,0,0,[1],[[]],[[]],[[]],[[]],[134,134],[[]],[[],134],[34],[34],[34],[34],[34],[34],[[134,134],4],[[134,36],37],[[]],[[]],[15,[[78,[135]]]],[[15,39],[[10,[134]]]],[[],34],[[],34],[[]],[[]],[[]],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[]],[[]],[[],4],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[22,4],[42,14],[[42,[32,[42]]]],[[35,35]],[[35,35]],[[76,76]],[[76,76]],[[76,15]],[[28,28]],[[28,28]],[[28,[23,[54]]]],[[42,42],42],[[76,9],[[10,[9]]]],[[28,9],[[10,[9]]]],[[35,9],[[10,[9]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[22,11],9],[[35,11],9],[[76,11],9],[[28,11],9],[[137,11],9],[35,4],[[35,4],[[13,[4]]]],[22,[[0,[14]]]],[[22,15],[[0,[14]]]],[35,4],[[35,4],[[13,[4]]]],[[22,[0,[16,17]]],22],[[35,[0,[16,17]]],35],[[76,[0,[16,17]]],76],[[28,[0,[16,17]]],28],[[22,18],22],[[22,[0,[16,17]]],[[3,[5]]]],[[35,[0,[16,17]]],[[3,[5]]]],[[76,[0,[16,17]]],[[3,[5]]]],[[28,[0,[16,17]]],[[3,[5]]]],[[35,16],35],[[76,16],76],[[28,16],28],[[35,16],[[3,[19]]]],[[76,16],[[3,[19]]]],[[28,16],[[3,[19]]]],[[76,18],76],[[28,18],28],[[22,[0,[16,17]]],22],[[35,[0,[16,17]]],35],[[76,[0,[16,17]]],76],[[28,[0,[16,17]]],28],[[22,16],[[10,[22]]]],[[22,16,23]],[[35,16,23]],[[76,16,23]],[[28,16,23]],[[22,[0,[16,17]]],22],[[35,[0,[16,17]]],35],[[76,[0,[16,17]]],76],[[28,[0,[16,17]]],28],[[22,[0,[16,17]]],22],[[35,[0,[16,17]]],35],[[76,[0,[16,17]]],76],[[28,[0,[16,17]]],28],[[35,25],26],[[138,25],26],[[139,25],26],[[76,25],26],[[28,25],26],[[35,27],[[10,[26]]]],[[138,27],[[10,[26]]]],[[139,27],[[10,[26]]]],[[76,27],[[10,[26]]]],[[28,27],[[10,[26]]]],[35,[[10,[26]]]],[138,[[10,[26]]]],[139,[[10,[26]]]],[76,[[10,[26]]]],[28,[[10,[26]]]],[76,28],[42,42],[[],29],[[35,35]],[[35,35]],[[35,35]],[[35,35]],[[35,35]],[[35,35]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[22,[0,[16,17]]],[[3,[5]]]],[[35,[0,[16,17]]],[[3,[5]]]],[[76,[0,[16,17]]],[[3,[5]]]],[[28,[0,[16,17]]],[[3,[5]]]],[29,[[10,[9]]]],[[22,29],[[10,[9]]]],[[35,29],[[10,[9]]]],[[76,29],[[10,[9]]]],[[28,29],[[10,[9]]]],[[137,29],[[10,[9]]]],[[42,29],[[10,[42]]]],[[22,29],[[10,[9]]]],[[35,29],[[10,[9]]]],[[76,29],[[10,[9]]]],[[28,29],[[10,[9]]]],[[[140,[19,19]]],[[140,[19,19]]]],[137,137],[42,42],[29,29],[71,71],[141,141],[142,142],[143,143],[62,62],[56,56],[144,144],[145,145],[59,59],[66,66],[64,64],[60,60],[146,146],[147,147],[148,148],[149,149],[150,150],[151,151],[152,152],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[71,29]],[71,29],[[],42],[[],29],[34],[[[140,[19,19]]]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[[140,[19,19]]]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[],29],[137,29],[42,29],0,[[42,42],4],[[29,29],4],[[29,151],4],[[71,71],4],[[141,141],4],[[151,151],4],[[152,152],4],[[22,22],35],[[35,35],35],[[76,15],35],[[76,76],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[[22,22],35],[[35,35],35],[[76,15],35],[[76,76],35],[[28,[23,[54]]],35],[[28,28],35],[[137,137],35],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[22,10],[76,10],[[[140,[19,19]]],71],[[137,15],[[10,[9]]]],[137,[[23,[9]]]],[137,[[32,[9]]]],[[35,4],[[10,[35]]]],[[28,[23,[54]]],[[10,[28]]]],[[22,35],[[10,[22]]]],[[35,35],[[10,[[3,[12]]]]]],[[76,35],[[10,[[3,[20]]]]]],[[28,35],[[10,[[3,[21]]]]]],[[22,36],37],[[76,36],37],[[28,36],37],[[42,36],37],[[42,36],37],[[29,36],37],[[29,36],37],[[71,36],37],[[141,36],37],[[141,36],37],[[151,36],[[78,[153]]]],[[152,36],[[78,[153]]]],[[]],[[]],[[]],[[]],[[]],[100,35],[[],35],[[],76],[[],28],[[]],[[[13,[[154,[42]]]]],42],[121,42],[[]],[151,29],[[]],[42,29],[42,29],[155,71],[42,71],[[]],[[]],[152,141],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[156,151],[157,151],[[]],[39,22],[39,22],[39,22],[39,35],[39,76],[39,76],[39,28],[39,28],[[15,14],[[3,[12]]]],[[15,14],76],[[15,14],28],[39,22],[39,22],[39,35],[39,76],[39,76],[39,28],[39,28],[[15,14],[[3,[12]]]],[[15,14],76],[[15,14],28],[[158,29],71],[40,22],[40,35],[40,35],[40,76],[40,76],[[15,[23,[4]]],35],[[15,[23,[[55,[15]]]]],76],[[15,[23,[[55,[[23,[54]]]]]]],28],[[15,[23,[[13,[4]]]]],35],[[15,[23,[[13,[[55,[15]]]]]]],76],[[15,[23,[[13,[[55,[[23,[54]]]]]]]]],28],[41,35],[[15,9,34],22],[[15,4,34],35],[[15,15,34],76],[[15,[23,[54]],34],28],[[15,34],22],[[15,34],35],[[15,34],76],[[15,34],28],[[15,34],137],[[15,34,29],22],[[22,34],13],[[35,34],13],[[35,34],13],[[76,34],13],[[76,34],13],[[28,34],13],[34,[[10,[42]]]],[34,[[10,[42]]]],[[22,34],[[10,[42]]]],[[35,34],[[10,[42]]]],[[76,34],[[10,[42]]]],[[28,34],[[10,[42]]]],[[137,34],[[10,[42]]]],[34,42],[34,42],[[22,34],42],[[35,34],42],[[76,34],42],[[28,34],42],[[137,34],42],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[22,9],[42,[[13,[15]]]],[34,42],[[22,34],13],[[35,34],13],[[35,34],13],[[76,34],13],[22,34],[76,34],[28,34],[[22,4,4],[[10,[11]]]],[[35,4,4],[[10,[11]]]],[[76,4,4],[[10,[11]]]],[[28,4,4],[[10,[11]]]],[[22,22],35],[[35,35],35],[[76,76],35],[[76,15],35],[[28,[23,[54]]],35],[[28,28],35],[[137,137],35],[[22,22],35],[[35,35],35],[[76,76],35],[[76,15],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[[42,129]],[[29,129]],[[141,129]],[[151,129]],[[152,129]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[22,29],[29,[[13,[29]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[22],[35],[76],[28],[137],[137,9],[42,[[10,[42]]]],[137,4],[29,4],[[35,9],[[10,[35]]]],[[76,9],[[10,[35]]]],[[28,9],[[10,[35]]]],[[137,9],[[10,[35]]]],[29,4],[29,4],[42,4],[29,4],[29,4],[29,4],[42,4],[29,4],[29,4],[42,4],[29,4],[137,34],[[22,22],35],[[35,35],35],[[76,15],35],[[76,76],35],[[28,[23,[54]]],35],[[28,28],35],[[137,137],35],[[22,22],35],[[35,35],35],[[76,15],35],[[76,76],35],[[28,[23,[54]]],35],[[28,28],35],[[137,137],35],[35,[[13,[4]]]],[22,9],[35,9],[76,9],[28,9],[35,[[13,[53]]]],[138,[[13,[43]]]],[139,[[13,[53]]]],[138,9],[139,9],[[29,29],[[10,[29]]]],[35,[[13,[4]]]],[22,9],[35,9],[76,9],[28,9],[[15,[23,[54]],34,34],35],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[76,[[10,[34]]]],[28,[[10,[34]]]],[137,158],[71,158],0,[[]],[[]],[[]],[[]],[[]],[[]],[[15,[55,[[23,[[13,[15]]]]]]],76],[[15,[55,[[23,[[86,[15]]]]]]],76],[[15,[55,[[23,[[13,[[86,[15]]]]]]]]],76],[[15,[55,[[23,[15]]]]],76],[[15,[55,[[23,[[86,[[23,[54]]]]]]]]],28],[[15,[55,[[23,[[23,[54]]]]]]],28],[[15,[55,[[23,[[13,[[86,[[23,[54]]]]]]]]]]],28],[[15,[55,[[23,[[13,[[23,[54]]]]]]]]],28],[[15,[23,[9]]],[[10,[137]]]],[[15,29],71],[[22,34,34],22],[[35,34,34],35],[[76,34,34],76],[[28,34,34],28],[35],[35],[[22,22],35],[[35,35],35],[[76,76],35],[[76,15],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[[22,22],35],[[35,35],35],[[76,76],35],[[76,15],35],[[28,28],35],[[28,[23,[54]]],35],[[137,137],35],[137,34],[22,68],[76,68],[22,69],[76,69],[[42,42],[[13,[159]]]],[[138,53,70],[[10,[[13,[43]]]]]],[[139,53,70],[[10,[[13,[53]]]]]],[[138,53,70],[[10,[9]]]],[[139,53,70],[[10,[9]]]],[[15,34,53],[[10,[35]]]],[137],[137,71],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[137,15]],[22,22],[35,35],[76,76],[28,28],[[35,35,[13,[4]]],[[10,[35]]]],[[76,35,[13,[15]]],[[10,[76]]]],[[28,35,[13,[[23,[54]]]]],[[10,[28]]]],[[35,39,[13,[4]]],[[10,[35]]]],[[76,39,[13,[15]]],[[10,[76]]]],[[28,39,[13,[[23,[54]]]]],[[10,[28]]]],[[35,39,16],[[10,[35]]]],[[76,39,16],[[10,[76]]]],[[28,39,16],[[10,[28]]]],[22],[[22,29]],[[71,158]],[[22,65],22],[[35,65],35],[[76,65],76],[[28,65],28],[[22,65,[13,[9]]],22],[[35,65,[13,[4]]],35],[[76,65,[13,[15]]],76],[[28,65,[13,[[23,[54]]]]],28],[[35,4],35],[[138,4],138],[[139,4],139],[[76,4],76],[[28,4],28],[[35,25],[[3,[12]]]],[[138,25],138],[[139,25],139],[[76,25],[[3,[20]]]],[[28,25],[[3,[21]]]],[[138,54],[[13,[43]]]],[[139,54],[[13,[53]]]],[[138,54],9],[[139,54],9],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[[3,9],[[78,[9,136]]]],[35,[[13,[72]]]],[22,9],[35,9],[76,9],[28,9],[[22,[75,[73,74]]],[[10,[22]]]],[[35,[75,[73,74]]],[[10,[35]]]],[[76,[75,[73,74]]],[[10,[76]]]],[[28,[75,[73,74]]],[[10,[28]]]],[22],[35],[76],[28],[[22,[75,[73,74]]],22],[[35,[75,[73,74]]],35],[[76,[75,[73,74]]],76],[[28,[75,[73,74]]],28],[29,151],[71,155],[141,152],[141,15],[151,151],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[22,29]],[29,29],[151,160],[[],63],[[],63],[[],63],[28,76],[[22,[0,[16,17]]],[[10,[22]]]],[[35,[0,[16,17]]],[[10,[35]]]],[[76,[0,[16,17]]],[[10,[76]]]],[[28,[0,[16,17]]],[[10,[28]]]],[[22,18],[[10,[22]]]],[42,[[10,[52]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[35,[[10,[35]]]],[138,[[10,[[3,[64]]]]]],[139,[[10,[[3,[60]]]]]],[76,[[10,[76]]]],[28,[[10,[28]]]],[137,161],[[29,42],4],[[138,54],[[13,[43]]]],[[139,54],[[13,[53]]]],[[138,54],9],[[139,54],9],[[35,162,[32,[44]]]],[[163,162,[32,[44]]]],[[164,162,[32,[44]]]],[[165,162,[32,[44]]]],[[166,162,[32,[44]]]],[[167,162,[32,[44]]]],[[168,162,[32,[44]]]],[[169,162,[32,[44]]]],[[170,162,[32,[44]]]],[[138,162,[32,[44]]]],[[139,162,[32,[44]]]],[[76,162,[32,[44]]]],[[28,162,[32,[44]]]],[[35,162,[23,[44]]]],[[163,162,[23,[44]]]],[[164,162,[23,[44]]]],[[165,162,[23,[44]]]],[[166,162,[23,[44]]]],[[167,162,[23,[44]]]],[[168,162,[23,[44]]]],[[169,162,[23,[44]]]],[[170,162,[23,[44]]]],[[138,162,[23,[44]]]],[[139,162,[23,[44]]]],[[76,162,[23,[44]]]],[[28,162,[23,[44]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[34],[34,171],[34,172],[34,173],[34],[34],[[22,35,22],[[10,[22]]]],[[35,35,35],[[10,[35]]]],[[76,35,76],[[10,[76]]]],[[28,35,28],[[10,[28]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[174],[34],[34],[34],[34],[34],[34],0,[[174,36],[[78,[153]]]],[[174,36],[[78,[153]]]],[[175,36],[[78,[153]]]],[[175,36],[[78,[153]]]],[[]],[[[154,[[86,[15]]]]],174],[176,175],[177,175],[[]],[178,175],[179,175],[180,175],[181,175],[182,175],[183,175],[[[0,[184,45,46]]],175],[[]],[[],34],[[],34],[[]],[[]],[184,136],0,0,0,0,[185],[[]],[186,136],[[],63],[[],63],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,[1],[[]],[[]],[187,187],[[]],[34],[34],[34],[[]],[[],187],[[],34],[[]],[187],[[]],[[],78],[[],78],[[],79],[[]],0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[161,[32,[9]],188],10],[[161,[23,[72]],4,4],161],[[161,35],[[10,[161]]]],[[161,189,161,190],[[10,[161]]]],[[161,161,9,9,190,4],[[10,[161]]]],[[161,161,9,9,190],[[10,[161]]]],[[161,65,34],161],[161,161],[161,161],[[161,15,191],[[10,[161]]]],[[161,34,191],[[10,[161]]]],[161,161],[161,161],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[161,161],[192,192],[193,193],[161,161],[[]],[[]],[[]],[[161,15],[[10,[9]]]],[[161,39],[[10,[[32,[9]]]]]],[[161,161,[13,[15]],13],[[10,[161]]]],[[],193],[[],161],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[161,15],[[10,[161]]]],[34],[[161,15],[[10,[9]]]],[[161,[23,[[55,[15]]]]],161],[[161,[173,[15]]],161],[[161,[13,[[23,[[55,[15]]]]]]],[[10,[161]]]],[161,[[32,[29]]]],[[],161],[[193,193],4],[[161,161],4],[[],4],[[],4],[[],4],[161,34],0,[[161,39],[[10,[161]]]],[[161,[32,[9]]],[[10,[161]]]],[[161,161],10],[161,[[32,[71]]]],[[161,110],[[10,[161]]]],[[161,35],[[10,[161]]]],[[161,15],[[13,[34]]]],[[192,36],37],[[193,36],37],[[161,36],37],[[161,36],37],[[161,161],4],[[161,161],4],[[161,161],10],[[]],[[]],[[]],[[]],[137,161],[188,161],[[]],[39,161],[[[23,[194]]],[[10,[161]]]],[[[23,[194]],188],[[10,[161]]]],[[14,188],[[10,[161]]]],[[161,34],[[13,[[32,[42]]]]]],[161,[[32,[15]]]],[161,[[32,[158]]]],[161,[[23,[9]]]],[161,[[32,[9]]]],[[161,34],[[10,[194]]]],[[161,34,194],10],[[161,34,194]],[161,[[13,[[10,[29]]]]]],0,[[161,39],[[10,[195]]]],[[161,39],[[10,[195]]]],[[161,[32,[9]],4,4],[[10,[195]]]],0,[[161,[13,[34]]],161],[161,34],[161,[[10,[[13,[9]]]]]],[[161,192],[[10,[[13,[9]]]]]],[161,[[10,[[13,[9]]]]]],[[161,[23,[9]]],[[10,[161]]]],[[161,[23,[9]]],[[10,[161]]]],[[161,[23,[9]]],161],[[161,192],[[10,[[13,[9]]]]]],[[161,[196,[34]]]],[[161,[58,[34]]]],[[161,[197,[34]]]],[[161,[198,[34]]]],[[161,[199,[34]]]],[[161,15]],[[161,200]],[[161,34]],[[],34],[[],34],[[],34],[[],34],[[],34],[[161,34,201],[[10,[161]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[161,15],137],[161,[[10,[35]]]],[161,4],[161,[[10,[35]]]],[161,[[50,[9]]]],[161,202],[161,203],[161,161],[161,161],[161,161],[[161,[204,[158]],[204,[158]]],[[10,[161]]]],[[161,205],[[10,[161]]]],[161,161],[161,34],[[[32,[201]]],[[10,[161]]]],[[[32,[9]]],161],[202,13],[203,13],[161,161],[[161,16],10],[[161,16],10],[[161,16],10],[161,[[13,[9]]]],[[161,161],4],[[161,53,70],[[10,[161]]]],[[161,15,15],[[10,[161]]]],[[161,15,201],[[10,[161]]]],[[161,34,201],[[10,[161]]]],[[161,15,201],[[10,[161]]]],[161,161],0,[[161,53,4,4,[13,[44]]],[[10,[161]]]],[[161,34,4,4,[13,[44]]],[[10,[161]]]],[161,188],[[161,39],[[10,[161]]]],[[161,34],[[13,[9]]]],[[161,[206,[34]]],[[10,[161]]]],[[161,39],[[10,[161]]]],[[161,[204,[158]]],[[10,[[32,[9]]]]]],[[161,39,207],[[10,[161]]]],[[161,39,188],[[10,[161]]]],[[161,[23,[[55,[15]]]]],10],[161],[[161,65],161],[161,4],[161],[202],[203],[[161,65,34],161],[[161,65,34],161],[[161,[204,[158]],[204,[4]],4],[[10,[161]]]],[[161,[32,[9]],[32,[4]],4,4,13,4],[[10,[161]]]],[[161,[204,[158]],[204,[4]],4],[[10,[161]]]],[[161,15,25],[[10,[161]]]],[[161,54],161],[161,161],[[161,[13,[34]]],161],[[161,26],[[10,[161]]]],[[161,[0,[14,87,46,41]]],[[10,[161]]]],[[161,[0,[14,87,46,41]]],161],[[161,[0,[14,87,46,41]]],161],[[]],[[]],[[]],[[],63],[[161,34,[204,[4]],[204,[158]]],[[10,[161]]]],[[161,[13,[15]],[13,[[77,[63,[32,[63]]]]]]],[[10,[161]]]],[[161,15,191],[[10,[161]]]],[[161,34,191],[[10,[161]]]],[[161,15],[[10,[34]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[208,[[10,[161]]]],[[],[[10,[161]]]],[[14,188],[[10,[161]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[161,[13,[[23,[63]]]],193,13],[[10,[161]]]],[[161,4,[13,[[23,[63]]]],193,13],[[10,[161]]]],[[161,[13,[[23,[63]]]],193,13],[[10,[161]]]],[[161,[204,[63]]],[[10,[161]]]],[[161,54],161],[[161,161],[[10,[161]]]],[[161,161],[[10,[161]]]],[[]],[[]],[[]],[[]],[[]],[161,34],[[161,201],[[10,[161]]]],[[161,201,188],[[10,[161]]]],[[161,9],161],[[161,15,[13,[72]]],[[10,[161]]]],[[161,15,[13,[72]]],161],0,[1],[[]],[[]],[205,205],[[]],[[],205],[34],[34],[34],[[205,205],4],[[205,36],37],[[]],0,[[],34],[[]],0,[[]],[[],78],[[],78],[[],79],0,0,0,[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[195,[[10,[161]]]],0,[209,[[23,[[32,[72]]]]]],[[195,[0,[18,45,46]]],[[10,[161]]]],[11,22],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[209,209],[11,11],[195,195],[210,210],[[]],[[]],[[]],[[]],[195,[[10,[161]]]],[[],209],[[],11],[34],[34],[34],[211],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],0,[[212,213]],[34],[34],[34],[34],[34],[209],[34],[34],[34],[[209,209],4],[[11,11],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[214,72],[209,[[23,[72]]]],[195,[[10,[161]]]],[209,[[32,[72]]]],[[209,36],37],[[11,36],37],[[195,36],37],[[210,36],37],[[210,36],37],[[15,210],63],[[]],[[]],[[]],[[]],[[[32,[215]]],209],[32,209],[[[32,[[32,[215]]]]],209],[[]],[[]],[209,11],[[]],[[]],[39,209],[40,209],[[11,34],214],[195,11],[195,11],[11,26],[[11,15],26],[[4,4],[[10,[11]]]],[[4,4],[[10,[11]]]],[195,[[10,[161]]]],[11,209],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[11,209],[[]],[209],[209],[[]],[209],[209],[214,4],[11,4],[209,4],[209,[[217,[[216,[[50,[72]]]],[50,[[32,[72]]]]]]]],[11,218],[195,[[32,[9]]]],[[195,13],[[32,[9]]]],[195,[[10,[161]]]],[214,34],[11,34],[195,[[10,[161]]]],[195,[[10,[161]]]],[195,[[10,[161]]]],[195,[[10,[161]]]],[195,[[10,[161]]]],[[[32,[72]],[32,[[32,[72]]]],4],209],[[161,[32,[9]],11,[13,[[32,[63]]]]],195],[218,13],[[218,34],13],[[195,[0,[16,45,46]]],[[10,[161]]]],[[]],[11,212],[[195,53,70],[[10,[161]]]],[[195,39],195],[[11,65,34],211],[209],[11],[[195,54],[[10,[161]]]],[195,[[10,[161]]]],[11,[[32,[72]]]],[195,11],[195,11],[[]],[[]],[[]],[[]],[[],63],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[11,11],[11,209],[11,219],[[195,54],[[10,[161]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[[209,[0,[16,45,46]]],9],[[209,[0,[16,45,46]]],9],[[[23,[[220,[72]]]],[0,[16,45,46]]],9],[[[23,[[220,[72]]]],[0,[16,45,46]]],9],[[[23,[[0,[130,221]]]],[0,[14,41]],222],31],[[[23,[[0,[130,221]]]],67,[0,[14,41]],222],31],[[[3,[19]],72,72],[[3,[19]]]],[[219,[23,[31]]],4],[11,9],0,[[161,11],[[10,[9]]]],[[],[[10,[15]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[161,161,4]],[[15,15],63],[[161,161,[13,[[23,[223]]]],[13,[[23,[223]]]]],189],[[161,161,4],32],[[9,9,4,224],10],[[]],[[]],[[]],[[]],[[]],[[]],[190,190],[225,225],[224,224],[[]],[[]],[[]],[[],224],[[],226],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[190,190],4],[[225,225],4],[[224,224],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[190,36],37],[[225,36],37],[[225,36],37],[[224,36],37],[[224,36],37],[225,190],[[]],[[]],[[]],0,[[],34],[[],34],[[],34],[[]],[[]],[[]],[[224,225,34],10],[224,4],[225,190],[[161,161,[13,[[23,[223]]]],[13,[[23,[223]]]]],189],0,[190,15],0,[[]],[[]],[[]],[[],63],[[],63],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],0,[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[227,42],13],[[228,42]],[[228,42]],[[[23,[42]]],10],[[]],[[]],[[]],[[]],[[]],[[]],[227,227],[228,228],[194,194],[[]],[[]],[[]],[[[23,[[229,[29]]]]],29],[[],194],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[194,194],4],[[],4],[[],4],[[],4],[[194,36],37],[[]],[[],227],[[],228],[[]],[[]],[[14,34],188],[[],34],[[],34],[[],34],[[]],[[]],[[]],[227,9],[228,9],[[29,34],227],[[29,34],228],[[[32,[42]]],194],[[227,34],9],[[228,34],9],[[[23,[194]],[13,[34]]],188],[[[23,[194]],[13,[34]]],[[10,[188]]]],[[]],[[]],[[]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[[3,[48]],[3,[48]]],13],[[[3,[24]],[3,[24]]],[[13,[53]]]],[[[3,[48]],[3,[48]],54],13],[[[3,[24]],[3,[24]],54],[[13,[53]]]],0,0,0,0,[[44,44],44],[44,44],[[[104,[65]],162,[32,[44]]]],[[]],[[]],[[],230],[34],[34],[34],[230,44],[[]],[162,44],[162,44],[[],34],[[]],0,[[],78],[[],78],[[],79],[[162,[32,[44]]]],[[162,[32,[44]]]],[[162,[23,[44]]]],[[162,[23,[44]]]],[[]],[[230,[23,[54]]]],[[230,57]],[[230,65]],[[230,61]],[[230,44]],0,[[],44],[[44,44,44],4],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[[[232,[231]]],233],[[[232,[111]]]],[[[232,[234]]],57],[[[232,[111]]],111],[[],[[23,[54]]]],[[[232,[[23,[235]]]]],[[232,[23]]]],[[[232,[235]]],232],[[]],[[]],[[]],[[]],[[[232,[111]]],111],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[232,[[0,[184,111]]]]],[[13,[184]]]],[70,70],[236,236],[237,237],[[[232,[111]]],[[232,[111]]]],[155,155],[238,238],[[]],[[]],[[]],[[]],[[]],[[]],0,[[[232,[[0,[239,111]]]],[232,[[0,[239,111]]]]],159],[[],159],[155,151],0,0,0,[[]],[[],70],[[],[[232,[240]]]],[[],238],0,[34],[34],[34],[34],[[[232,[111]]],111],[34],[34],[34],[34],[34],[34],[34],[34],[34],[34],[[[232,[[0,[184,111]]]]],15],0,[[[232,[241]]],[[78,[[232,[[0,[241,45,46]]]],[232,[241]]]]]],[[[232,[241]]],[[232,[[0,[241,45,46]]]]]],[[[232,[111]]],[[242,[111]]]],[34],[34],[34],[34],[34],[[[232,[111]]]],[34],[34],[[70,70],4],[[[232,[243]],243],4],[[[232,[[0,[[244,[[0,[[244,[[0,[[244,[[0,[244,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[244,[[0,[[244,[[0,[[244,[[0,[244,111]]]],111]]]],111]]]],111]]]]],4],[[[232,[89]],89],4],[[155,155],4],[[238,238],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[[238,16],238],[[136,36],[[78,[153]]]],[[136,36],[[78,[153]]]],[[70,36],[[78,[153]]]],[[236,36],[[78,[153]]]],[[237,36],[[78,[153]]]],[[[232,[[0,[245,111]]]],36],[[78,[153]]]],[[[232,[111]],36],[[78,[153]]]],[[[232,[[0,[186,111]]]],36],[[78,[153]]]],[[155,36],[[78,[153]]]],[[238,36],[[78,[153]]]],[175,136],[[]],[179,136],[246,136],[[]],[[]],[[]],[[[32,[99]]],[[232,[23]]]],[15,[[232,[15]]]],[[]],[[[86,[[0,[247,111]]]]],[[232,[[0,[247,111]]]]]],[[[232,[15]]],[[232,[[23,[54]]]]]],[248,[[232,[249]]]],[250,[[232,[251]]]],[[[23,[87]]],[[232,[[23,[87]]]]]],[[],232],[252,[[232,[253]]]],[63,[[232,[15]]]],[253,[[232,[253]]]],[251,[[232,[251]]]],[249,[[232,[249]]]],[[[96,[111,99]]],[[232,[111]]]],[113],[[]],[[[32,[155,99]]],238],[[]],[[[13,[67]]]],[[[254,[65]],[254,[54]],[13,[67]]]],[[[254,[65]],[254,[54]],[13,[67]]]],[39,[[232,[23]]]],[[39,34],[[106,[65]]]],[39,[[106,[65]]]],[[39,151],[[106,[65]]]],[[39,34],[[106,[65]]]],[[],[[232,[111]]]],[15],[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],4],[34,13],[[[232,[111]]],[[13,[111]]]],[[[232,[111]]],111],[238,[[32,[15]]]],[34,13],[[31,34],42],[[],34],[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],4],[[],4],[[[232,[[0,[255,111]]]],129]],[[155,129]],[[]],[[238,15],[[13,[34]]]],[[[23,[61]]],14],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[232,13],[[[232,[111]]]],[[[232,[256]]],9],[[],4],[111,4],0,[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],4],0,[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],4],[[[232,[87]]],87],[[],9],[[],9],[[],9],0,0,[[],9],[[],9],0,[[[232,[[0,[[244,[[0,[[244,[[0,[[244,[[0,[244,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[244,[[0,[[244,[[0,[[244,[[0,[244,111]]]],111]]]],111]]]],111]]]]],4],[34,[[13,[34]]]],[15],[[],232],[[[154,[63]],151,4],155],[191,232],[[],[[232,[235]]]],[34,[[232,[[23,[235]]]]]],[[],[[232,[235]]]],[34,[[232,[[23,[235]]]]]],0,[[[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]],[232,[[0,[[131,[[0,[[131,[[0,[[131,[[0,[131,111]]]],111]]]],111]]]],111]]]]],[[13,[159]]]],[[],[[257,[232]]]],0,0,0,0,0,[[],9],[[],9],[185],[185],[[[232,[[0,[184,111]]]],185]],[[[232,[111]],[232,[111]]],4],[[53,70],[[10,[9]]]],[[34,4]],0,[[111,34,34],111],[[111,34,34],111],[136,[[13,[184]]]],[[[232,[[0,[184,111]]]]],[[13,[184]]]],[[[232,[[0,[258,111]]]],259],[[78,[260]]]],[[[232,[[0,[261,111]]]],262],[[78,[260]]]],[[[232,[[0,[261,111]]]]],[[78,[260]]]],[[[232,[[0,[258,111]]]]],[[78,[260]]]],[54,9],[[[232,[111]]],34],[[],9],[[],9],[[]],[[]],[[]],[[]],[[]],[[]],[[],63],[[],63],[[],78],[[],78],[[],78],[[],78],[[],78],[[[232,[23]]],[[78,[[232,[220]]]]]],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],78],[[],[[78,[232,263]]]],[[],[[78,[[232,[235]],263]]]],[[],[[78,[[232,[235]],263]]]],[[],[[78,[[257,[232]],263]]]],[232,[[78,[232]]]],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[[232,[[264,[45]]]]],[[78,[45]]]],[[[232,[87]]],87],0,[54,9],[[[232,[[264,[45]]]],191],78],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[232,[111]]],34],[[155,[265,[63,63,99]]],155],[[238,[265,[63,63,99]]],238],[[136,16],136],0,0,0,[[[13,[67]]]],[[[254,[65]],[254,[54]],[13,[67]]]],[[[254,[65]],[254,[54]],[13,[67]]]],0,[[]],[[]],[[89,151],[[96,[89,99]]]],[34],[34],[34],[[266,[13,[151]]],[[78,[[106,[65]],175]]]],[[]],[[],34],[[]],[266,4],[34,266],[266,[[23,[65]]]],[[266,89]],[266],[[266,[23,[[96,[89,99]]]]]],[266],[[266,[13,[89]]]],[266,[[267,[65]]]],[[],78],[[],78],[[],79],[[]],0,[268,241],[268,[[96,[89,99]]]],[268,241],[[]],[[]],[268,151],[[],268],[34],[34],[34],[[268,36],[[78,[153]]]],[[]],[[],34],[[]],[268,34],[268],[[268,34]],[268],[[],78],[[],78],[[],79],[268,[[13,[269]]]],[[]],0,[[111,34,34],111],[[111,34,34],111],0,0,[[14,34,34],[[102,[65]]]],[[14,34,34],[[104,[65]]]],0,0,0,[1],[[]],[[]],[188,188],[[]],[[188,15],4],[[],188],[34],[34],[34],[[188,188],4],[[],4],[[],4],[[],4],[[188,36],37],[[]],[194,188],[39,188],[[188,15],[[13,[29]]]],[[188,34],13],[[188,34],13],[[188,15],[[13,[71]]]],[[188,15],13],[[],[[32,[15]]]],[188,[[32,[15]]]],[15,[[13,[34]]]],[[188,15],[[13,[34]]]],[[],34],[[188,34,158,29],[[10,[[13,[29]]]]]],[[]],[188],[188,4],[188,14],[188,[[0,[14,47]]]],[188,[[0,[14,47]]]],[188,[[0,[14,47]]]],[188,34],[[188,188]],[[],188],[[188,34,158,29],[[10,[188]]]],[[188,15],[[13,[29]]]],[[188,15,158],[[13,[158]]]],[[188,15,29],[[13,[29]]]],[[188,34,29],[[13,[29]]]],[[188,15],[[13,[29]]]],[[188,34],13],[188,238],[[]],[[188,188],[[10,[4]]]],[[],78],[[188,15],[[10,[29]]]],[[188,34],10],[[188,15],[[10,[71]]]],[[188,15],10],[[188,15],[[10,[29]]]],[15,[[10,[34]]]],[[],78],[[],79],[[]],[34,188],[[188,158,29],[[13,[29]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[[],9],[[],9],[9,[[10,[9]]]],[[9,[0,[6,52]]]],[[9,[0,[6,52]]]],[[9,9]],[[9,9]],[[9,9],[[10,[9]]]],[25,26],[25,26],[[],[[10,[26]]]],[[],[[10,[26]]]],0,[[9,34],31],[[],241],[[],241],[[],241],[[],241],[9,22],[256,[[3,[19]]]],[256,[[3,[19]]]],[9,256],[[],[[10,[34]]]],[[],[[10,[34]]]],[9,[[10,[34]]]],[9,[[10,[28]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[9]]]],[9,[[10,[35]]]],[[]],[[]],[[]],[[]],[[]],[[]],[29,[[10,[9]]]],[[9,29],[[10,[9]]]],[[9,29],[[10,[9]]]],[9,[[10,[9]]]],[[],30],[[],[[32,[31]]]],[9,[[32,[31]]]],[9,9],[[9,42,42],[[10,[9]]]],[[9,42],[[10,[9]]]],[[9,42],[[10,[9]]]],[49,49],[9,9],[[],[[232,[256]]]],[[]],[[]],[[9,4],9],[[9,4],9],[[9,4],9],[[9,4],9],[[],9],[34],[34],[9],[34],[34],[34],[34],[[9,[0,[6,52]]]],[[9,9]],[[9,9]],[[9,[0,[6,52]]]],[34],[34],[34],[[],9],[[],9],[[],29],[[],29],[[49,49],4],[[9,9],4],[[9,121],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,15]],[[9,121]],[[9,9],[[10,[35]]]],[[],4],[[],4],[[],4],[9,34],[9,[[10,[9]]]],[[9,9],[[10,[9]]]],[[9,42,34],[[10,[9]]]],[9,[[10,[138]]]],[9,[[10,[139]]]],[[],[[86,[71]]]],[[],[[86,[71]]]],[[9,110],[[10,[9]]]],[35,[[10,[9]]]],[[9,35,4],[[10,[9]]]],[9,[[10,[9]]]],[[49,36],37],[[9,36],37],[[9,36],37],[9,63],[[]],[[]],[[[3,[19]]],9],[[]],[[15,[23,[42]],4],[[10,[9]]]],[[15,[23,[42]],29,4],[[10,[9]]]],[[15,[32,[31]],29],9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[39,9],[[15,[32,[44]]],9],[[15,[32,[61]]],9],[[15,[32,[43]]],9],[[15,[32,[53]]],9],[[15,[32,[65]]],9],[[15,[32,[57]]],9],[[15,34,29],9],[34,[[10,[42]]]],[9,34],[34,42],[34,42],[[9,121],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,121],[[10,[35]]]],[[],4],[[9,[13,[34]]],9],[9,[[10,[168]]]],[9,[[10,[169]]]],[9,[[10,[170]]]],[9,[[10,[167]]]],[9,[[10,[26]]]],0,[9,[[10,[22]]]],[[],34],[[],34],[[],34],[[]],[[]],[[]],[9,161],[[]],[111,9],[9,9],[[],4],[[],4],[9,[[10,[35]]]],[9,[[10,[35]]]],[9,[[10,[35]]]],[9,[[10,[35]]]],[9,[[10,[35]]]],[9,[[10,[35]]]],[[],35],[[],35],[[],4],[[],4],[[],4],[[],49],[[],49],[9,270],[[],34],[34,9],[34,9],[9,[[10,[22]]]],[[9,15],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,121],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,121],[[10,[35]]]],[9,[[13,[52]]]],[[],9],[[],9],[[],[[13,[53]]]],[[],[[13,[53]]]],[9,9],[[],[[13,[53]]]],[[],[[13,[53]]]],[[],9],[[],9],[9,[[13,[52]]]],[[],9],[[],9],[[9,[0,[6,52]]]],[[9,9]],[[9,[0,[6,52]]]],[[9,9]],[[],34],[[],34],[[],[[10,[34]]]],[[],[[10,[34]]]],[[],15],[[15,[55,[[23,[15]]]]],9],[[15,[55,[[23,[[13,[44]]]]]]],9],[[15,[55,[[23,[57]]]]],9],[[15,[55,[[23,[[13,[[86,[[23,[54]]]]]]]]]]],9],[[15,[55,[[23,[[23,[54]]]]]]],9],[[15,[55,[[23,[[13,[[32,[54]]]]]]]]],9],[[15,[58,[57]]],9],[[15,[55,[[23,[[32,[54]]]]]]],9],[[15,[55,[[23,[42]]]]],9],[[15,[55,[[23,[43]]]]],9],[[15,[55,[[23,[[86,[15]]]]]]],9],[[15,[55,[[23,[61]]]]],9],[[15,[55,[[23,[[13,[15]]]]]]],9],[[15,9],9],[[15,[55,[[23,[[13,[53]]]]]]],9],[[15,[58,[61]]],9],[[15,[55,[[23,[[13,[[23,[54]]]]]]]]],9],[[15,[55,[[23,[[13,[43]]]]]]],9],[[15,[55,[[23,[[86,[[23,[54]]]]]]]]],9],[[15,[55,[[23,[[13,[61]]]]]]],9],[[15,[55,[[23,[[13,[4]]]]]]],9],[[15,[55,[[23,[[13,[[86,[15]]]]]]]]],9],[[15,[55,[[23,[9]]]]],9],[[15,[55,[[23,[53]]]]],9],[[15,[55,[[23,[[13,[9]]]]]]],9],[[15,[55,[[23,[[13,[57]]]]]]],9],[[15,[58,[65]]],9],[[15,201],9],[[15,[55,[[23,[65]]]]],9],[[15,[55,[[23,[[13,[65]]]]]]],9],[[15,[55,[[23,[[13,[63]]]]]]],9],[[15,[55,[[23,[4]]]]],9],[[15,[58,[44]]],9],[[15,[55,[[23,[44]]]]],9],[[15,[55,[[23,[63]]]]],9],[[15,29],9],[[34,34],9],[[15,34],9],[270,13],[[9,121],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,15],[[10,[35]]]],[[9,9],[[10,[35]]]],[[9,121]],[[9,15]],[[],34],0,[[],35],[[],35],[[],35],[[],35],[9,271],[9,9],[[53,70],[[10,[9]]]],[[53,70],[[10,[9]]]],[[],9],[[9,9]],[[9,[0,[6,52]]]],[[9,[0,[6,52]]]],[15],[[9,15],9],[[9,[23,[65]]],[[10,[9]]]],[[],9],[[9,61],[[10,[9]]]],[[9,53,4,4,[13,[44]]],[[10,[9]]]],[[9,34,4,4,[13,[44]]],[[10,[9]]]],[[9,9],4],[[9,9],4],[[9,49]],[65,9],[[]],[[]],[9],[[9,[13,[44]]],9],[270],[[65,34],9],[[9,4],9],[25,9],[25,9],[54,9],[54,9],[[9,34],[[10,[[86,[15]]]]]],[[9,29],[[10,[9]]]],[9,[[10,[137]]]],[[9,[0,[6,52]]]],[[9,[0,[6,52]]]],[[9,9]],[[9,9]],[9,[[13,[52]]]],[9,9],[[9,[13,[34]]],9],[26,[[10,[9]]]],[[9,34],9],[73,[[10,[9]]]],[73,9],[74,9],[[9,26,4],[[10,[9]]]],[26,[[10,[9]]]],[[9,[23,[72]]],[[10,[9]]]],[[9,26,4],[[10,[9]]]],[34,9],[34,9],[[9,34],31],[[]],[[]],[9,[[86,[9]]]],[[],63],[[9,9],[[10,[9]]]],[[],78],[[],78],[[],78],[[],[[10,[9]]]],[[],[[10,[9]]]],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[9,[[10,[164]]]],[9,[[10,[165]]]],[9,[[10,[166]]]],[9,[[10,[163]]]],[[],[[10,[9]]]],[[],[[10,[9]]]],[9,[[10,[9]]]],[256,[[10,[[3,[19]]]]]],0,[9,[[10,[76]]]],[54,9],[54,9],[[]],[[]],[[]],[[9,35,9],[[10,[9]]]],0,0,0,0,[[9,9,18],9],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],[9],[9,[[10,[9]]]],[[3,9],[[10,[9]]]],[[3,9],[[10,[9]]]],0,0,0,[1],[[]],[[]],[272,272],[[]],[[],272],[34],[34],[34],[[272,272],4],[[],4],[[],4],[[],4],[[272,36],37],[[]],[[272,129]],[[],34],[[]],[[]],[[],78],[[],78],[[],79],[[]],0,0,[1],[273,9],[273,9],[[]],[[]],[273,273],[[]],[273,9],[34],[34],[34],[[]],[[],34],[[]],[9,273],[[273,31]],[[]],[[],78],[[],78],[[],79],[[]],[[273,31,16]],0,0,0,0,0,0,0,0,[1],[[],34],[[[23,[9]]],[[32,[9]]]],[[[32,[161]]],[[10,[161]]]],[39,[[10,[161]]]],[39,161],[[[3,[19]],[3,[19]]]],[[[3,[19]],[3,[19]],[3,[19]]]],[111,4],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[],[[96,[73,99]]]],[[],[[96,[74,99]]]],[34,[[78,[136]]]],[34,[[78,[136]]]],[[[274,[[0,[87,14]],87]]],[[274,[[0,[87,14]],87]]]],[[]],[[[3,[19]],[3,[19]]]],[[9,9]],[[[0,[111,41]]],275],[[[0,[111,41]]],276],[[[13,[67]],[13,[67]]],[[13,[67]]]],[[[13,[67]],[13,[67]]],[[13,[67]]]],[39,[[10,[161]]]],[39,161],[277],[34],[34],[278],[34],[34],[34],[278],[34],[34],[34],[34],[[9,15],10],[[[277,[9]],[277,[9]]],4],[[],4],[[],4],[[],4],0,[[111,18],13],[[14,18],13],[[]],[[]],[[]],[39,[[278,[[3,[5]]]]]],[39,[[278,[35]]]],[39],[39,[[278,[[3,[5]]]]]],[39,[[278,[35]]]],[40,[[278,[[3,[5]]]]]],[41,[[278,[[3,[5]]]]]],[[29,29],[[13,[29]]]],[[141,141],141],[[[277,[9]],129]],[[],34],[[],34],[[],34],[[]],[[]],[[]],[278],[[]],[[],32],[[],[[32,[63,99]]]],[[],[[32,[[98,[97]],99]]]],[[],278],[[14,34],[[274,[14]]]],[[[274,[14]]],13],[[[274,[[0,[14,33]]]]],13],0,[[[274,[14]]]],[[23,65,34],23],[[[3,[19]],34],[[10,[[32,[[3,[19]]]]]]]],[[161,34],[[10,[[32,[161]]]]]],[[]],[[111,34],[[274,[111]]]],[[],78],[[],78],[[],78],[[29,29],[[10,[29]]]],[[],78],[[],78],[[],78],[[],79],[[],79],[[],79],[[]],[[]],[[]],[[29,16]],[161,14],[[[23,[[55,[[23,[[0,[45,46,17]]]]]]]]],[[32,[[0,[45,46,17]]]]]],[9,[[32,[9]]]]],"c":[2741,2812,2873,2876,2877,2878,2879,2880,2885,2888,2893,2894,2930],"p":[[3,"Private"],[3,"ListType"],[3,"ChunkedArray"],[15,"bool"],[8,"PolarsNumericType"],[8,"Num"],[8,"ToPrimitive"],[8,"NumOpsDispatchInner"],[3,"Series"],[6,"PolarsResult"],[4,"GroupsProxy"],[3,"BooleanType"],[4,"Option"],[8,"Iterator"],[15,"str"],[8,"Fn"],[8,"Copy"],[8,"FnMut"],[8,"PolarsDataType"],[3,"Utf8Type"],[3,"BinaryType"],[6,"ListChunked"],[15,"slice"],[8,"PolarsIntegerType"],[3,"SortOptions"],[6,"IdxCa"],[3,"SortMultipleOptions"],[6,"BinaryChunked"],[4,"DataType"],[6,"ChunkIdIter"],[6,"ArrayRef"],[3,"Vec"],[8,"DoubleEndedIterator"],[15,"usize"],[6,"BooleanChunked"],[3,"Formatter"],[6,"Result"],[3,"PrimitiveArray"],[8,"IntoIterator"],[8,"IntoParallelIterator"],[8,"TrustedLen"],[4,"AnyValue"],[15,"f32"],[15,"u64"],[8,"Send"],[8,"Sync"],[8,"ExactSizeIterator"],[8,"PolarsFloatType"],[4,"IsSorted"],[3,"Iter"],[3,"Map"],[8,"NumCast"],[15,"f64"],[15,"u8"],[8,"AsRef"],[3,"UInt64Type"],[15,"i32"],[3,"Range"],[3,"Int32Type"],[3,"Float64Type"],[15,"u32"],[3,"UInt32Type"],[3,"String"],[3,"Float32Type"],[15,"i64"],[3,"Int64Type"],[3,"Bitmap"],[8,"ParallelIterator"],[8,"IndexedParallelIterator"],[4,"QuantileInterpolOptions"],[3,"Field"],[6,"IdxSize"],[8,"TakeIterator"],[8,"TakeIteratorNulls"],[4,"TakeIdx"],[6,"Utf8Chunked"],[4,"Either"],[4,"Result"],[3,"TypeId"],[3,"BinaryChunkedBuilder"],[3,"BinaryChunkedBuilderCow"],[3,"Utf8ChunkedBuilderCow"],[3,"BooleanChunkedBuilder"],[3,"PrimitiveChunkedBuilder"],[3,"Utf8ChunkedBuilder"],[4,"Cow"],[8,"Clone"],[3,"AnonymousListBuilder"],[8,"Array"],[3,"AnonymousOwnedListBuilder"],[3,"ListBooleanChunkedBuilder"],[3,"ListPrimitiveChunkedBuilder"],[3,"ListUtf8ChunkedBuilder"],[3,"ListBinaryChunkedBuilder"],[8,"ListBuilderTrait"],[3,"Box"],[3,"LazyCompact"],[3,"SmartString"],[3,"Global"],[3,"BooleanArray"],[3,"BoolIterNoNull"],[3,"Utf8Array"],[3,"Utf8IterNoNull"],[3,"BinaryArray"],[3,"BinaryIterNoNull"],[3,"ListArray"],[3,"ListIterNoNull"],[3,"StructIter"],[3,"SomeIterator"],[4,"FillNullStrategy"],[8,"Sized"],[6,"Dummy"],[15,"never"],[8,"TakeRandom"],[4,"TakeRandBranch3"],[4,"TakeRandBranch2"],[3,"Utf8TakeRandom"],[3,"Utf8TakeRandomSingleChunk"],[3,"BinaryTakeRandom"],[3,"BinaryTakeRandomSingleChunk"],[8,"NumericNative"],[3,"NumTakeRandomChunked"],[3,"NumTakeRandomCont"],[3,"NumTakeRandomSingleChunk"],[3,"BoolTakeRandom"],[3,"BoolTakeRandomSingleChunk"],[3,"ListTakeRandom"],[3,"ListTakeRandomSingleChunk"],[8,"Hasher"],[8,"IsFloat"],[8,"PartialOrd"],[3,"RowsEncoded"],[3,"NaiveDateTime"],[3,"CloudOptions"],[4,"CloudType"],[4,"PolarsError"],[3,"StructChunked"],[6,"Float32Chunked"],[6,"Float64Chunked"],[3,"Logical"],[4,"TimeUnit"],[3,"UInt8Type"],[3,"UInt16Type"],[3,"Int8Type"],[3,"Int16Type"],[3,"DateType"],[3,"DatetimeType"],[3,"DurationType"],[3,"CategoricalType"],[3,"TimeType"],[4,"ArrowDataType"],[4,"ArrowTimeUnit"],[3,"Error"],[8,"Into"],[3,"ArrowField"],[4,"IntegerType"],[4,"PrimitiveType"],[6,"String"],[4,"Ordering"],[4,"PhysicalType"],[3,"DataFrame"],[3,"RandomState"],[6,"UInt8Chunked"],[6,"UInt16Chunked"],[6,"UInt32Chunked"],[6,"UInt64Chunked"],[6,"Int8Chunked"],[6,"Int16Chunked"],[6,"Int32Chunked"],[6,"Int64Chunked"],[6,"PlHashMap"],[6,"PlIdHashMap"],[6,"PlHashSet"],[3,"ErrString"],[4,"ArrowError"],[3,"TryReserveError"],[3,"Utf8Error"],[4,"Error"],[3,"Error"],[4,"OutOfSpecKind"],[3,"FromUtf8Error"],[3,"Utf8Error"],[3,"Error"],[8,"Error"],[3,"Demand"],[8,"Display"],[4,"FloatFmt"],[3,"Schema"],[6,"LeftJoinIds"],[3,"JoinArgs"],[8,"FnOnce"],[4,"NullStrategy"],[4,"UniqueKeepStrategy"],[3,"Row"],[3,"GroupBy"],[3,"RangeToInclusive"],[3,"RangeInclusive"],[3,"RangeTo"],[3,"RangeFrom"],[3,"RangeFull"],[8,"IntoSeries"],[3,"RecordBatchIter"],[3,"PhysRecordBatchIter"],[8,"IntoVec"],[3,"MeltArgs"],[8,"RangeBounds"],[6,"SchemaRef"],[3,"StructArray"],[3,"GroupsIdx"],[4,"GroupByMethod"],[3,"SlicedGroups"],[3,"GroupsProxyParIter"],[8,"UnindexedConsumer"],[4,"GroupsIndicator"],[6,"IdxItem"],[3,"Copied"],[3,"Zip"],[3,"GroupsProxyIter"],[6,"GroupsSlice"],[15,"array"],[8,"NativeType"],[6,"DynArgs"],[6,"ChunkId"],[4,"JoinValidation"],[4,"JoinType"],[6,"ChunkJoinOptIds"],[4,"AnyValueBuffer"],[4,"AnyValueBufferTrusted"],[8,"Borrow"],[3,"IdHasher"],[8,"AsFd"],[3,"Arc"],[3,"BorrowedFd"],[8,"AsRawFd"],[19,"MaybeUninit"],[3,"RollingVarParams"],[3,"RollingQuantileParams"],[3,"ArrowSchema"],[8,"Ord"],[8,"Default"],[8,"Any"],[3,"Weak"],[8,"Scalar"],[8,"PartialEq"],[8,"Debug"],[4,"Error"],[8,"ToOwned"],[3,"PathBuf"],[3,"Path"],[3,"CString"],[3,"CStr"],[3,"OsString"],[3,"OsStr"],[3,"Buffer"],[8,"Hash"],[8,"SeriesTrait"],[3,"Pin"],[8,"LocalSpawn"],[3,"LocalFutureObj"],[3,"SpawnError"],[8,"Spawn"],[3,"FutureObj"],[3,"AllocError"],[3,"RwLock"],[3,"BTreeMap"],[3,"AnonymousBuilder"],[3,"Offsets"],[3,"MutableNullArray"],[3,"MutableBitmap"],[3,"SeriesIter"],[6,"SeriesPhysIter"],[4,"NullBehavior"],[3,"UnstableSeries"],[3,"TrustMyLength"],[8,"FromIteratorReversed"],[8,"FromTrustedLenIterator"],[3,"Wrap"],[3,"NoNull"],[3,"RevMapping"],[8,"ArrayArithmetics"],[8,"ChunkedBuilder"],[8,"NewChunkedArray"],[8,"IntoTakeRandom"],[8,"TakeRandomUtf8"],[8,"ChunkCompare"],[8,"ChunkApply"],[8,"ChunkApplyKernel"],[8,"ChunkSort"],[8,"ChunkUnique"],[3,"TakeRandomBitmap"],[8,"ChunkCast"],[8,"ChunkCumAgg"],[8,"ChunkExplode"],[8,"ChunkFillNullValue"],[8,"ChunkFilter"],[8,"ChunkFull"],[8,"ChunkFullNull"],[8,"ChunkAnyValue"],[8,"IsIn"],[8,"ChunkAgg"],[8,"ChunkQuantile"],[8,"ChunkExpandAtIndex"],[8,"ChunkPeaks"],[8,"ChunkReverse"],[8,"ChunkSet"],[8,"ChunkShift"],[8,"ChunkShiftFill"],[8,"ChunkVar"],[8,"ChunkTake"],[8,"ChunkBytes"],[8,"ChunkZip"],[8,"InitHashMaps"],[8,"AsRefDataType"],[8,"LogicalType"],[8,"GetAnyValue"],[6,"PlIndexMap"],[6,"PlIndexSet"],[8,"IntoGroupsProxy"],[13,"Slice"],[8,"AggList"],[8,"PhysicalAggExpr"],[8,"FxHash"],[8,"VecHash"],[8,"AsU64"],[8,"ArrowGetItem"],[8,"MutableBitmapExtension"],[8,"FromData"],[8,"FromDataUtf8"],[8,"FromDataBinary"],[8,"ListFromIter"],[8,"NamedFromOwned"],[8,"ValueSize"],[8,"PolarsArray"],[8,"ChunkAggSeries"],[8,"QuantileAggSeries"],[8,"IndexToUsize"],[8,"NamedFrom"],[8,"SlicedArray"],[8,"VarAggSeries"],[8,"Utf8FromIter"],[8,"BinaryFromIter"],[8,"IndexOfSchema"],[8,"LhsNumOps"],[8,"NumOpsDispatch"],[8,"CustomIterTools"]]},\ +"polars_error":{"doc":"","t":"ENNNNDNNNNNNNNNNEGNNNNNLLLLLLLOLLLLLLLLLLLLLLLLLLLLLLFLLLFOOOOOLLFLFLLLLLLLLLLLLL","n":["ArrowError","ArrowError","ColumnNotFound","ComputeError","Duplicate","ErrString","External","ExternalFormat","InvalidArgumentError","InvalidOperation","Io","Io","NoData","NotYetImplemented","OutOfSpec","Overflow","PolarsError","PolarsResult","SchemaFieldNotFound","SchemaMismatch","ShapeMismatch","StringCacheMismatch","StructFieldNotFound","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","deref","feature_gated","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_external_error","get_warning_function","into","into","into","map_err","polars_bail","polars_ensure","polars_err","polars_warn","polars_warn","provide","provide","set_warning_function","source","to_compute_err","to_string","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","wrap_msg"],"q":[[0,"polars_error"]],"d":["Enum with all errors in this crate.","","","","","","Wrapper for an error triggered by a dependency","Error during import or export to/from a format","When an invalid argument is passed to a function.","","","Wrapper for IO errors","","Returned when functionality is not yet available.","Whenever incoming data from the C data interface, IPC or …","Whenever pushing to a container fails because it does not …","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","","Wraps an external error in an Error.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Set the function that will be called by the polars_warn! …","","","","","","","","","","","","","","",""],"i":[0,4,4,4,4,0,5,5,5,4,4,5,4,5,5,5,0,0,4,4,4,4,4,1,4,5,1,4,5,1,0,1,1,4,4,5,5,1,1,4,4,4,4,5,5,5,5,5,5,5,5,5,5,0,1,4,5,0,0,0,0,0,0,4,5,0,4,0,1,4,5,1,4,5,1,4,5,1,4,5,4],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[1],0,[[1,2],3],[[1,2],3],[[4,2],3],[[4,2],3],[[5,2],[[7,[6]]]],[[5,2],[[7,[6]]]],[[]],[[[10,[[9,[8]]]]],1],[11,4],[5,4],[12,4],[[]],[13,5],[14,5],[[]],[12,5],[15,5],[16,5],[17,5],[18,5],[19,5],[[[0,[20,21,22]]],5],[[]],[[]],[[]],[[]],[20,4],0,0,0,0,0,[23],[23],[[]],[4,[[24,[20]]]],[25,4],[[],26],[[],26],[[],26],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],27],[[],27],[[],27],[[4,28],4]],"c":[],"p":[[3,"ErrString"],[3,"Formatter"],[6,"Result"],[4,"PolarsError"],[4,"ArrowError"],[3,"Error"],[4,"Result"],[15,"str"],[4,"Cow"],[8,"Into"],[4,"Error"],[3,"Error"],[3,"Utf8Error"],[3,"TryReserveError"],[4,"OutOfSpecKind"],[4,"Error"],[3,"Utf8Error"],[3,"Error"],[3,"FromUtf8Error"],[8,"Error"],[8,"Send"],[8,"Sync"],[3,"Demand"],[4,"Option"],[8,"Display"],[3,"String"],[3,"TypeId"],[8,"Fn"]]},\ +"polars_io":{"doc":"","t":"IDIIILLLLLKALLLLLLLLAKKKLLLLAFAAMAKKKMAAALLLLLLNNEDDNNENLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLFFFFDDLLLLFMMLLLLLLLMMMMMMLLLLDEDDDNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGNENDDLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLADIDQIDDQDDDDDDDDDLKLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFNNINELLLLLLLLLLLLLLLLADDLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAQIDQDLKLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNDDNDDNNDDNNNEEDDNNNNDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIILKKCCF","n":["ArrowReader","RowCount","SerReader","SerWriter","WriterFactory","__clone_box","borrow","borrow_mut","clone","clone_into","create_writer","csv","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","equivalent","export","extension","finish","finish","fmt","from","init","into","ipc","is_cloud_url","json","mmap","name","ndjson","new","new","next_record_batch","offset","parquet","predicates","prelude","set_rechunk","to_owned","try_from","try_into","type_id","vzip","AllColumns","AllColumnsSingle","CsvEncoding","CsvReader","CsvWriter","LossyUtf8","Named","NullValues","Utf8","__clone_box","__clone_box","batched_borrowed_mmap","batched_borrowed_read","batched_mmap","batched_read","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finish","finish","fmt","fmt","from","from","from","from","from_path","has_header","has_header","infer_schema","init","init","init","init","into","into","into","into","low_memory","new","new","read_impl","sample_size","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","utils","vzip","vzip","vzip","vzip","with_batch_size","with_chunk_size","with_columns","with_comment_char","with_date_format","with_datetime_format","with_delimiter","with_delimiter","with_dtypes","with_dtypes_slice","with_encoding","with_end_of_line_char","with_float_precision","with_ignore_errors","with_missing_is_null","with_n_rows","with_n_threads","with_null_value","with_null_values","with_path","with_predicate","with_projection","with_quote_char","with_quoting_char","with_rechunk","with_row_count","with_schema","with_skip_rows","with_skip_rows_after_header","with_time_format","with_try_parse_dates","BatchedCsvReaderMmap","BatchedCsvReaderRead","OwnedBatchedCsvReader","OwnedBatchedCsvReaderMmap","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","from","from","from","from","init","init","init","init","into","into","into","into","next_batches","next_batches","next_batches","next_batches","to_batched_owned_mmap","to_batched_owned_read","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","get_reader_bytes","infer_file_schema","infer_file_schema_inner","is_compressed","ParquetStatistics","Statistics","borrow","borrow_mut","deref","deref_mut","deserialize","distinct_count","distinct_count","drop","eq","fmt","from","from","init","into","max_value","max_value","min_value","min_value","null_count","null_count","try_from","try_into","type_id","vzip","BatchedWriter","IpcCompression","IpcReader","IpcWriter","IpcWriterOption","LZ4","ZSTD","__clone_box","arrow_schema","batched","batched_async","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","create_writer","default","default","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","eq","equivalent","equivalent","equivalent","equivalent","extension","finish","finish","finish","finish_with_scan_ops","fmt","from","from","from","from","from","hash","init","init","init","init","init","into","into","into","into","into","memory_mapped","new","new","new","new_async","schema","set_rechunk","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","with_columns","with_compression","with_compression","with_extension","with_n_rows","with_projection","with_row_count","write_batch","ArrowResult","Json","JsonFormat","JsonLines","JsonReader","JsonWriter","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","finish","finish","from","from","from","infer_schema_len","init","init","init","into","into","into","json","new","new","set_rechunk","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","with_batch_size","with_ignore_errors","with_json_format","with_json_format","with_projection","with_schema","with_schema_overwrite","write","Convert","DoubleEndedFallibleStreamingIterator","Empty","Error","FallibleStreamingIterator","Filter","Fuse","Item","Map","MapErr","MapRef","RecordSerializer","Serializer","Skip","SkipWhile","Take","TakeWhile","__clone_box","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance","advance_back","advance_back","advance_back","advance_back","advance_back","advance_back","all","any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","by_ref","clone","clone_into","convert","count","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","empty","filter","find","fmt","for_each","from","from","from","from","from","from","from","from","from","from","from","from","from","fuse","get","get","get","get","get","get","get","get","get","get","get","get","get","get","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","map","map_err","map_ref","new","new","next","next","next","next_back","next_back","nth","position","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","write","Borrowed","Mapped","MmapBytesReader","Owned","ReaderBytes","borrow","borrow_mut","deref","deref","deref_mut","drop","from","from","init","into","to_bytes","to_file","try_from","try_into","type_id","vzip","core","JsonLineReader","StructArray","__clone_box","arced","arrow_ndjson","as_any","as_any_mut","borrow","borrow","borrow_mut","borrow_mut","boxed","clone","clone_into","data_type","deref","deref","deref_mut","deref_mut","drop","drop","eq","eq","fields","finish","fmt","from","from","from","from","from_path","get_fields","infer_schema_len","init","init","into","into","into_data","into_iter","iter","len","low_memory","new","new","new_empty","new_null","set_validity","slice","slice","slice_typed","slice_typed_unchecked","slice_unchecked","slice_unchecked","sliced","sliced_unchecked","to_boxed","to_owned","try_from","try_from","try_into","try_into","try_new","type_id","type_id","validity","validity","values","values_iter","vzip","vzip","with_chunk_size","with_n_rows","with_n_threads","with_path","with_rechunk","with_schema","with_schema_overwrite","with_validity","with_validity","write","Error","FallibleStreamingIterator","FileWriter","Item","Serializer","__clone_box","advance","advance","all","any","borrow","borrow","borrow_mut","borrow_mut","by_ref","clone","clone_into","count","deref","deref","deref_mut","deref_mut","drop","drop","filter","find","fmt","for_each","from","from","fuse","get","get","init","init","into","into","into_inner","into_iter","map","map_err","map_ref","new","new","next","next","nth","position","size_hint","skip","skip_while","take","take_while","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","Auto","BatchedParquetReader","BatchedWriter","Brotli","BrotliLevel","BrotliLevel","Columns","Gzip","GzipLevel","GzipLevel","Lz4Raw","Lzo","None","ParallelStrategy","ParquetCompression","ParquetReader","ParquetWriter","RowGroups","Snappy","Uncompressed","Zstd","ZstdLevel","ZstdLevel","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_finish_with_scan_ops","batched","batched","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finish","finish","finish","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","hash","hash","hash","hash","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","iter","new","new","new","next_batches","num_rows","predicates","read_parallel","schema","set_low_memory","set_parallel","set_rechunk","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_new","try_new","try_new","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","use_statistics","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_columns","with_compression","with_data_pagesize_limit","with_n_rows","with_projection","with_row_count","with_row_group_size","with_statistics","write_batch","BatchStats","ColumnStats","borrow","borrow","borrow_mut","borrow_mut","deref","deref","deref_mut","deref_mut","drop","drop","dtype","fmt","from","from","get_stats","init","init","into","into","null_count","schema","to_max","to_min","to_min_max","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","PhysicalIoExpr","StatsEvaluator","as_stats_evaluator","evaluate","should_read","SerReader","SerWriter","resolve_homedir"],"q":[[0,"polars_io"],[47,"polars_io::csv"],[171,"polars_io::csv::read_impl"],[231,"polars_io::csv::utils"],[235,"polars_io::export"],[261,"polars_io::ipc"],[365,"polars_io::json"],[421,"polars_io::json::json"],[422,"polars_io::json::json::write"],[673,"polars_io::mmap"],[694,"polars_io::ndjson"],[695,"polars_io::ndjson::core"],[774,"polars_io::ndjson::core::arrow_ndjson"],[775,"polars_io::ndjson::core::arrow_ndjson::write"],[837,"polars_io::parquet"],[1055,"polars_io::parquet::predicates"],[1089,"polars_io::predicates"],[1094,"polars_io::prelude"]],"d":["","","","","","","","","","","","(De)serializing CSV files","","","","","","","","","","","Take the SerReader and return a parsed DataFrame.","","","Returns the argument unchanged.","","Calls U::from(self).","","Check if the path is a cloud url.","(De)serialize JSON files.","","","","Create a new instance of the [SerReader]","","","","Reading Apache parquet files.","","","Make sure that all columns are contiguous in memory by …","","","","","","Multiple values that are used for all columns","A single value that’s used for all columns","","Create a new DataFrame by reading a csv file.","Write a DataFrame to csv.","Utf8 encoding and unknown bytes are replaced with �","Tuples that map column names to null value of that column","","Utf8 encoding","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Read the file and create the DataFrame.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","This is the recommended way to create a csv reader as this …","Set whether the CSV file has headers","Set whether to write headers","Set the CSV reader to infer the schema of the file","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Reduce memory consumption at the expense of performance","Create a new CsvReader from a file/ stream","","","Sets the size of the sample taken from the CSV file. The …","","","","","","","","","","","","","","","","","","","","","Sets the chunk size used by the parser. This influences …","Columns to select/ project","Set the comment character. Lines starting with this …","Set the CSV file’s date format","Set the CSV file’s datetime format","Set the CSV file’s column delimiter as a byte character","Set the CSV file’s column delimiter as a byte character","Overwrite the schema with the dtypes in this given Schema. …","Overwrite the dtypes in the schema in the order of the …","Set CsvEncoding","","Set the CSV file’s float precision","Continue with next batch when a ParserError is encountered.","Treat missing fields as null.","Try to stop parsing when n rows are parsed. During …","Set the number of threads used in CSV reading. The default …","Set the CSV file’s null value representation","Set values that will be interpreted as missing/ null. Note …","The preferred way to initialize this builder. This allows …","","Set the reader’s column projection. This counts from 0, …","Set the char used as quote char. The default is b'"'. If …","Set the single byte character used for quoting","Rechunk the DataFrame to contiguous memory after the CSV …","Add a row_count column.","Set the CSV file’s schema. This only accepts datatypes …","Skip the first n rows during parsing. The header will be …","Skip these rows after the header","Set the CSV file’s time format","Automatically try to parse dates/ datetimes and time. If …","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","Infer the schema of a CSV file by reading through the …","","check if csv file is compressed","Arrow-deserialized parquet Statistics of a file","Arrow-deserialized parquet Statistics of a file","","","","","Deserializes the statistics in the column chunks from all …","number of dictinct values. This is a UInt64Array for …","number of dictinct values. This is a UInt64Array for …","","","","","Returns the argument unchanged.","","Calls U::from(self).","Maximum","Maximum","Minimum","Minimum","number of nulls. This is a UInt64Array for non-nested types","number of nulls. This is a UInt64Array for non-nested types","","","","","","Compression codec","Read Arrows IPC format into a DataFrame","Write a DataFrame to Arrow’s IPC format","","LZ4 (framed)","ZSTD","","Get arrow schema of the Ipc File, this is faster than …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Writes the footer of the IPC file.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Set if the file is to be memory_mapped. Only works with …","","","","","Get schema of the Ipc File","","","","","","","","","","","","","","","","","","","","","","","Columns to select/ project","Set the compression used. Defaults to None.","Set the compression used. Defaults to None.","Set the extension. Defaults to “.ipc”.","Stop reading when n rows are read.","Set the reader’s column projection. This counts from 0, …","Add a row_count column.","Write a batch to the parquet writer.","Typedef for a std::result::Result of an Error.","A single JSON array containing each DataFrame row as an …","The format to use to write the DataFrame to JSON: Json (a …","Each DataFrame row is serialized as a JSON object on a …","Reads JSON in one of the formats in JsonFormat into a …","Writes a DataFrame to JSON.","","","","","","","","","","","","","","","","","Take the SerReader and return a parsed DataFrame.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Set the JSON reader to infer the schema of the file. …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Convert data between the Arrow memory format and JSON …","Create a new JsonWriter writing to buffer with format …","","","","","","","","","","","","","","","Set the batch size (number of records to load at one time)","Return a null if an error occurs during parsing.","","","Set the reader’s column projection: the names of the …","Set the JSON file’s schema","Overwrite parts of the inferred schema.","APIs to write to JSON","An iterator which wraps a normal Iterator.","A fallible, streaming iterator which can be advanced from …","An iterator over no items.","The error type of iteration.","A fallible, streaming iterator.","An iterator which filters elements with a predicate.","An iterator which is well-behaved at the beginning and end …","The type being iterated over.","An iterator which applies a transform to elements.","An iterator which applies a transform to errors.","An iterator which applies a transform to elements.","FallibleStreamingIterator that serializes a Chunk into …","FallibleStreamingIterator that serializes an Array to …","An iterator which skips a number of initial elements.","An iterator which skips initial elements matching a …","An iterator which only returns a number of initial …","An iterator which only returns initial elements matching a …","","Advances the iterator to the next position.","","","","","","","","","","","","","","Advances the state of the iterator to the next item from …","","","","","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","","","","","","","","","","","","","","","","","","","","","","","Borrows an iterator, rather than consuming it.","","","Converts a normal Iterator over Results of references into …","Returns the number of remaining elements in the iterator.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns an iterator over no items.","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new RecordSerializer.","Creates a new Serializer.","Advances the iterator, returning the next element.","","","Advances the back of the iterator, returning the last …","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","","","","","","","","","","","","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Writes valid JSON from an iterator of (assumed …","","","Trait used to get a hold to file handler or to the …","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","A StructArray is a nested Array with an optional validity …","","Arcs this array into a std::sync::Arc<dyn Array>.","APIs to read from and write to NDJSON","","","","","","","Boxes this array into a Box<dyn Array>.","","","","","","","","","","","","Returns the fields of this StructArray.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","This is the recommended way to create a json reader as …","Returns the fields the DataType::Struct.","","","","Calls U::from(self).","Calls U::from(self).","Deconstructs the StructArray into its individual …","","Returns an iterator of Option<Box<dyn Array>>","","Reduce memory consumption at the expense of performance","Create a new JsonLineReader from a file/ stream","Returns a new StructArray","Creates an empty StructArray.","Creates a null StructArray of length length.","Sets the validity of this array.","Slices this StructArray.","","","","Slices this StructArray.","","Returns this array sliced.","Returns this array sliced.","","","","","","","Returns a new StructArray.","","","","The optional validity.","Returns the values of this StructArray.","Returns an iterator of Box<dyn Array>","","","Sets the chunk size used by the parser. This influences …","","","","","","","","Returns this array with a new validity.","APIs to serialize and write to NDJSON.","The error type of iteration.","A fallible, streaming iterator.","An iterator adapter that receives an implementer of Write …","The type being iterated over.","FallibleStreamingIterator that serializes an Array to …","","Advances the iterator to the next position.","","Determines if all elements of the iterator satisfy a …","Determines if any elements of the iterator satisfy a …","","","","","Borrows an iterator, rather than consuming it.","","","Returns the number of remaining elements in the iterator.","","","","","","","Returns an iterator which filters elements by a predicate.","Returns the first element of the iterator which satisfies …","","Calls a closure on each element of an iterator.","Returns the argument unchanged.","Returns the argument unchanged.","Returns an iterator which is well-behaved at the beginning …","Returns the current element.","","","","Calls U::from(self).","Calls U::from(self).","Returns the inner content of this iterator","","Returns an iterator which applies a transform to elements.","Returns an iterator that applies a transform to errors.","Returns an iterator which applies a transform to elements.","Creates a new FileWriter.","Creates a new Serializer.","Advances the iterator, returning the next element.","","Returns the nth element of the iterator.","Returns the position of the first element matching a …","Returns bounds on the number of remaining elements in the …","Returns an iterator which skips the first n elements.","Returns an iterator which skips the first sequence of …","Returns an iterator which only returns the first n …","Returns an iterator which only returns the first sequence …","","","","","","","","","","Automatically determine over which unit to parallelize …","","","","","","Parallelize over the columns","","","","","","Don’t parallelize","","","Read Apache parquet format into a DataFrame.","Write a DataFrame to parquet format","Parallelize over the row groups","","","","Represents a valid zstd compression level.","Represents a valid zstd compression level.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Write the given DataFrame in the the writer W. Returns the …","Writes the footer of the parquet file. Returns the total …","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Turn the batched reader into an iterator.","Create a new ParquetReader from an existing Reader.","","Create a new writer","","Number of rows in the parquet file.","","Read the parquet file in parallel (default). The single …","Schema of the file.","Try to reduce memory pressure at the expense of …","Serialize columns in parallel","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Use statistics in the parquet to determine if pages can be …","","","","","","","","","","Columns to select/ project","Set the compression used. Defaults to Zstd.","Sets the maximum bytes size of a data page. If None will …","Stop parsing when n rows are parsed. By settings this …","Set the reader’s column projection. This counts from 0, …","Add a row_count column.","Set the row group size (in number of rows) during writing. …","Compute and write statistic","Write a batch to the parquet writer.","A collection of column stats with a known schema.","The statistics for a column in a Parquet file they …","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","Can take &dyn Statistics and determine of a file should be …","Take a DataFrame and produces a boolean Series that serves …","","","",""],"i":[0,0,0,0,0,2,2,2,2,2,117,0,2,2,2,2,2,2,2,2,0,117,118,4,2,2,2,2,0,0,0,0,2,0,118,4,119,2,0,0,0,118,2,2,2,2,2,29,29,0,0,0,28,29,0,28,28,29,22,22,22,22,22,30,28,29,22,30,28,29,28,29,28,29,22,30,28,29,22,30,28,29,22,30,28,29,28,29,28,28,28,28,29,29,29,29,22,30,28,29,22,30,28,29,22,22,30,22,22,30,28,29,22,30,28,29,22,22,30,0,22,28,29,22,30,28,29,22,30,28,29,22,30,28,29,0,22,30,28,29,30,22,22,22,30,30,22,30,22,22,22,22,30,22,22,22,22,30,22,22,22,22,22,30,22,22,22,22,22,30,22,0,0,0,0,23,26,24,27,23,26,24,27,23,26,24,27,23,26,24,27,23,26,26,24,27,27,23,26,24,27,23,26,24,27,23,26,24,27,23,26,24,27,0,0,23,26,24,27,23,26,24,27,23,26,24,27,23,26,24,27,0,0,0,0,0,0,45,45,45,45,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,56,56,56,49,51,51,49,51,52,57,56,49,51,52,57,56,56,56,57,57,56,49,51,52,57,56,49,51,52,57,56,49,51,52,57,56,56,56,56,56,56,57,49,51,52,49,56,49,51,52,57,56,56,49,51,52,57,56,49,51,52,57,56,49,49,51,57,51,49,49,56,49,51,52,57,56,49,51,52,57,56,49,51,52,57,56,49,51,52,57,56,49,51,57,57,49,49,49,52,0,61,0,61,0,0,61,59,60,61,59,60,61,59,60,61,59,60,61,59,60,59,60,61,59,60,60,61,59,60,61,59,60,0,59,60,60,61,59,60,61,59,60,61,59,60,61,59,60,60,60,59,60,60,60,60,0,0,0,0,65,0,0,0,65,0,0,0,0,0,0,0,0,0,79,65,63,64,67,68,69,71,72,73,74,75,76,77,79,81,63,64,69,71,72,65,65,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,65,79,79,0,65,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,0,65,65,79,65,63,64,67,68,69,71,72,73,74,75,76,77,79,65,65,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,65,65,65,77,79,65,68,72,81,72,65,65,65,63,64,67,68,69,71,72,73,74,75,76,65,65,65,65,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,63,64,67,68,69,71,72,73,74,75,76,77,79,0,41,41,0,41,0,41,41,41,41,41,41,41,41,41,41,21,21,41,41,41,41,0,0,0,86,86,0,86,86,89,86,89,86,86,86,86,86,89,86,89,86,89,86,86,86,86,89,86,89,86,86,86,89,86,89,89,86,89,86,86,86,86,86,89,89,86,86,86,86,86,86,86,86,86,86,86,86,86,86,89,86,89,86,86,89,86,86,86,86,86,89,86,89,89,89,89,89,89,89,86,86,0,65,0,0,65,0,97,65,97,65,65,98,97,98,97,65,97,97,65,98,97,98,97,98,97,65,65,97,65,98,97,65,65,97,98,97,98,97,98,98,65,65,65,98,97,65,98,65,65,65,65,65,65,65,97,98,97,98,97,98,97,98,97,103,0,0,107,0,0,103,107,0,0,107,107,103,0,0,0,0,103,107,107,107,0,0,103,104,105,106,107,99,99,101,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,103,104,105,106,107,103,104,105,106,107,103,107,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,103,104,105,106,107,103,103,103,103,104,104,104,104,105,105,105,105,106,106,106,106,107,107,107,107,99,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,104,105,106,107,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,100,99,100,101,100,99,0,99,99,99,101,99,103,104,105,106,107,99,100,101,102,103,104,105,106,107,99,100,101,102,103,104,105,106,107,104,105,106,99,100,101,102,103,104,105,106,107,99,99,100,101,102,103,104,105,106,107,99,101,101,99,99,99,101,101,102,0,0,113,112,113,112,113,112,113,112,113,112,112,112,113,112,113,113,112,113,112,112,113,112,112,112,113,112,113,112,113,112,113,112,0,0,38,38,116,0,0,0],"f":[0,0,0,0,0,[1],[[]],[[]],[2,2],[[]],[3,[[5,[4]]]],0,[6],[6],[6],[[2,2],7],[[],7],[[],7],[[],7],[[],7],0,[[],8],[[],[[10,[9]]]],[9,10],[[2,11],12],[[]],[[],6],[[]],0,[[[14,[13]]],7],0,0,0,0,[[]],[[],15],[[],[[18,[[17,[16]]]]]],0,0,0,0,[[15,7],15],[[]],[[],19],[[],19],[[],20],[[]],0,0,0,0,0,0,0,0,0,[1],[1],[[[22,[21]]],[[10,[23]]]],[[[22,[21]]],[[10,[24]]]],[[[22,[[5,[21]]]],[17,[25]]],[[10,[26]]]],[[[22,[[5,[21]]]],[17,[25]]],[[10,[27]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[28,28],[29,29],[[]],[[]],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[28,28],7],[[29,29],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[[22,[21]]],[[10,[9]]]],[[[30,[3]],9],10],[[28,11],12],[[29,11],12],[[]],[[]],[[]],[[]],[[[31,[8]]],[[10,[[22,[32]]]]]],[[[22,[21]],7],[[22,[21]]]],[[[30,[3]],7],[[30,[3]]]],[[[22,[21]],[17,[6]]],[[22,[21]]]],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[[22,[21]],7],[[22,[21]]]],[21,[[22,[21]]]],[3,[[30,[3]]]],0,[[[22,[21]],6],[[22,[21]]]],[[]],[[]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[],20],0,[[]],[[]],[[]],[[]],[[[30,[3]],6],[[30,[3]]]],[[[22,[21]],6],[[22,[21]]]],[[[22,[21]],[17,[[34,[33]]]]],[[22,[21]]]],[[[22,[21]],[17,[35]]],[[22,[21]]]],[[[30,[3]],[17,[33]]],[[30,[3]]]],[[[30,[3]],[17,[33]]],[[30,[3]]]],[[[22,[21]],35],[[22,[21]]]],[[[30,[3]],35],[[30,[3]]]],[[[22,[21]],[17,[25]]],[[22,[21]]]],[[[22,[21]],[17,[[37,[36]]]]],[[22,[21]]]],[[[22,[21]],28],[[22,[21]]]],[[[22,[21]],35],[[22,[21]]]],[[[30,[3]],[17,[6]]],[[30,[3]]]],[[[22,[21]],7],[[22,[21]]]],[[[22,[21]],7],[[22,[21]]]],[[[22,[21]],[17,[6]]],[[22,[21]]]],[[[22,[21]],[17,[6]]],[[22,[21]]]],[[[30,[3]],33],[[30,[3]]]],[[[22,[21]],[17,[29]]],[[22,[21]]]],[[[22,[21]],[17,[[31,[8]]]]],[[22,[21]]]],[[[22,[21]],[17,[[39,[38]]]]],[[22,[21]]]],[[[22,[21]],[17,[[34,[6]]]]],[[22,[21]]]],[[[22,[21]],[17,[35]]],[[22,[21]]]],[[[30,[3]],35],[[30,[3]]]],[[[22,[21]],7],[[22,[21]]]],[[[22,[21]],[17,[2]]],[[22,[21]]]],[[[22,[21]],25],[[22,[21]]]],[[[22,[21]],6],[[22,[21]]]],[[[22,[21]],6],[[22,[21]]]],[[[30,[3]],[17,[33]]],[[30,[3]]]],[[[22,[21]],7],[[22,[21]]]],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[6],[6],[6],[6],[6],[6],[6],[6],[6],[26],[6],[6],[27],[6],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[23,6],[[10,[[17,[[34,[9]]]]]]]],[[26,6],[[10,[[17,[[34,[9]]]]]]]],[[24,6],[[10,[[17,[[34,[9]]]]]]]],[[27,6],[[10,[[17,[[34,[9]]]]]]]],[[[22,[[5,[21]]]],25],26],[[[22,[[5,[21]]]],25],27],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[],20],[[]],[[]],[[]],[[]],[[[0,[40,21,15]]],[[10,[41]]]],[[41,35,[17,[6]],7,[17,[42]],6,6,[17,[35]],[17,[35]],35,[17,[29]],7],10],[[41,35,[17,[6]],7,[17,[42]],6,6,[17,[35]],[17,[35]],35,[17,[29]],7,35],10],[[[37,[35]]],7],0,0,[[]],[[]],[6],[6],[[43,[37,[44]]],[[19,[45,46]]]],0,0,[6],[[45,45],7],[[45,11],[[19,[47]]]],[48,45],[[]],[[],6],[[]],0,0,0,0,0,0,[[],19],[[],19],[[],20],[[]],0,0,0,0,0,0,0,[1],[[[49,[21]]],[[10,[50]]]],[[[51,[3]],42],[[10,[[52,[3]]]]]],[[[51,[[0,[53,54,55]]]],42],[[10,[[0,[[0,[53,54,55]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[56,56],[[]],[[57,3],[[5,[4]]]],[[],57],[[],56],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[56,56],7],[[],7],[[],7],[[],7],[[],7],[57,8],[[[49,[21]]],[[10,[9]]]],[[[51,[3]],9],10],[[[52,[3]]],10],[[[49,[21]],[17,[[39,[38]]]],7],[[10,[9]]]],[[56,11],12],[[]],[[]],[[]],[[]],[[]],[[56,58]],[[],6],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[]],[[[49,[21]],7],[[49,[21]]]],[21,[[49,[21]]]],[3,[[51,[3]]]],[[],57],[[[0,[53,54,55]]],[[51,[[0,[53,54,55]]]]]],[[[49,[21]]],[[10,[42]]]],[[[49,[21]],7],[[49,[21]]]],[[]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[],20],[[],20],[[]],[[]],[[]],[[]],[[]],[[[49,[21]],[17,[[34,[33]]]]],[[49,[21]]]],[[[51,[3]],[17,[56]]],[[51,[3]]]],[[57,[17,[56]]],57],[[57,8],57],[[[49,[21]],[17,[6]]],[[49,[21]]]],[[[49,[21]],[17,[[34,[6]]]]],[[49,[21]]]],[[[49,[21]],[17,[2]]],[[49,[21]]]],[[[52,[3]],9],10],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[[59,[3]],9],10],[[[60,[21]]],[[10,[9]]]],[[]],[[]],[[]],[[[60,[21]],[17,[6]]],[[60,[21]]]],[[],6],[[],6],[[],6],[[]],[[]],[[]],0,[3,[[59,[3]]]],[21,[[60,[21]]]],[[[60,[21]],7],[[60,[21]]]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[]],[[]],[[]],[[[60,[21]],6],[[60,[21]]]],[[[60,[21]],7],[[60,[21]]]],[[[59,[3]],61],[[59,[3]]]],[[[60,[21]],61],[[60,[21]]]],[[[60,[21]],[17,[[34,[33]]]]],[[60,[21]]]],[[[60,[21]],25],[[60,[21]]]],[[[60,[21]],42],[[60,[21]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[],19],[[[63,[62]]],19],[64,19],[[[67,[65,66]]],19],[[[68,[65]]],19],[[[69,[65,66]]],19],[[[71,[65,70]]],19],[[[72,[65,70]]],19],[[[73,[65]]],19],[[[74,[65,66]]],19],[[[75,[65]]],19],[[[76,[65,66]]],19],[77,[[19,[46]]]],[[[79,[[14,[78]],62]]],[[19,[46]]]],[[],19],[[[63,[80]]],19],[64,19],[[[69,[81,66]]],19],[[[71,[81,70]]],19],[[[72,[81,70]]],19],[[15,66],[[19,[7]]]],[[15,66],[[19,[7]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[15,15],[[[79,[[0,[82,[14,[78]]]],[0,[82,62]]]]],[[79,[[0,[82,[14,[78]]]],[0,[82,62]]]]]],[[]],[62,[[63,[62]]]],[15,[[19,[6]]]],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[],64],[[15,66],[[67,[15,66]]]],[[15,66],[[19,[17]]]],[[[79,[[0,[83,[14,[78]]]],[0,[83,62]]]],11],[[19,[47]]]],[[15,66],19],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[15,[[68,[15]]]],[[],17],[[[63,[62]]],17],[64,17],[[[67,[65,66]]],17],[[[68,[65]]],17],[[[69,[65,66]]],17],[[[71,[65,70]]],[[17,[15]]]],[[[72,[65,70]]],17],[[[73,[65]]],17],[[[74,[65,66]]],17],[[[75,[65]]],17],[[[76,[65,66]]],17],[77,17],[[[79,[[14,[78]],62]]],17],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[15,66],[[69,[15,66]]]],[[15,70],[[72,[15,70]]]],[[15,70],[[71,[15,70]]]],[[50,[84,[[14,[78]]]],[34,[35,85]]],77],[[62,[34,[35,85]]],[[79,[[14,[78]],62]]]],[[],[[19,[17]]]],[[[68,[65]]],[[19,[17]]]],[[[72,[65,70]]],[[19,[17]]]],[[],[[19,[17]]]],[[[72,[81,70]]],[[19,[17]]]],[6,[[19,[17]]]],[[15,66],[[19,[[17,[6]]]]]],[[]],[[[63,[62]]]],[64],[[[67,[65,66]]]],[[[68,[65]]]],[[[69,[65,66]]]],[[[71,[65,70]]]],[[[72,[65,70]]]],[[[73,[65]]]],[[[74,[65,66]]]],[[[75,[65]]]],[[[76,[65,66]]]],[[15,6],[[73,[15]]]],[[15,66],[[74,[15,66]]]],[[15,6],[[75,[15]]]],[[15,66],[[76,[15,66]]]],[[]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[3,65],[[19,[46]]]],0,0,0,0,0,[[]],[[]],[6],[41,[[37,[35]]]],[6],[6],[[]],[21,41],[[],6],[[]],[[],[[17,[[37,[35]]]]]],[[],[[17,[32]]]],[[],19],[[],19],[[],20],[[]],0,0,0,[1],[86,[[39,[78]]]],0,[86,87],[86,87],[[]],[[]],[[]],[[]],[86,[[5,[78,85]]]],[86,86],[[]],[86,88],[6],[6],[6],[6],[6],[6],[[86,86],7],[[86,78],7],[86,[[37,[43]]]],[[[89,[21]]],[[10,[9]]]],[[86,11],[[19,[47]]]],[[]],[[]],[90,86],[91,86],[[[31,[8]]],[[10,[[89,[32]]]]]],[88,[[37,[43]]]],[[[89,[21]],[17,[6]]],[[89,[21]]]],[[],6],[[],6],[[]],[[]],[86],[86],[86,[[95,[[34,[[5,[92,85]],85]],93,94]]]],[86,6],[[[89,[21]],7],[[89,[21]]]],[21,[[89,[21]]]],[[88,[34,[[5,[78,85]],85]],[17,[96]]],86],[88,86],[[88,6],86],[[86,[17,[96]]]],[[86,6,6]],[[86,6,6]],[[6,6]],[[6,6]],[[86,6,6]],[[86,6,6]],[[86,6,6],86],[[86,6,6],86],[86,[[5,[78,85]]]],[[]],[[],19],[[],19],[[],19],[[],19],[[88,[34,[[5,[78,85]],85]],[17,[96]]],[[19,[86,46]]]],[[],20],[[],20],[86,[[17,[96]]]],[86,[[17,[96]]]],[86,[[37,[[5,[78,85]]]]]],[86,93],[[]],[[]],[[[89,[21]],[17,[6]]],[[89,[21]]]],[[[89,[21]],[17,[6]]],[[89,[21]]]],[[[89,[21]],[17,[6]]],[[89,[21]]]],[[[89,[21]],[17,[[31,[8]]]]],[[89,[21]]]],[[[89,[21]],7],[[89,[21]]]],[[[89,[21]],25],[[89,[21]]]],[[[89,[21]],42],[[89,[21]]]],[[86,[17,[96]]],[[5,[78,85]]]],[[86,[17,[96]]],86],0,0,0,0,0,0,[1],[[],19],[[[97,[[14,[78]],62]]],[[19,[46]]]],[[15,66],[[19,[7]]]],[[15,66],[[19,[7]]]],[[]],[[]],[[]],[[]],[15,15],[[[97,[[0,[82,[14,[78]]]],[0,[82,62]]]]],[[97,[[0,[82,[14,[78]]]],[0,[82,62]]]]]],[[]],[15,[[19,[6]]]],[6],[6],[6],[6],[6],[6],[[15,66],[[67,[15,66]]]],[[15,66],[[19,[17]]]],[[[97,[[0,[83,[14,[78]]]],[0,[83,62]]]],11],[[19,[47]]]],[[15,66],19],[[]],[[]],[15,[[68,[15]]]],[[],17],[[[97,[[14,[78]],62]]],17],[[],6],[[],6],[[]],[[]],[[[98,[3,65]]]],[[]],[[15,66],[[69,[15,66]]]],[[15,70],[[72,[15,70]]]],[[15,70],[[71,[15,70]]]],[[3,65],[[98,[3,65]]]],[[62,[34,[35,85]]],[[97,[[14,[78]],62]]]],[[],[[19,[17]]]],[[[98,[3,65]]],17],[6,[[19,[17]]]],[[15,66],[[19,[[17,[6]]]]]],[[]],[[15,6],[[73,[15]]]],[[15,66],[[74,[15,66]]]],[[15,6],[[75,[15]]]],[[15,66],[[76,[15,66]]]],[[]],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[[[99,[21]],[17,[[39,[38]]]],[17,[[37,[6]]]]],[[10,[9]]]],[[[99,[21]],6],[[10,[100]]]],[[[101,[3]],42],[[10,[[102,[3]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[103,103],[104,104],[105,105],[106,106],[107,107],[[]],[[]],[[]],[[]],[[]],[[],103],[[],107],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[6],[[103,103],7],[[104,104],7],[[105,105],7],[[106,106],7],[[107,107],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[[99,[21]]],[[10,[9]]]],[[[101,[3]],9],[[10,[108]]]],[[[102,[3]]],[[10,[108]]]],[[103,11],12],[[104,11],12],[[105,11],12],[[106,11],12],[[107,11],12],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[104,58]],[[105,58]],[[106,58]],[[107,58]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[21,[[99,[21]]]],[[[5,[0]],109,6,[17,[[34,[6]]]],[17,[2]],6,7],[[10,[100]]]],[[3,3],[[101,[3,3]]]],[[100,6],[[10,[[17,[[34,[9]]]]]]]],[[[99,[21]]],[[10,[6]]]],0,[[[99,[21]],103],[[99,[21]]]],[[[99,[21]]],[[10,[42]]]],[[[99,[21]],7],[[99,[21]]]],[[[101,[3]],7],[[101,[3]]]],[[[99,[21]],7],[[99,[21]]]],[[]],[[]],[[]],[[]],[[]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[35,[[10,[104]]]],[110,[[10,[105]]]],[111,[[10,[106]]]],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[[99,[21]],7],[[99,[21]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[99,[21]],[17,[[34,[33]]]]],[[99,[21]]]],[[[101,[3]],107],[[101,[3]]]],[[[101,[3]],[17,[6]]],[[101,[3]]]],[[[99,[21]],[17,[6]]],[[99,[21]]]],[[[99,[21]],[17,[[34,[6]]]]],[[99,[21]]]],[[[99,[21]],[17,[2]]],[[99,[21]]]],[[[101,[3]],[17,[6]]],[[101,[3]]]],[[[101,[3]],7],[[101,[3]]]],[[[102,[3]],9],10],0,0,[[]],[[]],[[]],[[]],[6],[6],[6],[6],[6],[6],[112,36],[[112,11],12],[[]],[[]],[[113,114],[[10,[112]]]],[[],6],[[],6],[[]],[[]],[112,[[17,[6]]]],[113,42],[112,[[17,[115]]]],[112,[[17,[115]]]],[112,[[17,[115]]]],[[],19],[[],19],[[],19],[[],19],[[],20],[[],20],[[]],[[]],0,0,[[],[[17,[116]]]],[9,[[10,[115]]]],[113,[[10,[7]]]],0,0,[13,8]],"c":[],"p":[[3,"Private"],[3,"RowCount"],[8,"Write"],[8,"SerWriter"],[3,"Box"],[15,"usize"],[15,"bool"],[3,"PathBuf"],[3,"DataFrame"],[6,"PolarsResult"],[3,"Formatter"],[6,"Result"],[3,"Path"],[8,"AsRef"],[8,"Sized"],[6,"ArrowChunk"],[4,"Option"],[6,"ArrowResult"],[4,"Result"],[3,"TypeId"],[8,"MmapBytesReader"],[3,"CsvReader"],[3,"BatchedCsvReaderMmap"],[3,"BatchedCsvReaderRead"],[6,"SchemaRef"],[3,"OwnedBatchedCsvReaderMmap"],[3,"OwnedBatchedCsvReader"],[4,"CsvEncoding"],[4,"NullValues"],[3,"CsvWriter"],[8,"Into"],[3,"File"],[3,"String"],[3,"Vec"],[15,"u8"],[4,"DataType"],[15,"slice"],[8,"PhysicalIoExpr"],[3,"Arc"],[8,"Read"],[4,"ReaderBytes"],[3,"Schema"],[3,"Field"],[3,"RowGroupMetaData"],[3,"Statistics"],[4,"Error"],[3,"Error"],[3,"MutableStatistics"],[3,"IpcReader"],[3,"Schema"],[3,"IpcWriter"],[3,"BatchedWriter"],[8,"AsyncWrite"],[8,"Unpin"],[8,"Send"],[4,"IpcCompression"],[3,"IpcWriterOption"],[8,"Hasher"],[3,"JsonWriter"],[3,"JsonReader"],[4,"JsonFormat"],[8,"Iterator"],[3,"Convert"],[3,"Empty"],[8,"FallibleStreamingIterator"],[8,"FnMut"],[3,"Filter"],[3,"Fuse"],[3,"Map"],[8,"Fn"],[3,"MapRef"],[3,"MapErr"],[3,"Skip"],[3,"SkipWhile"],[3,"Take"],[3,"TakeWhile"],[3,"RecordSerializer"],[8,"Array"],[3,"Serializer"],[8,"DoubleEndedIterator"],[8,"DoubleEndedFallibleStreamingIterator"],[8,"Clone"],[8,"Debug"],[3,"Chunk"],[3,"Global"],[3,"StructArray"],[8,"Any"],[4,"DataType"],[3,"JsonLineReader"],[3,"MutableStructArray"],[3,"GrowableStruct"],[8,"Scalar"],[3,"StructValueIter"],[3,"BitmapIter"],[4,"ZipValidity"],[3,"Bitmap"],[3,"Serializer"],[3,"FileWriter"],[3,"ParquetReader"],[3,"BatchedParquetReader"],[3,"ParquetWriter"],[3,"BatchedWriter"],[4,"ParallelStrategy"],[3,"GzipLevel"],[3,"BrotliLevel"],[3,"ZstdLevel"],[4,"ParquetCompression"],[15,"u64"],[3,"FileMetaData"],[15,"u32"],[15,"i32"],[3,"ColumnStats"],[3,"BatchStats"],[15,"str"],[3,"Series"],[8,"StatsEvaluator"],[8,"WriterFactory"],[8,"SerReader"],[8,"ArrowReader"]]},\ "polars_json":{"doc":"","t":"AAACFFFFAFFF","n":["json","ndjson","deserialize","deserialize","infer","infer_records_schema","deserialize","deserialize_records","deserialize","infer","infer_iter","deserialize_iter"],"q":[[0,"polars_json"],[2,"polars_json::json"],[6,"polars_json::json::deserialize"],[8,"polars_json::ndjson"],[11,"polars_json::ndjson::deserialize"]],"d":["","","","","Infers DataType from Value.","Infers Schema from JSON Value in (pandas-compatible) …","","Deserializes a json simd_json::value::Value serialized in …","","Infers the DataType from an NDJSON file, optionally only …","Infers the DataType from an iterator of JSON strings. A …","Deserializes an iterator of rows into an Array of DataType."],"i":[0,0,0,0,0,0,0,0,0,0,0,0],"f":[0,0,0,0,[1,[[3,[2]]]],[1,[[3,[4]]]],[[1,2],[[8,[[6,[5]],7]]]],[[1,4],[[3,[[10,[9]]]]]],0,[[11,[13,[12]]],[[3,[2]]]],[14,[[3,[2]]]],[[14,2,12,12],[[3,[9]]]]],"c":[],"p":[[4,"Value"],[4,"DataType"],[6,"PolarsResult"],[3,"Schema"],[8,"Array"],[3,"Box"],[4,"Error"],[4,"Result"],[6,"ArrayRef"],[3,"Chunk"],[8,"BufRead"],[15,"usize"],[4,"Option"],[8,"Iterator"]]},\ -"polars_lazy":{"doc":"Lazy API of Polars","t":"AOAAAANNENNNNNNNNNINENNDDNNNNNNNNNNNNNDNNNNDNNNNENNNENNNNNNEIGNNNNNNNNNNNNNDNNNDNNNNNNNNNDNNNNNNNNNNENNNNININDNNIINNNNNNNDNNDNNNDNNNINNNDNNEDNLLLLLLLLLLLLLLLLLLLLLLLLLLFLFMLLFLLFLLLFLLLLLLLLLLLLLMLFLALFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMKKKFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFFLLLLFLFLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLFMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALKKLKLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLFLFLLLLLFLLLLFLLLLLLLFLLLLLLFLLFMFLLFFLLFLLMMMFLLFMMMMLLLLLMLLLLLLLFLLLLLLLLFLLLLLFLLFFLFLLLLLMMLMMLLLLLLLLLLLLLLLLMLALLFLLFLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMFLLMLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMDLLLLLLLLLLLLLLLDDIDLFFFFFLLFLLFFFFFFFFMMLLLLFFFLMMLLKFFFFFFFMMMFFMMMMFMFFFMFFMMFFLMLLLLMMDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGGIDDIDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLKLLLMMLLMLLLLLMLKLLMMMMLLLLLLLMKLLMLMLKLLMMLLLKLLMMMLLLLLMLLLMLLMLMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLKLLLLLLLLLLLLLLLAAAIKDIIDLLLLLLLLLLLLLLKLKKMKLLLLMLLLLLKKLLLLLLLLFNINDNNNNNNNNNNNNNDNIENENRDNDNNNNNNNNNNNLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLKLLMMMMMMKLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM","n":["dsl","fallible","frame","physical_plan","prelude","utils","Abs","Agg","AggExpr","AggGroups","Alias","All","And","AnonymousFunction","Any","Atan2","BinaryExpr","BinaryExpr","BinaryUdfOutputField","Boolean","BooleanFunction","Cast","Ceil","ChainedThen","ChainedWhen","Clip","Coalesce","Column","Columns","ConcatExpr","Correlation","Count","Count","Cumcount","Cummax","Cummin","Cumprod","Cumsum","DatetimeArgs","Divide","DropNans","Dtype","DtypeColumn","DurationArgs","Entropy","Eq","EqValidity","Exclude","Excluded","Exp","Explode","Explode","Expr","FillNull","Filter","First","Floor","FloorDivide","Function","FunctionExpr","FunctionOutputField","GetOutput","GroupsToRows","Gt","GtEq","Implode","IsFinite","IsIn","IsInfinite","IsNan","IsNot","IsNotNan","IsNotNull","IsNull","Join","JoinOptions","KeepName","Last","ListExpr","ListNameSpace","Literal","Log","Log1p","LowerBound","Lt","LtEq","Max","Mean","Median","MetaNameSpace","Min","Minus","Modulus","Multiply","NUnique","Name","NotEq","NotEqValidity","Nth","NullCount","Operator","Or","Plus","Pow","Quantile","Range","RenameAlias","RenameAliasFn","Reverse","RollingCovOptions","Round","Selector","SeriesBinaryUdf","SeriesUdf","SetSortedFlag","Shift","ShiftAndFill","ShrinkType","Slice","Sort","SortBy","SpecialEq","Std","StringExpr","StrptimeOptions","Sum","Take","Ternary","Then","ToPhysical","Trigonometry","TrueDivide","UdfSchema","Unique","UpperBound","Var","When","Wildcard","Window","WindowMapping","WindowOptions","Xor","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_into_selector","_selector_add","_selector_and","_selector_sub","abs","add","agg_groups","alias","all","all","all_horizontal","allow_parallel","and","any","any_horizontal","append","apply","apply_binary","apply_children","apply_many","apply_many_private","apply_multiple","arccos","arccosh","arcsin","arcsinh","arctan","arctan2","arctanh","arg_max","arg_max","arg_min","arg_min","arg_sort","arg_unique","args","as_ref","avg","backward_fill","binary","binary","binary_expr","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cache","call","call_udf","call_udf","cast","cast","cbrt","ceil","clip","clip_max","clip_min","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","coalesce","col","cols","concat_expr","concat_list","contains","cos","cosh","cot","count","count","cov","cumcount","cummax","cummin","cumprod","cumsum","day","days","ddof","default","default","default","default","default","default","default","default","default","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","dot","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_nans","drop_nulls","dtype_col","dtype_cols","entropy","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exact","exclude","exclude_dtype","exp","explode","fill_nan","fill_null","filter","first","first","first","flatten","float_type","floor","floor_div","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold_exprs","force_parallel","format","forward_fill","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_type","function_with_options","functions","get","get_field","get_field","get_output","get_schema","gt","gt_eq","has_multiple_outputs","hash","hash","hash","hash","hash","head","head","hour","hours","implode","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_range","into_tree_formatter","is_finite","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_not_null","is_null","is_null","is_regex_projection","is_simple_projection","join","keep_name","last","last","last","lengths","list","lit","log","log1p","lower_bound","lt","lt_eq","map","map_alias","map_binary","map_children","map_dtype","map_dtypes","map_field","map_fields","map_list","map_list_multiple","map_many","map_many_private","map_multiple","mapping","max","max","max","max_horizontal","mean","mean","mean","median","median","meta","microsecond","microseconds","milliseconds","min","min","min","min_horizontal","min_periods","minute","minutes","month","mul","mutate","n_unique","nan_max","nan_min","nanoseconds","neq","neq_missing","new","new","new","nodes","nodes_mut","not","not","null_count","or","otherwise","otherwise","output_name","over","over_with_options","pearson_corr","pi","pop","pow","prefix","product","quantile","quantile","radians","range","reduce_exprs","rem","repeat","reshape","reverse","reverse","root_names","round","rows_left","rows_right","same_type","second","seconds","set_sorted_flag","shift","shift","shift_and_fill","shrink_dtype","sin","sinh","slice","slice","sort","sort","sort_by","sort_with","sqrt","std","str","strict","strict_cast","string","sub","suffix","sum","sum","sum","sum_horizontal","super_type","tail","tail","take","tan","tanh","ternary_expr","then","then","to_dot","to_field","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_serialize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","undo_aliases","unique","unique","unique_stable","unique_stable","upper_bound","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weeks","when","when","when","window_size","with_day","with_days","with_fractional_seconds","with_hms","with_hms","with_hour","with_hours","with_microsecond","with_microseconds","with_milliseconds","with_minute","with_minutes","with_month","with_nanoseconds","with_second","with_seconds","with_weeks","with_year","xor","year","expr","input","input","interpol","propagate_nans","propagate_nans","quantile","drop_nulls","drop_nulls","by","by","data_type","descending","expr","expr","expr","expr","expr","falsy","function","function","function","function","idx","input","input","input","input","left","length","offset","op","options","options","options","options","order_by","output_type","partition_by","predicate","right","strict","truthy","base","base","ddof","decimals","max","method","min","normalize","periods","reverse","reverse","reverse","reverse","reverse","super_type","BinaryNameSpace","borrow","borrow_mut","contains_literal","deref","deref_mut","drop","ends_with","from","init","into","starts_with","try_from","try_into","type_id","vzip","DatetimeArgs","DurationArgs","Range","UnionArgs","__clone_box","all","all_horizontal","any_horizontal","apply_binary","avg","borrow","borrow_mut","cast","clone","clone_into","coalesce","col","collect_all","cols","concat","concat_expr","concat_list","cov","day","days","default","deref","deref_mut","drop","dtype_col","dtype_cols","fold_exprs","from","hour","hours","init","into","into_range","is_not_null","is_null","map_binary","max","max_horizontal","mean","median","microsecond","microseconds","milliseconds","min","min_horizontal","minute","minutes","month","nanoseconds","not","parallel","pearson_corr","quantile","range","rechunk","reduce_exprs","repeat","second","seconds","sum","sum_horizontal","to_owned","to_supertypes","try_from","try_into","type_id","vzip","weeks","year","StringNameSpace","borrow","borrow_mut","contains","contains_literal","count_match","deref","deref_mut","drop","ends_with","explode","extract","extract_all","from","init","into","lengths","lstrip","n_chars","replace","replace_all","replace_n","rstrip","split","split_inclusive","starts_with","str_slice","strip","to_lowercase","to_uppercase","try_from","try_into","type_id","vzip","AllowedOptimizations","GlobIterator","IntoLazy","JoinBuilder","LazyCsvReader","LazyFileListReader","LazyFrame","LazyGroupBy","LazyJsonLineReader","OptState","ScanArgsAnonymous","ScanArgsIpc","ScanArgsParquet","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","agg","allow_parallel","allows_projection_pushdown","anonymous_scan","apply","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_k","cache","cache","cache","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloud_options","cloud_options","cloud_options","collect","concat_impl","concat_impl","concat_impl","cross_join","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","describe_optimized_plan","describe_plan","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_columns","drop_nulls","explain","explode","fetch","file_caching","fill_nan","fill_null","filter","finish","finish","finish","finish_no_glob","finish_no_glob","finish_no_glob","first","fmt","force_parallel","from","from","from","from","from","from","from","from","from","from","get_current_optimizations","glob","glob","groupby","groupby_stable","has_header","head","how","infer_schema_length","init","init","init","init","init","init","init","init","init","inner_join","into","into","into","into","into","into","into","into","into","join","join_builder","last","lazy","left_join","left_on","limit","logical_plan","logical_plan","low_memory","low_memory","low_memory","map","max","mean","median","melt","memmap","min","n_rows","n_rows","n_rows","n_rows","n_rows","n_rows","name","new","new","new","null_count","on","optimize","outer_join","parallel","path","path","path","predicate_pushdown","profile","projection_pushdown","quantile","rechunk","rechunk","rechunk","rechunk","rechunk","rename","reverse","right_on","row_count","row_count","row_count","row_count","row_count","row_count","scan","scan_ipc","scan_parquet","schema","schema","schema","select","shift","shift_and_fill","simplify_expr","sink_ipc","sink_parquet","skip_rows","slice","slice_pushdown","sort","sort_by_exprs","std","streaming","suffix","sum","tail","tail","to_alp","to_alp_optimized","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","top_k","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_coercion","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unique","unique_stable","use_statistics","validate","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with","with_batch_size","with_cache","with_column","with_columns","with_comment_char","with_context","with_delimiter","with_dtype_overwrite","with_encoding","with_end_of_line_char","with_ignore_errors","with_infer_schema_length","with_infer_schema_length","with_missing_is_null","with_n_rows","with_n_rows","with_null_values","with_optimizations","with_path","with_path","with_path","with_predicate_pushdown","with_projection_pushdown","with_quote_char","with_rechunk","with_rechunk","with_rechunk","with_row_count","with_row_count","with_row_count","with_schema","with_schema","with_schema_modify","with_simplify_expr","with_skip_rows","with_skip_rows_after_header","with_slice_pushdown","with_streaming","with_type_coercion","without_optimizations","executors","expressions","planner","Executor","execute","AggregationContext","PartitionedAggregation","PhysicalExpr","PhysicalIoHelper","as_expression","as_partitioned_aggregator","as_stats_evaluator","as_stats_evaluator","borrow","borrow","borrow_mut","borrow_mut","deref","deref","deref_mut","deref_mut","drop","drop","evaluate","evaluate","evaluate_on_groups","evaluate_partitioned","expr","finalize","fmt","fmt","from","from","has_window_function","init","init","into","into","is_literal","is_valid_aggregation","to_field","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","create_physical_plan","Aggregate","AnonymousScan","AnonymousScan","AnonymousScanOptions","Binary","Boolean","Cache","DataFrameScan","Distinct","Error","ExtContext","FileSink","Float32","Float64","HStack","Int32","Int64","IpcWriterOptions","Join","Literal","LiteralValue","LocalProjection","LogicalPlan","MapFunction","NULL","Null","Null","ParquetWriteOptions","Projection","Range","Scan","Selection","Series","Slice","Sort","UInt32","UInt64","Union","Utf8","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","allows_predicate_pushdown","allows_projection_pushdown","allows_slice_pushdown","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","compression","compression","data_pagesize_limit","default","default","default","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","describe","dot","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt_str","from","from","from","from","from","from","get_datatype","init","init","init","init","init","init","into","into","into","into","into","into","lit","lit","lit","maintain_order","maintain_order","n_rows","output_schema","predicate","row_group_size","scan","schema","schema","schema","skip_rows","statistics","to_alp","to_anyvalue","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","with_columns","data_type","high","low","aggs","apply","args","by_column","contexts","count","df","err","expr","expr","exprs","file_info","file_info","file_options","function","function","id","input","input","input","input","input","input","input","input","input","input","input","input","input","input_left","input_right","inputs","keys","left_on","len","maintain_order","offset","options","options","options","options","options","output_schema","path","payload","predicate","predicate","predicate","projection","right_on","scan_type","schema","schema","schema","schema","schema","schema","schema","selection"],"q":[[0,"polars_lazy"],[6,"polars_lazy::dsl"],[854,"polars_lazy::dsl::AggExpr"],[861,"polars_lazy::dsl::BooleanFunction"],[863,"polars_lazy::dsl::Expr"],[897,"polars_lazy::dsl::FunctionExpr"],[912,"polars_lazy::dsl::binary"],[928,"polars_lazy::dsl::functions"],[1002,"polars_lazy::dsl::string"],[1036,"polars_lazy::frame"],[1371,"polars_lazy::physical_plan"],[1374,"polars_lazy::physical_plan::executors"],[1376,"polars_lazy::physical_plan::expressions"],[1420,"polars_lazy::physical_plan::planner"],[1421,"polars_lazy::prelude"],[1608,"polars_lazy::prelude::LiteralValue"],[1611,"polars_lazy::prelude::LogicalPlan"]],"d":["Domain specific language for the Lazy API.","Helper to delay a failing method until the query plan is …","Lazy variant of a DataFrame.","","","","","","","","","","","","","","","","","","","","","Intermediate state of a chained …","Intermediate state of a chained …","","","","","","","","Special case that does not need columns","","","","","","Arguments used by datetime in order to produce an Expr of …","","","","","Arguments used by duration in order to produce an Expr of …","","","","Can be used in a select statement to exclude a column from …","","","","Explode the aggregated list and just do a hstack instead …","Expressions that can be used in various contexts. Queries …","","","","","","","","","","Map the group values to the position","","","","","","","","","","","","Join the groups as ‘List<group_dtype>’ to the row …","","Set root name as Alias","","","Specialized expressions for Series of DataType::List.","","","","","","","","","","Specialized expressions for Categorical dtypes.","","","","","","","","","Take the nth column in the DataFrame","","","","","","","","","","","","","Expressions in this node should only be expanding e.g. …","A wrapper trait for any binary closure …","A wrapper trait for any closure …","","","","","","","","Wrapper type that has special equality properties …","","","","","","A ternary operation if true then “foo” else “bar”","Intermediate state of when(..).then(..).otherwise(..) …","","","","","","","","Intermediate state of when(..).then(..).otherwise(..) …","","See postgres window functions","","","","","","","","","","","","","","","","","","","","","","","","","","Convert all values to their absolute/positive value.","","Get the group indexes of the group by operation.","Rename Column.","Selects all columns. Shorthand for col("*").","Check if all boolean values are true","Create a new column with the the bitwise-and of the …","","and operation","Check if any boolean value is true","Create a new column with the the bitwise-or of the …","Append expressions. This is done by adding the chunks of …","Apply a function/closure over the groups. This should only …","Like map_binary, but used in a groupby-aggregation context.","","Apply a function/closure over the groups with many …","","Apply a function/closure over the groups of multiple …","Compute the inverse cosine of the given expression","Compute the inverse hyperbolic cosine of the given …","Compute the inverse sine of the given expression","Compute the inverse hyperbolic sine of the given expression","Compute the inverse tangent of the given expression","Compute the inverse tangent of the given expression, with …","Compute the inverse hyperbolic tangent of the given …","Return the index of the maximum value of every sublist","Get the index value that has the maximum value","Return the index of the minimal value of every sublist","Get the index value that has the minimum value","Get the index values that would sort this expression.","Get the first index of unique values of this expression.","","","Find the mean of all the values in the column named name. …","Fill missing value with next non-null.","","","Compute op(l, r) (or equivalently l op r). l and r must …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","use a cache of unique, converted dates to apply the …","","","","Casts the column given by Expr to a different type.","Cast expression to another data type.","Compute the cube root of the given expression","Ceil underlying floating point array to the highest …","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Folds the expressions from left to right keeping the first …","Create a Column Expression based on a column name.","Select multiple columns by name.","","Concat lists entries.","Check if the list array contain an element","Compute the cosine of the given expression","Compute the hyperbolic cosine of the given expression","Compute the cotangent of the given expression","Count expression","Count the values of the Series or Get counts of the group …","Compute the covariance between two columns.","Cumulatively count values from 0 to len.","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","","","","","","","","","","","Convert from radians to degrees","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Drop NaN values","Drop null values","Select multiple columns by dtype.","Select multiple columns by dtype.","Compute the entropy as -sum(pk * log(pk). where pk are …","","Compare Expr with other Expr on equality","","","","","","","","","","","","","Compare Expr with other Expr on equality where None == None","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If polars may parse matches that not contain the whole …","Exclude a column from a wildcard/regex selection.","","Calculate the exponential of all elements in the input …","Explode the utf8/ list column","Replace the floating point NaN values by a value.","Replace the null values by a value.","Filter a single column.","First column in DataFrame","Get first item of every sublist.","Get the first value in the group.","Alias for explode","","Floor underlying floating point array to the lowest …","Floor divide self by rhs.","","","","","","","","","","","","","","","","","","","","","","Accumulate over multiple columns horizontally / row wise.","","Formatting string","Fill missing value with previous non-null.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","A function that cannot be expressed with map or apply and …","Functions","Get items in every sublist by index.","","","","","Check if Expr > Expr","Check if Expr >= Expr","Whether this expression expands to multiple expressions.","","","","","","Get the head of every sublist","Get the first n elements of the Expr result","","","Aggregate the group to a Series","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Get a hold to an implementor of the Display trait that …","Get mask of finite values if dtype is Float","Check if the values of the left expression are in the …","Get mask of infinite values if dtype is Float","Get mask of NaN values if dtype is Float","Get inverse mask of NaN values if dtype is Float","A column which is false wherever expr is null, true …","Run is_not_null operation on Expr.","A column which is true wherever expr is null, false …","Run is_null operation on Expr.","Whether this expression expands to multiple expressions …","A projection that only takes a column or a column + alias.","Join all string items in a sublist and place a separator …","Keep the original root name","Last column in DataFrame","Get last item of every sublist.","Get the last value in the group.","Get lengths of the arrays in the List type.","","Create a Literal Expression from L. A literal expression …","Compute the logarithm to a given base","Compute the natural logarithm of all elements plus one in …","Get minimal value that could be hold by this dtype.","Check if Expr < Expr","Check if Expr <= Expr","Apply a function/closure once the logical plan get …","Define an alias by mapping a function over the original …","Apply a closure on the two columns that are evaluated from …","","","","","","Apply a function/closure once the logical plan get …","Apply a function/closure over multiple columns once the …","Apply a function/closure once the logical plan get …","","Apply a function/closure over multiple columns once the …","Explode the aggregated list and just do a hstack instead …","Find the maximum of all the values in the column named name…","Compute the maximum of the items in every sublist.","Reduce groups to maximum value.","Create a new column with the the maximum value per row.","Find the mean of all the values in the column named name. …","Compute the mean of every sublist and return a Series of …","Reduce groups to the mean value.","Find the median of all the values in the column named name…","Reduce groups to the median value.","Get the meta::MetaNameSpace","","","","Find the minimum of all the values in the column named name…","Compute the minimum of the items in every sublist.","Reduce groups to minimal value.","Create a new column with the the minimum value per row.","","","","","","Expr::mutate().apply(fn())","Get the number of unique values in the groups.","Reduce groups to maximum value.","Reduce groups to minimal value.","","Compare Expr with other Expr on non-equality","Compare Expr with other Expr on non-equality where …","","Construct a new DatetimeArgs set to year, month, day","Create a new DurationArgs with all fields set to lit(0). …","","","Negates a boolean column.","Negate Expr","Get the null count of the column/group","or operation","","","Get the output name of this expression.","Apply window function over a subgroup. This is similar to …","","Compute the pearson correlation between two columns.","Constant Pi","Pop latest expression and return the input(s) of the …","Raise expression to the power exponent","Add a prefix to the root column name.","Get the product aggregation of an expression","Find a specific quantile of all the values in the column …","Compute the quantile per group.","Convert from degrees to radians","Create a range literal.","Analogous to Iterator::reduce.","","Create a column of length n containing n copies of the …","","Reverse every sublist","Reverse column","Get the root column names.","Round underlying floating point array to given decimal …","Proxy of the number of rows in both sides of the joins …","","","","","Set this Series as sorted so that downstream code can use …","Shift every sublist.","Shift the values in the array by some period. See the …","Shift the values in the array by some period and fill the …","Shrink numeric columns to the minimal required datatype …","Compute the sine of the given expression","Compute the hyperbolic sine of the given expression","Slice every sublist.","Slice the Series. offset may be negative.","Sort every sublist.","Sort in increasing order. See the eager implementation.","Sort this column by the ordering of another column. Can …","Sort with given options.","Compute the square root of the given expression","Standard deviation of the values of the Series","","If set then polars will return an error if any date …","Cast expression to another data type. Throws an error if …","","","Add a suffix to the root column name.","Sum all the values in the column named name. Shorthand for …","Compute the sum the items in every sublist.","Reduce groups to the sum of all the values.","Create a new column with the the sum of the values in each …","","Get the tail of every sublist","Get the last n elements of the Expr result","Take the values by idx.","Compute the tangent of the given expression","Compute the hyperbolic tangent of the given expression","","","","Get a dot language representation of the Expression.","Get Field result of the expression. The schema is the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Undo any renaming operation like alias, keep_name.","Keep only the unique values in every sublist.","Get unique values of this expression.","Keep only the unique values in every sublist.","Get unique values of this expression, while maintaining …","Get maximal value that could be hold by this dtype.","Variance of the values of the Series","","","","","","","","","","","","","","","","","","","","","","Start a when(..).then(..).otherwise(..) expression","","","","Set the day","Set the days","Set milliseconds, microseconds, and nanoseconds","Set hour, minute, and second","Set hours, minutes, and seconds","Set the hour","Set the hours","Set the microsecond","Set the microseconds","Set the milliseconds","Set the minute","Set the minutes","Set the month","Set the nanoseconds","Set the second","Set the seconds","Set the weeks","Set the year","","","","","","","","","","","","","","","","","","","","","","function to apply","Also has the input. i.e. avg(“foo”)","","function to apply","","function arguments","","","function arguments","","","length is not yet known so we accept negative offsets","","","","","","","output dtype of the function","","","","","","","","","","","","","","","","","","","","","Specialized expressions for Series of DataType::Utf8.","","","Check if a binary value contains a literal binary.","","","","Check if a binary value ends with the given sequence.","Returns the argument unchanged.","","Calls U::from(self).","Check if a binary value starts with the given sequence.","","","","","Arguments used by datetime in order to produce an Expr of …","Arguments used by duration in order to produce an Expr of …","","","","Selects all columns. Shorthand for col("*").","Create a new column with the the bitwise-and of the …","Create a new column with the the bitwise-or of the …","Like map_binary, but used in a groupby-aggregation context.","Find the mean of all the values in the column named name. …","","","Casts the column given by Expr to a different type.","","","Folds the expressions from left to right keeping the first …","Create a Column Expression based on a column name.","Collect all LazyFrame computations.","Select multiple columns by name.","Concat multiple","","Concat lists entries.","Compute the covariance between two columns.","","","","","","","Select multiple columns by dtype.","Select multiple columns by dtype.","Accumulate over multiple columns horizontally / row wise.","Returns the argument unchanged.","","","","Calls U::from(self).","","A column which is false wherever expr is null, true …","A column which is true wherever expr is null, false …","Apply a closure on the two columns that are evaluated from …","Find the maximum of all the values in the column named name…","Create a new column with the the maximum value per row.","Find the mean of all the values in the column named name. …","Find the median of all the values in the column named name…","","","","Find the minimum of all the values in the column named name…","Create a new column with the the minimum value per row.","","","","","Negates a boolean column.","","Compute the pearson correlation between two columns.","Find a specific quantile of all the values in the column …","Create a range literal.","","Analogous to Iterator::reduce.","Create a column of length n containing n copies of the …","","","Sum all the values in the column named name. Shorthand for …","Create a new column with the the sum of the values in each …","","","","","","","","","Specialized expressions for Series of DataType::Utf8.","","","Check if this column of strings contains a Regex. If strict…","Check if a string value contains a literal substring.","Count all successive non-overlapping regex matches.","","","","Check if a string value ends with the sub string.","","Extract a regex pattern from the a string value. If …","Extract each successive non-overlapping match in an …","Returns the argument unchanged.","","Calls U::from(self).","Return the number of bytes in the string (not characters).","Remove leading characters, or whitespace if matches is …","Return the number of characters in the string (not bytes).","Replace values that match a regex pat with a value.","Replace all values that match a regex pat with a value.","Replace values that match a regex pat with a value.","Remove trailing characters, or whitespace if matches is …","Split the string by a substring. The resulting dtype is …","Split the string by a substring and keep the substring. …","Check if a string value starts with the sub string.","Slice the string values.","Remove leading and trailing characters, or whitespace if …","Convert all characters to lowercase.","Convert all characters to uppercase.","","","","","AllowedOptimizations","","","","","Reads LazyFrame from a filesystem or a cloud storage. …","Lazy abstraction over an eager DataFrame. It really is an …","Utility struct for lazy groupby operation.","","State of the allowed optimizations","","","","","","","","","","","","Group by and aggregate.","Allow parallel table evaluation.","","","Apply a function over the groups as a new DataFrame. It is …","","","","","","","","","","","","","","","","","","","","","Caches the result into a new LazyFrame. This should be …","","","","","","","","","","","","","","","","","","","CloudOptions used to list files.","CloudOptions used to list files.","","Execute all the lazy operations and collect them into a …","Recommended concatenation of LazyFrames from many input …","Recommended concatenation of LazyFrames from many input …","","Creates the cartesian product from both frames, preserves …","","","","","","","","","","","","","","","","","","","","","","","","Explain the optimized logical plan.","Explain the naive logical plan.","","","","","","","","","","Removes columns from the DataFrame. Note that its better …","Drop null rows.","Explain the logical plan.","Apply explode operation. See eager explode.","Fetch is like a collect operation, but it overwrites the …","","Fill NaN values in the DataFrame","Fill none values in the DataFrame","Filter by some predicate expression.","Get the final LazyFrame.","Get the final LazyFrame.","Finish builder","Get the final LazyFrame. This method assumes, that path is …","","","Get the first row.","","Force parallel table evaluation.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Get current optimizations","Get list of files referenced by this reader.","Get list of files referenced by this reader.","Group by and aggregate.","Similar to groupby, but order of the DataFrame is …","Set whether the CSV file has headers","Return first n rows of each group","Select the join type.","","","","","","","","","","","Join query with other lazy query.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Generic join function that can join on multiple columns.","Control more join options with the join builder.","Get the last row","","Join query with other lazy query.","The columns you want to join the left table on.","Limit the DataFrame to the first n rows. Note if you don’…","","","Reduce memory usage in expensive of performance","Reduce memory usage in expensive of performance","","Apply a function/closure once the logical plan get …","Aggregate all the columns as their maximum values.","Aggregate all the columns as their mean values.","Aggregate all the columns as their median values.","Melt the DataFrame from wide to long format","","Aggregate all the columns as their minimum values.","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","","","","","","","","Aggregate all the columns as the sum of their null value …","The columns you want to join both tables on.","","Join query with other lazy query.","","Path of the scanned file. It can be potentially a glob …","","","","Profile a LazyFrame.","","Aggregate all the columns as their quantile values.","Rechunk the memory to contiguous chunks when parsing is …","","","","","Rename columns in the DataFrame.","Reverse the DataFrame","The columns you want to join the right table on.","Add a row_count column.","Add a row_count column.","Add a row_count column.","","","","","Create a LazyFrame directly from a ipc scan.","Create a LazyFrame directly from a parquet scan.","","Get a hold on the schema of the current LazyFrame …","","Select (and rename) columns from the query.","Shift the values by a given period and fill the parts that …","Shift the values by a given period and fill the parts that …","","Stream a query result into an ipc/arrow file. This is …","Stream a query result into a parquet file. This is useful …","","Slice the DataFrame.","","Add a sort operation to the logical plan.","Add a sort operation to the logical plan.","Aggregate all the columns as their standard deviation …","","Suffix to add duplicate column names in join. Defaults to …","Aggregate all the columns as their sum values.","Get the last n rows","Return last n rows of each group","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Keep unique rows, do not maintain order","Keep unique rows and maintain order","","","Aggregate all the columns as their variance values.","","","","","","","","","","The table to join with.","","Cache the DataFrame after reading.","Add a column to a DataFrame","Add multiple columns to a DataFrame.","Set the comment character. Lines starting with this …","","Set the CSV file’s column delimiter as a byte character","Overwrite the schema with the dtypes in this given Schema. …","Set CsvEncoding","Set the char used as end of line. The default is b'\\\\n'.","Continue with next batch when a ParserError is encountered.","Set the number of rows to use when inferring the csv …","Set the number of rows to use when inferring the json …","Treat missing fields as null.","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","Set values that will be interpreted as missing/ null.","Set allowed optimizations","Set path of the scanned file. Support glob patterns.","","","Toggle predicate pushdown optimization.","Toggle projection pushdown optimization.","Set the char used as quote char. The default is b'"'. If …","Rechunk the memory to contiguous chunks when parsing is …","Rechunk the memory to contiguous chunks when parsing is …","Rechunk the memory to contiguous chunks when parsing is …","Add a row_count column.","Add a row_count column.","Add a new column at index 0 that counts the rows.","Set the CSV file’s schema","Set the JSON file’s schema","Modify a schema before we run the lazy scanning.","Toggle expression simplification optimization on or off","Skip the first n rows during parsing. The header will be …","Skip this number of rows after the header location.","Toggle slice pushdown optimization","Allow (partial) streaming engine","Toggle type coercion optimization.","Turn off all optimizations","","","","Executors will evaluate physical expressions and collect …","","","","Take a DataFrame and evaluate the expressions. Implement …","Wrapper struct that allow us to use a PhysicalExpr in …","","Convert to a partitioned aggregator.","Can take &dyn Statistics and determine of a file should be …","","","","","","","","","","","","Take a DataFrame and evaluate the expression.","","Some expression that are not aggregations can be done per …","This is called in partitioned aggregation. Partitioned …","","Called to merge all the partitioned results in a final …","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","","","Get the output field of this expr","","","","","","","","","","Groupby aggregation","","","","A raw binary array","A binary true or false.","Cache the input at this point in the LP","In memory DataFrame","Remove duplicates from the table","Catches errors and throws them later","This allows expressions to access other tables","","A 32-bit floating point number.","A 64-bit floating point number.","Adding columns to the table without a Join","A 32-bit integer number.","A 64-bit integer number.","","Join operation","","","","","A (User Defined) Function","","The literal Null","","","Column selection","","","Filter on a boolean mask","","Slice the table","Sort the table","An unsigned 32-bit integer number.","An unsigned 64-bit integer number.","","A UTF8 encoded string type.","","","","","","specify if the scan provider should allow predicate …","specify if the scan provider should allow projection …","specify if the scan provider should allow slice pushdowns","","","","","","","","","","","","","","","","","","","","","","","","Data page compression","Data page compression","if None will be 1024^2 bytes","","","","","","","","","","","","","","","","","","Arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Getter for the DataType of the value","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Literal expression.","","","maintain the order the data was processed","maintain the order the data was processed","","","","If None will be all written to a single row group.","Creates a dataframe from the supplied function & scan …","function to supply the schema. Allows for an optional …","","","","Compute and write column statistics.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,19,3,0,22,3,37,26,3,37,19,3,19,0,19,0,3,19,0,0,19,19,3,3,19,19,22,3,19,19,19,19,19,0,26,19,35,3,0,19,26,26,3,0,19,3,44,0,19,3,22,19,26,3,0,0,0,44,26,26,22,37,37,37,37,37,37,37,37,44,0,3,22,19,0,3,19,19,19,26,26,22,22,22,0,22,26,26,26,22,35,26,26,3,19,0,26,26,19,22,0,3,0,19,0,19,3,0,0,19,19,19,19,3,3,3,0,22,19,0,22,3,3,0,19,19,26,0,19,19,22,0,3,3,0,0,26,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,2,2,2,2,3,3,3,3,0,3,0,42,3,3,0,3,3,0,3,3,3,0,3,3,3,3,3,3,3,20,3,20,3,3,3,42,22,0,3,0,3,0,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,41,54,51,47,0,3,3,3,3,3,3,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,0,0,0,0,0,20,3,3,3,0,3,0,3,3,3,3,3,38,39,40,3,16,16,16,39,41,42,43,44,3,20,2,31,32,33,34,22,3,35,26,16,16,37,19,38,39,40,41,42,43,44,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,3,3,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,3,3,0,0,3,22,3,3,35,26,16,16,37,19,40,41,42,43,44,3,3,3,3,3,35,35,35,35,26,26,26,26,37,37,37,37,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,41,3,3,3,3,3,3,3,0,20,3,3,16,3,3,51,47,54,55,3,3,35,26,26,16,37,37,19,19,38,39,40,41,42,43,44,0,42,41,3,20,2,31,32,33,34,22,3,3,3,3,3,3,3,3,3,3,35,26,16,16,16,16,16,37,19,19,19,19,38,39,40,41,42,43,44,16,3,0,20,46,14,51,55,3,3,2,3,35,37,40,41,20,3,38,39,3,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,3,74,2,3,3,3,3,3,0,3,0,3,2,2,20,3,0,20,3,20,3,0,3,3,3,3,3,3,3,0,3,16,16,16,16,3,0,3,3,0,43,0,20,3,0,0,20,3,0,3,3,38,39,39,0,20,3,0,40,38,39,38,3,3,3,3,3,39,3,3,16,38,39,3,3,0,3,3,3,32,34,2,3,3,0,3,2,3,3,3,0,3,3,0,0,3,0,3,20,3,2,3,42,42,16,38,39,3,20,3,3,3,3,3,20,3,20,3,3,3,3,3,3,41,3,0,3,3,0,20,3,0,16,20,3,3,3,3,0,31,33,3,3,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,3,3,26,37,19,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,51,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,2,20,3,20,3,3,3,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,39,0,32,34,40,38,39,39,38,39,38,39,38,39,39,38,39,38,39,38,39,39,38,3,38,133,134,135,133,134,135,133,136,137,138,139,140,138,140,141,142,138,143,144,145,146,143,147,142,145,139,148,147,149,148,148,149,141,145,146,147,146,147,146,144,149,140,144,150,151,152,153,154,152,154,150,155,156,157,158,159,160,161,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,78,0,0,0,0,0,78,78,0,78,78,0,0,0,0,0,0,0,0,38,39,78,78,78,78,0,0,0,78,38,39,78,78,74,0,0,0,0,0,0,0,38,39,39,0,0,38,39,38,39,0,78,0,0,0,78,0,0,38,39,0,0,78,78,78,78,78,78,39,38,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,91,92,85,93,87,82,83,94,83,84,85,82,83,85,84,91,92,85,93,87,82,83,94,84,91,92,85,93,87,82,83,94,82,82,92,93,91,92,85,93,87,82,83,94,91,92,85,93,87,82,83,94,162,162,93,82,162,162,91,82,92,93,87,82,94,84,91,92,85,93,87,82,83,94,84,91,92,85,93,87,82,83,94,82,82,84,91,92,85,93,87,82,83,94,82,82,82,82,82,94,82,82,82,162,162,84,162,91,85,82,94,84,84,91,92,85,93,87,82,82,83,94,82,162,162,82,82,91,83,84,87,84,91,92,85,93,87,82,83,94,82,84,91,92,85,93,87,82,83,94,82,82,82,163,82,84,82,82,83,91,85,93,82,82,82,82,82,92,82,162,91,85,92,93,87,87,84,91,85,82,84,82,82,93,162,91,85,94,82,94,82,162,91,85,92,93,82,82,84,162,91,85,92,93,87,85,82,82,85,82,87,82,82,82,94,82,82,87,82,94,82,82,82,94,84,82,82,83,82,82,91,92,85,93,87,82,83,94,82,84,91,92,85,93,87,82,83,94,84,91,92,85,93,87,82,83,94,94,84,91,92,85,93,87,82,83,94,82,82,93,84,82,84,91,92,85,93,87,82,83,94,84,85,91,82,82,91,82,91,91,91,91,91,91,85,91,91,85,91,82,162,91,85,82,82,91,162,91,85,91,85,82,91,85,91,82,91,91,82,82,82,82,0,0,0,0,124,0,0,0,0,122,122,122,119,119,121,119,121,119,121,119,121,119,121,122,119,122,117,119,117,122,121,119,121,119,119,121,119,121,122,122,122,119,121,119,121,119,121,119,121,0,97,0,97,0,126,126,97,97,97,97,97,97,126,126,97,126,126,0,97,0,0,97,0,97,0,0,126,0,97,126,97,97,126,97,97,126,126,97,126,126,112,111,109,97,86,86,86,86,131,126,112,111,109,97,131,126,112,111,109,97,126,112,111,109,97,126,112,111,109,97,112,111,112,112,111,109,97,131,126,112,111,109,97,131,126,112,111,109,97,97,97,131,126,112,111,109,97,126,112,111,109,112,112,112,112,111,111,111,111,109,109,109,109,86,126,112,111,109,97,109,131,126,112,111,109,97,126,131,126,112,111,109,97,131,126,112,111,109,97,68,131,126,112,111,109,109,109,112,86,86,97,109,109,112,97,126,126,112,111,109,97,131,126,126,112,111,109,97,131,126,112,111,109,97,131,126,112,111,109,97,131,126,112,111,109,97,109,164,164,164,165,165,166,166,167,168,169,170,171,172,173,174,175,175,174,176,168,177,168,171,172,165,173,178,166,179,176,170,167,180,181,181,182,165,181,179,165,179,174,165,181,178,182,169,175,180,174,177,175,169,181,175,169,171,172,165,181,173,167,169],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[2,3],[[2,3],[[5,[3,4]]]],[[2,3],[[5,[3,4]]]],[[2,3],[[5,[3,4]]]],[3,3],[[3,3]],[3,3],[[3,6],3],[[],3],[[3,7],3],[[[9,[[8,[3]]]]],3],0,[[3,[10,[3]]],3],[[3,7],3],[[[9,[[8,[3]]]]],3],[[3,[10,[3]],7],3],[[3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[3,3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[3,17],[[5,[18,4]]]],[[3,[0,[11,12,13]],[8,[3]],[16,[[15,[14]]]]],3],[[3,19,[8,[3]],7,7],3],[[[0,[11,12,13]],[9,[[8,[3]]]],[16,[[15,[14]]]],7],3],[3,3],[3,3],[3,3],[3,3],[3,3],[[3,3],3],[3,3],[20,3],[3,3],[20,3],[3,3],[[3,21],3],[3,3],0,[22,3],[6,3],[[3,[24,[23]]],3],0,[3,25],[[3,26,3],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[6,[[5,[27,4]]]],[[[8,[28]]],[[5,[[24,[28]],4]]]],[[28,28],[[5,[28,4]]]],[[3,29],3],[[3,29],3],[3,3],[3,3],[[3,30,30],3],[[3,30],3],[[3,30],3],[31,31],[32,32],[33,33],[34,34],[22,22],[3,3],[35,35],[26,26],[[[16,[36]]],[[16,[36]]]],[37,37],[19,19],[38,38],[39,39],[40,40],[41,41],[42,42],[43,43],[44,44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[8,[3]]],3],[6,3],[[[45,[27]]],3],[[[9,[[8,[[0,[[10,[3]],36]]]]]],7],[[5,[3,4]]]],[[[9,[[8,[[0,[[10,[3]],36]]]]]]],[[5,[3,4]]]],[[20,[10,[3]]],3],[3,3],[3,3],[3,3],[[],3],[3,3],[[3,3],3],[[3,7],3],[[3,7],3],[[3,7],3],[[3,7],3],[[3,7],3],0,0,0,[[],3],[[],[[16,[[15,[14]]]]]],[[],[[16,[[15,[46]]]]]],[[],[[16,[[15,[47]]]]]],[[],39],[[],41],[[],42],[[],43],[[],44],[3,3],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[16],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[[3,3]],[[3,[10,[3]]],3],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[3,3],[3,3],[29,3],[[[9,[[8,[29]]]]],3],[[3,49,7],3],[[22,22],7],[[3,[10,[3]]],3],[[3,3],7],[[35,35],7],[[26,26],7],[[[16,[[15,[50]]]],[16,[[15,[50]]]]],7],[[[16,[28]],[16,[28]]],7],[[37,37],7],[[19,19],7],[[40,40],7],[[41,41],7],[[42,42],7],[[43,43],7],[[44,44],7],[[3,[10,[3]]],3],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],0,[[3,[45,[27]]],3],[[3,[9,[[8,[29]]]]],3],[3,3],[3,3],[[3,[10,[3]]],3],[[3,[10,[3]]],3],[[3,[10,[3]]],3],[[],3],[20,3],[3,3],[3,3],[[],[[16,[[15,[14]]]]]],[3,3],[[3,3],3],[[51,52],[[5,[53]]]],[[47,52],[[5,[53]]]],[[54,52],[[5,[53]]]],[[55,52],[[5,[53]]]],[[3,52],[[5,[53]]]],[[3,52],[[5,[53]]]],[[35,52],[[5,[53]]]],[[26,52],[[5,[53]]]],[[26,52],[[5,[53]]]],[[16,52],[[5,[53]]]],[[37,52],[[5,[53]]]],[[37,52],[[5,[53]]]],[[19,52],[[5,[53]]]],[[19,52],[[5,[53]]]],[[38,52],[[5,[53]]]],[[39,52],[[5,[53]]]],[[40,52],[[5,[53]]]],[[41,52],[[5,[53]]]],[[42,52],[[5,[53]]]],[[43,52],[[5,[53]]]],[[44,52],[[5,[53]]]],[[3,[0,[11,12,13,36]],[9,[[8,[3]]]]],3],0,0,[[3,[24,[23]]],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[56,3],[6,3],[23,3],[57,3],[7,3],[22,3],[58,3],[[]],[59,3],[49,3],[[]],[[]],[60,[[16,[[15,[51]]]]]],[37,[[16,[[15,[51]]]]]],[61,[[16,[[15,[51]]]]]],[19,[[16,[[15,[51]]]]]],[[]],[[]],[37,19],[[]],[60,19],[61,19],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[29,[[16,[[15,[14]]]]]],[[3,[0,[11,12,13]],[16,[[15,[14]]]],62],3],0,[[20,3],3],[[63,64,65,65],[[24,[65]]]],[[63,64,[8,[65]]],65],[[],[[24,[[16,[[15,[14]]]]]]]],[63,[[5,[[15,[63]],4]]]],[[3,[10,[3]]],3],[[3,[10,[3]]],3],[2,7],[[3,66]],[[35,66]],[[37,66]],[[40,66]],[[41,66]],[[20,3],3],[[3,[24,[48]]],3],0,0,[3,3],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3],[[],3],[2,[[5,[67,4]]]],[3,3],[[3,[10,[3]]],3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[2,7],[2,7],[[20,6],3],[3,3],[[],3],[20,3],[3,3],[20,3],[3,20],[68,3],[[3,49],3],[3,3],[3,3],[[3,[10,[3]]],3],[[3,[10,[3]]],3],[[3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[3,[0,[11,12,13]]],3],[[3,3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[3,17],[[5,[3,4]]]],[[[0,[11,12,13]]],[[16,[[15,[14]]]]]],[[[0,[11,12,13]]],[[16,[[15,[14]]]]]],[[[0,[11,12,13]]],[[16,[[15,[14]]]]]],[[[0,[11,12,13]]],[[16,[[15,[14]]]]]],[[3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[[0,[11,12,13]],[9,[[8,[3]]]],[16,[[15,[14]]]]],3],[[3,[0,[11,12,13]],[8,[3]],[16,[[15,[14]]]]],3],[[3,19,[8,[3]],7],3],[[[0,[11,12,13]],[9,[[8,[3]]]],[16,[[15,[14]]]]],3],0,[6,3],[20,3],[3,3],[[[9,[[8,[3]]]]],3],[6,3],[20,3],[3,3],[6,3],[3,3],[3,2],0,0,0,[6,3],[20,3],[3,3],[[[9,[[8,[3]]]]],3],0,0,0,0,[[3,3]],[3,69],[3,3],[3,3],[3,3],0,[[3,[10,[3]]],3],[[3,[10,[3]]],3],[[],16],[[3,3,3],38],[[],39],[[3,[71,[3,70]]]],[[3,[71,[3,70]]]],[3,3],[3,3],[3,3],[[3,[10,[3]]],3],[[32,[10,[3]]],3],[[34,[10,[3]]],3],[2,[[5,[[15,[6]],4]]]],[[3,[9,[[8,[[0,[[10,[3]],36]]]]]]],3],[[3,[9,[[8,[[0,[[10,[3]],36]]]]]],43],3],[[3,3,72],3],[[],3],[2,[[71,[3,70]]]],[[3,[10,[3]]],3],[[3,6],3],[3,3],[[6,3,73],3],[[3,3,73],3],[3,3],[[[74,[[74,[[74,[[74,[74]]]]]]]],[74,[[74,[[74,[[74,[74]]]]]]]]],3],[[[0,[11,12,13,36]],[9,[[8,[3]]]]],3],[[3,3]],[[[10,[3]],3],3],[[3,[8,[57]]],3],[20,3],[3,3],[2,[[71,[[15,[6]],70]]]],[[3,23],3],0,0,[[],[[16,[[15,[14]]]]]],0,0,[[3,75],3],[[20,57],3],[[3,57],3],[[3,57,[10,[3]]],3],[3,3],[3,3],[3,3],[[20,3,3],3],[[3,[10,[3]],[10,[3]]],3],[[20,21],3],[[3,7],3],[[3,[9,[[8,[[0,[[10,[3]],36]]]]]],[9,[[8,[7]]]]],3],[[3,21],3],[3,3],[[3,72],3],[3,76],0,[[3,29],3],0,[[3,3]],[[3,6],3],[6,3],[20,3],[3,3],[[[9,[[8,[3]]]]],3],[[],[[16,[[15,[14]]]]]],[[20,3],3],[[3,[24,[48]]],3],[[3,[10,[3]]],3],[3,3],[3,3],[[3,3,3],3],[[31,[10,[3]]],32],[[33,[10,[3]]],34],[3,[[5,[27,4]]]],[[3,63,64],[[5,[65,4]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3,3],[[],27],[[],27],[[],27],[[],27],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[[71,[72,70]]],[[5,[4]]]],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[2,3],[20,3],[3,3],[20,3],[3,3],[3,3],[[3,72],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[[10,[3]]],31],[[32,[10,[3]]],33],[[34,[10,[3]]],33],0,[[38,3],38],[[39,3],39],[[39,3,3,3],39],[[38,3,3,3],38],[[39,3,3,3],39],[[38,3],38],[[39,3],39],[[38,3],38],[[39,3],39],[[39,3],39],[[38,3],38],[[39,3],39],[[38,3],38],[[39,3],39],[[38,3],38],[[39,3],39],[[39,3],39],[[38,3],38],[[3,[10,[3]]],3],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[25,[9,[[8,[72]]]]],3],[48],[48],[48],[[25,[9,[[8,[72]]]]],3],[[]],[[],48],[[]],[[25,[9,[[8,[72]]]]],3],[[],5],[[],5],[[],77],[[]],0,0,0,0,[1],[[],3],[[[9,[[8,[3]]]]],3],[[[9,[[8,[3]]]]],3],[[3,3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[6,3],[[]],[[]],[[3,29],3],[78,78],[[]],[[[8,[3]]],3],[6,3],[79,[[81,[[71,[80]]]]]],[[[45,[27]]],3],[[[9,[[8,[82]]]],78],[[81,[82]]]],[[[9,[[8,[[0,[[10,[3]],36]]]]]],7],[[5,[3,4]]]],[[[9,[[8,[[0,[[10,[3]],36]]]]]]],[[5,[3,4]]]],[[3,3],3],0,0,[[],78],[48],[48],[48],[29,3],[[[9,[[8,[29]]]]],3],[[3,[0,[11,12,13,36]],[9,[[8,[3]]]]],3],[[]],0,0,[[],48],[[]],[[],3],[3,3],[3,3],[[3,3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[6,3],[[[9,[[8,[3]]]]],3],[6,3],[6,3],0,0,0,[6,3],[[[9,[[8,[3]]]]],3],0,0,0,0,[3,3],0,[[3,3,72],3],[[6,3,73],3],[[[74,[[74,[[74,[[74,[74]]]]]]]],[74,[[74,[[74,[[74,[74]]]]]]]]],3],0,[[[0,[11,12,13,36]],[9,[[8,[3]]]]],3],[[[10,[3]],3],3],0,0,[6,3],[[[9,[[8,[3]]]]],3],[[]],0,[[],5],[[],5],[[],77],[[]],0,0,0,[[]],[[]],[[76,3,7],3],[[76,3],3],[[76,6],3],[48],[48],[48],[[76,3],3],[76,3],[[76,6,48],3],[[76,3],3],[[]],[[],48],[[]],[76,3],[[76,[24,[27]]],3],[76,3],[[76,3,3,7],3],[[76,3,3,7],3],[[76,3,3,7,57],3],[[76,[24,[27]]],3],[[76,6],3],[[76,6],3],[[76,3],3],[[76,57,[24,[59]]],3],[[76,[24,[27]]],3],[76,3],[76,3],[[],5],[[],5],[[],77],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[[83,[9,[[8,[3]]]]],82],[[84,7],84],[85,7],[[[15,[86]],87],[[81,[82]]]],[[83,[0,[11,12,13]],88],82],[85,89],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[82,90,[9,[[8,[3]]]],[9,[[8,[7]]]],7,7],82],[82,82],0,0,[91,91],[92,92],[85,85],[93,93],[87,87],[82,82],[83,83],[94,94],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[24,[95]]]],[[],[[24,[95]]]],0,[82,[[81,[80]]]],[[[71,[82]]],[[81,[82]]]],[[[71,[82]]],[[81,[82]]]],[[91,[71,[82]]],[[81,[82]]]],[[82,82],82],[[],92],[[],93],[[],87],[[],82],[[],94],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[82,[[81,[27]]]],[82,27],[48],[48],[48],[48],[48],[48],[48],[48],[48],[[82,96],82],[[82,[24,[[71,[3]]]]],82],[[82,7],[[81,[27]]]],[[82,[9,[[8,[[0,[[10,[3]],36]]]]]]],82],[[82,48],[[81,[80]]]],0,[[82,[10,[3]]],82],[[82,[10,[3]]],82],[[82,3],82],[[],[[81,[82]]]],[[],[[81,[82]]]],[84,82],[[],[[81,[82]]]],[91,[[81,[82]]]],[85,[[81,[82]]]],[82,82],[[94,52],[[5,[53]]]],[[84,7],84],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[97,82],[[]],[[]],[82,94],[[],[[81,[[24,[98]]]]]],[[],[[81,[[24,[98]]]]]],[[82,[9,[[8,[[0,[[10,[3]],36]]]]]]],83],[[82,[9,[[8,[[0,[[10,[3]],36]]]]]]],83],[[91,7],91],[[83,[24,[48]]],82],[[84,99],84],0,[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[82,82,[10,[3]],[10,[3]]],82],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[82,82,[9,[[8,[3]]]],[9,[[8,[3]]]],100],82],[82,84],[82,82],[[],82],[[82,82,[10,[3]],[10,[3]]],82],[[84,[9,[[8,[3]]]]],84],[[82,90],82],0,0,[[91,7],91],[[85,7],85],0,[[82,[0,[11,12,13]],101,[24,[[15,[55]]]],[24,[6]]],82],[82,82],[82,82],[82,82],[[82,102],82],0,[82,82],[[],[[24,[48]]]],[91,[[24,[48]]]],[85,[[24,[48]]]],0,0,0,0,[82,84],[[[9,[103]]],91],[[[9,[103]]],85],[82,82],[[84,[9,[[8,[3]]]]],84],[[82,[105,[104]],[105,[106]]],[[81,[107]]]],[[82,82,[10,[3]],[10,[3]]],82],0,[[],103],[91,103],[85,103],0,[82,81],0,[[82,3,73],82],[[],7],[91,7],[85,7],0,0,[[82,96,96],82],[82,82],[[84,[9,[[8,[3]]]]],84],[[],[[24,[108]]]],[91,[[24,[108]]]],[85,[[24,[108]]]],0,0,0,[[85,109],[[81,[80]]]],[[[9,[103]],92],[[81,[82]]]],[[[9,[103]],93],[[81,[82]]]],[[85,[24,[48]]],[[81,[63]]]],[82,[[81,[88]]]],0,[[82,[9,[[8,[3]]]]],82],[[82,57],82],[[82,57,[10,[3]]],82],0,[[82,110,111],81],[[82,110,112],81],0,[[82,57,90],82],0,[[82,6,21],82],[[82,[9,[[8,[3]]]],[9,[[8,[7]]]],7,7],82],[[82,72],82],0,[[84,[9,[6]]],84],[82,82],[[82,90],82],[[83,[24,[48]]],82],[82,81],[82,81],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[82,90,[9,[[8,[3]]]],[9,[[8,[7]]]],7,7],82],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[82,[24,[[71,[27]]]],113],82],[[82,[24,[[71,[27]]]],113],82],0,[[84,114],84],[[82,72],82],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[84,82],84],[[85,[24,[48]]],85],[[91,7],91],[[82,3],82],[[82,[9,[[8,[3]]]]],82],[[91,[24,[72]]],91],[[82,[9,[[8,[82]]]]],82],[[91,72],91],[[91,[24,[63]]],91],[[91,115],91],[[91,72],91],[[91,7],91],[[91,[24,[48]]],91],[[85,[24,[48]]],85],[[91,7],91],[[91,[24,[48]]],91],[[85,[24,[48]]],85],[[91,[24,[116]]],91],[[82,94],82],[110],[[91,110],91],[[85,110],85],[[82,7],82],[[82,7],82],[[91,[24,[72]]],91],[7],[[91,7],91],[[85,7],85],[[91,[24,[108]]],91],[[85,[24,[108]]],85],[[82,6,[24,[90]]],82],[[91,88],91],[[85,63],85],[[91,11],[[81,[91]]]],[[82,7],82],[[91,48],91],[[91,48],91],[[82,7],82],[[82,7],82],[[82,7],82],[82,82],0,0,0,0,0,0,0,0,0,[[],[[24,[3]]]],[[],[[24,[117]]]],[[],[[24,[118]]]],[119,[[24,[118]]]],[[]],[[]],[[]],[[]],[48],[48],[48],[48],[48],[48],0,[[119,80],[[81,[28]]]],0,0,0,0,[[122,52],123],[[121,52],123],[[]],[[]],0,[[],48],[[],48],[[]],[[]],[[],7],[[],7],[63,[[81,[65]]]],[[],5],[[],5],[[],5],[[],5],[[],77],[[],77],[[]],[[]],[[107,[105,[104]],[105,[106]]],[[81,[[125,[124]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[[],7],[[],7],[[],7],[[],89],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[126,126],[112,112],[111,111],[109,109],[97,97],[[]],[[]],[[]],[[]],[[]],0,0,0,[[],112],[[],111],[[],109],[[],97],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[97,27],[[97,27,127,[130,[27,27,128,129]]],[[5,[53]]]],[48],[48],[48],[48],[48],[48],[[126,126],7],[[112,112],7],[[111,111],7],[[109,109],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[86,52],[[5,[53]]]],[[126,52],[[5,[53]]]],[[112,52],[[5,[53]]]],[[111,52],[[5,[53]]]],[[109,52],[[5,[53]]]],[[97,52],[[5,[53]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[126,29],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[]],[[]],[[]],[[]],[[]],[[]],[[],3],[131,3],[126,3],0,0,0,0,0,0,[109,[[5,[80,4]]]],[[[24,[48]]],[[5,[63,4]]]],[97,[[5,[[132,[[15,[63]]]],4]]]],0,0,0,[97,[[5,[4]]]],[126,[[24,[30]]]],[[]],[[]],[[]],[[]],[[]],[[],5],[[],5],[30,[[5,[126,4]]]],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"c":[],"p":[[3,"Private"],[3,"MetaNameSpace"],[4,"Expr"],[4,"PolarsError"],[4,"Result"],[15,"str"],[15,"bool"],[15,"slice"],[8,"AsRef"],[8,"Into"],[8,"Fn"],[8,"Send"],[8,"Sync"],[8,"FunctionOutputField"],[3,"Arc"],[3,"SpecialEq"],[8,"FnMut"],[4,"VisitRecursion"],[4,"FunctionExpr"],[3,"ListNameSpace"],[3,"SortOptions"],[4,"AggExpr"],[15,"u32"],[4,"Option"],[3,"BinaryNameSpace"],[4,"Operator"],[3,"String"],[3,"Series"],[4,"DataType"],[4,"AnyValue"],[3,"When"],[3,"Then"],[3,"ChainedWhen"],[3,"ChainedThen"],[4,"Excluded"],[8,"Clone"],[4,"BooleanFunction"],[3,"DatetimeArgs"],[3,"DurationArgs"],[3,"RollingCovOptions"],[3,"StrptimeOptions"],[3,"JoinOptions"],[3,"WindowOptions"],[4,"WindowMapping"],[8,"IntoVec"],[8,"BinaryUdfOutputField"],[8,"SeriesBinaryUdf"],[15,"usize"],[15,"f64"],[8,"Sized"],[8,"SeriesUdf"],[3,"Formatter"],[3,"Error"],[8,"RenameAliasFn"],[8,"UdfSchema"],[15,"i32"],[15,"i64"],[15,"f32"],[15,"u64"],[4,"StringFunction"],[4,"BinaryFunction"],[3,"FunctionOptions"],[3,"Schema"],[4,"Context"],[3,"Field"],[8,"Hasher"],[8,"Display"],[8,"Literal"],[3,"ExprMut"],[3,"Global"],[3,"Vec"],[15,"u8"],[4,"QuantileInterpolOptions"],[8,"Range"],[4,"IsSorted"],[3,"StringNameSpace"],[3,"TypeId"],[3,"UnionArgs"],[8,"IntoParallelIterator"],[3,"DataFrame"],[6,"PolarsResult"],[3,"LazyFrame"],[3,"LazyGroupBy"],[3,"JoinBuilder"],[3,"LazyJsonLineReader"],[8,"AnonymousScan"],[3,"ScanArgsAnonymous"],[6,"SchemaRef"],[8,"Any"],[6,"IdxSize"],[3,"LazyCsvReader"],[3,"ScanArgsIpc"],[3,"ScanArgsParquet"],[3,"OptState"],[3,"CloudOptions"],[8,"IntoIterator"],[4,"LogicalPlan"],[6,"GlobIterator"],[4,"JoinType"],[3,"JoinArgs"],[6,"AllowedOptimizations"],[3,"MeltArgs"],[3,"Path"],[4,"ALogicalPlan"],[3,"Arena"],[4,"AExpr"],[3,"Node"],[3,"RowCount"],[3,"AnonymousScanOptions"],[3,"PathBuf"],[3,"IpcWriterOptions"],[3,"ParquetWriteOptions"],[4,"UniqueKeepStrategy"],[4,"JoinValidation"],[4,"CsvEncoding"],[4,"NullValues"],[8,"PartitionedAggregation"],[8,"StatsEvaluator"],[3,"PhysicalIoHelper"],[4,"GroupsProxy"],[3,"AggregationContext"],[8,"PhysicalExpr"],[6,"Result"],[8,"Executor"],[3,"Box"],[4,"LiteralValue"],[3,"DotNode"],[3,"RandomState"],[3,"Global"],[3,"HashMap"],[3,"Null"],[4,"Cow"],[13,"Quantile"],[13,"Min"],[13,"Max"],[13,"All"],[13,"Any"],[13,"SortBy"],[13,"Filter"],[13,"Cast"],[13,"Sort"],[13,"Take"],[13,"RenameAlias"],[13,"Ternary"],[13,"Function"],[13,"Window"],[13,"AnonymousFunction"],[13,"Slice"],[13,"BinaryExpr"],[13,"Entropy"],[13,"Log"],[13,"Correlation"],[13,"Round"],[13,"Clip"],[13,"ShiftAndFill"],[13,"Cumcount"],[13,"Cumsum"],[13,"Cumprod"],[13,"Cummin"],[13,"Cummax"],[13,"FillNull"],[8,"LazyFileListReader"],[8,"IntoLazy"],[13,"Range"],[13,"Aggregate"],[13,"Sort"],[13,"ExtContext"],[13,"Cache"],[13,"DataFrameScan"],[13,"Error"],[13,"LocalProjection"],[13,"Projection"],[13,"HStack"],[13,"AnonymousScan"],[13,"Scan"],[13,"MapFunction"],[13,"Selection"],[13,"Distinct"],[13,"Slice"],[13,"FileSink"],[13,"Join"],[13,"Union"]]},\ +"polars_lazy":{"doc":"Lazy API of Polars","t":"AOAAAANNENNNNNNNNNINENNDDNNNNNNNNNNNNNDNNNNDNNNNENNNENNNNNNEIGNNNNNNNNNNNNNDNNNDNNNNNNNNNDNNNNNNNNNNENNNNININDNNIINNNNNNNDNNDNNNDNNNINNNDNNEDNLLLLLLLLLLLLLLLLLLLLLLLLLLFLFMLLFLLFLLLFLLLLLLLLLLLLLMLFLALFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMKKKFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFFLLLLFLFLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLFMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALKKLKLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLFLFLLLLLFLLLLFLLLLLLLFLLLLLLFLLFMFLLFFLLFLLMMMFLLFMMMMLLLLLMLLLLLLLFLLLLLLLLFLLLLLFLLFFLFLLLLLMMLMMLLLLLLLLLLLLLLLLMLALLFLLFLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMFLLMLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMDLLLLLLLLLLLLLLLDDIDLFFFFFLLFLLFFFFFFFFMMLLLLFFFLMMLLKFFFFFFFMMMFFMMMMFMFFFMFFMMFFLMLLLLMMDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGGIDDIDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLKLLLMMLLMLLLLLMLKLLMMMMLLLLLLLMKLLMLMLKLLMMLLLKLLMMMLLLLLMLLLMLLMLMLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLKLLLLLLLLLLLLLLLAAAIKDIIDLLLLLLLLLLLLLLKLKKMKLLLLMLLLLLKKLLLLLLLLFNINDNNNNNNNNNNNNNDNIENENRDNDNNNNNNNNNNNLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLKLLMMMMMMKLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM","n":["dsl","fallible","frame","physical_plan","prelude","utils","Abs","Agg","AggExpr","AggGroups","Alias","All","And","AnonymousFunction","Any","Atan2","BinaryExpr","BinaryExpr","BinaryUdfOutputField","Boolean","BooleanFunction","Cast","Ceil","ChainedThen","ChainedWhen","Clip","Coalesce","Column","Columns","ConcatExpr","Correlation","Count","Count","Cumcount","Cummax","Cummin","Cumprod","Cumsum","DatetimeArgs","Divide","DropNans","Dtype","DtypeColumn","DurationArgs","Entropy","Eq","EqValidity","Exclude","Excluded","Exp","Explode","Explode","Expr","FillNull","Filter","First","Floor","FloorDivide","Function","FunctionExpr","FunctionOutputField","GetOutput","GroupsToRows","Gt","GtEq","Implode","IsFinite","IsIn","IsInfinite","IsNan","IsNot","IsNotNan","IsNotNull","IsNull","Join","JoinOptions","KeepName","Last","ListExpr","ListNameSpace","Literal","Log","Log1p","LowerBound","Lt","LtEq","Max","Mean","Median","MetaNameSpace","Min","Minus","Modulus","Multiply","NUnique","Name","NotEq","NotEqValidity","Nth","NullCount","Operator","Or","Plus","Pow","Quantile","Range","RenameAlias","RenameAliasFn","Reverse","RollingCovOptions","Round","Selector","SeriesBinaryUdf","SeriesUdf","SetSortedFlag","Shift","ShiftAndFill","ShrinkType","Slice","Sort","SortBy","SpecialEq","Std","StringExpr","StrptimeOptions","Sum","Take","Ternary","Then","ToPhysical","Trigonometry","TrueDivide","UdfSchema","Unique","UpperBound","Var","When","Wildcard","Window","WindowMapping","WindowOptions","Xor","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_into_selector","_selector_add","_selector_and","_selector_sub","abs","add","agg_groups","alias","all","all","all_horizontal","allow_parallel","and","any","any_horizontal","append","apply","apply_binary","apply_children","apply_many","apply_many_private","apply_multiple","arccos","arccosh","arcsin","arcsinh","arctan","arctan2","arctanh","arg_max","arg_max","arg_min","arg_min","arg_sort","arg_unique","args","as_ref","avg","backward_fill","binary","binary","binary_expr","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cache","call","call_udf","call_udf","cast","cast","cbrt","ceil","clip","clip_max","clip_min","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","coalesce","col","cols","concat_expr","concat_list","contains","cos","cosh","cot","count","count","cov","cumcount","cummax","cummin","cumprod","cumsum","day","days","ddof","default","default","default","default","default","default","default","default","default","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","dot","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_nans","drop_nulls","dtype_col","dtype_cols","entropy","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exact","exclude","exclude_dtype","exp","explode","fill_nan","fill_null","filter","first","first","first","flatten","float_type","floor","floor_div","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold_exprs","force_parallel","format","forward_fill","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_type","function_with_options","functions","get","get_field","get_field","get_output","get_schema","gt","gt_eq","has_multiple_outputs","hash","hash","hash","hash","hash","head","head","hour","hours","implode","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_range","into_tree_formatter","is_finite","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_not_null","is_null","is_null","is_regex_projection","is_simple_projection","join","keep_name","last","last","last","lengths","list","lit","log","log1p","lower_bound","lt","lt_eq","map","map_alias","map_binary","map_children","map_dtype","map_dtypes","map_field","map_fields","map_list","map_list_multiple","map_many","map_many_private","map_multiple","mapping","max","max","max","max_horizontal","mean","mean","mean","median","median","meta","microsecond","microseconds","milliseconds","min","min","min","min_horizontal","min_periods","minute","minutes","month","mul","mutate","n_unique","nan_max","nan_min","nanoseconds","neq","neq_missing","new","new","new","nodes","nodes_mut","not","not","null_count","or","otherwise","otherwise","output_name","over","over_with_options","pearson_corr","pi","pop","pow","prefix","product","quantile","quantile","radians","range","reduce_exprs","rem","repeat","reshape","reverse","reverse","root_names","round","rows_left","rows_right","same_type","second","seconds","set_sorted_flag","shift","shift","shift_and_fill","shrink_dtype","sin","sinh","slice","slice","sort","sort","sort_by","sort_with","sqrt","std","str","strict","strict_cast","string","sub","suffix","sum","sum","sum","sum_horizontal","super_type","tail","tail","take","tan","tanh","ternary_expr","then","then","to_dot","to_field","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_serialize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","undo_aliases","unique","unique","unique_stable","unique_stable","upper_bound","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weeks","when","when","when","window_size","with_day","with_days","with_fractional_seconds","with_hms","with_hms","with_hour","with_hours","with_microsecond","with_microseconds","with_milliseconds","with_minute","with_minutes","with_month","with_nanoseconds","with_second","with_seconds","with_weeks","with_year","xor","year","expr","input","input","interpol","propagate_nans","propagate_nans","quantile","drop_nulls","drop_nulls","by","by","data_type","descending","expr","expr","expr","expr","expr","falsy","function","function","function","function","idx","input","input","input","input","left","length","offset","op","options","options","options","options","order_by","output_type","partition_by","predicate","right","strict","truthy","base","base","ddof","decimals","max","method","min","normalize","periods","reverse","reverse","reverse","reverse","reverse","super_type","BinaryNameSpace","borrow","borrow_mut","contains_literal","deref","deref_mut","drop","ends_with","from","init","into","starts_with","try_from","try_into","type_id","vzip","DatetimeArgs","DurationArgs","Range","UnionArgs","__clone_box","all","all_horizontal","any_horizontal","apply_binary","avg","borrow","borrow_mut","cast","clone","clone_into","coalesce","col","collect_all","cols","concat","concat_expr","concat_list","cov","day","days","default","deref","deref_mut","drop","dtype_col","dtype_cols","fold_exprs","from","hour","hours","init","into","into_range","is_not_null","is_null","map_binary","max","max_horizontal","mean","median","microsecond","microseconds","milliseconds","min","min_horizontal","minute","minutes","month","nanoseconds","not","parallel","pearson_corr","quantile","range","rechunk","reduce_exprs","repeat","second","seconds","sum","sum_horizontal","to_owned","to_supertypes","try_from","try_into","type_id","vzip","weeks","year","StringNameSpace","borrow","borrow_mut","contains","contains_literal","count_match","deref","deref_mut","drop","ends_with","explode","extract","extract_all","from","init","into","lengths","lstrip","n_chars","replace","replace_all","replace_n","rstrip","split","split_inclusive","starts_with","str_slice","strip","to_lowercase","to_uppercase","try_from","try_into","type_id","vzip","AllowedOptimizations","GlobIterator","IntoLazy","JoinBuilder","LazyCsvReader","LazyFileListReader","LazyFrame","LazyGroupBy","LazyJsonLineReader","OptState","ScanArgsAnonymous","ScanArgsIpc","ScanArgsParquet","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","agg","allow_parallel","allows_projection_pushdown","anonymous_scan","apply","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bottom_k","cache","cache","cache","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cloud_options","cloud_options","cloud_options","collect","concat_impl","concat_impl","concat_impl","cross_join","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","describe_optimized_plan","describe_plan","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_columns","drop_nulls","explain","explode","fetch","file_caching","fill_nan","fill_null","filter","finish","finish","finish","finish_no_glob","finish_no_glob","finish_no_glob","first","fmt","force_parallel","from","from","from","from","from","from","from","from","from","from","get_current_optimizations","glob","glob","groupby","groupby_stable","has_header","head","how","infer_schema_length","init","init","init","init","init","init","init","init","init","inner_join","into","into","into","into","into","into","into","into","into","join","join_builder","last","lazy","left_join","left_on","limit","logical_plan","logical_plan","low_memory","low_memory","low_memory","map","max","mean","median","melt","memmap","min","n_rows","n_rows","n_rows","n_rows","n_rows","n_rows","name","new","new","new","null_count","on","optimize","outer_join","parallel","path","path","path","predicate_pushdown","profile","projection_pushdown","quantile","rechunk","rechunk","rechunk","rechunk","rechunk","rename","reverse","right_on","row_count","row_count","row_count","row_count","row_count","row_count","scan","scan_ipc","scan_parquet","schema","schema","schema","select","shift","shift_and_fill","simplify_expr","sink_ipc","sink_parquet","skip_rows","slice","slice_pushdown","sort","sort_by_exprs","std","streaming","suffix","sum","tail","tail","to_alp","to_alp_optimized","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","top_k","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_coercion","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unique","unique_stable","use_statistics","validate","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with","with_batch_size","with_cache","with_column","with_columns","with_comment_char","with_context","with_delimiter","with_dtype_overwrite","with_encoding","with_end_of_line_char","with_ignore_errors","with_infer_schema_length","with_infer_schema_length","with_missing_is_null","with_n_rows","with_n_rows","with_null_values","with_optimizations","with_path","with_path","with_path","with_predicate_pushdown","with_projection_pushdown","with_quote_char","with_rechunk","with_rechunk","with_rechunk","with_row_count","with_row_count","with_row_count","with_schema","with_schema","with_schema_modify","with_simplify_expr","with_skip_rows","with_skip_rows_after_header","with_slice_pushdown","with_streaming","with_type_coercion","without_optimizations","executors","expressions","planner","Executor","execute","AggregationContext","PartitionedAggregation","PhysicalExpr","PhysicalIoHelper","as_expression","as_partitioned_aggregator","as_stats_evaluator","as_stats_evaluator","borrow","borrow","borrow_mut","borrow_mut","deref","deref","deref_mut","deref_mut","drop","drop","evaluate","evaluate","evaluate_on_groups","evaluate_partitioned","expr","finalize","fmt","fmt","from","from","has_window_function","init","init","into","into","is_literal","is_valid_aggregation","to_field","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","create_physical_plan","Aggregate","AnonymousScan","AnonymousScan","AnonymousScanOptions","Binary","Boolean","Cache","DataFrameScan","Distinct","Error","ExtContext","FileSink","Float32","Float64","HStack","Int32","Int64","IpcWriterOptions","Join","Literal","LiteralValue","LocalProjection","LogicalPlan","MapFunction","NULL","Null","Null","ParquetWriteOptions","Projection","Range","Scan","Selection","Series","Slice","Sort","UInt32","UInt64","Union","Utf8","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","allows_predicate_pushdown","allows_projection_pushdown","allows_slice_pushdown","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","compression","compression","data_pagesize_limit","default","default","default","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","describe","dot","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt_str","from","from","from","from","from","from","get_datatype","init","init","init","init","init","init","into","into","into","into","into","into","lit","lit","lit","maintain_order","maintain_order","n_rows","output_schema","predicate","row_group_size","scan","schema","schema","schema","skip_rows","statistics","to_alp","to_anyvalue","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","with_columns","data_type","high","low","aggs","apply","args","by_column","contexts","count","df","err","expr","expr","exprs","file_info","file_info","file_options","function","function","id","input","input","input","input","input","input","input","input","input","input","input","input","input","input_left","input_right","inputs","keys","left_on","len","maintain_order","offset","options","options","options","options","options","output_schema","path","payload","predicate","predicate","predicate","projection","right_on","scan_type","schema","schema","schema","schema","schema","schema","schema","selection"],"q":[[0,"polars_lazy"],[6,"polars_lazy::dsl"],[854,"polars_lazy::dsl::AggExpr"],[861,"polars_lazy::dsl::BooleanFunction"],[863,"polars_lazy::dsl::Expr"],[897,"polars_lazy::dsl::FunctionExpr"],[912,"polars_lazy::dsl::binary"],[928,"polars_lazy::dsl::functions"],[1002,"polars_lazy::dsl::string"],[1036,"polars_lazy::frame"],[1371,"polars_lazy::physical_plan"],[1374,"polars_lazy::physical_plan::executors"],[1376,"polars_lazy::physical_plan::expressions"],[1420,"polars_lazy::physical_plan::planner"],[1421,"polars_lazy::prelude"],[1608,"polars_lazy::prelude::LiteralValue"],[1611,"polars_lazy::prelude::LogicalPlan"]],"d":["Domain specific language for the Lazy API.","Helper to delay a failing method until the query plan is …","Lazy variant of a DataFrame.","","","","","","","","","","","","","","","","","","","","","Intermediate state of a chained …","Intermediate state of a chained …","","","","","","","","Special case that does not need columns","","","","","","Arguments used by datetime in order to produce an Expr of …","","","","","Arguments used by duration in order to produce an Expr of …","","","","Can be used in a select statement to exclude a column from …","","","","Explode the aggregated list and just do a hstack instead …","Expressions that can be used in various contexts. Queries …","","","","","","","","","","Map the group values to the position","","","","","","","","","","","","Join the groups as ‘List<group_dtype>’ to the row …","","Set root name as Alias","","","Specialized expressions for Series of DataType::List.","","","","","","","","","","Specialized expressions for Categorical dtypes.","","","","","","","","","Take the nth column in the DataFrame","","","","","","","","","","","","","Expressions in this node should only be expanding e.g. …","A wrapper trait for any binary closure …","A wrapper trait for any closure …","","","","","","","","Wrapper type that has special equality properties …","","","","","","A ternary operation if true then “foo” else “bar”","Intermediate state of when(..).then(..).otherwise(..) …","","","","","","","","Intermediate state of when(..).then(..).otherwise(..) …","","See postgres window functions","","","","","","","","","","","","","","","","","","","","","","","","","","Convert all values to their absolute/positive value.","","Get the group indexes of the group by operation.","Rename Column.","Selects all columns. Shorthand for col("*").","Check if all boolean values are true","Create a new column with the the bitwise-and of the …","","and operation","Check if any boolean value is true","Create a new column with the the bitwise-or of the …","Append expressions. This is done by adding the chunks of …","Apply a function/closure over the groups. This should only …","Like map_binary, but used in a groupby-aggregation context.","","Apply a function/closure over the groups with many …","","Apply a function/closure over the groups of multiple …","Compute the inverse cosine of the given expression","Compute the inverse hyperbolic cosine of the given …","Compute the inverse sine of the given expression","Compute the inverse hyperbolic sine of the given expression","Compute the inverse tangent of the given expression","Compute the inverse tangent of the given expression, with …","Compute the inverse hyperbolic tangent of the given …","Return the index of the maximum value of every sublist","Get the index value that has the maximum value","Return the index of the minimal value of every sublist","Get the index value that has the minimum value","Get the index values that would sort this expression.","Get the first index of unique values of this expression.","","","Find the mean of all the values in the column named name. …","Fill missing value with next non-null.","","","Compute op(l, r) (or equivalently l op r). l and r must …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","use a cache of unique, converted dates to apply the …","","","","Casts the column given by Expr to a different type.","Cast expression to another data type.","Compute the cube root of the given expression","Ceil underlying floating point array to the highest …","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Folds the expressions from left to right keeping the first …","Create a Column Expression based on a column name.","Select multiple columns by name.","","Concat lists entries.","Check if the list array contain an element","Compute the cosine of the given expression","Compute the hyperbolic cosine of the given expression","Compute the cotangent of the given expression","Count expression","Count the values of the Series or Get counts of the group …","Compute the covariance between two columns.","Cumulatively count values from 0 to len.","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","","","","","","","","","","","Convert from radians to degrees","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Drop NaN values","Drop null values","Select multiple columns by dtype.","Select multiple columns by dtype.","Compute the entropy as -sum(pk * log(pk). where pk are …","","Compare Expr with other Expr on equality","","","","","","","","","","","","","Compare Expr with other Expr on equality where None == None","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If polars may parse matches that not contain the whole …","Exclude a column from a wildcard/regex selection.","","Calculate the exponential of all elements in the input …","Explode the utf8/ list column","Replace the floating point NaN values by a value.","Replace the null values by a value.","Filter a single column.","First column in DataFrame","Get first item of every sublist.","Get the first value in the group.","Alias for explode","","Floor underlying floating point array to the lowest …","Floor divide self by rhs.","","","","","","","","","","","","","","","","","","","","","","Accumulate over multiple columns horizontally / row wise.","","Formatting string","Fill missing value with previous non-null.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","A function that cannot be expressed with map or apply and …","Functions","Get items in every sublist by index.","","","","","Check if Expr > Expr","Check if Expr >= Expr","Whether this expression expands to multiple expressions.","","","","","","Get the head of every sublist","Get the first n elements of the Expr result","","","Aggregate the group to a Series","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Get a hold to an implementor of the Display trait that …","Get mask of finite values if dtype is Float","Check if the values of the left expression are in the …","Get mask of infinite values if dtype is Float","Get mask of NaN values if dtype is Float","Get inverse mask of NaN values if dtype is Float","A column which is false wherever expr is null, true …","Run is_not_null operation on Expr.","A column which is true wherever expr is null, false …","Run is_null operation on Expr.","Whether this expression expands to multiple expressions …","A projection that only takes a column or a column + alias.","Join all string items in a sublist and place a separator …","Keep the original root name","Last column in DataFrame","Get last item of every sublist.","Get the last value in the group.","Get lengths of the arrays in the List type.","","Create a Literal Expression from L. A literal expression …","Compute the logarithm to a given base","Compute the natural logarithm of all elements plus one in …","Get minimal value that could be hold by this dtype.","Check if Expr < Expr","Check if Expr <= Expr","Apply a function/closure once the logical plan get …","Define an alias by mapping a function over the original …","Apply a closure on the two columns that are evaluated from …","","","","","","Apply a function/closure once the logical plan get …","Apply a function/closure over multiple columns once the …","Apply a function/closure once the logical plan get …","","Apply a function/closure over multiple columns once the …","Explode the aggregated list and just do a hstack instead …","Find the maximum of all the values in the column named name…","Compute the maximum of the items in every sublist.","Reduce groups to maximum value.","Create a new column with the the maximum value per row.","Find the mean of all the values in the column named name. …","Compute the mean of every sublist and return a Series of …","Reduce groups to the mean value.","Find the median of all the values in the column named name…","Reduce groups to the median value.","Get the meta::MetaNameSpace","","","","Find the minimum of all the values in the column named name…","Compute the minimum of the items in every sublist.","Reduce groups to minimal value.","Create a new column with the the minimum value per row.","","","","","","Expr::mutate().apply(fn())","Get the number of unique values in the groups.","Reduce groups to maximum value.","Reduce groups to minimal value.","","Compare Expr with other Expr on non-equality","Compare Expr with other Expr on non-equality where …","","Construct a new DatetimeArgs set to year, month, day","Create a new DurationArgs with all fields set to lit(0). …","","","Negates a boolean column.","Negate Expr","Get the null count of the column/group","or operation","","","Get the output name of this expression.","Apply window function over a subgroup. This is similar to …","","Compute the pearson correlation between two columns.","Constant Pi","Pop latest expression and return the input(s) of the …","Raise expression to the power exponent","Add a prefix to the root column name.","Get the product aggregation of an expression","Find a specific quantile of all the values in the column …","Compute the quantile per group.","Convert from degrees to radians","Create a range literal.","Analogous to Iterator::reduce.","","Create a column of length n containing n copies of the …","","Reverse every sublist","Reverse column","Get the root column names.","Round underlying floating point array to given decimal …","Proxy of the number of rows in both sides of the joins …","","","","","Set this Series as sorted so that downstream code can use …","Shift every sublist.","Shift the values in the array by some period. See the …","Shift the values in the array by some period and fill the …","Shrink numeric columns to the minimal required datatype …","Compute the sine of the given expression","Compute the hyperbolic sine of the given expression","Slice every sublist.","Slice the Series. offset may be negative.","Sort every sublist.","Sort in increasing order. See the eager implementation.","Sort this column by the ordering of another column. Can …","Sort with given options.","Compute the square root of the given expression","Standard deviation of the values of the Series","","If set then polars will return an error if any date …","Cast expression to another data type. Throws an error if …","","","Add a suffix to the root column name.","Sum all the values in the column named name. Shorthand for …","Compute the sum the items in every sublist.","Reduce groups to the sum of all the values.","Create a new column with the the sum of the values in each …","","Get the tail of every sublist","Get the last n elements of the Expr result","Take the values by idx.","Compute the tangent of the given expression","Compute the hyperbolic tangent of the given expression","","","","Get a dot language representation of the Expression.","Get Field result of the expression. The schema is the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Undo any renaming operation like alias, keep_name.","Keep only the unique values in every sublist.","Get unique values of this expression.","Keep only the unique values in every sublist.","Get unique values of this expression, while maintaining …","Get maximal value that could be hold by this dtype.","Variance of the values of the Series","","","","","","","","","","","","","","","","","","","","","","Start a when(..).then(..).otherwise(..) expression","","","","Set the day","Set the days","Set milliseconds, microseconds, and nanoseconds","Set hour, minute, and second","Set hours, minutes, and seconds","Set the hour","Set the hours","Set the microsecond","Set the microseconds","Set the milliseconds","Set the minute","Set the minutes","Set the month","Set the nanoseconds","Set the second","Set the seconds","Set the weeks","Set the year","","","","","","","","","","","","","","","","","","","","","","function to apply","Also has the input. i.e. avg(“foo”)","","function to apply","","function arguments","","","function arguments","","","length is not yet known so we accept negative offsets","","","","","","","output dtype of the function","","","","","","","","","","","","","","","","","","","","","Specialized expressions for Series of DataType::Utf8.","","","Check if a binary value contains a literal binary.","","","","Check if a binary value ends with the given sequence.","Returns the argument unchanged.","","Calls U::from(self).","Check if a binary value starts with the given sequence.","","","","","Arguments used by datetime in order to produce an Expr of …","Arguments used by duration in order to produce an Expr of …","","","","Selects all columns. Shorthand for col("*").","Create a new column with the the bitwise-and of the …","Create a new column with the the bitwise-or of the …","Like map_binary, but used in a groupby-aggregation context.","Find the mean of all the values in the column named name. …","","","Casts the column given by Expr to a different type.","","","Folds the expressions from left to right keeping the first …","Create a Column Expression based on a column name.","Collect all LazyFrame computations.","Select multiple columns by name.","Concat multiple","","Concat lists entries.","Compute the covariance between two columns.","","","","","","","Select multiple columns by dtype.","Select multiple columns by dtype.","Accumulate over multiple columns horizontally / row wise.","Returns the argument unchanged.","","","","Calls U::from(self).","","A column which is false wherever expr is null, true …","A column which is true wherever expr is null, false …","Apply a closure on the two columns that are evaluated from …","Find the maximum of all the values in the column named name…","Create a new column with the the maximum value per row.","Find the mean of all the values in the column named name. …","Find the median of all the values in the column named name…","","","","Find the minimum of all the values in the column named name…","Create a new column with the the minimum value per row.","","","","","Negates a boolean column.","","Compute the pearson correlation between two columns.","Find a specific quantile of all the values in the column …","Create a range literal.","","Analogous to Iterator::reduce.","Create a column of length n containing n copies of the …","","","Sum all the values in the column named name. Shorthand for …","Create a new column with the the sum of the values in each …","","","","","","","","","Specialized expressions for Series of DataType::Utf8.","","","Check if this column of strings contains a Regex. If strict…","Check if a string value contains a literal substring.","Count all successive non-overlapping regex matches.","","","","Check if a string value ends with the sub string.","","Extract a regex pattern from the a string value. If …","Extract each successive non-overlapping match in an …","Returns the argument unchanged.","","Calls U::from(self).","Return the number of bytes in the string (not characters).","Remove leading characters, or whitespace if matches is …","Return the number of characters in the string (not bytes).","Replace values that match a regex pat with a value.","Replace all values that match a regex pat with a value.","Replace values that match a regex pat with a value.","Remove trailing characters, or whitespace if matches is …","Split the string by a substring. The resulting dtype is …","Split the string by a substring and keep the substring. …","Check if a string value starts with the sub string.","Slice the string values.","Remove leading and trailing characters, or whitespace if …","Convert all characters to lowercase.","Convert all characters to uppercase.","","","","","AllowedOptimizations","","","","","Reads LazyFrame from a filesystem or a cloud storage. …","Lazy abstraction over an eager DataFrame. It really is an …","Utility struct for lazy groupby operation.","","State of the allowed optimizations","","","","","","","","","","","","Group by and aggregate.","Allow parallel table evaluation.","","","Apply a function over the groups as a new DataFrame. It is …","","","","","","","","","","","","","","","","","","","","","Caches the result into a new LazyFrame. This should be …","","","","","","","","","","","","","","","","","","","CloudOptions used to list files.","CloudOptions used to list files.","","Execute all the lazy operations and collect them into a …","Recommended concatenation of LazyFrames from many input …","Recommended concatenation of LazyFrames from many input …","","Creates the cartesian product from both frames, preserves …","","","","","","","","","","","","","","","","","","","","","","","","Explain the optimized logical plan.","Explain the naive logical plan.","","","","","","","","","","Removes columns from the DataFrame. Note that its better …","Drop null rows.","Explain the logical plan.","Apply explode operation. See eager explode.","Fetch is like a collect operation, but it overwrites the …","","Fill NaN values in the DataFrame","Fill none values in the DataFrame","Filter by some predicate expression.","Get the final LazyFrame.","Get the final LazyFrame.","Finish builder","Get the final LazyFrame. This method assumes, that path is …","","","Get the first row.","","Force parallel table evaluation.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Get current optimizations","Get list of files referenced by this reader.","Get list of files referenced by this reader.","Group by and aggregate.","Similar to groupby, but order of the DataFrame is …","Set whether the CSV file has headers","Return first n rows of each group","Select the join type.","","","","","","","","","","","Join query with other lazy query.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Generic join function that can join on multiple columns.","Control more join options with the join builder.","Get the last row","","Join query with other lazy query.","The columns you want to join the left table on.","Limit the DataFrame to the first n rows. Note if you don’…","","","Reduce memory usage in expensive of performance","Reduce memory usage in expensive of performance","","Apply a function/closure once the logical plan get …","Aggregate all the columns as their maximum values.","Aggregate all the columns as their mean values.","Aggregate all the columns as their median values.","Melt the DataFrame from wide to long format","","Aggregate all the columns as their minimum values.","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","","","","","","","","Aggregate all the columns as the sum of their null value …","The columns you want to join both tables on.","","Join query with other lazy query.","","Path of the scanned file. It can be potentially a glob …","","","","Profile a LazyFrame.","","Aggregate all the columns as their quantile values.","Rechunk the memory to contiguous chunks when parsing is …","","","","","Rename columns in the DataFrame.","Reverse the DataFrame","The columns you want to join the right table on.","Add a row_count column.","Add a row_count column.","Add a row_count column.","","","","","Create a LazyFrame directly from a ipc scan.","Create a LazyFrame directly from a parquet scan.","","Get a hold on the schema of the current LazyFrame …","","Select (and rename) columns from the query.","Shift the values by a given period and fill the parts that …","Shift the values by a given period and fill the parts that …","","Stream a query result into an ipc/arrow file. This is …","Stream a query result into a parquet file. This is useful …","","Slice the DataFrame.","","Add a sort operation to the logical plan.","Add a sort operation to the logical plan.","Aggregate all the columns as their standard deviation …","","Suffix to add duplicate column names in join. Defaults to …","Aggregate all the columns as their sum values.","Get the last n rows","Return last n rows of each group","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Keep unique rows, do not maintain order","Keep unique rows and maintain order","","","Aggregate all the columns as their variance values.","","","","","","","","","","The table to join with.","","Cache the DataFrame after reading.","Add a column to a DataFrame","Add multiple columns to a DataFrame.","Set the comment character. Lines starting with this …","","Set the CSV file’s column delimiter as a byte character","Overwrite the schema with the dtypes in this given Schema. …","Set CsvEncoding","Set the char used as end of line. The default is b'\\\\n'.","Continue with next batch when a ParserError is encountered.","Set the number of rows to use when inferring the csv …","Set the number of rows to use when inferring the json …","Treat missing fields as null.","Try to stop parsing when n rows are parsed. During …","Try to stop parsing when n rows are parsed. During …","Set values that will be interpreted as missing/ null.","Set allowed optimizations","Set path of the scanned file. Support glob patterns.","","","Toggle predicate pushdown optimization.","Toggle projection pushdown optimization.","Set the char used as quote char. The default is b'"'. If …","Rechunk the memory to contiguous chunks when parsing is …","Rechunk the memory to contiguous chunks when parsing is …","Rechunk the memory to contiguous chunks when parsing is …","Add a row_count column.","Add a row_count column.","Add a new column at index 0 that counts the rows.","Set the CSV file’s schema","Set the JSON file’s schema","Modify a schema before we run the lazy scanning.","Toggle expression simplification optimization on or off","Skip the first n rows during parsing. The header will be …","Skip this number of rows after the header location.","Toggle slice pushdown optimization","Allow (partial) streaming engine","Toggle type coercion optimization.","Turn off all optimizations","","","","Executors will evaluate physical expressions and collect …","","","","Take a DataFrame and evaluate the expressions. Implement …","Wrapper struct that allow us to use a PhysicalExpr in …","","Convert to a partitioned aggregator.","Can take &dyn Statistics and determine of a file should be …","","","","","","","","","","","","Take a DataFrame and evaluate the expression.","","Some expression that are not aggregations can be done per …","This is called in partitioned aggregation. Partitioned …","","Called to merge all the partitioned results in a final …","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Calls U::from(self).","Calls U::from(self).","","","Get the output field of this expr","","","","","","","","","","Groupby aggregation","","","","A raw binary array","A binary true or false.","Cache the input at this point in the LP","In memory DataFrame","Remove duplicates from the table","Catches errors and throws them later","This allows expressions to access other tables","","A 32-bit floating point number.","A 64-bit floating point number.","Adding columns to the table without a Join","A 32-bit integer number.","A 64-bit integer number.","","Join operation","","","","","A (User Defined) Function","","The literal Null","","","Column selection","","","Filter on a boolean mask","","Slice the table","Sort the table","An unsigned 32-bit integer number.","An unsigned 64-bit integer number.","","A UTF8 encoded string type.","","","","","","specify if the scan provider should allow predicate …","specify if the scan provider should allow projection …","specify if the scan provider should allow slice pushdowns","","","","","","","","","","","","","","","","","","","","","","","","Data page compression","Data page compression","if None will be 1024^2 bytes","","","","","","","","","","","","","","","","","","Arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Getter for the DataType of the value","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Literal expression.","","","maintain the order the data was processed","maintain the order the data was processed","","","","If None will be all written to a single row group.","Creates a dataframe from the supplied function & scan …","function to supply the schema. Allows for an optional …","","","","Compute and write column statistics.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,19,3,0,22,3,37,26,3,37,19,3,19,0,19,0,3,19,0,0,19,19,3,3,19,19,22,3,19,19,19,19,19,0,26,19,35,3,0,19,26,26,3,0,19,3,44,0,19,3,22,19,26,3,0,0,0,44,26,26,22,37,37,37,37,37,37,37,37,44,0,3,22,19,0,3,19,19,19,26,26,22,22,22,0,22,26,26,26,22,35,26,26,3,19,0,26,26,19,22,0,3,0,19,0,19,3,0,0,19,19,19,19,3,3,3,0,22,19,0,22,3,3,0,19,19,26,0,19,19,22,0,3,3,0,0,26,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,2,2,2,2,3,3,3,3,0,3,0,42,3,3,0,3,3,0,3,3,3,0,3,3,3,3,3,3,3,20,3,20,3,3,3,42,22,0,3,0,3,0,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,41,54,51,46,0,3,3,3,3,3,3,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,0,0,0,0,0,20,3,3,3,0,3,0,3,3,3,3,3,38,39,40,3,16,16,16,39,41,42,43,44,3,20,2,31,32,33,34,22,3,35,26,16,16,37,19,38,39,40,41,42,43,44,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,3,3,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,3,3,0,0,3,22,3,3,35,26,16,16,37,19,40,41,42,43,44,3,3,3,3,3,35,35,35,35,26,26,26,26,37,37,37,37,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,41,3,3,3,3,3,3,3,0,20,3,3,16,3,3,51,46,54,55,3,3,35,26,26,16,37,37,19,19,38,39,40,41,42,43,44,0,42,41,3,20,2,31,32,33,34,22,3,3,3,3,3,3,3,3,3,3,35,26,16,16,16,16,16,37,19,19,19,19,38,39,40,41,42,43,44,16,3,0,20,47,14,51,55,3,3,2,3,35,37,40,41,20,3,38,39,3,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,3,74,2,3,3,3,3,3,0,3,0,3,2,2,20,3,0,20,3,20,3,0,3,3,3,3,3,3,3,0,3,16,16,16,16,3,0,3,3,0,43,0,20,3,0,0,20,3,0,3,3,38,39,39,0,20,3,0,40,38,39,38,3,3,3,3,3,39,3,3,16,38,39,3,3,0,3,3,3,32,34,2,3,3,0,3,2,3,3,3,0,3,3,0,0,3,0,3,20,3,2,3,42,42,16,38,39,3,20,3,3,3,3,3,20,3,20,3,3,3,3,3,3,41,3,0,3,3,0,20,3,0,16,20,3,3,3,3,0,31,33,3,3,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,3,3,26,37,19,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,51,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,2,20,3,20,3,3,3,20,2,31,32,33,34,22,3,35,26,16,37,19,38,39,40,41,42,43,44,39,0,32,34,40,38,39,39,38,39,38,39,38,39,39,38,39,38,39,38,39,39,38,3,38,133,134,135,133,134,135,133,136,137,138,139,140,138,140,141,142,138,143,144,145,146,143,147,142,145,139,148,147,149,148,148,149,141,145,146,147,146,147,146,144,149,140,144,150,151,152,153,154,152,154,150,155,156,157,158,159,160,161,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,78,0,0,0,0,0,78,78,0,78,78,0,0,0,0,0,0,0,0,38,39,78,78,78,78,0,0,0,78,38,39,78,78,74,0,0,0,0,0,0,0,38,39,39,0,0,38,39,38,39,0,78,0,0,0,78,0,0,38,39,0,0,78,78,78,78,78,78,39,38,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,91,92,85,93,87,82,83,94,83,84,85,82,83,85,84,91,92,85,93,87,82,83,94,84,91,92,85,93,87,82,83,94,82,82,92,93,91,92,85,93,87,82,83,94,91,92,85,93,87,82,83,94,162,162,93,82,162,162,91,82,92,93,87,82,94,84,91,92,85,93,87,82,83,94,84,91,92,85,93,87,82,83,94,82,82,84,91,92,85,93,87,82,83,94,82,82,82,82,82,94,82,82,82,162,162,84,162,91,85,82,94,84,84,91,92,85,93,87,82,82,83,94,82,162,162,82,82,91,83,84,87,84,91,92,85,93,87,82,83,94,82,84,91,92,85,93,87,82,83,94,82,82,82,163,82,84,82,82,83,91,85,93,82,82,82,82,82,92,82,162,91,85,92,93,87,87,84,91,85,82,84,82,82,93,162,91,85,94,82,94,82,162,91,85,92,93,82,82,84,162,91,85,92,93,87,85,82,82,85,82,87,82,82,82,94,82,82,87,82,94,82,82,82,94,84,82,82,83,82,82,91,92,85,93,87,82,83,94,82,84,91,92,85,93,87,82,83,94,84,91,92,85,93,87,82,83,94,94,84,91,92,85,93,87,82,83,94,82,82,93,84,82,84,91,92,85,93,87,82,83,94,84,85,91,82,82,91,82,91,91,91,91,91,91,85,91,91,85,91,82,162,91,85,82,82,91,162,91,85,91,85,82,91,85,91,82,91,91,82,82,82,82,0,0,0,0,124,0,0,0,0,122,122,122,119,119,121,119,121,119,121,119,121,119,121,122,119,122,117,119,117,122,121,119,121,119,119,121,119,121,122,122,122,119,121,119,121,119,121,119,121,0,97,0,97,0,126,126,97,97,97,97,97,97,126,126,97,126,126,0,97,0,0,97,0,97,0,0,126,0,97,126,97,97,126,97,97,126,126,97,126,126,112,111,109,97,86,86,86,86,131,126,112,111,109,97,131,126,112,111,109,97,126,112,111,109,97,126,112,111,109,97,112,111,112,112,111,109,97,131,126,112,111,109,97,131,126,112,111,109,97,97,97,131,126,112,111,109,97,126,112,111,109,112,112,112,112,111,111,111,111,109,109,109,109,86,126,112,111,109,97,109,131,126,112,111,109,97,126,131,126,112,111,109,97,131,126,112,111,109,97,68,131,126,112,111,109,109,109,112,86,86,97,109,109,112,97,126,126,112,111,109,97,131,126,126,112,111,109,97,131,126,112,111,109,97,131,126,112,111,109,97,131,126,112,111,109,97,109,164,164,164,165,165,166,166,167,168,169,170,171,172,173,174,175,175,174,176,168,177,168,171,172,165,173,178,166,179,176,170,167,180,181,181,182,165,181,179,165,179,174,165,181,178,182,169,175,180,174,177,175,169,181,175,169,171,172,165,181,173,167,169],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[2,3],[[2,3],[[5,[3,4]]]],[[2,3],[[5,[3,4]]]],[[2,3],[[5,[3,4]]]],[3,3],[[3,3]],[3,3],[[3,6],3],[[],3],[[3,7],3],[[[9,[[8,[3]]]]],3],0,[[3,[10,[3]]],3],[[3,7],3],[[[9,[[8,[3]]]]],3],[[3,[10,[3]],7],3],[[3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[3,3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[3,17],[[5,[18,4]]]],[[3,[0,[11,12,13]],[8,[3]],[16,[[15,[14]]]]],3],[[3,19,[8,[3]],7,7],3],[[[0,[11,12,13]],[9,[[8,[3]]]],[16,[[15,[14]]]],7],3],[3,3],[3,3],[3,3],[3,3],[3,3],[[3,3],3],[3,3],[20,3],[3,3],[20,3],[3,3],[[3,21],3],[3,3],0,[22,3],[6,3],[[3,[24,[23]]],3],0,[3,25],[[3,26,3],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[6,[[5,[27,4]]]],[[[8,[28]]],[[5,[[24,[28]],4]]]],[[28,28],[[5,[28,4]]]],[[3,29],3],[[3,29],3],[3,3],[3,3],[[3,30,30],3],[[3,30],3],[[3,30],3],[31,31],[32,32],[33,33],[34,34],[22,22],[3,3],[35,35],[26,26],[[[16,[36]]],[[16,[36]]]],[37,37],[19,19],[38,38],[39,39],[40,40],[41,41],[42,42],[43,43],[44,44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[8,[3]]],3],[6,3],[[[45,[27]]],3],[[[9,[[8,[[0,[[10,[3]],36]]]]]],7],[[5,[3,4]]]],[[[9,[[8,[[0,[[10,[3]],36]]]]]]],[[5,[3,4]]]],[[20,[10,[3]]],3],[3,3],[3,3],[3,3],[[],3],[3,3],[[3,3],3],[[3,7],3],[[3,7],3],[[3,7],3],[[3,7],3],[[3,7],3],0,0,0,[[],3],[[],[[16,[[15,[46]]]]]],[[],[[16,[[15,[14]]]]]],[[],[[16,[[15,[47]]]]]],[[],39],[[],41],[[],42],[[],43],[[],44],[3,3],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[16],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[[3,3]],[[3,[10,[3]]],3],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[3,3],[3,3],[29,3],[[[9,[[8,[29]]]]],3],[[3,49,7],3],[[22,22],7],[[3,[10,[3]]],3],[[3,3],7],[[35,35],7],[[26,26],7],[[[16,[28]],[16,[28]]],7],[[[16,[[15,[50]]]],[16,[[15,[50]]]]],7],[[37,37],7],[[19,19],7],[[40,40],7],[[41,41],7],[[42,42],7],[[43,43],7],[[44,44],7],[[3,[10,[3]]],3],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],0,[[3,[45,[27]]],3],[[3,[9,[[8,[29]]]]],3],[3,3],[3,3],[[3,[10,[3]]],3],[[3,[10,[3]]],3],[[3,[10,[3]]],3],[[],3],[20,3],[3,3],[3,3],[[],[[16,[[15,[14]]]]]],[3,3],[[3,3],3],[[51,52],[[5,[53]]]],[[46,52],[[5,[53]]]],[[54,52],[[5,[53]]]],[[55,52],[[5,[53]]]],[[3,52],[[5,[53]]]],[[3,52],[[5,[53]]]],[[35,52],[[5,[53]]]],[[26,52],[[5,[53]]]],[[26,52],[[5,[53]]]],[[16,52],[[5,[53]]]],[[37,52],[[5,[53]]]],[[37,52],[[5,[53]]]],[[19,52],[[5,[53]]]],[[19,52],[[5,[53]]]],[[38,52],[[5,[53]]]],[[39,52],[[5,[53]]]],[[40,52],[[5,[53]]]],[[41,52],[[5,[53]]]],[[42,52],[[5,[53]]]],[[43,52],[[5,[53]]]],[[44,52],[[5,[53]]]],[[3,[0,[11,12,13,36]],[9,[[8,[3]]]]],3],0,0,[[3,[24,[23]]],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[49,3],[23,3],[56,3],[57,3],[7,3],[58,3],[59,3],[[]],[22,3],[6,3],[[]],[[]],[60,[[16,[[15,[51]]]]]],[19,[[16,[[15,[51]]]]]],[37,[[16,[[15,[51]]]]]],[[]],[61,[[16,[[15,[51]]]]]],[[]],[61,19],[60,19],[37,19],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[29,[[16,[[15,[14]]]]]],[[3,[0,[11,12,13]],[16,[[15,[14]]]],62],3],0,[[20,3],3],[[63,64,65,65],[[24,[65]]]],[[63,64,[8,[65]]],65],[[],[[24,[[16,[[15,[14]]]]]]]],[63,[[5,[[15,[63]],4]]]],[[3,[10,[3]]],3],[[3,[10,[3]]],3],[2,7],[[3,66]],[[35,66]],[[37,66]],[[40,66]],[[41,66]],[[20,3],3],[[3,[24,[48]]],3],0,0,[3,3],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3],[[],3],[2,[[5,[67,4]]]],[3,3],[[3,[10,[3]]],3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[2,7],[2,7],[[20,6],3],[3,3],[[],3],[20,3],[3,3],[20,3],[3,20],[68,3],[[3,49],3],[3,3],[3,3],[[3,[10,[3]]],3],[[3,[10,[3]]],3],[[3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[3,[0,[11,12,13]]],3],[[3,3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[3,17],[[5,[3,4]]]],[[[0,[11,12,13]]],[[16,[[15,[14]]]]]],[[[0,[11,12,13]]],[[16,[[15,[14]]]]]],[[[0,[11,12,13]]],[[16,[[15,[14]]]]]],[[[0,[11,12,13]]],[[16,[[15,[14]]]]]],[[3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[[[0,[11,12,13]],[9,[[8,[3]]]],[16,[[15,[14]]]]],3],[[3,[0,[11,12,13]],[8,[3]],[16,[[15,[14]]]]],3],[[3,19,[8,[3]],7],3],[[[0,[11,12,13]],[9,[[8,[3]]]],[16,[[15,[14]]]]],3],0,[6,3],[20,3],[3,3],[[[9,[[8,[3]]]]],3],[6,3],[20,3],[3,3],[6,3],[3,3],[3,2],0,0,0,[6,3],[20,3],[3,3],[[[9,[[8,[3]]]]],3],0,0,0,0,[[3,3]],[3,69],[3,3],[3,3],[3,3],0,[[3,[10,[3]]],3],[[3,[10,[3]]],3],[[],16],[[3,3,3],38],[[],39],[[3,[71,[3,70]]]],[[3,[71,[3,70]]]],[3,3],[3,3],[3,3],[[3,[10,[3]]],3],[[32,[10,[3]]],3],[[34,[10,[3]]],3],[2,[[5,[[15,[6]],4]]]],[[3,[9,[[8,[[0,[[10,[3]],36]]]]]]],3],[[3,[9,[[8,[[0,[[10,[3]],36]]]]]],43],3],[[3,3,72],3],[[],3],[2,[[71,[3,70]]]],[[3,[10,[3]]],3],[[3,6],3],[3,3],[[6,3,73],3],[[3,3,73],3],[3,3],[[[74,[[74,[[74,[[74,[74]]]]]]]],[74,[[74,[[74,[[74,[74]]]]]]]]],3],[[[0,[11,12,13,36]],[9,[[8,[3]]]]],3],[[3,3]],[[[10,[3]],3],3],[[3,[8,[57]]],3],[20,3],[3,3],[2,[[71,[[15,[6]],70]]]],[[3,23],3],0,0,[[],[[16,[[15,[14]]]]]],0,0,[[3,75],3],[[20,57],3],[[3,57],3],[[3,57,[10,[3]]],3],[3,3],[3,3],[3,3],[[20,3,3],3],[[3,[10,[3]],[10,[3]]],3],[[20,21],3],[[3,7],3],[[3,[9,[[8,[[0,[[10,[3]],36]]]]]],[9,[[8,[7]]]]],3],[[3,21],3],[3,3],[[3,72],3],[3,76],0,[[3,29],3],0,[[3,3]],[[3,6],3],[6,3],[20,3],[3,3],[[[9,[[8,[3]]]]],3],[[],[[16,[[15,[14]]]]]],[[20,3],3],[[3,[24,[48]]],3],[[3,[10,[3]]],3],[3,3],[3,3],[[3,3,3],3],[[31,[10,[3]]],32],[[33,[10,[3]]],34],[3,[[5,[27,4]]]],[[3,63,64],[[5,[65,4]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3,3],[[],27],[[],27],[[],27],[[],27],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[[71,[72,70]]],[[5,[4]]]],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[2,3],[20,3],[3,3],[20,3],[3,3],[3,3],[[3,72],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[[10,[3]]],31],[[32,[10,[3]]],33],[[34,[10,[3]]],33],0,[[38,3],38],[[39,3],39],[[39,3,3,3],39],[[38,3,3,3],38],[[39,3,3,3],39],[[38,3],38],[[39,3],39],[[38,3],38],[[39,3],39],[[39,3],39],[[38,3],38],[[39,3],39],[[38,3],38],[[39,3],39],[[38,3],38],[[39,3],39],[[39,3],39],[[38,3],38],[[3,[10,[3]]],3],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[25,[9,[[8,[72]]]]],3],[48],[48],[48],[[25,[9,[[8,[72]]]]],3],[[]],[[],48],[[]],[[25,[9,[[8,[72]]]]],3],[[],5],[[],5],[[],77],[[]],0,0,0,0,[1],[[],3],[[[9,[[8,[3]]]]],3],[[[9,[[8,[3]]]]],3],[[3,3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[6,3],[[]],[[]],[[3,29],3],[78,78],[[]],[[[8,[3]]],3],[6,3],[79,[[81,[[71,[80]]]]]],[[[45,[27]]],3],[[[9,[[8,[82]]]],78],[[81,[82]]]],[[[9,[[8,[[0,[[10,[3]],36]]]]]],7],[[5,[3,4]]]],[[[9,[[8,[[0,[[10,[3]],36]]]]]]],[[5,[3,4]]]],[[3,3],3],0,0,[[],78],[48],[48],[48],[29,3],[[[9,[[8,[29]]]]],3],[[3,[0,[11,12,13,36]],[9,[[8,[3]]]]],3],[[]],0,0,[[],48],[[]],[[],3],[3,3],[3,3],[[3,3,[0,[11,12,13]],[16,[[15,[14]]]]],3],[6,3],[[[9,[[8,[3]]]]],3],[6,3],[6,3],0,0,0,[6,3],[[[9,[[8,[3]]]]],3],0,0,0,0,[3,3],0,[[3,3,72],3],[[6,3,73],3],[[[74,[[74,[[74,[[74,[74]]]]]]]],[74,[[74,[[74,[[74,[74]]]]]]]]],3],0,[[[0,[11,12,13,36]],[9,[[8,[3]]]]],3],[[[10,[3]],3],3],0,0,[6,3],[[[9,[[8,[3]]]]],3],[[]],0,[[],5],[[],5],[[],77],[[]],0,0,0,[[]],[[]],[[76,3,7],3],[[76,3],3],[[76,6],3],[48],[48],[48],[[76,3],3],[76,3],[[76,6,48],3],[[76,3],3],[[]],[[],48],[[]],[76,3],[[76,[24,[27]]],3],[76,3],[[76,3,3,7],3],[[76,3,3,7],3],[[76,3,3,7,57],3],[[76,[24,[27]]],3],[[76,6],3],[[76,6],3],[[76,3],3],[[76,57,[24,[59]]],3],[[76,[24,[27]]],3],[76,3],[76,3],[[],5],[[],5],[[],77],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[[83,[9,[[8,[3]]]]],82],[[84,7],84],[85,7],[[[15,[86]],87],[[81,[82]]]],[[83,[0,[11,12,13]],88],82],[85,89],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[82,90,[9,[[8,[3]]]],[9,[[8,[7]]]],7,7],82],[82,82],0,0,[91,91],[92,92],[85,85],[93,93],[87,87],[82,82],[83,83],[94,94],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[24,[95]]]],[[],[[24,[95]]]],0,[82,[[81,[80]]]],[[[71,[82]]],[[81,[82]]]],[[[71,[82]]],[[81,[82]]]],[[91,[71,[82]]],[[81,[82]]]],[[82,82],82],[[],92],[[],93],[[],87],[[],82],[[],94],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[82,[[81,[27]]]],[82,27],[48],[48],[48],[48],[48],[48],[48],[48],[48],[[82,96],82],[[82,[24,[[71,[3]]]]],82],[[82,7],[[81,[27]]]],[[82,[9,[[8,[[0,[[10,[3]],36]]]]]]],82],[[82,48],[[81,[80]]]],0,[[82,[10,[3]]],82],[[82,[10,[3]]],82],[[82,3],82],[[],[[81,[82]]]],[[],[[81,[82]]]],[84,82],[[],[[81,[82]]]],[91,[[81,[82]]]],[85,[[81,[82]]]],[82,82],[[94,52],[[5,[53]]]],[[84,7],84],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[97,82],[[]],[[]],[82,94],[[],[[81,[[24,[98]]]]]],[[],[[81,[[24,[98]]]]]],[[82,[9,[[8,[[0,[[10,[3]],36]]]]]]],83],[[82,[9,[[8,[[0,[[10,[3]],36]]]]]]],83],[[91,7],91],[[83,[24,[48]]],82],[[84,99],84],0,[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[82,82,[10,[3]],[10,[3]]],82],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[82,82,[9,[[8,[3]]]],[9,[[8,[3]]]],100],82],[82,84],[82,82],[[],82],[[82,82,[10,[3]],[10,[3]]],82],[[84,[9,[[8,[3]]]]],84],[[82,90],82],0,0,[[91,7],91],[[85,7],85],0,[[82,[0,[11,12,13]],101,[24,[[15,[55]]]],[24,[6]]],82],[82,82],[82,82],[82,82],[[82,102],82],0,[82,82],[[],[[24,[48]]]],[91,[[24,[48]]]],[85,[[24,[48]]]],0,0,0,0,[82,84],[[[9,[103]]],91],[[[9,[103]]],85],[82,82],[[84,[9,[[8,[3]]]]],84],[[82,[105,[104]],[105,[106]]],[[81,[107]]]],[[82,82,[10,[3]],[10,[3]]],82],0,[[],103],[91,103],[85,103],0,[82,81],0,[[82,3,73],82],[[],7],[91,7],[85,7],0,0,[[82,96,96],82],[82,82],[[84,[9,[[8,[3]]]]],84],[[],[[24,[108]]]],[91,[[24,[108]]]],[85,[[24,[108]]]],0,0,0,[[85,109],[[81,[80]]]],[[[9,[103]],92],[[81,[82]]]],[[[9,[103]],93],[[81,[82]]]],[[85,[24,[48]]],[[81,[63]]]],[82,[[81,[88]]]],0,[[82,[9,[[8,[3]]]]],82],[[82,57],82],[[82,57,[10,[3]]],82],0,[[82,110,111],81],[[82,110,112],81],0,[[82,57,90],82],0,[[82,6,21],82],[[82,[9,[[8,[3]]]],[9,[[8,[7]]]],7,7],82],[[82,72],82],0,[[84,[9,[6]]],84],[82,82],[[82,90],82],[[83,[24,[48]]],82],[82,81],[82,81],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[82,90,[9,[[8,[3]]]],[9,[[8,[7]]]],7,7],82],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[82,[24,[[71,[27]]]],113],82],[[82,[24,[[71,[27]]]],113],82],0,[[84,114],84],[[82,72],82],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[84,82],84],[[85,[24,[48]]],85],[[91,7],91],[[82,3],82],[[82,[9,[[8,[3]]]]],82],[[91,[24,[72]]],91],[[82,[9,[[8,[82]]]]],82],[[91,72],91],[[91,[24,[63]]],91],[[91,115],91],[[91,72],91],[[91,7],91],[[91,[24,[48]]],91],[[85,[24,[48]]],85],[[91,7],91],[[91,[24,[48]]],91],[[85,[24,[48]]],85],[[91,[24,[116]]],91],[[82,94],82],[110],[[91,110],91],[[85,110],85],[[82,7],82],[[82,7],82],[[91,[24,[72]]],91],[7],[[91,7],91],[[85,7],85],[[91,[24,[108]]],91],[[85,[24,[108]]],85],[[82,6,[24,[90]]],82],[[91,88],91],[[85,63],85],[[91,11],[[81,[91]]]],[[82,7],82],[[91,48],91],[[91,48],91],[[82,7],82],[[82,7],82],[[82,7],82],[82,82],0,0,0,0,0,0,0,0,0,[[],[[24,[3]]]],[[],[[24,[117]]]],[[],[[24,[118]]]],[119,[[24,[118]]]],[[]],[[]],[[]],[[]],[48],[48],[48],[48],[48],[48],0,[[119,80],[[81,[28]]]],0,0,0,0,[[122,52],123],[[121,52],123],[[]],[[]],0,[[],48],[[],48],[[]],[[]],[[],7],[[],7],[63,[[81,[65]]]],[[],5],[[],5],[[],5],[[],5],[[],77],[[],77],[[]],[[]],[[107,[105,[104]],[105,[106]]],[[81,[[125,[124]]]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[[],7],[[],7],[[],7],[[],89],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[126,126],[112,112],[111,111],[109,109],[97,97],[[]],[[]],[[]],[[]],[[]],0,0,0,[[],112],[[],111],[[],109],[[],97],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[48],[97,27],[[97,27,127,[130,[27,27,128,129]]],[[5,[53]]]],[48],[48],[48],[48],[48],[48],[[126,126],7],[[112,112],7],[[111,111],7],[[109,109],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[],7],[[86,52],[[5,[53]]]],[[126,52],[[5,[53]]]],[[112,52],[[5,[53]]]],[[111,52],[[5,[53]]]],[[109,52],[[5,[53]]]],[[97,52],[[5,[53]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[126,29],[[],48],[[],48],[[],48],[[],48],[[],48],[[],48],[[]],[[]],[[]],[[]],[[]],[[]],[[],3],[131,3],[126,3],0,0,0,0,0,0,[109,[[5,[80,4]]]],[[[24,[48]]],[[5,[63,4]]]],[97,[[5,[[132,[[15,[63]]]],4]]]],0,0,0,[97,[[5,[4]]]],[126,[[24,[30]]]],[[]],[[]],[[]],[[]],[[]],[[],5],[30,[[5,[126,4]]]],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],77],[[],77],[[],77],[[],77],[[],77],[[],77],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"c":[],"p":[[3,"Private"],[3,"MetaNameSpace"],[4,"Expr"],[4,"PolarsError"],[4,"Result"],[15,"str"],[15,"bool"],[15,"slice"],[8,"AsRef"],[8,"Into"],[8,"Fn"],[8,"Send"],[8,"Sync"],[8,"FunctionOutputField"],[3,"Arc"],[3,"SpecialEq"],[8,"FnMut"],[4,"VisitRecursion"],[4,"FunctionExpr"],[3,"ListNameSpace"],[3,"SortOptions"],[4,"AggExpr"],[15,"u32"],[4,"Option"],[3,"BinaryNameSpace"],[4,"Operator"],[3,"String"],[3,"Series"],[4,"DataType"],[4,"AnyValue"],[3,"When"],[3,"Then"],[3,"ChainedWhen"],[3,"ChainedThen"],[4,"Excluded"],[8,"Clone"],[4,"BooleanFunction"],[3,"DatetimeArgs"],[3,"DurationArgs"],[3,"RollingCovOptions"],[3,"StrptimeOptions"],[3,"JoinOptions"],[3,"WindowOptions"],[4,"WindowMapping"],[8,"IntoVec"],[8,"SeriesBinaryUdf"],[8,"BinaryUdfOutputField"],[15,"usize"],[15,"f64"],[8,"Sized"],[8,"SeriesUdf"],[3,"Formatter"],[3,"Error"],[8,"RenameAliasFn"],[8,"UdfSchema"],[15,"f32"],[15,"i64"],[15,"i32"],[15,"u64"],[4,"StringFunction"],[4,"BinaryFunction"],[3,"FunctionOptions"],[3,"Schema"],[4,"Context"],[3,"Field"],[8,"Hasher"],[8,"Display"],[8,"Literal"],[3,"ExprMut"],[3,"Global"],[3,"Vec"],[15,"u8"],[4,"QuantileInterpolOptions"],[8,"Range"],[4,"IsSorted"],[3,"StringNameSpace"],[3,"TypeId"],[3,"UnionArgs"],[8,"IntoParallelIterator"],[3,"DataFrame"],[6,"PolarsResult"],[3,"LazyFrame"],[3,"LazyGroupBy"],[3,"JoinBuilder"],[3,"LazyJsonLineReader"],[8,"AnonymousScan"],[3,"ScanArgsAnonymous"],[6,"SchemaRef"],[8,"Any"],[6,"IdxSize"],[3,"LazyCsvReader"],[3,"ScanArgsIpc"],[3,"ScanArgsParquet"],[3,"OptState"],[3,"CloudOptions"],[8,"IntoIterator"],[4,"LogicalPlan"],[6,"GlobIterator"],[4,"JoinType"],[3,"JoinArgs"],[6,"AllowedOptimizations"],[3,"MeltArgs"],[3,"Path"],[4,"ALogicalPlan"],[3,"Arena"],[4,"AExpr"],[3,"Node"],[3,"RowCount"],[3,"AnonymousScanOptions"],[3,"PathBuf"],[3,"IpcWriterOptions"],[3,"ParquetWriteOptions"],[4,"UniqueKeepStrategy"],[4,"JoinValidation"],[4,"CsvEncoding"],[4,"NullValues"],[8,"PartitionedAggregation"],[8,"StatsEvaluator"],[3,"PhysicalIoHelper"],[4,"GroupsProxy"],[3,"AggregationContext"],[8,"PhysicalExpr"],[6,"Result"],[8,"Executor"],[3,"Box"],[4,"LiteralValue"],[3,"DotNode"],[3,"RandomState"],[3,"Global"],[3,"HashMap"],[3,"Null"],[4,"Cow"],[13,"Quantile"],[13,"Min"],[13,"Max"],[13,"All"],[13,"Any"],[13,"SortBy"],[13,"Filter"],[13,"Cast"],[13,"Sort"],[13,"Take"],[13,"RenameAlias"],[13,"Ternary"],[13,"Function"],[13,"Window"],[13,"AnonymousFunction"],[13,"Slice"],[13,"BinaryExpr"],[13,"Entropy"],[13,"Log"],[13,"Correlation"],[13,"Round"],[13,"Clip"],[13,"ShiftAndFill"],[13,"Cumcount"],[13,"Cumsum"],[13,"Cumprod"],[13,"Cummin"],[13,"Cummax"],[13,"FillNull"],[8,"LazyFileListReader"],[8,"IntoLazy"],[13,"Range"],[13,"Aggregate"],[13,"Sort"],[13,"ExtContext"],[13,"Cache"],[13,"DataFrameScan"],[13,"Error"],[13,"LocalProjection"],[13,"Projection"],[13,"HStack"],[13,"AnonymousScan"],[13,"Scan"],[13,"MapFunction"],[13,"Selection"],[13,"Distinct"],[13,"Slice"],[13,"FileSink"],[13,"Join"],[13,"Union"]]},\ "polars_ops":{"doc":"","t":"AAIIIIIKKLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLKLLLLLLLLLLLLLLIIKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNIIININEIILKKKLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLFLLLLLLL","n":["chunked_array","prelude","AsBinary","AsUtf8","BinaryNameSpaceImpl","ChunkedSet","Utf8NameSpaceImpl","as_binary","as_utf8","base64_decode","base64_decode","concat","concat","contains","contains","contains","contains","contains_literal","contains_literal","contains_literal","contains_literal","count_match","count_match","ends_with","ends_with","ends_with","ends_with","extract","extract","extract_all","extract_all","extract_all_many","extract_all_many","hex_decode","hex_decode","list","replace","replace","replace_all","replace_all","replace_literal","replace_literal","replace_literal_all","replace_literal_all","set_at_idx2","starts_with","starts_with","starts_with","starts_with","str_lengths","str_lengths","str_n_chars","str_n_chars","str_slice","str_slice","to_lowercase","to_lowercase","to_uppercase","to_uppercase","AsList","ListNameSpaceImpl","as_list","lst_arg_max","lst_arg_max","lst_arg_min","lst_arg_min","lst_concat","lst_concat","lst_get","lst_get","lst_join","lst_join","lst_lengths","lst_lengths","lst_max","lst_max","lst_mean","lst_mean","lst_min","lst_min","lst_reverse","lst_reverse","lst_shift","lst_shift","lst_slice","lst_slice","lst_sort","lst_sort","lst_sum","lst_sum","lst_unique","lst_unique","lst_unique_stable","lst_unique_stable","same_type","same_type","Any","ArgAgg","DataFrameJoinOps","DataFrameOps","Left","LogSeries","Right","SearchSortedSide","SeriesMethods","SeriesSealed","__clone_box","arg_max","arg_min","as_series","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","entropy","entropy","eq","equivalent","equivalent","equivalent","exp","exp","floor_div_series","fmt","from","hash","init","inner_join","inner_join","into","is_sorted","is_sorted","join","join","left_join","left_join","log","log","log1p","log1p","outer_join","outer_join","search_sorted","to_owned","try_from","try_into","type_id","value_counts","value_counts","vzip"],"q":[[0,"polars_ops"],[2,"polars_ops::chunked_array"],[59,"polars_ops::chunked_array::list"],[96,"polars_ops::prelude"]],"d":["","","","","","","","","","","","Concat with the values from a second Utf8Chunked","Concat with the values from a second Utf8Chunked","Check if binary contains given literal","Check if binary contains given literal","Check if strings contain a regex pattern.","Check if strings contain a regex pattern.","Check if strings contain a given literal","Check if strings contain a given literal","Check if strings contain a given literal","Check if strings contain a given literal","Count all successive non-overlapping regex matches.","Count all successive non-overlapping regex matches.","Check if strings ends with a substring","Check if strings ends with a substring","Check if strings ends with a substring","Check if strings ends with a substring","Extract the nth capture group from pattern","Extract the nth capture group from pattern","Extract each successive non-overlapping regex match in an …","Extract each successive non-overlapping regex match in an …","Extract each successive non-overlapping regex match in an …","Extract each successive non-overlapping regex match in an …","","","","Replace the leftmost regex-matched (sub)string with …","Replace the leftmost regex-matched (sub)string with …","Replace all regex-matched (sub)strings with another string","Replace all regex-matched (sub)strings with another string","Replace the leftmost literal (sub)string with another …","Replace the leftmost literal (sub)string with another …","Replace all matching literal (sub)strings with another …","Replace all matching literal (sub)strings with another …","","Check if strings starts with a substring","Check if strings starts with a substring","Check if strings starts with a substring","Check if strings starts with a substring","Get the length of the string values as number of bytes.","Get the length of the string values as number of bytes.","Get the length of the string values as number of chars.","Get the length of the string values as number of chars.","Slice the string values Determines a substring starting …","Slice the string values Determines a substring starting …","Modify the strings to their lowercase equivalent","Modify the strings to their lowercase equivalent","Modify the strings to their uppercase equivalent","Modify the strings to their uppercase equivalent","","","","","","","","","","Get the value by index in the sublists. So index 0 would …","Get the value by index in the sublists. So index 0 would …","In case the inner dtype DataType::Utf8, the individual …","In case the inner dtype DataType::Utf8, the individual …","","","","","","","","","","","","","","","","","","","","","","","","","","Argmin/ Argmax","","","","","","","","","","Get the index of the maximal value","Get the index of the minimal value","","","","","","","","","","Compute the entropy as -sum(pk * log(pk). where pk are …","Compute the entropy as -sum(pk * log(pk). where pk are …","","","","","Calculate the exponential of all elements in the input …","Calculate the exponential of all elements in the input …","","","Returns the argument unchanged.","","","Perform an inner join on two DataFrames.","Perform an inner join on two DataFrames.","Calls U::from(self).","","","Generic join method. Can be used to join on multiple …","Generic join method. Can be used to join on multiple …","Perform a left join on two DataFrames","Perform a left join on two DataFrames","Compute the logarithm to a given base","Compute the logarithm to a given base","Compute the natural logarithm of all elements plus one in …","Compute the natural logarithm of all elements plus one in …","Perform an outer join on two DataFrames","Perform an outer join on two DataFrames","","","","","","Create a DataFrame with the unique values of this Series …","Create a DataFrame with the unique values of this Series …",""],"i":[0,0,0,0,0,0,0,30,31,32,32,32,32,33,33,32,32,33,33,32,32,32,32,33,33,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,34,33,33,32,32,32,32,32,32,32,32,32,32,32,32,0,0,35,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,21,0,0,0,21,0,21,0,0,0,21,37,37,38,21,21,21,21,21,21,21,21,39,39,21,21,21,21,39,39,0,21,21,21,21,40,40,21,41,41,40,40,40,40,39,39,39,39,40,40,0,21,21,21,21,41,41,21],"f":[0,0,0,0,0,0,0,[[],1],[[],2],[[],[[3,[2]]]],[[],[[3,[2]]]],[2,2],[2,2],[[[5,[4]]],[[3,[6]]]],[[[5,[4]]],[[3,[6]]]],[[7,8],[[3,[6]]]],[[7,8],[[3,[6]]]],[[[5,[4]]],[[3,[6]]]],[[[5,[4]]],[[3,[6]]]],[7,[[3,[6]]]],[7,[[3,[6]]]],[7,[[3,[9]]]],[7,[[3,[9]]]],[[[5,[4]]],6],[[[5,[4]]],6],[7,6],[7,6],[[7,10],[[3,[2]]]],[[7,10],[[3,[2]]]],[7,[[3,[11]]]],[7,[[3,[11]]]],[2,[[3,[11]]]],[2,[[3,[11]]]],[[],[[3,[2]]]],[[],[[3,[2]]]],0,[[7,7],[[3,[2]]]],[[7,7],[[3,[2]]]],[[7,7],[[3,[2]]]],[[7,7],[[3,[2]]]],[[7,7,10],[[3,[2]]]],[[7,7,10],[[3,[2]]]],[[7,7],[[3,[2]]]],[[7,7],[[3,[2]]]],[[[5,[12]],13],[[3,[14]]]],[[[5,[4]]],6],[[[5,[4]]],6],[7,6],[7,6],[[],9],[[],9],[[],9],[[],9],[[15,[17,[16]]],[[3,[2]]]],[[15,[17,[16]]],[[3,[2]]]],[[],2],[[],2],[[],2],[[],2],0,0,[[],11],[[],18],[[],18],[[],18],[[],18],[[[5,[14]]],[[3,[11]]]],[[[5,[14]]],[[3,[11]]]],[15,[[3,[14]]]],[15,[[3,[14]]]],[7,[[3,[2]]]],[7,[[3,[2]]]],[[],18],[[],18],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],11],[[],11],[15,11],[15,11],[[15,10],11],[[15,10],11],[19,11],[19,11],[[],14],[[],14],[[],[[3,[11]]]],[[],[[3,[11]]]],[[],[[3,[11]]]],[[],[[3,[11]]]],[11,11],[11,11],0,0,0,0,0,0,0,0,0,0,[20],[[],[[17,[10]]]],[[],[[17,[10]]]],[[],14],[[]],[[]],[21,21],[[]],[[],21],[10],[10],[10],[[22,8],[[17,[22]]]],[[22,8],[[17,[22]]]],[[21,21],8],[[],8],[[],8],[[],8],[[],14],[[],14],[[14,14],[[3,[14]]]],[[21,23],24],[[]],[[21,25]],[[],10],[[26,13,13],[[3,[26]]]],[[26,13,13],[[3,[26]]]],[[]],[19,[[3,[8]]]],[19,[[3,[8]]]],[[26,13,13,27],[[3,[26]]]],[[26,13,13,27],[[3,[26]]]],[[26,13,13],[[3,[26]]]],[[26,13,13],[[3,[26]]]],[22,14],[22,14],[[],14],[[],14],[[26,13,13],[[3,[26]]]],[[26,13,13],[[3,[26]]]],[[14,14,21,8],[[3,[18]]]],[[]],[[],28],[[],28],[[],29],[[8,8],[[3,[26]]]],[[8,8],[[3,[26]]]],[[]]],"c":[],"p":[[6,"BinaryChunked"],[6,"Utf8Chunked"],[6,"PolarsResult"],[15,"u8"],[15,"slice"],[6,"BooleanChunked"],[15,"str"],[15,"bool"],[6,"UInt32Chunked"],[15,"usize"],[6,"ListChunked"],[6,"IdxSize"],[8,"IntoIterator"],[3,"Series"],[15,"i64"],[15,"u64"],[4,"Option"],[6,"IdxCa"],[3,"SortOptions"],[3,"Private"],[4,"SearchSortedSide"],[15,"f64"],[3,"Formatter"],[6,"Result"],[8,"Hasher"],[3,"DataFrame"],[3,"JoinArgs"],[4,"Result"],[3,"TypeId"],[8,"AsBinary"],[8,"AsUtf8"],[8,"Utf8NameSpaceImpl"],[8,"BinaryNameSpaceImpl"],[8,"ChunkedSet"],[8,"AsList"],[8,"ListNameSpaceImpl"],[8,"ArgAgg"],[8,"SeriesSealed"],[8,"LogSeries"],[8,"DataFrameJoinOps"],[8,"SeriesMethods"]]},\ "polars_pipe":{"doc":"","t":"","n":[],"q":[],"d":[],"i":[],"f":[],"c":[],"p":[]},\ -"polars_plan":{"doc":"","t":"AAAAAAOOAAOHHDLLLMLLLLLMLMLLLLLLLNNENNNNNNNNNINENNDDNNNNNNNNNNNNNNNNNNNNNENNNENNNNNNEIGNNNNNNNNNNNNNDNNNDNNNNNNNNNDNNNNNNNNNNENNNNNINDNNIINNNNNNNDNNDNNNDNNNNNNDNNEDNLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLFLLLLLLLLLLLLLMLLALFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMKKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLCLLLLLLOLLLLLLLLLLLFLLFOMLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLALLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLMOLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMDLLLLLLLLLLLLLLLDDILLFFFFFLLLLFLLLLFFFFFFMMLLLLLLLFFLLFLLMMLLLLKFFFFFFFMMMFFMMMMLLFFFFFFMMFFLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGDLLLLLLLLLMLLLLMMMMMLLLMLLRFFEEDEDNNNNNNCDNNINNDIINNNNNNNENNNNNIINNNNNNEDNNDDNNNDDDENNNNNNNENNNNNNNNNNINENNEDNNNNNNNNRNENNDNNCIINNDNNDNNNNNNNNNNDDNNNNNNNNDNNNNDNNINNNNNNNLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALKKLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLFKLLLLLLMLLLLFFFFKLLLLLLLLLLMMMMLLLLLLMKLLLLLLLMMLMLMLLFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMDDNNNNQQEINNNIEIKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNNNEDDDGDDEDDNDDDNDNDDDDDLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLMMMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLMLLLLMLLLLMLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLMLMMMMMMMMMLMMMMMLMMLMMMMMMLLMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLMMIFFFFFFFFFFFFFFKF","n":["constants","dot","dsl","frame","global","logical_plan","map","map_owned","prelude","utils","wrap","CSE_REPLACED","MAP_LIST_NAME","DotNode","__clone_box","borrow","borrow_mut","branch","clone","clone_into","deref","deref_mut","drop","fmt","from","id","init","into","to_owned","try_from","try_into","type_id","vzip","Abs","Agg","AggExpr","AggGroups","Alias","All","And","AnonymousFunction","Any","Atan2","BinaryExpr","BinaryExpr","BinaryUdfOutputField","Boolean","BooleanFunction","Cast","Ceil","ChainedThen","ChainedWhen","Clip","Coalesce","Column","Columns","ConcatExpr","Correlation","Count","Count","Cumcount","Cummax","Cummin","Cumprod","Cumsum","Divide","DropNans","Dtype","DtypeColumn","Entropy","Eq","EqValidity","Exclude","Excluded","Exp","Explode","Explode","Expr","FillNull","Filter","First","Floor","FloorDivide","Function","FunctionExpr","FunctionOutputField","GetOutput","GroupsToRows","Gt","GtEq","Implode","IsFinite","IsIn","IsInfinite","IsNan","IsNot","IsNotNan","IsNotNull","IsNull","Join","JoinOptions","KeepName","Last","ListExpr","ListNameSpace","Literal","Log","Log1p","LowerBound","Lt","LtEq","Max","Mean","Median","MetaNameSpace","Min","Minus","Modulus","Multiply","NUnique","Name","NotEq","NotEqValidity","Nth","NullCount","Operator","Or","Plus","Pow","Quantile","RenameAlias","RenameAliasFn","Reverse","RollingCovOptions","Round","Selector","SeriesBinaryUdf","SeriesUdf","SetSortedFlag","Shift","ShiftAndFill","ShrinkType","Slice","Sort","SortBy","SpecialEq","Std","StringExpr","StrptimeOptions","Sum","Take","Ternary","Then","ToPhysical","Trigonometry","TrueDivide","Unique","UpperBound","Var","When","Wildcard","Window","WindowMapping","WindowOptions","Xor","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_into_selector","_selector_add","_selector_and","_selector_sub","abs","add","agg_groups","alias","all","allow_parallel","and","any","append","apply","apply_children","apply_many","apply_many_private","apply_multiple","arccos","arccosh","arcsin","arcsinh","arctan","arctan2","arctanh","arg_max","arg_max","arg_min","arg_min","arg_sort","arg_unique","args","as_ref","backward_fill","binary","binary","binary_expr","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cache","call","call_udf","call_udf","cast","cbrt","ceil","clip","clip_max","clip_min","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","contains","cos","cosh","cot","count","count","cumcount","cummax","cummin","cumprod","cumsum","ddof","default","default","default","default","default","default","default","default","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","dot","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_nans","drop_nulls","entropy","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exact","exclude","exclude_dtype","exp","explode","fill_nan","fill_null","filter","first","first","first","flatten","float_type","float_type","floor","floor_div","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","force_parallel","format","forward_fill","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_type","from_type","function_with_options","functions","get","get_field","get_field","get_output","get_output","gt","gt_eq","has_multiple_outputs","hash","hash","hash","hash","hash","head","head","implode","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_tree_formatter","is_finite","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_regex_projection","is_simple_projection","join","keep_name","last","last","last","lengths","list","lit","log","log1p","lower_bound","lt","lt_eq","map","map","map_alias","map_children","map_dtype","map_dtype","map_dtypes","map_dtypes","map_field","map_field","map_fields","map_fields","map_list","map_list_multiple","map_many","map_many_private","map_multiple","map_owned","mapping","max","max","mean","mean","median","meta","min","min","min_periods","mul","mutate","n_unique","nan_max","nan_min","neq","neq_missing","new","nodes","nodes_mut","not","null_count","or","otherwise","otherwise","output_name","over","over_with_options","pi","pop","pow","prefix","product","quantile","radians","rem","reshape","reverse","reverse","root_names","round","rows_left","rows_right","same_type","same_type","set_sorted_flag","shift","shift","shift_and_fill","shrink_dtype","sin","sinh","slice","slice","sort","sort","sort_by","sort_with","sqrt","std","str","strict","strict_cast","string","sub","suffix","sum","sum","super_type","super_type","tail","tail","take","tan","tanh","ternary_expr","then","then","to_dot","to_field","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_serialize","try_serialize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","undo_aliases","unique","unique","unique_stable","unique_stable","upper_bound","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","when","when","when","window_size","wrap","xor","expr","input","input","interpol","propagate_nans","propagate_nans","quantile","drop_nulls","drop_nulls","by","by","data_type","descending","expr","expr","expr","expr","expr","falsy","function","function","function","function","idx","input","input","input","input","left","length","offset","op","options","options","options","options","order_by","output_type","partition_by","predicate","right","strict","truthy","base","base","ddof","decimals","max","method","min","normalize","periods","reverse","reverse","reverse","reverse","reverse","super_type","BinaryNameSpace","borrow","borrow_mut","contains_literal","deref","deref_mut","drop","ends_with","from","init","into","starts_with","try_from","try_into","type_id","vzip","DatetimeArgs","DurationArgs","Range","__clone_box","__clone_box","all","all_horizontal","any_horizontal","apply_binary","avg","borrow","borrow","borrow_mut","borrow_mut","cast","clone","clone","clone_into","clone_into","coalesce","col","cols","concat_expr","concat_list","cov","day","days","default","deref","deref","deref_mut","deref_mut","drop","drop","dtype_col","dtype_cols","fmt","fmt","fold_exprs","from","from","hour","hours","init","init","into","into","into_range","is_not_null","is_null","map_binary","max","max_horizontal","mean","median","microsecond","microseconds","milliseconds","min","min_horizontal","minute","minutes","month","nanoseconds","new","new","not","pearson_corr","quantile","range","reduce_exprs","repeat","second","seconds","sum","sum_horizontal","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","weeks","with_day","with_days","with_fractional_seconds","with_hms","with_hms","with_hour","with_hours","with_microsecond","with_microseconds","with_milliseconds","with_minute","with_minutes","with_month","with_nanoseconds","with_second","with_seconds","with_weeks","with_year","year","StringNameSpace","borrow","borrow_mut","contains","contains_literal","count_match","deref","deref_mut","drop","ends_with","explode","extract","extract_all","from","init","into","lengths","lstrip","n_chars","replace","replace_all","replace_n","rstrip","split","split_inclusive","starts_with","str_slice","strip","to_lowercase","to_uppercase","try_from","try_into","type_id","vzip","AllowedOptimizations","OptState","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","file_caching","fmt","from","init","into","predicate_pushdown","projection_pushdown","simplify_expr","slice_pushdown","streaming","to_owned","try_from","try_into","type_coercion","type_id","vzip","FETCH_ROWS","_is_fetch_query","_set_n_rows_for_scan","AAggExpr","AExpr","AExprIter","ALogicalPlan","ALogicalPlanBuilder","Agg","AggGroups","Aggregate","Aggregate","Aggregation","Alias","AllowedOptimizations","AlpIter","AlreadyEncountered","AnonymousFunction","AnonymousScan","AnonymousScan","AnonymousScan","AnonymousScanOptions","ArenaExprIter","ArenaLpIter","Binary","BinaryExpr","Boolean","Cache","Cache","Cast","Column","Context","Count","Count","Csv","DataFrameScan","DataFrameScan","DataFrameUdf","DataFrameUdfMut","Default","Distinct","Distinct","Drop","DropNulls","Error","ErrorState","ErrorStateSync","Explode","Explode","ExprIter","ExprMut","ExtContext","ExtContext","FastProjection","FileCacher","FileFingerPrint","FileInfo","FileScan","FileSink","FileSink","Filter","First","Float32","Float64","Function","FunctionNode","HStack","HStack","Implode","Int32","Int64","Ipc","Join","Join","Last","Leaf","Literal","Literal","LiteralValue","LocalProjection","LocalProjection","LogicalPlan","LogicalPlanBuilder","Many","MapFunction","MapFunction","Max","Mean","Median","Melt","Min","NULL","NUnique","NodeInputs","NotYetEncountered","Nth","Null","Null","Opaque","OptState","OptimizationRule","Optimize","Parquet","Pipeline","PredicatePushDown","Projection","Projection","ProjectionPushDown","Quantile","Range","Rechunk","Rename","RowCount","Scan","Scan","Selection","Selection","Series","SimplifyBooleanRule","SimplifyExprRule","Single","Slice","Slice","Slice","Sort","Sort","Sort","SortBy","StackOptimizer","Std","Sum","Take","Ternary","TypeCoercionRule","UInt32","UInt64","UdfSchema","Union","Union","Unnest","Utf8","Var","Wildcard","Window","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add_err","allows_predicate_pushdown","allows_predicate_pushdown","allows_projection_pushdown","allows_projection_pushdown","allows_slice_pushdown","allows_slice_pushdown","anonymous_scan","apply","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","builder_functions","cache","call_udf","call_udf","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","collect_fingerprints","copy_exprs","copy_inputs","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","describe","distinct","dot","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","evaluate","expands_rows","explode","fill_nan","fill_null","filter","find_column_union_and_fingerprints","first","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_str","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_existing_df","get_datatype","get_exprs","get_input","get_inputs","get_schema","get_type","groupby","groupby","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","is_streamable","iter","iter","join","join","lit","lit","lit","lit","map","map_private","melt","melt","n_rows","name","next","next","next","node_to_expr","node_to_lp","node_to_lp_cloned","optimize","optimize","optimize","optimize","optimize_expr","optimize_expr","optimize_expr","optimize_expr","optimize_expr","optimize_loop","optimize_plan","optimize_plan","output_schema","path","predicate","predicate","project","project","project_local","project_local","row_count","row_count","row_estimation","scan","scan_csv","scan_ipc","scan_parquet","schema","schema","schema","schema","schema","schema","set_input","skip_rows","slice","slice","sort","streamable","to_aexpr","to_alp","to_alp","to_anyvalue","to_field","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_apply","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","visitor","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_columns","with_columns","with_context","with_exprs_and_input","expr","input","input","interpol","propagate_nans","propagate_nans","quantile","by","by","data_type","descending","expr","expr","expr","expr","falsy","function","function","function","idx","input","input","input","input","left","length","offset","op","options","options","options","options","order_by","output_type","partition_by","predicate","right","strict","truthy","aggs","apply","args","by_column","contexts","count","df","expr","expr","exprs","file_info","file_info","file_options","function","function","id","input","input","input","input","input","input","input","input","input","input","input","input","input_left","input_right","inputs","keys","left_on","len","maintain_order","offset","options","options","options","options","options","output_schema","output_schema","output_schema","path","payload","predicate","predicate","predicate","projection","right_on","scan_type","schema","schema","schema","schema","schema","schema","schema","selection","err","prev_err_msg","cloud_options","options","options","options","args","columns","columns","columns","existing","fmt_str","function","function","name","names","new","offset","original","predicate_pd","projection_pd","schema","schema","schema","schema","schema","streamable","subset","swapping","data_type","high","low","aggs","apply","args","by_column","contexts","count","df","err","expr","expr","exprs","file_info","file_info","file_options","function","function","id","input","input","input","input","input","input","input","input","input","input","input","input","input","input_left","input_right","inputs","keys","left_on","len","maintain_order","offset","options","options","options","options","options","output_schema","path","payload","predicate","predicate","predicate","projection","right_on","scan_type","schema","schema","schema","schema","schema","schema","schema","selection","ALogicalPlanNode","AexprNode","Continue","MutateAndContinue","MutateAndStop","NoMutateAndContinue","Node","Node","RewriteRecursion","RewritingVisitor","Skip","Stop","Stop","TreeWalker","VisitRecursion","Visitor","apply_children","apply_children","apply_children","assign","assign","binary","binary","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","eq","fmt","fmt","from","from","from","from","init","init","init","init","into","into","into","into","map_children","map_children","map_children","mutate","node","node","post_visit","post_visit","pre_visit","pre_visit","pre_visit","pre_visit","replace","rewrite","rewrite","schema","to_aexpr","to_alp","to_alp_mut","to_expr","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","visit","visit","vzip","vzip","vzip","vzip","with_arena","with_arena","with_arena_mut","with_arena_mut","with_context","with_context","AnonymousScanOptions","ApplyFlat","ApplyGroups","ApplyList","ApplyOptions","Arena","CsvParserOptions","DistinctOptions","FileCount","FileScanOptions","FileSinkOptions","FileType","FunctionOptions","GroupbyOptions","Ipc","IpcScanOptions","IpcWriterOptions","LogicalPlanUdfOptions","Memory","Node","Parquet","ParquetOptions","ParquetWriteOptions","SortArguments","UnionOptions","UnsafeBool","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","allow_group_aware","allow_rename","auto_explode","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cache","cast_to_supertypes","changes_length","check_lengths","check_lengths","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","collect_groups","comment_char","compare","compression","compression","data_pagesize_limit","default","default","default","default","default","default","default","default","default","default","delimiter","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descending","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encoding","eol_char","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","file_counter","file_type","flattened_by_opt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_str","fmt_str","fmt_str","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_partitioned_ds","get","get_mut","get_node","get_unchecked","has_header","hash","hash","hash","hash","ignore_errors","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","input_wildcard_expansion","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_empty","is_groups_sensitive","iter","iter","keep_strategy","len","low_memory","low_memory","maintain_order","maintain_order","maintain_order","maintain_order","memmap","n_rows","n_rows","new","null_values","nulls_last","output_schema","parallel","parallel","partial_cmp","pass_name_to_apply","path","pop","predicate","predicate_pd","projection_pd","quote_char","rechunk","rechunk","replace","replace_with","row_count","row_group_size","rows","schema","skip_rows","skip_rows","slice","slice","slice","slice","statistics","subset","swap","take","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_parse_dates","try_replace_with","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","use_statistics","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","with_columns","with_columns","PushNode","aexpr_to_leaf_name","aexpr_to_leaf_names","aexpr_to_leaf_names_iter","combine_predicates_expr","comma_delimited","expr_is_projected_upstream","expr_output_name","expr_to_leaf_column_name","expr_to_leaf_column_names","expressions_to_schema","has_aexpr","has_aexpr_literal","has_aexpr_window","has_null","push_node","rename_cse_tmp_series"],"q":[[0,"polars_plan"],[11,"polars_plan::constants"],[13,"polars_plan::dot"],[33,"polars_plan::dsl"],[781,"polars_plan::dsl::AggExpr"],[788,"polars_plan::dsl::BooleanFunction"],[790,"polars_plan::dsl::Expr"],[824,"polars_plan::dsl::FunctionExpr"],[839,"polars_plan::dsl::binary"],[855,"polars_plan::dsl::functions"],[961,"polars_plan::dsl::string"],[995,"polars_plan::frame"],[1022,"polars_plan::global"],[1025,"polars_plan::logical_plan"],[1709,"polars_plan::logical_plan::AAggExpr"],[1716,"polars_plan::logical_plan::AExpr"],[1748,"polars_plan::logical_plan::ALogicalPlan"],[1808,"polars_plan::logical_plan::ErrorState"],[1810,"polars_plan::logical_plan::FileScan"],[1814,"polars_plan::logical_plan::FunctionNode"],[1837,"polars_plan::logical_plan::LiteralValue"],[1840,"polars_plan::logical_plan::LogicalPlan"],[1900,"polars_plan::logical_plan::visitor"],[2002,"polars_plan::prelude"],[2506,"polars_plan::utils"]],"d":["","","Domain specific language for the Lazy API.","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","Intermediate state of a chained …","Intermediate state of a chained …","","","","","","","","Special case that does not need columns","","","","","","","","","","","","","Can be used in a select statement to exclude a column from …","","","","Explode the aggregated list and just do a hstack instead …","Expressions that can be used in various contexts. Queries …","","","","","","","","","","Map the group values to the position","","","","","","","","","","","","Join the groups as ‘List<group_dtype>’ to the row …","","Set root name as Alias","","","Specialized expressions for Series of DataType::List.","","","","","","","","","","Specialized expressions for Categorical dtypes.","","","","","","","","","Take the nth column in the DataFrame","","","","","","","","","","","","Expressions in this node should only be expanding e.g. …","A wrapper trait for any binary closure …","A wrapper trait for any closure …","","","","","","","","Wrapper type that has special equality properties …","","","","","","A ternary operation if true then “foo” else “bar”","Intermediate state of when(..).then(..).otherwise(..) …","","","","","","","Intermediate state of when(..).then(..).otherwise(..) …","","See postgres window functions","","","","","","","","","","","","","","","","","","","","","","","","Convert all values to their absolute/positive value.","","Get the group indexes of the group by operation.","Rename Column.","Check if all boolean values are true","","and operation","Check if any boolean value is true","Append expressions. This is done by adding the chunks of …","Apply a function/closure over the groups. This should only …","","Apply a function/closure over the groups with many …","","Apply a function/closure over the groups of multiple …","Compute the inverse cosine of the given expression","Compute the inverse hyperbolic cosine of the given …","Compute the inverse sine of the given expression","Compute the inverse hyperbolic sine of the given expression","Compute the inverse tangent of the given expression","Compute the inverse tangent of the given expression, with …","Compute the inverse hyperbolic tangent of the given …","Return the index of the maximum value of every sublist","Get the index value that has the maximum value","Return the index of the minimal value of every sublist","Get the index value that has the minimum value","Get the index values that would sort this expression.","Get the first index of unique values of this expression.","","","Fill missing value with next non-null.","","","Compute op(l, r) (or equivalently l op r). l and r must …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","use a cache of unique, converted dates to apply the …","","","","Cast expression to another data type.","Compute the cube root of the given expression","Ceil underlying floating point array to the highest …","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check if the list array contain an element","Compute the cosine of the given expression","Compute the hyperbolic cosine of the given expression","Compute the cotangent of the given expression","Count expression","Count the values of the Series or Get counts of the group …","Cumulatively count values from 0 to len.","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","","","","","","","","Convert from radians to degrees","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Drop NaN values","Drop null values","Compute the entropy as -sum(pk * log(pk). where pk are …","","Compare Expr with other Expr on equality","","","","","","","","","","","","","Compare Expr with other Expr on equality where None == None","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If polars may parse matches that not contain the whole …","Exclude a column from a wildcard/regex selection.","","Calculate the exponential of all elements in the input …","Explode the utf8/ list column","Replace the floating point NaN values by a value.","Replace the null values by a value.","Filter a single column.","First column in DataFrame","Get first item of every sublist.","Get the first value in the group.","Alias for explode","","","Floor underlying floating point array to the lowest …","Floor divide self by rhs.","","","","","","","","","","","","","","","","","","","","Formatting string","Fill missing value with previous non-null.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","A function that cannot be expressed with map or apply and …","Functions","Get items in every sublist by index.","","","","","Check if Expr > Expr","Check if Expr >= Expr","Whether this expression expands to multiple expressions.","","","","","","Get the head of every sublist","Get the first n elements of the Expr result","Aggregate the group to a Series","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Get a hold to an implementor of the Display trait that …","Get mask of finite values if dtype is Float","Check if the values of the left expression are in the …","Get mask of infinite values if dtype is Float","Get mask of NaN values if dtype is Float","Get inverse mask of NaN values if dtype is Float","Run is_not_null operation on Expr.","Run is_null operation on Expr.","Whether this expression expands to multiple expressions …","A projection that only takes a column or a column + alias.","Join all string items in a sublist and place a separator …","Keep the original root name","Last column in DataFrame","Get last item of every sublist.","Get the last value in the group.","Get lengths of the arrays in the List type.","","","Compute the logarithm to a given base","Compute the natural logarithm of all elements plus one in …","Get minimal value that could be hold by this dtype.","Check if Expr < Expr","Check if Expr <= Expr","Apply a function/closure once the logical plan get …","","Define an alias by mapping a function over the original …","","","","","","","","","","Apply a function/closure once the logical plan get …","Apply a function/closure over multiple columns once the …","Apply a function/closure once the logical plan get …","","Apply a function/closure over multiple columns once the …","","Explode the aggregated list and just do a hstack instead …","Compute the maximum of the items in every sublist.","Reduce groups to maximum value.","Compute the mean of every sublist and return a Series of …","Reduce groups to the mean value.","Reduce groups to the median value.","Get the meta::MetaNameSpace","Compute the minimum of the items in every sublist.","Reduce groups to minimal value.","","","Expr::mutate().apply(fn())","Get the number of unique values in the groups.","Reduce groups to maximum value.","Reduce groups to minimal value.","Compare Expr with other Expr on non-equality","Compare Expr with other Expr on non-equality where …","","","","Negate Expr","Get the null count of the column/group","or operation","","","Get the output name of this expression.","Apply window function over a subgroup. This is similar to …","","Constant Pi","Pop latest expression and return the input(s) of the …","Raise expression to the power exponent","Add a prefix to the root column name.","Get the product aggregation of an expression","Compute the quantile per group.","Convert from degrees to radians","","","Reverse every sublist","Reverse column","Get the root column names.","Round underlying floating point array to given decimal …","Proxy of the number of rows in both sides of the joins …","","","","Set this Series as sorted so that downstream code can use …","Shift every sublist.","Shift the values in the array by some period. See the …","Shift the values in the array by some period and fill the …","Shrink numeric columns to the minimal required datatype …","Compute the sine of the given expression","Compute the hyperbolic sine of the given expression","Slice every sublist.","Slice the Series. offset may be negative.","Sort every sublist.","Sort in increasing order. See the eager implementation.","Sort this column by the ordering of another column. Can …","Sort with given options.","Compute the square root of the given expression","Standard deviation of the values of the Series","","If set then polars will return an error if any date …","Cast expression to another data type. Throws an error if …","","","Add a suffix to the root column name.","Compute the sum the items in every sublist.","Reduce groups to the sum of all the values.","","","Get the tail of every sublist","Get the last n elements of the Expr result","Take the values by idx.","Compute the tangent of the given expression","Compute the hyperbolic tangent of the given expression","","","","Get a dot language representation of the Expression.","Get Field result of the expression. The schema is the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Undo any renaming operation like alias, keep_name.","Keep only the unique values in every sublist.","Get unique values of this expression.","Keep only the unique values in every sublist.","Get unique values of this expression, while maintaining …","Get maximal value that could be hold by this dtype.","Variance of the values of the Series","","","","","","","","","","","","","","","","","","","Start a when(..).then(..).otherwise(..) expression","","","","","","","","","","","","","","","","","","","","","","","","","function to apply","Also has the input. i.e. avg(“foo”)","","function to apply","","function arguments","","","function arguments","","","length is not yet known so we accept negative offsets","","","","","","","output dtype of the function","","","","","","","","","","","","","","","","","","","","","Specialized expressions for Series of DataType::Utf8.","","","Check if a binary value contains a literal binary.","","","","Check if a binary value ends with the given sequence.","Returns the argument unchanged.","","Calls U::from(self).","Check if a binary value starts with the given sequence.","","","","","Arguments used by datetime in order to produce an Expr of …","Arguments used by duration in order to produce an Expr of …","","","","Selects all columns. Shorthand for col("*").","Create a new column with the the bitwise-and of the …","Create a new column with the the bitwise-or of the …","Like map_binary, but used in a groupby-aggregation context.","Find the mean of all the values in the column named name. …","","","","","Casts the column given by Expr to a different type.","","","","","Folds the expressions from left to right keeping the first …","Create a Column Expression based on a column name.","Select multiple columns by name.","","Concat lists entries.","Compute the covariance between two columns.","","","","","","","","","","Select multiple columns by dtype.","Select multiple columns by dtype.","","","Accumulate over multiple columns horizontally / row wise.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","A column which is false wherever expr is null, true …","A column which is true wherever expr is null, false …","Apply a closure on the two columns that are evaluated from …","Find the maximum of all the values in the column named name…","Create a new column with the the maximum value per row.","Find the mean of all the values in the column named name. …","Find the median of all the values in the column named name…","","","","Find the minimum of all the values in the column named name…","Create a new column with the the minimum value per row.","","","","","Construct a new DatetimeArgs set to year, month, day","Create a new DurationArgs with all fields set to lit(0). …","Negates a boolean column.","Compute the pearson correlation between two columns.","Find a specific quantile of all the values in the column …","Create a range literal.","Analogous to Iterator::reduce.","Create a column of length n containing n copies of the …","","","Sum all the values in the column named name. Shorthand for …","Create a new column with the the sum of the values in each …","","","","","","","","","","","","Set the day","Set the days","Set milliseconds, microseconds, and nanoseconds","Set hour, minute, and second","Set hours, minutes, and seconds","Set the hour","Set the hours","Set the microsecond","Set the microseconds","Set the milliseconds","Set the minute","Set the minutes","Set the month","Set the nanoseconds","Set the second","Set the seconds","Set the weeks","Set the year","","Specialized expressions for Series of DataType::Utf8.","","","Check if this column of strings contains a Regex. If strict…","Check if a string value contains a literal substring.","Count all successive non-overlapping regex matches.","","","","Check if a string value ends with the sub string.","","Extract a regex pattern from the a string value. If …","Extract each successive non-overlapping match in an …","Returns the argument unchanged.","","Calls U::from(self).","Return the number of bytes in the string (not characters).","Remove leading characters, or whitespace if matches is …","Return the number of characters in the string (not bytes).","Replace values that match a regex pat with a value.","Replace all values that match a regex pat with a value.","Replace values that match a regex pat with a value.","Remove trailing characters, or whitespace if matches is …","Split the string by a substring. The resulting dtype is …","Split the string by a substring and keep the substring. …","Check if a string value starts with the sub string.","Slice the string values.","Remove leading and trailing characters, or whitespace if …","Convert all characters to lowercase.","Convert all characters to uppercase.","","","","","AllowedOptimizations","State of the allowed optimizations","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","ALogicalPlan is a representation of LogicalPlan with Nodes …","","","","","Groupby aggregation","Any operation that is done on groups","","","","","","","","","","","","A raw binary array","","A binary true or false.","","Cache the input at this point in the LP","","","","","","","","In memory DataFrame","","","Any operation that is done while projection/ selection of …","","Remove duplicates from the table","","","Catches errors and throws them later","","","","","","","","This allows expressions to access other tables","","Aggregate all the columns used in csv scans and make sure …","","","","","","","","A 32-bit floating point number.","A 64-bit floating point number.","","","","Adding columns to the table without a Join","","A 32-bit integer number.","A 64-bit integer number.","","","Join operation","","","","","","","","","","","","A (User Defined) Function","","","","","","","","","","","The literal Null","","","","","","","","","","Column selection","","","","","","","","","","Filter on a boolean mask","","","","","","","Slice the table","","","Sort the table","","Optimizer that uses a stack and memory arenas in favor of …","","","","","","An unsigned 32-bit integer number.","An unsigned 64-bit integer number.","","","","","A UTF8 encoded string type.","","","","","","","","","","","","","","","","","specify if the scan provider should allow predicate …","specify if the scan provider should allow predicate …","specify if the scan provider should allow projection …","specify if the scan provider should allow projection …","specify if the scan provider should allow slice pushdowns","specify if the scan provider should allow slice pushdowns","","Arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Copy the exprs in this LP node to an existing container.","Push inputs of the LP in of this node to an existing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether this function will increase the number of rows","","","","Apply a filter","Find the union between the columns per unique IO operation.","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Getter for the DataType of the value","Get expressions in this node.","","","","This should be a 1 on 1 copy of the get_type method of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Whether this function can run on batches of data at a time.","","","","","Create a Literal Expression from L. A literal expression …","Literal expression.","","","","","","","","","","","","converts a node from the AExpr arena to Expr","converts a node from the ALogicalPlan arena to a …","","","","","","","","","","","","Optimize (subplan) in LogicalPlan","Optimize (subplan) in LogicalPlan","","","","","","","","","","","","Creates a dataframe from the supplied function & scan …","","","","function to supply the schema. Allows for an optional …","function to supply the schema. Allows for an optional …","Get the schema of the logical plan node.","","","","","","","","","","converts expression to AExpr and adds it to the arena, …","converts LogicalPlan to ALogicalPlan it adds expressions & …","","","Get Field result of the expression. The schema is the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Defines different visitor patterns and for any tree.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Takes the expressions of an LP node and the inputs of that …","","","","","","","","","","","","","","","","","","function to apply","","","","","function arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","generic options that can be used for all file types.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","schema of the projected file","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","allow predicate pushdown optimizations","allow projection pushdown optimizations","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Continue the visit to this node tree.","Continue the visit to this node and children.","Call op immediately and return This doesn’t visit the …","Don’t mutate this node, continue visiting the children","","","Controls how the TreeWalker recursion should proceed for …","","Keep recursive but skip applying op on the children","Stop the visit to this node tree.","Stop and return. This doesn’t visit the children","An implementor of this trait decides how and in which …","Controls how the TreeWalker recursion should proceed for …","","","","","Assign an AExpr to underlying arena.","Add a new ALogicalPlan to the arena and set that node to …","Take a Node and convert it an AExprNode and call F with …","Take a Node and convert it an ALogicalPlanNode and call F …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Get the Node.","","Invoked after all children of node are visited. Default …","Invoked after all children of node are visited. Default …","Invoked before any children of node are visited.","Invoked before any children of node are visited.","Invoked before any children of node are visited.","Invoked before any children of node are visited.","Replace the current Node with a new ALogicalPlan.","","","","","","","","","","","","","","","","","","","","Walks all nodes in depth-first-order.","Walks all nodes in depth-first-order.","","","","","Apply an operation with the underlying Arena.","","Apply an operation with the underlying Arena.","","Safe interface. Take the &mut Arena only for the duration …","Safe interface. Take the &mut Arena only for the duration …","","","Collect groups to a list and apply the function over the …","","","","","","","Generic options for all file types","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","automatically explode on unit length it ran as final …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Collect groups to a list and apply the function over the …","","","Data page compression","Data page compression","if None will be 1024^2 bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","There can be two ways of expanding wildcards:","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Any function that is sensitive to the number of elements …","","","Which rows to keep.","","","","maintain the order the data was processed","maintain the order the data was processed","This will maintain the order of the input. Note that this …","","","","","","","","","","","","","","","","allow predicate pushdown optimizations","allow projection pushdown optimizations","","","","","","","If None will be all written to a single row group.","","","","","","Take only a slice of the result","Take only a slice of the result","","Compute and write column statistics.","Subset of columns that will be taken into account.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Utility to write comma delimited strings","","output name of expr","unpack alias(col) to name of the root column name","This should gradually replace expr_to_root_column as this …","Take a list of expressions and a schema and determine the …","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,19,7,0,23,7,39,26,7,39,19,7,19,0,19,0,7,19,0,0,19,19,7,7,19,19,23,7,19,19,19,19,19,26,19,36,7,19,26,26,7,0,19,7,44,0,19,7,23,19,26,7,0,0,0,44,26,26,23,39,39,39,39,39,39,39,39,44,0,7,23,19,0,7,19,19,19,26,26,23,23,23,0,23,26,26,26,23,36,26,26,7,19,0,26,26,19,23,7,0,19,0,19,7,0,0,19,19,19,19,7,7,7,0,23,19,0,23,7,7,0,19,19,26,19,19,23,0,7,7,0,0,26,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,6,6,6,6,7,7,7,7,7,42,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,21,7,21,7,7,7,42,23,7,0,7,0,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,41,55,52,47,7,7,7,7,7,7,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,21,7,7,7,0,7,7,7,7,7,7,40,15,7,38,38,41,42,43,44,7,21,6,32,33,34,35,23,7,36,26,38,38,39,19,40,41,42,43,44,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,7,7,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,7,7,7,23,7,7,36,26,38,38,39,19,40,41,42,43,44,7,7,7,7,7,36,36,36,36,26,26,26,26,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,41,7,7,7,7,7,7,7,0,21,7,7,15,38,7,7,52,47,55,7,7,36,26,26,38,39,39,19,19,40,41,42,43,44,42,41,7,21,6,32,33,34,35,23,7,7,7,7,7,7,7,7,7,7,36,26,38,38,38,39,19,19,40,41,42,43,44,15,38,7,0,21,45,51,52,52,7,7,6,7,36,39,40,41,21,7,7,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,7,6,7,7,7,7,7,7,7,6,6,21,7,0,21,7,21,7,0,7,7,7,7,7,7,0,7,7,15,38,15,38,15,38,15,38,7,0,7,7,0,0,43,21,7,21,7,7,7,21,7,40,7,7,7,7,7,7,7,38,7,7,7,7,7,33,35,6,7,7,7,6,7,7,7,7,7,7,7,21,7,6,7,42,42,15,38,7,21,7,7,7,7,7,21,7,21,7,7,7,7,7,7,41,7,0,7,7,21,7,15,38,21,7,7,7,7,0,32,34,7,7,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,7,7,26,39,19,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,52,52,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,6,21,7,21,7,7,7,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,0,33,35,40,0,7,155,156,157,155,156,157,155,158,159,160,161,162,160,162,163,164,160,165,166,167,168,165,169,164,167,161,170,169,171,170,170,171,163,167,168,169,168,169,168,166,171,162,166,172,173,174,175,176,174,176,172,177,178,179,180,181,182,183,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,73,74,0,0,0,0,0,73,74,73,74,0,73,74,73,74,0,0,0,0,0,0,73,74,74,73,74,73,74,73,74,0,0,73,74,0,73,74,73,74,73,74,73,74,75,0,0,0,0,0,0,0,73,74,74,0,0,73,74,73,74,73,74,0,0,0,0,0,0,73,74,0,0,73,74,73,74,73,74,73,74,73,74,74,73,74,74,73,74,73,74,73,74,74,73,74,73,74,73,74,74,73,73,0,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,86,85,83,81,63,86,0,0,104,86,0,83,81,0,0,0,89,86,89,83,81,86,86,0,85,86,87,83,81,0,0,63,83,81,88,88,81,0,0,86,88,0,0,83,81,88,0,0,0,0,83,81,86,85,89,89,86,0,83,81,85,89,89,87,83,81,85,100,0,86,0,83,81,0,0,100,83,81,85,85,85,88,85,0,85,0,104,86,0,89,88,0,0,0,87,88,0,83,81,0,85,89,88,88,88,83,81,83,81,89,0,0,100,86,83,81,86,83,81,86,0,85,85,86,86,0,89,89,0,83,81,88,89,85,86,86,85,86,83,87,88,89,90,91,92,63,93,81,77,79,79,79,79,79,79,77,67,79,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,77,82,0,77,101,102,85,86,83,87,88,89,90,91,92,63,93,81,85,86,83,87,88,89,90,91,92,63,93,81,0,83,83,86,83,97,91,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,81,77,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,87,88,89,90,91,90,90,90,90,91,91,91,91,88,88,77,77,77,77,0,100,79,101,102,103,85,86,86,83,87,88,88,89,90,91,92,63,104,104,93,81,91,100,77,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,93,81,77,89,83,85,83,103,86,77,82,90,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,113,107,108,88,185,186,77,82,0,109,110,89,77,77,77,82,91,83,113,107,108,0,0,0,0,187,114,97,115,116,119,119,117,118,119,119,91,90,90,91,77,82,77,82,77,82,92,79,77,77,77,79,79,83,81,91,92,85,91,77,90,77,87,0,0,81,89,86,85,86,83,87,88,89,90,91,92,63,93,81,88,104,67,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,89,90,97,91,92,63,104,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,0,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,77,91,77,83,188,189,190,188,189,190,188,191,192,193,191,193,194,195,191,196,197,198,199,195,192,197,198,200,201,200,200,201,194,197,198,199,199,197,199,196,201,193,196,202,202,203,203,204,205,206,207,208,209,210,211,211,210,212,205,213,214,207,208,203,205,202,209,215,212,204,216,217,217,218,202,217,213,202,213,210,202,217,215,218,210,211,206,211,216,210,214,211,206,217,211,206,207,208,202,217,209,204,206,219,220,221,222,221,223,224,225,226,227,228,229,229,230,231,232,228,231,230,229,229,229,230,227,224,231,229,233,228,234,234,234,235,235,236,236,237,238,239,240,241,242,243,244,245,245,244,246,238,247,238,241,242,235,243,248,236,249,246,240,237,250,251,251,252,235,251,249,235,249,244,235,251,248,252,239,245,250,244,247,245,239,251,245,239,241,242,235,251,243,237,239,0,0,17,133,133,133,135,134,0,0,17,17,133,0,0,0,253,130,131,130,131,130,131,130,131,17,133,130,131,17,133,130,131,17,133,130,131,17,133,130,131,17,133,130,17,133,130,131,17,133,130,131,17,133,130,131,17,133,253,130,131,134,130,131,135,135,135,135,134,134,131,253,253,131,130,131,131,130,130,131,17,133,130,131,17,133,130,131,17,133,253,253,130,131,17,133,130,131,130,131,130,131,0,142,142,142,0,0,0,0,0,0,0,0,0,0,147,0,0,0,147,0,147,0,0,0,0,0,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,95,61,61,61,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,140,61,61,61,61,95,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,61,136,94,138,139,138,94,95,138,139,141,106,98,143,61,145,136,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,145,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,136,136,94,136,137,138,139,126,140,141,106,98,142,143,61,144,145,94,94,94,94,136,136,136,136,137,137,137,137,138,138,138,138,139,139,139,139,140,140,140,140,141,141,141,141,106,106,106,106,98,98,98,98,142,142,142,142,143,143,143,143,61,61,61,61,144,144,144,144,145,145,145,145,140,146,141,94,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,61,144,91,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,141,95,95,95,95,136,94,142,143,61,136,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,61,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,95,61,95,95,98,95,136,137,138,139,98,145,126,140,91,95,136,145,91,137,141,94,61,146,95,91,144,144,136,140,141,95,95,140,138,141,91,136,91,141,106,98,145,138,98,95,95,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,136,95,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,137,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,95,140,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[]],[[]],0,[2,2],[[]],[3],[3],[3],0,[[]],0,[[],3],[[]],[[]],[[],4],[[],4],[[],5],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[6,7],[[6,7],[[8,[7]]]],[[6,7],[[8,[7]]]],[[6,7],[[8,[7]]]],[7,7],[[7,7]],[7,7],[[7,9],7],[[7,10],7],0,[[7,[11,[7]]],7],[[7,10],7],[[7,[11,[7]],10],7],[[7,[0,[12,13,14]],15],7],[[7,16],[[8,[17]]]],[[7,[0,[12,13,14]],[18,[7]],15],7],[[7,19,[18,[7]],10,10],7],[[[0,[12,13,14]],[20,[[18,[7]]]],15,10],7],[7,7],[7,7],[7,7],[7,7],[7,7],[[7,7],7],[7,7],[21,7],[7,7],[21,7],[7,7],[[7,22],7],[7,7],0,[23,7],[[7,24],7],0,[7,25],[[7,26,7],7],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[9,[[8,[27]]]],[[[18,[28]]],[[8,[[29,[28]]]]]],[[28,28],[[8,[28]]]],[[7,30],7],[7,7],[7,7],[[7,31,31],7],[[7,31],7],[[7,31],7],[32,32],[33,33],[34,34],[35,35],[23,23],[7,7],[36,36],[26,26],[[[38,[37]]],[[38,[37]]]],[39,39],[19,19],[40,40],[41,41],[42,42],[43,43],[44,44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[21,[11,[7]]],7],[7,7],[7,7],[7,7],[[],7],[7,7],[[7,10],7],[[7,10],7],[[7,10],7],[[7,10],7],[[7,10],7],0,[[],15],[[],7],[[],[[38,[[46,[45]]]]]],[[],[[38,[[46,[47]]]]]],[[],41],[[],42],[[],43],[[],44],[7,7],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[38],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[[7,7]],[[7,[11,[7]]],7],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[7,7],[7,7],[[7,48,10],7],[[23,23],10],[[7,[11,[7]]],7],[[7,7],10],[[36,36],10],[[26,26],10],[[[38,[[46,[49]]]],[38,[[46,[49]]]]],10],[[[38,[28]],[38,[28]]],10],[[39,39],10],[[19,19],10],[[40,40],10],[[41,41],10],[[42,42],10],[[43,43],10],[[44,44],10],[[7,[11,[7]]],7],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],0,[[7,[50,[27]]],7],[[7,[20,[[18,[30]]]]],7],[7,7],[7,7],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[[],7],[21,7],[7,7],[7,7],[[],15],[[],[[38,[[46,[51]]]]]],[7,7],[[7,7],7],[[52,53],54],[[47,53],54],[[55,53],54],[[7,53],54],[[7,53],54],[[36,53],54],[[26,53],54],[[26,53],54],[[38,53],54],[[39,53],54],[[39,53],54],[[19,53],54],[[19,53],54],[[40,53],54],[[41,53],54],[[42,53],54],[[43,53],54],[[44,53],54],0,0,[[7,24],7],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[56,7],[57,7],[23,7],[[]],[48,7],[10,7],[9,7],[58,7],[59,7],[60,7],[[]],[[]],[[]],[39,[[38,[[46,[52]]]]]],[19,[[38,[[46,[52]]]]]],[[]],[[]],[39,19],[[]],[[]],[[]],[[]],[[]],[30,15],[30,[[38,[[46,[51]]]]]],[[7,[0,[12,13,14]],15,61],7],0,[[21,7],7],[[62,63,64,64],[[29,[64]]]],[[62,63,[18,[64]]],64],[[],[[29,[15]]]],[[],[[29,[15]]]],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[6,10],[[7,65]],[[36,65]],[[39,65]],[[40,65]],[[41,65]],[[21,7],7],[[7,[29,[3]]],7],[7,7],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[7],[6,[[8,[66]]]],[7,7],[[7,[11,[7]]],7],[7,7],[7,7],[7,7],[7,7],[7,7],[6,10],[6,10],[[21,9],7],[7,7],[[],7],[21,7],[7,7],[21,7],[7,21],0,[[7,48],7],[7,7],[7,7],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[[7,[0,[12,13,14]],15],7],0,[[7,[0,[12,13,14]]],7],[[7,16],[[8,[7]]]],[[[0,[12,13,14]]],15],[[[0,[12,13,14]]],[[38,[[46,[51]]]]]],[[[0,[12,13,14]]],15],[[[0,[12,13,14]]],[[38,[[46,[51]]]]]],[[[0,[12,13,14]]],15],[[[0,[12,13,14]]],[[38,[[46,[51]]]]]],[[[0,[12,13,14]]],15],[[[0,[12,13,14]]],[[38,[[46,[51]]]]]],[[7,[0,[12,13,14]],15],7],[[[0,[12,13,14]],[20,[[18,[7]]]],15],7],[[7,[0,[12,13,14]],[18,[7]],15],7],[[7,19,[18,[7]],10],7],[[[0,[12,13,14]],[20,[[18,[7]]]],15],7],0,0,[21,7],[7,7],[21,7],[7,7],[7,7],[7,6],[21,7],[7,7],0,[[7,7]],[7,67],[7,7],[7,7],[7,7],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[[],38],[[7,[68,[7]]]],[[7,[68,[7]]]],[7,7],[7,7],[[7,[11,[7]]],7],[[33,[11,[7]]],7],[[35,[11,[7]]],7],[6,[[8,[[46,[9]]]]]],[[7,[20,[[18,[[0,[[11,[7]],37]]]]]]],7],[[7,[20,[[18,[[0,[[11,[7]],37]]]]]],43],7],[[],7],[6,[[68,[7]]]],[[7,[11,[7]]],7],[[7,9],7],[7,7],[[7,7,69],7],[7,7],[[7,7]],[[7,[18,[59]]],7],[21,7],[7,7],[6,[[68,[[46,[9]]]]]],[[7,56],7],0,0,[[],15],[[],[[38,[[46,[51]]]]]],[[7,70],7],[[21,59],7],[[7,59],7],[[7,59,[11,[7]]],7],[7,7],[7,7],[7,7],[[21,7,7],7],[[7,[11,[7]],[11,[7]]],7],[[21,22],7],[[7,10],7],[[7,[20,[[18,[[0,[[11,[7]],37]]]]]],[20,[[18,[10]]]]],7],[[7,22],7],[7,7],[[7,71],7],[7,72],0,[[7,30],7],0,[[7,7]],[[7,9],7],[21,7],[7,7],[[],15],[[],[[38,[[46,[51]]]]]],[[21,7],7],[[7,[29,[3]]],7],[[7,[11,[7]]],7],[7,7],[7,7],[[7,7,7],7],[[32,[11,[7]]],33],[[34,[11,[7]]],35],[7,[[8,[27]]]],[[7,62,63],[[8,[64]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[7,7],[[],27],[[],27],[[],27],[[],27],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[[68,[71]]],8],[[[68,[71]]],8],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[6,7],[21,7],[7,7],[21,7],[7,7],[7,7],[[7,71],7],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[11,[7]]],32],[[33,[11,[7]]],34],[[35,[11,[7]]],34],0,0,[[7,[11,[7]]],7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[25,[20,[[18,[71]]]]],7],[3],[3],[3],[[25,[20,[[18,[71]]]]],7],[[]],[[],3],[[]],[[25,[20,[[18,[71]]]]],7],[[],4],[[],4],[[],5],[[]],0,0,0,[1],[1],[[],7],[[[20,[[18,[7]]]]],7],[[[20,[[18,[7]]]]],7],[[7,7,[0,[12,13,14]],15],7],[9,7],[[]],[[]],[[]],[[]],[[7,30],7],[73,73],[74,74],[[]],[[]],[[[18,[7]]],7],[9,7],[[[50,[27]]],7],[[[20,[[18,[[0,[[11,[7]],37]]]]]],10],[[8,[7]]]],[[[20,[[18,[[0,[[11,[7]],37]]]]]]],[[8,[7]]]],[[7,7],7],0,0,[[],74],[3],[3],[3],[3],[3],[3],[30,7],[[[20,[[18,[30]]]]],7],[[73,53],54],[[74,53],54],[[7,[0,[12,13,14,37]],[20,[[18,[7]]]]],7],[[]],[[]],0,0,[[],3],[[],3],[[]],[[]],[[],7],[7,7],[7,7],[[7,7,[0,[12,13,14]],15],7],[9,7],[[[20,[[18,[7]]]]],7],[9,7],[9,7],0,0,0,[9,7],[[[20,[[18,[7]]]]],7],0,0,0,0,[[7,7,7],73],[[],74],[7,7],[[7,7,71],7],[[9,7,69],7],[[[75,[[75,[[75,[[75,[75]]]]]]]],[75,[[75,[[75,[[75,[75]]]]]]]]],7],[[[0,[12,13,14,37]],[20,[[18,[7]]]]],7],[[[11,[7]],7],7],0,0,[9,7],[[[20,[[18,[7]]]]],7],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],5],[[],5],[[]],[[]],0,[[73,7],73],[[74,7],74],[[74,7,7,7],74],[[73,7,7,7],73],[[74,7,7,7],74],[[73,7],73],[[74,7],74],[[73,7],73],[[74,7],74],[[74,7],74],[[73,7],73],[[74,7],74],[[73,7],73],[[74,7],74],[[73,7],73],[[74,7],74],[[74,7],74],[[73,7],73],0,0,[[]],[[]],[[72,7,10],7],[[72,7],7],[[72,9],7],[3],[3],[3],[[72,7],7],[72,7],[[72,9,3],7],[[72,7],7],[[]],[[],3],[[]],[72,7],[[72,[29,[27]]],7],[72,7],[[72,7,7,10],7],[[72,7,7,10],7],[[72,7,7,10,59],7],[[72,[29,[27]]],7],[[72,9],7],[[72,9],7],[[72,7],7],[[72,59,[29,[57]]],7],[[72,[29,[27]]],7],[72,7],[72,7],[[],4],[[],4],[[],5],[[]],0,0,[1],[[]],[[]],[76,76],[[]],[[],76],[3],[3],[3],0,[[76,53],54],[[]],[[],3],[[]],0,0,0,0,0,[[]],[[],4],[[],4],0,[[],5],[[]],0,[[],10],[[[29,[3]]],[[29,[3]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[77,78],77],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[[46,[79]],[29,[62]],[29,[3]],[29,[3]],[29,[3]],9],[[8,[77]]]],[[67,16]],[[],80],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[77,81],[82,83],0,[77,77],[84,[[8,[84]]]],[84,[[8,[84]]]],[85,85],[86,86],[83,83],[87,87],[88,88],[89,89],[90,90],[91,91],[92,92],[63,63],[93,93],[81,81],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[94,[68,[90]],[95,[83]],[95,[86]]]],[[83,[68,[94]]]],[[83,96]],[[],86],[[],83],[[],97],[[],91],[[],81],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[93],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[81,27],[[77,98],77],[[81,27,2,[99,[27,27]]],54],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[[87,87],10],[[88,88],10],[[89,89],10],[[90,90],10],[[91,91],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[88,84],[[8,[84]]]],[88,10],[[77,[68,[7]]],77],[[77,7],77],[[77,7],77],[[77,7],77],[[94,[99,[90]],[95,[83]],[95,[86]]]],[100,94],[[79,53],54],[[101,53],54],[[102,53],54],[[103,53],54],[[85,53],54],[[86,53],54],[[86,53],54],[[83,53],54],[[87,53],54],[[88,53],54],[[88,53],54],[[89,53],54],[[90,53],54],[[91,53],54],[[92,53],54],[[63,53],54],[[104,53],54],[[104,53],54],[[93,53],54],[[81,53],54],0,[[]],[[]],[81,77],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[78,93],[[]],[84,77],[89,30],[83,[[68,[94]]]],[85,100],[83,[[68,[94]]]],[62,[[8,[105]]]],[[86,62,63,[95,[86]]],[[8,[30]]]],[[77,[68,[7]],[20,[[18,[7]]]],[29,[[46,[101]]]],10],77],[[82,[68,[94]],[68,[94]],[29,[[46,[101]]]],10,[46,[106]]],82],[[90,65]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[88,10],[94,107],[94,108],[[77,81,[68,[7]],[68,[7]],[46,[42]]],77],[[82,94,[68,[94]],[68,[94]],[46,[42]]],82],[109,7],[[],7],[110,7],[89,7],[[77,101,111,[29,[[46,[103]]]],9],77],[[77,88],77],[[77,[46,[112]]],77],[[82,[46,[112]]],82],0,[83,9],[113,29],[107,29],[108,29],[[94,[95,[86]]],7],[[94,[95,[86]],[95,[83]]],81],[[94,[95,[86]],[95,[83]]],81],[[81,76,[95,[83]],[95,[86]],[68,[94]]],[[8,[94]]]],[81,[[8,[81]]]],[[114,83,[95,[83]],[95,[86]]],[[8,[83]]]],[[97,83,[95,[83]],[95,[86]]],[[8,[83]]]],[[115,[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[116,[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[117,[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[118,[18,[[120,[119]]]],[95,[86]],[95,[83]],94],[[8,[94]]]],[[[95,[83]],[95,[86]],94],[[29,[83]]]],[[[95,[83]],[95,[86]],94],[[29,[83]]]],0,0,0,0,[[77,[68,[7]]],77],[[82,[68,[94]]],82],[[77,[68,[7]]],77],[[82,[68,[94]]],82],[[77,9,[29,[121]]],77],[[82,[46,[9]],[29,[121]]],82],0,[91,[[8,[84]]]],[[[11,[122]],71,10,10,3,[29,[3]],10,[29,[[46,[62]]]],[29,[62]],10,[29,[71]],[29,[71]],71,[29,[123]],[29,[3]],10,3,124,[29,[125]],10],[[8,[77]]]],[[[11,[122]],126,[29,[3]],10,[29,[125]],10],[[8,[77]]]],[[[11,[122]],[29,[3]],10,127,[29,[125]],10,10,[29,[128]],10],[[8,[77]]]],[[[29,[3]]],[[8,[62]]]],[[[29,[3]]],[[8,[62]]]],[[83,[95,[83]]],[[129,[105]]]],[81,[[8,[[129,[105]]]]]],0,0,[[85,94]],0,[[77,59,121],77],0,[[77,[68,[7]],[68,[10]],10,10],77],[87,10],[[7,[95,[86]]],94],[[81,[95,[86]],[95,[83]]],[[8,[94]]]],[81,8],[89,[[29,[31]]]],[[86,62,63,[95,[86]]],[[8,[64]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],27],[[],27],[[67,16],8],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[31,[[8,[89]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[77,[68,[7]]],77],0,[[77,[68,[81]]],77],[[83,[68,[94]],[68,[94]]],83],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16,[[8,[17]]]],[[130,16],[[8,[17]]]],[[131,16],[[8,[17]]]],[[130,86]],[[131,83]],[[130,94,132]],[[131,94,132]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[[130,130],10],[[17,53],54],[[133,53],54],[[]],[[]],[[]],[[]],[[],3],[[],3],[[],3],[[],3],[[]],[[]],[[]],[[]],[16,8],[[130,16],[[8,[130]]]],[[131,16],[[8,[131]]]],[[],8],[130,94],[131,94],[[],[[8,[17]]]],[[],[[8,[17]]]],[[],[[8,[17]]]],[[],[[8,[17]]]],[[],[[8,[133]]]],[[],[[8,[133]]]],[[131,83]],[134,8],[134,8],[131,[[129,[105]]]],[130,86],[131,83],[131,83],[130,7],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],5],[[],5],[[],5],[[],5],[135,[[8,[17]]]],[135,[[8,[17]]]],[[]],[[]],[[]],[[]],[[130,132]],[[131,12]],[[130,132]],[[131,132]],[[94,[95,[86]],16]],[[94,[95,[83]],16]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[95,94],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[61,10],0,[95],[94,94],[[[95,[37]]],[[95,[37]]]],[136,136],[137,137],[138,138],[139,139],[126,126],[140,140],[141,141],[106,106],[98,98],[142,142],[143,143],[61,61],[144,144],[145,145],[146,146],[147,147],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[94,94],148],0,0,[[],148],0,0,0,[[],94],[[],95],[[],138],[[],139],[[],141],[[],106],[[],98],[[],143],[[],61],[[],145],0,[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],0,[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],0,0,[[94,94],10],[[136,136],10],[[137,137],10],[[138,138],10],[[139,139],10],[[126,126],10],[[140,140],10],[[141,141],10],[[106,106],10],[[98,98],10],[[142,142],10],[[143,143],10],[[61,61],10],[[144,144],10],[[145,145],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],0,0,0,[[94,53],[[4,[149]]]],[[136,53],54],[[137,53],54],[[138,53],54],[[139,53],54],[[126,53],54],[[140,53],54],[[141,53],54],[[106,53],54],[[98,53],54],[[142,53],54],[[143,53],54],[[61,53],54],[[144,53],54],[[145,53],54],[[146,53],54],[[147,53],54],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[95,94]],[[95,94]],[95,[[29,[94]]]],[[95,94]],0,[[94,65]],[[142,65]],[[143,65]],[[61,65]],0,[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[95,10],[61,10],[[[95,[86]],94],107],[[[95,[83]],94],108],0,[95,3],0,0,0,0,0,0,0,0,0,[[],95],0,0,0,0,0,[[94,94],[[29,[148]]]],0,0,[95,29],0,0,0,0,0,0,[[95,94]],[[[95,[150]],94,132]],0,0,0,0,0,0,0,0,0,0,0,0,[[95,94,94]],[[[95,[150]],94],150],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[[[95,[150]],94,16],[[4,[151]]]],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3,95],0,0,0,[[94,[95,[86]]],[[46,[9]]]],[[94,[95,[86]]],[[68,[[46,[9]]]]]],[[94,[95,[86]]],152],[152,7],[[27,[18,[153]]],27],[[94,94,[95,[83]],[95,[86]],[154,[[46,[9]]]]],10],[7,[[8,[[46,[9]]]]]],[7,[[8,[[46,[9]]]]]],[7,[[68,[[46,[9]]]]]],[[[18,[7]],62,63],[[8,[62]]]],[[94,[95,[86]],12],10],[[94,[95,[86]]],10],[[94,[95,[86]]],10],[7,10],[94],[28]],"c":[],"p":[[3,"Private"],[3,"DotNode"],[15,"usize"],[4,"Result"],[3,"TypeId"],[3,"MetaNameSpace"],[4,"Expr"],[6,"PolarsResult"],[15,"str"],[15,"bool"],[8,"Into"],[8,"Fn"],[8,"Send"],[8,"Sync"],[6,"GetOutput"],[8,"FnMut"],[4,"VisitRecursion"],[15,"slice"],[4,"FunctionExpr"],[8,"AsRef"],[3,"ListNameSpace"],[3,"SortOptions"],[4,"AggExpr"],[6,"FillNullLimit"],[3,"BinaryNameSpace"],[4,"Operator"],[3,"String"],[3,"Series"],[4,"Option"],[4,"DataType"],[4,"AnyValue"],[3,"When"],[3,"Then"],[3,"ChainedWhen"],[3,"ChainedThen"],[4,"Excluded"],[8,"Clone"],[3,"SpecialEq"],[4,"BooleanFunction"],[3,"RollingCovOptions"],[3,"StrptimeOptions"],[3,"JoinOptions"],[3,"WindowOptions"],[4,"WindowMapping"],[8,"BinaryUdfOutputField"],[3,"Arc"],[8,"SeriesBinaryUdf"],[15,"f64"],[8,"Sized"],[8,"IntoVec"],[8,"FunctionOutputField"],[8,"SeriesUdf"],[3,"Formatter"],[6,"Result"],[8,"RenameAliasFn"],[15,"u32"],[15,"u64"],[15,"f32"],[15,"i64"],[15,"i32"],[3,"FunctionOptions"],[3,"Schema"],[4,"Context"],[3,"Field"],[8,"Hasher"],[8,"Display"],[3,"ExprMut"],[3,"Vec"],[4,"QuantileInterpolOptions"],[4,"IsSorted"],[15,"u8"],[3,"StringNameSpace"],[3,"DatetimeArgs"],[3,"DurationArgs"],[8,"Range"],[3,"OptState"],[3,"LogicalPlanBuilder"],[4,"PolarsError"],[8,"AnonymousScan"],[8,"Any"],[4,"LogicalPlan"],[3,"ALogicalPlanBuilder"],[4,"ALogicalPlan"],[3,"DataFrame"],[4,"AAggExpr"],[4,"AExpr"],[4,"FileScan"],[4,"FunctionNode"],[4,"LiteralValue"],[3,"FileFingerPrint"],[3,"AnonymousScanOptions"],[3,"FileInfo"],[3,"ErrorStateSync"],[3,"Node"],[3,"Arena"],[8,"PushNode"],[3,"PredicatePushDown"],[3,"DistinctOptions"],[6,"PlHashMap"],[4,"NodeInputs"],[8,"DataFrameUdf"],[8,"DataFrameUdfMut"],[8,"UdfSchema"],[4,"ErrorState"],[6,"SchemaRef"],[3,"GroupbyOptions"],[3,"AExprIter"],[3,"AlpIter"],[8,"Literal"],[3,"Null"],[6,"AllowedOptimizations"],[3,"MeltArgs"],[3,"ExprIter"],[3,"ProjectionPushDown"],[3,"SimplifyBooleanRule"],[3,"SimplifyExprRule"],[3,"TypeCoercionRule"],[3,"StackOptimizer"],[8,"OptimizationRule"],[3,"Box"],[6,"IdxSize"],[3,"PathBuf"],[4,"NullValues"],[4,"CsvEncoding"],[3,"RowCount"],[3,"IpcScanOptions"],[4,"ParallelStrategy"],[3,"CloudOptions"],[4,"Cow"],[3,"AexprNode"],[3,"ALogicalPlanNode"],[8,"FnOnce"],[4,"RewriteRecursion"],[8,"RewritingVisitor"],[8,"Visitor"],[3,"CsvParserOptions"],[3,"ParquetOptions"],[3,"ParquetWriteOptions"],[3,"IpcWriterOptions"],[3,"FileScanOptions"],[3,"UnionOptions"],[4,"ApplyOptions"],[3,"UnsafeBool"],[3,"LogicalPlanUdfOptions"],[3,"SortArguments"],[3,"FileSinkOptions"],[4,"FileType"],[4,"Ordering"],[3,"Error"],[8,"Default"],[4,"PolarsUtilsError"],[8,"Iterator"],[6,"String"],[6,"PlHashSet"],[13,"Quantile"],[13,"Min"],[13,"Max"],[13,"All"],[13,"Any"],[13,"SortBy"],[13,"Filter"],[13,"Cast"],[13,"Sort"],[13,"Take"],[13,"RenameAlias"],[13,"Ternary"],[13,"Function"],[13,"Window"],[13,"AnonymousFunction"],[13,"Slice"],[13,"BinaryExpr"],[13,"Entropy"],[13,"Log"],[13,"Correlation"],[13,"Round"],[13,"Clip"],[13,"ShiftAndFill"],[13,"Cumcount"],[13,"Cumsum"],[13,"Cumprod"],[13,"Cummin"],[13,"Cummax"],[13,"FillNull"],[3,"FileCacher"],[8,"ArenaExprIter"],[8,"ArenaLpIter"],[8,"Optimize"],[13,"Quantile"],[13,"Min"],[13,"Max"],[13,"SortBy"],[13,"Filter"],[13,"Cast"],[13,"Sort"],[13,"Take"],[13,"Ternary"],[13,"AnonymousFunction"],[13,"Function"],[13,"Window"],[13,"Slice"],[13,"BinaryExpr"],[13,"Aggregate"],[13,"Sort"],[13,"ExtContext"],[13,"Cache"],[13,"DataFrameScan"],[13,"Projection"],[13,"LocalProjection"],[13,"HStack"],[13,"AnonymousScan"],[13,"Scan"],[13,"MapFunction"],[13,"Slice"],[13,"Selection"],[13,"Distinct"],[13,"FileSink"],[13,"Join"],[13,"Union"],[13,"NotYetEncountered"],[13,"AlreadyEncountered"],[13,"Parquet"],[13,"Csv"],[13,"Ipc"],[13,"Melt"],[13,"Unnest"],[13,"FastProjection"],[13,"Explode"],[13,"Rename"],[13,"Opaque"],[13,"Pipeline"],[13,"RowCount"],[13,"Drop"],[13,"DropNulls"],[13,"Range"],[13,"Aggregate"],[13,"Sort"],[13,"ExtContext"],[13,"Cache"],[13,"DataFrameScan"],[13,"Error"],[13,"LocalProjection"],[13,"Projection"],[13,"HStack"],[13,"AnonymousScan"],[13,"Scan"],[13,"MapFunction"],[13,"Selection"],[13,"Distinct"],[13,"Slice"],[13,"FileSink"],[13,"Join"],[13,"Union"],[8,"TreeWalker"]]},\ +"polars_plan":{"doc":"","t":"AAAAAAOOAAOHHDLLLMLLLLLMLMLLLLLLLNNENNNNNNNNNINENNDDNNNNNNNNNNNNNNNNNNNNNENNNENNNNNNEIGNNNNNNNNNNNNNDNNNDNNNNNNNNNDNNNNNNNNNNENNNNNINDNNIINNNNNNNDNNDNNNDNNNNNNDNNEDNLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLFLLLLLLLLLLLLLMLLALFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMKKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLCLLLLLLOLLLLLLLLLLLFLLFOMLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMLALLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLMOLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMDLLLLLLLLLLLLLLLDDILLFFFFFLLLLFLLLLFFFFFFMMLLLLLLLFFLLFLLMMLLLLKFFFFFFFMMMFFMMMMLLFFFFFFMMFFLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLGDLLLLLLLLLMLLLLMMMMMLLLMLLRFFEEDEDNNNNNNCDNNINNDIINNNNNNNENNNNNIINNNNNNEDNNDDNNNDDDENNNNNNNENNNNNNNNNNINENNEDNNNNNNNNRNENNDNNCIINNDNNDNNNNNNNNNNDDNNNNNNNNDNNNNDNNINNNNNNNLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALKKLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLFKLLLLLLMLLLLFFFFKLLLLLLLLLLMMMMLLLLLLMKLLLLLLLMMLMLMLLFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMDDNNNNQQEINNNIEIKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDNNNEDDDGDDEDDNDDDNDNDDDDDLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLMMMLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLMLLLLMLLLLMLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLMLMMMMMMMMMLMMMMMLMMLMMMMMMLLMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLMMIFFFFFFFFFFFFFFKF","n":["constants","dot","dsl","frame","global","logical_plan","map","map_owned","prelude","utils","wrap","CSE_REPLACED","MAP_LIST_NAME","DotNode","__clone_box","borrow","borrow_mut","branch","clone","clone_into","deref","deref_mut","drop","fmt","from","id","init","into","to_owned","try_from","try_into","type_id","vzip","Abs","Agg","AggExpr","AggGroups","Alias","All","And","AnonymousFunction","Any","Atan2","BinaryExpr","BinaryExpr","BinaryUdfOutputField","Boolean","BooleanFunction","Cast","Ceil","ChainedThen","ChainedWhen","Clip","Coalesce","Column","Columns","ConcatExpr","Correlation","Count","Count","Cumcount","Cummax","Cummin","Cumprod","Cumsum","Divide","DropNans","Dtype","DtypeColumn","Entropy","Eq","EqValidity","Exclude","Excluded","Exp","Explode","Explode","Expr","FillNull","Filter","First","Floor","FloorDivide","Function","FunctionExpr","FunctionOutputField","GetOutput","GroupsToRows","Gt","GtEq","Implode","IsFinite","IsIn","IsInfinite","IsNan","IsNot","IsNotNan","IsNotNull","IsNull","Join","JoinOptions","KeepName","Last","ListExpr","ListNameSpace","Literal","Log","Log1p","LowerBound","Lt","LtEq","Max","Mean","Median","MetaNameSpace","Min","Minus","Modulus","Multiply","NUnique","Name","NotEq","NotEqValidity","Nth","NullCount","Operator","Or","Plus","Pow","Quantile","RenameAlias","RenameAliasFn","Reverse","RollingCovOptions","Round","Selector","SeriesBinaryUdf","SeriesUdf","SetSortedFlag","Shift","ShiftAndFill","ShrinkType","Slice","Sort","SortBy","SpecialEq","Std","StringExpr","StrptimeOptions","Sum","Take","Ternary","Then","ToPhysical","Trigonometry","TrueDivide","Unique","UpperBound","Var","When","Wildcard","Window","WindowMapping","WindowOptions","Xor","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","_into_selector","_selector_add","_selector_and","_selector_sub","abs","add","agg_groups","alias","all","allow_parallel","and","any","append","apply","apply_children","apply_many","apply_many_private","apply_multiple","arccos","arccosh","arcsin","arcsinh","arctan","arctan2","arctanh","arg_max","arg_max","arg_min","arg_min","arg_sort","arg_unique","args","as_ref","backward_fill","binary","binary","binary_expr","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cache","call","call_udf","call_udf","cast","cbrt","ceil","clip","clip_max","clip_min","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","contains","cos","cosh","cot","count","count","cumcount","cummax","cummin","cumprod","cumsum","ddof","default","default","default","default","default","default","default","default","degrees","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","div","dot","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop_nans","drop_nulls","entropy","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq_missing","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","exact","exclude","exclude_dtype","exp","explode","fill_nan","fill_null","filter","first","first","first","flatten","float_type","float_type","floor","floor_div","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","force_parallel","format","forward_fill","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_type","from_type","function_with_options","functions","get","get_field","get_field","get_output","get_output","gt","gt_eq","has_multiple_outputs","hash","hash","hash","hash","hash","head","head","implode","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_tree_formatter","is_finite","is_in","is_infinite","is_nan","is_not_nan","is_not_null","is_null","is_regex_projection","is_simple_projection","join","keep_name","last","last","last","lengths","list","lit","log","log1p","lower_bound","lt","lt_eq","map","map","map_alias","map_children","map_dtype","map_dtype","map_dtypes","map_dtypes","map_field","map_field","map_fields","map_fields","map_list","map_list_multiple","map_many","map_many_private","map_multiple","map_owned","mapping","max","max","mean","mean","median","meta","min","min","min_periods","mul","mutate","n_unique","nan_max","nan_min","neq","neq_missing","new","nodes","nodes_mut","not","null_count","or","otherwise","otherwise","output_name","over","over_with_options","pi","pop","pow","prefix","product","quantile","radians","rem","reshape","reverse","reverse","root_names","round","rows_left","rows_right","same_type","same_type","set_sorted_flag","shift","shift","shift_and_fill","shrink_dtype","sin","sinh","slice","slice","sort","sort","sort_by","sort_with","sqrt","std","str","strict","strict_cast","string","sub","suffix","sum","sum","super_type","super_type","tail","tail","take","tan","tanh","ternary_expr","then","then","to_dot","to_field","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_physical","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_serialize","try_serialize","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","undo_aliases","unique","unique","unique_stable","unique_stable","upper_bound","var","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","when","when","when","window_size","wrap","xor","expr","input","input","interpol","propagate_nans","propagate_nans","quantile","drop_nulls","drop_nulls","by","by","data_type","descending","expr","expr","expr","expr","expr","falsy","function","function","function","function","idx","input","input","input","input","left","length","offset","op","options","options","options","options","order_by","output_type","partition_by","predicate","right","strict","truthy","base","base","ddof","decimals","max","method","min","normalize","periods","reverse","reverse","reverse","reverse","reverse","super_type","BinaryNameSpace","borrow","borrow_mut","contains_literal","deref","deref_mut","drop","ends_with","from","init","into","starts_with","try_from","try_into","type_id","vzip","DatetimeArgs","DurationArgs","Range","__clone_box","__clone_box","all","all_horizontal","any_horizontal","apply_binary","avg","borrow","borrow","borrow_mut","borrow_mut","cast","clone","clone","clone_into","clone_into","coalesce","col","cols","concat_expr","concat_list","cov","day","days","default","deref","deref","deref_mut","deref_mut","drop","drop","dtype_col","dtype_cols","fmt","fmt","fold_exprs","from","from","hour","hours","init","init","into","into","into_range","is_not_null","is_null","map_binary","max","max_horizontal","mean","median","microsecond","microseconds","milliseconds","min","min_horizontal","minute","minutes","month","nanoseconds","new","new","not","pearson_corr","quantile","range","reduce_exprs","repeat","second","seconds","sum","sum_horizontal","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","vzip","vzip","weeks","with_day","with_days","with_fractional_seconds","with_hms","with_hms","with_hour","with_hours","with_microsecond","with_microseconds","with_milliseconds","with_minute","with_minutes","with_month","with_nanoseconds","with_second","with_seconds","with_weeks","with_year","year","StringNameSpace","borrow","borrow_mut","contains","contains_literal","count_match","deref","deref_mut","drop","ends_with","explode","extract","extract_all","from","init","into","lengths","lstrip","n_chars","replace","replace_all","replace_n","rstrip","split","split_inclusive","starts_with","str_slice","strip","to_lowercase","to_uppercase","try_from","try_into","type_id","vzip","AllowedOptimizations","OptState","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","file_caching","fmt","from","init","into","predicate_pushdown","projection_pushdown","simplify_expr","slice_pushdown","streaming","to_owned","try_from","try_into","type_coercion","type_id","vzip","FETCH_ROWS","_is_fetch_query","_set_n_rows_for_scan","AAggExpr","AExpr","AExprIter","ALogicalPlan","ALogicalPlanBuilder","Agg","AggGroups","Aggregate","Aggregate","Aggregation","Alias","AllowedOptimizations","AlpIter","AlreadyEncountered","AnonymousFunction","AnonymousScan","AnonymousScan","AnonymousScan","AnonymousScanOptions","ArenaExprIter","ArenaLpIter","Binary","BinaryExpr","Boolean","Cache","Cache","Cast","Column","Context","Count","Count","Csv","DataFrameScan","DataFrameScan","DataFrameUdf","DataFrameUdfMut","Default","Distinct","Distinct","Drop","DropNulls","Error","ErrorState","ErrorStateSync","Explode","Explode","ExprIter","ExprMut","ExtContext","ExtContext","FastProjection","FileCacher","FileFingerPrint","FileInfo","FileScan","FileSink","FileSink","Filter","First","Float32","Float64","Function","FunctionNode","HStack","HStack","Implode","Int32","Int64","Ipc","Join","Join","Last","Leaf","Literal","Literal","LiteralValue","LocalProjection","LocalProjection","LogicalPlan","LogicalPlanBuilder","Many","MapFunction","MapFunction","Max","Mean","Median","Melt","Min","NULL","NUnique","NodeInputs","NotYetEncountered","Nth","Null","Null","Opaque","OptState","OptimizationRule","Optimize","Parquet","Pipeline","PredicatePushDown","Projection","Projection","ProjectionPushDown","Quantile","Range","Rechunk","Rename","RowCount","Scan","Scan","Selection","Selection","Series","SimplifyBooleanRule","SimplifyExprRule","Single","Slice","Slice","Slice","Sort","Sort","Sort","SortBy","StackOptimizer","Std","Sum","Take","Ternary","TypeCoercionRule","UInt32","UInt64","UdfSchema","Union","Union","Unnest","Utf8","Var","Wildcard","Window","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add_err","allows_predicate_pushdown","allows_predicate_pushdown","allows_projection_pushdown","allows_projection_pushdown","allows_slice_pushdown","allows_slice_pushdown","anonymous_scan","apply","as_any","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","builder_functions","cache","call_udf","call_udf","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","collect_fingerprints","copy_exprs","copy_inputs","default","default","default","default","default","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","describe","distinct","dot","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","evaluate","expands_rows","explode","fill_nan","fill_null","filter","find_column_union_and_fingerprints","first","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_str","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_existing_df","get_datatype","get_exprs","get_input","get_inputs","get_schema","get_type","groupby","groupby","hash","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","is_streamable","iter","iter","join","join","lit","lit","lit","lit","map","map_private","melt","melt","n_rows","name","next","next","next","node_to_expr","node_to_lp","node_to_lp_cloned","optimize","optimize","optimize","optimize","optimize_expr","optimize_expr","optimize_expr","optimize_expr","optimize_expr","optimize_loop","optimize_plan","optimize_plan","output_schema","path","predicate","predicate","project","project","project_local","project_local","row_count","row_count","row_estimation","scan","scan_csv","scan_ipc","scan_parquet","schema","schema","schema","schema","schema","schema","set_input","skip_rows","slice","slice","sort","streamable","to_aexpr","to_alp","to_alp","to_anyvalue","to_field","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_apply","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","visitor","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_columns","with_columns","with_context","with_exprs_and_input","expr","input","input","interpol","propagate_nans","propagate_nans","quantile","by","by","data_type","descending","expr","expr","expr","expr","falsy","function","function","function","idx","input","input","input","input","left","length","offset","op","options","options","options","options","order_by","output_type","partition_by","predicate","right","strict","truthy","aggs","apply","args","by_column","contexts","count","df","expr","expr","exprs","file_info","file_info","file_options","function","function","id","input","input","input","input","input","input","input","input","input","input","input","input","input_left","input_right","inputs","keys","left_on","len","maintain_order","offset","options","options","options","options","options","output_schema","output_schema","output_schema","path","payload","predicate","predicate","predicate","projection","right_on","scan_type","schema","schema","schema","schema","schema","schema","schema","selection","err","prev_err_msg","cloud_options","options","options","options","args","columns","columns","columns","existing","fmt_str","function","function","name","names","new","offset","original","predicate_pd","projection_pd","schema","schema","schema","schema","schema","streamable","subset","swapping","data_type","high","low","aggs","apply","args","by_column","contexts","count","df","err","expr","expr","exprs","file_info","file_info","file_options","function","function","id","input","input","input","input","input","input","input","input","input","input","input","input","input","input_left","input_right","inputs","keys","left_on","len","maintain_order","offset","options","options","options","options","options","output_schema","path","payload","predicate","predicate","predicate","projection","right_on","scan_type","schema","schema","schema","schema","schema","schema","schema","selection","ALogicalPlanNode","AexprNode","Continue","MutateAndContinue","MutateAndStop","NoMutateAndContinue","Node","Node","RewriteRecursion","RewritingVisitor","Skip","Stop","Stop","TreeWalker","VisitRecursion","Visitor","apply_children","apply_children","apply_children","assign","assign","binary","binary","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","eq","fmt","fmt","from","from","from","from","init","init","init","init","into","into","into","into","map_children","map_children","map_children","mutate","node","node","post_visit","post_visit","pre_visit","pre_visit","pre_visit","pre_visit","replace","rewrite","rewrite","schema","to_aexpr","to_alp","to_alp_mut","to_expr","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","visit","visit","vzip","vzip","vzip","vzip","with_arena","with_arena","with_arena_mut","with_arena_mut","with_context","with_context","AnonymousScanOptions","ApplyFlat","ApplyGroups","ApplyList","ApplyOptions","Arena","CsvParserOptions","DistinctOptions","FileCount","FileScanOptions","FileSinkOptions","FileType","FunctionOptions","GroupbyOptions","Ipc","IpcScanOptions","IpcWriterOptions","LogicalPlanUdfOptions","Memory","Node","Parquet","ParquetOptions","ParquetWriteOptions","SortArguments","UnionOptions","UnsafeBool","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add","allow_group_aware","allow_rename","auto_explode","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cache","cast_to_supertypes","changes_length","check_lengths","check_lengths","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","collect_groups","comment_char","compare","compression","compression","data_pagesize_limit","default","default","default","default","default","default","default","default","default","default","delimiter","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","descending","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","drop","encoding","eol_char","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","file_counter","file_type","flattened_by_opt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt_str","fmt_str","fmt_str","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_partitioned_ds","get","get_mut","get_node","get_unchecked","has_header","hash","hash","hash","hash","ignore_errors","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","init","input_wildcard_expansion","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_empty","is_groups_sensitive","iter","iter","keep_strategy","len","low_memory","low_memory","maintain_order","maintain_order","maintain_order","maintain_order","memmap","n_rows","n_rows","new","null_values","nulls_last","output_schema","parallel","parallel","partial_cmp","pass_name_to_apply","path","pop","predicate","predicate_pd","projection_pd","quote_char","rechunk","rechunk","replace","replace_with","row_count","row_group_size","rows","schema","skip_rows","skip_rows","slice","slice","slice","slice","statistics","subset","swap","take","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_parse_dates","try_replace_with","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","use_statistics","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","with_capacity","with_columns","with_columns","PushNode","aexpr_to_leaf_name","aexpr_to_leaf_names","aexpr_to_leaf_names_iter","combine_predicates_expr","comma_delimited","expr_is_projected_upstream","expr_output_name","expr_to_leaf_column_name","expr_to_leaf_column_names","expressions_to_schema","has_aexpr","has_aexpr_literal","has_aexpr_window","has_null","push_node","rename_cse_tmp_series"],"q":[[0,"polars_plan"],[11,"polars_plan::constants"],[13,"polars_plan::dot"],[33,"polars_plan::dsl"],[781,"polars_plan::dsl::AggExpr"],[788,"polars_plan::dsl::BooleanFunction"],[790,"polars_plan::dsl::Expr"],[824,"polars_plan::dsl::FunctionExpr"],[839,"polars_plan::dsl::binary"],[855,"polars_plan::dsl::functions"],[961,"polars_plan::dsl::string"],[995,"polars_plan::frame"],[1022,"polars_plan::global"],[1025,"polars_plan::logical_plan"],[1709,"polars_plan::logical_plan::AAggExpr"],[1716,"polars_plan::logical_plan::AExpr"],[1748,"polars_plan::logical_plan::ALogicalPlan"],[1808,"polars_plan::logical_plan::ErrorState"],[1810,"polars_plan::logical_plan::FileScan"],[1814,"polars_plan::logical_plan::FunctionNode"],[1837,"polars_plan::logical_plan::LiteralValue"],[1840,"polars_plan::logical_plan::LogicalPlan"],[1900,"polars_plan::logical_plan::visitor"],[2002,"polars_plan::prelude"],[2506,"polars_plan::utils"]],"d":["","","Domain specific language for the Lazy API.","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","Intermediate state of a chained …","Intermediate state of a chained …","","","","","","","","Special case that does not need columns","","","","","","","","","","","","","Can be used in a select statement to exclude a column from …","","","","Explode the aggregated list and just do a hstack instead …","Expressions that can be used in various contexts. Queries …","","","","","","","","","","Map the group values to the position","","","","","","","","","","","","Join the groups as ‘List<group_dtype>’ to the row …","","Set root name as Alias","","","Specialized expressions for Series of DataType::List.","","","","","","","","","","Specialized expressions for Categorical dtypes.","","","","","","","","","Take the nth column in the DataFrame","","","","","","","","","","","","Expressions in this node should only be expanding e.g. …","A wrapper trait for any binary closure …","A wrapper trait for any closure …","","","","","","","","Wrapper type that has special equality properties …","","","","","","A ternary operation if true then “foo” else “bar”","Intermediate state of when(..).then(..).otherwise(..) …","","","","","","","Intermediate state of when(..).then(..).otherwise(..) …","","See postgres window functions","","","","","","","","","","","","","","","","","","","","","","","","Convert all values to their absolute/positive value.","","Get the group indexes of the group by operation.","Rename Column.","Check if all boolean values are true","","and operation","Check if any boolean value is true","Append expressions. This is done by adding the chunks of …","Apply a function/closure over the groups. This should only …","","Apply a function/closure over the groups with many …","","Apply a function/closure over the groups of multiple …","Compute the inverse cosine of the given expression","Compute the inverse hyperbolic cosine of the given …","Compute the inverse sine of the given expression","Compute the inverse hyperbolic sine of the given expression","Compute the inverse tangent of the given expression","Compute the inverse tangent of the given expression, with …","Compute the inverse hyperbolic tangent of the given …","Return the index of the maximum value of every sublist","Get the index value that has the maximum value","Return the index of the minimal value of every sublist","Get the index value that has the minimum value","Get the index values that would sort this expression.","Get the first index of unique values of this expression.","","","Fill missing value with next non-null.","","","Compute op(l, r) (or equivalently l op r). l and r must …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","use a cache of unique, converted dates to apply the …","","","","Cast expression to another data type.","Compute the cube root of the given expression","Ceil underlying floating point array to the highest …","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","Clip underlying values to a set boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check if the list array contain an element","Compute the cosine of the given expression","Compute the hyperbolic cosine of the given expression","Compute the cotangent of the given expression","Count expression","Count the values of the Series or Get counts of the group …","Cumulatively count values from 0 to len.","Get an array with the cumulative max computed at every …","Get an array with the cumulative min computed at every …","Get an array with the cumulative product computed at every …","Get an array with the cumulative sum computed at every …","","","","","","","","","","Convert from radians to degrees","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Drop NaN values","Drop null values","Compute the entropy as -sum(pk * log(pk). where pk are …","","Compare Expr with other Expr on equality","","","","","","","","","","","","","Compare Expr with other Expr on equality where None == None","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If polars may parse matches that not contain the whole …","Exclude a column from a wildcard/regex selection.","","Calculate the exponential of all elements in the input …","Explode the utf8/ list column","Replace the floating point NaN values by a value.","Replace the null values by a value.","Filter a single column.","First column in DataFrame","Get first item of every sublist.","Get the first value in the group.","Alias for explode","","","Floor underlying floating point array to the lowest …","Floor divide self by rhs.","","","","","","","","","","","","","","","","","","","","Formatting string","Fill missing value with previous non-null.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","A function that cannot be expressed with map or apply and …","Functions","Get items in every sublist by index.","","","","","Check if Expr > Expr","Check if Expr >= Expr","Whether this expression expands to multiple expressions.","","","","","","Get the head of every sublist","Get the first n elements of the Expr result","Aggregate the group to a Series","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Get a hold to an implementor of the Display trait that …","Get mask of finite values if dtype is Float","Check if the values of the left expression are in the …","Get mask of infinite values if dtype is Float","Get mask of NaN values if dtype is Float","Get inverse mask of NaN values if dtype is Float","Run is_not_null operation on Expr.","Run is_null operation on Expr.","Whether this expression expands to multiple expressions …","A projection that only takes a column or a column + alias.","Join all string items in a sublist and place a separator …","Keep the original root name","Last column in DataFrame","Get last item of every sublist.","Get the last value in the group.","Get lengths of the arrays in the List type.","","","Compute the logarithm to a given base","Compute the natural logarithm of all elements plus one in …","Get minimal value that could be hold by this dtype.","Check if Expr < Expr","Check if Expr <= Expr","Apply a function/closure once the logical plan get …","","Define an alias by mapping a function over the original …","","","","","","","","","","Apply a function/closure once the logical plan get …","Apply a function/closure over multiple columns once the …","Apply a function/closure once the logical plan get …","","Apply a function/closure over multiple columns once the …","","Explode the aggregated list and just do a hstack instead …","Compute the maximum of the items in every sublist.","Reduce groups to maximum value.","Compute the mean of every sublist and return a Series of …","Reduce groups to the mean value.","Reduce groups to the median value.","Get the meta::MetaNameSpace","Compute the minimum of the items in every sublist.","Reduce groups to minimal value.","","","Expr::mutate().apply(fn())","Get the number of unique values in the groups.","Reduce groups to maximum value.","Reduce groups to minimal value.","Compare Expr with other Expr on non-equality","Compare Expr with other Expr on non-equality where …","","","","Negate Expr","Get the null count of the column/group","or operation","","","Get the output name of this expression.","Apply window function over a subgroup. This is similar to …","","Constant Pi","Pop latest expression and return the input(s) of the …","Raise expression to the power exponent","Add a prefix to the root column name.","Get the product aggregation of an expression","Compute the quantile per group.","Convert from degrees to radians","","","Reverse every sublist","Reverse column","Get the root column names.","Round underlying floating point array to given decimal …","Proxy of the number of rows in both sides of the joins …","","","","Set this Series as sorted so that downstream code can use …","Shift every sublist.","Shift the values in the array by some period. See the …","Shift the values in the array by some period and fill the …","Shrink numeric columns to the minimal required datatype …","Compute the sine of the given expression","Compute the hyperbolic sine of the given expression","Slice every sublist.","Slice the Series. offset may be negative.","Sort every sublist.","Sort in increasing order. See the eager implementation.","Sort this column by the ordering of another column. Can …","Sort with given options.","Compute the square root of the given expression","Standard deviation of the values of the Series","","If set then polars will return an error if any date …","Cast expression to another data type. Throws an error if …","","","Add a suffix to the root column name.","Compute the sum the items in every sublist.","Reduce groups to the sum of all the values.","","","Get the tail of every sublist","Get the last n elements of the Expr result","Take the values by idx.","Compute the tangent of the given expression","Compute the hyperbolic tangent of the given expression","","","","Get a dot language representation of the Expression.","Get Field result of the expression. The schema is the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Undo any renaming operation like alias, keep_name.","Keep only the unique values in every sublist.","Get unique values of this expression.","Keep only the unique values in every sublist.","Get unique values of this expression, while maintaining …","Get maximal value that could be hold by this dtype.","Variance of the values of the Series","","","","","","","","","","","","","","","","","","","Start a when(..).then(..).otherwise(..) expression","","","","","","","","","","","","","","","","","","","","","","","","","function to apply","Also has the input. i.e. avg(“foo”)","","function to apply","","function arguments","","","function arguments","","","length is not yet known so we accept negative offsets","","","","","","","output dtype of the function","","","","","","","","","","","","","","","","","","","","","Specialized expressions for Series of DataType::Utf8.","","","Check if a binary value contains a literal binary.","","","","Check if a binary value ends with the given sequence.","Returns the argument unchanged.","","Calls U::from(self).","Check if a binary value starts with the given sequence.","","","","","Arguments used by datetime in order to produce an Expr of …","Arguments used by duration in order to produce an Expr of …","","","","Selects all columns. Shorthand for col("*").","Create a new column with the the bitwise-and of the …","Create a new column with the the bitwise-or of the …","Like map_binary, but used in a groupby-aggregation context.","Find the mean of all the values in the column named name. …","","","","","Casts the column given by Expr to a different type.","","","","","Folds the expressions from left to right keeping the first …","Create a Column Expression based on a column name.","Select multiple columns by name.","","Concat lists entries.","Compute the covariance between two columns.","","","","","","","","","","Select multiple columns by dtype.","Select multiple columns by dtype.","","","Accumulate over multiple columns horizontally / row wise.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","","A column which is false wherever expr is null, true …","A column which is true wherever expr is null, false …","Apply a closure on the two columns that are evaluated from …","Find the maximum of all the values in the column named name…","Create a new column with the the maximum value per row.","Find the mean of all the values in the column named name. …","Find the median of all the values in the column named name…","","","","Find the minimum of all the values in the column named name…","Create a new column with the the minimum value per row.","","","","","Construct a new DatetimeArgs set to year, month, day","Create a new DurationArgs with all fields set to lit(0). …","Negates a boolean column.","Compute the pearson correlation between two columns.","Find a specific quantile of all the values in the column …","Create a range literal.","Analogous to Iterator::reduce.","Create a column of length n containing n copies of the …","","","Sum all the values in the column named name. Shorthand for …","Create a new column with the the sum of the values in each …","","","","","","","","","","","","Set the day","Set the days","Set milliseconds, microseconds, and nanoseconds","Set hour, minute, and second","Set hours, minutes, and seconds","Set the hour","Set the hours","Set the microsecond","Set the microseconds","Set the milliseconds","Set the minute","Set the minutes","Set the month","Set the nanoseconds","Set the second","Set the seconds","Set the weeks","Set the year","","Specialized expressions for Series of DataType::Utf8.","","","Check if this column of strings contains a Regex. If strict…","Check if a string value contains a literal substring.","Count all successive non-overlapping regex matches.","","","","Check if a string value ends with the sub string.","","Extract a regex pattern from the a string value. If …","Extract each successive non-overlapping match in an …","Returns the argument unchanged.","","Calls U::from(self).","Return the number of bytes in the string (not characters).","Remove leading characters, or whitespace if matches is …","Return the number of characters in the string (not bytes).","Replace values that match a regex pat with a value.","Replace all values that match a regex pat with a value.","Replace values that match a regex pat with a value.","Remove trailing characters, or whitespace if matches is …","Split the string by a substring. The resulting dtype is …","Split the string by a substring and keep the substring. …","Check if a string value starts with the sub string.","Slice the string values.","Remove leading and trailing characters, or whitespace if …","Convert all characters to lowercase.","Convert all characters to uppercase.","","","","","AllowedOptimizations","State of the allowed optimizations","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","","","","","","","","","","","","","","","","","ALogicalPlan is a representation of LogicalPlan with Nodes …","","","","","Groupby aggregation","Any operation that is done on groups","","","","","","","","","","","","A raw binary array","","A binary true or false.","","Cache the input at this point in the LP","","","","","","","","In memory DataFrame","","","Any operation that is done while projection/ selection of …","","Remove duplicates from the table","","","Catches errors and throws them later","","","","","","","","This allows expressions to access other tables","","Aggregate all the columns used in csv scans and make sure …","","","","","","","","A 32-bit floating point number.","A 64-bit floating point number.","","","","Adding columns to the table without a Join","","A 32-bit integer number.","A 64-bit integer number.","","","Join operation","","","","","","","","","","","","A (User Defined) Function","","","","","","","","","","","The literal Null","","","","","","","","","","Column selection","","","","","","","","","","Filter on a boolean mask","","","","","","","Slice the table","","","Sort the table","","Optimizer that uses a stack and memory arenas in favor of …","","","","","","An unsigned 32-bit integer number.","An unsigned 64-bit integer number.","","","","","A UTF8 encoded string type.","","","","","","","","","","","","","","","","","specify if the scan provider should allow predicate …","specify if the scan provider should allow predicate …","specify if the scan provider should allow projection …","specify if the scan provider should allow projection …","specify if the scan provider should allow slice pushdowns","specify if the scan provider should allow slice pushdowns","","Arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Copy the exprs in this LP node to an existing container.","Push inputs of the LP in of this node to an existing …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether this function will increase the number of rows","","","","Apply a filter","Find the union between the columns per unique IO operation.","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Getter for the DataType of the value","Get expressions in this node.","","","","This should be a 1 on 1 copy of the get_type method of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Whether this function can run on batches of data at a time.","","","","","Create a Literal Expression from L. A literal expression …","Literal expression.","","","","","","","","","","","","converts a node from the AExpr arena to Expr","converts a node from the ALogicalPlan arena to a …","","","","","","","","","","","","Optimize (subplan) in LogicalPlan","Optimize (subplan) in LogicalPlan","","","","","","","","","","","","Creates a dataframe from the supplied function & scan …","","","","function to supply the schema. Allows for an optional …","function to supply the schema. Allows for an optional …","Get the schema of the logical plan node.","","","","","","","","","","converts expression to AExpr and adds it to the arena, …","converts LogicalPlan to ALogicalPlan it adds expressions & …","","","Get Field result of the expression. The schema is the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Defines different visitor patterns and for any tree.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Takes the expressions of an LP node and the inputs of that …","","","","","","","","","","","","","","","","","","function to apply","","","","","function arguments","","","","","","","","","","","","","","","","","","","","","","","","","","","","","generic options that can be used for all file types.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","schema of the projected file","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","allow predicate pushdown optimizations","allow projection pushdown optimizations","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Continue the visit to this node tree.","Continue the visit to this node and children.","Call op immediately and return This doesn’t visit the …","Don’t mutate this node, continue visiting the children","","","Controls how the TreeWalker recursion should proceed for …","","Keep recursive but skip applying op on the children","Stop the visit to this node tree.","Stop and return. This doesn’t visit the children","An implementor of this trait decides how and in which …","Controls how the TreeWalker recursion should proceed for …","","","","","Assign an AExpr to underlying arena.","Add a new ALogicalPlan to the arena and set that node to …","Take a Node and convert it an AExprNode and call F with …","Take a Node and convert it an ALogicalPlanNode and call F …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Get the Node.","","Invoked after all children of node are visited. Default …","Invoked after all children of node are visited. Default …","Invoked before any children of node are visited.","Invoked before any children of node are visited.","Invoked before any children of node are visited.","Invoked before any children of node are visited.","Replace the current Node with a new ALogicalPlan.","","","","","","","","","","","","","","","","","","","","Walks all nodes in depth-first-order.","Walks all nodes in depth-first-order.","","","","","Apply an operation with the underlying Arena.","","Apply an operation with the underlying Arena.","","Safe interface. Take the &mut Arena only for the duration …","Safe interface. Take the &mut Arena only for the duration …","","","Collect groups to a list and apply the function over the …","","","","","","","Generic options for all file types","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","automatically explode on unit length it ran as final …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Collect groups to a list and apply the function over the …","","","Data page compression","Data page compression","if None will be 1024^2 bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","There can be two ways of expanding wildcards:","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Any function that is sensitive to the number of elements …","","","Which rows to keep.","","","","maintain the order the data was processed","maintain the order the data was processed","This will maintain the order of the input. Note that this …","","","","","","","","","","","","","","","","allow predicate pushdown optimizations","allow projection pushdown optimizations","","","","","","","If None will be all written to a single row group.","","","","","","Take only a slice of the result","Take only a slice of the result","","Compute and write column statistics.","Subset of columns that will be taken into account.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Utility to write comma delimited strings","","output name of expr","unpack alias(col) to name of the root column name","This should gradually replace expr_to_root_column as this …","Take a list of expressions and a schema and determine the …","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,19,7,0,23,7,39,26,7,39,19,7,19,0,19,0,7,19,0,0,19,19,7,7,19,19,23,7,19,19,19,19,19,26,19,36,7,19,26,26,7,0,19,7,44,0,19,7,23,19,26,7,0,0,0,44,26,26,23,39,39,39,39,39,39,39,39,44,0,7,23,19,0,7,19,19,19,26,26,23,23,23,0,23,26,26,26,23,36,26,26,7,19,0,26,26,19,23,7,0,19,0,19,7,0,0,19,19,19,19,7,7,7,0,23,19,0,23,7,7,0,19,19,26,19,19,23,0,7,7,0,0,26,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,6,6,6,6,7,7,7,7,7,42,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,21,7,21,7,7,7,42,23,7,0,7,0,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,41,55,52,47,7,7,7,7,7,7,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,21,7,7,7,0,7,7,7,7,7,7,40,15,7,38,38,41,42,43,44,7,21,6,32,33,34,35,23,7,36,26,38,38,39,19,40,41,42,43,44,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,7,7,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,7,7,7,23,7,7,36,26,38,38,39,19,40,41,42,43,44,7,7,7,7,7,36,36,36,36,26,26,26,26,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,41,7,7,7,7,7,7,7,0,21,7,7,15,38,7,7,52,47,55,7,7,36,26,26,38,39,39,19,19,40,41,42,43,44,42,41,7,21,6,32,33,34,35,23,7,7,7,7,7,7,7,7,7,7,36,26,38,38,38,39,19,19,40,41,42,43,44,15,38,7,0,21,45,51,52,52,7,7,6,7,36,39,40,41,21,7,7,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,7,6,7,7,7,7,7,7,7,6,6,21,7,0,21,7,21,7,0,7,7,7,7,7,7,0,7,7,15,38,15,38,15,38,15,38,7,0,7,7,0,0,43,21,7,21,7,7,7,21,7,40,7,7,7,7,7,7,7,38,7,7,7,7,7,33,35,6,7,7,7,6,7,7,7,7,7,7,7,21,7,6,7,42,42,15,38,7,21,7,7,7,7,7,21,7,21,7,7,7,7,7,7,41,7,0,7,7,21,7,15,38,21,7,7,7,7,0,32,34,7,7,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,7,7,26,39,19,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,52,52,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,6,21,7,21,7,7,7,21,6,32,33,34,35,23,7,36,26,38,39,19,40,41,42,43,44,0,33,35,40,0,7,155,156,157,155,156,157,155,158,159,160,161,162,160,162,163,164,160,165,166,167,168,165,169,164,167,161,170,169,171,170,170,171,163,167,168,169,168,169,168,166,171,162,166,172,173,174,175,176,174,176,172,177,178,179,180,181,182,183,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,73,74,0,0,0,0,0,73,74,73,74,0,73,74,73,74,0,0,0,0,0,0,73,74,74,73,74,73,74,73,74,0,0,73,74,0,73,74,73,74,73,74,73,74,75,0,0,0,0,0,0,0,73,74,74,0,0,73,74,73,74,73,74,0,0,0,0,0,0,73,74,0,0,73,74,73,74,73,74,73,74,73,74,74,73,74,74,73,74,73,74,73,74,74,73,74,73,74,73,74,74,73,73,0,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,86,85,83,81,63,86,0,0,104,86,0,83,81,0,0,0,89,86,89,83,81,86,86,0,85,86,87,83,81,0,0,63,83,81,88,88,81,0,0,86,88,0,0,83,81,88,0,0,0,0,83,81,86,85,89,89,86,0,83,81,85,89,89,87,83,81,85,100,0,86,0,83,81,0,0,100,83,81,85,85,85,88,85,0,85,0,104,86,0,89,88,0,0,0,87,88,0,83,81,0,85,89,88,88,88,83,81,83,81,89,0,0,100,86,83,81,86,83,81,86,0,85,85,86,86,0,89,89,0,83,81,88,89,85,86,86,85,86,83,87,88,89,90,91,92,63,93,81,77,79,79,79,79,79,79,77,67,79,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,77,82,0,77,101,102,85,86,83,87,88,89,90,91,92,63,93,81,85,86,83,87,88,89,90,91,92,63,93,81,0,83,83,86,83,97,91,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,81,77,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,87,88,89,90,91,90,90,90,90,91,91,91,91,88,88,77,77,77,77,0,100,79,101,102,103,85,86,86,83,87,88,88,89,90,91,92,63,104,104,93,81,91,100,77,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,93,81,77,89,83,85,83,103,86,77,82,90,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,113,107,108,88,185,186,77,82,0,109,110,89,77,77,77,82,91,83,113,107,108,0,0,0,0,187,114,97,115,116,119,119,117,118,119,119,91,90,90,91,77,82,77,82,77,82,92,79,77,77,77,79,79,83,81,91,92,85,91,77,90,77,87,0,0,81,89,86,85,86,83,87,88,89,90,91,92,63,93,81,88,104,67,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,89,90,97,91,92,63,104,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,0,100,77,82,67,113,107,108,110,184,114,115,116,118,117,85,86,83,87,88,89,90,97,91,92,63,104,93,81,77,91,77,83,188,189,190,188,189,190,188,191,192,193,191,193,194,195,191,196,197,198,199,195,192,197,198,200,201,200,200,201,194,197,198,199,199,197,199,196,201,193,196,202,202,203,203,204,205,206,207,208,209,210,211,211,210,212,205,213,214,207,208,203,205,202,209,215,212,204,216,217,217,218,202,217,213,202,213,210,202,217,215,218,210,211,206,211,216,210,214,211,206,217,211,206,207,208,202,217,209,204,206,219,220,221,222,221,223,224,225,226,227,228,229,229,230,231,232,228,231,230,229,229,229,230,227,224,231,229,233,228,234,234,234,235,235,236,236,237,238,239,240,241,242,243,244,245,245,244,246,238,247,238,241,242,235,243,248,236,249,246,240,237,250,251,251,252,235,251,249,235,249,244,235,251,248,252,239,245,250,244,247,245,239,251,245,239,241,242,235,251,243,237,239,0,0,17,133,133,133,135,134,0,0,17,17,133,0,0,0,253,130,131,130,131,130,131,130,131,17,133,130,131,17,133,130,131,17,133,130,131,17,133,130,131,17,133,130,17,133,130,131,17,133,130,131,17,133,130,131,17,133,253,130,131,134,130,131,135,135,135,135,134,134,131,253,253,131,130,131,131,130,130,131,17,133,130,131,17,133,130,131,17,133,253,253,130,131,17,133,130,131,130,131,130,131,0,142,142,142,0,0,0,0,0,0,0,0,0,0,147,0,0,0,147,0,147,0,0,0,0,0,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,95,61,61,61,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,140,61,61,61,61,95,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,61,136,94,138,139,138,94,95,138,139,141,106,98,143,61,145,136,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,145,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,136,136,94,136,137,138,139,126,140,141,106,98,142,143,61,144,145,94,94,94,94,136,136,136,136,137,137,137,137,138,138,138,138,139,139,139,139,140,140,140,140,141,141,141,141,106,106,106,106,98,98,98,98,142,142,142,142,143,143,143,143,61,61,61,61,144,144,144,144,145,145,145,145,140,146,141,94,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,61,144,91,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,141,95,95,95,95,136,94,142,143,61,136,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,61,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,95,61,95,95,98,95,136,137,138,139,98,145,126,140,91,95,136,145,91,137,141,94,61,146,95,91,144,144,136,140,141,95,95,140,138,141,91,136,91,141,106,98,145,138,98,95,95,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,136,95,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,137,94,95,136,137,138,139,126,140,141,106,98,142,143,61,144,145,146,147,95,140,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[]],[[]],0,[2,2],[[]],[3],[3],[3],0,[[]],0,[[],3],[[]],[[]],[[],4],[[],4],[[],5],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[6,7],[[6,7],[[8,[7]]]],[[6,7],[[8,[7]]]],[[6,7],[[8,[7]]]],[7,7],[[7,7]],[7,7],[[7,9],7],[[7,10],7],0,[[7,[11,[7]]],7],[[7,10],7],[[7,[11,[7]],10],7],[[7,[0,[12,13,14]],15],7],[[7,16],[[8,[17]]]],[[7,[0,[12,13,14]],[18,[7]],15],7],[[7,19,[18,[7]],10,10],7],[[[0,[12,13,14]],[20,[[18,[7]]]],15,10],7],[7,7],[7,7],[7,7],[7,7],[7,7],[[7,7],7],[7,7],[21,7],[7,7],[21,7],[7,7],[[7,22],7],[7,7],0,[23,7],[[7,24],7],0,[7,25],[[7,26,7],7],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[9,[[8,[27]]]],[[[18,[28]]],[[8,[[29,[28]]]]]],[[28,28],[[8,[28]]]],[[7,30],7],[7,7],[7,7],[[7,31,31],7],[[7,31],7],[[7,31],7],[32,32],[33,33],[34,34],[35,35],[23,23],[7,7],[36,36],[26,26],[[[38,[37]]],[[38,[37]]]],[39,39],[19,19],[40,40],[41,41],[42,42],[43,43],[44,44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[21,[11,[7]]],7],[7,7],[7,7],[7,7],[[],7],[7,7],[[7,10],7],[[7,10],7],[[7,10],7],[[7,10],7],[[7,10],7],0,[[],15],[[],7],[[],[[38,[[46,[45]]]]]],[[],[[38,[[46,[47]]]]]],[[],41],[[],42],[[],43],[[],44],[7,7],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[38],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[[7,7]],[[7,[11,[7]]],7],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[7,7],[7,7],[[7,48,10],7],[[23,23],10],[[7,[11,[7]]],7],[[7,7],10],[[36,36],10],[[26,26],10],[[[38,[[46,[49]]]],[38,[[46,[49]]]]],10],[[[38,[28]],[38,[28]]],10],[[39,39],10],[[19,19],10],[[40,40],10],[[41,41],10],[[42,42],10],[[43,43],10],[[44,44],10],[[7,[11,[7]]],7],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],0,[[7,[50,[27]]],7],[[7,[20,[[18,[30]]]]],7],[7,7],[7,7],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[[],7],[21,7],[7,7],[7,7],[[],15],[[],[[38,[[46,[51]]]]]],[7,7],[[7,7],7],[[52,53],54],[[47,53],54],[[55,53],54],[[7,53],54],[[7,53],54],[[36,53],54],[[26,53],54],[[26,53],54],[[38,53],54],[[39,53],54],[[39,53],54],[[19,53],54],[[19,53],54],[[40,53],54],[[41,53],54],[[42,53],54],[[43,53],54],[[44,53],54],0,0,[[7,24],7],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[56,7],[10,7],[57,7],[48,7],[9,7],[58,7],[[]],[23,7],[59,7],[60,7],[[]],[[]],[[]],[39,[[38,[[46,[52]]]]]],[19,[[38,[[46,[52]]]]]],[[]],[39,19],[[]],[[]],[[]],[[]],[[]],[[]],[30,15],[30,[[38,[[46,[51]]]]]],[[7,[0,[12,13,14]],15,61],7],0,[[21,7],7],[[62,63,64,64],[[29,[64]]]],[[62,63,[18,[64]]],64],[[],[[29,[15]]]],[[],[[29,[15]]]],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[6,10],[[7,65]],[[36,65]],[[39,65]],[[40,65]],[[41,65]],[[21,7],7],[[7,[29,[3]]],7],[7,7],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[7],[6,[[8,[66]]]],[7,7],[[7,[11,[7]]],7],[7,7],[7,7],[7,7],[7,7],[7,7],[6,10],[6,10],[[21,9],7],[7,7],[[],7],[21,7],[7,7],[21,7],[7,21],0,[[7,48],7],[7,7],[7,7],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[[7,[0,[12,13,14]],15],7],0,[[7,[0,[12,13,14]]],7],[[7,16],[[8,[7]]]],[[[0,[12,13,14]]],15],[[[0,[12,13,14]]],[[38,[[46,[51]]]]]],[[[0,[12,13,14]]],15],[[[0,[12,13,14]]],[[38,[[46,[51]]]]]],[[[0,[12,13,14]]],15],[[[0,[12,13,14]]],[[38,[[46,[51]]]]]],[[[0,[12,13,14]]],15],[[[0,[12,13,14]]],[[38,[[46,[51]]]]]],[[7,[0,[12,13,14]],15],7],[[[0,[12,13,14]],[20,[[18,[7]]]],15],7],[[7,[0,[12,13,14]],[18,[7]],15],7],[[7,19,[18,[7]],10],7],[[[0,[12,13,14]],[20,[[18,[7]]]],15],7],0,0,[21,7],[7,7],[21,7],[7,7],[7,7],[7,6],[21,7],[7,7],0,[[7,7]],[7,67],[7,7],[7,7],[7,7],[[7,[11,[7]]],7],[[7,[11,[7]]],7],[[],38],[[7,[68,[7]]]],[[7,[68,[7]]]],[7,7],[7,7],[[7,[11,[7]]],7],[[33,[11,[7]]],7],[[35,[11,[7]]],7],[6,[[8,[[46,[9]]]]]],[[7,[20,[[18,[[0,[[11,[7]],37]]]]]]],7],[[7,[20,[[18,[[0,[[11,[7]],37]]]]]],43],7],[[],7],[6,[[68,[7]]]],[[7,[11,[7]]],7],[[7,9],7],[7,7],[[7,7,69],7],[7,7],[[7,7]],[[7,[18,[56]]],7],[21,7],[7,7],[6,[[68,[[46,[9]]]]]],[[7,58],7],0,0,[[],15],[[],[[38,[[46,[51]]]]]],[[7,70],7],[[21,56],7],[[7,56],7],[[7,56,[11,[7]]],7],[7,7],[7,7],[7,7],[[21,7,7],7],[[7,[11,[7]],[11,[7]]],7],[[21,22],7],[[7,10],7],[[7,[20,[[18,[[0,[[11,[7]],37]]]]]],[20,[[18,[10]]]]],7],[[7,22],7],[7,7],[[7,71],7],[7,72],0,[[7,30],7],0,[[7,7]],[[7,9],7],[21,7],[7,7],[[],15],[[],[[38,[[46,[51]]]]]],[[21,7],7],[[7,[29,[3]]],7],[[7,[11,[7]]],7],[7,7],[7,7],[[7,7,7],7],[[32,[11,[7]]],33],[[34,[11,[7]]],35],[7,[[8,[27]]]],[[7,62,63],[[8,[64]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[7,7],[[],27],[[],27],[[],27],[[],27],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[[68,[71]]],8],[[[68,[71]]],8],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[6,7],[21,7],[7,7],[21,7],[7,7],[7,7],[[7,71],7],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[11,[7]]],32],[[33,[11,[7]]],34],[[35,[11,[7]]],34],0,0,[[7,[11,[7]]],7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[25,[20,[[18,[71]]]]],7],[3],[3],[3],[[25,[20,[[18,[71]]]]],7],[[]],[[],3],[[]],[[25,[20,[[18,[71]]]]],7],[[],4],[[],4],[[],5],[[]],0,0,0,[1],[1],[[],7],[[[20,[[18,[7]]]]],7],[[[20,[[18,[7]]]]],7],[[7,7,[0,[12,13,14]],15],7],[9,7],[[]],[[]],[[]],[[]],[[7,30],7],[73,73],[74,74],[[]],[[]],[[[18,[7]]],7],[9,7],[[[50,[27]]],7],[[[20,[[18,[[0,[[11,[7]],37]]]]]],10],[[8,[7]]]],[[[20,[[18,[[0,[[11,[7]],37]]]]]]],[[8,[7]]]],[[7,7],7],0,0,[[],74],[3],[3],[3],[3],[3],[3],[30,7],[[[20,[[18,[30]]]]],7],[[73,53],54],[[74,53],54],[[7,[0,[12,13,14,37]],[20,[[18,[7]]]]],7],[[]],[[]],0,0,[[],3],[[],3],[[]],[[]],[[],7],[7,7],[7,7],[[7,7,[0,[12,13,14]],15],7],[9,7],[[[20,[[18,[7]]]]],7],[9,7],[9,7],0,0,0,[9,7],[[[20,[[18,[7]]]]],7],0,0,0,0,[[7,7,7],73],[[],74],[7,7],[[7,7,71],7],[[9,7,69],7],[[[75,[[75,[[75,[[75,[75]]]]]]]],[75,[[75,[[75,[[75,[75]]]]]]]]],7],[[[0,[12,13,14,37]],[20,[[18,[7]]]]],7],[[[11,[7]],7],7],0,0,[9,7],[[[20,[[18,[7]]]]],7],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],5],[[],5],[[]],[[]],0,[[73,7],73],[[74,7],74],[[74,7,7,7],74],[[73,7,7,7],73],[[74,7,7,7],74],[[73,7],73],[[74,7],74],[[73,7],73],[[74,7],74],[[74,7],74],[[73,7],73],[[74,7],74],[[73,7],73],[[74,7],74],[[73,7],73],[[74,7],74],[[74,7],74],[[73,7],73],0,0,[[]],[[]],[[72,7,10],7],[[72,7],7],[[72,9],7],[3],[3],[3],[[72,7],7],[72,7],[[72,9,3],7],[[72,7],7],[[]],[[],3],[[]],[72,7],[[72,[29,[27]]],7],[72,7],[[72,7,7,10],7],[[72,7,7,10],7],[[72,7,7,10,56],7],[[72,[29,[27]]],7],[[72,9],7],[[72,9],7],[[72,7],7],[[72,56,[29,[59]]],7],[[72,[29,[27]]],7],[72,7],[72,7],[[],4],[[],4],[[],5],[[]],0,0,[1],[[]],[[]],[76,76],[[]],[[],76],[3],[3],[3],0,[[76,53],54],[[]],[[],3],[[]],0,0,0,0,0,[[]],[[],4],[[],4],0,[[],5],[[]],0,[[],10],[[[29,[3]]],[[29,[3]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[[77,78],77],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[[46,[79]],[29,[62]],[29,[3]],[29,[3]],[29,[3]],9],[[8,[77]]]],[[67,16]],[[],80],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[77,81],[82,83],0,[77,77],[84,[[8,[84]]]],[84,[[8,[84]]]],[85,85],[86,86],[83,83],[87,87],[88,88],[89,89],[90,90],[91,91],[92,92],[63,63],[93,93],[81,81],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[94,[68,[90]],[95,[83]],[95,[86]]]],[[83,[68,[94]]]],[[83,96]],[[],86],[[],83],[[],97],[[],91],[[],81],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[93],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[81,27],[[77,98],77],[[81,27,2,[99,[27,27]]],54],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[[87,87],10],[[88,88],10],[[89,89],10],[[90,90],10],[[91,91],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[88,84],[[8,[84]]]],[88,10],[[77,[68,[7]]],77],[[77,7],77],[[77,7],77],[[77,7],77],[[94,[99,[90]],[95,[83]],[95,[86]]]],[100,94],[[79,53],54],[[101,53],54],[[102,53],54],[[103,53],54],[[85,53],54],[[86,53],54],[[86,53],54],[[83,53],54],[[87,53],54],[[88,53],54],[[88,53],54],[[89,53],54],[[90,53],54],[[91,53],54],[[92,53],54],[[63,53],54],[[104,53],54],[[104,53],54],[[93,53],54],[[81,53],54],0,[[]],[[]],[81,77],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[78,93],[[]],[[]],[84,77],[89,30],[83,[[68,[94]]]],[85,100],[83,[[68,[94]]]],[62,[[8,[105]]]],[[86,62,63,[95,[86]]],[[8,[30]]]],[[77,[68,[7]],[20,[[18,[7]]]],[29,[[46,[101]]]],10],77],[[82,[68,[94]],[68,[94]],[29,[[46,[101]]]],10,[46,[106]]],82],[[90,65]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[88,10],[94,107],[94,108],[[77,81,[68,[7]],[68,[7]],[46,[42]]],77],[[82,94,[68,[94]],[68,[94]],[46,[42]]],82],[109,7],[[],7],[110,7],[89,7],[[77,101,111,[29,[[46,[103]]]],9],77],[[77,88],77],[[77,[46,[112]]],77],[[82,[46,[112]]],82],0,[83,9],[113,29],[107,29],[108,29],[[94,[95,[86]]],7],[[94,[95,[86]],[95,[83]]],81],[[94,[95,[86]],[95,[83]]],81],[[81,76,[95,[83]],[95,[86]],[68,[94]]],[[8,[94]]]],[81,[[8,[81]]]],[[114,83,[95,[83]],[95,[86]]],[[8,[83]]]],[[97,83,[95,[83]],[95,[86]]],[[8,[83]]]],[[115,[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[116,[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[117,[95,[86]],94,[95,[83]],94],[[8,[[29,[86]]]]]],[[118,[18,[[120,[119]]]],[95,[86]],[95,[83]],94],[[8,[94]]]],[[[95,[83]],[95,[86]],94],[[29,[83]]]],[[[95,[83]],[95,[86]],94],[[29,[83]]]],0,0,0,0,[[77,[68,[7]]],77],[[82,[68,[94]]],82],[[77,[68,[7]]],77],[[82,[68,[94]]],82],[[77,9,[29,[121]]],77],[[82,[46,[9]],[29,[121]]],82],0,[91,[[8,[84]]]],[[[11,[122]],71,10,10,3,[29,[3]],10,[29,[[46,[62]]]],[29,[62]],10,[29,[71]],[29,[71]],71,[29,[123]],[29,[3]],10,3,124,[29,[125]],10],[[8,[77]]]],[[[11,[122]],126,[29,[3]],10,[29,[125]],10],[[8,[77]]]],[[[11,[122]],[29,[3]],10,127,[29,[125]],10,10,[29,[128]],10],[[8,[77]]]],[[[29,[3]]],[[8,[62]]]],[[[29,[3]]],[[8,[62]]]],[[83,[95,[83]]],[[129,[105]]]],[81,[[8,[[129,[105]]]]]],0,0,[[85,94]],0,[[77,56,121],77],0,[[77,[68,[7]],[68,[10]],10,10],77],[87,10],[[7,[95,[86]]],94],[[81,[95,[86]],[95,[83]]],[[8,[94]]]],[81,8],[89,[[29,[31]]]],[[86,62,63,[95,[86]]],[[8,[64]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],27],[[],27],[[67,16],8],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[31,[[8,[89]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[77,[68,[7]]],77],0,[[77,[68,[81]]],77],[[83,[68,[94]],[68,[94]]],83],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[16,[[8,[17]]]],[[130,16],[[8,[17]]]],[[131,16],[[8,[17]]]],[[130,86]],[[131,83]],[[130,94,132]],[[131,94,132]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[[130,130],10],[[17,53],54],[[133,53],54],[[]],[[]],[[]],[[]],[[],3],[[],3],[[],3],[[],3],[[]],[[]],[[]],[[]],[16,8],[[130,16],[[8,[130]]]],[[131,16],[[8,[131]]]],[[],8],[130,94],[131,94],[[],[[8,[17]]]],[[],[[8,[17]]]],[[],[[8,[17]]]],[[],[[8,[17]]]],[[],[[8,[133]]]],[[],[[8,[133]]]],[[131,83]],[134,8],[134,8],[131,[[129,[105]]]],[130,86],[131,83],[131,83],[130,7],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],5],[[],5],[[],5],[[],5],[135,[[8,[17]]]],[135,[[8,[17]]]],[[]],[[]],[[]],[[]],[[130,132]],[[131,12]],[[130,132]],[[131,132]],[[94,[95,[86]],16]],[[94,[95,[83]],16]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[95,94],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[61,10],0,[95],[94,94],[[[95,[37]]],[[95,[37]]]],[136,136],[137,137],[138,138],[139,139],[126,126],[140,140],[141,141],[106,106],[98,98],[142,142],[143,143],[61,61],[144,144],[145,145],[146,146],[147,147],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[94,94],148],0,0,[[],148],0,0,0,[[],94],[[],95],[[],138],[[],139],[[],141],[[],106],[[],98],[[],143],[[],61],[[],145],0,[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],0,[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],[3],0,0,[[94,94],10],[[136,136],10],[[137,137],10],[[138,138],10],[[139,139],10],[[126,126],10],[[140,140],10],[[141,141],10],[[106,106],10],[[98,98],10],[[142,142],10],[[143,143],10],[[61,61],10],[[144,144],10],[[145,145],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],0,0,0,[[94,53],[[4,[149]]]],[[136,53],54],[[137,53],54],[[138,53],54],[[139,53],54],[[126,53],54],[[140,53],54],[[141,53],54],[[106,53],54],[[98,53],54],[[142,53],54],[[143,53],54],[[61,53],54],[[144,53],54],[[145,53],54],[[146,53],54],[[147,53],54],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[95,94]],[[95,94]],[95,[[29,[94]]]],[[95,94]],0,[[94,65]],[[142,65]],[[143,65]],[[61,65]],0,[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[95,10],[61,10],[[[95,[83]],94],108],[[[95,[86]],94],107],0,[95,3],0,0,0,0,0,0,0,0,0,[[],95],0,0,0,0,0,[[94,94],[[29,[148]]]],0,0,[95,29],0,0,0,0,0,0,[[95,94]],[[[95,[150]],94,132]],0,0,0,0,0,0,0,0,0,0,0,0,[[95,94,94]],[[[95,[150]],94],150],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[[[95,[150]],94,16],[[4,[151]]]],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3,95],0,0,0,[[94,[95,[86]]],[[46,[9]]]],[[94,[95,[86]]],[[68,[[46,[9]]]]]],[[94,[95,[86]]],152],[152,7],[[27,[18,[153]]],27],[[94,94,[95,[83]],[95,[86]],[154,[[46,[9]]]]],10],[7,[[8,[[46,[9]]]]]],[7,[[8,[[46,[9]]]]]],[7,[[68,[[46,[9]]]]]],[[[18,[7]],62,63],[[8,[62]]]],[[94,[95,[86]],12],10],[[94,[95,[86]]],10],[[94,[95,[86]]],10],[7,10],[94],[28]],"c":[],"p":[[3,"Private"],[3,"DotNode"],[15,"usize"],[4,"Result"],[3,"TypeId"],[3,"MetaNameSpace"],[4,"Expr"],[6,"PolarsResult"],[15,"str"],[15,"bool"],[8,"Into"],[8,"Fn"],[8,"Send"],[8,"Sync"],[6,"GetOutput"],[8,"FnMut"],[4,"VisitRecursion"],[15,"slice"],[4,"FunctionExpr"],[8,"AsRef"],[3,"ListNameSpace"],[3,"SortOptions"],[4,"AggExpr"],[6,"FillNullLimit"],[3,"BinaryNameSpace"],[4,"Operator"],[3,"String"],[3,"Series"],[4,"Option"],[4,"DataType"],[4,"AnyValue"],[3,"When"],[3,"Then"],[3,"ChainedWhen"],[3,"ChainedThen"],[4,"Excluded"],[8,"Clone"],[3,"SpecialEq"],[4,"BooleanFunction"],[3,"RollingCovOptions"],[3,"StrptimeOptions"],[3,"JoinOptions"],[3,"WindowOptions"],[4,"WindowMapping"],[8,"BinaryUdfOutputField"],[3,"Arc"],[8,"SeriesBinaryUdf"],[15,"f64"],[8,"Sized"],[8,"IntoVec"],[8,"FunctionOutputField"],[8,"SeriesUdf"],[3,"Formatter"],[6,"Result"],[8,"RenameAliasFn"],[15,"i64"],[15,"f32"],[15,"u32"],[15,"u64"],[15,"i32"],[3,"FunctionOptions"],[3,"Schema"],[4,"Context"],[3,"Field"],[8,"Hasher"],[8,"Display"],[3,"ExprMut"],[3,"Vec"],[4,"QuantileInterpolOptions"],[4,"IsSorted"],[15,"u8"],[3,"StringNameSpace"],[3,"DatetimeArgs"],[3,"DurationArgs"],[8,"Range"],[3,"OptState"],[3,"LogicalPlanBuilder"],[4,"PolarsError"],[8,"AnonymousScan"],[8,"Any"],[4,"LogicalPlan"],[3,"ALogicalPlanBuilder"],[4,"ALogicalPlan"],[3,"DataFrame"],[4,"AAggExpr"],[4,"AExpr"],[4,"FileScan"],[4,"FunctionNode"],[4,"LiteralValue"],[3,"FileFingerPrint"],[3,"AnonymousScanOptions"],[3,"FileInfo"],[3,"ErrorStateSync"],[3,"Node"],[3,"Arena"],[8,"PushNode"],[3,"PredicatePushDown"],[3,"DistinctOptions"],[6,"PlHashMap"],[4,"NodeInputs"],[8,"DataFrameUdf"],[8,"DataFrameUdfMut"],[8,"UdfSchema"],[4,"ErrorState"],[6,"SchemaRef"],[3,"GroupbyOptions"],[3,"AExprIter"],[3,"AlpIter"],[8,"Literal"],[3,"Null"],[6,"AllowedOptimizations"],[3,"MeltArgs"],[3,"ExprIter"],[3,"ProjectionPushDown"],[3,"SimplifyBooleanRule"],[3,"SimplifyExprRule"],[3,"TypeCoercionRule"],[3,"StackOptimizer"],[8,"OptimizationRule"],[3,"Box"],[6,"IdxSize"],[3,"PathBuf"],[4,"NullValues"],[4,"CsvEncoding"],[3,"RowCount"],[3,"IpcScanOptions"],[4,"ParallelStrategy"],[3,"CloudOptions"],[4,"Cow"],[3,"AexprNode"],[3,"ALogicalPlanNode"],[8,"FnOnce"],[4,"RewriteRecursion"],[8,"RewritingVisitor"],[8,"Visitor"],[3,"CsvParserOptions"],[3,"ParquetOptions"],[3,"ParquetWriteOptions"],[3,"IpcWriterOptions"],[3,"FileScanOptions"],[3,"UnionOptions"],[4,"ApplyOptions"],[3,"UnsafeBool"],[3,"LogicalPlanUdfOptions"],[3,"SortArguments"],[3,"FileSinkOptions"],[4,"FileType"],[4,"Ordering"],[3,"Error"],[8,"Default"],[4,"PolarsUtilsError"],[8,"Iterator"],[6,"String"],[6,"PlHashSet"],[13,"Quantile"],[13,"Min"],[13,"Max"],[13,"All"],[13,"Any"],[13,"SortBy"],[13,"Filter"],[13,"Cast"],[13,"Sort"],[13,"Take"],[13,"RenameAlias"],[13,"Ternary"],[13,"Function"],[13,"Window"],[13,"AnonymousFunction"],[13,"Slice"],[13,"BinaryExpr"],[13,"Entropy"],[13,"Log"],[13,"Correlation"],[13,"Round"],[13,"Clip"],[13,"ShiftAndFill"],[13,"Cumcount"],[13,"Cumsum"],[13,"Cumprod"],[13,"Cummin"],[13,"Cummax"],[13,"FillNull"],[3,"FileCacher"],[8,"ArenaExprIter"],[8,"ArenaLpIter"],[8,"Optimize"],[13,"Quantile"],[13,"Min"],[13,"Max"],[13,"SortBy"],[13,"Filter"],[13,"Cast"],[13,"Sort"],[13,"Take"],[13,"Ternary"],[13,"AnonymousFunction"],[13,"Function"],[13,"Window"],[13,"Slice"],[13,"BinaryExpr"],[13,"Aggregate"],[13,"Sort"],[13,"ExtContext"],[13,"Cache"],[13,"DataFrameScan"],[13,"Projection"],[13,"LocalProjection"],[13,"HStack"],[13,"AnonymousScan"],[13,"Scan"],[13,"MapFunction"],[13,"Slice"],[13,"Selection"],[13,"Distinct"],[13,"FileSink"],[13,"Join"],[13,"Union"],[13,"NotYetEncountered"],[13,"AlreadyEncountered"],[13,"Parquet"],[13,"Csv"],[13,"Ipc"],[13,"Melt"],[13,"Unnest"],[13,"FastProjection"],[13,"Explode"],[13,"Rename"],[13,"Opaque"],[13,"Pipeline"],[13,"RowCount"],[13,"Drop"],[13,"DropNulls"],[13,"Range"],[13,"Aggregate"],[13,"Sort"],[13,"ExtContext"],[13,"Cache"],[13,"DataFrameScan"],[13,"Error"],[13,"LocalProjection"],[13,"Projection"],[13,"HStack"],[13,"AnonymousScan"],[13,"Scan"],[13,"MapFunction"],[13,"Selection"],[13,"Distinct"],[13,"Slice"],[13,"FileSink"],[13,"Join"],[13,"Union"],[8,"TreeWalker"]]},\ "polars_row":{"doc":"Row format as defined in arrow-rs. This currently …","t":"GDDLLLLLLLLLLLCCCCALLLLLLMLLALLLLLLLLMLLLLLLLLOFFFFFFFF","n":["ArrayRef","RowsEncoded","SortField","__clone_box","__clone_box","borrow","borrow","borrow_array","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","convert_columns","convert_columns_amortized","convert_columns_amortized_no_order","convert_columns_no_order","decode","default","default","deref","deref","deref_mut","deref_mut","descending","drop","drop","encode","from","from","init","init","into","into","into_array","iter","nulls_last","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","with_match_arrow_primitive_type","decode_rows","decode_rows_from_binary","allocate_rows_buf","convert_columns","convert_columns_amortized","convert_columns_amortized_no_order","convert_columns_no_order","encoded_size"],"q":[[0,"polars_row"],[47,"polars_row::decode"],[49,"polars_row::encode"]],"d":["","","","","","","","Borrows the buffers and returns a BinaryArray.","","","","","","","","","","","","","","","","","","Whether to sort in descending order","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","","","Whether to sort nulls first","","","","","","","","","","Decode rows into a arrow format","Decode rows into a arrow format","","","","","",""],"i":[0,0,0,5,2,5,2,2,5,2,5,2,5,2,0,0,0,0,0,5,2,5,2,5,2,5,5,2,0,5,2,5,2,5,2,2,2,5,5,2,5,2,5,2,5,2,0,0,0,0,0,0,0,0,0],"f":[0,0,0,[1],[1],[[]],[[]],[2,[[4,[3]]]],[[]],[[]],[5,5],[2,2],[[]],[[]],0,0,0,0,0,[[],5],[[],2],[6],[6],[6],[6],0,[6],[6],0,[[]],[[]],[[],6],[[],6],[[]],[[]],[2,[[4,[3]]]],0,0,[[]],[[]],[[],7],[[],7],[[],7],[[],7],[[],8],[[],8],0,[[[10,[[10,[9]]]],[10,[5]],[10,[11]]],[[13,[12]]]],[[[4,[3]],[10,[5]],[10,[11]],[13,[[10,[9]]]]],[[13,[12]]]],[[[10,[12]],[13,[9]],[13,[6]]],6],[[[10,[12]],[10,[5]]],2],[[[10,[12]],14,2]],[[[10,[12]],2]],[[[10,[12]]],2],[11,6]],"c":[],"p":[[3,"Private"],[3,"RowsEncoded"],[15,"i64"],[3,"BinaryArray"],[3,"SortField"],[15,"usize"],[4,"Result"],[3,"TypeId"],[15,"u8"],[15,"slice"],[4,"DataType"],[6,"ArrayRef"],[3,"Vec"],[8,"IntoIterator"]]},\ "polars_sql":{"doc":"Polars SQL This crate provides a SQL interface for Polars …","t":"DLLLLLLLLLLLLLLLALLLFLLLLLLFF","n":["SQLContext","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref_mut","drop","execute","from","get_table_map","get_tables","init","into","keywords","new","new_from_table_map","register","sql_expr","to_owned","try_from","try_into","type_id","unregister","vzip","all_functions","all_keywords"],"q":[[0,"polars_sql"],[27,"polars_sql::keywords"]],"d":["The SQLContext is the main entry point for executing SQL …","","","","","","","","","","Execute a SQL query, returning a LazyFrame.","Returns the argument unchanged.","Get internal table map. For internal use only.","Get the names of all registered tables, in sorted order.","","Calls U::from(self).","Keywords that are supported by Polars SQL","Create a new SQLContext","Create a new SQLContext from a table map. For internal use …","Register a LazyFrame as a table in the SQLContext.","parse a SQL expression to a polars expression","","","","","Unregister a LazyFrame table from the SQLContext.","","Get a list of all function names that are supported by …","Get all keywords that are supported by Polars SQL"],"i":[0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,2,2,2,0,2,2,2,2,2,2,0,0],"f":[0,[1],[[]],[[]],[2,2],[[]],[[],2],[3],[3],[3],[[2,4],[[6,[5]]]],[[]],[2,[[8,[7,5]]]],[2,[[9,[7]]]],[[],3],[[]],0,[[],2],[[[8,[7,5]]],2],[[2,4,5]],[[[10,[4]]],[[6,[11]]]],[[]],[[],12],[[],12],[[],13],[[2,4]],[[]],[[],[[9,[4]]]],[[],[[9,[4]]]]],"c":[],"p":[[3,"Private"],[3,"SQLContext"],[15,"usize"],[15,"str"],[3,"LazyFrame"],[6,"PolarsResult"],[3,"String"],[6,"PlHashMap"],[3,"Vec"],[8,"AsRef"],[4,"Expr"],[4,"Result"],[3,"TypeId"]]},\ -"polars_time":{"doc":"","t":"NEDDNNIIIIIINDDDLLLFLLLLLLMMALLLLLLMMFLLLLLLLLLLLFLLLLLLLLLLLLMMLLLLLLKKLFMMMLLLLLLKKMMMMMMMAKAMFFLLLKMLLLLLLLLLKKMLLLIIIIDDICLLLLLLMMMMLLLLMMLLLLKLLLLLLLLMMLLLKLLKLLLLLLLLLLLLKKMMKLLKLLLLKLLKLLLLKKLLLLLLKKKKKKKKKLLKLLLLLLMLLMFALLLLLLLLLLMMMMLLLLINNNNNEILLLLLLKLLLLLLLLLLLLLLALLLLLLLLDQIILLLLLLLLLFLLMLKLLMLLKLLLLLNDDENDNNNNNNCENCNNNDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLFLLLLLLLLLLLLLLLLLLLLLLMLMLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIIIIIKLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLL","n":["Both","ClosedWindow","Duration","DynamicGroupOptions","Left","None","PolarsMonthEnd","PolarsMonthStart","PolarsRound","PolarsTemporalGroupby","PolarsTruncate","PolarsUpsample","Right","RollingGroupOptions","TruncateOptions","Window","__clone_box","__clone_box","__clone_box","base_utc_offset","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","check_sorted","check_sorted","chunkedarray","clone","clone","clone","clone_into","clone_into","clone_into","closed_window","closed_window","date_range","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","dst_offset","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","every","every","fmt","fmt","fmt","from","from","from","groupby_dynamic","groupby_rolling","hash","in_nanoseconds_window","include_boundaries","index_column","index_column","init","init","init","into","into","into","month_end","month_start","offset","offset","offset","offset","parsed_int","period","period","prelude","round","series","start_by","temporal_range_vec","time_range","to_owned","to_owned","to_owned","truncate","truncate","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","upsample","upsample_stable","use_earliest","vzip","vzip","vzip","DateMethods","DatetimeMethods","DurationMethods","RollingAgg","RollingOptions","RollingOptionsImpl","TimeMethods","Utf8Methods","__clone_box","__clone_box","borrow","borrow","borrow_mut","borrow_mut","by","by","center","center","clone","clone","clone_into","clone_into","closed_window","closed_window","day","day","day","day","days","default","default","deref","deref","deref_mut","deref_mut","drop","drop","fn_params","fn_params","from","from","from","hour","hour","hour","hours","init","init","into","into","is_leap_year","is_leap_year","is_leap_year","is_leap_year","iso_year","iso_year","iso_year","iso_year","microseconds","milliseconds","min_periods","min_periods","minute","minute","minute","minutes","month","month","month","month","nanosecond","nanosecond","nanosecond","nanoseconds","ordinal","ordinal","ordinal","ordinal","parse_from_str_slice","parse_from_str_slice","parse_from_str_slice","parse_from_str_slice","quarter","quarter","quarter","quarter","rolling_max","rolling_mean","rolling_median","rolling_min","rolling_quantile","rolling_std","rolling_sum","rolling_var","second","second","second","seconds","to_owned","to_owned","try_from","try_from","try_into","try_into","tu","type_id","type_id","tz","unix_time","utf8","vzip","vzip","week","week","week","week","weekday","weekday","weekday","weekday","weights","weights","window_size","window_size","year","year","year","year","AsUtf8","DateDMY","DateYMD","DatetimeDMY","DatetimeYMD","DatetimeYMDZ","Pattern","Utf8Methods","__clone_box","as_date","as_date_not_exact","as_datetime","as_datetime_not_exact","as_time","as_utf8","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","fmt","from","hash","infer","init","into","is_inferable","to_owned","try_from","try_into","type_id","vzip","DatetimeInfer","Error","StrpTimeParser","TryFromWithUnit","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","from","infer_pattern_single","init","into","logical_type","parse","parse_bytes","parse_bytes","parse_bytes","pattern","to_owned","try_from","try_from_with_unit","try_from_with_unit","try_from_with_unit","try_into","type_id","vzip","Both","Bounds","BoundsIter","ClosedWindow","DataPoint","Duration","Friday","Left","Monday","None","Right","Saturday","SeriesOpsTime","StartBy","Sunday","TemporalMethods","Thursday","Tuesday","Wednesday","Window","WindowBound","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add_ms","add_ns","add_us","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","compare","date_range","days","days_only","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","get_earliest_bounds_ms","get_earliest_bounds_ns","get_earliest_bounds_us","get_overlapping_bounds_iter","groupby_values","groupby_windows","hash","hash","hash","in_nanoseconds_window","init","init","init","init","init","init","into","into","into","into","into","into","into_iter","is_constant_duration","is_zero","months","months_only","mul","nanoseconds","new","new","next","offset","parse","parsed_int","partial_cmp","round_ms","round_ns","round_us","time_range","to_owned","to_owned","to_owned","to_owned","to_owned","truncate_impl","truncate_ms","truncate_ms","truncate_no_offset_ms","truncate_no_offset_ns","truncate_no_offset_us","truncate_ns","truncate_ns","truncate_us","truncate_us","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","weekday","weeks","weeks_only","AsSeries","IntoSeriesOps","SeriesOpsTime","SeriesOpsTime","TemporalMethods","as_series","day","hour","is_leap_year","iso_year","minute","month","nanosecond","ops_time_dtype","ops_time_dtype","ordinal_day","ordinal_year","quarter","rolling_max","rolling_max","rolling_max","rolling_mean","rolling_mean","rolling_mean","rolling_median","rolling_median","rolling_median","rolling_min","rolling_min","rolling_min","rolling_quantile","rolling_quantile","rolling_quantile","rolling_std","rolling_std","rolling_std","rolling_sum","rolling_sum","rolling_sum","rolling_var","rolling_var","rolling_var","second","strftime","timestamp","to_ops","to_string","week","weekday","year"],"q":[[0,"polars_time"],[118,"polars_time::chunkedarray"],[246,"polars_time::chunkedarray::utf8"],[284,"polars_time::chunkedarray::utf8::infer"],[314,"polars_time::prelude"],[493,"polars_time::series"]],"d":["","","","","","","","","","","","","","","","Represents a window in time","","","","","","","","","","","In cases sortedness cannot be checked by the sorted flag, …","In cases sortedness cannot be checked by the sorted flag, …","Traits and utilities for temporal data.","","","","","","","","","Create a DatetimeChunked from a given start and stop date …","","","","","","","","","","","","","","","","","","","","","","","","","start a window at this interval","Period length","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","add the boundaries to the dataframe","Time or index column","Time or index column","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","offset window boundaries","","Offset of the window","","","window duration","window duration","","","","","vector of i64 representing temporal values","Create a TimeChunked from a given start and stop date and …","","","","","truncate the time column values to the window","","","","","","","","","","Upsample a DataFrame at a regular frequency.","Upsample a DataFrame at a regular frequency.","How to deal with ambiguous datetimes","","","","","","","","","","","","","","","","","","Compute the rolling aggregates with a window defined by a …","","Set the labels at the center of the window.","Set the labels at the center of the window.","","","","","The closed window of that time window if given","","Extract day from underlying NaiveDate representation. …","Extract day from underlying NaiveDate representation. …","Extract day from underlying NaiveDateTime representation. …","Extract day from underlying NaiveDateTime representation. …","Extract the days from a Duration","","","","","","","","","Optional parameters for the rolling function","","Returns the argument unchanged.","Returns the argument unchanged.","","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract the hours from a Duration","","","Calls U::from(self).","Calls U::from(self).","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","This year number might not match the calendar year number.","This year number might not match the calendar year number.","","","Extract the microseconds from a Duration","Extract the milliseconds from a Duration","Amount of elements in the window that should be filled …","Amount of elements in the window that should be filled …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","Extract the minutes from a Duration","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract the nanoseconds from a Duration","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Returns the day of year starting from 1.","","","","","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract quarter from underlying NaiveDateTime …","Extract quarter from underlying NaiveDateTime …","Apply a rolling max (moving max) over the values in this …","Apply a rolling mean (moving mean) over the values in this …","Apply a rolling median (moving median) over the values in …","Apply a rolling min (moving min) over the values in this …","Apply a rolling quantile (moving quantile) over the values …","Apply a rolling std (moving std) over the values in this …","Apply a rolling sum (moving sum) over the values in this …","Apply a rolling var (moving var) over the values in this …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract the seconds from a Duration","","","","","","","","","","","","","","","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Extract ISO weekday from underlying NaiveDate …","Extract ISO weekday from underlying NaiveDate …","Extract ISO weekday from underlying NaiveDateTime …","Extract ISO weekday from underlying NaiveDateTime …","An optional slice with the same length as the window that …","An optional slice with the same length as the window that …","The length of the window.","The length of the window.","Extract month from underlying NaiveDate representation. …","Extract month from underlying NaiveDate representation. …","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","","","","","","","","","","Parsing string values and return a DateChunked","Parsing string values and return a DateChunked Different …","Parsing string values and return a DatetimeChunked","Parsing string values and return a DatetimeChunked …","Parsing string values and return a TimeChunked","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","only useful if periods are weekly","","","","","","","","","","","Represents a window in time","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a DatetimeChunked from a given start and stop date …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","returns the bounds for the earliest window bounds that …","","","Different from groupby_windows, where define window …","Based on the given Window, which has an","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","true if zero duration.","","","","Returns the nanoseconds from the Duration without the …","Create a new integer size Duration","","","","Parse a string into a Duration","","","Round the given ms timestamp by the window boundary.","Round the given ns timestamp by the window boundary.","Round the given us timestamp by the window boundary.","Create a TimeChunked from a given start and stop date and …","","","","","","","","","","","","","Truncate the given ns timestamp by the window boundary.","","Truncate the given us timestamp by the window boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extract day from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract year from underlying NaiveDateTime representation. …","","Extract minute from underlying NaiveDateTime …","Extract month from underlying NaiveDateTime representation.","Returns the number of nanoseconds since the whole non-leap …","","","Returns the day of year starting from 1.","Extract ordinal year from underlying NaiveDateTime …","Extract quarter from underlying NaiveDateTime …","Apply a rolling max to a Series.","Apply a rolling max to a Series.","Apply a rolling max to a Series.","Apply a rolling mean to a Series.","Apply a rolling mean to a Series.","Apply a rolling mean to a Series.","Apply a rolling median to a Series.","Apply a rolling median to a Series.","Apply a rolling median to a Series.","Apply a rolling min to a Series.","Apply a rolling min to a Series.","Apply a rolling min to a Series.","Apply a rolling quantile to a Series.","Apply a rolling quantile to a Series.","Apply a rolling quantile to a Series.","Apply a rolling std_dev to a Series.","Apply a rolling std_dev to a Series.","Apply a rolling std_dev to a Series.","Apply a rolling sum to a Series.","Apply a rolling sum to a Series.","Apply a rolling sum to a Series.","Apply a rolling variance to a Series.","Apply a rolling variance to a Series.","Apply a rolling variance to a Series.","Extract second from underlying NaiveDateTime …","Convert from Time into Utf8 with the given format. See …","Convert date(time) object to timestamp in TimeUnit.","","Convert Time into Utf8 with the given format. See chrono …","Returns the ISO week number starting from 1. The return …","Returns the ISO weekday number where monday = 1 and sunday …","Extract year from underlying NaiveDateTime representation. …"],"i":[12,0,0,0,12,12,0,0,0,0,0,0,12,0,0,0,6,7,8,0,6,7,8,6,7,8,6,7,0,6,7,8,6,7,8,6,7,0,6,7,6,7,8,6,7,8,6,7,8,0,6,7,8,6,6,6,7,7,7,8,8,8,6,8,6,7,8,6,7,8,58,58,8,0,6,6,7,6,7,8,6,7,8,59,60,6,7,8,49,11,6,7,0,61,0,6,0,0,6,7,8,62,6,6,7,8,6,7,8,6,7,8,63,63,8,6,7,8,0,0,0,0,0,0,0,0,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,64,64,65,65,66,32,33,32,33,32,33,32,33,32,33,32,33,33,67,65,65,66,32,33,32,33,64,64,65,65,64,64,65,65,66,66,32,33,67,65,65,66,64,64,65,65,67,65,65,66,64,64,65,65,64,67,65,65,64,64,65,65,68,68,68,68,68,68,68,68,67,65,65,66,32,33,32,33,32,33,33,32,33,33,0,0,32,33,64,64,65,65,64,64,65,65,32,33,32,33,64,64,65,65,0,41,41,41,41,41,0,0,41,69,69,69,69,69,70,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,41,41,41,41,41,41,41,41,0,71,0,0,43,43,43,43,43,43,43,43,43,0,43,43,43,43,72,43,43,43,43,43,71,43,43,43,43,43,12,0,0,0,48,0,48,12,48,12,12,48,0,0,48,0,48,48,48,0,48,47,11,12,48,49,11,11,11,51,47,11,12,48,49,51,47,11,12,48,49,47,11,12,48,49,47,11,12,48,49,11,11,0,11,11,48,51,47,11,12,48,49,51,47,11,12,48,49,51,47,11,12,48,49,11,12,48,11,11,11,12,12,12,48,48,48,47,11,12,48,51,47,11,12,48,49,49,49,49,49,0,0,11,12,48,0,51,47,11,12,48,49,51,47,11,12,48,49,51,11,11,11,11,11,11,11,49,51,49,11,11,11,49,49,49,0,47,11,12,48,49,11,11,49,49,49,49,11,49,11,49,51,47,11,12,48,49,51,47,11,12,48,49,51,47,11,12,48,49,51,47,11,12,48,49,48,11,11,0,0,0,0,0,73,74,74,74,74,74,74,74,56,56,74,74,74,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,74,74,74,75,74,74,74,74],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[2,3,4],5],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[6,6],[7,7],[8,8],[[]],[[]],[[]],0,0,[[9,10,10,11,12,3,[14,[13]]],[[15,[2]]]],[[],6],[[],7],[16],[16],[16],[16],[16],[16],[16],[16],[16],[[2,3,4],5],[[6,6],17],[[7,7],17],[[8,8],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],0,0,[[6,18],19],[[7,18],19],[[8,18],19],[[]],[[]],[[]],[[[21,[20]],6],15],[[[21,[20]],7],15],[[8,22]],[10,17],0,0,0,[[],16],[[],16],[[],16],[[]],[[]],[[]],[[23,[14,[4]]],[[15,[23]]]],[[23,[14,[4]]],[[15,[23]]]],0,0,0,0,0,0,0,0,[[23,11,11,[14,[4]]],[[15,[23]]]],0,0,[[24,24,11,12,3,[14,[4]]],[[15,[[21,[24]]]]]],[[9,25,25,11,12],[[15,[26]]]],[[]],[[]],[[]],[[23,8,[14,[4]]],[[15,[23]]]],0,[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],28],[[],28],[[],28],[[[30,[29]],9,11,11],[[15,[31]]]],[[[30,[29]],9,11,11],[[15,[31]]]],0,[[]],[[]],[[]],0,0,0,0,0,0,0,0,[1],[1],[[]],[[]],[[]],[[]],0,0,0,0,[32,32],[33,33],[[]],[[]],0,0,[[],34],[[],34],[[],34],[[],34],[[],35],[[],32],[[],33],[16],[16],[16],[16],[16],[16],0,0,[[]],[[]],[32,33],[[],34],[[],34],[[],34],[[],35],[[],16],[[],16],[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],37],[[],37],[[],37],[[],37],[[],35],[[],35],0,0,[[],34],[[],34],[[],34],[[],35],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],35],[[],34],[[],34],[[],34],[[],34],[[9,[38,[9]],9],39],[[9,[38,[9]],9],26],[[9,[38,[9]],9,3],2],[[9,[38,[9]],9,3],2],[[],34],[[],34],[[],34],[[],34],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[[],34],[[],34],[[],34],[[],35],[[]],[[]],[[],27],[[],27],[[],27],[[],27],0,[[],28],[[],28],0,[[],10],0,[[]],[[]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],0,0,0,0,[[],37],[[],37],[[],37],[[],37],0,0,0,0,0,0,0,0,[1],[[[14,[9]],17],[[15,[39]]]],[[[14,[9]]],[[15,[39]]]],[[[14,[9]],3,17,17,[14,[13]]],[[15,[2]]]],[[[14,[9]],3,17,[14,[13]]],[[15,[2]]]],[[[14,[9]],17],[[15,[26]]]],[[],40],[[]],[[]],[41,41],[[]],[16],[16],[16],[[41,41],17],[[],17],[[],17],[[],17],[[41,18],19],[[]],[[41,22]],0,[[],16],[[]],[[41,9],17],[[]],[[],27],[[],27],[[],28],[[]],0,0,0,0,[1],[[]],[[]],[[[43,[42]]],[[43,[42]]]],[[]],[16],[16],[16],[[]],[9,[[14,[41]]]],[[],16],[[]],0,[[[43,[44]],9],[[14,[44]]]],[[[38,[45]],[14,[3]]],14],[[[43,[24]],[38,[45]],[14,[3]]],[[14,[24]]]],[[[43,[46]],[38,[45]],[14,[3]]],[[14,[46]]]],0,[[]],[[],27],[[[14,[3]]],15],[[41,[14,[3]]],[[15,[[43,[24]]]]]],[[41,[14,[3]]],[[15,[[43,[46]]]]]],[[],27],[[],28],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[[11,24,[14,[4]]],[[15,[24]]]],[[11,24,[14,[4]]],[[15,[24]]]],[[11,24,[14,[4]]],[[15,[24]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[47,47],[11,11],[12,12],[48,48],[49,49],[[]],[[]],[[]],[[]],[[]],[[11,11],50],[[],50],[[9,10,10,11,12,3,[14,[13]]],[[15,[2]]]],[11,24],[11,17],[[],48],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[[11,11],17],[[12,12],17],[[48,48],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[47,18],19],[[11,18],19],[[12,18],19],[[48,18],19],[[]],[[]],[[]],[[]],[[]],[[]],[[49,24,[14,[4]]],[[15,[47]]]],[[49,24,[14,[4]]],[[15,[47]]]],[[49,24,[14,[4]]],[[15,[47]]]],[[49,47,3,[14,[4]],48],[[15,[51]]]],[[11,11,[38,[24]],12,3,[14,[4]]],[[15,[52]]]],[[49,[38,[24]],12,3,[14,[13]],17,17,48]],[[11,22]],[[12,22]],[[48,22]],[10,17],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[11,17],[11,17],[11,24],[11,17],[[11,24],11],[11,24],[24,11],[[11,11,11],49],[51,14],0,[9,11],0,[[11,11],[[14,[50]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[9,25,25,11,12],[[15,[26]]]],[[]],[[]],[[]],[[]],[[]],[[11,24,[14,[4]],53,53,53,[14,[17]]],[[15,[24]]]],[[11,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[49,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[11,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[49,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[11,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[49,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[]],[[]],[[]],[[]],[[]],[[]],[48,[[14,[54]]]],[11,24],[11,17],0,0,0,0,0,[[],20],[[],[[15,[34]]]],[[],[[15,[34]]]],[[],[[15,[36]]]],[[],[[15,[37]]]],[[],[[15,[34]]]],[[],[[15,[34]]]],[[],[[15,[34]]]],[[],55],[[],55],[[],[[15,[34]]]],[[],[[15,[37]]]],[[],[[15,[34]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[[],[[15,[34]]]],[9,[[15,[20]]]],[3,[[15,[35]]]],[[],[[57,[56]]]],[9,[[15,[20]]]],[[],[[15,[34]]]],[[],[[15,[34]]]],[[],[[15,[37]]]]],"c":[],"p":[[3,"Private"],[6,"DatetimeChunked"],[4,"TimeUnit"],[4,"Tz"],[6,"DurationChunked"],[3,"DynamicGroupOptions"],[3,"RollingGroupOptions"],[3,"TruncateOptions"],[15,"str"],[3,"NaiveDateTime"],[3,"Duration"],[4,"ClosedWindow"],[6,"TimeZone"],[4,"Option"],[6,"PolarsResult"],[15,"usize"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"Series"],[3,"Vec"],[8,"Hasher"],[8,"Sized"],[15,"i64"],[3,"NaiveTime"],[6,"TimeChunked"],[4,"Result"],[3,"TypeId"],[3,"String"],[8,"IntoVec"],[3,"DataFrame"],[3,"RollingOptions"],[3,"RollingOptionsImpl"],[6,"UInt32Chunked"],[6,"Int64Chunked"],[6,"BooleanChunked"],[6,"Int32Chunked"],[15,"slice"],[6,"DateChunked"],[6,"Utf8Chunked"],[4,"Pattern"],[8,"Clone"],[3,"DatetimeInfer"],[8,"NativeType"],[15,"u8"],[15,"i32"],[3,"Bounds"],[4,"StartBy"],[3,"Window"],[4,"Ordering"],[3,"BoundsIter"],[6,"GroupsSlice"],[8,"Fn"],[15,"u32"],[4,"DataType"],[8,"SeriesOpsTime"],[3,"Arc"],[8,"PolarsTemporalGroupby"],[8,"PolarsMonthEnd"],[8,"PolarsMonthStart"],[8,"PolarsRound"],[8,"PolarsTruncate"],[8,"PolarsUpsample"],[8,"DateMethods"],[8,"DatetimeMethods"],[8,"DurationMethods"],[8,"TimeMethods"],[8,"RollingAgg"],[8,"Utf8Methods"],[8,"AsUtf8"],[8,"TryFromWithUnit"],[8,"StrpTimeParser"],[8,"AsSeries"],[8,"TemporalMethods"],[8,"IntoSeriesOps"]]},\ -"polars_utils":{"doc":"","t":"GAAAAAFAOFFAAAOACAAAAOAAGGDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLFILLFIIIIKKKKKKFDLLLLLLLLLLLLLLLLLLLLLLHDLLLLLLLLLLLLIKIIIIKKKKK","n":["IdxSize","aliases","arena","atomic","cell","contention_pool","flatten","fmt","format_smartstring","get_hash","hash_to_partition","io","iter","macros","matches_any_order","mem","open_file","slice","sort","sync","sys","unreachable_unchecked_release","unwrap","vec","PlHashMap","PlHashSet","Arena","Node","__clone_box","__clone_box","add","borrow","borrow","borrow_mut","borrow_mut","clear","clone","clone","clone_into","clone_into","cmp","default","default","deref","deref","deref_mut","deref_mut","drop","drop","eq","equivalent","equivalent","fmt","from","from","get","get_mut","get_node","get_unchecked","hash","init","init","into","into","is_empty","len","new","partial_cmp","pop","replace","replace_with","swap","take","to_owned","to_owned","try_from","try_from","try_into","try_into","try_replace_with","type_id","type_id","with_capacity","SyncCounter","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref","deref_mut","deref_mut","drop","from","init","into","manual_drop","new","to_owned","try_from","try_into","type_id","SyncUnsafeCell","borrow","borrow_mut","default","deref","deref_mut","drop","from","from","from","get","get_mut","init","into","into_inner","new","raw_get","try_from","try_into","type_id","LowContentionPool","borrow","borrow_mut","deref","deref_mut","drop","from","get","init","into","new","set","try_from","try_into","type_id","open_file","EnumerateIdxTrait","enumerate_idx","enumerate_idx","to_mutable_slice","Extrema","GetSaferUnchecked","Slice2Uninit","SortedSlice","as_uninit","get_unchecked_release","get_unchecked_release_mut","is_sorted_ascending","max_value","min_value","perfect_sort","SyncPtr","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","deref_unchecked","drop","fmt","from","from_const","get","init","into","is_null","new","new_null","to_owned","try_from","try_into","type_id","MEMINFO","MemInfo","borrow","borrow_mut","deref","deref_mut","drop","free","from","init","into","try_from","try_into","type_id","UnwrapUncheckedRelease","unwrap_unchecked_release","CapacityByFactor","IntoRawParts","PushUnchecked","ResizeFaster","fill_or_alloc","into_raw_parts","push_unchecked","raw_parts","with_capacity_by_factor"],"q":[[0,"polars_utils"],[24,"polars_utils::aliases"],[26,"polars_utils::arena"],[83,"polars_utils::atomic"],[104,"polars_utils::cell"],[124,"polars_utils::contention_pool"],[139,"polars_utils::io"],[140,"polars_utils::iter"],[143,"polars_utils::mem"],[144,"polars_utils::slice"],[154,"polars_utils::sort"],[155,"polars_utils::sync"],[178,"polars_utils::sys"],[192,"polars_utils::unwrap"],[194,"polars_utils::vec"]],"d":["","","","","Copy pasted from std::cell::SyncUnsafeCell can be removed …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Safety","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","A utility to create a sharable counter This does not …","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","Safety","","","","","","UnsafeCell, but Sync.","","","Creates an SyncUnsafeCell, with the Default value for T.","","","","Creates a new SyncUnsafeCell<T> containing the given value.","Returns the argument unchanged.","","Gets a mutable pointer to the wrapped value.","Returns a mutable reference to the underlying data.","","Calls U::from(self).","Unwraps the value.","Constructs a new instance of SyncUnsafeCell which will …","Gets a mutable pointer to the wrapped value.","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","Safety","","","","","","Safety","Safety","","","","This is a perfect sort particularly useful for an arg_sort …","Utility that allows use to send pointers to another thread.","","","","","","","","Safety","","","Returns the argument unchanged.","Safety","","","Calls U::from(self).","","Safety","","","","","","","Startup system is expensive, so we do it once","","","","","","This call is quite expensive, cache the results.","Returns the argument unchanged.","","Calls U::from(self).","","","","","Safety","","","","Fill current allocation if if > 0 otherwise realloc","","","Will push an item and not check if there is enough capacity","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,11,11,12,11,12,11,11,12,11,12,11,12,12,11,12,11,12,11,12,11,12,12,12,12,12,11,11,11,11,11,12,12,11,12,11,11,11,11,12,11,11,11,11,11,12,11,12,11,12,11,11,12,11,11,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,40,40,0,0,0,0,0,41,42,42,43,44,44,0,0,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,0,0,38,38,38,38,38,38,38,38,38,38,38,38,0,45,0,0,0,0,46,47,48,47,49],"f":[0,0,0,0,0,0,[[[2,[[3,[[2,[1]]]]]],[5,[4]]],[[6,[1]]]],0,0,[[7,8],9],[[9,4],4],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10],[10],[11,12],[[]],[[]],[[]],[[]],[11],[12,12],[[[11,[1]]],[[11,[1]]]],[[]],[[]],[[12,12],13],[[],12],[[],11],[4],[4],[4],[4],[4],[4],[[12,12],14],[[],14],[[],14],[[12,15],16],[[]],[[]],[[11,12]],[[11,12]],[11,[[5,[12]]]],[[11,12]],[[12,17]],[[],4],[[],4],[[]],[[]],[11,14],[11,4],[[],11],[[12,12],[[5,[13]]]],[11,5],[[11,12]],[[[11,[18]],12,19]],[[11,12,12]],[[[11,[18]],12],18],[[]],[[]],[[],20],[[],20],[[],20],[[],20],[[[11,[18]],12,21],[[20,[0]]]],[[],22],[[],22],[4,11],0,[10],[[]],[[]],[23,23],[[]],[[],23],[23],[4],[23],[4],[4],[[]],[[],4],[[]],[23],[4,23],[[]],[[],20],[[],20],[[],22],0,[[]],[[]],[[],[[24,[18]]]],[4],[4],[4],[[],24],[[]],[25],[[[24,[26]]]],[[[24,[26]]],26],[[],4],[[]],[24],[[],24],[[]],[[],20],[[],20],[[],22],0,[[]],[[]],[4],[4],[4],[[]],[[[27,[18]]],18],[[],4],[[]],[4,[[27,[18]]]],[[[27,[18]],18]],[[],20],[[],20],[[],22],[[[3,[28]]],[[30,[29]]]],0,[26,[[0,[26]]]],[26,[[0,[26]]]],[[[2,[31]]],[[2,[31]]]],0,0,0,0,[[],[[2,[32]]]],[[[33,[2]]]],[[[33,[2]]]],[[],14],[[],5],[[],5],[[34,2,[6,[35]]]],0,[10],[[]],[[]],[[[36,[1]]],[[36,[1]]]],[[]],[4],[4],[36],[4],[[[36,[37]],15],16],[[]],[[],36],[36],[[],4],[[]],[36,14],[[],36],[[],36],[[]],[[],20],[[],20],[[],22],0,0,[[]],[[]],[4],[4],[4],[38,9],[[]],[[],4],[[]],[[],20],[[],20],[[],22],0,[[]],0,0,0,0,[4],[[]],[[]],[[]],[[4,39]]],"c":[],"p":[[8,"Clone"],[15,"slice"],[8,"AsRef"],[15,"usize"],[4,"Option"],[3,"Vec"],[8,"Hash"],[8,"BuildHasher"],[15,"u64"],[3,"Private"],[3,"Arena"],[3,"Node"],[4,"Ordering"],[15,"bool"],[3,"Formatter"],[6,"Result"],[8,"Hasher"],[8,"Default"],[8,"FnOnce"],[4,"Result"],[8,"FnMut"],[3,"TypeId"],[3,"SyncCounter"],[3,"SyncUnsafeCell"],[15,"never"],[8,"Sized"],[3,"LowContentionPool"],[3,"Path"],[3,"File"],[6,"PolarsResult"],[8,"Copy"],[19,"MaybeUninit"],[8,"SliceIndex"],[3,"ThreadPool"],[6,"IdxSize"],[3,"SyncPtr"],[8,"Debug"],[3,"MemInfo"],[15,"f64"],[8,"EnumerateIdxTrait"],[8,"Slice2Uninit"],[8,"GetSaferUnchecked"],[8,"SortedSlice"],[8,"Extrema"],[8,"UnwrapUncheckedRelease"],[8,"ResizeFaster"],[8,"IntoRawParts"],[8,"PushUnchecked"],[8,"CapacityByFactor"]]},\ +"polars_time":{"doc":"","t":"NEDDNNIIIIIINDDDLLLFLLLLLLMMALLLLLLMMFLLLLLLLLLLLFLLLLLLLLLLLLMMLLLLLLKKLFMMMLLLLLLKKMMMMMMMAKAMFFLLLKMLLLLLLLLLKKMLLLIIIIDDICLLLLLLMMMMLLLLMMLLLLKLLLLLLLLMMLLLKLLKLLLLLLLLLLLLKKMMKLLKLLLLKLLKLLLLKKLLLLLLKKKKKKKKKLLKLLLLLLMLLMFALLLLLLLLLLMMMMLLLLINNNNNEILLLLLLKLLLLLLLLLLLLLLALLLLLLLLDQIILLLLLLLLLFLLMLKLLMLLKLLLLLNDDENDNNNNNNCENCNNNDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLFLLLLLLLLLLLLLLLLLLLLLLMLMLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIIIIIKLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLL","n":["Both","ClosedWindow","Duration","DynamicGroupOptions","Left","None","PolarsMonthEnd","PolarsMonthStart","PolarsRound","PolarsTemporalGroupby","PolarsTruncate","PolarsUpsample","Right","RollingGroupOptions","TruncateOptions","Window","__clone_box","__clone_box","__clone_box","base_utc_offset","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","check_sorted","check_sorted","chunkedarray","clone","clone","clone","clone_into","clone_into","clone_into","closed_window","closed_window","date_range","default","default","deref","deref","deref","deref_mut","deref_mut","deref_mut","drop","drop","drop","dst_offset","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","every","every","fmt","fmt","fmt","from","from","from","groupby_dynamic","groupby_rolling","hash","in_nanoseconds_window","include_boundaries","index_column","index_column","init","init","init","into","into","into","month_end","month_start","offset","offset","offset","offset","parsed_int","period","period","prelude","round","series","start_by","temporal_range_vec","time_range","to_owned","to_owned","to_owned","truncate","truncate","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","upsample","upsample_stable","use_earliest","vzip","vzip","vzip","DateMethods","DatetimeMethods","DurationMethods","RollingAgg","RollingOptions","RollingOptionsImpl","TimeMethods","Utf8Methods","__clone_box","__clone_box","borrow","borrow","borrow_mut","borrow_mut","by","by","center","center","clone","clone","clone_into","clone_into","closed_window","closed_window","day","day","day","day","days","default","default","deref","deref","deref_mut","deref_mut","drop","drop","fn_params","fn_params","from","from","from","hour","hour","hour","hours","init","init","into","into","is_leap_year","is_leap_year","is_leap_year","is_leap_year","iso_year","iso_year","iso_year","iso_year","microseconds","milliseconds","min_periods","min_periods","minute","minute","minute","minutes","month","month","month","month","nanosecond","nanosecond","nanosecond","nanoseconds","ordinal","ordinal","ordinal","ordinal","parse_from_str_slice","parse_from_str_slice","parse_from_str_slice","parse_from_str_slice","quarter","quarter","quarter","quarter","rolling_max","rolling_mean","rolling_median","rolling_min","rolling_quantile","rolling_std","rolling_sum","rolling_var","second","second","second","seconds","to_owned","to_owned","try_from","try_from","try_into","try_into","tu","type_id","type_id","tz","unix_time","utf8","vzip","vzip","week","week","week","week","weekday","weekday","weekday","weekday","weights","weights","window_size","window_size","year","year","year","year","AsUtf8","DateDMY","DateYMD","DatetimeDMY","DatetimeYMD","DatetimeYMDZ","Pattern","Utf8Methods","__clone_box","as_date","as_date_not_exact","as_datetime","as_datetime_not_exact","as_time","as_utf8","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","eq","equivalent","equivalent","equivalent","fmt","from","hash","infer","init","into","is_inferable","to_owned","try_from","try_into","type_id","vzip","DatetimeInfer","Error","StrpTimeParser","TryFromWithUnit","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","drop","from","infer_pattern_single","init","into","logical_type","parse","parse_bytes","parse_bytes","parse_bytes","pattern","to_owned","try_from","try_from_with_unit","try_from_with_unit","try_from_with_unit","try_into","type_id","vzip","Both","Bounds","BoundsIter","ClosedWindow","DataPoint","Duration","Friday","Left","Monday","None","Right","Saturday","SeriesOpsTime","StartBy","Sunday","TemporalMethods","Thursday","Tuesday","Wednesday","Window","WindowBound","__clone_box","__clone_box","__clone_box","__clone_box","__clone_box","add_ms","add_ns","add_us","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","compare","date_range","days","days_only","default","deref","deref","deref","deref","deref","deref","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","deref_mut","drop","drop","drop","drop","drop","drop","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","get_earliest_bounds_ms","get_earliest_bounds_ns","get_earliest_bounds_us","get_overlapping_bounds_iter","groupby_values","groupby_windows","hash","hash","hash","in_nanoseconds_window","init","init","init","init","init","init","into","into","into","into","into","into","into_iter","is_constant_duration","is_zero","months","months_only","mul","nanoseconds","new","new","next","offset","parse","parsed_int","partial_cmp","round_ms","round_ns","round_us","time_range","to_owned","to_owned","to_owned","to_owned","to_owned","truncate_impl","truncate_ms","truncate_ms","truncate_no_offset_ms","truncate_no_offset_ns","truncate_no_offset_us","truncate_ns","truncate_ns","truncate_us","truncate_us","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip","weekday","weeks","weeks_only","AsSeries","IntoSeriesOps","SeriesOpsTime","SeriesOpsTime","TemporalMethods","as_series","day","hour","is_leap_year","iso_year","minute","month","nanosecond","ops_time_dtype","ops_time_dtype","ordinal_day","ordinal_year","quarter","rolling_max","rolling_max","rolling_max","rolling_mean","rolling_mean","rolling_mean","rolling_median","rolling_median","rolling_median","rolling_min","rolling_min","rolling_min","rolling_quantile","rolling_quantile","rolling_quantile","rolling_std","rolling_std","rolling_std","rolling_sum","rolling_sum","rolling_sum","rolling_var","rolling_var","rolling_var","second","strftime","timestamp","to_ops","to_string","week","weekday","year"],"q":[[0,"polars_time"],[118,"polars_time::chunkedarray"],[246,"polars_time::chunkedarray::utf8"],[284,"polars_time::chunkedarray::utf8::infer"],[314,"polars_time::prelude"],[493,"polars_time::series"]],"d":["","","","","","","","","","","","","","","","Represents a window in time","","","","","","","","","","","In cases sortedness cannot be checked by the sorted flag, …","In cases sortedness cannot be checked by the sorted flag, …","Traits and utilities for temporal data.","","","","","","","","","Create a DatetimeChunked from a given start and stop date …","","","","","","","","","","","","","","","","","","","","","","","","","start a window at this interval","Period length","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","add the boundaries to the dataframe","Time or index column","Time or index column","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","offset window boundaries","","Offset of the window","","","window duration","window duration","","","","","vector of i64 representing temporal values","Create a TimeChunked from a given start and stop date and …","","","","","truncate the time column values to the window","","","","","","","","","","Upsample a DataFrame at a regular frequency.","Upsample a DataFrame at a regular frequency.","How to deal with ambiguous datetimes","","","","","","","","","","","","","","","","","","Compute the rolling aggregates with a window defined by a …","","Set the labels at the center of the window.","Set the labels at the center of the window.","","","","","The closed window of that time window if given","","Extract day from underlying NaiveDate representation. …","Extract day from underlying NaiveDate representation. …","Extract day from underlying NaiveDateTime representation. …","Extract day from underlying NaiveDateTime representation. …","Extract the days from a Duration","","","","","","","","","Optional parameters for the rolling function","","Returns the argument unchanged.","Returns the argument unchanged.","","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract the hours from a Duration","","","Calls U::from(self).","Calls U::from(self).","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","Extract year from underlying NaiveDate representation. …","This year number might not match the calendar year number.","This year number might not match the calendar year number.","","","Extract the microseconds from a Duration","Extract the milliseconds from a Duration","Amount of elements in the window that should be filled …","Amount of elements in the window that should be filled …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","Extract minute from underlying NaiveDateTime …","Extract the minutes from a Duration","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract the nanoseconds from a Duration","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Returns the day of year starting from 1.","Returns the day of year starting from 1.","","","","","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","Extract quarter from underlying NaiveDateTime …","Extract quarter from underlying NaiveDateTime …","Apply a rolling max (moving max) over the values in this …","Apply a rolling mean (moving mean) over the values in this …","Apply a rolling median (moving median) over the values in …","Apply a rolling min (moving min) over the values in this …","Apply a rolling quantile (moving quantile) over the values …","Apply a rolling std (moving std) over the values in this …","Apply a rolling sum (moving sum) over the values in this …","Apply a rolling var (moving var) over the values in this …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract second from underlying NaiveDateTime …","Extract the seconds from a Duration","","","","","","","","","","","","","","","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Returns the ISO week number starting from 1. The return …","Extract ISO weekday from underlying NaiveDate …","Extract ISO weekday from underlying NaiveDate …","Extract ISO weekday from underlying NaiveDateTime …","Extract ISO weekday from underlying NaiveDateTime …","An optional slice with the same length as the window that …","An optional slice with the same length as the window that …","The length of the window.","The length of the window.","Extract month from underlying NaiveDate representation. …","Extract month from underlying NaiveDate representation. …","Extract month from underlying NaiveDateTime representation.","Extract month from underlying NaiveDateTime representation.","","","","","","","","","","Parsing string values and return a DateChunked","Parsing string values and return a DateChunked Different …","Parsing string values and return a DatetimeChunked","Parsing string values and return a DatetimeChunked …","Parsing string values and return a TimeChunked","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","only useful if periods are weekly","","","","","","","","","","","Represents a window in time","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a DatetimeChunked from a given start and stop date …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","returns the bounds for the earliest window bounds that …","","","Different from groupby_windows, where define window …","Based on the given Window, which has an","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","true if zero duration.","","","","Returns the nanoseconds from the Duration without the …","Create a new integer size Duration","","","","Parse a string into a Duration","","","Round the given ms timestamp by the window boundary.","Round the given ns timestamp by the window boundary.","Round the given us timestamp by the window boundary.","Create a TimeChunked from a given start and stop date and …","","","","","","","","","","","","","Truncate the given ns timestamp by the window boundary.","","Truncate the given us timestamp by the window boundary.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Extract day from underlying NaiveDateTime representation. …","Extract hour from underlying NaiveDateTime representation. …","Extract year from underlying NaiveDateTime representation. …","","Extract minute from underlying NaiveDateTime …","Extract month from underlying NaiveDateTime representation.","Returns the number of nanoseconds since the whole non-leap …","","","Returns the day of year starting from 1.","Extract ordinal year from underlying NaiveDateTime …","Extract quarter from underlying NaiveDateTime …","Apply a rolling max to a Series.","Apply a rolling max to a Series.","Apply a rolling max to a Series.","Apply a rolling mean to a Series.","Apply a rolling mean to a Series.","Apply a rolling mean to a Series.","Apply a rolling median to a Series.","Apply a rolling median to a Series.","Apply a rolling median to a Series.","Apply a rolling min to a Series.","Apply a rolling min to a Series.","Apply a rolling min to a Series.","Apply a rolling quantile to a Series.","Apply a rolling quantile to a Series.","Apply a rolling quantile to a Series.","Apply a rolling std_dev to a Series.","Apply a rolling std_dev to a Series.","Apply a rolling std_dev to a Series.","Apply a rolling sum to a Series.","Apply a rolling sum to a Series.","Apply a rolling sum to a Series.","Apply a rolling variance to a Series.","Apply a rolling variance to a Series.","Apply a rolling variance to a Series.","Extract second from underlying NaiveDateTime …","Convert from Time into Utf8 with the given format. See …","Convert date(time) object to timestamp in TimeUnit.","","Convert Time into Utf8 with the given format. See chrono …","Returns the ISO week number starting from 1. The return …","Returns the ISO weekday number where monday = 1 and sunday …","Extract year from underlying NaiveDateTime representation. …"],"i":[12,0,0,0,12,12,0,0,0,0,0,0,12,0,0,0,6,7,8,0,6,7,8,6,7,8,6,7,0,6,7,8,6,7,8,6,7,0,6,7,6,7,8,6,7,8,6,7,8,0,6,7,8,6,6,6,7,7,7,8,8,8,6,8,6,7,8,6,7,8,58,58,8,0,6,6,7,6,7,8,6,7,8,59,60,6,7,8,49,11,6,7,0,61,0,6,0,0,6,7,8,62,6,6,7,8,6,7,8,6,7,8,63,63,8,6,7,8,0,0,0,0,0,0,0,0,32,33,32,33,32,33,32,33,32,33,32,33,32,33,32,33,64,64,65,65,66,32,33,32,33,32,33,32,33,32,33,32,33,33,67,65,65,66,32,33,32,33,64,64,65,65,64,64,65,65,66,66,32,33,67,65,65,66,64,64,65,65,67,65,65,66,64,64,65,65,64,67,65,65,64,64,65,65,68,68,68,68,68,68,68,68,67,65,65,66,32,33,32,33,32,33,33,32,33,33,0,0,32,33,64,64,65,65,64,64,65,65,32,33,32,33,64,64,65,65,0,41,41,41,41,41,0,0,41,69,69,69,69,69,70,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,41,41,41,41,41,41,41,41,0,71,0,0,43,43,43,43,43,43,43,43,43,0,43,43,43,43,72,43,43,43,43,43,71,43,43,43,43,43,12,0,0,0,48,0,48,12,48,12,12,48,0,0,48,0,48,48,48,0,48,47,11,12,48,49,11,11,11,51,47,11,12,48,49,51,47,11,12,48,49,47,11,12,48,49,47,11,12,48,49,11,11,0,11,11,48,51,47,11,12,48,49,51,47,11,12,48,49,51,47,11,12,48,49,11,12,48,11,11,11,12,12,12,48,48,48,47,11,12,48,51,47,11,12,48,49,49,49,49,49,0,0,11,12,48,0,51,47,11,12,48,49,51,47,11,12,48,49,51,11,11,11,11,11,11,11,49,51,49,11,11,11,49,49,49,0,47,11,12,48,49,11,11,49,49,49,49,11,49,11,49,51,47,11,12,48,49,51,47,11,12,48,49,51,47,11,12,48,49,51,47,11,12,48,49,48,11,11,0,0,0,0,0,73,74,74,74,74,74,74,74,56,56,74,74,74,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,74,74,74,75,74,74,74,74],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[[2,3,4],5],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[6,6],[7,7],[8,8],[[]],[[]],[[]],0,0,[[9,10,10,11,12,3,[14,[13]]],[[15,[2]]]],[[],6],[[],7],[16],[16],[16],[16],[16],[16],[16],[16],[16],[[2,3,4],5],[[6,6],17],[[7,7],17],[[8,8],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],0,0,[[6,18],19],[[7,18],19],[[8,18],19],[[]],[[]],[[]],[[[21,[20]],6],15],[[[21,[20]],7],15],[[8,22]],[10,17],0,0,0,[[],16],[[],16],[[],16],[[]],[[]],[[]],[[23,[14,[4]]],[[15,[23]]]],[[23,[14,[4]]],[[15,[23]]]],0,0,0,0,0,0,0,0,[[23,11,11,[14,[4]]],[[15,[23]]]],0,0,[[24,24,11,12,3,[14,[4]]],[[15,[[21,[24]]]]]],[[9,25,25,11,12],[[15,[26]]]],[[]],[[]],[[]],[[23,8,[14,[4]]],[[15,[23]]]],0,[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],28],[[],28],[[],28],[[[30,[29]],9,11,11],[[15,[31]]]],[[[30,[29]],9,11,11],[[15,[31]]]],0,[[]],[[]],[[]],0,0,0,0,0,0,0,0,[1],[1],[[]],[[]],[[]],[[]],0,0,0,0,[32,32],[33,33],[[]],[[]],0,0,[[],34],[[],34],[[],34],[[],34],[[],35],[[],32],[[],33],[16],[16],[16],[16],[16],[16],0,0,[[]],[[]],[32,33],[[],34],[[],34],[[],34],[[],35],[[],16],[[],16],[[]],[[]],[[],36],[[],36],[[],36],[[],36],[[],37],[[],37],[[],37],[[],37],[[],35],[[],35],0,0,[[],34],[[],34],[[],34],[[],35],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],35],[[],34],[[],34],[[],34],[[],34],[[9,[38,[9]],9],39],[[9,[38,[9]],9],26],[[9,[38,[9]],9,3],2],[[9,[38,[9]],9,3],2],[[],34],[[],34],[[],34],[[],34],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[[],34],[[],34],[[],34],[[],35],[[]],[[]],[[],27],[[],27],[[],27],[[],27],0,[[],28],[[],28],0,[[],10],0,[[]],[[]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],0,0,0,0,[[],37],[[],37],[[],37],[[],37],0,0,0,0,0,0,0,0,[1],[[[14,[9]],17],[[15,[39]]]],[[[14,[9]]],[[15,[39]]]],[[[14,[9]],3,17,17,[14,[13]]],[[15,[2]]]],[[[14,[9]],3,17,[14,[13]]],[[15,[2]]]],[[[14,[9]],17],[[15,[26]]]],[[],40],[[]],[[]],[41,41],[[]],[16],[16],[16],[[41,41],17],[[],17],[[],17],[[],17],[[41,18],19],[[]],[[41,22]],0,[[],16],[[]],[[41,9],17],[[]],[[],27],[[],27],[[],28],[[]],0,0,0,0,[1],[[]],[[]],[[[43,[42]]],[[43,[42]]]],[[]],[16],[16],[16],[[]],[9,[[14,[41]]]],[[],16],[[]],0,[[[43,[44]],9],[[14,[44]]]],[[[38,[45]],[14,[3]]],14],[[[43,[46]],[38,[45]],[14,[3]]],[[14,[46]]]],[[[43,[24]],[38,[45]],[14,[3]]],[[14,[24]]]],0,[[]],[[],27],[[[14,[3]]],15],[[41,[14,[3]]],[[15,[[43,[24]]]]]],[[41,[14,[3]]],[[15,[[43,[46]]]]]],[[],27],[[],28],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[1],[1],[1],[1],[[11,24,[14,[4]]],[[15,[24]]]],[[11,24,[14,[4]]],[[15,[24]]]],[[11,24,[14,[4]]],[[15,[24]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[47,47],[11,11],[12,12],[48,48],[49,49],[[]],[[]],[[]],[[]],[[]],[[11,11],50],[[],50],[[9,10,10,11,12,3,[14,[13]]],[[15,[2]]]],[11,24],[11,17],[[],48],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[16],[[11,11],17],[[12,12],17],[[48,48],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[[47,18],19],[[11,18],19],[[12,18],19],[[48,18],19],[[]],[[]],[[]],[[]],[[]],[[]],[[49,24,[14,[4]]],[[15,[47]]]],[[49,24,[14,[4]]],[[15,[47]]]],[[49,24,[14,[4]]],[[15,[47]]]],[[49,47,3,[14,[4]],48],[[15,[51]]]],[[11,11,[38,[24]],12,3,[14,[4]]],[[15,[52]]]],[[49,[38,[24]],12,3,[14,[13]],17,17,48]],[[11,22]],[[12,22]],[[48,22]],[10,17],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[11,17],[11,17],[11,24],[11,17],[[11,24],11],[11,24],[24,11],[[11,11,11],49],[51,14],0,[9,11],0,[[11,11],[[14,[50]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[9,25,25,11,12],[[15,[26]]]],[[]],[[]],[[]],[[]],[[]],[[11,24,[14,[4]],53,53,53,[14,[17]]],[[15,[24]]]],[[11,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[49,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[49,24,[14,[4]]],[[15,[24]]]],[[11,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[49,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[11,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[49,24,[14,[4]],[14,[17]]],[[15,[24]]]],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[]],[[]],[[]],[[]],[[]],[[]],[48,[[14,[54]]]],[11,24],[11,17],0,0,0,0,0,[[],20],[[],[[15,[34]]]],[[],[[15,[34]]]],[[],[[15,[36]]]],[[],[[15,[37]]]],[[],[[15,[34]]]],[[],[[15,[34]]]],[[],[[15,[34]]]],[[],55],[[],55],[[],[[15,[34]]]],[[],[[15,[37]]]],[[],[[15,[34]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[33,[[15,[20]]]],[[],[[15,[34]]]],[9,[[15,[20]]]],[3,[[15,[35]]]],[[],[[57,[56]]]],[9,[[15,[20]]]],[[],[[15,[34]]]],[[],[[15,[34]]]],[[],[[15,[37]]]]],"c":[],"p":[[3,"Private"],[6,"DatetimeChunked"],[4,"TimeUnit"],[4,"Tz"],[6,"DurationChunked"],[3,"DynamicGroupOptions"],[3,"RollingGroupOptions"],[3,"TruncateOptions"],[15,"str"],[3,"NaiveDateTime"],[3,"Duration"],[4,"ClosedWindow"],[6,"TimeZone"],[4,"Option"],[6,"PolarsResult"],[15,"usize"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"Series"],[3,"Vec"],[8,"Hasher"],[8,"Sized"],[15,"i64"],[3,"NaiveTime"],[6,"TimeChunked"],[4,"Result"],[3,"TypeId"],[3,"String"],[8,"IntoVec"],[3,"DataFrame"],[3,"RollingOptions"],[3,"RollingOptionsImpl"],[6,"UInt32Chunked"],[6,"Int64Chunked"],[6,"BooleanChunked"],[6,"Int32Chunked"],[15,"slice"],[6,"DateChunked"],[6,"Utf8Chunked"],[4,"Pattern"],[8,"Clone"],[3,"DatetimeInfer"],[8,"NativeType"],[15,"u8"],[15,"i32"],[3,"Bounds"],[4,"StartBy"],[3,"Window"],[4,"Ordering"],[3,"BoundsIter"],[6,"GroupsSlice"],[8,"Fn"],[15,"u32"],[4,"DataType"],[8,"SeriesOpsTime"],[3,"Arc"],[8,"PolarsTemporalGroupby"],[8,"PolarsMonthEnd"],[8,"PolarsMonthStart"],[8,"PolarsRound"],[8,"PolarsTruncate"],[8,"PolarsUpsample"],[8,"DateMethods"],[8,"DatetimeMethods"],[8,"DurationMethods"],[8,"TimeMethods"],[8,"RollingAgg"],[8,"Utf8Methods"],[8,"AsUtf8"],[8,"TryFromWithUnit"],[8,"StrpTimeParser"],[8,"AsSeries"],[8,"TemporalMethods"],[8,"IntoSeriesOps"]]},\ +"polars_utils":{"doc":"","t":"GAAAAAFAOFFAAAOACAAAAOAAGGDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLFILLFIIIIKKKKKKFDLLLLLLLLLLLLLLLLLLLLLLHDLLLLLLLLLLLLIKIIIIKKKKK","n":["IdxSize","aliases","arena","atomic","cell","contention_pool","flatten","fmt","format_smartstring","get_hash","hash_to_partition","io","iter","macros","matches_any_order","mem","open_file","slice","sort","sync","sys","unreachable_unchecked_release","unwrap","vec","PlHashMap","PlHashSet","Arena","Node","__clone_box","__clone_box","add","borrow","borrow","borrow_mut","borrow_mut","clear","clone","clone","clone_into","clone_into","cmp","default","default","deref","deref","deref_mut","deref_mut","drop","drop","eq","equivalent","equivalent","fmt","from","from","get","get_mut","get_node","get_unchecked","hash","init","init","into","into","is_empty","len","new","partial_cmp","pop","replace","replace_with","swap","take","to_owned","to_owned","try_from","try_from","try_into","try_into","try_replace_with","type_id","type_id","with_capacity","SyncCounter","__clone_box","borrow","borrow_mut","clone","clone_into","default","deref","deref","deref_mut","deref_mut","drop","from","init","into","manual_drop","new","to_owned","try_from","try_into","type_id","SyncUnsafeCell","borrow","borrow_mut","default","deref","deref_mut","drop","from","from","from","get","get_mut","init","into","into_inner","new","raw_get","try_from","try_into","type_id","LowContentionPool","borrow","borrow_mut","deref","deref_mut","drop","from","get","init","into","new","set","try_from","try_into","type_id","open_file","EnumerateIdxTrait","enumerate_idx","enumerate_idx","to_mutable_slice","Extrema","GetSaferUnchecked","Slice2Uninit","SortedSlice","as_uninit","get_unchecked_release","get_unchecked_release_mut","is_sorted_ascending","max_value","min_value","perfect_sort","SyncPtr","__clone_box","borrow","borrow_mut","clone","clone_into","deref","deref_mut","deref_unchecked","drop","fmt","from","from_const","get","init","into","is_null","new","new_null","to_owned","try_from","try_into","type_id","MEMINFO","MemInfo","borrow","borrow_mut","deref","deref_mut","drop","free","from","init","into","try_from","try_into","type_id","UnwrapUncheckedRelease","unwrap_unchecked_release","CapacityByFactor","IntoRawParts","PushUnchecked","ResizeFaster","fill_or_alloc","into_raw_parts","push_unchecked","raw_parts","with_capacity_by_factor"],"q":[[0,"polars_utils"],[24,"polars_utils::aliases"],[26,"polars_utils::arena"],[83,"polars_utils::atomic"],[104,"polars_utils::cell"],[124,"polars_utils::contention_pool"],[139,"polars_utils::io"],[140,"polars_utils::iter"],[143,"polars_utils::mem"],[144,"polars_utils::slice"],[154,"polars_utils::sort"],[155,"polars_utils::sync"],[178,"polars_utils::sys"],[192,"polars_utils::unwrap"],[194,"polars_utils::vec"]],"d":["","","","","Copy pasted from std::cell::SyncUnsafeCell can be removed …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","Safety","","","","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","A utility to create a sharable counter This does not …","","","","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","Safety","","","","","","UnsafeCell, but Sync.","","","Creates an SyncUnsafeCell, with the Default value for T.","","","","Returns the argument unchanged.","Creates a new SyncUnsafeCell<T> containing the given value.","","Gets a mutable pointer to the wrapped value.","Returns a mutable reference to the underlying data.","","Calls U::from(self).","Unwraps the value.","Constructs a new instance of SyncUnsafeCell which will …","Gets a mutable pointer to the wrapped value.","","","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","","","","","","","","","Safety","","","","","","Safety","Safety","","","","This is a perfect sort particularly useful for an arg_sort …","Utility that allows use to send pointers to another thread.","","","","","","","","Safety","","","Returns the argument unchanged.","Safety","","","Calls U::from(self).","","Safety","","","","","","","Startup system is expensive, so we do it once","","","","","","This call is quite expensive, cache the results.","Returns the argument unchanged.","","Calls U::from(self).","","","","","Safety","","","","Fill current allocation if if > 0 otherwise realloc","","","Will push an item and not check if there is enough capacity","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,11,11,12,11,12,11,11,12,11,12,11,12,12,11,12,11,12,11,12,11,12,12,12,12,12,11,11,11,11,11,12,12,11,12,11,11,11,11,12,11,11,11,11,11,12,11,12,11,12,11,11,12,11,11,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,40,40,0,0,0,0,0,41,42,42,43,44,44,0,0,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,0,0,38,38,38,38,38,38,38,38,38,38,38,38,0,45,0,0,0,0,46,47,48,47,49],"f":[0,0,0,0,0,0,[[[2,[[3,[[2,[1]]]]]],[5,[4]]],[[6,[1]]]],0,0,[[7,8],9],[[9,4],4],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[10],[10],[11,12],[[]],[[]],[[]],[[]],[11],[12,12],[[[11,[1]]],[[11,[1]]]],[[]],[[]],[[12,12],13],[[],12],[[],11],[4],[4],[4],[4],[4],[4],[[12,12],14],[[],14],[[],14],[[12,15],16],[[]],[[]],[[11,12]],[[11,12]],[11,[[5,[12]]]],[[11,12]],[[12,17]],[[],4],[[],4],[[]],[[]],[11,14],[11,4],[[],11],[[12,12],[[5,[13]]]],[11,5],[[11,12]],[[[11,[18]],12,19]],[[11,12,12]],[[[11,[18]],12],18],[[]],[[]],[[],20],[[],20],[[],20],[[],20],[[[11,[18]],12,21],[[20,[0]]]],[[],22],[[],22],[4,11],0,[10],[[]],[[]],[23,23],[[]],[[],23],[23],[4],[4],[23],[4],[[]],[[],4],[[]],[23],[4,23],[[]],[[],20],[[],20],[[],22],0,[[]],[[]],[[],[[24,[18]]]],[4],[4],[4],[[]],[[],24],[25],[[[24,[26]]]],[[[24,[26]]],26],[[],4],[[]],[24],[[],24],[[]],[[],20],[[],20],[[],22],0,[[]],[[]],[4],[4],[4],[[]],[[[27,[18]]],18],[[],4],[[]],[4,[[27,[18]]]],[[[27,[18]],18]],[[],20],[[],20],[[],22],[[[3,[28]]],[[30,[29]]]],0,[26,[[0,[26]]]],[26,[[0,[26]]]],[[[2,[31]]],[[2,[31]]]],0,0,0,0,[[],[[2,[32]]]],[[[33,[2]]]],[[[33,[2]]]],[[],14],[[],5],[[],5],[[34,2,[6,[35]]]],0,[10],[[]],[[]],[[[36,[1]]],[[36,[1]]]],[[]],[4],[4],[36],[4],[[[36,[37]],15],16],[[]],[[],36],[36],[[],4],[[]],[36,14],[[],36],[[],36],[[]],[[],20],[[],20],[[],22],0,0,[[]],[[]],[4],[4],[4],[38,9],[[]],[[],4],[[]],[[],20],[[],20],[[],22],0,[[]],0,0,0,0,[4],[[]],[[]],[[]],[[4,39]]],"c":[],"p":[[8,"Clone"],[15,"slice"],[8,"AsRef"],[15,"usize"],[4,"Option"],[3,"Vec"],[8,"Hash"],[8,"BuildHasher"],[15,"u64"],[3,"Private"],[3,"Arena"],[3,"Node"],[4,"Ordering"],[15,"bool"],[3,"Formatter"],[6,"Result"],[8,"Hasher"],[8,"Default"],[8,"FnOnce"],[4,"Result"],[8,"FnMut"],[3,"TypeId"],[3,"SyncCounter"],[3,"SyncUnsafeCell"],[15,"never"],[8,"Sized"],[3,"LowContentionPool"],[3,"Path"],[3,"File"],[6,"PolarsResult"],[8,"Copy"],[19,"MaybeUninit"],[8,"SliceIndex"],[3,"ThreadPool"],[6,"IdxSize"],[3,"SyncPtr"],[8,"Debug"],[3,"MemInfo"],[15,"f64"],[8,"EnumerateIdxTrait"],[8,"Slice2Uninit"],[8,"GetSaferUnchecked"],[8,"SortedSlice"],[8,"Extrema"],[8,"UnwrapUncheckedRelease"],[8,"ResizeFaster"],[8,"IntoRawParts"],[8,"PushUnchecked"],[8,"CapacityByFactor"]]},\ "ppv_lite86":{"doc":"","t":"IIIIIIIIIIQIIIIIIIIIIIIIKKOOOKKKKKKLLLLKKKKKKKKKKKKKKKKKKKKKKKKKIQIQIQIQIQIQIQIQIQIQKLLKKKLLCCCKKKAGGDDDDDDGGGDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLTTTLLLLLLLLLLLLLLL","n":["AndNot","ArithOps","BSwap","BitOps0","BitOps128","BitOps32","BitOps64","LaneWords4","Machine","MultiLane","Output","RotateEachWord128","RotateEachWord32","RotateEachWord64","Store","StoreBytes","Swap64","UnsafeFrom","VZip","Vec2","Vec4","Vec4Ext","Vector","Words4","andnot","bswap","dispatch","dispatch_light128","dispatch_light256","extract","extract","from_lanes","insert","insert","instance","read_be","read_be","read_le","read_le","rotate_each_word_right11","rotate_each_word_right12","rotate_each_word_right16","rotate_each_word_right20","rotate_each_word_right24","rotate_each_word_right25","rotate_each_word_right32","rotate_each_word_right7","rotate_each_word_right8","shuffle1230","shuffle2301","shuffle3012","shuffle_lane_words1230","shuffle_lane_words2301","shuffle_lane_words3012","swap1","swap16","swap2","swap32","swap4","swap64","swap8","to_lanes","to_scalars","transpose4","u128x1","u128x1","u128x2","u128x2","u128x4","u128x4","u32x4","u32x4","u32x4x2","u32x4x2","u32x4x4","u32x4x4","u64x2","u64x2","u64x2x2","u64x2x2","u64x2x4","u64x2x4","u64x4","u64x4","unpack","unpack","unpack","unsafe_from","unsafe_read_be","unsafe_read_le","vec","vec","vec128_storage","vec256_storage","vec512_storage","vzip","write_be","write_le","x86_64","AVX","AVX2","Avx2Machine","NoA1","NoA2","NoNI","NoS3","NoS4","SSE2","SSE41","SSSE3","SseMachine","YesA1","YesA2","YesNI","YesS3","YesS4","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","default","default","default","eq","eq","eq","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","instance","instance","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","new128","new128","split128","split128","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unpack","vec128_storage","vec256_storage","vec512_storage","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip"],"q":[[0,"ppv_lite86"],[99,"ppv_lite86::x86_64"]],"d":["","Ops that depend on word size","","Ops that are independent of word size and endian","","","","A vector composed one or more lanes each composed of four …","","A vector composed of multiple 128-bit lanes.","","","","","","","Exchange neigboring ranges of bits of the specified size","","Combine single vectors into a multi-lane vector.","A vector composed of two elements, which may be words or …","A vector composed of four elements, which may be words or …","Vec4 functions which may not be implemented yet for all …","","A vector composed of four words; depending on their size, …","","","Generate the full set of optimized implementations to take …","Generate only the basic implementations necessary to be …","Generate only the basic implementations necessary to be …","","","Build a multi-lane vector from individual lanes.","","","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","Split a multi-lane vector into single-lane vectors.","","","","","","","","","","","","","","","","","","","","","","","Safety","","","","Safety","Safety","","","","","","","","","","AVX but not AVX2: only 128-bit integer operations, but use …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Generic wrapper for unparameterized storage of any of the …","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,30,31,0,0,0,32,33,7,32,33,34,34,34,34,34,35,35,35,35,35,35,36,35,35,37,37,37,38,38,38,39,39,39,39,39,39,39,7,40,41,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,0,34,6,34,34,42,4,4,34,34,0,0,0,43,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,21,22,23,21,22,23,8,9,10,11,12,13,14,15,16,17,19,20,21,21,22,22,23,19,20,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,22,23,22,23,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,21,0,0,0,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],0,0,0,[1],[1],[[]],[1],[1],[[]],[[[3,[2]]],4],[[[3,[2]]],4],[[[3,[2]]],4],[[[3,[2]]],4],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[5,5,5,5]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[],6],[[],6],[[]],[[[3,[2]]]],[[[3,[2]]]],[[],7],[[],7],0,0,0,[[]],[[[3,[2]]]],[[[3,[2]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[8,8],[9,9],[10,10],[11,11],[12,12],[13,13],[14,14],[15,15],[16,16],[17,17],[[[19,[18,18,18]]],[[19,[18,18,18]]]],[[[20,[18]]],[[20,[18]]]],[21,21],[22,22],[23,23],[[],21],[[],22],[[],23],[[21,21],24],[[22,22],24],[[23,23],24],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[25,[1]]],21],[[]],[[[25,[26]]],22],[[]],[[],[[19,[27,27,27]]]],[[],[[20,[27]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[25,[21]]],22],[[[25,[21]]],23],[22,[[25,[21]]]],[23,[[25,[21]]]],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[[],29],[21,21],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]]],"c":[],"p":[[15,"u32"],[15,"u8"],[15,"slice"],[8,"StoreBytes"],[8,"Sized"],[8,"Store"],[8,"MultiLane"],[3,"YesS3"],[3,"NoS3"],[3,"YesS4"],[3,"NoS4"],[3,"YesA1"],[3,"NoA1"],[3,"YesA2"],[3,"NoA2"],[3,"YesNI"],[3,"NoNI"],[8,"Clone"],[3,"SseMachine"],[3,"Avx2Machine"],[19,"vec128_storage"],[19,"vec256_storage"],[19,"vec512_storage"],[15,"bool"],[15,"array"],[15,"u64"],[8,"Copy"],[4,"Result"],[3,"TypeId"],[8,"AndNot"],[8,"BSwap"],[8,"Vec2"],[8,"Vec4"],[8,"Machine"],[8,"RotateEachWord32"],[8,"RotateEachWord64"],[8,"Words4"],[8,"LaneWords4"],[8,"Swap64"],[8,"Vector"],[8,"Vec4Ext"],[8,"UnsafeFrom"],[8,"VZip"]]},\ "proc_macro2":{"doc":"github crates-io docs-rs","t":"NNNEDNDNNDDNNNDNEDDELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLDCLLLLLLLLLLLLLL","n":["Alone","Brace","Bracket","Delimiter","Group","Group","Ident","Ident","Joint","LexError","Literal","Literal","None","Parenthesis","Punct","Punct","Spacing","Span","TokenStream","TokenTree","as_char","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","byte_string","call_site","character","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","default","delim_span","delimiter","eq","eq","eq","eq","equivalent","equivalent","equivalent","extend","extend","extra","f32_suffixed","f32_unsuffixed","f64_suffixed","f64_unsuffixed","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","from_str","from_str","hash","i128_suffixed","i128_unsuffixed","i16_suffixed","i16_unsuffixed","i32_suffixed","i32_unsuffixed","i64_suffixed","i64_unsuffixed","i8_suffixed","i8_unsuffixed","into","into","into","into","into","into","into","into","into","into","into_iter","is_empty","isize_suffixed","isize_unsuffixed","join","located_at","mixed_site","new","new","new","new","new_raw","partial_cmp","provide","resolved_at","set_span","set_span","set_span","set_span","set_span","source_text","spacing","span","span","span","span","span","span","span_close","span_open","stream","string","subspan","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string","to_string","token_stream","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","u128_suffixed","u128_unsuffixed","u16_suffixed","u16_unsuffixed","u32_suffixed","u32_unsuffixed","u64_suffixed","u64_unsuffixed","u8_suffixed","u8_unsuffixed","unwrap","usize_suffixed","usize_unsuffixed","DelimSpan","borrow","borrow_mut","clone","clone_into","close","fmt","from","into","join","open","to_owned","try_from","try_into","type_id","IntoIter","TokenStream","borrow","borrow_mut","clone","clone_into","fmt","from","into","into_iter","next","size_hint","to_owned","try_from","try_into","type_id"],"q":[[0,"proc_macro2"],[232,"proc_macro2::extra"],[247,"proc_macro2::token_stream"]],"d":["E.g. + is Alone in + =, +ident or +().","{ ... }","[ ... ]","Describes how a sequence of token trees is delimited.","A delimited token stream.","A token stream surrounded by bracket delimiters.","A word of Rust code, which may be a keyword or legal …","An identifier.","E.g. + is Joint in += or ' is Joint in '#.","Error returned from TokenStream::from_str.","A literal string ("hello"), byte string (b"hello"), …","A literal character ('a'), string ("hello"), number (2.3), …","Ø ... Ø","( ... )","A Punct is a single punctuation character like +, - or #.","A single punctuation character (+, ,, $, etc.).","Whether a Punct is followed immediately by another Punct …","A region of source code, along with macro expansion …","An abstract stream of tokens, or more concretely a …","A single token or a delimited sequence of token trees …","Returns the value of this punctuation character as char.","","","","","","","","","","","","","","","","","","","","","Byte string literal.","The span of the invocation of the current procedural macro.","Character literal.","","","","","","","","","","","","","","","","","","","","","Returns an object that holds this group’s span_open() and","Returns the punctuation used as the delimiter for this …","","","","","","","","","","Items which do not have a correspondence to any API in the …","Creates a new suffixed floating-point literal.","Creates a new unsuffixed floating-point literal.","Creates a new suffixed floating-point literal.","Creates a new unsuffixed floating-point literal.","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Checks if this TokenStream is empty.","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Create a new span encompassing self and other.","Creates a new span with the same name resolution behavior …","The span located at the invocation of the procedural …","Returns an empty TokenStream containing no token trees.","Creates a new Group with the given delimiter and token …","Creates a new Punct from the given character and spacing.","Creates a new Ident with the given string as well as the …","Same as Ident::new, but creates a raw identifier (r#ident…","","","Creates a new span with the same line/column information …","Configures the span for only this token.","Configures the span for this Group’s delimiters, but not …","Configure the span for this punctuation character.","Configures the span of this Ident, possibly changing its …","Configures the span associated for this literal.","Returns the source text behind a span. This preserves the …","Returns the spacing of this punctuation character, …","","Returns the span of this tree, delegating to the span …","Returns the span for the delimiters of this token stream, …","Returns the span for this punctuation character.","Returns the span of this Ident.","Returns the span encompassing this literal.","Returns the span pointing to the closing delimiter of this …","Returns the span pointing to the opening delimiter of this …","Returns the TokenStream of tokens that are delimited in …","String literal.","Returns a Span that is a subset of self.span() containing …","","","","","","","","","","","","","","","","","Public implementation details for the TokenStream type, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","Convert proc_macro2::Span to proc_macro::Span.","Creates a new suffixed integer literal with the specified …","Creates a new unsuffixed integer literal with the …","An object that holds a Group’s span_open() and …","","","","","Returns a span for the closing punctuation of the group …","","Returns the argument unchanged.","Calls U::from(self).","Returns a span covering the entire delimited group.","Returns a span for the opening punctuation of the group …","","","","","An iterator over TokenStream’s TokenTrees.","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","",""],"i":[11,10,10,0,0,8,0,8,11,0,0,8,10,10,0,8,0,0,0,0,1,22,7,6,8,9,10,1,11,12,5,22,7,6,8,9,10,1,11,12,5,5,6,5,7,6,8,9,10,1,11,12,5,7,6,8,9,10,1,11,12,5,12,7,9,9,10,11,12,12,10,11,12,7,7,0,5,5,5,5,22,22,7,7,6,8,8,9,9,10,1,1,11,12,12,5,5,22,7,7,7,6,6,8,8,8,8,8,9,10,1,11,12,5,7,7,7,5,12,5,5,5,5,5,5,5,5,5,5,22,7,6,8,9,10,1,11,12,5,7,7,5,5,6,6,6,7,9,1,12,12,12,22,6,8,9,1,12,5,6,1,22,8,9,1,12,5,9,9,9,5,5,7,6,8,9,10,1,11,12,5,22,7,8,9,1,12,5,0,22,7,6,8,9,10,1,11,12,5,22,7,6,8,9,10,1,11,12,5,22,7,6,8,9,10,1,11,12,5,5,5,5,5,5,5,5,5,5,5,6,5,5,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,34,34,34,34,34,34,34,34,34,34,34,34,34,34],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[4,[3]]],5],[[],6],[2,5],[7,7],[6,6],[8,8],[9,9],[10,10],[1,1],[11,11],[12,12],[5,5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[12,12],13],[[],7],[9,14],[9,10],[[10,10],15],[[11,11],15],[[12,12],15],[[12,[0,[16,[18,[17]]]]],15],[[],15],[[],15],[[],15],[[7,19]],[[7,19]],0,[20,5],[20,5],[21,5],[21,5],[[22,23],24],[[22,23],24],[[7,23],24],[[7,23],24],[[6,23],24],[[8,23],24],[[8,23],24],[[9,23],24],[[9,23],24],[[10,23],24],[[1,23],24],[[1,23],24],[[11,23],24],[[12,23],24],[[12,23],24],[[5,23],24],[[5,23],24],[[]],[8,7],[25,7],[[]],[[]],[26,6],[5,8],[1,8],[12,8],[9,8],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[19,7],[19,7],[17,[[27,[7,22]]]],[17,[[27,[5,22]]]],[[12,28]],[29,5],[29,5],[30,5],[30,5],[31,5],[31,5],[32,5],[32,5],[33,5],[33,5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[7,34],[7,15],[35,5],[35,5],[[6,6],[[36,[6]]]],[[6,6],6],[[],6],[[],7],[[10,7],9],[[2,11],1],[[17,6],12],[[17,6],12],[[12,12],[[36,[13]]]],[37],[[6,6],6],[[8,6]],[[9,6]],[[1,6]],[[12,6]],[[5,6]],[6,[[36,[38]]]],[1,11],[22,6],[8,6],[9,6],[1,6],[12,6],[5,6],[9,6],[9,6],[9,7],[17,5],[[5,[40,[39]]],[[36,[6]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],0,[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[42,5],[42,5],[43,5],[43,5],[44,5],[44,5],[45,5],[45,5],[3,5],[3,5],[6,26],[39,5],[39,5],0,[[]],[[]],[14,14],[[]],[14,6],[[14,23],24],[[]],[[]],[14,6],[14,6],[[]],[[],27],[[],27],[[],41],0,0,[[]],[[]],[34,34],[[]],[[34,23],24],[[]],[[]],[[]],[34,[[36,[8]]]],[34],[[]],[[],27],[[],27],[[],41]],"c":[],"p":[[3,"Punct"],[15,"char"],[15,"u8"],[15,"slice"],[3,"Literal"],[3,"Span"],[3,"TokenStream"],[4,"TokenTree"],[3,"Group"],[4,"Delimiter"],[4,"Spacing"],[3,"Ident"],[4,"Ordering"],[3,"DelimSpan"],[15,"bool"],[8,"Sized"],[15,"str"],[8,"AsRef"],[8,"IntoIterator"],[15,"f32"],[15,"f64"],[3,"LexError"],[3,"Formatter"],[6,"Result"],[3,"TokenStream"],[3,"Span"],[4,"Result"],[8,"Hasher"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[3,"IntoIter"],[15,"isize"],[4,"Option"],[3,"Demand"],[3,"String"],[15,"usize"],[8,"RangeBounds"],[3,"TypeId"],[15,"u128"],[15,"u16"],[15,"u32"],[15,"u64"]]},\ "pyo3":{"doc":"Rust bindings to the Python interpreter.","t":"CCYCDCCDCCCCDDIIGCCGCCCCDCOKLLLLLLAAAOLLLAALLLLLLOOLLLMAAMLLALLMAFLLLOAAXAXXXLMALLLLLLLLLLAALLFOONIENDDNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLMMMCCAAAACCCCCCCIIIIIIIIKKLLKLLLKLKKKKKKKKDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLRRRRRRRRRRRRRRRRRRMMMMMMMMMRRRRRRRRRRRRRRRRRRRNNNNNNRRRRRRRRRDFFFFFFFFHDRRRRRRRRRRRRRRRRRRRRRDHFFHDFFFFFFFFHDFFFFFFFFHHDFFFFFFFFFFFFFHGMDGMFFFFFFFFFFFFHGMDFFFHFFHFFGFFFFFFFFFFFHHDFFFFFFFHFFFFFFFFFFFFFFFFFFDFFDDFFFFFFFHDFFFFFFFFFFHFFFFFHFFFFFFHFHFDFFFFFFFFFFFDDDFFFFFFFFFFFDFFFFFFDFFFFFHHHHDFHDFHHHHFHFFFFFFFFFFFFFFFFFFFFHFFHHFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHFFFFFFFFFFFFFHDFFFFFFFFFHDGFFFFFFFFFHFFFHDFFFFFFFFFFFFFFHDFFFFFFFNFENDFFFHDDHDFDFDFFFFFFFFHFFFFFFFFFFFFHFFDFFFFFFFFFFFFFHDHFFFFFFFFFFFFFFFFHDHFFFFFFFFFFFFFFFFFFFFFFFFHHDFFFFFFFFFFFFFFEDFFFFFFFFFFFDHFFFFHDTDHDDRFDHFFFFFFFFFFFFFFFFFFFFFFFHDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFRFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFHHFHHFFFFFFFFFFFFFFFFFFFFEFFHDFFFFFFFFFFFFFFFFFFFFHDFFFFFFFRFFFHDFFFFFHFFFFDFFFFFFFDGDDFFFFFFFFHDFFFFFFFFFFFFFFFDFFDFFFFFFFFFFFFFFFFFHRRRRRRRRDHDFFFFFFFFFFFHDFFFFFFFFFFFFFFFFFFFDDHFFFFFFFFFFFFFFFFFDHDTFFFFFFFFRFRFRFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFHRFDFFFDFFFFFFFDFFDHRFHFFFFHRFFFFFFRRRRRRHFFHRFFFFFFFFHHFFHRRFFFFFFFFFFFFFRRRHHFFHFFFFHHFFFFFHRRFFFRFFHHFFHRFFFHFFFFFFFFFRRRRRRRRRRRRRRRRRRRRRRRRFFGGGGRHHHFFFRRRRRDDRRRRGGRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRGRRRRRRRRRRRRRRRRRRRRRRRRRRRRRGGGRRRMMMMMMFGMGMFFHDDFFFFFFDFFGRFFFFFFFFFFFFFHHHHFFFFFFFFFFFFFFDFFFFHFFENNNFFFFDHHHFFFFFFFHFFFFFFFFMMMMDMDMMMMMMGMMMMMMMMMMMMMMMMMLMLMMMMMMMMMGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMLLLLLLLLLLLGGGMMMMMMMMMMMMMMMMMMLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMGGGGGMMMMMMMMMMMMMMMMMMMMGMMMMMMMMMMMMMMMGGMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMGMLMMGMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMLGMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMGGMMMMMMMMMMMMMMGMMMMMLMMMGGGMMMMMGMLLLLLGGDGMMMMMMMMMMMMMMMMMGGGGMMMMMMMMMAMMMMMMMMMGMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMGMMMMMMMMMMMMMGMGMMMMMMMMMMMMMMDGGMMMMMLLRDFFRRRRRRRRRRRRRRRRRRRRRRRLLLLLMLLMLLMMLLLMLLLLDILLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLRFFDLLLLLLLLLLLLLLLLLLLLLLLLLCYCCDCCCDCGCCGCCCCLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLXXXXLLLLLLLLLLLLLLLLLLLLLOLDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLENQNNEENNNIGGDDNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDIKLLLLLLLLLLLLLLKLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLQSSIIILLLKIDDDDDDDDDIDDIDDDDDDDDDDDDDDDDDDDDEDDIDDDDIDNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLKLKLLKLLLLLLLLLLLKLLKLKLLKLLLKLLKLLLLLLKLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMMLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["AsPyPointer","FromPyObject","FromPyObject","FromPyPointer","GILPool","IntoPy","IntoPyPointer","Py","PyAny","PyCell","PyClass","PyClassInitializer","PyDowncastError","PyErr","PyErrArguments","PyNativeType","PyObject","PyRef","PyRefMut","PyResult","PyTryFrom","PyTryInto","PyTypeInfo","Python","PythonVersionInfo","ToPyObject","append_to_inittab","arguments","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","buffer","class","conversion","create_exception","drop","eq","eq","exceptions","ffi","fmt","fmt","fmt","from","from","from","import_exception","intern","into","into","into","major","marker","marshal","minor","new","new","panic","partial_cmp","partial_cmp","patch","prelude","prepare_freethreaded_python","provide","py","py","py_run","pycell","pyclass","pyclass","pyclass_init","pyfunction","pymethods","pymodule","python","suffix","sync","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","type_object","types","unchecked_downcast","unchecked_downcast","with_embedded_python_interpreter","wrap_pyfunction","wrap_pymodule","Bool","Element","ElementType","Float","PyBuffer","ReadOnlyCell","SignedInteger","Unknown","UnsignedInteger","as_fortran_mut_slice","as_fortran_slice","as_mut_slice","as_ptr","as_slice","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","buf_ptr","clone","clone_into","copy_from_fortran_slice","copy_from_slice","copy_to_fortran_slice","copy_to_slice","dimensions","drop","eq","equivalent","extract","fmt","fmt","format","from","from","from","from_format","get","get","get_ptr","into","into","into","is_c_contiguous","is_compatible_format","is_fortran_contiguous","item_count","item_size","len_bytes","readonly","release","shape","strides","suboffsets","to_fortran_vec","to_owned","to_vec","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","bytes","bytes","bytes","PyTraverseError","PyVisit","basic","gc","iter","pyasync","CompareOp","PyTraverseError","PyVisit","IterNextOutput","PyIterNextOutput","IterANextOutput","PyIterANextOutput","AsPyPointer","FromPyObject","FromPyPointer","IntoPy","IntoPyPointer","PyTryFrom","PyTryInto","ToPyObject","as_ptr","extract","from_borrowed_ptr","from_borrowed_ptr_or_err","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_panic","from_owned_ptr","from_owned_ptr_or_err","from_owned_ptr_or_opt","from_owned_ptr_or_panic","into_ptr","into_py","to_object","try_from","try_from_exact","try_from_unchecked","try_into","try_into_exact","PyArithmeticError","PyAssertionError","PyAttributeError","PyBaseException","PyBlockingIOError","PyBrokenPipeError","PyBufferError","PyBytesWarning","PyChildProcessError","PyConnectionAbortedError","PyConnectionError","PyConnectionRefusedError","PyConnectionResetError","PyDeprecationWarning","PyEOFError","PyEncodingWarning","PyEnvironmentError","PyException","PyFileExistsError","PyFileNotFoundError","PyFloatingPointError","PyFutureWarning","PyGeneratorExit","PyIOError","PyImportError","PyImportWarning","PyIndexError","PyInterruptedError","PyIsADirectoryError","PyKeyError","PyKeyboardInterrupt","PyLookupError","PyMemoryError","PyModuleNotFoundError","PyNameError","PyNotADirectoryError","PyNotImplementedError","PyOSError","PyOverflowError","PyPendingDeprecationWarning","PyPermissionError","PyProcessLookupError","PyRecursionError","PyReferenceError","PyResourceWarning","PyRuntimeError","PyRuntimeWarning","PyStopAsyncIteration","PyStopIteration","PySyntaxError","PySyntaxWarning","PySystemError","PySystemExit","PyTimeoutError","PyTypeError","PyUnboundLocalError","PyUnicodeDecodeError","PyUnicodeEncodeError","PyUnicodeError","PyUnicodeTranslateError","PyUnicodeWarning","PyUserWarning","PyValueError","PyWarning","PyZeroDivisionError","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","asyncio","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","new","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_err","new_utf8","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","provide","socket","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","source","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","CancelledError","IncompleteReadError","InvalidStateError","LimitOverrunError","QueueEmpty","QueueFull","TimeoutError","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref","deref","deref","deref","extract","extract","extract","extract","extract","extract","extract","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","into","into","into","into","into","into","into","into_py","into_py","into_py","into_py","into_py","into_py","into_py","new_err","new_err","new_err","new_err","new_err","new_err","new_err","provide","provide","provide","provide","provide","provide","provide","source","source","source","source","source","source","source","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_string","to_string","to_string","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","as_ptr","as_ptr","as_ptr","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","extract","extract","extract","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","gaierror","herror","into","into","into","into_py","into_py","into_py","new_err","new_err","new_err","provide","provide","provide","source","source","source","timeout","to_object","to_object","to_object","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from_exact","try_from_exact","try_from_exact","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_into","try_into","try_into","type_id","type_id","type_id","type_object_raw","type_object_raw","type_object_raw","CO_ASYNC_GENERATOR","CO_COROUTINE","CO_FUTURE_ABSOLUTE_IMPORT","CO_FUTURE_BARRY_AS_BDFL","CO_FUTURE_DIVISION","CO_FUTURE_GENERATOR_STOP","CO_FUTURE_PRINT_FUNCTION","CO_FUTURE_UNICODE_LITERALS","CO_FUTURE_WITH_STATEMENT","CO_GENERATOR","CO_ITERABLE_COROUTINE","CO_MAXBLOCKS","CO_NESTED","CO_NEWLOCALS","CO_NOFREE","CO_OPTIMIZED","CO_VARARGS","CO_VARKEYWORDS","DateTimeType","DateTime_FromDateAndTime","DateTime_FromDateAndTimeAndFold","DateTime_FromTimestamp","DateType","Date_FromDate","Date_FromTimestamp","DeltaType","Delta_FromDelta","FUTURE_ABSOLUTE_IMPORT","FUTURE_BARRY_AS_BDFL","FUTURE_DIVISION","FUTURE_GENERATORS","FUTURE_GENERATOR_STOP","FUTURE_NESTED_SCOPES","FUTURE_PRINT_FUNCTION","FUTURE_UNICODE_LITERALS","FUTURE_WITH_STATEMENT","MAX_CO_EXTRA_USERS","METH_CLASS","METH_COEXIST","METH_FASTCALL","METH_KEYWORDS","METH_METHOD","METH_NOARGS","METH_O","METH_STATIC","METH_VARARGS","PYGEN_ERROR","PYGEN_NEXT","PYGEN_RETURN","PYMEM_DOMAIN_MEM","PYMEM_DOMAIN_OBJ","PYMEM_DOMAIN_RAW","PYOS_STACK_MARGIN","PYTHON_ABI_VERSION","PYTHON_API_VERSION","PY_ITERSEARCH_CONTAINS","PY_ITERSEARCH_COUNT","PY_ITERSEARCH_INDEX","PY_SSIZE_T_MAX","PY_SSIZE_T_MIN","PY_STDIOTEXTMODE","PyASCIIObject","PyAnySet_Check","PyAnySet_CheckExact","PyArg_Parse","PyArg_ParseTuple","PyArg_ParseTupleAndKeywords","PyArg_UnpackTuple","PyArg_ValidateKeywordArguments","PyAsyncGen_CheckExact","PyAsyncGen_Type","PyAsyncMethods","PyBUF_ANY_CONTIGUOUS","PyBUF_CONTIG","PyBUF_CONTIG_RO","PyBUF_C_CONTIGUOUS","PyBUF_FORMAT","PyBUF_FULL","PyBUF_FULL_RO","PyBUF_F_CONTIGUOUS","PyBUF_INDIRECT","PyBUF_MAX_NDIM","PyBUF_ND","PyBUF_READ","PyBUF_RECORDS","PyBUF_RECORDS_RO","PyBUF_SIMPLE","PyBUF_STRIDED","PyBUF_STRIDED_RO","PyBUF_STRIDES","PyBUF_WRITABLE","PyBUF_WRITE","PyBUF_WRITEABLE","PyBaseExceptionObject","PyBaseObject_Type","PyBool_Check","PyBool_FromLong","PyBool_Type","PyBufferProcs","PyBuffer_FillContiguousStrides","PyBuffer_FillInfo","PyBuffer_FromContiguous","PyBuffer_GetPointer","PyBuffer_IsContiguous","PyBuffer_Release","PyBuffer_SizeFromFormat","PyBuffer_ToContiguous","PyByteArrayIter_Type","PyByteArrayObject","PyByteArray_AsString","PyByteArray_Check","PyByteArray_CheckExact","PyByteArray_Concat","PyByteArray_FromObject","PyByteArray_FromStringAndSize","PyByteArray_Resize","PyByteArray_Size","PyByteArray_Type","PyBytesIter_Type","PyBytesObject","PyBytes_AsString","PyBytes_AsStringAndSize","PyBytes_Check","PyBytes_CheckExact","PyBytes_Concat","PyBytes_ConcatAndDel","PyBytes_DecodeEscape","PyBytes_FromFormat","PyBytes_FromObject","PyBytes_FromString","PyBytes_FromStringAndSize","PyBytes_Repr","PyBytes_Size","PyBytes_Type","PyCFunction","PyCFunction","PyCFunctionObject","PyCFunctionWithKeywords","PyCFunctionWithKeywords","PyCFunction_Call","PyCFunction_Check","PyCFunction_CheckExact","PyCFunction_GET_CLASS","PyCFunction_GET_FLAGS","PyCFunction_GET_FUNCTION","PyCFunction_GET_SELF","PyCFunction_GetFlags","PyCFunction_GetFunction","PyCFunction_GetSelf","PyCFunction_New","PyCFunction_NewEx","PyCFunction_Type","PyCMethod","PyCMethod","PyCMethodObject","PyCMethod_Check","PyCMethod_CheckExact","PyCMethod_New","PyCMethod_Type","PyCallIter_Check","PyCallIter_New","PyCallIter_Type","PyCallable_Check","PyCapsule_CheckExact","PyCapsule_Destructor","PyCapsule_GetContext","PyCapsule_GetDestructor","PyCapsule_GetName","PyCapsule_GetPointer","PyCapsule_Import","PyCapsule_IsValid","PyCapsule_New","PyCapsule_SetContext","PyCapsule_SetDestructor","PyCapsule_SetName","PyCapsule_SetPointer","PyCapsule_Type","PyClassMethodDescr_Type","PyCodeObject","PyCode_Addr2Line","PyCode_Check","PyCode_GetNumFree","PyCode_New","PyCode_NewEmpty","PyCode_NewWithPosOnlyArgs","PyCode_Optimize","PyCode_Type","PyCodec_BackslashReplaceErrors","PyCodec_Decode","PyCodec_Decoder","PyCodec_Encode","PyCodec_Encoder","PyCodec_IgnoreErrors","PyCodec_IncrementalDecoder","PyCodec_IncrementalEncoder","PyCodec_KnownEncoding","PyCodec_LookupError","PyCodec_Register","PyCodec_RegisterError","PyCodec_ReplaceErrors","PyCodec_StreamReader","PyCodec_StreamWriter","PyCodec_StrictErrors","PyCodec_Unregister","PyCodec_XMLCharRefReplaceErrors","PyCompactUnicodeObject","PyCompile_OpcodeStackEffect","PyCompile_OpcodeStackEffectWithJump","PyCompilerFlags","PyComplexObject","PyComplex_AsCComplex","PyComplex_Check","PyComplex_CheckExact","PyComplex_FromCComplex","PyComplex_FromDoubles","PyComplex_ImagAsDouble","PyComplex_RealAsDouble","PyComplex_Type","PyConfig","PyConfig_Clear","PyConfig_InitIsolatedConfig","PyConfig_InitPythonConfig","PyConfig_Read","PyConfig_SetArgv","PyConfig_SetBytesArgv","PyConfig_SetBytesString","PyConfig_SetString","PyConfig_SetWideStringList","PyContextToken_CheckExact","PyContextToken_Type","PyContextVar_CheckExact","PyContextVar_Get","PyContextVar_New","PyContextVar_Reset","PyContextVar_Set","PyContextVar_Type","PyContext_CheckExact","PyContext_Copy","PyContext_CopyCurrent","PyContext_Enter","PyContext_Exit","PyContext_New","PyContext_Type","PyCoro_CheckExact","PyCoro_Type","PyDateTimeAPI","PyDateTime_CAPI","PyDateTime_Check","PyDateTime_CheckExact","PyDateTime_DATE_GET_FOLD","PyDateTime_DATE_GET_HOUR","PyDateTime_DATE_GET_MICROSECOND","PyDateTime_DATE_GET_MINUTE","PyDateTime_DATE_GET_SECOND","PyDateTime_DATE_GET_TZINFO","PyDateTime_DELTA_GET_DAYS","PyDateTime_DELTA_GET_MICROSECONDS","PyDateTime_DELTA_GET_SECONDS","PyDateTime_Date","PyDateTime_DateTime","PyDateTime_Delta","PyDateTime_FromTimestamp","PyDateTime_GET_DAY","PyDateTime_GET_MONTH","PyDateTime_GET_YEAR","PyDateTime_IMPORT","PyDateTime_TIME_GET_FOLD","PyDateTime_TIME_GET_HOUR","PyDateTime_TIME_GET_MICROSECOND","PyDateTime_TIME_GET_MINUTE","PyDateTime_TIME_GET_SECOND","PyDateTime_TIME_GET_TZINFO","PyDateTime_Time","PyDateTime_TimeZone_UTC","PyDate_Check","PyDate_CheckExact","PyDate_FromTimestamp","PyDelta_Check","PyDelta_CheckExact","PyDescrObject","PyDescr_NewClassMethod","PyDescr_NewGetSet","PyDescr_NewMember","PyDescr_NewMethod","PyDictItems_Check","PyDictItems_Type","PyDictIterItem_Type","PyDictIterKey_Type","PyDictIterValue_Type","PyDictKeysObject","PyDictKeys_Check","PyDictKeys_Type","PyDictObject","PyDictProxy_New","PyDictProxy_Type","PyDictRevIterItem_Type","PyDictRevIterKey_Type","PyDictRevIterValue_Type","PyDictValues_Check","PyDictValues_Type","PyDictViewSet_Check","PyDict_Check","PyDict_CheckExact","PyDict_Clear","PyDict_Contains","PyDict_Copy","PyDict_DelItem","PyDict_DelItemString","PyDict_GetItem","PyDict_GetItemString","PyDict_GetItemWithError","PyDict_Items","PyDict_Keys","PyDict_Merge","PyDict_MergeFromSeq2","PyDict_New","PyDict_Next","PyDict_SetItem","PyDict_SetItemString","PyDict_Size","PyDict_Type","PyDict_Update","PyDict_Values","PyEllipsis_Type","PyEnum_Type","PyErr_BadArgument","PyErr_BadInternalCall","PyErr_CheckSignals","PyErr_Clear","PyErr_Display","PyErr_ExceptionMatches","PyErr_Fetch","PyErr_Format","PyErr_GetExcInfo","PyErr_GivenExceptionMatches","PyErr_NewException","PyErr_NewExceptionWithDoc","PyErr_NoMemory","PyErr_NormalizeException","PyErr_Occurred","PyErr_Print","PyErr_PrintEx","PyErr_ProgramText","PyErr_ResourceWarning","PyErr_Restore","PyErr_SetExcInfo","PyErr_SetFromErrno","PyErr_SetFromErrnoWithFilename","PyErr_SetFromErrnoWithFilenameObject","PyErr_SetFromErrnoWithFilenameObjects","PyErr_SetImportError","PyErr_SetImportErrorSubclass","PyErr_SetInterrupt","PyErr_SetInterruptEx","PyErr_SetNone","PyErr_SetObject","PyErr_SetString","PyErr_SyntaxLocation","PyErr_SyntaxLocationEx","PyErr_WarnEx","PyErr_WarnExplicit","PyErr_WarnFormat","PyErr_WriteUnraisable","PyEval_AcquireLock","PyEval_AcquireThread","PyEval_CallFunction","PyEval_CallMethod","PyEval_CallObject","PyEval_CallObjectWithKeywords","PyEval_EvalCode","PyEval_EvalCodeEx","PyEval_EvalFrame","PyEval_EvalFrameEx","PyEval_GetBuiltins","PyEval_GetCallStats","PyEval_GetFrame","PyEval_GetFuncDesc","PyEval_GetFuncName","PyEval_GetGlobals","PyEval_GetLocals","PyEval_InitThreads","PyEval_ReleaseLock","PyEval_ReleaseThread","PyEval_RestoreThread","PyEval_SaveThread","PyEval_SetProfile","PyEval_SetTrace","PyEval_ThreadsInitialized","PyExc_ArithmeticError","PyExc_AssertionError","PyExc_AttributeError","PyExc_BaseException","PyExc_BlockingIOError","PyExc_BrokenPipeError","PyExc_BufferError","PyExc_BytesWarning","PyExc_ChildProcessError","PyExc_ConnectionAbortedError","PyExc_ConnectionError","PyExc_ConnectionRefusedError","PyExc_ConnectionResetError","PyExc_DeprecationWarning","PyExc_EOFError","PyExc_EncodingWarning","PyExc_EnvironmentError","PyExc_Exception","PyExc_FileExistsError","PyExc_FileNotFoundError","PyExc_FloatingPointError","PyExc_FutureWarning","PyExc_GeneratorExit","PyExc_IOError","PyExc_ImportError","PyExc_ImportWarning","PyExc_IndentationError","PyExc_IndexError","PyExc_InterruptedError","PyExc_IsADirectoryError","PyExc_KeyError","PyExc_KeyboardInterrupt","PyExc_LookupError","PyExc_MemoryError","PyExc_ModuleNotFoundError","PyExc_NameError","PyExc_NotADirectoryError","PyExc_NotImplementedError","PyExc_OSError","PyExc_OverflowError","PyExc_PendingDeprecationWarning","PyExc_PermissionError","PyExc_ProcessLookupError","PyExc_RecursionError","PyExc_RecursionErrorInst","PyExc_ReferenceError","PyExc_ResourceWarning","PyExc_RuntimeError","PyExc_RuntimeWarning","PyExc_StopAsyncIteration","PyExc_StopIteration","PyExc_SyntaxError","PyExc_SyntaxWarning","PyExc_SystemError","PyExc_SystemExit","PyExc_TabError","PyExc_TimeoutError","PyExc_TypeError","PyExc_UnboundLocalError","PyExc_UnicodeDecodeError","PyExc_UnicodeEncodeError","PyExc_UnicodeError","PyExc_UnicodeTranslateError","PyExc_UnicodeWarning","PyExc_UserWarning","PyExc_ValueError","PyExc_Warning","PyExc_ZeroDivisionError","PyExceptionClass_Check","PyExceptionInstance_Check","PyExceptionInstance_Class","PyException_GetCause","PyException_GetContext","PyException_GetTraceback","PyException_SetCause","PyException_SetContext","PyException_SetTraceback","PyFile_FromFd","PyFile_GetLine","PyFile_WriteObject","PyFile_WriteString","PyFilter_Type","PyFloatObject","PyFloat_AS_DOUBLE","PyFloat_AsDouble","PyFloat_Check","PyFloat_CheckExact","PyFloat_FromDouble","PyFloat_FromString","PyFloat_GetInfo","PyFloat_GetMax","PyFloat_GetMin","PyFloat_Type","PyFrameObject","PyFrameState","PyFrame_BlockPop","PyFrame_BlockSetup","PyFrame_Check","PyFrame_FastToLocals","PyFrame_FastToLocalsWithError","PyFrame_GetCode","PyFrame_GetLineNumber","PyFrame_LocalsToFast","PyFrame_New","PyFrame_Type","PyFrozenSet_Check","PyFrozenSet_CheckExact","PyFrozenSet_New","PyFrozenSet_Type","PyFunctionObject","PyFunction_Check","PyFunction_GetAnnotations","PyFunction_GetClosure","PyFunction_GetCode","PyFunction_GetDefaults","PyFunction_GetGlobals","PyFunction_GetKwDefaults","PyFunction_GetModule","PyFunction_New","PyFunction_NewWithQualName","PyFunction_SetAnnotations","PyFunction_SetClosure","PyFunction_SetDefaults","PyFunction_SetKwDefaults","PyFunction_Type","PyFutureFeatures","PyGC_Collect","PyGC_Disable","PyGC_Enable","PyGC_IsEnabled","PyGILState_Check","PyGILState_Ensure","PyGILState_GetThisThreadState","PyGILState_LOCKED","PyGILState_Release","PyGILState_STATE","PyGILState_UNLOCKED","PyGenObject","PyGen_Check","PyGen_CheckExact","PyGen_New","PyGen_Type","PyGetSetDef","PyGetSetDescrObject","PyGetSetDescr_Type","PyHash_FuncDef","PyHash_GetFuncDef","PyHeapTypeObject","PyHeapType_GET_MEMBERS","PyImportErrorObject","PyImport_AddModule","PyImport_AddModuleObject","PyImport_AppendInittab","PyImport_ExecCodeModule","PyImport_ExecCodeModuleEx","PyImport_ExecCodeModuleObject","PyImport_ExecCodeModuleWithPathnames","PyImport_ExtendInittab","PyImport_FrozenModules","PyImport_GetImporter","PyImport_GetMagicNumber","PyImport_GetMagicTag","PyImport_GetModuleDict","PyImport_Import","PyImport_ImportFrozenModule","PyImport_ImportFrozenModuleObject","PyImport_ImportModule","PyImport_ImportModuleEx","PyImport_ImportModuleLevel","PyImport_ImportModuleLevelObject","PyImport_ImportModuleNoBlock","PyImport_Inittab","PyImport_ReloadModule","PyIndex_Check","PyInterpreterState","PyInterpreterState_Clear","PyInterpreterState_Delete","PyInterpreterState_Get","PyInterpreterState_GetDict","PyInterpreterState_GetID","PyInterpreterState_Head","PyInterpreterState_Main","PyInterpreterState_New","PyInterpreterState_Next","PyInterpreterState_ThreadHead","PyIter_Check","PyIter_Next","PyIter_Send","PyListIter_Type","PyListObject","PyListRevIter_Type","PyList_Append","PyList_AsTuple","PyList_Check","PyList_CheckExact","PyList_GET_ITEM","PyList_GET_SIZE","PyList_GetItem","PyList_GetSlice","PyList_Insert","PyList_New","PyList_Reverse","PyList_SET_ITEM","PyList_SetItem","PyList_SetSlice","PyList_Size","PyList_Sort","PyList_Type","PyLongObject","PyLongRangeIter_Type","PyLong_AsDouble","PyLong_AsLong","PyLong_AsLongAndOverflow","PyLong_AsLongLong","PyLong_AsLongLongAndOverflow","PyLong_AsSize_t","PyLong_AsSsize_t","PyLong_AsUnsignedLong","PyLong_AsUnsignedLongLong","PyLong_AsUnsignedLongLongMask","PyLong_AsUnsignedLongMask","PyLong_AsVoidPtr","PyLong_Check","PyLong_CheckExact","PyLong_FromDouble","PyLong_FromLong","PyLong_FromLongLong","PyLong_FromSize_t","PyLong_FromSsize_t","PyLong_FromString","PyLong_FromUnsignedLong","PyLong_FromUnsignedLongLong","PyLong_FromVoidPtr","PyLong_GetInfo","PyLong_Type","PyMap_Type","PyMappingMethods","PyMapping_Check","PyMapping_DelItem","PyMapping_DelItemString","PyMapping_GetItemString","PyMapping_HasKey","PyMapping_HasKeyString","PyMapping_Items","PyMapping_Keys","PyMapping_Length","PyMapping_SetItemString","PyMapping_Size","PyMapping_Values","PyMarshal_ReadObjectFromString","PyMarshal_WriteObjectToString","PyMemAllocatorDomain","PyMemAllocatorEx","PyMem_Calloc","PyMem_Free","PyMem_GetAllocator","PyMem_Malloc","PyMem_RawCalloc","PyMem_RawFree","PyMem_RawMalloc","PyMem_RawRealloc","PyMem_Realloc","PyMem_SetAllocator","PyMem_SetupDebugHooks","PyMemberDescrObject","PyMemberDescr_Type","PyMemoryView_Check","PyMemoryView_FromMemory","PyMemoryView_FromObject","PyMemoryView_GetContiguous","PyMemoryView_Type","PyMethodDef","PyMethodDefPointer","PyMethodDescrObject","PyMethodDescr_Type","PyModuleDef","PyModuleDef_Base","PyModuleDef_HEAD_INIT","PyModuleDef_Init","PyModuleDef_Slot","PyModuleDef_Type","PyModule_AddFunctions","PyModule_AddIntConstant","PyModule_AddObject","PyModule_AddObjectRef","PyModule_AddStringConstant","PyModule_AddType","PyModule_Check","PyModule_CheckExact","PyModule_Create","PyModule_Create2","PyModule_ExecDef","PyModule_FromDefAndSpec","PyModule_FromDefAndSpec2","PyModule_GetDef","PyModule_GetDict","PyModule_GetFilename","PyModule_GetFilenameObject","PyModule_GetName","PyModule_GetNameObject","PyModule_GetState","PyModule_New","PyModule_NewObject","PyModule_SetDocString","PyModule_Type","PyNumberMethods","PyNumber_Absolute","PyNumber_Add","PyNumber_And","PyNumber_AsSsize_t","PyNumber_Check","PyNumber_Divmod","PyNumber_Float","PyNumber_FloorDivide","PyNumber_InPlaceAdd","PyNumber_InPlaceAnd","PyNumber_InPlaceFloorDivide","PyNumber_InPlaceLshift","PyNumber_InPlaceMatrixMultiply","PyNumber_InPlaceMultiply","PyNumber_InPlaceOr","PyNumber_InPlacePower","PyNumber_InPlaceRemainder","PyNumber_InPlaceRshift","PyNumber_InPlaceSubtract","PyNumber_InPlaceTrueDivide","PyNumber_InPlaceXor","PyNumber_Index","PyNumber_Invert","PyNumber_Long","PyNumber_Lshift","PyNumber_MatrixMultiply","PyNumber_Multiply","PyNumber_Negative","PyNumber_Or","PyNumber_Positive","PyNumber_Power","PyNumber_Remainder","PyNumber_Rshift","PyNumber_Subtract","PyNumber_ToBase","PyNumber_TrueDivide","PyNumber_Xor","PyOSErrorObject","PyOS_AfterFork","PyOS_AfterFork_Child","PyOS_AfterFork_Parent","PyOS_BeforeFork","PyOS_FSPath","PyOS_InterruptOccurred","PyOS_double_to_string","PyOS_getsig","PyOS_setsig","PyOS_string_to_double","PyOS_strtol","PyOS_strtoul","PyObject","PyObjectArenaAllocator","PyObject_ASCII","PyObject_AsFileDescriptor","PyObject_Bytes","PyObject_Call","PyObject_CallFinalizer","PyObject_CallFinalizerFromDealloc","PyObject_CallFunction","PyObject_CallFunctionObjArgs","PyObject_CallMethod","PyObject_CallMethodNoArgs","PyObject_CallMethodObjArgs","PyObject_CallMethodOneArg","PyObject_CallNoArgs","PyObject_CallObject","PyObject_CallOneArg","PyObject_Calloc","PyObject_CheckBuffer","PyObject_ClearWeakRefs","PyObject_CopyData","PyObject_DelAttr","PyObject_DelAttrString","PyObject_DelItem","PyObject_DelItemString","PyObject_Dir","PyObject_Format","PyObject_Free","PyObject_GC_Del","PyObject_GC_Track","PyObject_GC_UnTrack","PyObject_GET_WEAKREFS_LISTPTR","PyObject_GenericGetAttr","PyObject_GenericGetDict","PyObject_GenericSetAttr","PyObject_GenericSetDict","PyObject_GetArenaAllocator","PyObject_GetAttr","PyObject_GetAttrString","PyObject_GetBuffer","PyObject_GetItem","PyObject_GetIter","PyObject_HEAD_INIT","PyObject_HasAttr","PyObject_HasAttrString","PyObject_Hash","PyObject_HashNotImplemented","PyObject_IS_GC","PyObject_Init","PyObject_InitVar","PyObject_IsInstance","PyObject_IsSubclass","PyObject_IsTrue","PyObject_Length","PyObject_LengthHint","PyObject_Malloc","PyObject_Not","PyObject_Print","PyObject_Realloc","PyObject_Repr","PyObject_RichCompare","PyObject_RichCompareBool","PyObject_SelfIter","PyObject_SetArenaAllocator","PyObject_SetAttr","PyObject_SetAttrString","PyObject_SetItem","PyObject_Size","PyObject_Str","PyObject_Type","PyObject_TypeCheck","PyObject_Vectorcall","PyObject_VectorcallDict","PyObject_VectorcallMethod","PyPreConfig","PyPreConfig_InitIsolatedConfig","PyPreConfig_InitPythonConfig","PyProperty_Type","PyRangeIter_Type","PyRange_Check","PyRange_Type","PyReversed_Type","PyRun_AnyFile","PyRun_AnyFileEx","PyRun_AnyFileExFlags","PyRun_AnyFileFlags","PyRun_File","PyRun_FileEx","PyRun_FileExFlags","PyRun_FileFlags","PyRun_InteractiveLoop","PyRun_InteractiveLoopFlags","PyRun_InteractiveOne","PyRun_InteractiveOneFlags","PyRun_InteractiveOneObject","PyRun_SimpleFile","PyRun_SimpleFileEx","PyRun_SimpleFileExFlags","PyRun_SimpleString","PyRun_SimpleStringFlags","PyRun_String","PyRun_StringFlags","PySendResult","PySeqIter_Check","PySeqIter_New","PySeqIter_Type","PySequenceMethods","PySequence_Check","PySequence_Concat","PySequence_Contains","PySequence_Count","PySequence_DelItem","PySequence_DelSlice","PySequence_Fast","PySequence_GetItem","PySequence_GetSlice","PySequence_In","PySequence_InPlaceConcat","PySequence_InPlaceRepeat","PySequence_Index","PySequence_Length","PySequence_List","PySequence_Repeat","PySequence_SetItem","PySequence_SetSlice","PySequence_Size","PySequence_Tuple","PySetIter_Type","PySetObject","PySet_Add","PySet_Check","PySet_CheckExact","PySet_Clear","PySet_Contains","PySet_Discard","PySet_GET_SIZE","PySet_MINSIZE","PySet_New","PySet_Pop","PySet_Size","PySet_Type","PySliceObject","PySlice_AdjustIndices","PySlice_Check","PySlice_GetIndices","PySlice_GetIndicesEx","PySlice_New","PySlice_Type","PySlice_Unpack","PyState_AddModule","PyState_FindModule","PyState_RemoveModule","PyStatus","PyStatus_Error","PyStatus_Exception","PyStatus_Exit","PyStatus_IsError","PyStatus_IsExit","PyStatus_NoMemory","PyStatus_Ok","PyStopIterationObject","PyStructSequence","PyStructSequence_Desc","PyStructSequence_Field","PyStructSequence_GET_ITEM","PyStructSequence_GetItem","PyStructSequence_InitType","PyStructSequence_InitType2","PyStructSequence_New","PyStructSequence_NewType","PyStructSequence_SET_ITEM","PyStructSequence_SetItem","PySuper_Type","PySyntaxErrorObject","PySys_AddWarnOption","PySys_AddWarnOptionUnicode","PySys_AddXOption","PySys_FormatStderr","PySys_FormatStdout","PySys_GetObject","PySys_GetXOptions","PySys_HasWarnOptions","PySys_ResetWarnOptions","PySys_SetArgv","PySys_SetArgvEx","PySys_SetObject","PySys_SetPath","PySys_WriteStderr","PySys_WriteStdout","PySystemExitObject","PyTZInfo_Check","PyTZInfo_CheckExact","PyThreadState","PyThreadState_Clear","PyThreadState_Delete","PyThreadState_DeleteCurrent","PyThreadState_GET","PyThreadState_Get","PyThreadState_GetDict","PyThreadState_New","PyThreadState_Next","PyThreadState_SetAsyncExc","PyThreadState_Swap","PyTimeZone_FromOffset","PyTimeZone_FromOffsetAndName","PyTime_Check","PyTime_CheckExact","PyTraceBack_Check","PyTraceBack_Here","PyTraceBack_Print","PyTraceBack_Type","PyTrace_CALL","PyTrace_C_CALL","PyTrace_C_EXCEPTION","PyTrace_C_RETURN","PyTrace_EXCEPTION","PyTrace_LINE","PyTrace_OPCODE","PyTrace_RETURN","PyTryBlock","PyTupleIter_Type","PyTupleObject","PyTuple_Check","PyTuple_CheckExact","PyTuple_GET_ITEM","PyTuple_GET_SIZE","PyTuple_GetItem","PyTuple_GetSlice","PyTuple_New","PyTuple_Pack","PyTuple_SET_ITEM","PyTuple_SetItem","PyTuple_Size","PyTuple_Type","PyTypeObject","PyType_Check","PyType_CheckExact","PyType_ClearCache","PyType_FastSubclass","PyType_FromModuleAndSpec","PyType_FromSpec","PyType_FromSpecWithBases","PyType_GenericAlloc","PyType_GenericNew","PyType_GetFlags","PyType_GetModule","PyType_GetModuleState","PyType_GetSlot","PyType_HasFeature","PyType_IS_GC","PyType_IsSubtype","PyType_Modified","PyType_Ready","PyType_SUPPORTS_WEAKREFS","PyType_Slot","PyType_Spec","PyType_Type","PyUnicodeDecodeError_Create","PyUnicodeDecodeError_GetEncoding","PyUnicodeDecodeError_GetEnd","PyUnicodeDecodeError_GetObject","PyUnicodeDecodeError_GetReason","PyUnicodeDecodeError_GetStart","PyUnicodeDecodeError_SetEnd","PyUnicodeDecodeError_SetReason","PyUnicodeDecodeError_SetStart","PyUnicodeEncodeError_GetEncoding","PyUnicodeEncodeError_GetEnd","PyUnicodeEncodeError_GetObject","PyUnicodeEncodeError_GetReason","PyUnicodeEncodeError_GetStart","PyUnicodeEncodeError_SetEnd","PyUnicodeEncodeError_SetReason","PyUnicodeEncodeError_SetStart","PyUnicodeErrorObject","PyUnicodeIter_Type","PyUnicodeObject","PyUnicodeObjectData","PyUnicodeTranslateError_GetEnd","PyUnicodeTranslateError_GetObject","PyUnicodeTranslateError_GetReason","PyUnicodeTranslateError_GetStart","PyUnicodeTranslateError_SetEnd","PyUnicodeTranslateError_SetReason","PyUnicodeTranslateError_SetStart","PyUnicode_1BYTE_DATA","PyUnicode_1BYTE_KIND","PyUnicode_2BYTE_DATA","PyUnicode_2BYTE_KIND","PyUnicode_4BYTE_DATA","PyUnicode_4BYTE_KIND","PyUnicode_Append","PyUnicode_AppendAndDel","PyUnicode_AsASCIIString","PyUnicode_AsCharmapString","PyUnicode_AsDecodedObject","PyUnicode_AsDecodedUnicode","PyUnicode_AsEncodedObject","PyUnicode_AsEncodedString","PyUnicode_AsEncodedUnicode","PyUnicode_AsLatin1String","PyUnicode_AsRawUnicodeEscapeString","PyUnicode_AsUCS4","PyUnicode_AsUCS4Copy","PyUnicode_AsUTF16String","PyUnicode_AsUTF32String","PyUnicode_AsUTF8","PyUnicode_AsUTF8AndSize","PyUnicode_AsUTF8String","PyUnicode_AsUnicode","PyUnicode_AsUnicodeAndSize","PyUnicode_AsUnicodeEscapeString","PyUnicode_AsWideChar","PyUnicode_AsWideCharString","PyUnicode_BuildEncodingMap","PyUnicode_Check","PyUnicode_CheckExact","PyUnicode_ClearFreeList","PyUnicode_Compare","PyUnicode_CompareWithASCIIString","PyUnicode_Concat","PyUnicode_Contains","PyUnicode_CopyCharacters","PyUnicode_Count","PyUnicode_DATA","PyUnicode_Decode","PyUnicode_DecodeASCII","PyUnicode_DecodeCharmap","PyUnicode_DecodeFSDefault","PyUnicode_DecodeFSDefaultAndSize","PyUnicode_DecodeLatin1","PyUnicode_DecodeLocale","PyUnicode_DecodeLocaleAndSize","PyUnicode_DecodeRawUnicodeEscape","PyUnicode_DecodeUTF16","PyUnicode_DecodeUTF16Stateful","PyUnicode_DecodeUTF32","PyUnicode_DecodeUTF32Stateful","PyUnicode_DecodeUTF7","PyUnicode_DecodeUTF7Stateful","PyUnicode_DecodeUTF8","PyUnicode_DecodeUTF8Stateful","PyUnicode_DecodeUnicodeEscape","PyUnicode_Encode","PyUnicode_EncodeASCII","PyUnicode_EncodeCharmap","PyUnicode_EncodeDecimal","PyUnicode_EncodeFSDefault","PyUnicode_EncodeLatin1","PyUnicode_EncodeLocale","PyUnicode_EncodeRawUnicodeEscape","PyUnicode_EncodeUTF16","PyUnicode_EncodeUTF32","PyUnicode_EncodeUTF7","PyUnicode_EncodeUTF8","PyUnicode_EncodeUnicodeEscape","PyUnicode_FSConverter","PyUnicode_FSDecoder","PyUnicode_Fill","PyUnicode_Find","PyUnicode_FindChar","PyUnicode_Format","PyUnicode_FromEncodedObject","PyUnicode_FromFormat","PyUnicode_FromKindAndData","PyUnicode_FromObject","PyUnicode_FromOrdinal","PyUnicode_FromString","PyUnicode_FromStringAndSize","PyUnicode_FromUnicode","PyUnicode_FromWideChar","PyUnicode_GET_LENGTH","PyUnicode_GetDefaultEncoding","PyUnicode_GetLength","PyUnicode_GetSize","PyUnicode_IS_ASCII","PyUnicode_IS_COMPACT","PyUnicode_IS_COMPACT_ASCII","PyUnicode_IS_READY","PyUnicode_InternFromString","PyUnicode_InternImmortal","PyUnicode_InternInPlace","PyUnicode_IsIdentifier","PyUnicode_Join","PyUnicode_KIND","PyUnicode_New","PyUnicode_Partition","PyUnicode_READY","PyUnicode_RPartition","PyUnicode_RSplit","PyUnicode_ReadChar","PyUnicode_Replace","PyUnicode_Resize","PyUnicode_RichCompare","PyUnicode_Split","PyUnicode_Splitlines","PyUnicode_Substring","PyUnicode_Tailmatch","PyUnicode_TransformDecimalToASCII","PyUnicode_Translate","PyUnicode_TranslateCharmap","PyUnicode_Type","PyUnicode_WCHAR_KIND","PyUnicode_WriteChar","PyVarObject","PyVectorcall_Call","PyVectorcall_Function","PyVectorcall_NARGS","PyWeakReference","PyWeakref_Check","PyWeakref_CheckProxy","PyWeakref_CheckRef","PyWeakref_CheckRefExact","PyWeakref_GetObject","PyWeakref_NewProxy","PyWeakref_NewRef","PyWideStringList","PyWideStringList_Append","PyWideStringList_Insert","PyWrapperDescrObject","PyWrapperDescr_Type","PyWrapperFlag_KEYWORDS","PyWrapper_New","PyZip_Type","Py_AddPendingCall","Py_AtExit","Py_BuildValue","Py_BytesMain","Py_BytesWarningFlag","Py_CLEANUP_SUPPORTED","Py_CLEAR","Py_CompileString","Py_CompileStringExFlags","Py_CompileStringFlags","Py_CompileStringObject","Py_DECREF","Py_DTSF_ADD_DOT_0","Py_DTSF_ALT","Py_DTSF_SIGN","Py_DTST_FINITE","Py_DTST_INFINITE","Py_DTST_NAN","Py_DebugFlag","Py_DecRef","Py_DecodeLocale","Py_DontWriteBytecodeFlag","Py_EQ","Py_Ellipsis","Py_EncodeLocale","Py_EndInterpreter","Py_EnterRecursiveCall","Py_Exit","Py_ExitStatusException","Py_False","Py_FatalError","Py_FileSystemDefaultEncodeErrors","Py_FileSystemDefaultEncoding","Py_Finalize","Py_FinalizeEx","Py_FrozenFlag","Py_GE","Py_GT","Py_GetArgcArgv","Py_GetBuildInfo","Py_GetCompiler","Py_GetCopyright","Py_GetExecPrefix","Py_GetPath","Py_GetPlatform","Py_GetPrefix","Py_GetProgramFullPath","Py_GetProgramName","Py_GetPythonHome","Py_GetRecursionLimit","Py_GetVersion","Py_HASH_EXTERNAL","Py_HASH_FNV","Py_HASH_SIPHASH24","Py_HasFileSystemDefaultEncoding","Py_HashRandomizationFlag","Py_INCREF","Py_IS_TYPE","Py_IgnoreEnvironmentFlag","Py_IncRef","Py_Initialize","Py_InitializeEx","Py_InitializeFromConfig","Py_InspectFlag","Py_InteractiveFlag","Py_Is","Py_IsFalse","Py_IsInitialized","Py_IsNone","Py_IsTrue","Py_IsolatedFlag","Py_LE","Py_LT","Py_LeaveRecursiveCall","Py_Main","Py_MakePendingCalls","Py_NE","Py_NewInterpreter","Py_NewRef","Py_NoSiteFlag","Py_NoUserSiteDirectory","Py_None","Py_NotImplemented","Py_OptimizeFlag","Py_PRINT_RAW","Py_PreInitialize","Py_PreInitializeFromArgs","Py_PreInitializeFromBytesArgs","Py_QuietFlag","Py_REFCNT","Py_ReprEnter","Py_ReprLeave","Py_RunMain","Py_SIZE","Py_SetPath","Py_SetProgramName","Py_SetPythonHome","Py_SetRecursionLimit","Py_TPFLAGS_BASETYPE","Py_TPFLAGS_BASE_EXC_SUBCLASS","Py_TPFLAGS_BYTES_SUBCLASS","Py_TPFLAGS_DEFAULT","Py_TPFLAGS_DICT_SUBCLASS","Py_TPFLAGS_DISALLOW_INSTANTIATION","Py_TPFLAGS_HAVE_FINALIZE","Py_TPFLAGS_HAVE_GC","Py_TPFLAGS_HAVE_VECTORCALL","Py_TPFLAGS_HAVE_VERSION_TAG","Py_TPFLAGS_HEAPTYPE","Py_TPFLAGS_IMMUTABLETYPE","Py_TPFLAGS_IS_ABSTRACT","Py_TPFLAGS_LIST_SUBCLASS","Py_TPFLAGS_LONG_SUBCLASS","Py_TPFLAGS_MAPPING","Py_TPFLAGS_METHOD_DESCRIPTOR","Py_TPFLAGS_READY","Py_TPFLAGS_READYING","Py_TPFLAGS_SEQUENCE","Py_TPFLAGS_TUPLE_SUBCLASS","Py_TPFLAGS_TYPE_SUBCLASS","Py_TPFLAGS_UNICODE_SUBCLASS","Py_TPFLAGS_VALID_VERSION_TAG","Py_TYPE","Py_True","Py_UCS1","Py_UCS2","Py_UCS4","Py_UNICODE","Py_UNICODE_REPLACEMENT_CHARACTER","Py_UnbufferedStdioFlag","Py_UseClassExceptionsFlag","Py_VerboseFlag","Py_XDECREF","Py_XINCREF","Py_XNewRef","Py_am_aiter","Py_am_anext","Py_am_await","Py_bf_getbuffer","Py_bf_releasebuffer","Py_buffer","Py_complex","Py_eval_input","Py_file_input","Py_fstring_input","Py_func_type_input","Py_hash_t","Py_intptr_t","Py_mod_create","Py_mod_exec","Py_mp_ass_subscript","Py_mp_length","Py_mp_subscript","Py_nb_absolute","Py_nb_add","Py_nb_and","Py_nb_bool","Py_nb_divmod","Py_nb_float","Py_nb_floor_divide","Py_nb_index","Py_nb_inplace_add","Py_nb_inplace_and","Py_nb_inplace_floor_divide","Py_nb_inplace_lshift","Py_nb_inplace_matrix_multiply","Py_nb_inplace_multiply","Py_nb_inplace_or","Py_nb_inplace_power","Py_nb_inplace_remainder","Py_nb_inplace_rshift","Py_nb_inplace_subtract","Py_nb_inplace_true_divide","Py_nb_inplace_xor","Py_nb_int","Py_nb_invert","Py_nb_lshift","Py_nb_matrix_multiply","Py_nb_multiply","Py_nb_negative","Py_nb_or","Py_nb_positive","Py_nb_power","Py_nb_remainder","Py_nb_rshift","Py_nb_subtract","Py_nb_true_divide","Py_nb_xor","Py_single_input","Py_sq_ass_item","Py_sq_concat","Py_sq_contains","Py_sq_inplace_concat","Py_sq_inplace_repeat","Py_sq_item","Py_sq_length","Py_sq_repeat","Py_ssize_t","Py_tp_alloc","Py_tp_base","Py_tp_bases","Py_tp_call","Py_tp_clear","Py_tp_dealloc","Py_tp_del","Py_tp_descr_get","Py_tp_descr_set","Py_tp_doc","Py_tp_finalize","Py_tp_free","Py_tp_getattr","Py_tp_getattro","Py_tp_getset","Py_tp_hash","Py_tp_init","Py_tp_is_gc","Py_tp_iter","Py_tp_iternext","Py_tp_members","Py_tp_methods","Py_tp_new","Py_tp_repr","Py_tp_richcompare","Py_tp_setattr","Py_tp_setattro","Py_tp_str","Py_tp_traverse","Py_tracefunc","Py_uhash_t","Py_uintptr_t","SSTATE_INTERNED_IMMORTAL","SSTATE_INTERNED_MORTAL","SSTATE_NOT_INTERNED","TZInfoType","TimeType","TimeZone_FromTimeZone","TimeZone_UTC","Time_FromTime","Time_FromTimeAndFold","_PyBytes_Resize","_PyCFunctionFast","_PyCFunctionFast","_PyCFunctionFastWithKeywords","_PyCFunctionFastWithKeywords","_PyCode_GetExtra","_PyCode_SetExtra","_PyCoroWrapper_Type","_PyDateTime_BaseDateTime","_PyDateTime_BaseTime","_PyDict_Contains_KnownHash","_PyDict_NewPresized","_PyDict_Next","_PyDict_SetItem_KnownHash","_PyErr_BadInternalCall","_PyErr_ChainExceptions","_PyErr_StackItem","_PyEval_EvalFrameDefault","_PyEval_RequestCodeExtraIndex","_PyFrameEvalFunction","_PyHASH_MULTIPLIER","_PyImport_AcquireLock","_PyImport_FindExtensionObject","_PyImport_FixupBuiltin","_PyImport_FixupExtensionObject","_PyImport_IsInitialized","_PyImport_ReleaseLock","_PyImport_SetModule","_PyImport_SetModuleString","_PyInterpreterState_GetEvalFrameFunc","_PyInterpreterState_SetEvalFrameFunc","_PyLong_AsByteArray","_PyLong_FromByteArray","_PyLong_NumBits","_PyManagedBuffer_Type","_PyMethodWrapper_Type","_PyNone_Type","_PyNotImplemented_Type","_PyObject_CallNoArg","_PyObject_FastCall","_PyObject_FastCallTstate","_PyObject_GC_Calloc","_PyObject_GC_Malloc","_PyObject_GC_New","_PyObject_GC_NewVar","_PyObject_GC_Resize","_PyObject_GetDictPtr","_PyObject_MakeTpCall","_PyObject_New","_PyObject_NewVar","_PyObject_NextNotImplemented","_PyObject_VectorcallTstate","_PyOpcache","_PyRun_AnyFileObject","_PyRun_InteractiveLoopObject","_PyRun_SimpleFileObject","_PySequence_IterSearch","_PySet_Dummy","_PySet_NextEntry","_PyStack_AsDict","_PyStatus_TYPE","_PyStatus_TYPE_ERROR","_PyStatus_TYPE_EXIT","_PyStatus_TYPE_OK","_PyUnicode_COMPACT_DATA","_PyUnicode_CheckConsistency","_PyUnicode_NONCOMPACT_DATA","_PyUnicode_Ready","_PyWeakReference","_PyWeakref_CallableProxyType","_PyWeakref_ProxyType","_PyWeakref_RefType","_Py_CheckFunctionResult","_Py_Dealloc","_Py_GetAllocatedBlocks","_Py_HashBytes","_Py_InitializeMain","_Py_IsCoreInitialized","_Py_NewRef","_Py_PackageContext","_Py_XNewRef","_Py_c_abs","_Py_c_diff","_Py_c_neg","_Py_c_pow","_Py_c_prod","_Py_c_quot","_Py_c_sum","_base","_base","_config_init","_config_init","_frozen","_init_main","_inittab","_install_importlib","_isolated_interpreter","_type","alloc","allocated","allocator","allocfunc","am_aiter","am_anext","am_await","am_send","any","args","args","args","args","args","args","args","argv","as_async","as_buffer","as_mapping","as_number","as_ptr","as_sequence","ascii","b_handler","b_level","b_type","base_exec_prefix","base_executable","base_prefix","basicsize","bf_getbuffer","bf_releasebuffer","binaryfunc","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buf","buffered_stdio","bytes_warning","calloc","cause","cause","cause","cause","cause","cause","cause","cf_feature_version","cf_flags","check_hash_pycs_mode","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closure","co_argcount","co_cell2arg","co_cellvars","co_code","co_consts","co_extra","co_filename","co_firstlineno","co_flags","co_freevars","co_kwonlyargcount","co_linetable","co_name","co_names","co_nlocals","co_opcache","co_opcache_flag","co_opcache_map","co_opcache_size","co_posonlyargcount","co_stacksize","co_varnames","co_weakreflist","co_zombieframe","code","code","coerce_c_locale","coerce_c_locale_warn","compact","configure_c_stdio","configure_locale","context","context","context","context","context","context","context","ctx","ctx","cval","d_base","d_common","d_common","d_common","d_common","d_getset","d_member","d_method","d_name","d_qualname","d_type","d_wrapped","data","data","data","data","data","data","days","default","default","default","default","default","default","default","default","default","default","default","descrgetfunc","descrsetfunc","destructor","dev_mode","dev_mode","dict","dict","dict","dict","dict","dict","dict","doc","doc","doc","doc","dump_refs","encoding","end","end_lineno","end_offset","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","err_msg","exc_traceback","exc_type","exc_value","exec_prefix","executable","exitcode","f_back","f_blockstack","f_builtins","f_code","f_gen","f_globals","f_iblock","f_lasti","f_lineno","f_locals","f_localsplus","f_stackdepth","f_state","f_trace","f_trace_lines","f_trace_opcodes","f_valuestack","faulthandler","ff_features","ff_lineno","fields","filename","filename","filename2","filesystem_encoding","filesystem_errors","fill","finger","flags","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold","fold","format","free","free","freefunc","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","func","func","func_annotations","func_builtins","func_closure","func_code","func_defaults","func_dict","func_doc","func_globals","func_kwdefaults","func_module","func_name","func_qualname","func_weakreflist","function","get","getattrfunc","getattrofunc","getbufferproc","getiterfunc","getter","gi_code","gi_exc_state","gi_frame","gi_name","gi_qualname","gi_weakreflist","hash","hash","hash","hash","hash","hash","hash_bits","hash_seed","hashcode","hashcode","hashcode","hashcode","hashcode","hashcode","hashfunc","hastzinfo","hastzinfo","hastzinfo","hastzinfo","hastzinfo","home","ht_cached_keys","ht_module","ht_name","ht_qualname","ht_slots","ht_type","imag","import_time","initfunc","initproc","inquiry","inspect","install_signal_handlers","interactive","internal","interned","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_null","isolated","isolated","items","itemsize","itemsize","iternextfunc","key","kind","latin1","len","lenfunc","length","length","lineno","m_base","m_clear","m_copy","m_doc","m_free","m_index","m_init","m_methods","m_ml","m_module","m_name","m_self","m_size","m_slots","m_traverse","m_weakreflist","ma_keys","ma_used","ma_values","ma_version_tag","malloc","malloc_stats","mask","microseconds","ml_doc","ml_flags","ml_meth","ml_name","mm_class","module_search_paths","module_search_paths_set","mp_ass_subscript","mp_length","mp_subscript","msg","msg","myerrno","n_in_sequence","name","name","name","name","name","name","name","name","name","name_strobj","nb_absolute","nb_add","nb_and","nb_bool","nb_divmod","nb_float","nb_floor_divide","nb_index","nb_inplace_add","nb_inplace_and","nb_inplace_floor_divide","nb_inplace_lshift","nb_inplace_matrix_multiply","nb_inplace_multiply","nb_inplace_or","nb_inplace_power","nb_inplace_remainder","nb_inplace_rshift","nb_inplace_subtract","nb_inplace_true_divide","nb_inplace_xor","nb_int","nb_invert","nb_lshift","nb_matrix_multiply","nb_multiply","nb_negative","nb_or","nb_positive","nb_power","nb_remainder","nb_reserved","nb_rshift","nb_subtract","nb_true_divide","nb_xor","ndim","new","newfunc","ob_alloc","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_bytes","ob_exports","ob_fval","ob_item","ob_item","ob_refcnt","ob_shash","ob_size","ob_start","ob_sval","ob_type","obj","object","objobjargproc","objobjproc","offset","offset","optimization_level","orig_argv","parse_argv","parse_argv","parser_debug","path","pathconfig_warnings","pfunc","platlibdir","prefix","previous_item","print_file_and_line","printfunc","program_name","pycache_prefix","pythonpath_env","quiet","readonly","ready","real","realloc","reason","releasebufferproc","reprfunc","richcmpfunc","run_command","run_filename","run_module","seconds","seed_bits","sendfunc","set","set_ascii","set_compact","set_interned","set_kind","set_ready","setattrfunc","setattrofunc","setentry","setter","shape","show_ref_count","site_import","size","skip_source_first_line","slot","slot","slots","smalltable","sq_ass_item","sq_concat","sq_contains","sq_inplace_concat","sq_inplace_repeat","sq_item","sq_length","sq_repeat","ssizeargfunc","ssizeobjargproc","ssizessizeargfunc","ssizessizeobjargproc","start","start","state","stdio_encoding","stdio_errors","step","stop","strerror","strides","structmember","suboffsets","suppress_context","suppress_context","suppress_context","suppress_context","suppress_context","suppress_context","suppress_context","table","ternaryfunc","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","tp_alloc","tp_as_async","tp_as_buffer","tp_as_mapping","tp_as_number","tp_as_sequence","tp_base","tp_bases","tp_basicsize","tp_cache","tp_call","tp_clear","tp_dealloc","tp_del","tp_descr_get","tp_descr_set","tp_dict","tp_dictoffset","tp_doc","tp_finalize","tp_flags","tp_free","tp_getattr","tp_getattro","tp_getset","tp_hash","tp_init","tp_is_gc","tp_itemsize","tp_iter","tp_iternext","tp_members","tp_methods","tp_mro","tp_name","tp_new","tp_repr","tp_richcompare","tp_setattr","tp_setattro","tp_str","tp_subclasses","tp_traverse","tp_vectorcall","tp_vectorcall_offset","tp_version_tag","tp_weaklist","tp_weaklistoffset","traceback","traceback","traceback","traceback","traceback","traceback","traceback","tracemalloc","traverseproc","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","tzinfo","tzinfo","ucs2","ucs4","unaryfunc","use_environment","use_environment","use_hash_seed","used","user_site_directory","utf8","utf8_length","utf8_mode","value","value","vectorcall","vectorcall","vectorcall","vectorcallfunc","verbose","visitproc","warn_default_encoding","warnoptions","was_sq_ass_slice","was_sq_slice","weakreflist","wr_callback","wr_callback","wr_next","wr_next","wr_object","wr_object","wr_prev","wr_prev","wrapper","wrapperbase","wrapperfunc","wrapperfunc_kwds","write_bytecode","written","wstr","wstr_length","xoptions","zeroed","zeroed","PY_WRITE_RESTRICTED","PyMemberDef","PyMember_GetOne","PyMember_SetOne","READONLY","READ_RESTRICTED","RESTRICTED","T_BOOL","T_BYTE","T_CHAR","T_DOUBLE","T_FLOAT","T_INT","T_LONG","T_LONGLONG","T_NONE","T_OBJECT","T_OBJECT_EX","T_PYSSIZET","T_SHORT","T_STRING","T_STRING_INPLACE","T_UBYTE","T_UINT","T_ULONG","T_ULONGLONG","T_USHORT","borrow","borrow_mut","clone","clone_into","default","doc","eq","equivalent","flags","from","into","name","offset","to_owned","try_from","try_into","type_code","type_id","Ellipsis","None","NotImplemented","Python","Ungil","allow_threads","assume_gil_acquired","borrow","borrow_mut","cast_as","check_signals","checked_cast_as","clone","clone_into","eval","from","from_borrowed_ptr","from_borrowed_ptr_or_err","from_borrowed_ptr_or_opt","from_owned_ptr","from_owned_ptr_or_err","from_owned_ptr_or_opt","get_type","import","into","new_pool","run","to_owned","try_from","try_into","type_id","version","version_info","with_gil","with_gil_unchecked","with_pool","VERSION","dumps","loads","PanicException","as_ptr","as_ref","borrow","borrow_mut","deref","extract","fmt","fmt","from","from_borrowed_ptr_or_opt","from_owned_ptr_or_opt","into","into_py","new_err","provide","source","to_object","to_string","try_from","try_from","try_from_exact","try_from_unchecked","try_into","type_id","type_object_raw","FromPyObject","FromPyObject","IntoPy","IntoPyPointer","Py","PyAny","PyCell","PyClassInitializer","PyErr","PyModule","PyObject","PyRef","PyRefMut","PyResult","PyTryFrom","PyTryInto","Python","ToPyObject","arguments","arguments","as_bytes","as_ptr","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","call","call0","call1","call_method","call_method0","call_method1","cast_as","cast_as","cause","clone","clone_into","clone_ref","clone_ref","downcast","downcast","downcast_unchecked","downcast_unchecked","drop","extract","extract","fetch","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_borrowed_ptr","from_borrowed_ptr_or_err","from_borrowed_ptr_or_opt","from_owned_ptr","from_owned_ptr_or_err","from_owned_ptr_or_opt","from_type","from_value","get","get_refcnt","get_type","getattr","into","into","into_ptr","into_py","into_py","into_py","into_ref","into_ref","into_ref","into_ref","into_value","is","is_ellipsis","is_instance","is_instance_of","is_none","is_true","matches","new","new","new_type","occurred","print","print_and_set_sys_last_vars","provide","provide","pyclass","pyfunction","pymethods","pymodule","restore","set_cause","setattr","take","to_object","to_object","to_owned","to_string","to_string","traceback","try_borrow","try_borrow_mut","try_from","try_from","try_into","try_into","type_id","type_id","value","warn","warn_explicit","wrap_pyfunction","write_unraisable","PyBorrowError","PyBorrowMutError","PyCell","PyRef","PyRefMut","as_mut","as_ptr","as_ptr","as_ptr","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","deref","deref","deref","deref_mut","drop","drop","extract","extract","extract","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_borrowed_ptr_or_opt","from_owned_ptr_or_opt","get","into","into","into","into","into","into_py","into_py","into_super","into_super","new","py","py","replace","replace_with","swap","to_object","to_string","to_string","try_borrow","try_borrow_mut","try_borrow_unguarded","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_exact","try_from_unchecked","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","CompareOp","Eq","Frozen","Ge","Gt","IterANextOutput","IterNextOutput","Le","Lt","Ne","PyClass","PyIterANextOutput","PyIterNextOutput","PyTraverseError","PyVisit","Return","Return","Yield","Yield","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","call","clone","clone","clone_into","clone_into","fmt","from","from","from","from","from","from_raw","into","into","into","into","into","matches","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","PyClassInitializer","PyNativeTypeInitializer","PyObjectInit","__private__","__private__","__private__","add_subclass","borrow","borrow","borrow_mut","borrow_mut","from","from","from","from","from","into","into","into_new_object","into_new_object","into_new_object","new","try_from","try_from","try_into","try_into","type_id","type_id","GILOnceCell","GILProtected","borrow","borrow","borrow_mut","borrow_mut","from","from","get","get","get_mut","get_or_init","get_or_try_init","into","into","new","new","set","try_from","try_from","try_into","try_into","type_id","type_id","AsRefTarget","MODULE","NAME","PyLayout","PySizedLayout","PyTypeInfo","is_exact_type_of","is_type_of","type_object","type_object_raw","IntoPyDict","PyAny","PyBool","PyByteArray","PyBytes","PyCFunction","PyCapsule","PyCode","PyComplex","PyDate","PyDateAccess","PyDateTime","PyDelta","PyDeltaAccess","PyDict","PyDictItems","PyDictKeys","PyDictValues","PyFloat","PyFrame","PyFrozenSet","PyFrozenSetBuilder","PyFunction","PyInt","PyIterator","PyList","PyLong","PyMapping","PyModule","PySequence","PySet","PySlice","PySliceIndices","PyString","PyStringData","PySuper","PyTime","PyTimeAccess","PyTraceback","PyTuple","PyType","PyTzInfo","PyTzInfoAccess","PyUnicode","Ucs1","Ucs2","Ucs4","abs","add","add","add","add","add_class","add_function","add_submodule","add_wrapped","append","as_bytes","as_bytes","as_bytes","as_bytes_mut","as_mapping","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ptr","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_ref","as_sequence","as_sequence","as_slice","as_type_ptr","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","call","call0","call1","call_method","call_method0","call_method1","cast_as","clear","clear","clone","clone_into","compare","concat","contains","contains","contains","contains","contains","contains","contains","contains","context","copy","count","data","data","del_item","del_item","del_item","del_item","del_item","del_slice","del_slice","delattr","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","deref","dict","dir","discard","div","downcast","downcast_unchecked","empty","empty","empty","empty","eq","eq","eq","equivalent","equivalent","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","extract","filename","finalize","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","format","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_borrowed_ptr_or_opt","from_code","from_doubles","from_object","from_object","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_owned_ptr_or_opt","from_ptr","from_sequence","from_timestamp","from_timestamp","from_type_ptr","ge","get_day","get_day","get_day","get_days","get_days","get_fold","get_fold","get_fold","get_hour","get_hour","get_hour","get_item","get_item","get_item","get_item","get_item","get_item","get_item_unchecked","get_item_unchecked","get_item_with_error","get_microsecond","get_microsecond","get_microsecond","get_microseconds","get_microseconds","get_minute","get_minute","get_minute","get_month","get_month","get_month","get_refcnt","get_second","get_second","get_second","get_seconds","get_seconds","get_slice","get_slice","get_slice","get_type","get_type_ptr","get_tzinfo","get_tzinfo","get_tzinfo","get_year","get_year","get_year","getattr","gt","hasattr","hash","imag","import","import","in_place_concat","in_place_repeat","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","index","indices","insert","intern","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py","into_py_dict","is","is_callable","is_ellipsis","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","is_exact_instance","is_exact_instance_of","is_instance","is_instance_of","is_none","is_subclass","is_subclass_of","is_true","is_true","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_type_of","is_valid","items","items","iter","iter","iter","iter","iter","iter","iter","keys","keys","le","len","len","len","len","len","len","len","len","len","list","lt","mul","name","name","name","ne","neg","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_closure","new_with","new_with","new_with_destructor","new_with_fold","new_with_fold","new_with_keywords","next","pointer","pop","pow","py","py_super","real","reference","register","register","repeat","repr","resize","reverse","rich_compare","set_context","set_item","set_item","set_item","set_item","set_item","set_slice","set_slice","setattr","slicelength","sort","start","step","stop","str","sub","timezone_utc","to_list","to_list","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_object","to_owned","to_str","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string","to_string_lossy","to_string_lossy","to_tuple","to_tuple","to_vec","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_exact","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_from_unchecked","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into_exact","tuple","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","type_object_raw","update","update_if_missing","value","value_width_bytes","values","values","PyDictIterator","PyFrozenSetIterator","PySetIterator","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","from","from","from","into","into","into","into_iter","into_iter","into_iter","into_py_dict","len","len","len","next","next","next","size_hint","size_hint","size_hint","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"pyo3"],[97,"pyo3::buffer"],[165,"pyo3::buffer::ElementType"],[168,"pyo3::class"],[174,"pyo3::class::basic"],[175,"pyo3::class::gc"],[177,"pyo3::class::iter"],[179,"pyo3::class::pyasync"],[181,"pyo3::conversion"],[207,"pyo3::exceptions"],[1901,"pyo3::exceptions::asyncio"],[2083,"pyo3::exceptions::socket"],[2161,"pyo3::ffi"],[5037,"pyo3::ffi::structmember"],[5082,"pyo3::marker"],[5118,"pyo3::marshal"],[5121,"pyo3::panic"],[5147,"pyo3::prelude"],[5479,"pyo3::pycell"],[5568,"pyo3::pyclass"],[5632,"pyo3::pyclass_init"],[5660,"pyo3::sync"],[5684,"pyo3::type_object"],[5694,"pyo3::types"],[6952,"pyo3::types::iter"]],"d":["","","","","A RAII pool which PyO3 uses to store owned Python …","","","A GIL-independent reference to an object allocated on the …","","","","","Error that indicates a failure to convert a PyAny to a …","Represents a Python exception.","Helper conversion trait that allows to use custom …","Types that are built into the Python interpreter.","A commonly-used alias for Py<PyAny>.","","","Represents the result of a Python call.","","","","","Represents the major, minor, and patch (if any) versions …","","Add the module to the initialization table in order to …","Arguments for exception","","","","","","","PyBuffer implementation","Old module which contained some implementation details of …","Defines conversions between Rust and Python types.","Defines a new exception type.","","","","Exception and warning types defined by Python.","Raw FFI declarations for Python’s C API.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Defines a Rust type for an exception defined in Python …","Interns text as a Python string and stores a reference to …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Python major version (e.g. 3).","Fundamental properties of objects tied to the Python …","Support for the Python marshal format.","Python minor version (e.g. 11).","Creates a new GILPool. This function should only ever be …","Create a new PyDowncastError representing a failure to …","Helper to convert Rust panics to Python exceptions.","","","Python patch version (e.g. 0).","PyO3’s prelude.","Prepares the use of Python in a free-threaded context.","","Returns a GIL marker constrained to the lifetime of this …","Returns a GIL marker constrained to the lifetime of this …","A convenient macro to execute a Python code snippet, with …","PyO3’s interior mutability primitive.","PyClass and related traits.","A proc macro used to expose Rust structs and fieldless …","Contains initialization utilities for #[pyclass].","A proc macro used to expose Rust functions to Python.","A proc macro used to expose methods to Python.","A proc macro used to implement Python modules.","Gets the Python token associated with this GILPool.","Python version suffix, if applicable (e.g. a0).","Synchronization mechanisms based on the Python GIL.","","","","","","","","","","","Python type object information","Various types defined by the Python interpreter such as int…","Cast &PyAny to &Self without no type checking.","Cast &PyAny to &Self without no type checking.","Executes the provided closure with an embedded Python …","Wraps a Rust function annotated with #[pyfunction].","Returns a function that takes a Python instance and …","A boolean type.","Trait implemented for possible element types of PyBuffer.","Represents the type of a Python buffer element.","A float type.","Allows access to the underlying buffer used by a python …","Like std::cell::Cell, but only provides read-only access …","A signed integer type.","An unknown type. This may occur when parsing has failed.","An unsigned integer type.","Gets the buffer memory as a slice.","Gets the buffer memory as a slice.","Gets the buffer memory as a slice.","Returns a pointer to the current value.","Gets the buffer memory as a slice.","","","","","","","Gets the pointer to the start of the buffer memory.","","","Copies the specified slice into the buffer. If the buffer …","Copies the specified slice into the buffer. If the buffer …","Copies the buffer elements to the specified slice. If the …","Copies the buffer elements to the specified slice. If the …","Gets the number of dimensions.","","","","","","","A NUL terminated string in struct module style syntax …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Determines the ElementType from a Python struct module …","Gets the underlying buffer from the specified python …","Returns a copy of the current value.","Gets a pointer to the specified item.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Gets whether the buffer is contiguous in C-style order …","Gets whether the element specified in the format string is …","Gets whether the buffer is contiguous in Fortran-style …","Gets the total number of items.","Gets the size of a single element, in bytes. Important …","item_size() * item_count(). For contiguous arrays, this is …","Gets whether the underlying buffer is read-only.","Releases the buffer object, freeing the reference to the …","Returns an array of length dimensions. shape()[i] is the …","Returns an array that holds, for each dimension, the …","An array of length ndim. If suboffsets[n] >= 0, the values …","Copies the buffer elements to a newly allocated vector. If …","","Copies the buffer elements to a newly allocated vector. If …","","","","","","","","","","The width of the signed integer in bytes.","The width of the unsigned integer in bytes.","The width of the float in bytes.","","","Old module which contained some implementation details of …","Old module which contained some implementation details of …","Old module which contained some implementation details of …","Old module which contained some implementation details of …","","","","","","","","Returns a borrowed pointer to a Python object.","Extract a type from a Python object.","Raw level conversion between *mut ffi::PyObject and PyO3 …","Defines a conversion from a Rust type to a Python object.","Returns an owned pointer to a Python object.","Trait implemented by Python object types that allow a …","Trait implemented by Python object types that allow a …","Conversion trait that allows various objects to be …","Returns the underlying FFI pointer as a borrowed pointer.","Extracts Self from the source PyObject.","Convert from an arbitrary borrowed PyObject.","Convert from an arbitrary borrowed PyObject.","Convert from an arbitrary borrowed PyObject.","Convert from an arbitrary borrowed PyObject.","Convert from an arbitrary PyObject or panic.","Convert from an arbitrary PyObject.","Convert from an arbitrary PyObject.","Convert from an arbitrary PyObject or panic.","Returns the underlying FFI pointer as an owned pointer.","Performs the conversion.","Converts self into a Python object.","Cast from a concrete Python object type to PyObject.","Cast from a concrete Python object type to PyObject. With …","Cast a PyAny to a specific type of PyObject. The caller …","Cast from PyObject to a concrete Python object type.","Cast from PyObject to a concrete Python object type. With …","Represents Python’s ArithmeticError exception.","Represents Python’s AssertionError exception.","Represents Python’s AttributeError exception.","Represents Python’s BaseException exception.","Represents Python’s BlockingIOError exception.","Represents Python’s BrokenPipeError exception.","Represents Python’s BufferError exception.","Represents Python’s BytesWarning exception.","Represents Python’s ChildProcessError exception.","Represents Python’s ConnectionAbortedError exception.","Represents Python’s ConnectionError exception.","Represents Python’s ConnectionRefusedError exception.","Represents Python’s ConnectionResetError exception.","Represents Python’s DeprecationWarning exception.","Represents Python’s EOFError exception.","Represents Python’s EncodingWarning exception.","Represents Python’s EnvironmentError exception.","Represents Python’s Exception exception.","Represents Python’s FileExistsError exception.","Represents Python’s FileNotFoundError exception.","Represents Python’s FloatingPointError exception.","Represents Python’s FutureWarning exception.","Represents Python’s GeneratorExit exception.","Represents Python’s IOError exception.","Represents Python’s ImportError exception.","Represents Python’s ImportWarning exception.","Represents Python’s IndexError exception.","Represents Python’s InterruptedError exception.","Represents Python’s IsADirectoryError exception.","Represents Python’s KeyError exception.","Represents Python’s KeyboardInterrupt exception.","Represents Python’s LookupError exception.","Represents Python’s MemoryError exception.","Represents Python’s ModuleNotFoundError exception.","Represents Python’s NameError exception.","Represents Python’s NotADirectoryError exception.","Represents Python’s NotImplementedError exception.","Represents Python’s OSError exception.","Represents Python’s OverflowError exception.","Represents Python’s PendingDeprecationWarning exception.","Represents Python’s PermissionError exception.","Represents Python’s ProcessLookupError exception.","Represents Python’s RecursionError exception.","Represents Python’s ReferenceError exception.","Represents Python’s ResourceWarning exception.","Represents Python’s RuntimeError exception.","Represents Python’s RuntimeWarning exception.","Represents Python’s StopAsyncIteration exception.","Represents Python’s StopIteration exception.","Represents Python’s SyntaxError exception.","Represents Python’s SyntaxWarning exception.","Represents Python’s SystemError exception.","Represents Python’s SystemExit exception.","Represents Python’s TimeoutError exception.","Represents Python’s TypeError exception.","Represents Python’s UnboundLocalError exception.","Represents Python’s UnicodeDecodeError exception.","Represents Python’s UnicodeEncodeError exception.","Represents Python’s UnicodeError exception.","Represents Python’s UnicodeTranslateError exception.","Represents Python’s UnicodeWarning exception.","Represents Python’s UserWarning exception.","Represents Python’s ValueError exception.","Represents Python’s Warning exception.","Represents Python’s ZeroDivisionError exception.","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Exceptions defined in Python’s asyncio module.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a Python UnicodeDecodeError.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a Python UnicodeDecodeError from a Rust UTF-8 …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Exceptions defined in Python’s socket module.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A Rust type representing an exception defined in Python …","A Rust type representing an exception defined in Python …","A Rust type representing an exception defined in Python …","A Rust type representing an exception defined in Python …","A Rust type representing an exception defined in Python …","A Rust type representing an exception defined in Python …","A Rust type representing an exception defined in Python …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","A Rust type representing an exception defined in Python …","A Rust type representing an exception defined in Python …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Creates a new PyErr of this type.","Creates a new PyErr of this type.","Creates a new PyErr of this type.","","","","","","","A Rust type representing an exception defined in Python …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Maximum number of dimensions","","","","","","","","","","","","","built-in ‘object’","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This variant corresponds with METH_VARARGS or METH_NOARGS …","","","This variant corresponds with METH_VARARGS | METH_KEYWORDS.","","","","","","","","","","","","","","","This variant corresponds with METH_METHOD | METH_FASTCALL …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a pointer to a PyDateTime_CAPI instance","","Check if op is a PyDateTimeAPI.DateTimeType or subtype.","Check if op’s type is exactly PyDateTimeAPI.DateTimeType.","Retrieve the fold component of a PyDateTime_DateTime. …","Retrieve the hour component of a PyDateTime_DateTime. …","Retrieve the microsecond component of a PyDateTime_DateTime…","Retrieve the minute component of a PyDateTime_DateTime. …","Retrieve the second component of a PyDateTime_DateTime. …","Retrieve the tzinfo component of a PyDateTime_DateTime. …","Retrieve the days component of a PyDateTime_Delta.","Retrieve the seconds component of a PyDateTime_Delta.","Retrieve the seconds component of a PyDateTime_Delta.","Structure representing a datetime.date","Structure representing a datetime.datetime.","Structure representing a datetime.timedelta.","","Retrieve the day component of a PyDateTime_Date or …","Retrieve the month component of a PyDateTime_Date or …","Retrieve the year component of a PyDateTime_Date or …","Populates the PyDateTimeAPI object","Retrieve the fold component of a PyDateTime_Time. Returns …","Retrieve the hour component of a PyDateTime_Time. Returns …","Retrieve the microsecond component of a PyDateTime_DateTime…","Retrieve the minute component of a PyDateTime_Time. …","Retrieve the second component of a PyDateTime_DateTime. …","Retrieve the tzinfo component of a PyDateTime_Time. …","Structure representing a datetime.time.","","Type Check macros","Check if op’s type is exactly PyDateTimeAPI.DateType.","","Check if op is a PyDateTimeAPI.DetaType or subtype.","Check if op’s type is exactly PyDateTimeAPI.DeltaType.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Macro, trading safety for speed","","","","","","","Macro, only to be used to fill in brand new lists","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Function types used to implement Python callables.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Test if an object has a GC head","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","built-in ‘super’","","","","","","","","","","","","","","","","","","Check if op is a PyDateTimeAPI.TZInfoType or subtype.","Check if op’s type is exactly PyDateTimeAPI.TZInfoType.","","","","","","","","","","","","","","Check if op is a PyDateTimeAPI.TimeType or subtype.","Check if op’s type is exactly PyDateTimeAPI.TimeType.","","","","","","","","","","","","","","","","","","","Macro, trading safety for speed","","","","","Macro, only to be used to fill in brand new tuples","","","","","","","","","","","","","","","","","","","Test if a type has a GC head","","","","Test if a type supports weak references","","","built-in ‘type’","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Set if the type allows subclassing","","","","","","","Objects support garbage collection (see objimp.h)","Set if the type implements the vectorcall protocol (PEP …","This flag does nothing in Python 3.10+","Set if the type object is dynamically allocated","","","","","","","Set if the type is ‘ready’ – fully initialized","Set while the type is being ‘readied’, to prevent …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This variant corresponds with METH_FASTCALL.","","This variant corresponds with METH_FASTCALL | METH_KEYWORDS…","","","","Structure representing a datetime.datetime without a tzinfo…","Structure representing a datetime.time without a tzinfo …","","","","","","","","","","","","","","","","","","","","Get the frame evaluation function.","Set the frame evaluation function.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the ascii field of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the compact field of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the interned field of the PyASCIIObject state bitfield.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Get the kind field of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Owned reference","","","","","","","","","","","","","","","","","","","","","","","","Get the ready field of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","Set the ascii flag of the PyASCIIObject state bitfield.","Set the compact flag of the PyASCIIObject state bitfield.","Set the interned field of the PyASCIIObject state bitfield.","Set the kind field of the PyASCIIObject state bitfield.","Set the ready flag of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","","","","","","","","","","","","","","","A bit field with various properties.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","Gets the Python builtin value Ellipsis, or ....","Gets the Python builtin value None.","Gets the Python builtin value NotImplemented.","A marker token that represents holding the GIL.","Types that are safe to access while the GIL is not held.","Temporarily releases the GIL, thus allowing other Python …","Unsafely creates a Python token with an unbounded lifetime.","","","Registers the object in the release pool, and does an …","Lets the Python interpreter check and handle any pending …","Registers the object in the release pool, and tries to …","","","Evaluates a Python expression in the given context and …","Returns the argument unchanged.","Does an unchecked downcast to the specific type.","Does an unchecked downcast to the specific type.","Does an unchecked downcast to the specific type.","Registers the object pointer in the release pool, and does …","Registers the owned object pointer in the release pool.","Registers the owned object pointer in release pool.","Gets the Python type object for type T.","Imports the Python module with the specified name.","Calls U::from(self).","Create a new pool for managing PyO3’s owned references.","Executes one or more Python statements in the given …","","","","","Gets the running Python interpreter version as a string.","Gets the running Python interpreter version as a struct …","Acquires the global interpreter lock, allowing access to …","Like Python::with_gil except Python interpreter state …","Creates a scope using a new pool for managing PyO3’s …","The current version of the marshal binary format.","Serialize an object to bytes using the Python built-in …","Deserialize an object from bytes using the Python built-in …","The exception raised when Rust code called from Python …","Gets the underlying FFI pointer, returns a borrowed …","","","","","","","","Returns the argument unchanged.","","","Calls U::from(self).","","Creates a new PyErr of this type.","","","","","","","","","","","","","","","","A GIL-independent reference to an object allocated on the …","","","","Represents a Python exception.","","A commonly-used alias for Py<PyAny>.","","","Represents the result of a Python call.","","","","","","","Gets the Python bytes as a byte slice. Because Python …","Gets the underlying FFI pointer, returns a borrowed …","Borrows a GIL-bound reference to the PyIterator. By …","Borrows a GIL-bound reference to the PyMapping. By binding …","Borrows a GIL-bound reference to the contained T.","Borrows a GIL-bound reference to the PySequence. By …","","Immutably borrows the value T.","","","Mutably borrows the value T.","","Calls the object.","Calls the object without arguments.","Calls the object with only positional arguments.","Calls a method on the object.","Calls a method on the object with no arguments.","Calls a method on the object with only positional …","Casts the PyObject to a concrete Python object type.","Casts the PyObject to a concrete Python object type.","Return the cause (either an exception instance, or None, …","","","Clone the PyErr. This requires the GIL, which is why PyErr …","Makes a clone of self.","Downcast this PyObject to a concrete Python type or …","Downcast this PyObject to a concrete Python type or …","Casts the PyObject to a concrete Python object type …","Casts the PyObject to a concrete Python object type …","","Extracts Self from the source PyObject.","Extracts some type from the Python object.","Equivalent to PyErr::take, but when no error is set:","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a Py<T> instance by creating a new reference from …","Create a Py<T> instance by creating a new reference from …","Create a Py<T> instance by creating a new reference from …","Create a Py<T> instance by taking ownership of the given …","Create a Py<T> instance by taking ownership of the given …","Create a Py<T> instance by taking ownership of the given …","Constructs a new PyErr from the given Python type and …","Creates a new PyErr.","Provide an immutable borrow of the value T without …","Gets the reference count of the ffi::PyObject pointer.","Returns the type of this exception.","Retrieves an attribute value.","Calls U::from(self).","Calls U::from(self).","Gets the underlying FFI pointer, returns a owned pointer.","","","Converts a Py instance to PyObject. Consumes self without …","Similar to as_ref, and also consumes this Py and registers …","Similar to as_ref, and also consumes this Py and registers …","Similar to as_ref, and also consumes this Py and registers …","Borrows a GIL-bound reference to the contained T …","Consumes self to take ownership of the exception value …","Returns whether self and other point to the same object. …","Returns whether the object is Ellipsis, e.g. ....","Returns true if the current exception is instance of T.","Returns true if the current exception is instance of T.","Returns whether the object is considered to be None.","Returns whether the object is considered to be true.","Returns true if the current exception matches the …","Creates a new PyErr of type T.","Creates a new instance Py<T> of a #[pyclass] on the Python …","Creates a new exception type with the given name and …","Gets whether an error is present in the Python interpreter…","Prints a standard traceback to sys.stderr.","Prints a standard traceback to sys.stderr, and sets …","","","","A proc macro used to expose Rust functions to Python.","A proc macro used to expose methods to Python.","A proc macro used to implement Python modules.","Writes the error back to the Python interpreter’s global …","Set the cause associated with the exception, pass None to …","Sets an attribute value.","Takes the current error from the Python interpreter’s …","","Converts Py instance -> PyObject.","","","","Returns the traceback of this exception object.","Attempts to immutably borrow the value T, returning an …","Attempts to mutably borrow the value T, returning an error …","","","","","","","Returns the value of this exception.","Issues a warning message.","Issues a warning message, with more control over the …","Wraps a Rust function annotated with #[pyfunction].","Reports the error as unraisable.","An error type returned by PyCell::try_borrow.","An error type returned by PyCell::try_borrow_mut.","A container type for (mutably) accessing PyClass values","A wrapper type for an immutably borrowed value from a …","A wrapper type for a mutably borrowed value from aPyCell<T>…","","","","","","","","Immutably borrows the value T. This borrow lasts as long …","","","","","","Mutably borrows the value T. This borrow lasts as long as …","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Provide an immutable borrow of the value T without …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Gets a PyRef<T::BaseType>.","Gets a PyRef<T::BaseType>.","Makes a new PyCell on the Python heap and return the …","Returns a Python token that is bound to the lifetime of …","Returns a Python token that is bound to the lifetime of …","Replaces the wrapped value with a new one, returning the …","Replaces the wrapped value with a new one computed from f, …","Swaps the wrapped value of self with the wrapped value of …","","","","Immutably borrows the value T, returning an error if the …","Mutably borrows the value T, returning an error if the …","Immutably borrows the value T, returning an error if the …","","","","","","","","","","","","","","","","","","","","","Operators for the __richcmp__ method","The equality operator.","Whether the pyclass is frozen.","The greater than or equal to operator.","The greater than operator.","Output of __anext__.","Output of __next__ which can either yield the next value …","The less than or equal to operator.","The less than operator.","The not equal to operator.","Types that can be used as Python classes.","An IterANextOutput of Python objects.","Alias of IterNextOutput with PyObject yield & return …","Error returned by a __traverse__ visitor implementation.","Object visitor for GC.","The StopIteration object.","A StopAsyncIteration object.","The value yielded by the iterator.","An expression which the generator yielded.","","","","","","","","","","","Visit obj.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Conversion from the C enum.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns if a Rust std::cmp::Ordering matches this ordering …","","","","","","","","","","","","","","","","","","Initializer for our #[pyclass] system.","Initializer for Python native types, like PyDict.","Initializer for Python types.","This trait is private to implement; this method exists to …","","","Constructs a new initializer from an initializer for the …","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Safety","","","Constructs a new initializer from value T and base class’…","","","","","","","A write-once cell similar to once_cell::OnceCell.","Value with concurrent access protected by the GIL.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Gain access to the inner value by giving proof of having …","Get a reference to the contained value, or None if the …","Get the contents of the cell mutably. This is only …","Get a reference to the contained value, initializing it if …","Like get_or_init, but accepts a fallible initialization …","Calls U::from(self).","Calls U::from(self).","Place the given value under the protection of the GIL.","Create a GILOnceCell which does not yet contain a value.","Set the value in the cell.","","","","","","","Utility type to make Py::as_ref work.","Module name, if any.","Class name.","T: PyLayout<U> represents that T is a concrete …","T: PySizedLayout<U> represents that T is not a instance of …","Python type information. All Python native types (e.g., …","Checks if object is an instance of this type.","Checks if object is an instance of this type or a subclass …","Returns the safe abstraction over the type object.","Returns the PyTypeObject instance for this type.","Conversion trait that allows a sequence of tuples to be …","Represents any Python object.","Represents a Python bool.","Represents a Python bytearray.","Represents a Python bytes object.","Represents a builtin Python function object.","Represents a Python Capsule as described in Capsules:","Represents a Python code object.","Represents a Python complex object.","Bindings around datetime.date","Trait for accessing the date components of a struct …","Bindings for datetime.datetime","Bindings for datetime.timedelta","Trait for accessing the components of a struct containing …","Represents a Python dict.","Represents a Python dict_items.","Represents a Python dict_keys.","Represents a Python dict_values.","Represents a Python float object.","Represents a Python frame.","Represents a Python frozenset","Allows building a Python frozenset one item at a time","Represents a Python function object.","Represents a Python int object.","A Python iterator object.","Represents a Python list.","Represents a Python int object.","Represents a reference to a Python object supporting the …","Represents a Python module object.","Represents a reference to a Python object supporting the …","Represents a Python set","Represents a Python slice.","Return value from PySlice::indices.","Represents a Python string (a Unicode string object).","Represents raw data backing a Python str.","Represents a Python super object.","Bindings for datetime.time","Trait for accessing the time components of a struct …","Represents a Python traceback.","Represents a Python tuple object.","Represents a reference to a Python type object.","Bindings for datetime.tzinfo.","Trait for accessing the components of a struct containing …","Represents a Python string (a Unicode string object).","UCS1 representation.","UCS2 representation.","UCS4 representation.","Returns |self|.","","Adds an element to the set.","Adds an attribute to the module.","Adds an element to the set.","Adds a new class to the module.","Add a function to a module.","Adds a submodule to a module.","Adds a function or a (sub)module to a module, using the …","Appends an item to the list.","Extracts a slice of the ByteArray’s entire buffer.","Gets the Python string as a byte slice.","Obtain the raw bytes backing this instance as a u8 slice.","Extracts a mutable slice of the ByteArray’s entire …","Returns self cast as a PyMapping.","","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","Gets the underlying FFI pointer, returns a borrowed …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns self cast as a PySequence.","Returns self cast as a PySequence.","Returns self as a slice of objects.","Retrieves the underlying FFI pointer associated with this …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls the object.","Calls the object without arguments.","Calls the object with only positional arguments.","Calls a method on the object.","Calls a method on the object without arguments.","Calls a method on the object with only positional …","Converts this PyAny to a concrete Python type.","Empties an existing dictionary of all key-value pairs.","Removes all elements from the set.","","","Returns an Ordering between self and other.","Returns the concatenation of self and other.","Determines if self contains value.","Determines if the dictionary contains the specified key.","Determine if the set contains the specified key. This is …","Determines if self contains value.","Determines if the mapping contains the specified key.","Determines if self contains value.","Determines if the set contains the specified key.","Determines if self contains value.","Gets the current context stored in the capsule. If there …","Returns a new dictionary that contains the same key-value …","Returns the number of occurrences of value in self, that …","Gets the start of the buffer containing the contents of …","Obtains the raw data backing the Python string.","Deletes an item from the collection.","Deletes an item.","Deletes the indexth element of self.","Deletes the item with key key.","Deletes the ith element of self.","Deletes the slice from low to high from self.","Deletes the slice from i1 to i2 from self.","Deletes an attribute.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the module’s __dict__ attribute, which contains …","Returns the list of attributes of this object.","Removes the element from the set if it is present.","","Downcast this PyAny to a concrete Python type or pyclass.","Converts this PyAny to a concrete Python type without …","Creates a new empty frozen set","Constructs a new empty list.","Creates a new empty set.","Constructs an empty tuple (on the Python side, a singleton …","Tests whether this object is equal to another.","","","","","","Extracts some type from the Python object.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the filename (the __file__ attribute) of the …","Finish building the set and take ownership of its current …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Formats the traceback as a string.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Creates a new Python bytearray object from another Python …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates and loads a module named module_name, containing …","Creates a new PyComplex from the given real and imaginary …","Constructs a PyIterator from a Python iterable object.","Attempts to create a Python string from a Python …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a new Python byte string object from a raw pointer …","Creates a new dictionary from the sequence given.","Construct a datetime.date from a POSIX timestamp","Construct a datetime object from a POSIX timestamp","Retrieves the PyType instance for the given FFI pointer.","Tests whether this object is greater than or equal to …","Returns the day, as an int from 1 through 31.","","","Returns the number of days, as an int from -999999999 to …","","Returns whether this date is the later of two moments with …","","","Returns the hour, as an int from 0 through 23.","","","Gets an item from the collection.","Gets an item from the dictionary.","Gets the list item at the specified index.","Gets the item in self with key key.","Returns the indexth element of the Sequence.","Gets the tuple item at the specified index.","Gets the list item at the specified index. Undefined …","Gets the tuple item at the specified index. Undefined …","Gets an item from the dictionary,","Returns the microsecond, as an int from 0 through 999999.","","","Returns the number of microseconds, as an int from 0 …","","Returns the minute, as an int from 0 through 59.","","","Returns the month, as an int from 1 through 12.","","","Returns the reference count for the Python object.","Returns the second, as an int from 0 through 59.","","","Returns the number of seconds, as an int from 0 through …","","Takes the slice self[low:high] and returns it as a new …","Returns the slice of sequence object between begin and end.","Takes the slice self[low:high] and returns it as a new …","Returns the Python type object for this object’s type.","Returns the Python type pointer for this object.","Returns the tzinfo (which may be None).","","","Returns the year, as a positive int.","","","Retrieves an attribute value.","Tests whether this object is greater than another.","Determines whether this object has the given attribute.","Retrieves the hash code of self.","Returns the imaginary part of the complex number.","Imports an existing capsule.","Imports the Python module with the specified name.","Concatenates self and other, in place if possible.","Repeats the sequence object count times and updates self, …","","","","","Returns the first index i for which self[i] == value.","","","","","Returns the index (the __all__ attribute) of the module, …","","Returns the first index i for which self[i] == value.","","","","","","","","","Returns the first index i for which self[i] == value.","","","","","","Retrieves the start, stop, and step indices from the slice …","Inserts an item at the specified index.","Intern the given string","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Returns an iterator of values in this set.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Converts self into a PyDict object pointer. Whether …","Returns whether self and other point to the same object. …","Determines whether this object appears callable.","Returns whether the object is Ellipsis, e.g. ....","Returns true if the sequence or mapping has a length of 0.","Checks if the bytearray is empty.","Checks if the dict is empty, i.e. len(self) == 0.","Check if set is empty.","Checks if the list is empty.","Returns whether the mapping is empty.","Returns whether the sequence is empty.","Checks if set is empty.","Checks if the tuple is empty.","Checks whether this object is an instance of exactly type …","Checks whether this object is an instance of exactly type T…","Checks whether this object is an instance of type ty.","Checks whether this object is an instance of type T.","Returns whether the object is considered to be None.","Checks whether self is a subclass of other.","Checks whether self is a subclass of type T.","Returns whether the object is considered to be true.","Gets whether this boolean is true.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Checks if this is a valid capsule.","Returns a list of dict items.","Returns a sequence of tuples of all (key, value) pairs in …","Iteration over Python collections.","Takes an object and returns an iterator for it.","Returns an iterator of (key, value) pairs in this …","Returns an iterator of values in this frozen set.","Returns an iterator over this list’s items.","Returns an iterator of values in this set.","Returns an iterator over the tuple items.","Returns a list of dict keys.","Returns a sequence containing all keys in the mapping.","Tests whether this object is less than or equal to another.","Returns the length of the sequence or mapping.","Gets the length of the bytearray.","Return the number of items in the dictionary.","Return the number of items in the set. This is equivalent …","Returns the length of the list.","Returns the number of objects in the mapping.","Returns the number of objects in sequence.","Returns the number of items in the set.","Gets the length of the tuple.","Returns a fresh list based on the Sequence.","Tests whether this object is less than another.","","Retrieves the name of this capsule, if set.","Returns the name (the __name__ attribute) of the module.","Gets the name of the PyType.","Tests whether this object is not equal to another.","","Depending on val, returns true or false.","Creates a new Python bytearray object.","Creates a new Python bytestring object. The bytestring is …","Constructs a new capsule whose contents are value, …","Creates a new datetime.date.","Creates a new datetime.datetime object.","Creates a new datetime.time object.","Creates a new timedelta.","Creates a new empty dictionary.","Creates a new Python float object.","Create a new FrozenSetBuilder. Since this allocates a …","Creates a new frozenset.","Create a new built-in function which takes no arguments.","Constructs a new list with the given elements.","Creates a new module object with the __name__ attribute …","Constructs a new super object. More read about super …","Creates a new set with elements from the given slice.","Constructs a new slice with the given elements.","Creates a new Python string object.","Constructs a new tuple with the given elements.","Creates a new type object.","Creates a new PySliceIndices.","Create a new function from a closure.","Creates a new Python bytearray object with an init closure …","Creates a new Python bytes object with an init closure to …","Constructs a new capsule whose contents are value, …","Alternate constructor that takes a fold parameter. A true …","Alternate constructor that takes a fold argument. See …","Create a new built-in function with keywords (*args and/or …","Retrieves the next item from an iterator.","Gets the raw c_void pointer to the value in this capsule.","Removes and returns an arbitrary element from the set.","Returns self raised to the power of other.","Returns a GIL marker constrained to the lifetime of this …","Return a proxy object that delegates method calls to a …","Returns the real part of the complex number.","Obtains a reference to the value of this capsule.","Register a pyclass as a subclass of collections.abc.Mapping…","Register a pyclass as a subclass of …","Returns the result of repeating a sequence object count …","Computes the “repr” representation of self.","Resizes the bytearray object to the new length len.","Reverses the list in-place. Equivalent to the Python …","Tests whether two Python objects obey a given CompareOp.","Sets the context pointer in the capsule.","Sets a collection item value.","Sets an item value.","Sets the item at the specified index.","Sets the item in self with key key.","Assigns object item to the ith element of self.","Assigns the sequence seq to the slice of self from low to …","Assigns the sequence v to the slice of self from i1 to i2.","Sets an attribute value.","The length of the slice calculated from the original input …","Sorts the list in-place. Equivalent to the Python …","Start of the slice","Increment to use when iterating the slice from start to …","End of the slice","Computes the “str” representation of self.","","Equivalent to datetime.timezone.utc","Returns a fresh list based on the Sequence.","Return a new list containing the contents of this tuple; …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Gets the Python string as a byte slice.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Convert the raw data to a Rust string.","Converts the PyString into a Rust string.","Convert the raw data to a Rust string, possibly with data …","Return a new tuple containing the contents of the list; …","Returns a fresh tuple based on the Sequence.","Copies the contents of the bytearray to a Rust vector.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Downcasting to PyMapping requires the concrete class to be …","","","","","","","","","Downcasting to PySequence requires the concrete class to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a fresh tuple based on the Sequence.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Update this dictionary with the key/value pairs from …","Add key/value pairs from another dictionary to this one …","Gets the value of this float.","Size in bytes of each value/item in the underlying slice.","Returns a list of dict values.","Returns a sequence containing all values in the mapping.","PyO3 implementation of an iterator for a Python dict …","PyO3 implementation of an iterator for a Python frozenset …","PyO3 implementation of an iterator for a Python set object.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","Advances the iterator and returns the next value.","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,3,6,4,3,6,4,0,0,0,0,3,4,4,0,0,6,6,4,3,6,4,0,0,3,6,4,4,0,0,4,3,6,0,4,4,4,0,0,6,195,195,0,0,0,0,0,0,0,0,3,4,0,6,3,6,4,3,6,4,3,6,4,0,0,195,195,0,0,0,27,0,0,27,0,0,27,27,27,22,22,22,25,22,22,25,27,22,25,27,22,27,27,22,22,22,22,22,22,27,27,22,22,27,22,22,25,27,27,22,25,22,22,25,27,22,21,22,22,22,22,22,22,22,22,22,22,27,22,22,25,27,22,25,27,22,25,27,287,288,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,216,199,199,199,199,199,199,199,199,290,202,259,197,197,197,291,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,0,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,65,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,65,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,0,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51,51,52,52,53,53,54,54,55,55,56,56,57,57,58,58,59,59,60,60,61,61,62,62,63,63,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,0,0,0,0,0,0,0,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,109,110,110,111,111,112,112,113,113,114,114,115,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,109,110,110,111,111,112,112,113,113,114,114,115,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,109,110,111,112,113,114,115,116,117,118,116,117,118,116,117,118,116,117,118,116,117,118,116,117,118,116,116,117,117,118,118,116,117,118,116,117,118,116,117,118,0,0,116,117,118,116,117,118,116,117,118,116,117,118,116,117,118,0,116,117,118,116,117,118,116,116,117,117,118,118,116,117,118,116,117,118,116,117,118,116,117,118,116,117,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,132,132,132,132,132,132,132,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,144,144,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,132,132,132,132,132,0,0,124,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,293,150,129,0,129,0,129,129,130,147,177,150,0,181,181,181,181,294,187,188,189,190,191,192,193,129,140,140,140,140,124,140,158,137,137,137,129,129,129,154,182,182,0,295,296,297,298,299,300,301,302,303,304,305,306,158,292,294,293,307,159,127,160,161,162,163,164,165,166,132,133,157,125,124,167,168,146,33,148,169,154,170,147,139,135,142,138,184,185,171,152,172,308,126,151,173,309,186,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,187,188,189,190,191,192,193,144,145,183,295,296,297,298,299,300,301,302,303,304,305,306,158,292,294,293,307,159,127,160,161,162,163,164,165,166,132,133,157,125,124,167,168,146,33,148,169,154,170,147,139,135,142,138,184,185,171,152,172,308,126,151,173,309,186,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,187,188,189,190,191,192,193,144,145,183,122,129,129,145,187,188,189,190,191,192,193,151,151,129,159,127,160,161,162,163,164,165,166,132,133,125,124,167,168,146,33,148,169,154,170,147,139,138,171,152,172,126,151,173,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,144,145,183,159,127,160,161,162,163,164,165,166,132,133,125,124,167,168,146,33,148,169,154,170,147,139,138,171,152,172,126,151,173,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,144,145,183,133,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,175,191,150,150,158,129,150,187,188,189,190,191,192,193,147,145,160,303,300,301,302,303,302,301,300,299,299,299,303,293,162,163,164,165,166,161,133,125,168,169,154,147,139,180,181,182,140,0,0,0,150,129,187,188,189,190,191,192,193,298,133,171,152,129,190,190,188,188,133,125,124,168,170,138,176,133,125,124,168,170,138,176,130,183,183,183,129,129,130,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,129,173,173,152,188,192,192,129,129,185,185,298,154,161,162,163,164,165,166,132,133,124,33,148,170,138,184,185,186,176,108,187,188,189,190,191,192,193,163,166,122,147,145,0,295,296,297,298,299,300,301,302,303,304,305,306,158,292,294,293,307,159,127,160,161,162,163,164,165,166,132,133,157,125,124,167,168,146,33,148,169,154,170,147,139,135,142,138,184,185,171,152,172,308,126,151,173,309,186,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,187,188,189,190,191,192,193,144,145,183,305,130,304,304,304,304,304,304,304,304,304,304,304,304,304,298,133,0,0,0,0,0,174,174,174,174,174,174,158,307,307,139,184,185,139,129,161,162,163,164,165,166,0,162,163,164,165,166,129,140,140,140,140,140,140,127,129,141,0,0,129,129,129,122,158,295,296,297,298,299,300,301,302,303,304,305,306,158,292,294,293,307,159,127,160,161,162,163,164,165,166,132,133,157,125,124,167,168,146,33,148,169,154,170,147,139,135,142,138,184,185,171,152,172,308,126,151,173,309,186,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,187,188,189,190,191,192,193,144,145,183,124,150,129,131,154,122,0,184,158,294,122,0,158,131,188,146,146,167,146,146,167,167,146,296,296,146,296,146,146,146,296,186,186,186,186,145,129,185,161,125,125,125,125,305,129,129,180,180,180,188,189,192,152,298,133,154,139,171,152,141,175,189,298,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,122,122,0,159,295,296,297,299,304,306,158,307,307,159,160,161,162,163,164,165,166,167,148,185,172,126,186,136,174,177,108,187,188,189,190,191,192,193,159,159,295,306,177,33,172,148,159,172,33,122,190,0,0,298,188,129,129,150,129,129,189,129,169,129,129,183,188,0,129,129,129,129,122,158,127,145,190,0,0,0,129,129,129,161,139,0,133,158,158,158,158,158,0,0,0,0,122,129,129,175,129,168,169,154,185,179,179,179,179,179,179,179,179,0,0,0,0,297,190,158,129,129,297,297,192,122,0,122,187,188,189,190,191,192,193,185,0,188,159,127,160,161,162,163,164,165,166,132,133,125,124,167,168,146,33,148,169,154,170,147,139,138,171,152,172,126,151,173,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,144,145,183,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,187,188,189,190,191,192,193,129,0,295,296,297,298,299,300,301,302,303,304,305,306,158,292,294,293,307,159,127,160,161,162,163,164,165,166,132,133,157,125,124,167,168,146,33,148,169,154,170,147,139,135,142,138,184,185,171,152,172,308,126,151,173,309,186,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,187,188,189,190,191,192,193,144,145,183,295,296,297,298,299,300,301,302,303,304,305,306,158,292,294,293,307,159,127,160,161,162,163,164,165,166,132,133,157,125,124,167,168,146,33,148,169,154,170,147,139,135,142,138,184,185,171,152,172,308,126,151,173,309,186,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,187,188,189,190,191,192,193,144,145,183,295,296,297,298,299,300,301,302,303,304,305,306,158,292,294,293,307,159,127,160,161,162,163,164,165,166,132,133,157,125,124,167,168,146,33,148,169,154,170,147,139,135,142,138,184,185,171,152,172,308,126,151,173,309,186,137,136,174,141,175,176,130,131,150,129,177,122,178,179,180,181,182,108,140,187,188,189,190,191,192,193,144,145,183,163,166,294,294,0,150,129,129,185,129,292,292,150,168,193,296,300,304,0,129,0,129,129,179,179,185,307,307,307,307,307,307,307,307,298,0,0,0,129,192,158,292,129,125,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,134,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,99,99,99,99,99,99,99,105,99,99,105,99,99,99,99,99,99,99,99,99,2,105,99,99,105,99,99,2,99,2,99,99,99,105,105,105,99,99,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,2,2,99,99,99,99,99,99,105,105,99,99,105,99,105,99,99,105,105,99,99,99,99,99,105,99,99,105,105,99,99,105,105,99,105,105,105,105,105,99,0,0,0,0,105,105,99,105,105,99,99,105,99,105,99,99,105,99,105,99,105,99,105,105,105,0,105,0,0,0,0,0,214,249,213,214,249,213,214,249,249,213,214,225,222,249,249,213,214,225,222,249,213,214,214,213,214,249,213,214,249,213,214,225,225,222,222,249,213,214,225,222,249,249,249,249,213,214,225,222,213,214,213,214,249,213,214,249,249,249,249,225,222,249,249,249,249,249,213,213,214,214,225,222,249,249,249,213,214,225,222,249,213,214,225,222,0,263,212,263,263,0,0,263,263,263,0,0,0,0,0,310,311,310,311,262,310,311,261,263,262,310,311,261,263,261,261,263,261,263,263,262,310,311,261,263,263,262,310,311,261,263,263,261,263,262,310,311,261,263,262,310,311,261,263,262,310,311,261,263,0,0,0,312,265,260,260,265,260,265,260,265,260,260,260,260,265,260,312,265,260,260,265,260,265,260,265,260,0,0,266,267,266,267,266,267,266,267,267,267,267,266,267,266,267,267,266,267,266,267,266,267,196,196,196,0,0,0,196,196,196,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,271,271,254,254,269,203,252,203,203,203,203,247,244,205,271,244,198,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,247,215,215,200,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,269,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,272,271,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,269,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,272,271,11,11,11,11,11,11,11,198,252,271,271,11,211,11,198,256,247,210,211,252,215,238,198,211,244,201,11,198,247,210,211,247,211,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,203,11,252,254,11,11,256,247,252,215,11,272,271,272,271,11,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,203,269,11,11,237,237,244,244,205,205,238,238,248,248,254,254,241,241,258,258,245,245,257,257,240,240,198,198,236,236,239,239,242,242,251,251,253,253,256,256,234,234,246,246,209,209,247,247,210,210,203,203,235,235,255,255,211,211,252,252,250,250,201,201,243,243,215,215,200,200,272,271,243,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,237,244,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,269,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,272,271,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,203,254,209,201,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,205,198,241,258,200,11,313,241,258,314,240,315,258,245,315,258,245,11,198,247,210,211,215,247,215,198,315,258,245,314,240,315,258,245,313,241,258,11,315,258,245,314,240,247,211,215,11,11,316,258,245,313,241,258,11,11,11,11,254,238,203,211,211,205,247,247,247,247,247,247,247,247,203,211,211,211,211,211,211,211,211,215,215,215,215,215,215,215,215,250,247,201,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,269,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,272,271,198,256,247,252,215,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,317,11,11,11,11,244,198,256,247,210,211,252,215,11,11,11,11,11,200,200,11,237,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,247,203,235,252,250,201,243,215,200,238,198,210,0,11,198,256,247,252,215,198,210,11,11,244,198,256,247,210,211,252,215,211,11,254,238,203,200,11,254,237,244,205,238,241,258,245,240,198,251,269,256,234,247,203,255,252,250,201,215,200,272,234,244,205,238,258,245,234,209,238,252,254,11,11,254,238,210,211,211,11,244,247,11,238,11,198,247,210,211,247,211,11,272,247,272,272,272,11,254,0,211,215,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,272,271,201,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,271,201,271,247,211,244,11,11,237,237,244,244,205,205,238,238,248,248,254,254,241,241,258,258,245,245,257,257,240,240,198,198,236,236,239,239,242,242,251,251,253,253,269,256,256,234,234,246,246,209,209,247,247,210,210,203,203,235,235,255,255,211,211,252,252,250,250,201,201,243,243,215,215,200,200,272,271,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,11,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,269,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,272,271,11,211,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,269,256,234,246,209,247,210,203,235,255,211,252,250,201,243,215,200,272,271,11,237,244,205,238,248,254,241,258,245,257,240,198,236,239,242,251,253,256,234,246,247,203,235,255,252,250,201,243,215,200,198,198,251,271,198,210,0,0,0,280,281,282,280,281,282,280,281,282,280,281,282,280,281,282,280,280,281,282,280,281,282,280,281,282,280,281,282,280,281,282,280,281,282],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,[3],[4,5],[4,5],0,0,[[6,7],8],[[6,7],[[10,[9]]]],[[4,7],8],[[]],[[]],[[]],0,0,[[]],[[]],[[]],0,0,0,0,[[],3],[[11,[14,[[13,[12]]]]],6],0,[4,[[16,[15]]]],[4,[[16,[15]]]],0,0,[[]],[17],[[],1],[[],1],0,0,0,0,0,0,0,0,[3,1],0,0,[[],18],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],[[],19],0,0,[11],[11],[20],0,0,0,0,0,0,0,0,0,0,0,[[[22,[21]],1],[[16,[[24,[[23,[21]]]]]]]],[[[22,[21]],1],[[16,[[24,[[25,[21]]]]]]]],[[[22,[21]],1],[[16,[[24,[[23,[21]]]]]]]],[[[25,[21]]]],[[[22,[21]],1],[[16,[[24,[[25,[21]]]]]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[[22,[21]]],26],[27,27],[[]],[[[22,[21]],1,[24,[21]]],28],[[[22,[21]],1,[24,[21]]],28],[[[22,[21]],1,[24,[21]]],28],[[[22,[21]],1,[24,[21]]],28],[[[22,[21]]],29],[22],[[27,27],5],[[],5],[11,[[28,[[22,[21]]]]]],[[22,7],8],[[27,7],8],[[[22,[21]]],30],[[]],[[]],[[]],[30,27],[11,[[28,[[22,[21]]]]]],[[[25,[21]]],21],[[[22,[21]],[24,[29]]],26],[[]],[[]],[[]],[[[22,[21]]],5],[30,5],[[[22,[21]]],5],[[[22,[21]]],29],[[[22,[21]]],29],[[[22,[21]]],29],[[[22,[21]]],5],[[[22,[21]],1]],[[[22,[21]]],[[24,[29]]]],[[[22,[21]]],[[24,[31]]]],[[[22,[21]]],[[16,[[24,[31]]]]]],[[[22,[21]],1],[[28,[[32,[21]]]]]],[[]],[[[22,[21]],1],[[28,[[32,[21]]]]]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],[[],19],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],33],[11,28],[[1,33]],[[1,33],28],[[1,33],16],[[1,33]],[[1,33]],[[1,33],28],[[1,33],16],[[1,33]],[[],33],[1],[1,2],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]]],[[],[[10,[6]]]],[[],[[10,[6]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[34,33],[35,33],[36,33],[37,33],[38,33],[39,33],[40,33],[41,33],[42,33],[43,33],[44,33],[45,33],[46,33],[47,33],[48,33],[49,33],[50,33],[51,33],[52,33],[53,33],[54,33],[55,33],[56,33],[57,33],[58,33],[59,33],[60,33],[61,33],[62,33],[63,33],[64,33],[65,33],[66,33],[67,33],[68,33],[69,33],[70,33],[71,33],[72,33],[73,33],[74,33],[75,33],[76,33],[77,33],[78,33],[79,33],[80,33],[81,33],[82,33],[83,33],[84,33],[85,33],[86,33],[87,33],[88,33],[89,33],[90,33],[91,33],[92,33],[93,33],[94,33],[95,33],[96,33],[97,33],[98,33],[34,11],[35,11],[36,11],[37,11],[38,11],[39,11],[40,11],[41,11],[42,11],[43,11],[44,11],[45,11],[46,11],[47,11],[48,11],[49,11],[50,11],[51,11],[52,11],[53,11],[54,11],[55,11],[56,11],[57,11],[58,11],[59,11],[60,11],[61,11],[62,11],[63,11],[64,11],[65,11],[66,11],[67,11],[68,11],[69,11],[70,11],[71,11],[72,11],[73,11],[74,11],[75,11],[76,11],[77,11],[78,11],[79,11],[80,11],[81,11],[82,11],[83,11],[84,11],[85,11],[86,11],[87,11],[88,11],[89,11],[90,11],[91,11],[92,11],[93,11],[94,11],[95,11],[96,11],[97,11],[98,11],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[34,11],[35,11],[36,11],[37,11],[38,11],[39,11],[40,11],[41,11],[42,11],[43,11],[44,11],[45,11],[46,11],[47,11],[48,11],[49,11],[50,11],[51,11],[52,11],[53,11],[54,11],[55,11],[56,11],[57,11],[58,11],[59,11],[60,11],[61,11],[62,11],[63,11],[64,11],[65,11],[66,11],[67,11],[68,11],[69,11],[70,11],[71,11],[72,11],[73,11],[74,11],[75,11],[76,11],[77,11],[78,11],[79,11],[80,11],[81,11],[82,11],[83,11],[84,11],[85,11],[86,11],[87,11],[88,11],[89,11],[90,11],[91,11],[92,11],[93,11],[94,11],[95,11],[96,11],[97,11],[98,11],[11,[[28,[34]]]],[11,[[28,[35]]]],[11,[[28,[36]]]],[11,[[28,[37]]]],[11,[[28,[38]]]],[11,[[28,[39]]]],[11,[[28,[40]]]],[11,[[28,[41]]]],[11,[[28,[42]]]],[11,[[28,[43]]]],[11,[[28,[44]]]],[11,[[28,[45]]]],[11,[[28,[46]]]],[11,[[28,[47]]]],[11,[[28,[48]]]],[11,[[28,[49]]]],[11,[[28,[50]]]],[11,[[28,[51]]]],[11,[[28,[52]]]],[11,[[28,[53]]]],[11,[[28,[54]]]],[11,[[28,[55]]]],[11,[[28,[56]]]],[11,[[28,[57]]]],[11,[[28,[58]]]],[11,[[28,[59]]]],[11,[[28,[60]]]],[11,[[28,[61]]]],[11,[[28,[62]]]],[11,[[28,[63]]]],[11,[[28,[64]]]],[11,[[28,[65]]]],[11,[[28,[66]]]],[11,[[28,[67]]]],[11,[[28,[68]]]],[11,[[28,[69]]]],[11,[[28,[70]]]],[11,[[28,[71]]]],[11,[[28,[72]]]],[11,[[28,[73]]]],[11,[[28,[74]]]],[11,[[28,[75]]]],[11,[[28,[76]]]],[11,[[28,[77]]]],[11,[[28,[78]]]],[11,[[28,[79]]]],[11,[[28,[80]]]],[11,[[28,[81]]]],[11,[[28,[82]]]],[11,[[28,[83]]]],[11,[[28,[84]]]],[11,[[28,[85]]]],[11,[[28,[86]]]],[11,[[28,[87]]]],[11,[[28,[88]]]],[11,[[28,[89]]]],[11,[[28,[90]]]],[11,[[28,[91]]]],[11,[[28,[92]]]],[11,[[28,[93]]]],[11,[[28,[94]]]],[11,[[28,[95]]]],[11,[[28,[96]]]],[11,[[28,[97]]]],[11,[[28,[98]]]],[[34,7],[[10,[9]]]],[[34,7],[[10,[9]]]],[[35,7],[[10,[9]]]],[[35,7],[[10,[9]]]],[[36,7],[[10,[9]]]],[[36,7],[[10,[9]]]],[[37,7],[[10,[9]]]],[[37,7],[[10,[9]]]],[[38,7],[[10,[9]]]],[[38,7],[[10,[9]]]],[[39,7],[[10,[9]]]],[[39,7],[[10,[9]]]],[[40,7],[[10,[9]]]],[[40,7],[[10,[9]]]],[[41,7],[[10,[9]]]],[[41,7],[[10,[9]]]],[[42,7],[[10,[9]]]],[[42,7],[[10,[9]]]],[[43,7],[[10,[9]]]],[[43,7],[[10,[9]]]],[[44,7],[[10,[9]]]],[[44,7],[[10,[9]]]],[[45,7],[[10,[9]]]],[[45,7],[[10,[9]]]],[[46,7],[[10,[9]]]],[[46,7],[[10,[9]]]],[[47,7],[[10,[9]]]],[[47,7],[[10,[9]]]],[[48,7],[[10,[9]]]],[[48,7],[[10,[9]]]],[[49,7],[[10,[9]]]],[[49,7],[[10,[9]]]],[[50,7],[[10,[9]]]],[[50,7],[[10,[9]]]],[[51,7],[[10,[9]]]],[[51,7],[[10,[9]]]],[[52,7],[[10,[9]]]],[[52,7],[[10,[9]]]],[[53,7],[[10,[9]]]],[[53,7],[[10,[9]]]],[[54,7],[[10,[9]]]],[[54,7],[[10,[9]]]],[[55,7],[[10,[9]]]],[[55,7],[[10,[9]]]],[[56,7],[[10,[9]]]],[[56,7],[[10,[9]]]],[[57,7],[[10,[9]]]],[[57,7],[[10,[9]]]],[[58,7],[[10,[9]]]],[[58,7],[[10,[9]]]],[[59,7],[[10,[9]]]],[[59,7],[[10,[9]]]],[[60,7],[[10,[9]]]],[[60,7],[[10,[9]]]],[[61,7],[[10,[9]]]],[[61,7],[[10,[9]]]],[[62,7],[[10,[9]]]],[[62,7],[[10,[9]]]],[[63,7],[[10,[9]]]],[[63,7],[[10,[9]]]],[[64,7],[[10,[9]]]],[[64,7],[[10,[9]]]],[[65,7],[[10,[9]]]],[[65,7],[[10,[9]]]],[[66,7],[[10,[9]]]],[[66,7],[[10,[9]]]],[[67,7],[[10,[9]]]],[[67,7],[[10,[9]]]],[[68,7],[[10,[9]]]],[[68,7],[[10,[9]]]],[[69,7],[[10,[9]]]],[[69,7],[[10,[9]]]],[[70,7],[[10,[9]]]],[[70,7],[[10,[9]]]],[[71,7],[[10,[9]]]],[[71,7],[[10,[9]]]],[[72,7],[[10,[9]]]],[[72,7],[[10,[9]]]],[[73,7],[[10,[9]]]],[[73,7],[[10,[9]]]],[[74,7],[[10,[9]]]],[[74,7],[[10,[9]]]],[[75,7],[[10,[9]]]],[[75,7],[[10,[9]]]],[[76,7],[[10,[9]]]],[[76,7],[[10,[9]]]],[[77,7],[[10,[9]]]],[[77,7],[[10,[9]]]],[[78,7],[[10,[9]]]],[[78,7],[[10,[9]]]],[[79,7],[[10,[9]]]],[[79,7],[[10,[9]]]],[[80,7],[[10,[9]]]],[[80,7],[[10,[9]]]],[[81,7],[[10,[9]]]],[[81,7],[[10,[9]]]],[[82,7],[[10,[9]]]],[[82,7],[[10,[9]]]],[[83,7],[[10,[9]]]],[[83,7],[[10,[9]]]],[[84,7],[[10,[9]]]],[[84,7],[[10,[9]]]],[[85,7],[[10,[9]]]],[[85,7],[[10,[9]]]],[[86,7],[[10,[9]]]],[[86,7],[[10,[9]]]],[[87,7],[[10,[9]]]],[[87,7],[[10,[9]]]],[[88,7],[[10,[9]]]],[[88,7],[[10,[9]]]],[[89,7],[[10,[9]]]],[[89,7],[[10,[9]]]],[[90,7],[[10,[9]]]],[[90,7],[[10,[9]]]],[[91,7],[[10,[9]]]],[[91,7],[[10,[9]]]],[[92,7],[[10,[9]]]],[[92,7],[[10,[9]]]],[[93,7],[[10,[9]]]],[[93,7],[[10,[9]]]],[[94,7],[[10,[9]]]],[[94,7],[[10,[9]]]],[[95,7],[[10,[9]]]],[[95,7],[[10,[9]]]],[[96,7],[[10,[9]]]],[[96,7],[[10,[9]]]],[[97,7],[[10,[9]]]],[[97,7],[[10,[9]]]],[[98,7],[[10,[9]]]],[[98,7],[[10,[9]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[34,1],[[99,[34]]]],[[35,1],[[99,[35]]]],[[36,1],[[99,[36]]]],[[37,1],[[99,[37]]]],[[38,1],[[99,[38]]]],[[39,1],[[99,[39]]]],[[40,1],[[99,[40]]]],[[41,1],[[99,[41]]]],[[42,1],[[99,[42]]]],[[43,1],[[99,[43]]]],[[44,1],[[99,[44]]]],[[45,1],[[99,[45]]]],[[46,1],[[99,[46]]]],[[47,1],[[99,[47]]]],[[48,1],[[99,[48]]]],[[49,1],[[99,[49]]]],[[50,1],[[99,[50]]]],[[51,1],[[99,[51]]]],[[52,1],[[99,[52]]]],[[53,1],[[99,[53]]]],[[54,1],[[99,[54]]]],[[55,1],[[99,[55]]]],[[56,1],[[99,[56]]]],[[57,1],[[99,[57]]]],[[58,1],[[99,[58]]]],[[59,1],[[99,[59]]]],[[60,1],[[99,[60]]]],[[61,1],[[99,[61]]]],[[62,1],[[99,[62]]]],[[63,1],[[99,[63]]]],[[64,1],[[99,[64]]]],[[65,1],[[99,[65]]]],[[66,1],[[99,[66]]]],[[67,1],[[99,[67]]]],[[68,1],[[99,[68]]]],[[69,1],[[99,[69]]]],[[70,1],[[99,[70]]]],[[71,1],[[99,[71]]]],[[72,1],[[99,[72]]]],[[73,1],[[99,[73]]]],[[74,1],[[99,[74]]]],[[75,1],[[99,[75]]]],[[76,1],[[99,[76]]]],[[77,1],[[99,[77]]]],[[78,1],[[99,[78]]]],[[79,1],[[99,[79]]]],[[80,1],[[99,[80]]]],[[81,1],[[99,[81]]]],[[82,1],[[99,[82]]]],[[83,1],[[99,[83]]]],[[84,1],[[99,[84]]]],[[85,1],[[99,[85]]]],[[86,1],[[99,[86]]]],[[87,1],[[99,[87]]]],[[88,1],[[99,[88]]]],[[89,1],[[99,[89]]]],[[90,1],[[99,[90]]]],[[91,1],[[99,[91]]]],[[92,1],[[99,[92]]]],[[93,1],[[99,[93]]]],[[94,1],[[99,[94]]]],[[95,1],[[99,[95]]]],[[96,1],[[99,[96]]]],[[97,1],[[99,[97]]]],[[98,1],[[99,[98]]]],[[1,30,[24,[100]],[101,[29]],30],[[28,[65]]]],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[1,[24,[100]],106],[[28,[65]]]],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],[17],0,[34,[[16,[107]]]],[35,[[16,[107]]]],[36,[[16,[107]]]],[37,[[16,[107]]]],[38,[[16,[107]]]],[39,[[16,[107]]]],[40,[[16,[107]]]],[41,[[16,[107]]]],[42,[[16,[107]]]],[43,[[16,[107]]]],[44,[[16,[107]]]],[45,[[16,[107]]]],[46,[[16,[107]]]],[47,[[16,[107]]]],[48,[[16,[107]]]],[49,[[16,[107]]]],[50,[[16,[107]]]],[51,[[16,[107]]]],[52,[[16,[107]]]],[53,[[16,[107]]]],[54,[[16,[107]]]],[55,[[16,[107]]]],[56,[[16,[107]]]],[57,[[16,[107]]]],[58,[[16,[107]]]],[59,[[16,[107]]]],[60,[[16,[107]]]],[61,[[16,[107]]]],[62,[[16,[107]]]],[63,[[16,[107]]]],[64,[[16,[107]]]],[65,[[16,[107]]]],[66,[[16,[107]]]],[67,[[16,[107]]]],[68,[[16,[107]]]],[69,[[16,[107]]]],[70,[[16,[107]]]],[71,[[16,[107]]]],[72,[[16,[107]]]],[73,[[16,[107]]]],[74,[[16,[107]]]],[75,[[16,[107]]]],[76,[[16,[107]]]],[77,[[16,[107]]]],[78,[[16,[107]]]],[79,[[16,[107]]]],[80,[[16,[107]]]],[81,[[16,[107]]]],[82,[[16,[107]]]],[83,[[16,[107]]]],[84,[[16,[107]]]],[85,[[16,[107]]]],[86,[[16,[107]]]],[87,[[16,[107]]]],[88,[[16,[107]]]],[89,[[16,[107]]]],[90,[[16,[107]]]],[91,[[16,[107]]]],[92,[[16,[107]]]],[93,[[16,[107]]]],[94,[[16,[107]]]],[95,[[16,[107]]]],[96,[[16,[107]]]],[97,[[16,[107]]]],[98,[[16,[107]]]],[[34,1],2],[[35,1],2],[[36,1],2],[[37,1],2],[[38,1],2],[[39,1],2],[[40,1],2],[[41,1],2],[[42,1],2],[[43,1],2],[[44,1],2],[[45,1],2],[[46,1],2],[[47,1],2],[[48,1],2],[[49,1],2],[[50,1],2],[[51,1],2],[[52,1],2],[[53,1],2],[[54,1],2],[[55,1],2],[[56,1],2],[[57,1],2],[[58,1],2],[[59,1],2],[[60,1],2],[[61,1],2],[[62,1],2],[[63,1],2],[[64,1],2],[[65,1],2],[[66,1],2],[[67,1],2],[[68,1],2],[[69,1],2],[[70,1],2],[[71,1],2],[[72,1],2],[[73,1],2],[[74,1],2],[[75,1],2],[[76,1],2],[[77,1],2],[[78,1],2],[[79,1],2],[[80,1],2],[[81,1],2],[[82,1],2],[[83,1],2],[[84,1],2],[[85,1],2],[[86,1],2],[[87,1],2],[[88,1],2],[[89,1],2],[[90,1],2],[[91,1],2],[[92,1],2],[[93,1],2],[[94,1],2],[[95,1],2],[[96,1],2],[[97,1],2],[[98,1],2],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],0,0,0,0,0,0,0,[109,33],[110,33],[111,33],[112,33],[113,33],[114,33],[115,33],[109,11],[110,11],[111,11],[112,11],[113,11],[114,11],[115,11],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[109,11],[110,11],[111,11],[112,11],[113,11],[114,11],[115,11],[11,[[28,[109]]]],[11,[[28,[110]]]],[11,[[28,[111]]]],[11,[[28,[112]]]],[11,[[28,[113]]]],[11,[[28,[114]]]],[11,[[28,[115]]]],[[109,7],[[10,[9]]]],[[109,7],[[10,[9]]]],[[110,7],[[10,[9]]]],[[110,7],[[10,[9]]]],[[111,7],[[10,[9]]]],[[111,7],[[10,[9]]]],[[112,7],[[10,[9]]]],[[112,7],[[10,[9]]]],[[113,7],[[10,[9]]]],[[113,7],[[10,[9]]]],[[114,7],[[10,[9]]]],[[114,7],[[10,[9]]]],[[115,7],[[10,[9]]]],[[115,7],[[10,[9]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[109,1],[[99,[109]]]],[[110,1],[[99,[110]]]],[[111,1],[[99,[111]]]],[[112,1],[[99,[112]]]],[[113,1],[[99,[113]]]],[[114,1],[[99,[114]]]],[[115,1],[[99,[115]]]],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[17],[17],[17],[17],[17],[17],[17],[109,[[16,[107]]]],[110,[[16,[107]]]],[111,[[16,[107]]]],[112,[[16,[107]]]],[113,[[16,[107]]]],[114,[[16,[107]]]],[115,[[16,[107]]]],[[109,1],2],[[110,1],2],[[111,1],2],[[112,1],2],[[113,1],2],[[114,1],2],[[115,1],2],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[116,33],[117,33],[118,33],[116,11],[117,11],[118,11],[[]],[[]],[[]],[[]],[[]],[[]],[116,11],[117,11],[118,11],[11,[[28,[116]]]],[11,[[28,[117]]]],[11,[[28,[118]]]],[[116,7],[[10,[9]]]],[[116,7],[[10,[9]]]],[[117,7],[[10,[9]]]],[[117,7],[[10,[9]]]],[[118,7],[[10,[9]]]],[[118,7],[[10,[9]]]],[[]],[[]],[[]],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],0,0,[[]],[[]],[[]],[[116,1],[[99,[116]]]],[[117,1],[[99,[117]]]],[[118,1],[[99,[118]]]],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[[[0,[102,103,104]]],105],[17],[17],[17],[116,[[16,[107]]]],[117,[[16,[107]]]],[118,[[16,[107]]]],0,[[116,1],2],[[117,1],2],[[118,1],2],[[],18],[[],18],[[],18],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[],10],[[],10],[[],10],[[],19],[[],19],[[],19],[1,108],[1,108],[1,108],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[33,119],[33,119],[[33,120],119],[[33,120],119],[[33,33,120,120],119],[[33,120,31,31],119],[33,119],[33,119],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[33,119],[121,33],0,0,[[119,31,31,119,120]],[[122,33,123,31,119,119],119],[[122,123,31,120],119],[[122,31],123],[[122,120],119],[122],[120,31],[[123,122,31,120],119],0,0,[33,120],[33,119],[33,119],[[33,33],33],[33,33],[[120,31],33],[[33,31],119],[33,31],0,0,0,[33,120],[[33,120,31],119],[33,119],[33,119],[[33,33]],[[33,33]],[[120,31,120,31,120],33],[120,33],[33,33],[120,33],[[120,31],33],[[33,119],33],[33,31],0,0,0,0,0,0,[[33,33,33],33],[33,119],[33,119],[33,108],[33,119],[33,124],[33,33],[33,119],[33,16],[33,33],[[125,33],33],[[125,33,33],33],0,0,0,0,[33,119],[33,119],[[125,33,33,108],33],0,[33,119],[[33,33],33],0,[33,119],[33,119],0,[33,123],[33,16],[33,120],[[33,120],123],[[120,119],123],[[33,120],119],[[123,120,16],33],[[33,123],119],[[33,16],119],[[33,120],119],[[33,123],119],0,0,0,[[126,119],119],[33,119],[126,31],[[119,119,119,119,119,33,33,33,33,33,33,33,33,119,33],126],[[120,120,119],126],[[119,119,119,119,119,119,33,33,33,33,33,33,33,33,119,33],126],[[33,33,33,33],33],0,[33,33],[[33,120,120],33],[120,33],[[33,120,120],33],[120,33],[33,33],[[120,120],33],[[120,120],33],[120,119],[120,33],[33,119],[[120,33],119],[33,33],[[120,33,120],33],[[120,33,120],33],[33,33],[33,119],[33,33],0,[[119,119],119],[[119,119,119],119],0,0,[33,127],[33,119],[33,119],[127,33],[[128,128],33],[33,128],[33,128],0,0,[129],[129],[129],[129,130],[[129,31,119],130],[[129,31,120],130],[[129,119,120],130],[[129,119,119],130],[[129,131,31,119],130],[33,119],0,[33,119],[[33,33,33],119],[[120,33],33],[[33,33],119],[[33,33],33],0,[33,119],[33,33],[[],33],[33,119],[33,119],[[],33],0,[33,119],0,[[],132],0,[33,119],[33,119],[33,100],[33,119],[33,119],[33,119],[33,119],[33,33],[33,119],[33,119],[33,119],0,0,0,[33,33],[33,119],[33,119],[33,119],[[]],[33,100],[33,119],[33,119],[33,119],[33,119],[33,33],0,[[],33],[33,119],[33,119],[33,33],[33,119],[33,119],0,[[108,125],33],[[108,133],33],[[108,134],33],[[108,125],33],[33,119],0,0,0,0,0,[33,119],0,0,[33,33],0,0,0,0,[33,119],0,[33,119],[33,119],[33,119],[33],[[33,33],119],[33,33],[[33,33],119],[[33,120],119],[[33,33],33],[[33,120],33],[[33,33],33],[33,33],[33,33],[[33,33,119],119],[[33,33,119],119],[[],33],[[33,31,33,33],119],[[33,33,33],119],[[33,120,33],119],[33,31],0,[[33,33],119],[33,33],0,0,[[],119],[[]],[[],119],[[]],[[33,33,33]],[33,119],[[33,33,33]],[[33,120],33],[[33,33,33]],[[33,33],119],[[120,33,33],33],[[120,120,33,33],33],[[],33],[[33,33,33]],[[],33],[[]],[119],[[120,119],33],[[33,31,120],119],[[33,33,33]],[[33,33,33]],[33,33],[[33,120],33],[[33,33],33],[[33,33,33],33],[[33,33,33],33],[[33,33,33,33],33],[[]],[119],[33],[[33,33]],[[33,120]],[[120,119]],[[120,119,119]],[[33,120,31],119],[[33,120,120,119,120,33],119],[[33,31,120],119],[33],[[]],[135],[[33,120],33],[[33,120,120],33],[[33,33],33],[[33,33,33],33],[[33,33,33],33],[[33,33,33,33,119,33,119,33,119,33,33],33],[136,33],[[136,119],33],[[],33],[33,33],[[],136],[33,120],[33,120],[[],33],[[],33],[[]],[[]],[135],[135],[[],135],[[16,33]],[[16,33]],[[],119],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[33,119],[33,119],[33,33],[33,33],[33,33],[33,33],[[33,33]],[[33,33]],[[33,33],119],[[119,120,120,119,120,120,120,119],33],[[33,119],33],[[33,33,119],119],[[120,33],119],0,0,[33,128],[33,128],[33,119],[33,119],[128,33],[33,33],[[],33],[[],128],[[],128],0,0,0,[136,137],[[136,119,119,119]],[33,119],[136],[136,119],[136,126],[136,119],[[136,119]],[[135,126,33,33],136],0,[33,119],[33,119],[33,33],0,0,[33,119],[33,33],[33,33],[33,33],[33,33],[33,33],[33,33],[33,33],[[33,33],33],[[33,33,33],33],[[33,33],119],[[33,33],119],[[33,33],119],[[33,33],119],0,0,[[],31],[[],119],[[],119],[[],119],[[],119],[[],138],[[],135],0,[138],0,0,0,[33,119],[33,119],[136,33],0,0,0,0,0,[[],139],0,[140,134],0,[120,33],[33,33],[[120,16],119],[[120,33],33],[[120,33,120],33],[[33,33,33,33],33],[[120,33,120,120],33],[141,119],0,[33,33],[[],121],[[],120],[[],33],[33,33],[120,119],[33,119],[120,33],[[120,33,33,33],33],[[120,33,33,33,119],33],[[33,33,33,33,119],33],[120,33],0,[33,33],[33,119],0,[142],[142],[[],142],[142,33],[142,121],[[],142],[[],142],[[],142],[142,142],[142,135],[33,119],[33,33],[[33,33,33]],0,0,0,[[33,33],119],[33,33],[33,119],[33,119],[[33,31],33],[33,31],[[33,31],33],[[33,31,31],33],[[33,31,33],119],[31,33],[33,119],[[33,31,33]],[[33,31,33],119],[[33,31,31,33],119],[33,31],[33,119],0,0,0,[33,128],[33,121],[[33,119],121],[33,121],[[33,119],121],[33,29],[33,31],[33,143],[33,143],[33,143],[33,143],[33,123],[33,119],[33,119],[128,33],[121,33],[121,33],[29,33],[31,33],[[120,120,119],33],[143,33],[143,33],[123,33],[[],33],0,0,0,[33,119],[[33,33],119],[[33,120],119],[[33,120],33],[[33,33],119],[[33,120],119],[33,33],[33,33],[33,31],[[33,120,33],119],[33,31],[33,33],[[120,31],33],[[33,119],33],0,0,[[29,29],123],[123],[[144,145]],[29,123],[[29,29],123],[123],[29,123],[[123,29],123],[[123,29],123],[[144,145]],[[]],0,0,[33,119],[[120,31,119],33],[33,33],[[33,119,120],33],0,0,0,0,0,0,0,0,[146,33],0,0,[[33,125],119],[[33,120,121],119],[[33,120,33],119],[[33,120,33],119],[[33,120,120],119],[[33,108],119],[33,119],[33,119],[146,33],[[146,119],33],[[33,146],119],[[146,33],33],[[146,33,119],33],[33,146],[33,33],[33,120],[33,33],[33,120],[33,33],[33,123],[120,33],[33,33],[[33,120],119],0,0,[33,33],[[33,33],33],[[33,33],33],[[33,33],31],[33,119],[[33,33],33],[33,33],[[33,33],33],[[33,33],33],[[33,33],33],[[33,33],33],[[33,33],33],[[33,33],33],[[33,33],33],[[33,33],33],[[33,33,33],33],[[33,33],33],[[33,33],33],[[33,33],33],[[33,33],33],[[33,33],33],[33,33],[33,33],[33,33],[[33,33],33],[[33,33],33],[[33,33],33],[33,33],[[33,33],33],[33,33],[[33,33,33],33],[[33,33],33],[[33,33],33],[[33,33],33],[[33,119],33],[[33,33],33],[[33,33],33],0,[[]],[[]],[[]],[[]],[33,33],[[],119],[[128,120,119,119,119],120],[119],[119],[[120,120,33],128],[[120,120,119],121],[[120,120,119],143],0,0,[33,33],[33,119],[33,33],[[33,33,33],33],[33],[33,119],[[33,120],33],[33,33],[[33,120,120],33],[[33,33],33],[[33,33],33],[[33,33,33],33],[33,33],[[33,33],33],[[33,33],33],[[29,29],123],[33,119],[33],[[33,33],119],[[33,33],119],[[33,120],119],[[33,33],119],[[33,120],119],[33,33],[[33,33],33],[123],[123],[123],[123],[33,33],[[33,33],33],[[33,123],33],[[33,33,33],119],[[33,33,123],119],[147],[[33,33],33],[[33,120],33],[[33,122,119],119],[[33,33],33],[33,33],0,[[33,33],119],[[33,120],119],[33,31],[33,31],[33,119],[[33,108],33],[[148,108,31],148],[[33,33],119],[[33,33],119],[33,119],[33,31],[[33,31],31],[29,123],[33,119],[[33,149,119],119],[[123,29],123],[33,33],[[33,33,119],33],[[33,33,119],119],[33,33],[147],[[33,33,33],119],[[33,120,33],119],[[33,33,33],119],[33,31],[33,33],[33,33],[[33,108],119],[[33,33,29,33],33],[[33,33,29,33],33],[[33,33,29,33],33],0,[150],[150],0,0,[33,119],0,0,[[149,120],119],[[149,120,119],119],[[149,120,119,151],119],[[149,120,151],119],[[149,120,119,33,33],33],[[149,120,119,33,33,119],33],[[149,120,119,33,33,119,151],33],[[149,120,119,33,33,151],33],[[149,120],119],[[149,120,151],119],[[149,120],119],[[149,120,151],119],[[149,33,151],119],[[149,120],119],[[149,120,119],119],[[149,120,119,151],119],[120,119],[[120,151],119],[[120,119,33,33],33],[[120,119,33,33,151],33],0,[33,119],[33,33],0,0,[33,119],[[33,33],33],[[33,33],119],[[33,33],31],[[33,31],119],[[33,31,31],119],[[33,120],33],[[33,31],33],[[33,31,31],33],[[33,33],119],[[33,33],33],[[33,31],33],[[33,33],31],[33,31],[33,33],[[33,31],33],[[33,31,33],119],[[33,31,31,33],119],[33,31],[33,33],0,0,[[33,33],119],[33,119],[33,119],[33,119],[[33,33],119],[[33,33],119],[33,31],0,[33,33],[33,33],[33,31],0,0,[[31,31,31,31],31],[33,119],[[33,31,31,31,31],119],[[33,31,31,31,31,31],119],[[33,33,33],33],0,[[33,31,31,31],119],[[33,146],119],[146,33],[146,119],0,[120,130],[130,119],[119,130],[130,119],[130,119],[[],130],[[],130],0,0,0,0,[[33,31],33],[[33,31],33],[[108,152]],[[108,152],119],[108,33],[152,108],[[33,31,33]],[[33,31,33]],0,0,[119],[33],[119],[120],[120],[120,33],[[],33],[[],119],[[]],[[119,119]],[[119,119,119]],[[120,33],119],[119],[120],[120],0,[33,119],[33,119],0,[135],[135],[[]],[[],135],[[],135],[[],33],[142,135],[135,135],[[121,33],119],[135,135],[33,33],[[33,33],33],[33,119],[33,119],[33,119],[136,119],[[33,33],119],0,0,0,0,0,0,0,0,0,0,0,0,[33,119],[33,119],[[33,31],33],[33,31],[[33,31],33],[[33,31,31],33],[31,33],[31,33],[[33,31,33]],[[33,31,33],119],[33,31],0,0,[33,119],[33,119],[[],153],[[108,143],119],[[33,154,33],33],[154,33],[[154,33],33],[[108,31],33],[[108,33,33],33],[108,143],[108,33],[108,123],[[108,119],123],[[108,143],119],[108,119],[[108,108],119],[108],[108,119],[108,119],0,0,0,[[120,120,31,31,31,120],33],[33,33],[[33,31],119],[33,33],[33,33],[[33,31],119],[[33,31],119],[[33,120],119],[[33,31],119],[33,33],[[33,31],119],[33,33],[33,33],[[33,31],119],[[33,31],119],[[33,120],119],[[33,31],119],0,0,0,0,[[33,31],119],[33,33],[33,33],[[33,31],119],[[33,31],119],[[33,120],119],[[33,31],119],[33,100],0,[33,155],0,[33,153],0,[[33,33]],[[33,33]],[33,33],[[33,33],33],[[33,120,120],33],[[33,120,120],33],[[33,120,120],33],[[33,120,120],33],[[33,120,120],33],[33,33],[33,33],[[33,153,31,119],153],[33,153],[33,33],[33,33],[33,120],[[33,31],120],[33,33],[33,119],[[33,31],119],[33,33],[[33,119,31],31],[[33,31],119],[33,33],[33,119],[33,119],[[],119],[[33,33],119],[[33,120],119],[[33,33],33],[[33,33],119],[[33,31,33,31,31],31],[[33,33,31,31],31],[33,123],[[120,31,120,120],33],[[120,31,120],33],[[120,31,33,120],33],[120,33],[[120,31],33],[[120,31,120],33],[[120,120],33],[[120,31,120],33],[[120,31,120],33],[[120,31,120,119],33],[[120,31,120,119,31],33],[[120,31,120,119],33],[[120,31,120,119,31],33],[[120,31,120],33],[[120,31,120,31],33],[[120,31,120],33],[[120,31,120,31],33],[[120,31,120],33],[[119,31,120,120],33],[[119,31,120],33],[[119,31,33,120],33],[[119,31,120,120],119],[33,33],[[119,31,120],33],[[33,120],33],[[119,31],33],[[119,31,120,119],33],[[119,31,120,119],33],[[119,31,119,119,120],33],[[119,31,120],33],[[119,31],33],[[33,123],119],[[33,123],119],[[33,31,31,153],31],[[33,33,31,31,119],31],[[33,153,31,31,119],31],[[33,33],33],[[33,120,120],33],[120,33],[[119,123,31],33],[33,33],[119,33],[120,33],[[120,31],33],[[119,31],33],[[119,31],33],[33,31],[[],120],[33,31],[33,31],[33,153],[33,153],[33,153],[33,153],[120,33],[33],[33],[33,119],[[33,33],33],[33,153],[[31,153],33],[[33,33],33],[33,119],[[33,33],33],[[33,33,31],33],[[33,31],153],[[33,33,33,31],33],[[33,31],119],[[33,33,119],33],[[33,33,31],33],[[33,119],33],[[33,31,31],33],[[33,33,31,31,119],31],[[119,31],33],[[33,33,120],33],[[119,31,33,120],33],0,0,[[33,31,153],119],0,[[33,33,33],33],[33,16],[29,31],0,[33,119],[33,119],[33,119],[33,119],[33,33],[[33,33],33],[[33,33],33],0,[[131,119],130],[[131,31,119],130],0,0,0,[[33,33],33],0,[[16,123],119],[16,119],[120,33],[[119,120],119],0,0,[33],[[120,120,119],33],[[120,120,119,151,119],33],[[120,120,119,151],33],[[120,33,119,151,119],33],[33],0,0,0,0,0,0,0,[33],[[120,31],119],0,0,[[],33],[[119,31],120],[135],[120],[119],[130,156],[[],33],[120,156],0,0,[[]],[[],119],0,0,0,[[119,119]],[[],120],[[],120],[[],120],[[],119],[[],119],[[],120],[[],119],[[],119],[[],119],[[],119],[[],119],[[],120],0,0,0,0,0,[33],[[33,108],119],0,[33],[[]],[119],[129,130],0,0,[[33,33],119],[33,119],[[],119],[33,119],[33,119],0,0,0,[[]],[[119,119],119],[[],119],0,[[],135],[33,33],0,0,[[],33],[[],33],0,0,[150,130],[[150,31,119],130],[[150,31,120],130],0,[33,31],[33,119],[33],[[],119],[33,31],[119],[119],[119],[119],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[33,108],[[],33],0,0,0,0,0,0,0,0,[33],[33],[33,33],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[33,31],119],0,0,0,0,[[33,31,123],119],[[33,31,123],119],0,0,0,[[33,33,31],119],[31,33],[[33,31,33,33,31],119],[[33,33,33,31],119],[[120,119]],[[33,33,33]],0,[[136,119],33],[[],119],0,0,[[]],[[33,33],33],[[33,120,33],119],[[33,33,33,33],119],[142,119],[[],119],[[33,33],119],[[120,33],119],[142],[142],[[157,100,29,119,119],119],[[100,29,119,119],33],[33,29],0,0,0,0,[33,33],[[33,33,31],33],[[135,33,33,31],33],[29,33],[29,33],[108,33],[[108,31],148],[[148,31],148],[33,33],[[135,33,33,31,33],33],[108,33],[[108,31],148],[33,33],[[135,33,33,29,33],33],0,[[149,33,119,151],119],[[149,33,151],119],[[149,33,119,151],119],[[33,33,119],31],0,[[33,31,33,31],119],[[33,33],33],0,0,0,0,[33,123],[[33,119],119],[33,123],[33,119],0,0,0,0,[[135,33,33,120],33],[33],[[],31],[[123,31],31],[[],130],[[],119],[33,33],0,[33,33],[127,128],[[127,127],127],[127,127],[[127,127],127],[[127,127],127],[[127,127],127],[[127,127],127],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[124,123],0,[158,153],0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[159,159],[127,127],[160,160],[161,161],[162,162],[163,163],[164,164],[165,165],[166,166],[132,132],[133,133],[125,125],[124,124],[167,167],[168,168],[146,146],[33,33],[148,148],[169,169],[154,154],[170,170],[147,147],[139,139],[138,138],[171,171],[152,152],[172,172],[126,126],[151,151],[173,173],[137,137],[136,136],[174,174],[141,141],[175,175],[176,176],[130,130],[131,131],[150,150],[129,129],[177,177],[122,122],[178,178],[179,179],[180,180],[181,181],[182,182],[108,108],[140,140],[144,144],[145,145],[183,183],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[158,153],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],133],[[],125],[[],168],[[],169],[[],154],[[],147],[[],139],[[],180],[[],181],[[],182],[[],140],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[133,133],5],[[125,125],5],[[124,124],5],[[168,168],5],[[170,170],5],[[138,138],5],[[176,176],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],[[],5],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[161,7],[[10,[9]]]],[[162,7],[[10,[9]]]],[[163,7],[[10,[9]]]],[[164,7],[[10,[9]]]],[[165,7],[[10,[9]]]],[[166,7],[[10,[9]]]],[[132,7],[[10,[9]]]],[[133,7],[[10,[9]]]],[[124,7],[[10,[9]]]],[[33,7],[[10,[9]]]],[[148,7],[[10,[9]]]],[[170,7],[[10,[9]]]],[[138,7],[[10,[9]]]],[[184,7],[[10,[9]]]],[[185,7],[[10,[9]]]],[[186,7],[[10,[9]]]],[[176,7],[[10,[9]]]],[[108,7],[[10,[9]]]],[[187,7],[[10,[9]]]],[[188,7],[[10,[9]]]],[[189,7],[[10,[9]]]],[[190,7],[[10,[9]]]],[[191,7],[[10,[9]]]],[[192,7],[[10,[9]]]],[[193,7],[[10,[9]]]],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[158,153],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[124,5],0,0,0,0,0,0,0,[158,153],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],122],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[158,153],0,0,0,0,0,0,0,0,0,0,0,0,0,[[158,153]],[[158,153]],[[158,153]],[[158,153]],[[158,153]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],125],[[],124],0,0,[[120,134],33],[[120,134,33],119],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[134,134],[[]],[[],134],0,[[134,134],5],[[],5],0,[[]],[[]],0,0,[[]],[[],10],[[],10],0,[[],19],[1,2],[1,2],[1,2],0,0,[[1,[0,[194,20]]],194],[[],1],[[]],[[]],[[1,2],[[0,[195,196]]]],[1,28],[[1,2],[[10,[197,6]]]],[1,1],[[]],[[1,12,[16,[198]],[16,[198]]],[[28,[11]]]],[[]],[[1,33],199],[[1,33],[[28,[199]]]],[[1,33],[[16,[199]]]],[[1,33],199],[[1,33],[[28,[199]]]],[[1,33],[[16,[199]]]],[1,200],[[1,[202,[[99,[201]]]]],[[28,[203]]]],[[]],[1,3],[[1,12,[16,[198]],[16,[198]]],28],[[]],[[],10],[[],10],[[],19],[1,12],[1,4],[20],[20],[[1,[0,[20,194]]]],0,[[1,204,119],[[28,[205]]]],[[1,[0,[[206,[[24,[100]]]],207]]],[[28,[11]]]],0,[208,33],[208,11],[[]],[[]],[208,11],[11,[[28,[208]]]],[[208,7],[[10,[9]]]],[[208,7],[[10,[9]]]],[[]],[[1,33],16],[[1,33],16],[[]],[[208,1],[[99,[208]]]],[[[0,[102,103,104]]],105],[17],[208,[[16,[107]]]],[[208,1],2],[[],18],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]]],[[],10],[[],19],[1,108],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,[[99,[11]]]],[1,[[99,[11]]]],[[[99,[205]],1],[[24,[100]]]],[99,33],[[[99,[209]],1],209],[[[99,[210]],1],210],[[[99,[196]],1]],[[[99,[211]],1],211],[[]],[[[99,[212]],1],[[213,[212]]]],[[]],[[]],[[[99,[212,212]],1],[[214,[212,212]]]],[[]],[[99,1,[202,[[99,[215]]]],[16,[198]]],[[28,[2]]]],[[99,1],[[28,[2]]]],[[99,1,[202,[[99,[215]]]]],[[28,[2]]]],[[99,1,[202,[[99,[201]]]],[202,[[99,[215]]]],[16,[198]]],[[28,[2]]]],[[99,1,[202,[[99,[201]]]]],[[28,[2]]]],[[99,1,[202,[[99,[201]]]],[202,[[99,[215]]]]],[[28,[2]]]],[[[99,[11]],1],[[10,[197,6]]]],[[2,1],[[10,[197,6]]]],[[105,1],[[16,[105]]]],[99,99],[[]],[[105,1],105],[[99,1],99],[[[99,[11]],1],[[10,[197,6]]]],[[2,1],[[10,[197,6]]]],[[[99,[11]],1],197],[[2,1],197],[99],[11,[[28,[[99,[196]]]]]],[[99,1],[[28,[216]]]],[1,105],[[105,7],8],[[105,7],[[10,[9]]]],[[[99,[196]],7],8],[[99,7],8],[48,105],[70,105],[63,105],[58,105],[114,105],[82,105],[217,105],[68,105],[93,105],[218,105],[[[220,[[0,[103,104,219]]]]],105],[73,105],[221,105],[222,105],[91,105],[80,105],[37,105],[39,105],[[]],[67,105],[72,105],[45,105],[78,105],[223,105],[224,105],[56,105],[95,105],[225,105],[81,105],[50,105],[84,105],[87,105],[86,105],[34,105],[64,105],[115,105],[36,105],[47,105],[110,105],[49,105],[83,105],[52,105],[118,105],[79,105],[54,105],[75,105],[96,105],[53,105],[44,105],[59,105],[226,105],[227,105],[43,105],[38,105],[106,105],[116,105],[76,105],[228,105],[92,105],[229,105],[77,105],[69,105],[51,105],[97,105],[111,105],[98,105],[6,105],[61,105],[208,105],[94,105],[112,105],[230,105],[55,105],[109,105],[231,105],[42,105],[232,105],[233,105],[40,105],[89,105],[74,105],[71,105],[85,105],[62,105],[117,105],[65,105],[66,105],[35,105],[90,105],[113,105],[57,105],[46,105],[41,105],[60,105],[88,105],[234,[[99,[234]]]],[215,[[99,[215]]]],[235,[[99,[235]]]],[86,[[99,[86]]]],[209,[[99,[209]]]],[208,[[99,[208]]]],[200,[[99,[200]]]],[81,[[99,[81]]]],[236,[[99,[236]]]],[237,[[99,[237]]]],[238,[[99,[238]]]],[201,[[99,[201]]]],[239,[[99,[239]]]],[95,[[99,[95]]]],[44,[[99,[44]]]],[240,[[99,[240]]]],[241,[[99,[241]]]],[198,[[99,[198]]]],[242,[[99,[242]]]],[210,[[99,[210]]]],[205,[[99,[205]]]],[53,[[99,[53]]]],[69,[[99,[69]]]],[96,[[99,[96]]]],[43,[[99,[43]]]],[84,[[99,[84]]]],[211,[[99,[211]]]],[49,[[99,[49]]]],[52,[[99,[52]]]],[61,[[99,[61]]]],[73,[[99,[73]]]],[46,[[99,[46]]]],[41,[[99,[41]]]],[243,[[99,[243]]]],[244,[[99,[244]]]],[245,[[99,[245]]]],[35,[[99,[35]]]],[246,[[99,[246]]]],[110,[[99,[110]]]],[91,[[99,[91]]]],[57,[[99,[57]]]],[247,[[99,[247]]]],[248,[[99,[248]]]],[38,[[99,[38]]]],[36,[[99,[36]]]],[[[249,[212]]],[[99,[212]]]],[[[213,[212]]],[[99,[212]]]],[74,[[99,[74]]]],[63,[[99,[63]]]],[112,[[99,[112]]]],[50,[[99,[50]]]],[90,[[99,[90]]]],[58,[[99,[58]]]],[68,[[99,[68]]]],[79,[[99,[79]]]],[87,[[99,[87]]]],[250,[[99,[250]]]],[251,[[99,[251]]]],[252,[[99,[252]]]],[203,[[99,[203]]]],[40,[[99,[40]]]],[78,[[99,[78]]]],[[[214,[212]]],[[99,[212]]]],[47,[[99,[47]]]],[115,[[99,[115]]]],[60,[[99,[60]]]],[59,[[99,[59]]]],[51,[[99,[51]]]],[114,[[99,[114]]]],[253,[[99,[253]]]],[118,[[99,[118]]]],[254,[[99,[254]]]],[255,[[99,[255]]]],[98,[[99,[98]]]],[65,[[99,[65]]]],[94,[[99,[94]]]],[256,[[99,[256]]]],[80,[[99,[80]]]],[97,[[99,[97]]]],[37,[[99,[37]]]],[82,[[99,[82]]]],[42,[[99,[42]]]],[88,[[99,[88]]]],[70,[[99,[70]]]],[117,[[99,[117]]]],[77,[[99,[77]]]],[[]],[75,[[99,[75]]]],[48,[[99,[48]]]],[56,[[99,[56]]]],[34,[[99,[34]]]],[64,[[99,[64]]]],[109,[[99,[109]]]],[92,[[99,[92]]]],[111,[[99,[111]]]],[76,[[99,[76]]]],[66,[[99,[66]]]],[83,[[99,[83]]]],[89,[[99,[89]]]],[113,[[99,[113]]]],[257,[[99,[257]]]],[54,[[99,[54]]]],[93,[[99,[93]]]],[55,[[99,[55]]]],[258,[[99,[258]]]],[67,[[99,[67]]]],[39,[[99,[39]]]],[45,[[99,[45]]]],[72,[[99,[72]]]],[71,[[99,[71]]]],[116,[[99,[116]]]],[85,[[99,[85]]]],[62,[[99,[62]]]],[[[99,[[206,[11]]]]],2],[[[0,[204,195]]],2],[[1,33],99],[[1,33],[[28,[99]]]],[[1,33],[[16,[99]]]],[[1,33],99],[[1,33],[[28,[99]]]],[[1,33],[[16,[99]]]],[[200,[0,[102,103,104]]],105],[11,105],[[[99,[[0,[212,104]],212]]],[[0,[212,104]],212]],[[99,1],31],[[105,1],200],[[99,1,[202,[[99,[201]]]]],[[28,[2]]]],[[]],[[]],[99,33],[[105,1],2],[[105,1],2],[[99,1],2],[[[99,[210]],1],210],[[[99,[209]],1],209],[[[99,[211]],1],211],[[[99,[196]],1]],[[105,1],[[99,[34]]]],[[99,204],5],[99,5],[[105,1,11],5],[[105,1],5],[[99,1],5],[[99,1],[[28,[5]]]],[[105,1,259],5],[[[0,[102,103,104]]],105],[[1,[14,[[260,[212]]]]],[[28,[[99,[212]]]]]],[[1,12,[16,[12]],[16,[200]],[16,[2]]],[[28,[[99,[200]]]]]],[1,5],[[105,1]],[[105,1]],[17],[17],0,0,0,0,[[105,1]],[[105,1,[16,[105]]]],[[99,1,[202,[[99,[201]]]],[202,[[99,[11]]]]],28],[1,[[16,[105]]]],[[105,1],2],[[99,1],2],[[]],[[],18],[[],18],[[105,1],[[16,[243]]]],[[[99,[212]],1],[[10,[[213,[212]],225]]]],[[[99,[212,212]],1],[[10,[[214,[212,212]],222]]]],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],[[105,1],34],[[1,11,12,119],28],[[1,11,12,12,119,[16,[12]],[16,[11]]],28],0,[[105,1,[16,[11]]]],0,0,0,0,0,[[[214,[212]]]],[[[249,[212]]],33],[[[213,[212]]],33],[[[214,[212]]],33],[[[249,[212]]],11],[[[213,[212]]]],[[[214,[212]]]],[[[249,[212]]],[[213,[212]]]],[[]],[[]],[[]],[[]],[[]],[[[249,[212,212]]],[[214,[212,212]]]],[[]],[[]],[[]],[[]],[[]],[[[249,[212]]],11],[[[213,[212]]],212],[[[214,[212]]],212],[[[214,[212]]],212],[[[213,[212]]]],[[[214,[212]]]],[11,[[28,[[249,[212]]]]]],[11,[[28,[[213,[212]]]]]],[11,[[28,[[214,[212]]]]]],[[[249,[[0,[212,219]]]],7],8],[[[213,[[0,[212,219]]]],7],8],[[[214,[[0,[212,219]]]],7],8],[[225,7],8],[[225,7],8],[[222,7],8],[[222,7],8],[[]],[[]],[[]],[[]],[[]],[[1,33],16],[[1,33],16],[[[249,[[0,[212,104]],212]]],[[0,[212,104]],212]],[[]],[[]],[[]],[[]],[[]],[[[213,[212]],1],2],[[[214,[212]],1],2],[[[213,[212]]],[[213,[212]]]],[[[214,[212]]],[[214,[212]]]],[[1,[14,[[260,[212]]]]],[[28,[[249,[212]]]]]],[[[213,[212]]],1],[[[214,[212]]],1],[[[249,[212,212]],212,212],[212,212]],[[[249,[212,212]],20],[212,212]],[[[249,[212,212]],[249,[212,212]]]],[[[249,[212]],1],2],[[],18],[[],18],[[[249,[212]]],[[10,[[213,[212]],225]]]],[[[249,[212,212]]],[[10,[[214,[212,212]],222]]]],[[[249,[212]]],[[10,[212,225]]]],[[[14,[11]]],[[10,[[249,[212]],6]]]],[[],10],[[[249,[212]]],[[10,[[213,[212]]]]]],[[],10],[[],10],[[[249,[212]]],[[10,[[214,[212]]]]]],[[],10],[[],10],[[[14,[11]]],[[10,[[249,[212]],6]]]],[[[14,[11]]],[[249,[212]]]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],[[],19],[[],19],[[],19],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[261,204],[[10,[262]]]],[261,261],[263,263],[[]],[[]],[[263,7],8],[[]],[[]],[[]],[[]],[[]],[264,[[16,[263]]]],[[]],[[]],[[]],[[]],[[]],[[263,15],5],[[]],[[]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],[[],19],[[],19],[[],19],0,0,0,0,0,0,[[[260,[212]],212],[[260,[212]]]],[[]],[[]],[[]],[[]],[[]],[[],[[260,[212]]]],[212,[[260,[212]]]],[[[99,[212]]],[[260,[212]]]],[[]],[[]],[[]],[[1,108],[[28,[33]]]],[[[265,[196]],1,108],[[28,[33]]]],[[[260,[212]],1,108],[[28,[33]]]],[212,[[260,[212]]]],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[266,1]],[[267,1],16],[267,16],[[267,1,20]],[[267,1,20],10],[[]],[[]],[[],266],[[],267],[[267,1],10],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],0,0,0,0,0,0,[11,5],[11,5],[1,200],[1,108],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[254,268],[[254,254],254],[[269,259],28],[[203,12,[202,[2]]],28],[[252,259],28],[203,28],[[203,234],28],[[203,203],28],[[203,270],28],[[247,259],28],[244,[[24,[100]]]],[205,[[24,[100]]]],[271,[[24,[100]]]],[244,[[24,[100]]]],[198,210],[11,33],[237,33],[244,33],[205,33],[238,33],[248,33],[254,33],[241,33],[258,33],[245,33],[257,33],[240,33],[198,33],[236,33],[239,33],[242,33],[251,33],[253,33],[256,33],[234,33],[246,33],[209,33],[247,33],[210,33],[203,33],[235,33],[255,33],[211,33],[252,33],[250,33],[201,33],[243,33],[215,33],[200,33],[237,11],[244,11],[205,11],[238,11],[248,11],[254,11],[241,11],[258,11],[245,11],[257,11],[240,11],[198,11],[236,11],[239,11],[242,11],[251,11],[253,11],[256,11],[234,11],[246,11],[209,11],[247,11],[210,11],[203,11],[235,11],[255,11],[211,11],[252,11],[250,11],[201,11],[243,11],[215,11],[200,11],[247,211],[215,211],[215,[[24,[11]]]],[200,108],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[11,[202,[[99,[215]]]],[16,[198]]],[[28,[11]]]],[11,[[28,[11]]]],[[11,[202,[[99,[215]]]]],[[28,[11]]]],[[11,[202,[[99,[201]]]],[202,[[99,[215]]]],[16,[198]]],[[28,[11]]]],[[11,[202,[[99,[201]]]]],[[28,[11]]]],[[11,[202,[[99,[201]]]],[202,[[99,[215]]]]],[[28,[11]]]],[11,[[10,[197,6]]]],[198],[252],[271,271],[[]],[[11,259],[[28,[15]]]],[[211,211],[[28,[211]]]],[[11,259],[[28,[5]]]],[[198,259],[[28,[5]]]],[[256,259],[[28,[5]]]],[[247,259],[[28,[5]]]],[[210,259],[[28,[5]]]],[[211,259],[[28,[5]]]],[[252,259],[[28,[5]]]],[[215,259],[[28,[5]]]],[238,[[28,[26]]]],[198,[[28,[198]]]],[[211,259],[[28,[29]]]],[244,100],[201,[[28,[271]]]],[[11,259],28],[[198,259],28],[[247,29],28],[[210,259],28],[[211,29],28],[[247,29,29],28],[[211,29,29],28],[[11,[202,[[99,[201]]]]],28],[237,11],[244,11],[205,11],[238,11],[248,11],[254,11],[241,11],[258,11],[245,11],[257,11],[240,11],[198,11],[236,11],[239,11],[242,11],[251,11],[253,11],[256,11],[234,11],[246,11],[209,11],[247,11],[210,11],[203,11],[235,11],[255,11],[211,11],[252,11],[250,11],[201,11],[243,11],[215,11],[200,11],[203,198],[11,247],[[252,259]],[[254,254],254],[11,[[10,[197,6]]]],[11,197],[1,[[28,[256]]]],[1,247],[1,[[28,[252]]]],[1,215],[[11,259],[[28,[5]]]],[[272,272],5],[[271,271],5],[[],5],[[],5],[11,[[28,[11]]]],[11,[[28,[216]]]],[11,[[28,[237]]]],[11,[[28,[244]]]],[11,[[28,[205]]]],[11,[[28,[238]]]],[11,[[28,[248]]]],[11,[[28,[254]]]],[11,[[28,[241]]]],[11,[[28,[258]]]],[11,[[28,[245]]]],[11,[[28,[257]]]],[11,[[28,[240]]]],[11,[[28,[198]]]],[11,[[28,[236]]]],[11,[[28,[239]]]],[11,[[28,[242]]]],[11,[[28,[251]]]],[11,[[28,[253]]]],[11,[[28,[256]]]],[11,[[28,[234]]]],[11,[[28,[246]]]],[11,[[28,[209]]]],[11,[[28,[247]]]],[11,[[28,[210]]]],[11,[[28,[203]]]],[11,[[28,[235]]]],[11,[[28,[255]]]],[11,[[28,[211]]]],[11,[[28,[252]]]],[11,[[28,[250]]]],[11,[[28,[201]]]],[11,[[28,[243]]]],[11,[[28,[215]]]],[11,[[28,[200]]]],[203,[[28,[12]]]],[269,256],[[11,7],[[10,[9]]]],[[11,7],[[10,[9]]]],[[237,7],[[10,[9]]]],[[237,7],[[10,[9]]]],[[244,7],[[10,[9]]]],[[244,7],[[10,[9]]]],[[205,7],[[10,[9]]]],[[205,7],[[10,[9]]]],[[238,7],[[10,[9]]]],[[238,7],[[10,[9]]]],[[248,7],[[10,[9]]]],[[248,7],[[10,[9]]]],[[254,7],[[10,[9]]]],[[254,7],[[10,[9]]]],[[241,7],[[10,[9]]]],[[241,7],[[10,[9]]]],[[258,7],[[10,[9]]]],[[258,7],[[10,[9]]]],[[245,7],[[10,[9]]]],[[245,7],[[10,[9]]]],[[257,7],[[10,[9]]]],[[257,7],[[10,[9]]]],[[240,7],[[10,[9]]]],[[240,7],[[10,[9]]]],[[198,7],[[10,[9]]]],[[198,7],[[10,[9]]]],[[236,7],[[10,[9]]]],[[236,7],[[10,[9]]]],[[239,7],[[10,[9]]]],[[239,7],[[10,[9]]]],[[242,7],[[10,[9]]]],[[242,7],[[10,[9]]]],[[251,7],[[10,[9]]]],[[251,7],[[10,[9]]]],[[253,7],[[10,[9]]]],[[253,7],[[10,[9]]]],[[256,7],[[10,[9]]]],[[256,7],[[10,[9]]]],[[234,7],[[10,[9]]]],[[234,7],[[10,[9]]]],[[246,7],[[10,[9]]]],[[246,7],[[10,[9]]]],[[209,7],[[10,[9]]]],[[209,7],[[10,[9]]]],[[247,7],[[10,[9]]]],[[247,7],[[10,[9]]]],[[210,7],[[10,[9]]]],[[210,7],[[10,[9]]]],[[203,7],[[10,[9]]]],[[203,7],[[10,[9]]]],[[235,7],[[10,[9]]]],[[235,7],[[10,[9]]]],[[255,7],[[10,[9]]]],[[255,7],[[10,[9]]]],[[211,7],[[10,[9]]]],[[211,7],[[10,[9]]]],[[252,7],[[10,[9]]]],[[252,7],[[10,[9]]]],[[250,7],[[10,[9]]]],[[250,7],[[10,[9]]]],[[201,7],[[10,[9]]]],[[201,7],[[10,[9]]]],[[243,7],[[10,[9]]]],[[243,7],[[10,[9]]]],[[215,7],[[10,[9]]]],[[215,7],[[10,[9]]]],[[200,7],[[10,[9]]]],[[200,7],[[10,[9]]]],[[272,7],8],[[271,7],8],[243,[[28,[18]]]],[110,11],[36,11],[88,11],[70,11],[235,11],[86,11],[246,11],[257,11],[56,11],[55,11],[83,11],[41,11],[240,11],[96,11],[97,11],[61,11],[38,11],[112,11],[234,11],[64,11],[44,11],[52,11],[49,11],[210,11],[62,11],[74,11],[215,11],[253,11],[75,11],[203,11],[201,11],[39,11],[87,11],[77,11],[208,11],[60,11],[90,11],[205,11],[114,11],[200,11],[82,11],[[]],[247,11],[251,11],[73,11],[80,11],[34,11],[111,11],[115,11],[242,11],[51,11],[238,11],[37,11],[46,11],[59,11],[241,11],[45,11],[255,11],[211,11],[68,11],[58,11],[89,11],[67,11],[72,11],[250,11],[50,11],[209,11],[79,11],[53,11],[254,11],[47,11],[245,11],[116,11],[118,11],[48,11],[113,11],[98,11],[256,11],[239,11],[85,11],[92,11],[66,11],[40,11],[243,11],[95,11],[57,11],[43,11],[237,11],[91,11],[252,11],[69,11],[78,11],[244,11],[248,11],[71,11],[35,11],[65,11],[117,11],[198,11],[109,11],[42,11],[93,11],[76,11],[54,11],[94,11],[63,11],[236,11],[81,11],[258,11],[84,11],[[]],[[]],[[1,204],[[28,[244]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,12,12,12],[[28,[203]]]],[[1,268,268],254],[[1,204],[[28,[209]]]],[[11,12,12],[[28,[201]]]],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,33],16],[[1,100,29],205],[[1,2],[[28,[198]]]],[[1,121],[[28,[241]]]],[[1,128,[16,[257]]],[[28,[258]]]],[[1,108],200],[[11,259],[[28,[5]]]],[[],100],[241,100],[258,100],[[],119],[240,119],[[],5],[258,5],[245,5],[[],100],[258,100],[245,100],[[11,259],[[28,[11]]]],[[198,259],[[16,[11]]]],[[247,29],[[28,[11]]]],[[210,259],[[28,[11]]]],[[211,29],[[28,[11]]]],[[215,29],[[28,[11]]]],[[247,29],11],[[215,29],11],[[198,259],[[28,[[16,[11]]]]]],[[],153],[258,153],[245,153],[[],119],[240,119],[[],100],[258,100],[245,100],[[],100],[241,100],[258,100],[11,31],[[],100],[258,100],[245,100],[[],119],[240,119],[[247,29,29],247],[[211,29,29],[[28,[211]]]],[[215,29,29],215],[11,200],[11,108],[[],[[16,[257]]]],[258,[[16,[257]]]],[245,[[16,[257]]]],[[],119],[241,119],[258,119],[[11,[202,[[99,[201]]]]],[[28,[11]]]],[[11,259],[[28,[5]]]],[[11,[202,[[99,[201]]]]],[[28,[5]]]],[11,[[28,[31]]]],[254,268],[[1,30],28],[[1,[202,[[99,[201]]]]],[[28,[203]]]],[[211,211],[[28,[211]]]],[[211,29],[[28,[211]]]],[[205,[273,[[24,[100]]]]]],[[247,[274,[29]]]],[[247,[101,[29]]]],[[247,275]],[[247,259],[[28,[29]]]],[[247,29]],[[247,[276,[29]]]],[[247,[277,[29]]]],[[247,[278,[29]]]],[203,[[28,[247]]]],[[211,275]],[[211,259],[[28,[29]]]],[[211,[101,[29]]]],[[211,[276,[29]]]],[[211,[274,[29]]]],[[211,[277,[29]]]],[[211,[278,[29]]]],[[211,29]],[[215,[276,[29]]]],[[215,[277,[29]]]],[[215,259],[[28,[29]]]],[[215,[274,[29]]]],[[215,[101,[29]]]],[[215,[278,[29]]]],[[215,275]],[[215,29]],[[250,279],[[28,[272]]]],[[247,29,259],28],[[1,12],201],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[198],[256],[247],[252],[215],[[237,1],[[99,[237]]]],[[244,1],[[99,[244]]]],[[205,1],[[99,[205]]]],[[238,1],[[99,[238]]]],[[248,1],[[99,[248]]]],[[254,1],[[99,[254]]]],[[241,1],[[99,[241]]]],[[258,1],[[99,[258]]]],[[245,1],[[99,[245]]]],[[257,1],[[99,[257]]]],[[240,1],[[99,[240]]]],[[198,1],[[99,[198]]]],[[236,1],[[99,[236]]]],[[239,1],[[99,[239]]]],[[242,1],[[99,[242]]]],[[251,1],[[99,[251]]]],[[253,1],[[99,[253]]]],[[256,1],[[99,[256]]]],[[234,1],[[99,[234]]]],[[246,1],[[99,[246]]]],[[209,1],[[99,[209]]]],[[247,1],[[99,[247]]]],[[210,1],[[99,[210]]]],[[203,1],[[99,[203]]]],[[235,1],[[99,[235]]]],[[255,1],[[99,[255]]]],[[211,1],[[99,[211]]]],[[252,1],[[99,[252]]]],[[250,1],[[99,[250]]]],[[201,1],[[99,[201]]]],[[243,1],[[99,[243]]]],[[215,1],[[99,[215]]]],[[200,1],[[99,[200]]]],[1,198],[[11,204],5],[11,5],[11,5],[11,[[28,[5]]]],[244,5],[198,5],[256,5],[247,5],[210,[[28,[5]]]],[211,[[28,[5]]]],[252,5],[215,5],[[11,11],5],[11,5],[[11,11],[[28,[5]]]],[11,5],[11,5],[[200,11],[[28,[5]]]],[200,[[28,[5]]]],[11,[[28,[5]]]],[237,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[238,5],[198,247],[210,[[28,[211]]]],0,[11,[[28,[209]]]],[198,280],[256,281],0,[252,282],0,[198,247],[210,[[28,[211]]]],[[11,259],[[28,[5]]]],[11,[[28,[29]]]],[244,29],[198,29],[256,29],[247,29],[210,[[28,[29]]]],[211,[[28,[29]]]],[252,29],[215,29],[211,[[28,[247]]]],[[11,259],[[28,[5]]]],[[254,254],254],[238,[[28,[[16,[30]]]]]],[203,[[28,[12]]]],[200,[[28,[12]]]],[[11,259],[[28,[5]]]],[254,254],[[1,5],237],[[1,[24,[100]]],244],[[1,[24,[100]]],205],[[1,[0,[103,0]],[16,[283]]],[[28,[238]]]],[[1,119,100,100],[[28,[241]]]],[[1,119,100,100,100,100,100,153,[16,[257]]],[[28,[258]]]],[[1,100,100,100,153,[16,[257]]],[[28,[245]]]],[[1,119,119,119,5],[[28,[240]]]],[1,198],[[1,268],251],[1,[[28,[269]]]],[[1,284],[[28,[256]]]],0,[[1,284],247],[[1,12],[[28,[203]]]],[[200,11],[[28,[255]]]],[[1,284],[[28,[252]]]],[[1,31,31,31],250],[[1,12],201],[[1,284],215],[1,200],[[31,31,31],272],[[1,[16,[12]],[16,[12]],[0,[270,103]]],[[28,[234]]]],[[1,29,20],[[28,[244]]]],[[1,29,20],[[28,[205]]]],[[1,[0,[103,0]],[16,[283]],[0,[20,103]]],[[28,[238]]]],[[1,119,100,100,100,100,100,153,[16,[257]],5],[[28,[258]]]],[[1,100,100,100,153,[16,[257]],5],[[28,[245]]]],0,[209,16],[238,26],[252,[[16,[2]]]],[[254,254],254],[11,1],[11,[[28,[255]]]],[254,268],[238],[1,28],[1,28],[[211,29],[[28,[211]]]],[11,[[28,[201]]]],[[244,29],28],[247,28],[[11,259,263],[[28,[11]]]],[[238,26],28],[[11,259,259],28],[[198,259,259],28],[[247,29,259],28],[[210,259,259],28],[[211,29,259],28],[[247,29,29,11],28],[[211,29,29,11],28],[[11,[202,[[99,[201]]]],259],28],0,[247,28],0,0,0,[11,[[28,[201]]]],[[254,254],254],[1,257],[211,[[28,[247]]]],[215,247],[[11,1],2],[[237,1],2],[[244,1],2],[[205,1],2],[[238,1],2],[[248,1],2],[[254,1],2],[[241,1],2],[[258,1],2],[[245,1],2],[[257,1],2],[[240,1],2],[[198,1],2],[[236,1],2],[[239,1],2],[[242,1],2],[[251,1],2],[[253,1],2],[[256,1],2],[[234,1],2],[[246,1],2],[[209,1],2],[[247,1],2],[[210,1],2],[[203,1],2],[[235,1],2],[[255,1],2],[[211,1],2],[[252,1],2],[[250,1],2],[[201,1],2],[[243,1],2],[[215,1],2],[[200,1],2],[[272,1],2],[[]],[201,[[28,[12]]]],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[271,1],[[28,[[13,[12]]]]]],[201,[[13,[12]]]],[271,[[13,[12]]]],[247,215],[211,[[28,[215]]]],[244,[[32,[100]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[209,6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[210,6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[211,6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[[14,[11]]],[[10,[6]]]],[[],10],[[],10],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[209,6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[210,6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[211,6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]],[[10,[6]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]],209],[[[14,[11]]]],[[[14,[11]]],210],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]],211],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[[14,[11]]]],[[],10],[11,[[10,[197,6]]]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[11,[[10,[197,6]]]],[211,[[28,[215]]]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[1,108],[[198,210],28],[[198,210],28],[251,268],[271,29],[198,247],[210,[[28,[211]]]],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,198],[280,29],[281,29],[282,29],[280,16],[281,16],[282,16],[280],[281],[282],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],19],[[],19],[[],19]],"c":[2300,2526,2527,2528,2529,2845,2893,3214,3215,3274,3279,3285,3307,5185,5186,5907,6551,6877],"p":[[3,"Python"],[6,"PyObject"],[3,"GILPool"],[3,"PythonVersionInfo"],[15,"bool"],[3,"PyDowncastError"],[3,"Formatter"],[6,"Result"],[3,"Error"],[4,"Result"],[3,"PyAny"],[15,"str"],[4,"Cow"],[8,"Into"],[4,"Ordering"],[4,"Option"],[3,"Demand"],[3,"String"],[3,"TypeId"],[8,"FnOnce"],[8,"Element"],[3,"PyBuffer"],[3,"Cell"],[15,"slice"],[3,"ReadOnlyCell"],[6,"c_void"],[4,"ElementType"],[6,"PyResult"],[15,"usize"],[3,"CStr"],[15,"isize"],[3,"Vec"],[3,"PyObject"],[3,"PyBaseException"],[3,"PyException"],[3,"PyStopAsyncIteration"],[3,"PyStopIteration"],[3,"PyGeneratorExit"],[3,"PyArithmeticError"],[3,"PyLookupError"],[3,"PyAssertionError"],[3,"PyAttributeError"],[3,"PyBufferError"],[3,"PyEOFError"],[3,"PyFloatingPointError"],[3,"PyOSError"],[3,"PyImportError"],[3,"PyModuleNotFoundError"],[3,"PyIndexError"],[3,"PyKeyError"],[3,"PyKeyboardInterrupt"],[3,"PyMemoryError"],[3,"PyNameError"],[3,"PyOverflowError"],[3,"PyRuntimeError"],[3,"PyRecursionError"],[3,"PyNotImplementedError"],[3,"PySyntaxError"],[3,"PyReferenceError"],[3,"PySystemError"],[3,"PySystemExit"],[3,"PyTypeError"],[3,"PyUnboundLocalError"],[3,"PyUnicodeError"],[3,"PyUnicodeDecodeError"],[3,"PyUnicodeEncodeError"],[3,"PyUnicodeTranslateError"],[3,"PyValueError"],[3,"PyZeroDivisionError"],[3,"PyBlockingIOError"],[3,"PyBrokenPipeError"],[3,"PyChildProcessError"],[3,"PyConnectionError"],[3,"PyConnectionAbortedError"],[3,"PyConnectionRefusedError"],[3,"PyConnectionResetError"],[3,"PyFileExistsError"],[3,"PyFileNotFoundError"],[3,"PyInterruptedError"],[3,"PyIsADirectoryError"],[3,"PyNotADirectoryError"],[3,"PyPermissionError"],[3,"PyProcessLookupError"],[3,"PyTimeoutError"],[3,"PyEnvironmentError"],[3,"PyIOError"],[3,"PyWarning"],[3,"PyUserWarning"],[3,"PyDeprecationWarning"],[3,"PyPendingDeprecationWarning"],[3,"PySyntaxWarning"],[3,"PyRuntimeWarning"],[3,"PyFutureWarning"],[3,"PyImportWarning"],[3,"PyUnicodeWarning"],[3,"PyBytesWarning"],[3,"PyResourceWarning"],[3,"PyEncodingWarning"],[3,"Py"],[15,"u8"],[3,"Range"],[8,"PyErrArguments"],[8,"Send"],[8,"Sync"],[3,"PyErr"],[3,"Utf8Error"],[8,"Error"],[3,"PyTypeObject"],[3,"CancelledError"],[3,"InvalidStateError"],[3,"TimeoutError"],[3,"IncompleteReadError"],[3,"LimitOverrunError"],[3,"QueueEmpty"],[3,"QueueFull"],[3,"herror"],[3,"gaierror"],[3,"timeout"],[15,"i32"],[15,"i8"],[15,"i64"],[3,"Py_buffer"],[4,"c_void"],[19,"PyMethodDefPointer"],[3,"PyMethodDef"],[3,"PyCodeObject"],[3,"Py_complex"],[15,"f64"],[3,"PyConfig"],[3,"PyStatus"],[3,"PyWideStringList"],[3,"PyDateTime_CAPI"],[3,"PyGetSetDef"],[3,"PyMemberDef"],[3,"PyThreadState"],[3,"PyFrameObject"],[3,"PyTryBlock"],[4,"PyGILState_STATE"],[3,"PyHash_FuncDef"],[3,"PyHeapTypeObject"],[3,"_inittab"],[3,"PyInterpreterState"],[15,"u64"],[4,"PyMemAllocatorDomain"],[3,"PyMemAllocatorEx"],[3,"PyModuleDef"],[3,"PyObjectArenaAllocator"],[3,"PyVarObject"],[4,"FILE"],[3,"PyPreConfig"],[3,"PyCompilerFlags"],[3,"PyStructSequence_Desc"],[15,"u32"],[3,"PyType_Spec"],[15,"u16"],[15,"never"],[3,"PyLongObject"],[3,"PyASCIIObject"],[3,"PyByteArrayObject"],[3,"PyComplexObject"],[3,"PyDateTime_Delta"],[3,"_PyDateTime_BaseTime"],[3,"PyDateTime_Time"],[3,"PyDateTime_Date"],[3,"_PyDateTime_BaseDateTime"],[3,"PyDateTime_DateTime"],[3,"PyModuleDef_Base"],[3,"PyModuleDef_Slot"],[3,"PyType_Slot"],[4,"PySendResult"],[3,"PyStructSequence_Field"],[3,"PyBytesObject"],[3,"PyFutureFeatures"],[3,"PyGenObject"],[3,"_frozen"],[4,"_PyStatus_TYPE"],[3,"PyListObject"],[3,"PyNumberMethods"],[3,"PySequenceMethods"],[3,"PyMappingMethods"],[3,"PyAsyncMethods"],[3,"PyBufferProcs"],[3,"_PyErr_StackItem"],[3,"setentry"],[3,"PySetObject"],[3,"PyDictObject"],[3,"PyBaseExceptionObject"],[3,"PySyntaxErrorObject"],[3,"PyImportErrorObject"],[3,"PyUnicodeErrorObject"],[3,"PySystemExitObject"],[3,"PyOSErrorObject"],[3,"PyStopIterationObject"],[8,"Ungil"],[8,"PyNativeType"],[8,"PyTypeInfo"],[8,"PyTryFrom"],[3,"PyDict"],[8,"FromPyPointer"],[3,"PyType"],[3,"PyString"],[8,"IntoPy"],[3,"PyModule"],[8,"AsPyPointer"],[3,"PyBytes"],[8,"AsRef"],[8,"Sized"],[3,"PanicException"],[3,"PyIterator"],[3,"PyMapping"],[3,"PySequence"],[8,"PyClass"],[3,"PyRef"],[3,"PyRefMut"],[3,"PyTuple"],[8,"FromPyObject"],[3,"TryFromSliceError"],[3,"TryFromIntError"],[8,"Debug"],[3,"IntoInnerError"],[3,"NulError"],[3,"PyBorrowMutError"],[3,"ParseBoolError"],[3,"FromUtf16Error"],[3,"PyBorrowError"],[3,"ParseFloatError"],[4,"Infallible"],[3,"AddrParseError"],[3,"IntoStringError"],[3,"Error"],[3,"FromUtf8Error"],[3,"DecodeUtf16Error"],[3,"ParseIntError"],[3,"PyCFunction"],[3,"PyLong"],[3,"PyDictKeys"],[3,"PyBool"],[3,"PyCapsule"],[3,"PyDictValues"],[3,"PyDelta"],[3,"PyDate"],[3,"PyDictItems"],[3,"PyTraceback"],[3,"PyByteArray"],[3,"PyTime"],[3,"PyFunction"],[3,"PyList"],[3,"PyCode"],[3,"PyCell"],[3,"PySlice"],[3,"PyFloat"],[3,"PySet"],[3,"PyFrame"],[3,"PyComplex"],[3,"PySuper"],[3,"PyFrozenSet"],[3,"PyTzInfo"],[3,"PyDateTime"],[8,"ToPyObject"],[3,"PyClassInitializer"],[3,"PyVisit"],[3,"PyTraverseError"],[4,"CompareOp"],[6,"c_int"],[3,"PyNativeTypeInitializer"],[3,"GILProtected"],[3,"GILOnceCell"],[6,"c_double"],[3,"PyFrozenSetBuilder"],[8,"Fn"],[4,"PyStringData"],[3,"PySliceIndices"],[8,"SliceIndex"],[3,"RangeInclusive"],[3,"RangeFull"],[3,"RangeToInclusive"],[3,"RangeFrom"],[3,"RangeTo"],[6,"c_long"],[3,"PyDictIterator"],[3,"PyFrozenSetIterator"],[3,"PySetIterator"],[3,"CString"],[8,"IntoIterator"],[6,"PyCFunction"],[6,"PyCFunctionWithKeywords"],[13,"SignedInteger"],[13,"UnsignedInteger"],[13,"Float"],[8,"IntoPyPointer"],[8,"PyTryInto"],[3,"PyCompactUnicodeObject"],[3,"PyUnicodeObject"],[19,"PyUnicodeObjectData"],[3,"PyFloatObject"],[3,"PyCFunctionObject"],[3,"PySliceObject"],[3,"wrapperbase"],[3,"PyDescrObject"],[3,"PyMethodDescrObject"],[3,"PyMemberDescrObject"],[3,"PyGetSetDescrObject"],[3,"PyWrapperDescrObject"],[3,"PyFunctionObject"],[3,"PyCMethodObject"],[3,"PyTupleObject"],[3,"PyWeakReference"],[3,"_PyOpcache"],[3,"PyDictKeysObject"],[4,"IterNextOutput"],[4,"IterANextOutput"],[8,"PyObjectInit"],[8,"PyDateAccess"],[8,"PyDeltaAccess"],[8,"PyTimeAccess"],[8,"PyTzInfoAccess"],[8,"IntoPyDict"]],"a":{"intopycallbackoutput":[184]}},\ "pyo3_ffi":{"doc":"Raw FFI declarations for Python’s C API.","t":"RRRRRRRRRRRRRRRRRRMMMMMMMMMRRRRRRRRRRRRRRRRRRRNNNNNNRRRRRRRRRDFFFFFFFFHDRRRRRRRRRRRRRRRRRRRRRDHFFHDFFFFFFFFHDFFFFFFFFHHDFFFFFFFFFFFFFHGMDGMFFFFFFFFFFFFHGMDFFFHFFHFFGFFFFFFFFFFFHHDFFFFFFFHFFFFFFFFFFFFFFFFFFDFFDDFFFFFFFHDFFFFFFFFFFHFFFFFHFFFFFFHFHFDFFFFFFFFFFFDDDFFFFFFFFFFFDFFFFFFDFFFFFHHHHDFHDFHHHHFHFFFFFFFFFFFFFFFFFFFFHFFHHFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHFFFFFFFFFFFFFHDFFFFFFFFFHDGFFFFFFFFFHFFFHDFFFFFFFFFFFFFFHDFFFFFFFNFENDFFFHDDHDFDFDFFFFFFFFHFFFFFFFFFFFFHFFDFFFFFFFFFFFFFHDHFFFFFFFFFFFFFFFFHDHFFFFFFFFFFFFFFFFFFFFFFFFHHDFFFFFFFFFFFFFFEDFFFFFFFFFFFDHFFFFHDTDHDDRFDHFFFFFFFFFFFFFFFFFFFFFFFHDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFFFFFFFFFFFDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFRFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDFFHHFHHFFFFFFFFFFFFFFFFFFFFEFFHDFFFFFFFFFFFFFFFFFFFFHDFFFFFFFRFFFHDFFFFFHFFFFDFFFFFFFDGDDFFFFFFFFHDFFFFFFFFFFFFFFFDFFDFFFFFFFFFFFFFFFFFHRRRRRRRRDHDFFFFFFFFFFFHDDFFFFFFFFFFFFFFFFFFFDDHFFFFFFFFFFFFFFFFFDHDTFFFFFFFFRFRFRFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFHRFDFFFCFFFFFFFDFFDHRFHFFFFHRFFFFFFRRRRRRHFFHRFFFFFFFFHHFFHRRFFFFFFFFFFFFFRRRHHFFHFFFFHHFFFFFHRRFFFRFFHHFFHRFFFHFFFFFFFFFRRRRRRRRRRRRRRRRRRRRRRRRFFGGGGRHHHFFFRRRRRDDRRRRGGRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRGRRRRRRRRRRRRRRRRRRRRRRRRRRRRRGGGRRRMMMMMMFGMGMFFHDDFFFFFFDFFGRFFFFFFFFFFFFFHHHHFFFFFFFFFFFFFFDFFFFHFFENNNFFFFDHHHFFFFFFFHFFFFFFFFMMMMDMDMMMMMMGMMMMMMMMMMMMMMMMMLMLMMMMMMMMMGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMLLLLLLLLLLLGGGMMMMMMMMMMMMMMMMMMLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMGGGGGMMMMMMMMMMMMMMMMMMMGMMMMMMMMMMMMMMMGGMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMGMLMMGMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMLGMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMGGMMMMMMMMMMMMMMGMMMMMLMMMGGGMMMMMGMLLLLLGGDGMMMMMMMMMMMMMMMMMGGGGMMMMMMMMMAMMMMMMMMMGMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMGMMMMMMMMMMMMMGMGMMMMMMMMMMDGGMMMMMLLRDFFRRRRRRRRRRRRRRRRRRRRRRRLLLLLMLLMLLMMLLLML","n":["CO_ASYNC_GENERATOR","CO_COROUTINE","CO_FUTURE_ABSOLUTE_IMPORT","CO_FUTURE_BARRY_AS_BDFL","CO_FUTURE_DIVISION","CO_FUTURE_GENERATOR_STOP","CO_FUTURE_PRINT_FUNCTION","CO_FUTURE_UNICODE_LITERALS","CO_FUTURE_WITH_STATEMENT","CO_GENERATOR","CO_ITERABLE_COROUTINE","CO_MAXBLOCKS","CO_NESTED","CO_NEWLOCALS","CO_NOFREE","CO_OPTIMIZED","CO_VARARGS","CO_VARKEYWORDS","DateTimeType","DateTime_FromDateAndTime","DateTime_FromDateAndTimeAndFold","DateTime_FromTimestamp","DateType","Date_FromDate","Date_FromTimestamp","DeltaType","Delta_FromDelta","FUTURE_ABSOLUTE_IMPORT","FUTURE_BARRY_AS_BDFL","FUTURE_DIVISION","FUTURE_GENERATORS","FUTURE_GENERATOR_STOP","FUTURE_NESTED_SCOPES","FUTURE_PRINT_FUNCTION","FUTURE_UNICODE_LITERALS","FUTURE_WITH_STATEMENT","MAX_CO_EXTRA_USERS","METH_CLASS","METH_COEXIST","METH_FASTCALL","METH_KEYWORDS","METH_METHOD","METH_NOARGS","METH_O","METH_STATIC","METH_VARARGS","PYGEN_ERROR","PYGEN_NEXT","PYGEN_RETURN","PYMEM_DOMAIN_MEM","PYMEM_DOMAIN_OBJ","PYMEM_DOMAIN_RAW","PYOS_STACK_MARGIN","PYTHON_ABI_VERSION","PYTHON_API_VERSION","PY_ITERSEARCH_CONTAINS","PY_ITERSEARCH_COUNT","PY_ITERSEARCH_INDEX","PY_SSIZE_T_MAX","PY_SSIZE_T_MIN","PY_STDIOTEXTMODE","PyASCIIObject","PyAnySet_Check","PyAnySet_CheckExact","PyArg_Parse","PyArg_ParseTuple","PyArg_ParseTupleAndKeywords","PyArg_UnpackTuple","PyArg_ValidateKeywordArguments","PyAsyncGen_CheckExact","PyAsyncGen_Type","PyAsyncMethods","PyBUF_ANY_CONTIGUOUS","PyBUF_CONTIG","PyBUF_CONTIG_RO","PyBUF_C_CONTIGUOUS","PyBUF_FORMAT","PyBUF_FULL","PyBUF_FULL_RO","PyBUF_F_CONTIGUOUS","PyBUF_INDIRECT","PyBUF_MAX_NDIM","PyBUF_ND","PyBUF_READ","PyBUF_RECORDS","PyBUF_RECORDS_RO","PyBUF_SIMPLE","PyBUF_STRIDED","PyBUF_STRIDED_RO","PyBUF_STRIDES","PyBUF_WRITABLE","PyBUF_WRITE","PyBUF_WRITEABLE","PyBaseExceptionObject","PyBaseObject_Type","PyBool_Check","PyBool_FromLong","PyBool_Type","PyBufferProcs","PyBuffer_FillContiguousStrides","PyBuffer_FillInfo","PyBuffer_FromContiguous","PyBuffer_GetPointer","PyBuffer_IsContiguous","PyBuffer_Release","PyBuffer_SizeFromFormat","PyBuffer_ToContiguous","PyByteArrayIter_Type","PyByteArrayObject","PyByteArray_AsString","PyByteArray_Check","PyByteArray_CheckExact","PyByteArray_Concat","PyByteArray_FromObject","PyByteArray_FromStringAndSize","PyByteArray_Resize","PyByteArray_Size","PyByteArray_Type","PyBytesIter_Type","PyBytesObject","PyBytes_AsString","PyBytes_AsStringAndSize","PyBytes_Check","PyBytes_CheckExact","PyBytes_Concat","PyBytes_ConcatAndDel","PyBytes_DecodeEscape","PyBytes_FromFormat","PyBytes_FromObject","PyBytes_FromString","PyBytes_FromStringAndSize","PyBytes_Repr","PyBytes_Size","PyBytes_Type","PyCFunction","PyCFunction","PyCFunctionObject","PyCFunctionWithKeywords","PyCFunctionWithKeywords","PyCFunction_Call","PyCFunction_Check","PyCFunction_CheckExact","PyCFunction_GET_CLASS","PyCFunction_GET_FLAGS","PyCFunction_GET_FUNCTION","PyCFunction_GET_SELF","PyCFunction_GetFlags","PyCFunction_GetFunction","PyCFunction_GetSelf","PyCFunction_New","PyCFunction_NewEx","PyCFunction_Type","PyCMethod","PyCMethod","PyCMethodObject","PyCMethod_Check","PyCMethod_CheckExact","PyCMethod_New","PyCMethod_Type","PyCallIter_Check","PyCallIter_New","PyCallIter_Type","PyCallable_Check","PyCapsule_CheckExact","PyCapsule_Destructor","PyCapsule_GetContext","PyCapsule_GetDestructor","PyCapsule_GetName","PyCapsule_GetPointer","PyCapsule_Import","PyCapsule_IsValid","PyCapsule_New","PyCapsule_SetContext","PyCapsule_SetDestructor","PyCapsule_SetName","PyCapsule_SetPointer","PyCapsule_Type","PyClassMethodDescr_Type","PyCodeObject","PyCode_Addr2Line","PyCode_Check","PyCode_GetNumFree","PyCode_New","PyCode_NewEmpty","PyCode_NewWithPosOnlyArgs","PyCode_Optimize","PyCode_Type","PyCodec_BackslashReplaceErrors","PyCodec_Decode","PyCodec_Decoder","PyCodec_Encode","PyCodec_Encoder","PyCodec_IgnoreErrors","PyCodec_IncrementalDecoder","PyCodec_IncrementalEncoder","PyCodec_KnownEncoding","PyCodec_LookupError","PyCodec_Register","PyCodec_RegisterError","PyCodec_ReplaceErrors","PyCodec_StreamReader","PyCodec_StreamWriter","PyCodec_StrictErrors","PyCodec_Unregister","PyCodec_XMLCharRefReplaceErrors","PyCompactUnicodeObject","PyCompile_OpcodeStackEffect","PyCompile_OpcodeStackEffectWithJump","PyCompilerFlags","PyComplexObject","PyComplex_AsCComplex","PyComplex_Check","PyComplex_CheckExact","PyComplex_FromCComplex","PyComplex_FromDoubles","PyComplex_ImagAsDouble","PyComplex_RealAsDouble","PyComplex_Type","PyConfig","PyConfig_Clear","PyConfig_InitIsolatedConfig","PyConfig_InitPythonConfig","PyConfig_Read","PyConfig_SetArgv","PyConfig_SetBytesArgv","PyConfig_SetBytesString","PyConfig_SetString","PyConfig_SetWideStringList","PyContextToken_CheckExact","PyContextToken_Type","PyContextVar_CheckExact","PyContextVar_Get","PyContextVar_New","PyContextVar_Reset","PyContextVar_Set","PyContextVar_Type","PyContext_CheckExact","PyContext_Copy","PyContext_CopyCurrent","PyContext_Enter","PyContext_Exit","PyContext_New","PyContext_Type","PyCoro_CheckExact","PyCoro_Type","PyDateTimeAPI","PyDateTime_CAPI","PyDateTime_Check","PyDateTime_CheckExact","PyDateTime_DATE_GET_FOLD","PyDateTime_DATE_GET_HOUR","PyDateTime_DATE_GET_MICROSECOND","PyDateTime_DATE_GET_MINUTE","PyDateTime_DATE_GET_SECOND","PyDateTime_DATE_GET_TZINFO","PyDateTime_DELTA_GET_DAYS","PyDateTime_DELTA_GET_MICROSECONDS","PyDateTime_DELTA_GET_SECONDS","PyDateTime_Date","PyDateTime_DateTime","PyDateTime_Delta","PyDateTime_FromTimestamp","PyDateTime_GET_DAY","PyDateTime_GET_MONTH","PyDateTime_GET_YEAR","PyDateTime_IMPORT","PyDateTime_TIME_GET_FOLD","PyDateTime_TIME_GET_HOUR","PyDateTime_TIME_GET_MICROSECOND","PyDateTime_TIME_GET_MINUTE","PyDateTime_TIME_GET_SECOND","PyDateTime_TIME_GET_TZINFO","PyDateTime_Time","PyDateTime_TimeZone_UTC","PyDate_Check","PyDate_CheckExact","PyDate_FromTimestamp","PyDelta_Check","PyDelta_CheckExact","PyDescrObject","PyDescr_NewClassMethod","PyDescr_NewGetSet","PyDescr_NewMember","PyDescr_NewMethod","PyDictItems_Check","PyDictItems_Type","PyDictIterItem_Type","PyDictIterKey_Type","PyDictIterValue_Type","PyDictKeysObject","PyDictKeys_Check","PyDictKeys_Type","PyDictObject","PyDictProxy_New","PyDictProxy_Type","PyDictRevIterItem_Type","PyDictRevIterKey_Type","PyDictRevIterValue_Type","PyDictValues_Check","PyDictValues_Type","PyDictViewSet_Check","PyDict_Check","PyDict_CheckExact","PyDict_Clear","PyDict_Contains","PyDict_Copy","PyDict_DelItem","PyDict_DelItemString","PyDict_GetItem","PyDict_GetItemString","PyDict_GetItemWithError","PyDict_Items","PyDict_Keys","PyDict_Merge","PyDict_MergeFromSeq2","PyDict_New","PyDict_Next","PyDict_SetItem","PyDict_SetItemString","PyDict_Size","PyDict_Type","PyDict_Update","PyDict_Values","PyEllipsis_Type","PyEnum_Type","PyErr_BadArgument","PyErr_BadInternalCall","PyErr_CheckSignals","PyErr_Clear","PyErr_Display","PyErr_ExceptionMatches","PyErr_Fetch","PyErr_Format","PyErr_GetExcInfo","PyErr_GivenExceptionMatches","PyErr_NewException","PyErr_NewExceptionWithDoc","PyErr_NoMemory","PyErr_NormalizeException","PyErr_Occurred","PyErr_Print","PyErr_PrintEx","PyErr_ProgramText","PyErr_ResourceWarning","PyErr_Restore","PyErr_SetExcInfo","PyErr_SetFromErrno","PyErr_SetFromErrnoWithFilename","PyErr_SetFromErrnoWithFilenameObject","PyErr_SetFromErrnoWithFilenameObjects","PyErr_SetImportError","PyErr_SetImportErrorSubclass","PyErr_SetInterrupt","PyErr_SetInterruptEx","PyErr_SetNone","PyErr_SetObject","PyErr_SetString","PyErr_SyntaxLocation","PyErr_SyntaxLocationEx","PyErr_WarnEx","PyErr_WarnExplicit","PyErr_WarnFormat","PyErr_WriteUnraisable","PyEval_AcquireLock","PyEval_AcquireThread","PyEval_CallFunction","PyEval_CallMethod","PyEval_CallObject","PyEval_CallObjectWithKeywords","PyEval_EvalCode","PyEval_EvalCodeEx","PyEval_EvalFrame","PyEval_EvalFrameEx","PyEval_GetBuiltins","PyEval_GetCallStats","PyEval_GetFrame","PyEval_GetFuncDesc","PyEval_GetFuncName","PyEval_GetGlobals","PyEval_GetLocals","PyEval_InitThreads","PyEval_ReleaseLock","PyEval_ReleaseThread","PyEval_RestoreThread","PyEval_SaveThread","PyEval_SetProfile","PyEval_SetTrace","PyEval_ThreadsInitialized","PyExc_ArithmeticError","PyExc_AssertionError","PyExc_AttributeError","PyExc_BaseException","PyExc_BlockingIOError","PyExc_BrokenPipeError","PyExc_BufferError","PyExc_BytesWarning","PyExc_ChildProcessError","PyExc_ConnectionAbortedError","PyExc_ConnectionError","PyExc_ConnectionRefusedError","PyExc_ConnectionResetError","PyExc_DeprecationWarning","PyExc_EOFError","PyExc_EncodingWarning","PyExc_EnvironmentError","PyExc_Exception","PyExc_FileExistsError","PyExc_FileNotFoundError","PyExc_FloatingPointError","PyExc_FutureWarning","PyExc_GeneratorExit","PyExc_IOError","PyExc_ImportError","PyExc_ImportWarning","PyExc_IndentationError","PyExc_IndexError","PyExc_InterruptedError","PyExc_IsADirectoryError","PyExc_KeyError","PyExc_KeyboardInterrupt","PyExc_LookupError","PyExc_MemoryError","PyExc_ModuleNotFoundError","PyExc_NameError","PyExc_NotADirectoryError","PyExc_NotImplementedError","PyExc_OSError","PyExc_OverflowError","PyExc_PendingDeprecationWarning","PyExc_PermissionError","PyExc_ProcessLookupError","PyExc_RecursionError","PyExc_RecursionErrorInst","PyExc_ReferenceError","PyExc_ResourceWarning","PyExc_RuntimeError","PyExc_RuntimeWarning","PyExc_StopAsyncIteration","PyExc_StopIteration","PyExc_SyntaxError","PyExc_SyntaxWarning","PyExc_SystemError","PyExc_SystemExit","PyExc_TabError","PyExc_TimeoutError","PyExc_TypeError","PyExc_UnboundLocalError","PyExc_UnicodeDecodeError","PyExc_UnicodeEncodeError","PyExc_UnicodeError","PyExc_UnicodeTranslateError","PyExc_UnicodeWarning","PyExc_UserWarning","PyExc_ValueError","PyExc_Warning","PyExc_ZeroDivisionError","PyExceptionClass_Check","PyExceptionInstance_Check","PyExceptionInstance_Class","PyException_GetCause","PyException_GetContext","PyException_GetTraceback","PyException_SetCause","PyException_SetContext","PyException_SetTraceback","PyFile_FromFd","PyFile_GetLine","PyFile_WriteObject","PyFile_WriteString","PyFilter_Type","PyFloatObject","PyFloat_AS_DOUBLE","PyFloat_AsDouble","PyFloat_Check","PyFloat_CheckExact","PyFloat_FromDouble","PyFloat_FromString","PyFloat_GetInfo","PyFloat_GetMax","PyFloat_GetMin","PyFloat_Type","PyFrameObject","PyFrameState","PyFrame_BlockPop","PyFrame_BlockSetup","PyFrame_Check","PyFrame_FastToLocals","PyFrame_FastToLocalsWithError","PyFrame_GetCode","PyFrame_GetLineNumber","PyFrame_LocalsToFast","PyFrame_New","PyFrame_Type","PyFrozenSet_Check","PyFrozenSet_CheckExact","PyFrozenSet_New","PyFrozenSet_Type","PyFunctionObject","PyFunction_Check","PyFunction_GetAnnotations","PyFunction_GetClosure","PyFunction_GetCode","PyFunction_GetDefaults","PyFunction_GetGlobals","PyFunction_GetKwDefaults","PyFunction_GetModule","PyFunction_New","PyFunction_NewWithQualName","PyFunction_SetAnnotations","PyFunction_SetClosure","PyFunction_SetDefaults","PyFunction_SetKwDefaults","PyFunction_Type","PyFutureFeatures","PyGC_Collect","PyGC_Disable","PyGC_Enable","PyGC_IsEnabled","PyGILState_Check","PyGILState_Ensure","PyGILState_GetThisThreadState","PyGILState_LOCKED","PyGILState_Release","PyGILState_STATE","PyGILState_UNLOCKED","PyGenObject","PyGen_Check","PyGen_CheckExact","PyGen_New","PyGen_Type","PyGetSetDef","PyGetSetDescrObject","PyGetSetDescr_Type","PyHash_FuncDef","PyHash_GetFuncDef","PyHeapTypeObject","PyHeapType_GET_MEMBERS","PyImportErrorObject","PyImport_AddModule","PyImport_AddModuleObject","PyImport_AppendInittab","PyImport_ExecCodeModule","PyImport_ExecCodeModuleEx","PyImport_ExecCodeModuleObject","PyImport_ExecCodeModuleWithPathnames","PyImport_ExtendInittab","PyImport_FrozenModules","PyImport_GetImporter","PyImport_GetMagicNumber","PyImport_GetMagicTag","PyImport_GetModuleDict","PyImport_Import","PyImport_ImportFrozenModule","PyImport_ImportFrozenModuleObject","PyImport_ImportModule","PyImport_ImportModuleEx","PyImport_ImportModuleLevel","PyImport_ImportModuleLevelObject","PyImport_ImportModuleNoBlock","PyImport_Inittab","PyImport_ReloadModule","PyIndex_Check","PyInterpreterState","PyInterpreterState_Clear","PyInterpreterState_Delete","PyInterpreterState_Get","PyInterpreterState_GetDict","PyInterpreterState_GetID","PyInterpreterState_Head","PyInterpreterState_Main","PyInterpreterState_New","PyInterpreterState_Next","PyInterpreterState_ThreadHead","PyIter_Check","PyIter_Next","PyIter_Send","PyListIter_Type","PyListObject","PyListRevIter_Type","PyList_Append","PyList_AsTuple","PyList_Check","PyList_CheckExact","PyList_GET_ITEM","PyList_GET_SIZE","PyList_GetItem","PyList_GetSlice","PyList_Insert","PyList_New","PyList_Reverse","PyList_SET_ITEM","PyList_SetItem","PyList_SetSlice","PyList_Size","PyList_Sort","PyList_Type","PyLongObject","PyLongRangeIter_Type","PyLong_AsDouble","PyLong_AsLong","PyLong_AsLongAndOverflow","PyLong_AsLongLong","PyLong_AsLongLongAndOverflow","PyLong_AsSize_t","PyLong_AsSsize_t","PyLong_AsUnsignedLong","PyLong_AsUnsignedLongLong","PyLong_AsUnsignedLongLongMask","PyLong_AsUnsignedLongMask","PyLong_AsVoidPtr","PyLong_Check","PyLong_CheckExact","PyLong_FromDouble","PyLong_FromLong","PyLong_FromLongLong","PyLong_FromSize_t","PyLong_FromSsize_t","PyLong_FromString","PyLong_FromUnsignedLong","PyLong_FromUnsignedLongLong","PyLong_FromVoidPtr","PyLong_GetInfo","PyLong_Type","PyMap_Type","PyMappingMethods","PyMapping_Check","PyMapping_DelItem","PyMapping_DelItemString","PyMapping_GetItemString","PyMapping_HasKey","PyMapping_HasKeyString","PyMapping_Items","PyMapping_Keys","PyMapping_Length","PyMapping_SetItemString","PyMapping_Size","PyMapping_Values","PyMarshal_ReadObjectFromString","PyMarshal_WriteObjectToString","PyMemAllocatorDomain","PyMemAllocatorEx","PyMem_Calloc","PyMem_Free","PyMem_GetAllocator","PyMem_Malloc","PyMem_RawCalloc","PyMem_RawFree","PyMem_RawMalloc","PyMem_RawRealloc","PyMem_Realloc","PyMem_SetAllocator","PyMem_SetupDebugHooks","PyMemberDescrObject","PyMemberDescr_Type","PyMemoryView_Check","PyMemoryView_FromMemory","PyMemoryView_FromObject","PyMemoryView_GetContiguous","PyMemoryView_Type","PyMethodDef","PyMethodDefPointer","PyMethodDescrObject","PyMethodDescr_Type","PyModuleDef","PyModuleDef_Base","PyModuleDef_HEAD_INIT","PyModuleDef_Init","PyModuleDef_Slot","PyModuleDef_Type","PyModule_AddFunctions","PyModule_AddIntConstant","PyModule_AddObject","PyModule_AddObjectRef","PyModule_AddStringConstant","PyModule_AddType","PyModule_Check","PyModule_CheckExact","PyModule_Create","PyModule_Create2","PyModule_ExecDef","PyModule_FromDefAndSpec","PyModule_FromDefAndSpec2","PyModule_GetDef","PyModule_GetDict","PyModule_GetFilename","PyModule_GetFilenameObject","PyModule_GetName","PyModule_GetNameObject","PyModule_GetState","PyModule_New","PyModule_NewObject","PyModule_SetDocString","PyModule_Type","PyNumberMethods","PyNumber_Absolute","PyNumber_Add","PyNumber_And","PyNumber_AsSsize_t","PyNumber_Check","PyNumber_Divmod","PyNumber_Float","PyNumber_FloorDivide","PyNumber_InPlaceAdd","PyNumber_InPlaceAnd","PyNumber_InPlaceFloorDivide","PyNumber_InPlaceLshift","PyNumber_InPlaceMatrixMultiply","PyNumber_InPlaceMultiply","PyNumber_InPlaceOr","PyNumber_InPlacePower","PyNumber_InPlaceRemainder","PyNumber_InPlaceRshift","PyNumber_InPlaceSubtract","PyNumber_InPlaceTrueDivide","PyNumber_InPlaceXor","PyNumber_Index","PyNumber_Invert","PyNumber_Long","PyNumber_Lshift","PyNumber_MatrixMultiply","PyNumber_Multiply","PyNumber_Negative","PyNumber_Or","PyNumber_Positive","PyNumber_Power","PyNumber_Remainder","PyNumber_Rshift","PyNumber_Subtract","PyNumber_ToBase","PyNumber_TrueDivide","PyNumber_Xor","PyOSErrorObject","PyOS_AfterFork","PyOS_AfterFork_Child","PyOS_AfterFork_Parent","PyOS_BeforeFork","PyOS_FSPath","PyOS_InterruptOccurred","PyOS_double_to_string","PyOS_getsig","PyOS_setsig","PyOS_string_to_double","PyOS_strtol","PyOS_strtoul","PyObject","PyObjectArenaAllocator","PyObject_ASCII","PyObject_AsFileDescriptor","PyObject_Bytes","PyObject_Call","PyObject_CallFinalizer","PyObject_CallFinalizerFromDealloc","PyObject_CallFunction","PyObject_CallFunctionObjArgs","PyObject_CallMethod","PyObject_CallMethodNoArgs","PyObject_CallMethodObjArgs","PyObject_CallMethodOneArg","PyObject_CallNoArgs","PyObject_CallObject","PyObject_CallOneArg","PyObject_Calloc","PyObject_CheckBuffer","PyObject_ClearWeakRefs","PyObject_CopyData","PyObject_DelAttr","PyObject_DelAttrString","PyObject_DelItem","PyObject_DelItemString","PyObject_Dir","PyObject_Format","PyObject_Free","PyObject_GC_Del","PyObject_GC_Track","PyObject_GC_UnTrack","PyObject_GET_WEAKREFS_LISTPTR","PyObject_GenericGetAttr","PyObject_GenericGetDict","PyObject_GenericSetAttr","PyObject_GenericSetDict","PyObject_GetArenaAllocator","PyObject_GetAttr","PyObject_GetAttrString","PyObject_GetBuffer","PyObject_GetItem","PyObject_GetIter","PyObject_HEAD_INIT","PyObject_HasAttr","PyObject_HasAttrString","PyObject_Hash","PyObject_HashNotImplemented","PyObject_IS_GC","PyObject_Init","PyObject_InitVar","PyObject_IsInstance","PyObject_IsSubclass","PyObject_IsTrue","PyObject_Length","PyObject_LengthHint","PyObject_Malloc","PyObject_Not","PyObject_Print","PyObject_Realloc","PyObject_Repr","PyObject_RichCompare","PyObject_RichCompareBool","PyObject_SelfIter","PyObject_SetArenaAllocator","PyObject_SetAttr","PyObject_SetAttrString","PyObject_SetItem","PyObject_Size","PyObject_Str","PyObject_Type","PyObject_TypeCheck","PyObject_Vectorcall","PyObject_VectorcallDict","PyObject_VectorcallMethod","PyPreConfig","PyPreConfig_InitIsolatedConfig","PyPreConfig_InitPythonConfig","PyProperty_Type","PyRangeIter_Type","PyRange_Check","PyRange_Type","PyReversed_Type","PyRun_AnyFile","PyRun_AnyFileEx","PyRun_AnyFileExFlags","PyRun_AnyFileFlags","PyRun_File","PyRun_FileEx","PyRun_FileExFlags","PyRun_FileFlags","PyRun_InteractiveLoop","PyRun_InteractiveLoopFlags","PyRun_InteractiveOne","PyRun_InteractiveOneFlags","PyRun_InteractiveOneObject","PyRun_SimpleFile","PyRun_SimpleFileEx","PyRun_SimpleFileExFlags","PyRun_SimpleString","PyRun_SimpleStringFlags","PyRun_String","PyRun_StringFlags","PySendResult","PySeqIter_Check","PySeqIter_New","PySeqIter_Type","PySequenceMethods","PySequence_Check","PySequence_Concat","PySequence_Contains","PySequence_Count","PySequence_DelItem","PySequence_DelSlice","PySequence_Fast","PySequence_GetItem","PySequence_GetSlice","PySequence_In","PySequence_InPlaceConcat","PySequence_InPlaceRepeat","PySequence_Index","PySequence_Length","PySequence_List","PySequence_Repeat","PySequence_SetItem","PySequence_SetSlice","PySequence_Size","PySequence_Tuple","PySetIter_Type","PySetObject","PySet_Add","PySet_Check","PySet_CheckExact","PySet_Clear","PySet_Contains","PySet_Discard","PySet_GET_SIZE","PySet_MINSIZE","PySet_New","PySet_Pop","PySet_Size","PySet_Type","PySliceObject","PySlice_AdjustIndices","PySlice_Check","PySlice_GetIndices","PySlice_GetIndicesEx","PySlice_New","PySlice_Type","PySlice_Unpack","PyState_AddModule","PyState_FindModule","PyState_RemoveModule","PyStatus","PyStatus_Error","PyStatus_Exception","PyStatus_Exit","PyStatus_IsError","PyStatus_IsExit","PyStatus_NoMemory","PyStatus_Ok","PyStopIterationObject","PyStructSequence","PyStructSequence_Desc","PyStructSequence_Field","PyStructSequence_GET_ITEM","PyStructSequence_GetItem","PyStructSequence_InitType","PyStructSequence_InitType2","PyStructSequence_New","PyStructSequence_NewType","PyStructSequence_SET_ITEM","PyStructSequence_SetItem","PySuper_Type","PySyntaxErrorObject","PySys_AddWarnOption","PySys_AddWarnOptionUnicode","PySys_AddXOption","PySys_FormatStderr","PySys_FormatStdout","PySys_GetObject","PySys_GetXOptions","PySys_HasWarnOptions","PySys_ResetWarnOptions","PySys_SetArgv","PySys_SetArgvEx","PySys_SetObject","PySys_SetPath","PySys_WriteStderr","PySys_WriteStdout","PySystemExitObject","PyTZInfo_Check","PyTZInfo_CheckExact","PyThreadState","PyThreadState_Clear","PyThreadState_Delete","PyThreadState_DeleteCurrent","PyThreadState_GET","PyThreadState_Get","PyThreadState_GetDict","PyThreadState_New","PyThreadState_Next","PyThreadState_SetAsyncExc","PyThreadState_Swap","PyTimeZone_FromOffset","PyTimeZone_FromOffsetAndName","PyTime_Check","PyTime_CheckExact","PyTraceBack_Check","PyTraceBack_Here","PyTraceBack_Print","PyTraceBack_Type","PyTrace_CALL","PyTrace_C_CALL","PyTrace_C_EXCEPTION","PyTrace_C_RETURN","PyTrace_EXCEPTION","PyTrace_LINE","PyTrace_OPCODE","PyTrace_RETURN","PyTryBlock","PyTupleIter_Type","PyTupleObject","PyTuple_Check","PyTuple_CheckExact","PyTuple_GET_ITEM","PyTuple_GET_SIZE","PyTuple_GetItem","PyTuple_GetSlice","PyTuple_New","PyTuple_Pack","PyTuple_SET_ITEM","PyTuple_SetItem","PyTuple_Size","PyTuple_Type","PyTypeObject","PyTypeObject","PyType_Check","PyType_CheckExact","PyType_ClearCache","PyType_FastSubclass","PyType_FromModuleAndSpec","PyType_FromSpec","PyType_FromSpecWithBases","PyType_GenericAlloc","PyType_GenericNew","PyType_GetFlags","PyType_GetModule","PyType_GetModuleState","PyType_GetSlot","PyType_HasFeature","PyType_IS_GC","PyType_IsSubtype","PyType_Modified","PyType_Ready","PyType_SUPPORTS_WEAKREFS","PyType_Slot","PyType_Spec","PyType_Type","PyUnicodeDecodeError_Create","PyUnicodeDecodeError_GetEncoding","PyUnicodeDecodeError_GetEnd","PyUnicodeDecodeError_GetObject","PyUnicodeDecodeError_GetReason","PyUnicodeDecodeError_GetStart","PyUnicodeDecodeError_SetEnd","PyUnicodeDecodeError_SetReason","PyUnicodeDecodeError_SetStart","PyUnicodeEncodeError_GetEncoding","PyUnicodeEncodeError_GetEnd","PyUnicodeEncodeError_GetObject","PyUnicodeEncodeError_GetReason","PyUnicodeEncodeError_GetStart","PyUnicodeEncodeError_SetEnd","PyUnicodeEncodeError_SetReason","PyUnicodeEncodeError_SetStart","PyUnicodeErrorObject","PyUnicodeIter_Type","PyUnicodeObject","PyUnicodeObjectData","PyUnicodeTranslateError_GetEnd","PyUnicodeTranslateError_GetObject","PyUnicodeTranslateError_GetReason","PyUnicodeTranslateError_GetStart","PyUnicodeTranslateError_SetEnd","PyUnicodeTranslateError_SetReason","PyUnicodeTranslateError_SetStart","PyUnicode_1BYTE_DATA","PyUnicode_1BYTE_KIND","PyUnicode_2BYTE_DATA","PyUnicode_2BYTE_KIND","PyUnicode_4BYTE_DATA","PyUnicode_4BYTE_KIND","PyUnicode_Append","PyUnicode_AppendAndDel","PyUnicode_AsASCIIString","PyUnicode_AsCharmapString","PyUnicode_AsDecodedObject","PyUnicode_AsDecodedUnicode","PyUnicode_AsEncodedObject","PyUnicode_AsEncodedString","PyUnicode_AsEncodedUnicode","PyUnicode_AsLatin1String","PyUnicode_AsRawUnicodeEscapeString","PyUnicode_AsUCS4","PyUnicode_AsUCS4Copy","PyUnicode_AsUTF16String","PyUnicode_AsUTF32String","PyUnicode_AsUTF8","PyUnicode_AsUTF8AndSize","PyUnicode_AsUTF8String","PyUnicode_AsUnicode","PyUnicode_AsUnicodeAndSize","PyUnicode_AsUnicodeEscapeString","PyUnicode_AsWideChar","PyUnicode_AsWideCharString","PyUnicode_BuildEncodingMap","PyUnicode_Check","PyUnicode_CheckExact","PyUnicode_ClearFreeList","PyUnicode_Compare","PyUnicode_CompareWithASCIIString","PyUnicode_Concat","PyUnicode_Contains","PyUnicode_CopyCharacters","PyUnicode_Count","PyUnicode_DATA","PyUnicode_Decode","PyUnicode_DecodeASCII","PyUnicode_DecodeCharmap","PyUnicode_DecodeFSDefault","PyUnicode_DecodeFSDefaultAndSize","PyUnicode_DecodeLatin1","PyUnicode_DecodeLocale","PyUnicode_DecodeLocaleAndSize","PyUnicode_DecodeRawUnicodeEscape","PyUnicode_DecodeUTF16","PyUnicode_DecodeUTF16Stateful","PyUnicode_DecodeUTF32","PyUnicode_DecodeUTF32Stateful","PyUnicode_DecodeUTF7","PyUnicode_DecodeUTF7Stateful","PyUnicode_DecodeUTF8","PyUnicode_DecodeUTF8Stateful","PyUnicode_DecodeUnicodeEscape","PyUnicode_Encode","PyUnicode_EncodeASCII","PyUnicode_EncodeCharmap","PyUnicode_EncodeDecimal","PyUnicode_EncodeFSDefault","PyUnicode_EncodeLatin1","PyUnicode_EncodeLocale","PyUnicode_EncodeRawUnicodeEscape","PyUnicode_EncodeUTF16","PyUnicode_EncodeUTF32","PyUnicode_EncodeUTF7","PyUnicode_EncodeUTF8","PyUnicode_EncodeUnicodeEscape","PyUnicode_FSConverter","PyUnicode_FSDecoder","PyUnicode_Fill","PyUnicode_Find","PyUnicode_FindChar","PyUnicode_Format","PyUnicode_FromEncodedObject","PyUnicode_FromFormat","PyUnicode_FromKindAndData","PyUnicode_FromObject","PyUnicode_FromOrdinal","PyUnicode_FromString","PyUnicode_FromStringAndSize","PyUnicode_FromUnicode","PyUnicode_FromWideChar","PyUnicode_GET_LENGTH","PyUnicode_GetDefaultEncoding","PyUnicode_GetLength","PyUnicode_GetSize","PyUnicode_IS_ASCII","PyUnicode_IS_COMPACT","PyUnicode_IS_COMPACT_ASCII","PyUnicode_IS_READY","PyUnicode_InternFromString","PyUnicode_InternImmortal","PyUnicode_InternInPlace","PyUnicode_IsIdentifier","PyUnicode_Join","PyUnicode_KIND","PyUnicode_New","PyUnicode_Partition","PyUnicode_READY","PyUnicode_RPartition","PyUnicode_RSplit","PyUnicode_ReadChar","PyUnicode_Replace","PyUnicode_Resize","PyUnicode_RichCompare","PyUnicode_Split","PyUnicode_Splitlines","PyUnicode_Substring","PyUnicode_Tailmatch","PyUnicode_TransformDecimalToASCII","PyUnicode_Translate","PyUnicode_TranslateCharmap","PyUnicode_Type","PyUnicode_WCHAR_KIND","PyUnicode_WriteChar","PyVarObject","PyVectorcall_Call","PyVectorcall_Function","PyVectorcall_NARGS","PyWeakReference","PyWeakref_Check","PyWeakref_CheckProxy","PyWeakref_CheckRef","PyWeakref_CheckRefExact","PyWeakref_GetObject","PyWeakref_NewProxy","PyWeakref_NewRef","PyWideStringList","PyWideStringList_Append","PyWideStringList_Insert","PyWrapperDescrObject","PyWrapperDescr_Type","PyWrapperFlag_KEYWORDS","PyWrapper_New","PyZip_Type","Py_AddPendingCall","Py_AtExit","Py_BuildValue","Py_BytesMain","Py_BytesWarningFlag","Py_CLEANUP_SUPPORTED","Py_CLEAR","Py_CompileString","Py_CompileStringExFlags","Py_CompileStringFlags","Py_CompileStringObject","Py_DECREF","Py_DTSF_ADD_DOT_0","Py_DTSF_ALT","Py_DTSF_SIGN","Py_DTST_FINITE","Py_DTST_INFINITE","Py_DTST_NAN","Py_DebugFlag","Py_DecRef","Py_DecodeLocale","Py_DontWriteBytecodeFlag","Py_EQ","Py_Ellipsis","Py_EncodeLocale","Py_EndInterpreter","Py_EnterRecursiveCall","Py_Exit","Py_ExitStatusException","Py_False","Py_FatalError","Py_FileSystemDefaultEncodeErrors","Py_FileSystemDefaultEncoding","Py_Finalize","Py_FinalizeEx","Py_FrozenFlag","Py_GE","Py_GT","Py_GetArgcArgv","Py_GetBuildInfo","Py_GetCompiler","Py_GetCopyright","Py_GetExecPrefix","Py_GetPath","Py_GetPlatform","Py_GetPrefix","Py_GetProgramFullPath","Py_GetProgramName","Py_GetPythonHome","Py_GetRecursionLimit","Py_GetVersion","Py_HASH_EXTERNAL","Py_HASH_FNV","Py_HASH_SIPHASH24","Py_HasFileSystemDefaultEncoding","Py_HashRandomizationFlag","Py_INCREF","Py_IS_TYPE","Py_IgnoreEnvironmentFlag","Py_IncRef","Py_Initialize","Py_InitializeEx","Py_InitializeFromConfig","Py_InspectFlag","Py_InteractiveFlag","Py_Is","Py_IsFalse","Py_IsInitialized","Py_IsNone","Py_IsTrue","Py_IsolatedFlag","Py_LE","Py_LT","Py_LeaveRecursiveCall","Py_Main","Py_MakePendingCalls","Py_NE","Py_NewInterpreter","Py_NewRef","Py_NoSiteFlag","Py_NoUserSiteDirectory","Py_None","Py_NotImplemented","Py_OptimizeFlag","Py_PRINT_RAW","Py_PreInitialize","Py_PreInitializeFromArgs","Py_PreInitializeFromBytesArgs","Py_QuietFlag","Py_REFCNT","Py_ReprEnter","Py_ReprLeave","Py_RunMain","Py_SIZE","Py_SetPath","Py_SetProgramName","Py_SetPythonHome","Py_SetRecursionLimit","Py_TPFLAGS_BASETYPE","Py_TPFLAGS_BASE_EXC_SUBCLASS","Py_TPFLAGS_BYTES_SUBCLASS","Py_TPFLAGS_DEFAULT","Py_TPFLAGS_DICT_SUBCLASS","Py_TPFLAGS_DISALLOW_INSTANTIATION","Py_TPFLAGS_HAVE_FINALIZE","Py_TPFLAGS_HAVE_GC","Py_TPFLAGS_HAVE_VECTORCALL","Py_TPFLAGS_HAVE_VERSION_TAG","Py_TPFLAGS_HEAPTYPE","Py_TPFLAGS_IMMUTABLETYPE","Py_TPFLAGS_IS_ABSTRACT","Py_TPFLAGS_LIST_SUBCLASS","Py_TPFLAGS_LONG_SUBCLASS","Py_TPFLAGS_MAPPING","Py_TPFLAGS_METHOD_DESCRIPTOR","Py_TPFLAGS_READY","Py_TPFLAGS_READYING","Py_TPFLAGS_SEQUENCE","Py_TPFLAGS_TUPLE_SUBCLASS","Py_TPFLAGS_TYPE_SUBCLASS","Py_TPFLAGS_UNICODE_SUBCLASS","Py_TPFLAGS_VALID_VERSION_TAG","Py_TYPE","Py_True","Py_UCS1","Py_UCS2","Py_UCS4","Py_UNICODE","Py_UNICODE_REPLACEMENT_CHARACTER","Py_UnbufferedStdioFlag","Py_UseClassExceptionsFlag","Py_VerboseFlag","Py_XDECREF","Py_XINCREF","Py_XNewRef","Py_am_aiter","Py_am_anext","Py_am_await","Py_bf_getbuffer","Py_bf_releasebuffer","Py_buffer","Py_complex","Py_eval_input","Py_file_input","Py_fstring_input","Py_func_type_input","Py_hash_t","Py_intptr_t","Py_mod_create","Py_mod_exec","Py_mp_ass_subscript","Py_mp_length","Py_mp_subscript","Py_nb_absolute","Py_nb_add","Py_nb_and","Py_nb_bool","Py_nb_divmod","Py_nb_float","Py_nb_floor_divide","Py_nb_index","Py_nb_inplace_add","Py_nb_inplace_and","Py_nb_inplace_floor_divide","Py_nb_inplace_lshift","Py_nb_inplace_matrix_multiply","Py_nb_inplace_multiply","Py_nb_inplace_or","Py_nb_inplace_power","Py_nb_inplace_remainder","Py_nb_inplace_rshift","Py_nb_inplace_subtract","Py_nb_inplace_true_divide","Py_nb_inplace_xor","Py_nb_int","Py_nb_invert","Py_nb_lshift","Py_nb_matrix_multiply","Py_nb_multiply","Py_nb_negative","Py_nb_or","Py_nb_positive","Py_nb_power","Py_nb_remainder","Py_nb_rshift","Py_nb_subtract","Py_nb_true_divide","Py_nb_xor","Py_single_input","Py_sq_ass_item","Py_sq_concat","Py_sq_contains","Py_sq_inplace_concat","Py_sq_inplace_repeat","Py_sq_item","Py_sq_length","Py_sq_repeat","Py_ssize_t","Py_tp_alloc","Py_tp_base","Py_tp_bases","Py_tp_call","Py_tp_clear","Py_tp_dealloc","Py_tp_del","Py_tp_descr_get","Py_tp_descr_set","Py_tp_doc","Py_tp_finalize","Py_tp_free","Py_tp_getattr","Py_tp_getattro","Py_tp_getset","Py_tp_hash","Py_tp_init","Py_tp_is_gc","Py_tp_iter","Py_tp_iternext","Py_tp_members","Py_tp_methods","Py_tp_new","Py_tp_repr","Py_tp_richcompare","Py_tp_setattr","Py_tp_setattro","Py_tp_str","Py_tp_traverse","Py_tracefunc","Py_uhash_t","Py_uintptr_t","SSTATE_INTERNED_IMMORTAL","SSTATE_INTERNED_MORTAL","SSTATE_NOT_INTERNED","TZInfoType","TimeType","TimeZone_FromTimeZone","TimeZone_UTC","Time_FromTime","Time_FromTimeAndFold","_PyBytes_Resize","_PyCFunctionFast","_PyCFunctionFast","_PyCFunctionFastWithKeywords","_PyCFunctionFastWithKeywords","_PyCode_GetExtra","_PyCode_SetExtra","_PyCoroWrapper_Type","_PyDateTime_BaseDateTime","_PyDateTime_BaseTime","_PyDict_Contains_KnownHash","_PyDict_NewPresized","_PyDict_Next","_PyDict_SetItem_KnownHash","_PyErr_BadInternalCall","_PyErr_ChainExceptions","_PyErr_StackItem","_PyEval_EvalFrameDefault","_PyEval_RequestCodeExtraIndex","_PyFrameEvalFunction","_PyHASH_MULTIPLIER","_PyImport_AcquireLock","_PyImport_FindExtensionObject","_PyImport_FixupBuiltin","_PyImport_FixupExtensionObject","_PyImport_IsInitialized","_PyImport_ReleaseLock","_PyImport_SetModule","_PyImport_SetModuleString","_PyInterpreterState_GetEvalFrameFunc","_PyInterpreterState_SetEvalFrameFunc","_PyLong_AsByteArray","_PyLong_FromByteArray","_PyLong_NumBits","_PyManagedBuffer_Type","_PyMethodWrapper_Type","_PyNone_Type","_PyNotImplemented_Type","_PyObject_CallNoArg","_PyObject_FastCall","_PyObject_FastCallTstate","_PyObject_GC_Calloc","_PyObject_GC_Malloc","_PyObject_GC_New","_PyObject_GC_NewVar","_PyObject_GC_Resize","_PyObject_GetDictPtr","_PyObject_MakeTpCall","_PyObject_New","_PyObject_NewVar","_PyObject_NextNotImplemented","_PyObject_VectorcallTstate","_PyOpcache","_PyRun_AnyFileObject","_PyRun_InteractiveLoopObject","_PyRun_SimpleFileObject","_PySequence_IterSearch","_PySet_Dummy","_PySet_NextEntry","_PyStack_AsDict","_PyStatus_TYPE","_PyStatus_TYPE_ERROR","_PyStatus_TYPE_EXIT","_PyStatus_TYPE_OK","_PyUnicode_COMPACT_DATA","_PyUnicode_CheckConsistency","_PyUnicode_NONCOMPACT_DATA","_PyUnicode_Ready","_PyWeakReference","_PyWeakref_CallableProxyType","_PyWeakref_ProxyType","_PyWeakref_RefType","_Py_CheckFunctionResult","_Py_Dealloc","_Py_GetAllocatedBlocks","_Py_HashBytes","_Py_InitializeMain","_Py_IsCoreInitialized","_Py_NewRef","_Py_PackageContext","_Py_XNewRef","_Py_c_abs","_Py_c_diff","_Py_c_neg","_Py_c_pow","_Py_c_prod","_Py_c_quot","_Py_c_sum","_base","_base","_config_init","_config_init","_frozen","_init_main","_inittab","_install_importlib","_isolated_interpreter","_type","alloc","allocated","allocator","allocfunc","am_aiter","am_anext","am_await","am_send","any","args","args","args","args","args","args","args","argv","as_async","as_buffer","as_mapping","as_number","as_ptr","as_sequence","ascii","b_handler","b_level","b_type","base_exec_prefix","base_executable","base_prefix","basicsize","bf_getbuffer","bf_releasebuffer","binaryfunc","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","buf","buffered_stdio","bytes_warning","calloc","cause","cause","cause","cause","cause","cause","cause","cf_feature_version","cf_flags","check_hash_pycs_mode","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","closure","co_argcount","co_cell2arg","co_cellvars","co_code","co_consts","co_extra","co_filename","co_firstlineno","co_flags","co_freevars","co_kwonlyargcount","co_linetable","co_name","co_names","co_nlocals","co_opcache","co_opcache_flag","co_opcache_map","co_opcache_size","co_posonlyargcount","co_stacksize","co_varnames","co_weakreflist","co_zombieframe","code","code","coerce_c_locale","coerce_c_locale_warn","compact","configure_c_stdio","configure_locale","context","context","context","context","context","context","context","ctx","ctx","cval","d_base","d_common","d_common","d_common","d_common","d_getset","d_member","d_method","d_name","d_qualname","d_type","d_wrapped","data","data","data","data","data","data","days","default","default","default","default","default","default","default","default","default","default","default","descrgetfunc","descrsetfunc","destructor","dev_mode","dev_mode","dict","dict","dict","dict","dict","dict","dict","doc","doc","doc","doc","dump_refs","encoding","end","end_lineno","end_offset","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","err_msg","exc_traceback","exc_type","exc_value","exec_prefix","executable","exitcode","f_back","f_blockstack","f_builtins","f_code","f_gen","f_globals","f_iblock","f_lasti","f_lineno","f_locals","f_localsplus","f_stackdepth","f_state","f_trace","f_trace_lines","f_trace_opcodes","f_valuestack","faulthandler","ff_features","ff_lineno","fields","filename","filename","filename2","filesystem_encoding","filesystem_errors","fill","finger","flags","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fold","fold","format","free","free","freefunc","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","func","func","func_annotations","func_builtins","func_closure","func_code","func_defaults","func_dict","func_doc","func_globals","func_kwdefaults","func_module","func_name","func_qualname","func_weakreflist","function","get","getattrfunc","getattrofunc","getbufferproc","getiterfunc","getter","gi_code","gi_exc_state","gi_frame","gi_name","gi_qualname","gi_weakreflist","hash","hash","hash","hash","hash","hash_bits","hash_seed","hashcode","hashcode","hashcode","hashcode","hashcode","hashcode","hashfunc","hastzinfo","hastzinfo","hastzinfo","hastzinfo","hastzinfo","home","ht_cached_keys","ht_module","ht_name","ht_qualname","ht_slots","ht_type","imag","import_time","initfunc","initproc","inquiry","inspect","install_signal_handlers","interactive","internal","interned","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_null","isolated","isolated","items","itemsize","itemsize","iternextfunc","key","kind","latin1","len","lenfunc","length","length","lineno","m_base","m_clear","m_copy","m_doc","m_free","m_index","m_init","m_methods","m_ml","m_module","m_name","m_self","m_size","m_slots","m_traverse","m_weakreflist","ma_keys","ma_used","ma_values","ma_version_tag","malloc","malloc_stats","mask","microseconds","ml_doc","ml_flags","ml_meth","ml_name","mm_class","module_search_paths","module_search_paths_set","mp_ass_subscript","mp_length","mp_subscript","msg","msg","myerrno","n_in_sequence","name","name","name","name","name","name","name","name","name","name_strobj","nb_absolute","nb_add","nb_and","nb_bool","nb_divmod","nb_float","nb_floor_divide","nb_index","nb_inplace_add","nb_inplace_and","nb_inplace_floor_divide","nb_inplace_lshift","nb_inplace_matrix_multiply","nb_inplace_multiply","nb_inplace_or","nb_inplace_power","nb_inplace_remainder","nb_inplace_rshift","nb_inplace_subtract","nb_inplace_true_divide","nb_inplace_xor","nb_int","nb_invert","nb_lshift","nb_matrix_multiply","nb_multiply","nb_negative","nb_or","nb_positive","nb_power","nb_remainder","nb_reserved","nb_rshift","nb_subtract","nb_true_divide","nb_xor","ndim","new","newfunc","ob_alloc","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_base","ob_bytes","ob_exports","ob_fval","ob_item","ob_item","ob_refcnt","ob_shash","ob_size","ob_start","ob_sval","ob_type","obj","object","objobjargproc","objobjproc","offset","offset","optimization_level","orig_argv","parse_argv","parse_argv","parser_debug","path","pathconfig_warnings","pfunc","platlibdir","prefix","previous_item","print_file_and_line","printfunc","program_name","pycache_prefix","pythonpath_env","quiet","readonly","ready","real","realloc","reason","releasebufferproc","reprfunc","richcmpfunc","run_command","run_filename","run_module","seconds","seed_bits","sendfunc","set","set_ascii","set_compact","set_interned","set_kind","set_ready","setattrfunc","setattrofunc","setentry","setter","shape","show_ref_count","site_import","size","skip_source_first_line","slot","slot","slots","smalltable","sq_ass_item","sq_concat","sq_contains","sq_inplace_concat","sq_inplace_repeat","sq_item","sq_length","sq_repeat","ssizeargfunc","ssizeobjargproc","ssizessizeargfunc","ssizessizeobjargproc","start","start","state","stdio_encoding","stdio_errors","step","stop","strerror","strides","structmember","suboffsets","suppress_context","suppress_context","suppress_context","suppress_context","suppress_context","suppress_context","suppress_context","table","ternaryfunc","text","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","tp_alloc","tp_alloc","tp_as_async","tp_as_async","tp_as_buffer","tp_as_buffer","tp_as_mapping","tp_as_mapping","tp_as_number","tp_as_number","tp_as_sequence","tp_as_sequence","tp_base","tp_base","tp_bases","tp_bases","tp_basicsize","tp_basicsize","tp_cache","tp_cache","tp_call","tp_call","tp_clear","tp_clear","tp_dealloc","tp_dealloc","tp_del","tp_del","tp_descr_get","tp_descr_get","tp_descr_set","tp_descr_set","tp_dict","tp_dict","tp_dictoffset","tp_dictoffset","tp_doc","tp_doc","tp_finalize","tp_finalize","tp_flags","tp_flags","tp_free","tp_free","tp_getattr","tp_getattr","tp_getattro","tp_getattro","tp_getset","tp_getset","tp_hash","tp_hash","tp_init","tp_init","tp_is_gc","tp_is_gc","tp_itemsize","tp_itemsize","tp_iter","tp_iter","tp_iternext","tp_iternext","tp_members","tp_members","tp_methods","tp_methods","tp_mro","tp_mro","tp_name","tp_name","tp_new","tp_new","tp_repr","tp_repr","tp_richcompare","tp_richcompare","tp_setattr","tp_setattr","tp_setattro","tp_setattro","tp_str","tp_str","tp_subclasses","tp_subclasses","tp_traverse","tp_traverse","tp_vectorcall","tp_vectorcall","tp_vectorcall_offset","tp_vectorcall_offset","tp_version_tag","tp_version_tag","tp_weaklist","tp_weaklist","tp_weaklistoffset","tp_weaklistoffset","traceback","traceback","traceback","traceback","traceback","traceback","traceback","tracemalloc","traverseproc","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","tzinfo","tzinfo","ucs2","ucs4","unaryfunc","use_environment","use_environment","use_hash_seed","used","user_site_directory","utf8","utf8_length","utf8_mode","value","value","vectorcall","vectorcall","vectorcall","vectorcallfunc","verbose","visitproc","warn_default_encoding","warnoptions","was_sq_ass_slice","was_sq_slice","weakreflist","wr_callback","wr_next","wr_object","wr_prev","wrapper","wrapperbase","wrapperfunc","wrapperfunc_kwds","write_bytecode","written","wstr","wstr_length","xoptions","zeroed","zeroed","PY_WRITE_RESTRICTED","PyMemberDef","PyMember_GetOne","PyMember_SetOne","READONLY","READ_RESTRICTED","RESTRICTED","T_BOOL","T_BYTE","T_CHAR","T_DOUBLE","T_FLOAT","T_INT","T_LONG","T_LONGLONG","T_NONE","T_OBJECT","T_OBJECT_EX","T_PYSSIZET","T_SHORT","T_STRING","T_STRING_INPLACE","T_UBYTE","T_UINT","T_ULONG","T_ULONGLONG","T_USHORT","borrow","borrow_mut","clone","clone_into","default","doc","eq","equivalent","flags","from","into","name","offset","to_owned","try_from","try_into","type_code","type_id"],"q":[[0,"pyo3_ffi"],[2920,"pyo3_ffi::structmember"]],"d":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Maximum number of dimensions","","","","","","","","","","","","","built-in ‘object’","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This variant corresponds with METH_VARARGS or METH_NOARGS …","","","This variant corresponds with METH_VARARGS | METH_KEYWORDS.","","","","","","","","","","","","","","","This variant corresponds with METH_METHOD | METH_FASTCALL …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a pointer to a PyDateTime_CAPI instance","","Check if op is a PyDateTimeAPI.DateTimeType or subtype.","Check if op’s type is exactly PyDateTimeAPI.DateTimeType.","Retrieve the fold component of a PyDateTime_DateTime. …","Retrieve the hour component of a PyDateTime_DateTime. …","Retrieve the microsecond component of a PyDateTime_DateTime…","Retrieve the minute component of a PyDateTime_DateTime. …","Retrieve the second component of a PyDateTime_DateTime. …","Retrieve the tzinfo component of a PyDateTime_DateTime. …","Retrieve the days component of a PyDateTime_Delta.","Retrieve the seconds component of a PyDateTime_Delta.","Retrieve the seconds component of a PyDateTime_Delta.","Structure representing a datetime.date","Structure representing a datetime.datetime.","Structure representing a datetime.timedelta.","","Retrieve the day component of a PyDateTime_Date or …","Retrieve the month component of a PyDateTime_Date or …","Retrieve the year component of a PyDateTime_Date or …","Populates the PyDateTimeAPI object","Retrieve the fold component of a PyDateTime_Time. Returns …","Retrieve the hour component of a PyDateTime_Time. Returns …","Retrieve the microsecond component of a PyDateTime_DateTime…","Retrieve the minute component of a PyDateTime_Time. …","Retrieve the second component of a PyDateTime_DateTime. …","Retrieve the tzinfo component of a PyDateTime_Time. …","Structure representing a datetime.time.","","Type Check macros","Check if op’s type is exactly PyDateTimeAPI.DateType.","","Check if op is a PyDateTimeAPI.DetaType or subtype.","Check if op’s type is exactly PyDateTimeAPI.DeltaType.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Macro, trading safety for speed","","","","","","","Macro, only to be used to fill in brand new lists","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Function types used to implement Python callables.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Test if an object has a GC head","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","built-in ‘super’","","","","","","","","","","","","","","","","","","Check if op is a PyDateTimeAPI.TZInfoType or subtype.","Check if op’s type is exactly PyDateTimeAPI.TZInfoType.","","","","","","","","","","","","","","Check if op is a PyDateTimeAPI.TimeType or subtype.","Check if op’s type is exactly PyDateTimeAPI.TimeType.","","","","","","","","","","","","","","","","","","","Macro, trading safety for speed","","","","","Macro, only to be used to fill in brand new tuples","","","","","","","","","","","","","","","","","","","","Test if a type has a GC head","","","","Test if a type supports weak references","","","built-in ‘type’","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Set if the type allows subclassing","","","","","","","Objects support garbage collection (see objimp.h)","Set if the type implements the vectorcall protocol (PEP …","This flag does nothing in Python 3.10+","Set if the type object is dynamically allocated","","","","","","","Set if the type is ‘ready’ – fully initialized","Set while the type is being ‘readied’, to prevent …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This variant corresponds with METH_FASTCALL.","","This variant corresponds with METH_FASTCALL | METH_KEYWORDS…","","","","Structure representing a datetime.datetime without a tzinfo…","Structure representing a datetime.time without a tzinfo …","","","","","","","","","","","","","","","","","","","","Get the frame evaluation function.","Set the frame evaluation function.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the ascii field of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the compact field of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Get the interned field of the PyASCIIObject state bitfield.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","Get the kind field of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Owned reference","","","","","","","","","","","","","","","","","","","","","","","","Get the ready field of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","Set the ascii flag of the PyASCIIObject state bitfield.","Set the compact flag of the PyASCIIObject state bitfield.","Set the interned field of the PyASCIIObject state bitfield.","Set the kind field of the PyASCIIObject state bitfield.","Set the ready flag of the PyASCIIObject state bitfield.","","","","","","","","","","","","","","","","","","","","","","","","","","","","A bit field with various properties.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Safety","Safety","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,55,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,86,58,59,0,59,0,59,59,56,43,60,58,0,65,65,65,65,87,76,77,78,79,80,81,82,59,11,11,11,11,4,11,26,50,50,50,59,59,59,41,66,66,0,88,89,90,91,92,93,94,95,96,97,98,99,26,85,87,86,100,27,28,29,30,31,32,33,34,35,8,36,101,5,4,37,38,14,1,39,40,41,42,43,44,16,102,45,73,74,46,47,48,103,6,25,49,104,75,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,76,77,78,79,80,81,82,67,68,69,88,89,90,91,92,93,94,95,96,97,98,99,26,85,87,86,100,27,28,29,30,31,32,33,34,35,8,36,101,5,4,37,38,14,1,39,40,41,42,43,44,16,102,45,73,74,46,47,48,103,6,25,49,104,75,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,76,77,78,79,80,81,82,67,68,69,61,59,59,68,76,77,78,79,80,81,82,25,25,59,27,28,29,30,31,32,33,34,35,8,36,5,4,37,38,14,1,39,40,41,42,43,44,45,46,47,48,6,25,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,67,68,69,27,28,29,30,31,32,33,34,35,8,36,5,4,37,38,14,1,39,40,41,42,43,44,45,46,47,48,6,25,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,67,68,69,36,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,54,80,58,58,26,59,58,76,77,78,79,80,81,82,43,68,29,96,93,94,95,96,95,94,93,92,92,92,96,86,31,32,33,34,35,30,36,5,38,40,41,43,44,64,65,66,11,0,0,0,58,59,76,77,78,79,80,81,82,91,36,46,47,59,79,79,77,77,36,5,4,38,42,45,55,36,5,4,38,42,45,55,56,69,69,69,59,59,56,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,59,49,49,47,77,81,81,59,59,74,74,91,41,30,31,32,33,34,35,8,36,4,1,39,42,45,73,74,75,55,3,76,77,78,79,80,81,82,32,35,61,43,68,0,88,89,90,91,92,93,94,95,96,97,98,99,26,85,87,86,100,27,28,29,30,31,32,33,34,35,8,36,101,5,4,37,38,14,1,39,40,41,42,43,44,16,102,45,73,74,46,47,48,103,6,25,49,104,75,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,76,77,78,79,80,81,82,67,68,69,98,56,97,97,97,97,97,97,97,97,97,97,97,97,97,91,36,0,0,0,0,0,52,52,52,52,52,52,26,100,44,73,74,44,59,30,31,32,33,34,35,0,31,32,33,34,35,59,11,11,11,11,11,11,28,59,53,0,0,59,59,59,61,26,88,89,90,91,92,93,94,95,96,97,98,99,26,85,87,86,100,27,28,29,30,31,32,33,34,35,8,36,101,5,4,37,38,14,1,39,40,41,42,43,44,16,102,45,73,74,46,47,48,103,6,25,49,104,75,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,76,77,78,79,80,81,82,67,68,69,4,58,59,57,41,61,0,73,26,87,61,0,26,57,77,14,14,37,14,14,37,37,14,89,89,14,89,14,14,14,89,75,75,75,75,68,59,74,30,5,5,5,5,98,59,59,64,64,64,77,78,81,47,91,36,41,44,46,47,53,54,78,91,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,61,61,0,27,88,89,90,92,97,99,26,100,27,29,30,31,32,33,34,35,37,39,74,48,6,75,51,52,60,3,3,76,77,78,79,80,81,82,27,27,88,99,60,1,48,39,27,48,1,61,79,0,0,91,77,59,59,58,59,59,78,59,40,59,59,69,77,0,59,59,59,59,61,26,28,68,79,0,0,0,59,59,59,30,44,0,36,26,26,26,26,26,0,0,0,0,61,59,59,54,59,38,40,41,74,63,63,63,63,63,63,63,63,0,0,0,0,90,79,26,59,59,90,90,81,61,0,61,76,77,78,79,80,81,82,74,0,77,27,28,29,30,31,32,33,34,35,8,36,5,4,37,38,14,1,39,40,41,42,43,44,45,46,47,48,6,25,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,67,68,69,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,76,77,78,79,80,81,82,59,0,88,89,90,91,92,93,94,95,96,97,98,99,26,85,87,86,100,27,28,29,30,31,32,33,34,35,8,36,101,5,4,37,38,14,1,39,40,41,42,43,44,16,102,45,73,74,46,47,48,103,6,25,49,104,75,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,76,77,78,79,80,81,82,67,68,69,88,89,90,91,92,93,94,95,96,97,98,99,26,85,87,86,100,27,28,29,30,31,32,33,34,35,8,36,101,5,4,37,38,14,1,39,40,41,42,43,44,16,102,45,73,74,46,47,48,103,6,25,49,104,75,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,76,77,78,79,80,81,82,67,68,69,88,89,90,91,92,93,94,95,96,97,98,99,26,85,87,86,100,27,28,29,30,31,32,33,34,35,8,36,101,5,4,37,38,14,1,39,40,41,42,43,44,16,102,45,73,74,46,47,48,103,6,25,49,104,75,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,3,11,76,77,78,79,80,81,82,67,68,69,32,35,87,87,0,58,59,59,74,59,85,85,58,38,82,89,93,97,0,59,0,59,59,63,63,74,100,100,100,100,91,0,0,0,59,81,26,85,59,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,0,0,[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],[1,3],[1,2],[1,4],[1,1],0,0,0,[[5,1],1],[[5,1,1],1],0,0,0,0,[1,2],[1,2],0,0,[1,2],0,0,0,[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[6,7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],0,[1,2],0,0,0,0,0,[1,2],0,0,0,0,0,0,[1,2],0,[[],8],0,[1,2],[1,2],[1,9],[1,2],[1,2],[1,2],[1,2],[1,1],[1,2],[1,2],[1,2],0,0,0,[1,1],[1,2],[1,2],[1,2],[[]],[1,9],[1,2],[1,2],[1,2],[1,2],[1,1],0,[[],1],[1,2],[1,2],[1,1],[1,2],[1,2],0,0,0,0,0,[1,2],0,0,0,0,0,[1,2],0,0,0,0,0,0,0,[1,2],0,[1,2],[1,2],[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,1],1],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],[1,1],0,0,0,0,0,0,0,0,0,0,0,0,[1,10],0,[1,2],[1,2],0,0,0,0,0,0,0,0,0,0,[1,2],0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,0,0,0,0,0,[11,12],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[13,1,1,1],1],0,0,0,0,0,[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],[[1,7],1],[1,7],0,0,0,0,0,[[1,7,1]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,1],2],[[1,13],2],0,0,0,0,0,[1,7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],[14,1],0,0,[[14,1],1],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,1],1],0,[[1,1,1],1],0,0,[[1,1],1],0,0,0,0,[[1,1],2],[[1,13],2],0,0,0,0,0,0,0,0,[1,1],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],0,0,0,0,0,[1,7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,3],2],[[1,1,15,1],1],0,0,0,0,0,0,0,[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],0,0,0,0,0,0,0,0,0,0,0,0,[[1,1],2],0,0,0,[1,7],0,0,0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,[1,7],0,0,0,0,0,0,0,[1,2],0,[[1,7,7,7,7,7],2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,7],1],0,0,0,0,0,[[1,7,1]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,0,[[],16],0,0,0,0,0,0,[1,1],[[1,1],1],[1,2],[1,2],[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],[[1,7],1],[1,7],0,0,0,0,[[1,7,1]],0,0,0,0,0,[1,2],[1,2],0,[[3,17],2],0,0,0,0,0,0,0,0,0,[[3,17],2],[3,2],0,0,0,[3,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,18],0,[1,19],0,[1,20],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],0,0,0,0,0,0,0,[1,21],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,7],0,0,0,[1,22],[1,22],[1,22],[1,22],0,0,0,0,0,[1,22],0,0,[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,[[24,[23]]]],[15,7],0,[1,2],[1,2],[1,2],[1,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[13,13,2],1],0,[[13,13,2,25],1],0,[1],0,0,0,0,0,0,0,0,0,0,0,[[],1],0,0,0,0,0,[[],1],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1],[[1,3],2],0,0,0,0,0,0,0,[[1,1],2],[1,2],0,[1,2],[1,2],0,0,0,0,0,0,0,0,0,0,0,[[],1],[[],1],0,0,0,0,0,0,[1,7],0,0,0,[1,7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,3],[[],1],0,0,0,0,0,0,0,0,[1],[1],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,1],[[1,1,7],1],[[16,1,1,7],1],0,0,0,0,0,0,0,0,0,0,[[16,1,1,15,1],1],0,0,0,0,0,0,0,0,0,0,0,0,[1,21],0,[1,21],0,0,0,0,0,0,0,0,0,0,0,[1,1],0,[1,1],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[4,21],0,[26,22],0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[27,27],[28,28],[29,29],[30,30],[31,31],[32,32],[33,33],[34,34],[35,35],[8,8],[36,36],[5,5],[4,4],[37,37],[38,38],[14,14],[1,1],[39,39],[40,40],[41,41],[42,42],[43,43],[44,44],[45,45],[46,46],[47,47],[48,48],[6,6],[25,25],[49,49],[50,50],[51,51],[52,52],[53,53],[54,54],[55,55],[56,56],[57,57],[58,58],[59,59],[60,60],[61,61],[62,62],[63,63],[64,64],[65,65],[66,66],[3,3],[11,11],[67,67],[68,68],[69,69],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[26,22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],36],[[],5],[[],38],[[],40],[[],41],[[],43],[[],44],[[],64],[[],65],[[],66],[[],11],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[36,36],70],[[5,5],70],[[4,4],70],[[38,38],70],[[42,42],70],[[45,45],70],[[55,55],70],[[],70],[[],70],[[],70],[[],70],[[],70],[[],70],[[],70],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[30,71],72],[[31,71],72],[[32,71],72],[[33,71],72],[[34,71],72],[[35,71],72],[[8,71],72],[[36,71],72],[[4,71],72],[[1,71],72],[[39,71],72],[[42,71],72],[[45,71],72],[[73,71],72],[[74,71],72],[[75,71],72],[[55,71],72],[[3,71],72],[[76,71],72],[[77,71],72],[[78,71],72],[[79,71],72],[[80,71],72],[[81,71],72],[[82,71],72],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[26,22],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[4,70],0,0,0,0,0,0,0,[26,22],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],61],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[26,22],0,0,0,0,0,0,0,0,0,0,0,0,0,[[26,22]],[[26,22]],[[26,22]],[[26,22]],[[26,22]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],83],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],[[],84],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],5],[[],4],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[12,12],[[]],[[],12],0,[[12,12],70],[[],70],0,[[]],[[]],0,0,[[]],[[],83],[[],83],0,[[],84]],"c":[139,365,366,367,368,684,732,1054,1055,1114,1119,1125,1147],"p":[[3,"PyObject"],[6,"c_int"],[3,"PyTypeObject"],[19,"PyMethodDefPointer"],[3,"PyMethodDef"],[3,"PyCodeObject"],[6,"Py_ssize_t"],[3,"PyDateTime_CAPI"],[6,"c_uchar"],[6,"c_double"],[3,"PyHeapTypeObject"],[3,"PyMemberDef"],[6,"c_char"],[3,"PyModuleDef"],[6,"size_t"],[3,"PyThreadState"],[6,"c_ulong"],[6,"Py_UCS1"],[6,"Py_UCS2"],[6,"Py_UCS4"],[6,"c_void"],[6,"c_uint"],[6,"vectorcallfunc"],[4,"Option"],[3,"PyCompilerFlags"],[3,"PyASCIIObject"],[3,"PyByteArrayObject"],[3,"Py_complex"],[3,"PyComplexObject"],[3,"PyDateTime_Delta"],[3,"_PyDateTime_BaseTime"],[3,"PyDateTime_Time"],[3,"PyDateTime_Date"],[3,"_PyDateTime_BaseDateTime"],[3,"PyDateTime_DateTime"],[3,"PyGetSetDef"],[3,"PyModuleDef_Base"],[3,"PyModuleDef_Slot"],[3,"PyVarObject"],[3,"PyType_Slot"],[3,"PyType_Spec"],[4,"PySendResult"],[3,"PyObjectArenaAllocator"],[3,"PyHash_FuncDef"],[4,"PyGILState_STATE"],[3,"PyStructSequence_Field"],[3,"PyStructSequence_Desc"],[3,"PyBytesObject"],[3,"PyFutureFeatures"],[3,"PyTryBlock"],[3,"PyFrameObject"],[3,"PyGenObject"],[3,"_inittab"],[3,"_frozen"],[4,"_PyStatus_TYPE"],[3,"PyStatus"],[3,"PyWideStringList"],[3,"PyPreConfig"],[3,"PyConfig"],[3,"PyListObject"],[3,"Py_buffer"],[3,"PyNumberMethods"],[3,"PySequenceMethods"],[3,"PyMappingMethods"],[3,"PyAsyncMethods"],[3,"PyBufferProcs"],[4,"PyMemAllocatorDomain"],[3,"PyMemAllocatorEx"],[3,"_PyErr_StackItem"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"setentry"],[3,"PySetObject"],[3,"PyDictObject"],[3,"PyBaseExceptionObject"],[3,"PySyntaxErrorObject"],[3,"PyImportErrorObject"],[3,"PyUnicodeErrorObject"],[3,"PySystemExitObject"],[3,"PyOSErrorObject"],[3,"PyStopIterationObject"],[4,"Result"],[3,"TypeId"],[3,"PyCompactUnicodeObject"],[3,"PyUnicodeObject"],[19,"PyUnicodeObjectData"],[3,"PyFloatObject"],[3,"PyCFunctionObject"],[3,"PySliceObject"],[3,"wrapperbase"],[3,"PyDescrObject"],[3,"PyMethodDescrObject"],[3,"PyMemberDescrObject"],[3,"PyGetSetDescrObject"],[3,"PyWrapperDescrObject"],[3,"PyFunctionObject"],[3,"PyCMethodObject"],[3,"PyTupleObject"],[3,"_PyWeakReference"],[3,"PyLongObject"],[3,"PyInterpreterState"],[3,"_PyOpcache"],[3,"PyDictKeysObject"]]},\ "pyo3_macros":{"doc":"This crate declares only the proc macro attributes, as a …","t":"YXXXX","n":["FromPyObject","pyclass","pyfunction","pymethods","pymodule"],"q":[[0,"pyo3_macros"]],"d":["","","A proc macro used to expose Rust functions to Python.","A proc macro used to expose methods to Python.","A proc macro used to implement Python modules."],"i":[0,0,0,0,0],"f":[0,0,0,0,0],"c":[],"p":[]},\ "pyo3_macros_backend":{"doc":"This crate contains the implementation of the proc macro …","t":"NDEDDNLLLLLLLLLFFFFFMLLLLMMMLLLLLLFLLLLMMMLLLMFFMMLLLLLLLLLLLLL","n":["Inventory","PyClassArgs","PyClassMethodsType","PyFunctionOptions","PyModuleOptions","Specialization","add_attributes","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_derive_from_pyobject","build_py_class","build_py_enum","build_py_function","build_py_methods","class_kind","clone","clone_into","default","default","deprecated_args","deprecations","deprecations","from","from","from","from","from_attrs","from_attrs","get_doc","into","into","into","into","krate","name","options","parse","parse_enum_args","parse_stuct_args","pass_module","process_functions_in_module","pymodule_impl","signature","text_signature","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id"],"q":[[0,"pyo3_macros_backend"]],"d":["","The parsed arguments of the pyclass macro","The mechanism used to collect #[pymethods] into the type …","","","","","","","","","","","","","Derive FromPyObject for enums and structs.","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Collects all #[doc = “…”] attributes into a …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Finds and takes care of the #[pyfn(…)] in #[pymodule]","Generates the function that is called by the python …","","","","","","","","","","","","","","",""],"i":[8,0,0,0,0,8,1,7,12,1,8,7,12,1,8,0,0,0,0,0,7,8,8,12,1,1,7,1,7,12,1,8,12,1,0,7,12,1,8,1,1,7,1,7,7,1,0,0,1,1,8,7,12,1,8,7,12,1,8,7,12,1,8],"f":[0,0,0,0,0,0,[[1,2],3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[4,[[3,[5]]]],[[6,7,8],[[3,[5]]]],[[9,7,8],[[3,[5]]]],[[10,1],[[3,[5]]]],[[11,8],[[3,[5]]]],0,[8,8],[[]],[[],12],[[],1],0,0,0,[[]],[[]],[[]],[[]],[[[14,[13]]],[[3,[12]]]],[[[14,[13]]],[[3,[1]]]],0,[[]],[[]],[[]],[[]],0,0,0,[18,[[3,[1]]]],[18,[[3,[7]]]],[18,[[3,[7]]]],0,[[12,10],3],0,0,0,[[]],[[],21],[[],21],[[],21],[[],21],[[],21],[[],21],[[],21],[[],21],[[],22],[[],22],[[],22],[[],22]],"c":[],"p":[[3,"PyFunctionOptions"],[8,"IntoIterator"],[6,"Result"],[3,"DeriveInput"],[3,"TokenStream"],[3,"ItemStruct"],[3,"PyClassArgs"],[4,"PyClassMethodsType"],[3,"ItemEnum"],[3,"ItemFn"],[3,"ItemImpl"],[3,"PyModuleOptions"],[3,"Attribute"],[3,"Vec"],[15,"slice"],[3,"String"],[4,"Option"],[6,"ParseStream"],[3,"Ident"],[4,"Visibility"],[4,"Result"],[3,"TypeId"]]},\ -"quick_xml":{"doc":"High performance XML reader/writer.","t":"NECCNENNNNNNNNNNCCGNNNNNNNNNNCNLLLLAAAALLLLLLLLLALAALLLLLLAMMNNEEDNNNINNQNNNNNDNDEDNNDNNNNNNNILLLLLLLLLLLLLLLLKLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLFLLLLLLLLLKLLLLKLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLNENNNNNNNLLLLFLLLLFLLLLLLFFDDDDDNNNNNNNENNNLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLEEDDNNNNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLMLNNDNDDEDENNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNEDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["Custom","DeError","Decoder","ElementWriter","EndEventMismatch","Error","EscapeError","ExpectedStart","InvalidAttr","InvalidBoolean","InvalidFloat","InvalidInt","InvalidXml","Io","KeyNotRead","NonDecodable","NsReader","Reader","Result","TextNotFound","TooManyEvents","UnexpectedBang","UnexpectedEnd","UnexpectedEof","UnexpectedEof","UnexpectedStart","UnexpectedToken","UnknownPrefix","Unsupported","Writer","XmlDeclWithoutVersion","borrow","borrow_mut","clone","clone_into","de","encoding","escape","events","fmt","fmt","from","from","from","from","from","from","into","name","provide","reader","se","source","to_owned","to_string","try_from","try_into","type_id","writer","expected","found","CData","Custom","DeError","DeEvent","Deserializer","DocType","End","End","EntityResolver","Eof","Eof","Error","ExpectedStart","InvalidBoolean","InvalidFloat","InvalidInt","InvalidXml","IoReader","KeyNotRead","NoEntityResolver","PayloadEvent","SliceReader","Start","Start","Text","Text","Text","TooManyEvents","UnexpectedEnd","UnexpectedEof","UnexpectedStart","Unsupported","XmlRead","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capture","capture","clone","clone","clone_into","clone_into","custom","custom","decoder","decoder","decoder","default","deref","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","eq","eq","eq","equivalent","equivalent","equivalent","event_buffer_size","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_reader","from_reader","from_str","from_str","into","into","into","into","into","into","into","into","next","next","next","next_element_seed","provide","read_to_end","read_to_end","read_to_end","resolve","resolve","source","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","with_resolver","Decoder","borrow","borrow_mut","clone","clone_into","decode","eq","equivalent","fmt","from","into","to_owned","try_from","try_into","type_id","EntityWithNull","EscapeError","InvalidCodepoint","InvalidDecimal","InvalidHexadecimal","TooLongDecimal","TooLongHexadecimal","UnrecognizedSymbol","UnterminatedEntity","borrow","borrow_mut","clone","clone_into","escape","fmt","fmt","from","into","partial_escape","provide","to_owned","to_string","try_from","try_into","type_id","unescape","unescape_with","BytesCData","BytesDecl","BytesEnd","BytesStart","BytesText","CData","Comment","Decl","DocType","Empty","End","Eof","Event","PI","Start","Text","as_ref","attributes","attributes","attributes_raw","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear_attributes","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","deref","deref","deref","deref","deref","deref","encoding","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","escape","extend_attributes","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_content","from_escaped","from_start","html_attributes","inplace_trim_end","inplace_trim_start","into","into","into","into","into","into","into_inner","into_inner","into_owned","into_owned","into_owned","into_owned","into_owned","into_owned","local_name","local_name","name","name","new","new","new","new","new","partial_escape","push_attribute","set_name","standalone","to_end","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_get_attribute","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","unescape","unescape_with","version","with_attributes","Attr","AttrError","Attribute","Attributes","DoubleQ","Duplicated","Empty","ExpectedEq","ExpectedQuote","ExpectedValue","SingleQ","Unquoted","UnquotedValue","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","decode_and_unescape_value","decode_and_unescape_value_with","eq","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","hash","html","into","into","into","into","into_iter","key","key","map","new","next","partial_cmp","provide","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","unescape_value","unescape_value_with","value","value","with_checks","Bound","Default","LocalName","Named","Namespace","Prefix","PrefixDeclaration","QName","ResolveResult","Unbound","Unknown","as_namespace_binding","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","decompose","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","hash","hash","hash","hash","hash","hash","into","into","into","into","into","into","into_inner","into_inner","into_inner","into_inner","local_name","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","prefix","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","NsReader","Reader","Span","borrow","borrow","borrow_mut","borrow_mut","buffer_position","check_comments","check_comments","check_end_names","check_end_names","clone","clone_into","decoder","deref","expand_empty_elements","expand_empty_elements","from","from","from_file","from_file","from_reader","from_reader","from_str","from_str","get_mut","get_mut","get_ref","into","into","into_inner","into_inner","read_event","read_event","read_event_into","read_event_into","read_resolved_event","read_resolved_event_into","read_text","read_text","read_to_end","read_to_end","read_to_end_into","read_to_end_into","resolve","resolve_attribute","resolve_element","to_owned","trim_markup_names_in_closing_tags","trim_markup_names_in_closing_tags","trim_text","trim_text","trim_text_end","trim_text_end","try_from","try_from","try_into","try_into","type_id","type_id","Full","Minimal","Partial","QuoteLevel","Serializer","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","eq","equivalent","fmt","from","from","indent","into","into","new","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","to_owned","to_string","to_string_with_root","to_writer","to_writer_with_root","try_from","try_from","try_into","try_into","type_id","type_id","with_root","ElementWriter","Writer","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","create_element","from","from","get_mut","get_ref","into","into","into_inner","new","new_with_indent","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","with_attribute","with_attributes","write_bom","write_cdata_content","write_empty","write_event","write_indent","write_inner_content","write_pi_content","write_text_content"],"q":[[0,"quick_xml"],[59,"quick_xml::Error"],[61,"quick_xml::de"],[234,"quick_xml::encoding"],[249,"quick_xml::escape"],[276,"quick_xml::events"],[424,"quick_xml::events::attributes"],[510,"quick_xml::name"],[628,"quick_xml::reader"],[689,"quick_xml::se"],[751,"quick_xml::writer"]],"d":["Serde custom error","(De)serialization error","","","End event mismatch","The error type used by this crate.","Escape error","This error indicates that deserialize_struct was called, …","Attribute parsing error","Cannot parse specified value to boolean","Cannot parse to float","Cannot parse to integer","Xml parsing error","IO error.","This error indicates an error in the Deserialize …","Input decoding error. If encoding feature is disabled, …","","","A specialized Result type where the error is hard-wired to …","Text not found, expected Event::Text","Too many events were skipped while deserializing a …","Unexpected <!>","Deserializer encounter an end tag with a specified name …","Unexpected End of File","The Reader produced Event::Eof when it is not expecting, …","Deserializer encounter a start tag with a specified name …","Unexpected token","Specified namespace prefix is unknown, cannot resolve …","An attempt to deserialize to a type, that is not supported …","","Event::BytesDecl must start with version attribute. …","","","","","Serde Deserializer module.","A module for wrappers that encode / decode data.","Manage xml character escapes","Defines zero-copy XML events used throughout this library.","","","Creates a new Error::Utf8 from the given error","Creates a new Error::EscapeError from the given error","Creates a new Error::NonDecodable from the given error","Creates a new Error::Io from the given error","","Returns the argument unchanged.","Calls U::from(self).","Module for handling names according to the W3C Namespaces …","","Contains high-level interface for a pull-based XML parser.","Module to handle custom serde Serializer","","","","","","","Contains high-level interface for an events-based XML …","Expected end event","Found end event","Unescaped character data stored in <![CDATA[...]]>.","Serde custom error","(De)serialization error","Simplified event which contains only these variants that …","A structure that deserializes XML into Rust values.","Document type definition data (DTD) stored in …","End tag </tag>.","End tag </tag>.","Used to resolve unknown entities while parsing","End of XML document.","End of XML document.","The error type that represents DTD parse error","This error indicates that deserialize_struct was called, …","Cannot parse specified value to boolean","Cannot parse to float","Cannot parse to integer","Xml parsing error","XML input source that reads from a std::io input stream.","This error indicates an error in the Deserialize …","An EntityResolver that does nothing and always returns None…","Simplified event which contains only these variants that …","XML input source that reads from a slice of bytes and can …","Start tag (with attributes) <tag attr="value">.","Start tag (with attributes) <tag attr="value">.","Decoded and concatenated content of consequent Text and …","Decoded and concatenated content of consequent Text and …","Escaped character data between tags.","Too many events were skipped while deserializing a …","Deserializer encounter an end tag with a specified name …","The Reader produced Event::Eof when it is not expecting, …","Deserializer encounter a start tag with a specified name …","An attempt to deserialize to a type, that is not supported …","Trait used by the deserializer for iterating over input. …","","","","","","","","","","","","","","","","","Called on contents of Event::DocType to capture declared …","","","","","","","","A copy of the reader’s decoder used to decode strings.","","","","","","","Forwards deserialization to the deserialize_bytes.","Returns DeError::Unsupported","Character represented as strings.","","","","","","","","","Identifiers represented as strings.","Always call visitor.visit_unit() because returned value …","","","","","","Representation of owned strings the same as non-owned.","","Representation of tuples the same as sequences.","Representation of named tuples the same as unnamed tuples.","","","","","","Unit represented in XML as a xs:element or text/CDATA …","Representation of the named units the same as unnamed units","","","","","","","Set the maximum number of events that could be skipped …","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Deserialize from a reader. This method will do internal …","Create new deserializer that will copy data from the …","Deserialize an instance of type T from a string of XML …","Create new deserializer that will borrow data from the …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return an input-borrowing event.","","","","","Skips until end element is found. Unlike next() it will …","","","Called when an entity needs to be resolved.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create new deserializer that will copy data from the …","Decoder of byte slices into strings.","","","","","Without encoding feature","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","Entity with Null character","Error for XML escape / unescape.","Not a valid unicode codepoint","Character is not a valid decimal value","Character is not a valid hexadecimal value","Cannot convert decimal to hexa","Cannot convert Hexa to utf8","Unrecognized escape symbol","Cannot find ; after &","","","","","Escapes an &str and replaces all xml special characters (<…","","","Returns the argument unchanged.","Calls U::from(self).","Escapes an &str and replaces xml special characters (<, >, …","","","","","","","Unescape an &str and replaces all xml escaped characters (…","Unescape an &str and replaces all xml escaped characters (…","CDATA content contains unescaped data from the reader. If …","An XML declaration (Event::Decl).","A struct to manage Event::End events","Opening tag data (Event::Start), with optional attributes.","Data from various events (most notably, Event::Text) that …","Unescaped character data stored in <![CDATA[...]]>.","Comment <!-- ... -->.","XML declaration <?xml ...?>.","Document type definition data (DTD) stored in …","Empty element tag (with attributes) <tag attr="value" />.","End tag </tag>.","End of XML document.","Event emitted by Reader::read_event_into.","Processing instruction <?...?>.","Start tag (with attributes) <tag attr="value">.","Escaped character data between tags.","","Xml Attributes module","Returns an iterator over the attributes of this tag.","Gets the undecoded raw string with the attributes of this …","","Converts the event into a borrowed event. Most useful when …","","Converts the event into a borrowed event.","Converts the event into a borrowed event.","","","Converts the event into a borrowed event.","Converts the event into a borrowed event.","","Converts the event into a borrowed event.","","","","","","","","Remove all attributes from the ByteStart","","","","","","","","","","","","","","","","","","","Gets xml encoding, excluding quotes (' or ").","","","","","","","","","","","","","Converts this CDATA content to an escaped version, that …","Add additional attributes to this tag using an iterator.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates a new BytesStart from the given content (name + …","Creates a new BytesText from an escaped string.","Creates a BytesDecl from a BytesStart","Returns an iterator over the HTML-like attributes of this …","Removes trailing XML whitespace bytes from text content.","Removes leading XML whitespace bytes from text content.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Extracts the inner Cow from the BytesText event container.","Extracts the inner Cow from the BytesCData event container.","Converts the event into an owned event.","Converts the event into an owned event.","Converts the event into an owned event.","Ensures that all data is owned to extend the object’s …","Ensures that all data is owned to extend the object’s …","Converts the event to an owned version, untied to the …","Gets the undecoded raw local tag name (excluding …","Gets the undecoded raw local tag name (excluding …","Gets the undecoded raw tag name, as present in the input …","Gets the undecoded raw tag name, as present in the input …","Creates a new BytesStart from the given name.","Constructs a new XmlDecl from the (mandatory) version …","Creates a new BytesEnd borrowing a slice.","Creates a new BytesText from a string. The string is …","Creates a new BytesCData from a string.","Converts this CDATA content to an escaped version, that …","Adds an attribute to this element.","Edit the name of the BytesStart in-place","Gets xml standalone, excluding quotes (' or ").","Creates new paired close tag","","Converts the event into an owned event without taking …","","","","","","","","","","","","Try to get an attribute","","","","","","","","","","","","","Decodes then unescapes the content of the event.","Decodes then unescapes the content of the event with …","Gets xml version, excluding quotes (' or ").","Consumes self and yield a new BytesStart with additional …","A struct representing a key/value XML or HTML attribute.","Errors that can be raised during parsing attributes.","A struct representing a key/value XML attribute.","Iterator over XML attributes.","Attribute with value enclosed in double quotes ("). …","An attribute with the same name was already encountered. …","Attribute without value. Attribute key provided. This is …","Attribute key was not followed by =, position relative to …","Attribute value was not finished with a matching quote, …","Attribute value was not found after =, position relative …","Attribute with value enclosed in single quotes ('). …","Attribute with value not enclosed in quotes. Attribute key …","Attribute value is not quoted, position relative to the …","","","","","","","","","","","","","","","","","","Decodes then unescapes the value.","Decodes then unescapes the value with custom entities.","","","","","","","","","","","","","Creates new attribute from text representation. Key is …","Returns the argument unchanged.","Creates new attribute from raw bytes. Does not apply any …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Creates a new attribute iterator from a buffer, allowing …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Returns the key value","The key to uniquely define the attribute.","Maps an Attr<T> to Attr<U> by applying a function to a …","Creates a new attribute iterator from a buffer.","","","","","","","","","","","","","","","","","","","","","Decodes using UTF-8 then unescapes the value.","Decodes using UTF-8 then unescapes the value, using custom …","Returns the attribute value. For Self::Empty variant an …","The raw value of the attribute.","Changes whether attributes should be checked for …","Prefix resolved to the specified namespace","XML attribute binds a default namespace. Corresponds to …","A local (unqualified) name of an element or an attribute, …","XML attribute binds a specified prefix to a namespace. …","A namespace name that is declared in a …","A namespace prefix part of the qualified name of an …","A namespace prefix declaration, xmlns or xmlns:<name>, as …","A qualified name of an element or an attribute, including …","Result of prefix resolution which creates by …","Qualified name does not contain prefix, and resolver does …","Specified prefix was not found in scope","If that QName represents "xmlns" series of names, returns …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The same as (qname.local_name(), qname.prefix()), but does …","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Creates LocalName from a QName","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts this name to an internal slice representation.","Converts this name to an internal slice representation.","Extracts internal slice","Converts this namespace to an internal slice …","Returns local part of this qualified name.","","","","","","Returns namespace part of this qualified name or None if …","","","","","","","","","","","","","","","","","","","","","","","","","A low level encoding-agnostic XML event reader that …","A low level encoding-agnostic XML event reader.","Range of input in bytes, that corresponds to some piece of …","","","","","Gets the current byte position in the input data.","Changes whether comments should be validated.","Changes whether comments should be validated.","Changes whether mismatched closing tag names should be …","Changes whether mismatched closing tag names should be …","","","Get the decoder, used to decode bytes, read by this …","","Changes whether empty elements should be split into an Open…","Changes whether empty elements should be split into an Open…","Returns the argument unchanged.","Returns the argument unchanged.","Creates an XML reader from a file path.","Creates an XML reader from a file path.","Creates a NsReader that reads from a reader.","Creates a Reader that reads from a given reader.","Creates an XML reader from a string slice.","Creates an XML reader from a string slice.","Gets a mutable reference to the underlying reader.","Gets a mutable reference to the underlying reader.","Gets a reference to the underlying reader.","Calls U::from(self).","Calls U::from(self).","Consumes NsReader returning the underlying reader","Consumes Reader returning the underlying reader","Reads the next event, borrow its content from the input …","Read an event that borrows from the input rather than a …","Reads the next event into given buffer.","Reads the next Event.","Reads the next event, borrow its content from the input …","Reads the next event into given buffer and resolves its …","Reads content between start and end tags, including any …","Reads content between start and end tags, including any …","Reads until end element is found. This function is …","Reads until end element is found. This function is …","Reads until end element is found using provided buffer as …","Reads until end element is found using provided buffer as …","Resolves a potentially qualified element name or attribute …","Resolves a potentially qualified attribute name into …","Resolves a potentially qualified element name into …","","Changes whether trailing whitespaces after the markup name …","Changes whether trailing whitespaces after the markup name …","Changes whether whitespace before and after character data …","Changes whether whitespace before and after character data …","Changes whether whitespace after character data should be …","Changes whether whitespace after character data should be …","","","","","","","Performs escaping, escape all characters that could have …","Performs the minimal possible escaping, escape only …","Performs escaping that is compatible with SGML …","Defines which characters would be escaped in Text events …","A Serializer","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Configure indent for a serializer","Calls U::from(self).","Calls U::from(self).","Creates a new Serializer that uses struct name as a root …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Serialize struct into a String.","Serialize struct into a String using specified root tag …","Serialize struct into a Writer.","Serialize struct into a Writer using specified root tag …","","","","","","","Creates a new Serializer that uses specified root tag …","A struct to write an element. Contains methods to add …","XML writer. Writes XML Events to a std::io::Write or […","","","","","","","Provides a simple, high-level API for writing XML elements.","Returns the argument unchanged.","Returns the argument unchanged.","Get a mutable reference to the underlying writer.","Get a reference to the underlying writer.","Calls U::from(self).","Calls U::from(self).","Consumes this Writer, returning the underlying writer.","Creates a Writer from a generic writer.","Creates a Writer with configured whitespace indents from a …","","","","","","","","Adds an attribute to this element.","Add additional attributes to this element using an …","Write a Byte-Order-Mark character to the document.","Write a CData event <![CDATA[...]]> inside the current …","Write an empty (self-closing) tag.","Writes the given event to the underlying writer.","Manually write a newline and indentation at the proper …","Create a new scope for writing XML inside the current …","Write a processing instruction <?...?> inside the current …","Write some text inside the current element."],"i":[17,0,0,0,1,0,1,17,1,17,17,17,17,1,17,1,0,0,0,1,17,1,17,1,17,17,1,1,17,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,97,97,33,17,0,0,0,33,32,33,0,32,33,25,17,17,17,17,17,0,17,0,0,0,32,33,0,32,33,17,17,17,17,17,0,26,21,22,16,23,32,33,17,26,21,22,16,23,32,33,17,25,16,16,17,16,17,17,17,24,21,22,16,23,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,23,32,33,23,32,33,26,23,32,33,17,17,26,21,22,16,23,23,32,33,17,17,17,17,17,17,17,17,17,0,26,0,26,26,21,22,16,23,32,33,17,24,21,22,26,17,24,21,22,25,16,17,16,17,17,26,21,22,16,23,32,33,17,26,21,22,16,23,32,33,17,26,21,22,16,23,32,33,17,26,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,5,0,5,5,5,5,5,5,5,5,5,5,5,0,5,5,5,5,0,5,5,5,5,5,5,0,0,0,0,0,0,0,46,46,46,46,46,46,46,0,46,46,46,46,0,47,47,47,47,49,49,50,50,15,15,51,51,46,46,47,49,50,15,51,46,47,47,49,50,15,51,46,47,49,50,15,51,46,47,49,50,15,51,46,49,47,49,50,15,51,46,47,49,50,15,51,46,51,47,47,49,50,15,51,46,47,49,50,15,51,46,47,15,49,47,15,15,47,49,50,15,51,46,15,51,47,49,50,15,51,46,47,50,47,50,47,49,50,15,51,51,47,47,49,47,47,47,49,50,15,51,46,47,49,50,15,51,46,47,47,49,50,15,51,46,47,49,50,15,51,46,15,15,49,47,0,0,0,0,59,8,59,8,8,8,59,59,8,55,48,8,59,55,48,8,59,55,48,8,59,55,48,8,59,59,55,55,55,8,59,55,8,59,55,48,8,8,59,55,55,55,55,48,8,59,59,48,55,48,8,59,48,59,55,59,48,48,59,8,55,48,8,59,8,55,48,8,59,55,48,8,59,55,48,8,59,55,55,59,55,48,70,67,0,67,0,0,0,0,0,70,70,41,41,54,68,69,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,41,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,69,41,41,54,68,67,69,41,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,0,0,0,71,62,71,62,62,71,62,71,62,62,62,62,71,71,62,71,62,71,62,71,62,71,62,71,62,62,71,62,71,62,71,62,71,62,71,71,71,62,71,62,71,62,71,71,71,62,71,62,71,62,71,62,71,62,71,62,71,62,77,77,77,0,0,79,77,79,77,77,77,77,77,77,79,77,79,79,77,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,77,0,0,0,0,79,77,79,77,79,77,79,0,0,95,93,95,93,93,93,93,95,93,93,93,95,93,93,93,93,93,95,93,95,93,95,93,95,95,93,95,95,93,93,95,95,95],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[1,1],[[]],0,0,0,0,[[1,2],3],[[1,2],3],[4,1],[5,1],[6,1],[7,1],[8,1],[[]],[[]],0,[9],0,0,[1,[[11,[10]]]],[[]],[[],12],[[],13],[[],13],[[],14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[15,13],[[16,15],13],[16,16],[17,17],[[]],[[]],[18,17],[18,17],[[],19],[[[21,[20]]],19],[22,19],[[],16],[23],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],28,[29,[28]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],28,27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],28,[29,[28]],27],[[13,[17]]]],[[[26,[24,25]],30,27],[[13,[17]]]],[[[26,[24,25]],28,30,27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],28,27],[[13,[17]]]],[[23,23],31],[[32,32],31],[[33,33],31],[[],31],[[],31],[[],31],[[[26,[24,25]],[11,[34]]],[[26,[24,25]]]],[[23,2],3],[[32,2],3],[[33,2],3],[[17,2],3],[[17,2],3],[[]],[[]],[[]],[[]],[[]],[28,23],[[]],[[]],[35,17],[[]],[4,17],[6,17],[8,17],[36,17],[37,17],[5,17],[1,17],[20,[[13,[38,17]]]],[20,[[26,[[21,[20]]]]]],[28,[[13,[39,17]]]],[28,[[26,[22]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[13,[33,17]]]],[[[21,[20]]],[[13,[33,17]]]],[22,[[13,[33,17]]]],[[[26,[24,25]],40],[[13,[11]]]],[9],[41,[[13,[17]]]],[[[21,[20]],41],[[13,[17]]]],[[22,41],[[13,[17]]]],[28,[[11,[28]]]],[[16,28],[[11,[28]]]],[17,[[11,[10]]]],[[]],[[]],[[],12],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[20,25],[[26,[[21,[20]],25]]]],0,[[]],[[]],[19,19],[[]],[[19,[29,[42]]],[[44,[[43,[28]]]]]],[[19,19],31],[[],31],[[19,2],3],[[]],[[]],[[]],[[],13],[[],13],[[],14],0,0,0,0,0,0,0,0,0,[[]],[[]],[5,5],[[]],[28,[[43,[28]]]],[[5,2],3],[[5,2],3],[[]],[[]],[28,[[43,[28]]]],[9],[[]],[[],12],[[],13],[[],13],[[],14],[28,[[13,[[43,[28]],5]]]],[[28,45],[[13,[[43,[28]],5]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[46,46],0,[47,48],[47,[[29,[42]]]],[[]],[47,47],[[]],[49,49],[50,50],[[]],[[]],[15,15],[51,51],[[]],[46,46],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[47,47],[47,47],[49,49],[50,50],[15,15],[51,51],[46,46],[[]],[[]],[[]],[[]],[[]],[[]],[47,[[29,[42]]]],[49,[[29,[42]]]],[50,[[29,[42]]]],[15,[[29,[42]]]],[51,[[29,[42]]]],[46,[[29,[42]]]],[49,[[11,[[44,[[43,[[29,[42]]]]]]]]]],[[47,47],31],[[49,49],31],[[50,50],31],[[15,15],31],[[51,51],31],[[46,46],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[51,[[44,[15]]]],[[47,52],47],[[47,2],3],[[49,2],3],[[50,2],3],[[15,2],3],[[51,2],3],[[46,2],3],[[]],[[]],[[]],[[]],[[]],[[]],[[[53,[[43,[28]]]],30],47],[[[53,[[43,[28]]]]],15],[47,49],[47,48],[15,31],[15,31],[[]],[[]],[[]],[[]],[[]],[[]],[15,[[43,[[29,[42]]]]]],[51,[[43,[[29,[42]]]]]],[47,47],[49,49],[50,50],[15,15],[51,51],[46,46],[47,54],[50,54],[47,41],[50,41],[[[53,[[43,[28]]]]],47],[[28,[11,[28]],[11,[28]]],49],[[[53,[[43,[28]]]]],50],[28,15],[[[53,[[43,[28]]]]],51],[51,[[44,[15]]]],[[47,[53,[55]]]],[[47,[29,[42]]],47],[49,[[11,[[44,[[43,[[29,[42]]]]]]]]]],[47,50],[[]],[47,47],[[]],[[]],[[]],[[]],[[]],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[47,[0,[[56,[[29,[42]]]],57]]],[[44,[[11,[55]]]]]],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[15,[[44,[[43,[28]]]]]],[[15,45],[[44,[[43,[28]]]]]],[49,[[44,[[43,[[29,[42]]]]]]]],[[47,52],47],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[55,55],[48,48],[8,8],[[[59,[58]]],[[59,[58]]]],[[]],[[]],[[]],[[]],[[[59,[60]],[59,[60]]],61],[[55,62],[[44,[[43,[28]]]]]],[[55,62,45],[[44,[[43,[28]]]]]],[[55,55],31],[[8,8],31],[[[59,[63]],[59,[63]]],31],[[],31],[[],31],[[],31],[[55,2],3],[[48,2],3],[[8,2],3],[[8,2],3],[[[59,[[56,[[29,[42]]]]]],2],3],[[[59,[[29,[42]]]]],55],[[],55],[[]],[[],55],[[]],[[]],[[]],[[[59,[64]],65]],[[28,30],48],[[]],[[]],[[]],[[]],[[]],[[[59,[[29,[42]]]]],41],0,[[59,45],59],[[28,30],48],[48,11],[[[59,[66]],[59,[66]]],[[11,[61]]]],[9],[[]],[[]],[[]],[[]],[[],12],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[],14],[[],14],[55,[[44,[[43,[28]]]]]],[[55,45],[[44,[[43,[28]]]]]],[[[59,[[29,[42]]]]],[[29,[42]]]],0,[[48,31],48],0,0,0,0,0,0,0,0,0,0,0,[41,[[11,[67]]]],[41,[[29,[42]]]],[54,[[29,[42]]]],[68,[[29,[42]]]],[69,[[29,[42]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[41,41],[54,54],[68,68],[67,67],[69,69],[70,70],[[]],[[]],[[]],[[]],[[]],[[]],[[41,41],61],[[54,54],61],[[68,68],61],[[67,67],61],[[69,69],61],[41],[[41,41],31],[[54,54],31],[[68,68],31],[[67,67],31],[[69,69],31],[[70,70],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[41,2],3],[[54,2],3],[[68,2],3],[[67,2],3],[[69,2],3],[[70,2],3],[[]],[41,54],[[]],[[]],[[]],[[]],[[]],[[41,65]],[[54,65]],[[68,65]],[[67,65]],[[69,65]],[[70,65]],[[]],[[]],[[]],[[]],[[]],[[]],[41,[[29,[42]]]],[54,[[29,[42]]]],[68,[[29,[42]]]],[69,[[29,[42]]]],[41,54],[[41,41],[[11,[61]]]],[[54,54],[[11,[61]]]],[[68,68],[[11,[61]]]],[[67,67],[[11,[61]]]],[[69,69],[[11,[61]]]],[41,[[11,[68]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],0,0,0,[[]],[[]],[[]],[[]],[62,30],[[71,31],71],[[62,31],62],[[71,31],71],[[62,31],62],[[[62,[58]]],[[62,[58]]]],[[]],[62,19],[71],[[71,31],71],[[62,31],62],[[]],[[]],[[[56,[72]]],[[44,[[71,[[74,[73]]]]]]]],[[[56,[72]]],[[44,[[62,[[74,[73]]]]]]]],[[],71],[[],62],[28,[[71,[[29,[42]]]]]],[28,[[62,[[29,[42]]]]]],[71],[62],[62],[[]],[[]],[71],[62],[[[71,[[29,[42]]]]],[[44,[46]]]],[[[62,[[29,[42]]]]],[[44,[46]]]],[[[71,[20]],[75,[42]]],[[44,[46]]]],[[[62,[20]],[75,[42]]],[[44,[46]]]],[[[71,[[29,[42]]]]],44],[[[71,[20]],[75,[42]]],44],[[[71,[[29,[42]]]],41],[[44,[[43,[28]]]]]],[[[62,[[29,[42]]]],41],[[44,[[43,[28]]]]]],[[[71,[[29,[42]]]],41],[[44,[76]]]],[[[62,[[29,[42]]]],41],[[44,[76]]]],[[[71,[20]],41,[75,[42]]],[[44,[76]]]],[[[62,[20]],41,[75,[42]]],[[44,[76]]]],[[71,41,31]],[[71,41]],[[71,41]],[[]],[[71,31],71],[[62,31],62],[[71,31],71],[[62,31],62],[[71,31],71],[[62,31],62],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],0,0,0,0,0,[[]],[[]],[[]],[[]],[77,77],[[]],[[77,77],31],[[],31],[[77,2],3],[[]],[[]],[[[79,[78]],80,30],[[79,[78]]]],[[]],[[]],[78,[[79,[78]]]],[[[79,[78]],31],13],[[[79,[78]],[29,[42]]],13],[[[79,[78]],80],13],[[[79,[78]],81],13],[[[79,[78]],82],13],[[[79,[78]],83],13],[[[79,[78]],84],13],[[[79,[78]],85],13],[[[79,[78]],86],13],[[[79,[78]],87],13],[[[79,[78]],[11,[30]]],[[13,[17]]]],[[[79,[78]],28,[0,[57,88]]],[[13,[17]]]],[[[79,[78]],28,89,28,[0,[57,88]]],[[13,[17]]]],[[[79,[78]]],[[13,[17]]]],[[[79,[78]],[11,[30]]],[[13,[17]]]],[[[79,[78]],[0,[57,88]]],[[13,[17]]]],[[[79,[78]],28],13],[[[79,[78]],28,30],[[13,[17]]]],[[[79,[78]],28,89,28,30],[[13,[17]]]],[[[79,[78]],30],[[13,[17]]]],[[[79,[78]],28,30],[[13,[17]]]],[[[79,[78]],28,89,28,30],[[13,[17]]]],[[[79,[78]],90],13],[[[79,[78]],91],13],[[[79,[78]],89],13],[[[79,[78]],92],13],[[[79,[78]],42],13],[[[79,[78]]],[[13,[17]]]],[[[79,[78]],28],[[13,[17]]]],[[[79,[78]],28,89,28],[[13,[17]]]],[[]],[[[0,[57,88]]],[[13,[12,17]]]],[[28,[0,[57,88]]],[[13,[12,17]]]],[[78,[0,[57,88]]],[[13,[17]]]],[[78,28,[0,[57,88]]],[[13,[17]]]],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[78,[11,[28]]],[[13,[[79,[78]],17]]]],0,0,[[]],[[]],[[]],[[]],[[[93,[58]]],[[93,[58]]]],[[]],[[[93,[94]],[0,[[56,[28]],57]]],[[95,[94]]]],[[]],[[]],[93],[93],[[]],[[]],[93],[[],93],[[94,42,30],[[93,[94]]]],[[]],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[[95,[94]],[53,[55]]],[[95,[94]]]],[[[95,[94]],52],[[95,[94]]]],[[[93,[94]]],44],[[[95,[94]],51],[[44,[[93,[94]]]]]],[[[95,[94]]],[[44,[[93,[94]]]]]],[[[93,[94]],[56,[46]]],44],[[[93,[94]]],44],[[[95,[94]],96],[[44,[[93,[94]]]]]],[[[95,[94]],15],[[44,[[93,[94]]]]]],[[[95,[94]],15],[[44,[[93,[94]]]]]]],"c":[],"p":[[4,"Error"],[3,"Formatter"],[6,"Result"],[3,"FromUtf8Error"],[4,"EscapeError"],[3,"Utf8Error"],[3,"Error"],[4,"AttrError"],[3,"Demand"],[8,"Error"],[4,"Option"],[3,"String"],[4,"Result"],[3,"TypeId"],[3,"BytesText"],[3,"NoEntityResolver"],[4,"DeError"],[8,"Display"],[3,"Decoder"],[8,"BufRead"],[3,"IoReader"],[3,"SliceReader"],[3,"Text"],[8,"XmlRead"],[8,"EntityResolver"],[3,"Deserializer"],[8,"Visitor"],[15,"str"],[15,"slice"],[15,"usize"],[15,"bool"],[4,"DeEvent"],[4,"PayloadEvent"],[3,"NonZeroUsize"],[3,"ParseFloatError"],[3,"Error"],[3,"ParseIntError"],[8,"DeserializeOwned"],[8,"Deserialize"],[8,"DeserializeSeed"],[3,"QName"],[15,"u8"],[4,"Cow"],[6,"Result"],[8,"FnMut"],[4,"Event"],[3,"BytesStart"],[3,"Attributes"],[3,"BytesDecl"],[3,"BytesEnd"],[3,"BytesCData"],[8,"IntoIterator"],[8,"Into"],[3,"LocalName"],[3,"Attribute"],[8,"AsRef"],[8,"Sized"],[8,"Clone"],[4,"Attr"],[8,"Ord"],[4,"Ordering"],[3,"Reader"],[8,"PartialEq"],[8,"Hash"],[8,"Hasher"],[8,"PartialOrd"],[4,"PrefixDeclaration"],[3,"Prefix"],[3,"Namespace"],[4,"ResolveResult"],[3,"NsReader"],[3,"Path"],[3,"File"],[3,"BufReader"],[3,"Vec"],[6,"Span"],[4,"QuoteLevel"],[8,"Write"],[3,"Serializer"],[15,"char"],[15,"f32"],[15,"f64"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[8,"Serialize"],[15,"u32"],[15,"u128"],[15,"u16"],[15,"u64"],[3,"Writer"],[8,"Write"],[3,"ElementWriter"],[8,"FnOnce"],[13,"EndEventMismatch"]]},\ +"quick_xml":{"doc":"High performance XML reader/writer.","t":"NECCNENNNNNNNNNNCCGNNNNNNNNNNCNLLLLAAAALLLLLLLLLALAALLLLLLAMMNNEEDNNNINNQNNNNNDNDEDNNDNNNNNNNILLLLLLLLLLLLLLLLKLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLFLLLLLLLLLKLLLLKLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLNENNNNNNNLLLLFLLLLFLLLLLLFFDDDDDNNNNNNNENNNLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLEEDDNNNNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLMLNNDNDDEDENNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNEDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["Custom","DeError","Decoder","ElementWriter","EndEventMismatch","Error","EscapeError","ExpectedStart","InvalidAttr","InvalidBoolean","InvalidFloat","InvalidInt","InvalidXml","Io","KeyNotRead","NonDecodable","NsReader","Reader","Result","TextNotFound","TooManyEvents","UnexpectedBang","UnexpectedEnd","UnexpectedEof","UnexpectedEof","UnexpectedStart","UnexpectedToken","UnknownPrefix","Unsupported","Writer","XmlDeclWithoutVersion","borrow","borrow_mut","clone","clone_into","de","encoding","escape","events","fmt","fmt","from","from","from","from","from","from","into","name","provide","reader","se","source","to_owned","to_string","try_from","try_into","type_id","writer","expected","found","CData","Custom","DeError","DeEvent","Deserializer","DocType","End","End","EntityResolver","Eof","Eof","Error","ExpectedStart","InvalidBoolean","InvalidFloat","InvalidInt","InvalidXml","IoReader","KeyNotRead","NoEntityResolver","PayloadEvent","SliceReader","Start","Start","Text","Text","Text","TooManyEvents","UnexpectedEnd","UnexpectedEof","UnexpectedStart","Unsupported","XmlRead","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capture","capture","clone","clone","clone_into","clone_into","custom","custom","decoder","decoder","decoder","default","deref","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","eq","eq","eq","equivalent","equivalent","equivalent","event_buffer_size","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_reader","from_reader","from_str","from_str","into","into","into","into","into","into","into","into","next","next","next","next_element_seed","provide","read_to_end","read_to_end","read_to_end","resolve","resolve","source","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","with_resolver","Decoder","borrow","borrow_mut","clone","clone_into","decode","eq","equivalent","fmt","from","into","to_owned","try_from","try_into","type_id","EntityWithNull","EscapeError","InvalidCodepoint","InvalidDecimal","InvalidHexadecimal","TooLongDecimal","TooLongHexadecimal","UnrecognizedSymbol","UnterminatedEntity","borrow","borrow_mut","clone","clone_into","escape","fmt","fmt","from","into","partial_escape","provide","to_owned","to_string","try_from","try_into","type_id","unescape","unescape_with","BytesCData","BytesDecl","BytesEnd","BytesStart","BytesText","CData","Comment","Decl","DocType","Empty","End","Eof","Event","PI","Start","Text","as_ref","attributes","attributes","attributes_raw","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear_attributes","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","deref","deref","deref","deref","deref","deref","encoding","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","escape","extend_attributes","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_content","from_escaped","from_start","html_attributes","inplace_trim_end","inplace_trim_start","into","into","into","into","into","into","into_inner","into_inner","into_owned","into_owned","into_owned","into_owned","into_owned","into_owned","local_name","local_name","name","name","new","new","new","new","new","partial_escape","push_attribute","set_name","standalone","to_end","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_get_attribute","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","unescape","unescape_with","version","with_attributes","Attr","AttrError","Attribute","Attributes","DoubleQ","Duplicated","Empty","ExpectedEq","ExpectedQuote","ExpectedValue","SingleQ","Unquoted","UnquotedValue","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","decode_and_unescape_value","decode_and_unescape_value_with","eq","eq","eq","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","hash","html","into","into","into","into","into_iter","key","key","map","new","next","partial_cmp","provide","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","unescape_value","unescape_value_with","value","value","with_checks","Bound","Default","LocalName","Named","Namespace","Prefix","PrefixDeclaration","QName","ResolveResult","Unbound","Unknown","as_namespace_binding","as_ref","as_ref","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","cmp","cmp","decompose","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","hash","hash","hash","hash","hash","hash","into","into","into","into","into","into","into_inner","into_inner","into_inner","into_inner","local_name","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","prefix","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","NsReader","Reader","Span","borrow","borrow","borrow_mut","borrow_mut","buffer_position","check_comments","check_comments","check_end_names","check_end_names","clone","clone_into","decoder","deref","expand_empty_elements","expand_empty_elements","from","from","from_file","from_file","from_reader","from_reader","from_str","from_str","get_mut","get_mut","get_ref","into","into","into_inner","into_inner","read_event","read_event","read_event_into","read_event_into","read_resolved_event","read_resolved_event_into","read_text","read_text","read_to_end","read_to_end","read_to_end_into","read_to_end_into","resolve","resolve_attribute","resolve_element","to_owned","trim_markup_names_in_closing_tags","trim_markup_names_in_closing_tags","trim_text","trim_text","trim_text_end","trim_text_end","try_from","try_from","try_into","try_into","type_id","type_id","Full","Minimal","Partial","QuoteLevel","Serializer","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","eq","equivalent","fmt","from","from","indent","into","into","new","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","to_owned","to_string","to_string_with_root","to_writer","to_writer_with_root","try_from","try_from","try_into","try_into","type_id","type_id","with_root","ElementWriter","Writer","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","create_element","from","from","get_mut","get_ref","into","into","into_inner","new","new_with_indent","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","with_attribute","with_attributes","write_bom","write_cdata_content","write_empty","write_event","write_indent","write_inner_content","write_pi_content","write_text_content"],"q":[[0,"quick_xml"],[59,"quick_xml::Error"],[61,"quick_xml::de"],[234,"quick_xml::encoding"],[249,"quick_xml::escape"],[276,"quick_xml::events"],[424,"quick_xml::events::attributes"],[510,"quick_xml::name"],[628,"quick_xml::reader"],[689,"quick_xml::se"],[751,"quick_xml::writer"]],"d":["Serde custom error","(De)serialization error","","","End event mismatch","The error type used by this crate.","Escape error","This error indicates that deserialize_struct was called, …","Attribute parsing error","Cannot parse specified value to boolean","Cannot parse to float","Cannot parse to integer","Xml parsing error","IO error.","This error indicates an error in the Deserialize …","Input decoding error. If encoding feature is disabled, …","","","A specialized Result type where the error is hard-wired to …","Text not found, expected Event::Text","Too many events were skipped while deserializing a …","Unexpected <!>","Deserializer encounter an end tag with a specified name …","Unexpected End of File","The Reader produced Event::Eof when it is not expecting, …","Deserializer encounter a start tag with a specified name …","Unexpected token","Specified namespace prefix is unknown, cannot resolve …","An attempt to deserialize to a type, that is not supported …","","Event::BytesDecl must start with version attribute. …","","","","","Serde Deserializer module.","A module for wrappers that encode / decode data.","Manage xml character escapes","Defines zero-copy XML events used throughout this library.","","","Creates a new Error::Utf8 from the given error","Creates a new Error::NonDecodable from the given error","","Creates a new Error::EscapeError from the given error","Creates a new Error::Io from the given error","Returns the argument unchanged.","Calls U::from(self).","Module for handling names according to the W3C Namespaces …","","Contains high-level interface for a pull-based XML parser.","Module to handle custom serde Serializer","","","","","","","Contains high-level interface for an events-based XML …","Expected end event","Found end event","Unescaped character data stored in <![CDATA[...]]>.","Serde custom error","(De)serialization error","Simplified event which contains only these variants that …","A structure that deserializes XML into Rust values.","Document type definition data (DTD) stored in …","End tag </tag>.","End tag </tag>.","Used to resolve unknown entities while parsing","End of XML document.","End of XML document.","The error type that represents DTD parse error","This error indicates that deserialize_struct was called, …","Cannot parse specified value to boolean","Cannot parse to float","Cannot parse to integer","Xml parsing error","XML input source that reads from a std::io input stream.","This error indicates an error in the Deserialize …","An EntityResolver that does nothing and always returns None…","Simplified event which contains only these variants that …","XML input source that reads from a slice of bytes and can …","Start tag (with attributes) <tag attr="value">.","Start tag (with attributes) <tag attr="value">.","Decoded and concatenated content of consequent Text and …","Decoded and concatenated content of consequent Text and …","Escaped character data between tags.","Too many events were skipped while deserializing a …","Deserializer encounter an end tag with a specified name …","The Reader produced Event::Eof when it is not expecting, …","Deserializer encounter a start tag with a specified name …","An attempt to deserialize to a type, that is not supported …","Trait used by the deserializer for iterating over input. …","","","","","","","","","","","","","","","","","Called on contents of Event::DocType to capture declared …","","","","","","","","A copy of the reader’s decoder used to decode strings.","","","","","","","Forwards deserialization to the deserialize_bytes.","Returns DeError::Unsupported","Character represented as strings.","","","","","","","","","Identifiers represented as strings.","Always call visitor.visit_unit() because returned value …","","","","","","Representation of owned strings the same as non-owned.","","Representation of tuples the same as sequences.","Representation of named tuples the same as unnamed tuples.","","","","","","Unit represented in XML as a xs:element or text/CDATA …","Representation of the named units the same as unnamed units","","","","","","","Set the maximum number of events that could be skipped …","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","Deserialize from a reader. This method will do internal …","Create new deserializer that will copy data from the …","Deserialize an instance of type T from a string of XML …","Create new deserializer that will borrow data from the …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return an input-borrowing event.","","","","","Skips until end element is found. Unlike next() it will …","","","Called when an entity needs to be resolved.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create new deserializer that will copy data from the …","Decoder of byte slices into strings.","","","","","Without encoding feature","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","Entity with Null character","Error for XML escape / unescape.","Not a valid unicode codepoint","Character is not a valid decimal value","Character is not a valid hexadecimal value","Cannot convert decimal to hexa","Cannot convert Hexa to utf8","Unrecognized escape symbol","Cannot find ; after &","","","","","Escapes an &str and replaces all xml special characters (<…","","","Returns the argument unchanged.","Calls U::from(self).","Escapes an &str and replaces xml special characters (<, >, …","","","","","","","Unescape an &str and replaces all xml escaped characters (…","Unescape an &str and replaces all xml escaped characters (…","CDATA content contains unescaped data from the reader. If …","An XML declaration (Event::Decl).","A struct to manage Event::End events","Opening tag data (Event::Start), with optional attributes.","Data from various events (most notably, Event::Text) that …","Unescaped character data stored in <![CDATA[...]]>.","Comment <!-- ... -->.","XML declaration <?xml ...?>.","Document type definition data (DTD) stored in …","Empty element tag (with attributes) <tag attr="value" />.","End tag </tag>.","End of XML document.","Event emitted by Reader::read_event_into.","Processing instruction <?...?>.","Start tag (with attributes) <tag attr="value">.","Escaped character data between tags.","","Xml Attributes module","Returns an iterator over the attributes of this tag.","Gets the undecoded raw string with the attributes of this …","","Converts the event into a borrowed event. Most useful when …","","Converts the event into a borrowed event.","Converts the event into a borrowed event.","","","Converts the event into a borrowed event.","","Converts the event into a borrowed event.","Converts the event into a borrowed event.","","","","","","","","Remove all attributes from the ByteStart","","","","","","","","","","","","","","","","","","","Gets xml encoding, excluding quotes (' or ").","","","","","","","","","","","","","Converts this CDATA content to an escaped version, that …","Add additional attributes to this tag using an iterator.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Creates a new BytesStart from the given content (name + …","Creates a new BytesText from an escaped string.","Creates a BytesDecl from a BytesStart","Returns an iterator over the HTML-like attributes of this …","Removes trailing XML whitespace bytes from text content.","Removes leading XML whitespace bytes from text content.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Extracts the inner Cow from the BytesText event container.","Extracts the inner Cow from the BytesCData event container.","Converts the event into an owned event.","Converts the event into an owned event.","Converts the event into an owned event.","Ensures that all data is owned to extend the object’s …","Ensures that all data is owned to extend the object’s …","Converts the event to an owned version, untied to the …","Gets the undecoded raw local tag name (excluding …","Gets the undecoded raw local tag name (excluding …","Gets the undecoded raw tag name, as present in the input …","Gets the undecoded raw tag name, as present in the input …","Creates a new BytesStart from the given name.","Constructs a new XmlDecl from the (mandatory) version …","Creates a new BytesEnd borrowing a slice.","Creates a new BytesText from a string. The string is …","Creates a new BytesCData from a string.","Converts this CDATA content to an escaped version, that …","Adds an attribute to this element.","Edit the name of the BytesStart in-place","Gets xml standalone, excluding quotes (' or ").","Creates new paired close tag","","Converts the event into an owned event without taking …","","","","","","","","","","","","Try to get an attribute","","","","","","","","","","","","","Decodes then unescapes the content of the event.","Decodes then unescapes the content of the event with …","Gets xml version, excluding quotes (' or ").","Consumes self and yield a new BytesStart with additional …","A struct representing a key/value XML or HTML attribute.","Errors that can be raised during parsing attributes.","A struct representing a key/value XML attribute.","Iterator over XML attributes.","Attribute with value enclosed in double quotes ("). …","An attribute with the same name was already encountered. …","Attribute without value. Attribute key provided. This is …","Attribute key was not followed by =, position relative to …","Attribute value was not finished with a matching quote, …","Attribute value was not found after =, position relative …","Attribute with value enclosed in single quotes ('). …","Attribute with value not enclosed in quotes. Attribute key …","Attribute value is not quoted, position relative to the …","","","","","","","","","","","","","","","","","","Decodes then unescapes the value.","Decodes then unescapes the value with custom entities.","","","","","","","","","","","","Creates new attribute from text representation. Key is …","Creates new attribute from raw bytes. Does not apply any …","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Creates a new attribute iterator from a buffer, allowing …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Returns the key value","The key to uniquely define the attribute.","Maps an Attr<T> to Attr<U> by applying a function to a …","Creates a new attribute iterator from a buffer.","","","","","","","","","","","","","","","","","","","","","Decodes using UTF-8 then unescapes the value.","Decodes using UTF-8 then unescapes the value, using custom …","Returns the attribute value. For Self::Empty variant an …","The raw value of the attribute.","Changes whether attributes should be checked for …","Prefix resolved to the specified namespace","XML attribute binds a default namespace. Corresponds to …","A local (unqualified) name of an element or an attribute, …","XML attribute binds a specified prefix to a namespace. …","A namespace name that is declared in a …","A namespace prefix part of the qualified name of an …","A namespace prefix declaration, xmlns or xmlns:<name>, as …","A qualified name of an element or an attribute, including …","Result of prefix resolution which creates by …","Qualified name does not contain prefix, and resolver does …","Specified prefix was not found in scope","If that QName represents "xmlns" series of names, returns …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The same as (qname.local_name(), qname.prefix()), but does …","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Creates LocalName from a QName","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Converts this name to an internal slice representation.","Converts this name to an internal slice representation.","Extracts internal slice","Converts this namespace to an internal slice …","Returns local part of this qualified name.","","","","","","Returns namespace part of this qualified name or None if …","","","","","","","","","","","","","","","","","","","","","","","","","A low level encoding-agnostic XML event reader that …","A low level encoding-agnostic XML event reader.","Range of input in bytes, that corresponds to some piece of …","","","","","Gets the current byte position in the input data.","Changes whether comments should be validated.","Changes whether comments should be validated.","Changes whether mismatched closing tag names should be …","Changes whether mismatched closing tag names should be …","","","Get the decoder, used to decode bytes, read by this …","","Changes whether empty elements should be split into an Open…","Changes whether empty elements should be split into an Open…","Returns the argument unchanged.","Returns the argument unchanged.","Creates an XML reader from a file path.","Creates an XML reader from a file path.","Creates a NsReader that reads from a reader.","Creates a Reader that reads from a given reader.","Creates an XML reader from a string slice.","Creates an XML reader from a string slice.","Gets a mutable reference to the underlying reader.","Gets a mutable reference to the underlying reader.","Gets a reference to the underlying reader.","Calls U::from(self).","Calls U::from(self).","Consumes NsReader returning the underlying reader","Consumes Reader returning the underlying reader","Reads the next event, borrow its content from the input …","Read an event that borrows from the input rather than a …","Reads the next event into given buffer.","Reads the next Event.","Reads the next event, borrow its content from the input …","Reads the next event into given buffer and resolves its …","Reads content between start and end tags, including any …","Reads content between start and end tags, including any …","Reads until end element is found. This function is …","Reads until end element is found. This function is …","Reads until end element is found using provided buffer as …","Reads until end element is found using provided buffer as …","Resolves a potentially qualified element name or attribute …","Resolves a potentially qualified attribute name into …","Resolves a potentially qualified element name into …","","Changes whether trailing whitespaces after the markup name …","Changes whether trailing whitespaces after the markup name …","Changes whether whitespace before and after character data …","Changes whether whitespace before and after character data …","Changes whether whitespace after character data should be …","Changes whether whitespace after character data should be …","","","","","","","Performs escaping, escape all characters that could have …","Performs the minimal possible escaping, escape only …","Performs escaping that is compatible with SGML …","Defines which characters would be escaped in Text events …","A Serializer","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Configure indent for a serializer","Calls U::from(self).","Calls U::from(self).","Creates a new Serializer that uses struct name as a root …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Serialize struct into a String.","Serialize struct into a String using specified root tag …","Serialize struct into a Writer.","Serialize struct into a Writer using specified root tag …","","","","","","","Creates a new Serializer that uses specified root tag …","A struct to write an element. Contains methods to add …","XML writer. Writes XML Events to a std::io::Write or […","","","","","","","Provides a simple, high-level API for writing XML elements.","Returns the argument unchanged.","Returns the argument unchanged.","Get a mutable reference to the underlying writer.","Get a reference to the underlying writer.","Calls U::from(self).","Calls U::from(self).","Consumes this Writer, returning the underlying writer.","Creates a Writer from a generic writer.","Creates a Writer with configured whitespace indents from a …","","","","","","","","Adds an attribute to this element.","Add additional attributes to this element using an …","Write a Byte-Order-Mark character to the document.","Write a CData event <![CDATA[...]]> inside the current …","Write an empty (self-closing) tag.","Writes the given event to the underlying writer.","Manually write a newline and indentation at the proper …","Create a new scope for writing XML inside the current …","Write a processing instruction <?...?> inside the current …","Write some text inside the current element."],"i":[17,0,0,0,1,0,1,17,1,17,17,17,17,1,17,1,0,0,0,1,17,1,17,1,17,17,1,1,17,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,97,97,33,17,0,0,0,33,32,33,0,32,33,25,17,17,17,17,17,0,17,0,0,0,32,33,0,32,33,17,17,17,17,17,0,26,21,22,16,23,32,33,17,26,21,22,16,23,32,33,17,25,16,16,17,16,17,17,17,24,21,22,16,23,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,23,32,33,23,32,33,26,23,32,33,17,17,26,21,22,16,23,23,32,33,17,17,17,17,17,17,17,17,17,0,26,0,26,26,21,22,16,23,32,33,17,24,21,22,26,17,24,21,22,25,16,17,16,17,17,26,21,22,16,23,32,33,17,26,21,22,16,23,32,33,17,26,21,22,16,23,32,33,17,26,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,7,0,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,0,7,7,7,7,7,7,0,0,0,0,0,0,0,46,46,46,46,46,46,46,0,46,46,46,46,0,47,47,47,47,49,49,50,50,15,15,51,51,46,46,47,49,50,15,51,46,47,47,49,50,15,51,46,47,49,50,15,51,46,47,49,50,15,51,46,49,47,49,50,15,51,46,47,49,50,15,51,46,51,47,47,49,50,15,51,46,47,49,50,15,51,46,47,15,49,47,15,15,47,49,50,15,51,46,15,51,47,49,50,15,51,46,47,50,47,50,47,49,50,15,51,51,47,47,49,47,47,47,49,50,15,51,46,47,49,50,15,51,46,47,47,49,50,15,51,46,47,49,50,15,51,46,15,15,49,47,0,0,0,0,59,6,59,6,6,6,59,59,6,55,48,6,59,55,48,6,59,55,48,6,59,55,48,6,59,59,55,55,55,6,59,55,6,59,55,48,6,6,59,55,55,55,55,48,6,59,59,48,55,48,6,59,48,59,55,59,48,48,59,6,55,48,6,59,6,55,48,6,59,55,48,6,59,55,48,6,59,55,55,59,55,48,70,67,0,67,0,0,0,0,0,70,70,41,41,54,68,69,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,41,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,69,41,41,54,68,67,69,41,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,41,54,68,67,69,70,0,0,0,71,62,71,62,62,71,62,71,62,62,62,62,71,71,62,71,62,71,62,71,62,71,62,71,62,62,71,62,71,62,71,62,71,62,71,71,71,62,71,62,71,62,71,71,71,62,71,62,71,62,71,62,71,62,71,62,71,62,77,77,77,0,0,79,77,79,77,77,77,77,77,77,79,77,79,79,77,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,77,0,0,0,0,79,77,79,77,79,77,79,0,0,95,93,95,93,93,93,93,95,93,93,93,95,93,93,93,93,93,95,93,95,93,95,93,95,95,93,95,95,93,93,95,95,95],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[1,1],[[]],0,0,0,0,[[1,2],3],[[1,2],3],[4,1],[5,1],[6,1],[7,1],[8,1],[[]],[[]],0,[9],0,0,[1,[[11,[10]]]],[[]],[[],12],[[],13],[[],13],[[],14],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[15,13],[[16,15],13],[16,16],[17,17],[[]],[[]],[18,17],[18,17],[[],19],[[[21,[20]]],19],[22,19],[[],16],[23],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],28,[29,[28]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],28,27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],28,[29,[28]],27],[[13,[17]]]],[[[26,[24,25]],30,27],[[13,[17]]]],[[[26,[24,25]],28,30,27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],27],[[13,[17]]]],[[[26,[24,25]],28,27],[[13,[17]]]],[[23,23],31],[[32,32],31],[[33,33],31],[[],31],[[],31],[[],31],[[[26,[24,25]],[11,[34]]],[[26,[24,25]]]],[[23,2],3],[[32,2],3],[[33,2],3],[[17,2],3],[[17,2],3],[[]],[[]],[[]],[[]],[28,23],[[]],[[]],[[]],[4,17],[[]],[35,17],[5,17],[36,17],[1,17],[37,17],[7,17],[6,17],[20,[[13,[38,17]]]],[20,[[26,[[21,[20]]]]]],[28,[[13,[39,17]]]],[28,[[26,[22]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[13,[33,17]]]],[[[21,[20]]],[[13,[33,17]]]],[22,[[13,[33,17]]]],[[[26,[24,25]],40],[[13,[11]]]],[9],[41,[[13,[17]]]],[[[21,[20]],41],[[13,[17]]]],[[22,41],[[13,[17]]]],[28,[[11,[28]]]],[[16,28],[[11,[28]]]],[17,[[11,[10]]]],[[]],[[]],[[],12],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[[20,25],[[26,[[21,[20]],25]]]],0,[[]],[[]],[19,19],[[]],[[19,[29,[42]]],[[44,[[43,[28]]]]]],[[19,19],31],[[],31],[[19,2],3],[[]],[[]],[[]],[[],13],[[],13],[[],14],0,0,0,0,0,0,0,0,0,[[]],[[]],[7,7],[[]],[28,[[43,[28]]]],[[7,2],3],[[7,2],3],[[]],[[]],[28,[[43,[28]]]],[9],[[]],[[],12],[[],13],[[],13],[[],14],[28,[[13,[[43,[28]],7]]]],[[28,45],[[13,[[43,[28]],7]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[46,46],0,[47,48],[47,[[29,[42]]]],[[]],[47,47],[[]],[49,49],[50,50],[[]],[[]],[15,15],[[]],[51,51],[46,46],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[47,47],[47,47],[49,49],[50,50],[15,15],[51,51],[46,46],[[]],[[]],[[]],[[]],[[]],[[]],[47,[[29,[42]]]],[49,[[29,[42]]]],[50,[[29,[42]]]],[15,[[29,[42]]]],[51,[[29,[42]]]],[46,[[29,[42]]]],[49,[[11,[[44,[[43,[[29,[42]]]]]]]]]],[[47,47],31],[[49,49],31],[[50,50],31],[[15,15],31],[[51,51],31],[[46,46],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[51,[[44,[15]]]],[[47,52],47],[[47,2],3],[[49,2],3],[[50,2],3],[[15,2],3],[[51,2],3],[[46,2],3],[[]],[[]],[[]],[[]],[[]],[[]],[[[53,[[43,[28]]]],30],47],[[[53,[[43,[28]]]]],15],[47,49],[47,48],[15,31],[15,31],[[]],[[]],[[]],[[]],[[]],[[]],[15,[[43,[[29,[42]]]]]],[51,[[43,[[29,[42]]]]]],[47,47],[49,49],[50,50],[15,15],[51,51],[46,46],[47,54],[50,54],[47,41],[50,41],[[[53,[[43,[28]]]]],47],[[28,[11,[28]],[11,[28]]],49],[[[53,[[43,[28]]]]],50],[28,15],[[[53,[[43,[28]]]]],51],[51,[[44,[15]]]],[[47,[53,[55]]]],[[47,[29,[42]]],47],[49,[[11,[[44,[[43,[[29,[42]]]]]]]]]],[47,50],[[]],[47,47],[[]],[[]],[[]],[[]],[[]],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[47,[0,[[56,[[29,[42]]]],57]]],[[44,[[11,[55]]]]]],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],[15,[[44,[[43,[28]]]]]],[[15,45],[[44,[[43,[28]]]]]],[49,[[44,[[43,[[29,[42]]]]]]]],[[47,52],47],0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[55,55],[48,48],[6,6],[[[59,[58]]],[[59,[58]]]],[[]],[[]],[[]],[[]],[[[59,[60]],[59,[60]]],61],[[55,62],[[44,[[43,[28]]]]]],[[55,62,45],[[44,[[43,[28]]]]]],[[55,55],31],[[6,6],31],[[[59,[63]],[59,[63]]],31],[[],31],[[],31],[[],31],[[55,2],3],[[48,2],3],[[6,2],3],[[6,2],3],[[[59,[[56,[[29,[42]]]]]],2],3],[[],55],[[],55],[[]],[[[59,[[29,[42]]]]],55],[[]],[[]],[[]],[[[59,[64]],65]],[[28,30],48],[[]],[[]],[[]],[[]],[[]],[[[59,[[29,[42]]]]],41],0,[[59,45],59],[[28,30],48],[48,11],[[[59,[66]],[59,[66]]],[[11,[61]]]],[9],[[]],[[]],[[]],[[]],[[],12],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[],14],[[],14],[55,[[44,[[43,[28]]]]]],[[55,45],[[44,[[43,[28]]]]]],[[[59,[[29,[42]]]]],[[29,[42]]]],0,[[48,31],48],0,0,0,0,0,0,0,0,0,0,0,[41,[[11,[67]]]],[41,[[29,[42]]]],[54,[[29,[42]]]],[68,[[29,[42]]]],[69,[[29,[42]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[41,41],[54,54],[68,68],[67,67],[69,69],[70,70],[[]],[[]],[[]],[[]],[[]],[[]],[[41,41],61],[[54,54],61],[[68,68],61],[[67,67],61],[[69,69],61],[41],[[41,41],31],[[54,54],31],[[68,68],31],[[67,67],31],[[69,69],31],[[70,70],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[41,2],3],[[54,2],3],[[68,2],3],[[67,2],3],[[69,2],3],[[70,2],3],[[]],[[]],[41,54],[[]],[[]],[[]],[[]],[[41,65]],[[54,65]],[[68,65]],[[67,65]],[[69,65]],[[70,65]],[[]],[[]],[[]],[[]],[[]],[[]],[41,[[29,[42]]]],[54,[[29,[42]]]],[68,[[29,[42]]]],[69,[[29,[42]]]],[41,54],[[41,41],[[11,[61]]]],[[54,54],[[11,[61]]]],[[68,68],[[11,[61]]]],[[67,67],[[11,[61]]]],[[69,69],[[11,[61]]]],[41,[[11,[68]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[],14],[[],14],[[],14],[[],14],0,0,0,[[]],[[]],[[]],[[]],[62,30],[[71,31],71],[[62,31],62],[[71,31],71],[[62,31],62],[[[62,[58]]],[[62,[58]]]],[[]],[62,19],[71],[[71,31],71],[[62,31],62],[[]],[[]],[[[56,[72]]],[[44,[[71,[[74,[73]]]]]]]],[[[56,[72]]],[[44,[[62,[[74,[73]]]]]]]],[[],71],[[],62],[28,[[71,[[29,[42]]]]]],[28,[[62,[[29,[42]]]]]],[71],[62],[62],[[]],[[]],[71],[62],[[[71,[[29,[42]]]]],[[44,[46]]]],[[[62,[[29,[42]]]]],[[44,[46]]]],[[[71,[20]],[75,[42]]],[[44,[46]]]],[[[62,[20]],[75,[42]]],[[44,[46]]]],[[[71,[[29,[42]]]]],44],[[[71,[20]],[75,[42]]],44],[[[71,[[29,[42]]]],41],[[44,[[43,[28]]]]]],[[[62,[[29,[42]]]],41],[[44,[[43,[28]]]]]],[[[71,[[29,[42]]]],41],[[44,[76]]]],[[[62,[[29,[42]]]],41],[[44,[76]]]],[[[71,[20]],41,[75,[42]]],[[44,[76]]]],[[[62,[20]],41,[75,[42]]],[[44,[76]]]],[[71,41,31]],[[71,41]],[[71,41]],[[]],[[71,31],71],[[62,31],62],[[71,31],71],[[62,31],62],[[71,31],71],[[62,31],62],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],0,0,0,0,0,[[]],[[]],[[]],[[]],[77,77],[[]],[[77,77],31],[[],31],[[77,2],3],[[]],[[]],[[[79,[78]],80,30],[[79,[78]]]],[[]],[[]],[78,[[79,[78]]]],[[[79,[78]],31],13],[[[79,[78]],[29,[42]]],13],[[[79,[78]],80],13],[[[79,[78]],81],13],[[[79,[78]],82],13],[[[79,[78]],83],13],[[[79,[78]],84],13],[[[79,[78]],85],13],[[[79,[78]],86],13],[[[79,[78]],87],13],[[[79,[78]],[11,[30]]],[[13,[17]]]],[[[79,[78]],28,[0,[57,88]]],[[13,[17]]]],[[[79,[78]],28,89,28,[0,[57,88]]],[[13,[17]]]],[[[79,[78]]],[[13,[17]]]],[[[79,[78]],[11,[30]]],[[13,[17]]]],[[[79,[78]],[0,[57,88]]],[[13,[17]]]],[[[79,[78]],28],13],[[[79,[78]],28,30],[[13,[17]]]],[[[79,[78]],28,89,28,30],[[13,[17]]]],[[[79,[78]],30],[[13,[17]]]],[[[79,[78]],28,30],[[13,[17]]]],[[[79,[78]],28,89,28,30],[[13,[17]]]],[[[79,[78]],90],13],[[[79,[78]],91],13],[[[79,[78]],89],13],[[[79,[78]],92],13],[[[79,[78]],42],13],[[[79,[78]]],[[13,[17]]]],[[[79,[78]],28],[[13,[17]]]],[[[79,[78]],28,89,28],[[13,[17]]]],[[]],[[[0,[57,88]]],[[13,[12,17]]]],[[28,[0,[57,88]]],[[13,[12,17]]]],[[78,[0,[57,88]]],[[13,[17]]]],[[78,28,[0,[57,88]]],[[13,[17]]]],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[78,[11,[28]]],[[13,[[79,[78]],17]]]],0,0,[[]],[[]],[[]],[[]],[[[93,[58]]],[[93,[58]]]],[[]],[[[93,[94]],[0,[[56,[28]],57]]],[[95,[94]]]],[[]],[[]],[93],[93],[[]],[[]],[93],[[],93],[[94,42,30],[[93,[94]]]],[[]],[[],13],[[],13],[[],13],[[],13],[[],14],[[],14],[[[95,[94]],[53,[55]]],[[95,[94]]]],[[[95,[94]],52],[[95,[94]]]],[[[93,[94]]],44],[[[95,[94]],51],[[44,[[93,[94]]]]]],[[[95,[94]]],[[44,[[93,[94]]]]]],[[[93,[94]],[56,[46]]],44],[[[93,[94]]],44],[[[95,[94]],96],[[44,[[93,[94]]]]]],[[[95,[94]],15],[[44,[[93,[94]]]]]],[[[95,[94]],15],[[44,[[93,[94]]]]]]],"c":[],"p":[[4,"Error"],[3,"Formatter"],[6,"Result"],[3,"FromUtf8Error"],[3,"Utf8Error"],[4,"AttrError"],[4,"EscapeError"],[3,"Error"],[3,"Demand"],[8,"Error"],[4,"Option"],[3,"String"],[4,"Result"],[3,"TypeId"],[3,"BytesText"],[3,"NoEntityResolver"],[4,"DeError"],[8,"Display"],[3,"Decoder"],[8,"BufRead"],[3,"IoReader"],[3,"SliceReader"],[3,"Text"],[8,"XmlRead"],[8,"EntityResolver"],[3,"Deserializer"],[8,"Visitor"],[15,"str"],[15,"slice"],[15,"usize"],[15,"bool"],[4,"DeEvent"],[4,"PayloadEvent"],[3,"NonZeroUsize"],[3,"ParseFloatError"],[3,"ParseIntError"],[3,"Error"],[8,"DeserializeOwned"],[8,"Deserialize"],[8,"DeserializeSeed"],[3,"QName"],[15,"u8"],[4,"Cow"],[6,"Result"],[8,"FnMut"],[4,"Event"],[3,"BytesStart"],[3,"Attributes"],[3,"BytesDecl"],[3,"BytesEnd"],[3,"BytesCData"],[8,"IntoIterator"],[8,"Into"],[3,"LocalName"],[3,"Attribute"],[8,"AsRef"],[8,"Sized"],[8,"Clone"],[4,"Attr"],[8,"Ord"],[4,"Ordering"],[3,"Reader"],[8,"PartialEq"],[8,"Hash"],[8,"Hasher"],[8,"PartialOrd"],[4,"PrefixDeclaration"],[3,"Prefix"],[3,"Namespace"],[4,"ResolveResult"],[3,"NsReader"],[3,"Path"],[3,"File"],[3,"BufReader"],[3,"Vec"],[6,"Span"],[4,"QuoteLevel"],[8,"Write"],[3,"Serializer"],[15,"char"],[15,"f32"],[15,"f64"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[8,"Serialize"],[15,"u32"],[15,"u128"],[15,"u16"],[15,"u64"],[3,"Writer"],[8,"Write"],[3,"ElementWriter"],[8,"FnOnce"],[13,"EndEventMismatch"]]},\ "quote":{"doc":"github crates-io docs-rs","t":"IIIKKKKKOLLOOLLLLK","n":["IdentFragment","ToTokens","TokenStreamExt","append","append_all","append_separated","append_terminated","fmt","format_ident","into_token_stream","into_token_stream","quote","quote_spanned","span","span","to_token_stream","to_token_stream","to_tokens"],"q":[[0,"quote"]],"d":["Specialized formatting trait used by format_ident!.","Types that can be interpolated inside a quote! invocation.","TokenStream extension trait with methods for appending …","For use by ToTokens implementations.","For use by ToTokens implementations.","For use by ToTokens implementations.","For use by ToTokens implementations.","Format this value as an identifier fragment.","Formatting macro for constructing Idents.","Convert self directly into a TokenStream object.","Convert self directly into a TokenStream object.","The whole point.","Same as quote!, but applies a given span to all tokens …","Span associated with this IdentFragment.","Span associated with this IdentFragment.","Convert self directly into a TokenStream object.","Convert self directly into a TokenStream object.","Write self to the given TokenStream."],"i":[0,0,0,11,11,11,11,12,0,4,4,0,0,12,12,4,4,4],"f":[0,0,0,[[[2,[1]]]],[3],[[3,4]],[[3,4]],[5,6],0,[7,8],[7,8],0,0,[[],[[10,[9]]]],[[],[[10,[9]]]],[[],8],[[],8],[8]],"c":[],"p":[[4,"TokenTree"],[8,"Into"],[8,"IntoIterator"],[8,"ToTokens"],[3,"Formatter"],[6,"Result"],[8,"Sized"],[3,"TokenStream"],[3,"Span"],[4,"Option"],[8,"TokenStreamExt"],[8,"IdentFragment"]]},\ "rand":{"doc":"Utilities for random number generation","t":"SIDISIIQILLLALLKLLLLLLLKLLLLLLLLLLLKKALFLLALLLLLALLFLKLLKLLLLNDDEDDIINNNDDDDNDEDKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLAIIIQDDDDDIQKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCCAIDLLLLLLLLLLCCCCCCCCCCCCDDDDALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLQIDILLKLKLLKKLKKLLALLLLKKLLLLLEEELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLLLLL","n":["CUSTOM_START","CryptoRng","Error","Fill","INTERNAL_START","Rng","RngCore","Seed","SeedableRng","borrow","borrow_mut","code","distributions","fill","fill","fill_bytes","fmt","fmt","from","from","from","from_entropy","from_rng","from_seed","gen","gen","gen_bool","gen_bool","gen_range","gen_range","gen_ratio","gen_ratio","inner","into","new","next_u32","next_u64","prelude","provide","random","raw_os_error","read","rngs","sample","sample","sample_iter","sample_iter","seed_from_u64","seq","source","take_inner","thread_rng","to_string","try_fill","try_fill","try_fill","try_fill_bytes","try_from","try_into","type_id","vzip","AllWeightsZero","Alphanumeric","Bernoulli","BernoulliError","DistIter","DistMap","DistString","Distribution","InvalidProbability","InvalidWeight","NoItem","Open01","OpenClosed01","Slice","Standard","TooMany","Uniform","WeightedError","WeightedIndex","append_string","append_string","append_string","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","eq","eq","eq","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_ratio","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","map","map","new","new","new","next","provide","provide","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_iter","sample_iter","sample_string","sample_string","size_hint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uniform","update_weights","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","vzip","weighted","SampleBorrow","SampleRange","SampleUniform","Sampler","Uniform","UniformChar","UniformDuration","UniformFloat","UniformInt","UniformSampler","X","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","eq","eq","fmt","fmt","fmt","fmt","from","from","from","from","into","into","into","into","is_empty","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","new_inclusive","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","sample_single_inclusive","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","WeightedError","WeightedIndex","alias_method","Weight","WeightedIndex","borrow","borrow_mut","fmt","from","into","new","try_from","try_into","type_id","vzip","CryptoRng","Distribution","IteratorRandom","Rng","RngCore","SeedableRng","SliceRandom","SmallRng","StdRng","ThreadRng","random","thread_rng","OsRng","SmallRng","StdRng","ThreadRng","adapter","as_rngcore","as_rngcore","as_rngcore","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","default","default","eq","eq","equivalent","equivalent","fill_bytes","fill_bytes","fill_bytes","fill_bytes","fmt","fmt","fmt","fmt","from","from","from","from","from_rng","from_rng","from_seed","from_seed","into","into","into","into","mock","next_u32","next_u32","next_u32","next_u32","next_u64","next_u64","next_u64","next_u64","to_owned","to_owned","to_owned","to_owned","try_fill_bytes","try_fill_bytes","try_fill_bytes","try_fill_bytes","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","ReadError","ReadRng","ReseedingRng","as_rngcore","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","fill_bytes","fill_bytes","fmt","fmt","fmt","fmt","from","from","from","into","into","into","new","new","next_u32","next_u32","next_u64","next_u64","provide","reseed","source","to_owned","to_string","try_fill_bytes","try_fill_bytes","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip","StepRng","borrow","borrow_mut","clone","clone_into","eq","equivalent","fill_bytes","fmt","from","into","new","next_u32","next_u64","to_owned","try_fill_bytes","try_from","try_into","type_id","vzip","Item","IteratorRandom","SliceChooseIter","SliceRandom","borrow","borrow_mut","choose","choose","choose_multiple","choose_multiple","choose_multiple_fill","choose_multiple_weighted","choose_mut","choose_stable","choose_weighted","choose_weighted_mut","fmt","from","index","into","into_iter","len","next","partial_shuffle","shuffle","size_hint","try_from","try_into","type_id","vzip","IndexVec","IndexVecIntoIter","IndexVecIter","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","fmt","fmt","fmt","from","from","from","from","from","index","into","into","into","into_iter","into_iter","into_iter","into_vec","is_empty","iter","len","next","next","sample","sample_weighted","size_hint","size_hint","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","vzip","vzip","vzip"],"q":[[0,"rand"],[61,"rand::distributions"],[333,"rand::distributions::uniform"],[478,"rand::distributions::weighted"],[481,"rand::distributions::weighted::alias_method"],[493,"rand::prelude"],[505,"rand::rngs"],[588,"rand::rngs::adapter"],[637,"rand::rngs::mock"],[657,"rand::seq"],[687,"rand::seq::index"]],"d":["Codes at or above this point can be used by users to …","A marker trait used to indicate that an RngCore or …","Error type of random number generators","Types which may be filled with random data","Codes below this point represent OS Errors (i.e. positive …","An automatically-implemented extension trait on RngCore …","The core of a random number generator.","Seed type, which is restricted to types …","A random number generator that can be explicitly seeded.","","","Retrieve the error code, if any.","Generating random samples from probability distributions","Fill any type implementing Fill with random data","Fill any type implementing Fill with random data","Fill dest with random data.","","","","Returns the argument unchanged.","","Creates a new instance of the RNG seeded via getrandom.","Create a new PRNG seeded from another Rng.","Create a new PRNG using the given seed.","Return a random value supporting the Standard distribution.","Return a random value supporting the Standard distribution.","Return a bool with a probability p of being true.","Return a bool with a probability p of being true.","Generate a random value in the given range.","Generate a random value in the given range.","Return a bool with a probability of numerator/denominator …","Return a bool with a probability of numerator/denominator …","Reference the inner error (std only)","Calls U::from(self).","Construct from any type supporting std::error::Error","Return the next random u32.","Return the next random u64.","Convenience re-export of common members","","Generates a random value using the thread-local random …","Extract the raw OS error code (if this error came from the …","","Random number generators and adapters","Sample a new value, using the given distribution.","Sample a new value, using the given distribution.","Create an iterator that generates values using the given …","Create an iterator that generates values using the given …","Create a new PRNG using a u64 seed.","Sequence-related functionality","","Unwrap the inner error (std only)","Retrieve the lazily-initialized thread-local random number …","","Fill self with random data","Fill any type implementing Fill with random data","Fill any type implementing Fill with random data","Fill dest entirely with random data.","","","","","All items in the provided weight collection are zero.","Sample a u8, uniformly distributed over ASCII letters and …","The Bernoulli distribution.","Error type returned from Bernoulli::new.","An iterator that generates random values of T with …","A distribution of values of type S derived from the …","String sampler","Types (distributions) that can be used to create a random …","p < 0 or p > 1.","A weight is either less than zero, greater than the …","The provided weight collection contains no items.","A distribution to sample floating point numbers uniformly …","A distribution to sample floating point numbers uniformly …","A distribution to sample items uniformly from a slice.","A generic random value distribution, implemented for many …","Too many weights are provided (length greater than u32::MAX…","Sample values uniformly between two bounds.","Error type returned from WeightedIndex::new.","A distribution using weighted sampling of discrete items","Append len random chars to string","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Construct a new Bernoulli with the probability of success …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Create a distribution of values of ‘S’ by mapping the …","Create a distribution of values of ‘S’ by mapping the …","Construct a new Bernoulli with the given probability of …","Create a new Slice instance which samples uniformly from …","Creates a new a WeightedIndex Distribution using the values","","","","Generate a random value of T, using rng as the source of …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create an iterator that generates random values of T, …","Create an iterator that generates random values of T, …","Generate a String of len random chars","Generate a String of len random chars","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A distribution uniformly sampling numbers within a given …","Update a subset of weights, without changing the number of …","","","","","","","","","","","","","Weighted index sampling","Helper trait similar to Borrow but implemented only for …","Range that supports generating a single sample efficiently.","Helper trait for creating objects using the correct …","The UniformSampler implementation supporting type X.","Sample values uniformly between two bounds.","The back-end implementing UniformSampler for char.","The back-end implementing UniformSampler for Duration.","The back-end implementing UniformSampler for …","The back-end implementing UniformSampler for integer types.","Helper trait handling actual uniform sampling.","The type sampled by this implementation.","Immutably borrows from an owned value. See Borrow::borrow","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Check whether the range is empty.","Construct self, with inclusive lower bound and exclusive …","Create a new Uniform instance which samples uniformly from …","","","","","","","","","","","","","","","","","Construct self, with inclusive bounds [low, high].","Create a new Uniform instance which samples uniformly from …","","","","","","","","","","","","","","","","","Sample a value.","","","","","","","","","","","","","","","","","Generate a sample from the given range.","Sample a single value uniformly from a range with …","","","","","","","","","","","","","","","Sample a single value uniformly from a range with …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","","","","","","","","","","","","","A random number generator that retrieves randomness from …","A small-state, fast non-crypto PRNG","The standard RNG. The PRNG algorithm in StdRng is chosen …","A reference to the thread-local generator","Wrappers / adapters forming RNGs","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Mock random number generator","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ReadRng error type","An RNG that reads random bytes straight from any type …","A wrapper around any PRNG that implements BlockRngCore, …","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Create a new ReadRng from a Read.","Create a new ReseedingRng from an existing PRNG, combined …","","","","","","Reseed the internal PRNG.","","","","","","","","","","","","","","","","","","A simple implementation of RngCore for testing purposes.","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","Create a StepRng, yielding an arithmetic sequence starting …","","","","","","","","","The element type.","Extension trait on iterators, providing random sampling …","An iterator over multiple slice elements.","Extension trait on slices, providing random mutation and …","","","Returns a reference to one random element of the slice, or …","Choose one element at random from the iterator.","Chooses amount elements from the slice at random, without …","Collects amount values at random from the iterator into a …","Collects values at random from the iterator into a …","Similar to choose_multiple, but where the likelihood of …","Returns a mutable reference to one random element of the …","Choose one element at random from the iterator.","Similar to choose, but where the likelihood of each …","Similar to choose_mut, but where the likelihood of each …","","Returns the argument unchanged.","Low-level API for sampling indices","Calls U::from(self).","","","","Shuffle a slice in place, but exit early.","Shuffle a mutable slice in place.","","","","","","A vector of indices.","Return type of IndexVec::into_iter.","Return type of IndexVec::iter.","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Return the value at the given index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Convert into an iterator over the indices as a sequence of …","","","Return result as a Vec<usize>. Conversion may or may not …","Returns true if the length is 0.","Iterate over the indices as a sequence of usize values","Returns the number of indices","","","Randomly sample exactly amount distinct indices from …","Randomly sample exactly amount distinct indices from …","","","","","","","","","","","","","","","",""],"i":[1,0,0,0,1,0,0,85,0,1,1,1,0,31,31,12,1,1,1,1,1,85,85,85,31,31,31,31,31,31,31,31,1,1,1,12,12,0,1,0,1,12,0,31,31,31,31,85,0,1,1,0,1,4,31,31,12,1,1,1,1,43,0,0,0,0,0,0,0,36,43,43,0,0,0,0,43,0,0,0,96,33,34,35,36,28,48,37,38,33,40,42,43,44,34,35,36,28,48,37,38,33,40,42,43,44,34,35,36,37,38,33,40,42,43,44,34,35,36,37,38,33,40,42,43,44,34,35,36,42,43,44,36,43,35,36,36,28,48,37,38,33,40,42,43,43,44,34,35,36,28,48,37,38,33,40,42,43,44,44,44,34,35,35,36,28,48,37,38,33,40,42,43,44,34,28,27,27,35,40,42,28,36,43,27,35,48,37,37,38,38,33,40,42,44,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,27,27,96,96,28,35,36,37,38,33,40,42,43,44,34,36,43,35,36,28,48,37,38,33,40,42,43,44,34,35,36,28,48,37,38,33,40,42,43,44,34,35,36,28,48,37,38,33,40,42,43,44,34,0,42,35,36,28,48,37,38,33,40,42,43,44,34,0,0,0,0,15,0,0,0,0,0,0,97,76,72,73,74,75,72,73,74,75,72,73,74,75,72,73,74,75,72,74,72,73,74,75,72,73,74,75,72,73,74,75,16,97,44,72,72,72,72,72,72,72,72,72,72,72,72,73,74,74,75,97,44,72,72,72,72,72,72,72,72,72,72,72,72,73,74,74,75,97,72,72,72,72,72,72,72,72,72,72,72,72,73,74,74,75,16,97,72,72,72,72,72,72,72,72,72,72,72,72,74,74,97,72,72,72,72,72,72,72,72,72,72,72,72,72,73,74,75,72,73,74,75,72,73,74,75,72,73,74,75,72,73,74,75,0,0,0,0,0,79,79,79,79,79,79,79,79,79,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,83,29,81,82,83,29,81,82,83,29,81,82,83,29,81,82,83,29,81,29,82,83,82,83,81,82,83,29,81,82,83,29,81,82,83,29,82,83,82,83,81,82,83,29,0,81,82,83,29,81,82,83,29,81,82,83,29,81,82,83,29,81,82,83,29,81,82,83,29,81,82,83,29,81,82,83,29,0,0,0,86,88,89,86,88,89,86,86,86,88,86,88,89,89,86,88,89,86,88,89,86,88,86,88,86,88,86,89,86,89,86,89,88,86,88,89,86,88,89,86,88,89,86,88,89,86,0,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,98,0,0,0,91,91,98,99,98,99,99,98,98,99,98,98,91,91,0,91,91,91,91,98,98,91,91,91,91,91,0,0,0,93,95,94,93,95,94,93,94,93,94,93,93,95,94,93,93,93,95,94,93,93,95,94,93,95,94,93,93,93,93,95,94,0,0,95,94,93,94,93,95,94,93,95,94,93,95,94,93,95,94],"f":[0,0,0,0,0,0,0,0,0,[[]],[[]],[1,[[3,[2]]]],0,[[[0,[4,5]]]],[[[0,[4,5]]]],[[[7,[6]]]],[[1,8],[[10,[9]]]],[[1,8],[[10,[9]]]],[11,1],[[]],[2,1],[[]],[12,[[10,[1]]]],[[]],[[]],[[]],[13,14],[13,14],[[[16,[15]]],15],[[[16,[15]]],15],[[17,17],14],[[17,17],14],[1,18],[[]],[[[21,[[20,[18,19]]]]],1],[[],17],[[],22],0,[23],[[]],[1,[[3,[24]]]],[[12,[7,[6]]],[[10,[25,26]]]],0,[27],[27],[[5,27],[[28,[27,5]]]],[[5,27],[[28,[27,5]]]],[22],0,[1,[[3,[18]]]],[1,[[20,[18,19]]]],[[],29],[[],30],[[[0,[31,5]]],[[10,[1]]]],[[[0,[4,5]]],[[10,[1]]]],[[[0,[4,5]]],[[10,[1]]]],[[[7,[6]]],[[10,[1]]]],[[],10],[[],10],[[],32],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[0,[31,5]],30,25]],[[33,[0,[31,5]],30,25]],[[34,[0,[31,5]],30,25]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[35,35],[36,36],[37,37],[38,38],[33,33],[[[40,[39]]],[[40,[39]]]],[[[42,[[0,[39,15,41]]]]],[[42,[[0,[39,15,41]]]]]],[43,43],[[[44,[[0,[39,15]]]]],[[44,[[0,[39,15]]]]]],[34,34],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[35,35],14],[[36,36],14],[[[42,[[0,[45,15,41]]]],[42,[[0,[45,15,41]]]]],14],[[43,43],14],[[[44,[[0,[45,15]]]],[44,[[0,[45,15]]]]],14],[[],14],[[],14],[[35,8],46],[[36,8],46],[[36,8],46],[[[28,[47,47,47]],8],46],[[[48,[47,47,47,47]],8],46],[[37,8],46],[[38,8],46],[[33,8],46],[[[40,[47]],8],46],[[[42,[[0,[47,15,41]]]],8],46],[[43,8],46],[[43,8],46],[[[44,[[0,[47,15]]]],8],46],[[34,8],46],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[49,[15]]],[[44,[15]]]],[[]],[[[50,[15]]],[[44,[15]]]],[[]],[[17,17],[[10,[35,36]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[5,51],[[48,[5,51]]]],[[5,51],[[48,[5,51]]]],[13,[[10,[35,36]]]],[7,[[10,[40,0]]]],[52,[[10,[[42,[[0,[[53,[[0,[[53,[[0,[[53,[[0,[53,39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],43]]]],[[[28,[27,31]]],3],[23],[23],[[[0,[31,5]]]],[[35,[0,[31,5]]],14],[[[48,[27,51]],[0,[31,5]]]],[[37,[0,[31,5]]],55],[[37,[0,[31,5]]],13],[[38,[0,[31,5]]],13],[[38,[0,[31,5]]],55],[[33,[0,[31,5]]],6],[[40,[0,[31,5]]]],[[[42,[[0,[15,41]]]],[0,[31,5]]],25],[[[44,[15]],[0,[31,5]]],15],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],57],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],2],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],58],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],59],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],60],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],13],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],17],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],55],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],61],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],3],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],14],[[34,[0,[31,5]]],62],[[34,[0,[31,5]]],63],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],64],[[34,[0,[31,5]]],65],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],66],[[34,[0,[31,5]]],24],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],25],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],6],[[34,[0,[31,5]]],67],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],68],[[34,[0,[31,5]]],69],[[34,[0,[31,5]]]],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],56],[[34,[0,[31,5]]],70],[[34,[0,[31,5]]]],[[34,[0,[31,5]]],22],[[5,31],[[28,[5,31]]]],[[5,31],[[28,[5,31]]]],[[[0,[31,5]],25],30],[[[0,[31,5]],25],30],[[[28,[27,31]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],30],[[],30],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],32],[[],32],[[],32],[[],32],[[],32],[[],32],[[],32],[[],32],[[],32],[[],32],[[],32],[[],32],0,[[[42,[[0,[[53,[[0,[[53,[[0,[[53,[[0,[53,71,39,54]],[0,[15,41]]]],[71,[[0,[53,71,39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],[71,[[0,[[53,[[0,[53,71,39,54]],[0,[15,41]]]],[71,[[0,[53,71,39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],[71,[[0,[[53,[[0,[[53,[[0,[53,71,39,54]],[0,[15,41]]]],[71,[[0,[53,71,39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],[71,[[0,[[53,[[0,[53,71,39,54]],[0,[15,41]]]],[71,[[0,[53,71,39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],39,54]],[0,[15,41]]]],7],[[10,[43]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[72,[39]]],[[72,[39]]]],[73,73],[[[74,[39]]],[[74,[39]]]],[75,75],[[]],[[]],[[]],[[]],[[[72,[45]],[72,[45]]],14],[[[74,[45]],[74,[45]]],14],[[[72,[47]],8],46],[[73,8],46],[[[74,[47]],8],46],[[75,8],46],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],14],[[[0,[76,5]],[0,[76,5]]]],[[[0,[[76,[15]],5]],[0,[[76,[15]],5]]],[[44,[15]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[22]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[58]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[64]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[63]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[62]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[60]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[6]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[67]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[69]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[24]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[17]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[25]]]],[[[0,[76,5]],[0,[76,5]]],73],[[[0,[76,5]],[0,[76,5]]],[[74,[13]]]],[[[0,[76,5]],[0,[76,5]]],[[74,[55]]]],[[[0,[76,5]],[0,[76,5]]],75],[[[0,[76,5]],[0,[76,5]]]],[[[0,[[76,[15]],5]],[0,[[76,[15]],5]]],[[44,[15]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[67]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[64]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[6]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[58]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[25]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[17]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[63]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[24]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[60]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[69]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[22]]]],[[[0,[76,5]],[0,[76,5]]],[[72,[62]]]],[[[0,[76,5]],[0,[76,5]]],73],[[[0,[76,5]],[0,[76,5]]],[[74,[55]]]],[[[0,[76,5]],[0,[76,5]]],[[74,[13]]]],[[[0,[76,5]],[0,[76,5]]],75],[[[0,[31,5]]]],[[[72,[64]],[0,[31,5]]]],[[[72,[24]],[0,[31,5]]]],[[[72,[22]],[0,[31,5]]]],[[[72,[17]],[0,[31,5]]]],[[[72,[60]],[0,[31,5]]]],[[[72,[63]],[0,[31,5]]]],[[[72,[25]],[0,[31,5]]]],[[[72,[6]],[0,[31,5]]]],[[[72,[67]],[0,[31,5]]]],[[[72,[69]],[0,[31,5]]]],[[[72,[58]],[0,[31,5]]]],[[[72,[62]],[0,[31,5]]]],[[73,[0,[31,5]]]],[[[74,[13]],[0,[31,5]]]],[[[74,[55]],[0,[31,5]]]],[[75,[0,[31,5]]],77],[[[0,[12,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[[0,[76,5]],[0,[76,5]],[0,[31,5]]]],[[]],[[]],[[]],[[]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],32],[[],32],[[],32],[[],32],[[]],[[]],[[]],[[]],0,0,0,0,0,[[]],[[]],[[[79,[[0,[47,78]]]],8],46],[[]],[[]],[[[80,[78]]],[[10,[[79,[78]],43]]]],[[],10],[[],10],[[],32],[[]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],12],[[],12],[[],12],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[81,81],[82,82],[83,83],[29,29],[[]],[[]],[[]],[[]],[[],81],[[],29],[[82,82],14],[[83,83],14],[[],14],[[],14],[[81,[7,[6]]]],[[82,[7,[6]]]],[[83,[7,[6]]]],[[29,[7,[6]]]],[[81,8],[[10,[9]]]],[[82,8],46],[[83,8],46],[[29,8],46],[[]],[[]],[[]],[[]],[12,[[10,[82,1]]]],[12,[[10,[83,1]]]],[[],82],[[],83],[[]],[[]],[[]],[[]],0,[81,17],[82,17],[83,17],[29,17],[81,22],[82,22],[83,22],[29,22],[[]],[[]],[[]],[[]],[[81,[7,[6]]],[[10,[1]]]],[[82,[7,[6]]],[[10,[1]]]],[[83,[7,[6]]],[[10,[1]]]],[[29,[7,[6]]],[[10,[1]]]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],32],[[],32],[[],32],[[],32],[[]],[[]],[[]],[[]],0,0,0,[[],12],[[]],[[]],[[]],[[]],[[]],[[]],[[[86,[[0,[84,85,39]],[0,[12,39]]]]],[[86,[[0,[84,85,39]],[0,[12,39]]]]]],[[]],[[[88,[87]],[7,[6]]]],[[[86,[[0,[84,85]],12]],[7,[6]]]],[[[88,[47]],8],46],[[89,8],46],[[89,8],46],[[[86,[[0,[84,85,47]],[0,[12,47]]]],8],46],[[]],[[]],[[]],[[]],[[]],[[]],[87,[[88,[87]]]],[[[0,[84,85]],22,12],[[86,[[0,[84,85]],12]]]],[[[88,[87]]],17],[[[86,[[0,[84,85]],12]]],17],[[[88,[87]]],22],[[[86,[[0,[84,85]],12]]],22],[23],[[[86,[[0,[84,85]],12]]],[[10,[1]]]],[89,[[3,[18]]]],[[]],[[],30],[[[88,[87]],[7,[6]]],[[10,[1]]]],[[[86,[[0,[84,85]],12]],[7,[6]]],[[10,[1]]]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],32],[[],32],[[],32],[[]],[[]],[[]],0,[[]],[[]],[90,90],[[]],[[90,90],14],[[],14],[[90,[7,[6]]]],[[90,8],46],[[]],[[]],[[22,22],90],[90,17],[90,22],[[]],[[90,[7,[6]]],[[10,[1]]]],[[],10],[[],10],[[],32],[[]],0,0,0,0,[[]],[[]],[[[0,[31,5]]],3],[[[0,[31,5]]],3],[[[0,[31,5]],25],91],[[[0,[31,5]],25],80],[[[0,[31,5]],7],25],[[[0,[31,5]],25,51],[[10,[91,43]]]],[[[0,[31,5]]],3],[[[0,[31,5]]],3],[[[0,[31,5]],51],[[10,[43]]]],[[[0,[31,5]],51],[[10,[43]]]],[[[91,[[0,[47,5]],47]],8],46],[[]],0,[[]],[[]],[[[91,[[0,[[92,[25]],5]]]]],25],[[[91,[[0,[[92,[25]],5]]]]],3],[[[0,[31,5]],25]],[[[0,[31,5]]]],[[[91,[[0,[[92,[25]],5]]]]]],[[],10],[[],10],[[],32],[[]],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[93,93],[94,94],[[]],[[]],[[93,93],14],[[93,8],46],[[95,8],46],[[94,8],46],[[[80,[25]]],93],[[]],[[[80,[17]]],93],[[]],[[]],[[93,25],25],[[]],[[]],[[]],[93,94],[[]],[[]],[93,[[80,[25]]]],[93,14],[93,95],[93,25],[95,[[3,[25]]]],[94,3],[[[0,[31,5]],25,25],93],[[[0,[31,5]],25,51,25],[[10,[93,43]]]],[95],[94],[[]],[[]],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],32],[[],32],[[],32],[[]],[[]],[[]]],"c":[332,478,479,480,481,482,485,488,588,589],"p":[[3,"Error"],[3,"NonZeroU32"],[4,"Option"],[8,"Fill"],[8,"Sized"],[15,"u8"],[15,"slice"],[3,"Formatter"],[3,"Error"],[4,"Result"],[3,"Error"],[8,"RngCore"],[15,"f64"],[15,"bool"],[8,"SampleUniform"],[8,"SampleRange"],[15,"u32"],[8,"Error"],[3,"Global"],[3,"Box"],[8,"Into"],[15,"u64"],[3,"Demand"],[15,"i32"],[15,"usize"],[3,"Error"],[8,"Distribution"],[3,"DistIter"],[3,"ThreadRng"],[3,"String"],[8,"Rng"],[3,"TypeId"],[3,"Alphanumeric"],[3,"Standard"],[3,"Bernoulli"],[4,"BernoulliError"],[3,"OpenClosed01"],[3,"Open01"],[8,"Clone"],[3,"Slice"],[8,"PartialOrd"],[3,"WeightedIndex"],[4,"WeightedError"],[3,"Uniform"],[8,"PartialEq"],[6,"Result"],[8,"Debug"],[3,"DistMap"],[3,"Range"],[3,"RangeInclusive"],[8,"Fn"],[8,"IntoIterator"],[8,"AddAssign"],[8,"Default"],[15,"f32"],[15,"array"],[3,"Wrapping"],[15,"i64"],[3,"NonZeroU128"],[15,"u128"],[15,"char"],[15,"isize"],[15,"i128"],[15,"u16"],[3,"NonZeroU16"],[3,"NonZeroU8"],[15,"i16"],[3,"NonZeroU64"],[15,"i8"],[3,"NonZeroUsize"],[8,"SubAssign"],[3,"UniformInt"],[3,"UniformChar"],[3,"UniformFloat"],[3,"UniformDuration"],[8,"SampleBorrow"],[3,"Duration"],[8,"Weight"],[3,"WeightedIndex"],[3,"Vec"],[3,"OsRng"],[3,"SmallRng"],[3,"StdRng"],[8,"BlockRngCore"],[8,"SeedableRng"],[3,"ReseedingRng"],[8,"Read"],[3,"ReadRng"],[3,"ReadError"],[3,"StepRng"],[3,"SliceChooseIter"],[8,"Index"],[4,"IndexVec"],[4,"IndexVecIntoIter"],[4,"IndexVecIter"],[8,"DistString"],[8,"UniformSampler"],[8,"SliceRandom"],[8,"IteratorRandom"]]},\ "rand_chacha":{"doc":"The ChaCha random number generator.","t":"DDDDDDGGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["ChaCha12Core","ChaCha12Rng","ChaCha20Core","ChaCha20Rng","ChaCha8Core","ChaCha8Rng","ChaChaCore","ChaChaRng","as_rngcore","as_rngcore","as_rngcore","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fill_bytes","fill_bytes","fill_bytes","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from_seed","from_seed","from_seed","from_seed","from_seed","from_seed","generate","generate","generate","get_seed","get_seed","get_seed","get_stream","get_stream","get_stream","get_word_pos","get_word_pos","get_word_pos","into","into","into","into","into","into","next_u32","next_u32","next_u32","next_u64","next_u64","next_u64","rand_core","set_stream","set_stream","set_stream","set_word_pos","set_word_pos","set_word_pos","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_fill_bytes","try_fill_bytes","try_fill_bytes","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","vzip","vzip","vzip","vzip","vzip","vzip"],"q":[[0,"rand_chacha"]],"d":["ChaCha with 12 rounds","A cryptographically secure random number generator that …","ChaCha with 20 rounds","A cryptographically secure random number generator that …","ChaCha with 8 rounds","A cryptographically secure random number generator that …","ChaCha with 20 rounds, low-level interface","ChaCha with 20 rounds","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","","","","","","","","Get the seed.","Get the seed.","Get the seed.","Get the stream number.","Get the stream number.","Get the stream number.","Get the offset from the start of the stream, in 32-bit …","Get the offset from the start of the stream, in 32-bit …","Get the offset from the start of the stream, in 32-bit …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Set the stream number.","Set the stream number.","Set the stream number.","Set the offset from the start of the stream, in 32-bit …","Set the offset from the start of the stream, in 32-bit …","Set the offset from the start of the stream, in 32-bit …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,3,5,7,2,3,4,5,6,7,2,3,4,5,6,7,2,3,4,5,6,7,2,3,4,5,6,7,2,3,4,5,6,7,2,3,4,5,6,7,3,5,7,2,3,4,5,6,7,2,3,3,4,5,5,6,7,7,2,3,4,5,6,7,2,4,6,3,5,7,3,5,7,3,5,7,2,3,4,5,6,7,3,5,7,3,5,7,0,3,5,7,3,5,7,2,3,4,5,6,7,3,5,7,2,3,4,5,6,7,2,3,4,5,6,7,2,3,4,5,6,7,2,3,4,5,6,7],"f":[0,0,0,0,0,0,0,0,[[],1],[[],1],[[],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[2,2],[3,3],[4,4],[5,5],[6,6],[7,7],[[]],[[]],[[]],[[]],[[]],[[]],[[2,2],8],[[3,3],8],[[4,4],8],[[5,5],8],[[6,6],8],[[7,7],8],[[],8],[[],8],[[],8],[[],8],[[],8],[[],8],[[3,[10,[9]]]],[[5,[10,[9]]]],[[7,[10,[9]]]],[[2,11],12],[[3,11],12],[[4,11],12],[[5,11],12],[[6,11],12],[[7,11],12],[[]],[[]],[2,3],[[]],[4,5],[[]],[[]],[6,7],[[]],[[],2],[[],3],[[],4],[[],5],[[],6],[[],7],[2],[4],[6],[3,[[13,[9]]]],[5,[[13,[9]]]],[7,[[13,[9]]]],[3,14],[5,14],[7,14],[3,15],[5,15],[7,15],[[]],[[]],[[]],[[]],[[]],[[]],[3,16],[5,16],[7,16],[3,14],[5,14],[7,14],0,[[3,14]],[[5,14]],[[7,14]],[[3,15]],[[5,15]],[[7,15]],[[]],[[]],[[]],[[]],[[]],[[]],[[3,[10,[9]]],[[18,[17]]]],[[5,[10,[9]]],[[18,[17]]]],[[7,[10,[9]]],[[18,[17]]]],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[]],[[]],[[]],[[]],[[]],[[]]],"c":[],"p":[[8,"RngCore"],[3,"ChaCha20Core"],[3,"ChaCha20Rng"],[3,"ChaCha12Core"],[3,"ChaCha12Rng"],[3,"ChaCha8Core"],[3,"ChaCha8Rng"],[15,"bool"],[15,"u8"],[15,"slice"],[3,"Formatter"],[6,"Result"],[15,"array"],[15,"u64"],[15,"u128"],[15,"u32"],[3,"Error"],[4,"Result"],[3,"TypeId"]]},\ @@ -162,7 +162,7 @@ var searchIndex = JSON.parse('{\ "regex":{"doc":"This crate provides routines for searching strings for …","t":"DDDDNEDDDDDDDIDDDDDDDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDDDIDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["CaptureLocations","CaptureMatches","CaptureNames","Captures","CompiledTooBig","Error","Match","Matches","NoExpand","Regex","RegexBuilder","RegexSet","RegexSetBuilder","Replacer","ReplacerRef","SetMatches","SetMatchesIntoIter","SetMatchesIter","Split","SplitN","SubCaptureMatches","Syntax","as_str","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","by_ref","by_ref","bytes","capture_locations","capture_names","captures","captures_at","captures_iter","captures_len","captures_read","captures_read_at","case_insensitive","case_insensitive","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","count","count","count","count","crlf","crlf","default","description","dfa_size_limit","dfa_size_limit","dot_matches_new_line","dot_matches_new_line","empty","end","eq","eq","equivalent","escape","expand","extract","find","find_at","find_iter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","get","get","ignore_whitespace","ignore_whitespace","index","index","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","is_empty","is_empty","is_match","is_match","is_match_at","is_match_at","iter","iter","len","len","len","len","len","line_terminator","line_terminator","matched","matched_any","matches","matches_at","multi_line","multi_line","name","nest_limit","nest_limit","new","new","new","new","next","next","next","next","next","next","next","next","next_back","next_back","no_expansion","no_expansion","no_expansion","no_expansion","octal","octal","patterns","provide","range","replace","replace_all","replace_append","replace_append","replace_append","replacen","shortest_match","shortest_match_at","size_hint","size_hint","size_hint","size_hint","size_hint","size_limit","size_limit","split","splitn","start","static_captures_len","swap_greed","swap_greed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unicode","unicode","CaptureLocations","CaptureMatches","CaptureNames","Captures","Match","Matches","NoExpand","Regex","RegexBuilder","RegexSet","RegexSetBuilder","Replacer","ReplacerRef","SetMatches","SetMatchesIntoIter","SetMatchesIter","Split","SplitN","SubCaptureMatches","as_bytes","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","by_ref","by_ref","capture_locations","capture_names","captures","captures_at","captures_iter","captures_len","captures_read","captures_read_at","case_insensitive","case_insensitive","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","count","count","count","count","crlf","crlf","default","dfa_size_limit","dfa_size_limit","dot_matches_new_line","dot_matches_new_line","empty","end","eq","equivalent","expand","extract","find","find_at","find_iter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","get","get","ignore_whitespace","ignore_whitespace","index","index","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","is_empty","is_empty","is_match","is_match","is_match_at","is_match_at","iter","iter","len","len","len","len","len","line_terminator","line_terminator","matched","matched_any","matches","matches_at","multi_line","multi_line","name","nest_limit","nest_limit","new","new","new","new","next","next","next","next","next","next","next","next","next_back","next_back","no_expansion","no_expansion","no_expansion","no_expansion","octal","octal","patterns","range","replace","replace_all","replace_append","replace_append","replace_append","replacen","shortest_match","shortest_match_at","size_hint","size_hint","size_hint","size_hint","size_hint","size_limit","size_limit","split","splitn","start","static_captures_len","swap_greed","swap_greed","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unicode","unicode"],"q":[[0,"regex"],[343,"regex::bytes"]],"d":["A low level representation of the byte offsets of each …","An iterator over all non-overlapping capture matches in a …","An iterator over the names of all capture groups in a …","Represents the capture groups for a single match.","The compiled program exceeded the set size limit. The …","An error that occurred during parsing or compiling a …","Represents a single match of a regex in a haystack.","An iterator over all non-overlapping matches in a haystack.","A helper type for forcing literal string replacement.","A compiled regular expression for searching Unicode …","A configurable builder for a Regex.","Match multiple, possibly overlapping, regexes in a single …","A configurable builder for a RegexSet.","A trait for types that can be used to replace matches in a …","A by-reference adaptor for a Replacer.","A set of matches returned by a regex set.","An owned iterator over the set of matches from a regex set.","A borrowed iterator over the set of matches from a regex …","An iterator over all substrings delimited by a regex match.","An iterator over at most N substrings delimited by a regex …","An iterator over all group matches in a Captures value.","A syntax error.","Returns the original string of this regex.","Returns the substring of the haystack that matched.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compiles the pattern given to RegexBuilder::new with the …","Compiles the patterns given to RegexSetBuilder::new with …","Returns a type that implements Replacer, but that borrows …","Returns a type that implements Replacer, but that borrows …","Search for regex matches in &[u8] haystacks.","Returns a fresh allocated set of capture locations that can","Returns an iterator over the capture names in this regex.","This routine searches for the first match of this regex in …","Returns the same as Regex::captures, but starts the search …","Returns an iterator that yields successive non-overlapping …","Returns the number of captures groups in this regex.","This is like Regex::captures, but writes the byte offsets …","Returns the same as Regex::captures_read, but starts the …","This configures whether to enable case insensitive …","This configures whether to enable case insensitive …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures CRLF mode for the entire pattern.","This configures CRLF mode for all of the patterns.","","","Set the approximate capacity, in bytes, of the cache of …","Set the approximate capacity, in bytes, of the cache of …","This configures dot-matches-new-line mode for the entire …","This configures dot-matches-new-line mode for the entire …","Create a new empty regex set.","Returns the byte offset of the end of the match in the …","","","","Escapes all regular expression meta characters in pattern.","Expands all instances of $ref in replacement to the …","This is a convenience routine for extracting the substrings","This routine searches for the first match of this regex in …","Returns the same as Regex::find, but starts the search at …","Returns an iterator that yields successive non-overlapping …","","","","","","Shows the original regular expression.","Shows the original regular expression.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Attempts to parse a string into a regular expression","Returns the Match associated with the capture group at …","Returns the start and end byte offsets of the capture …","This configures verbose mode for the entire pattern.","This configures verbose mode for all of the patterns.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Returns true if and only if this match has a length of …","Returns true if this set contains no regexes.","Returns true if and only if there is a match for the regex …","Returns true if and only if one of the regexes in this set …","Returns the same as Regex::is_match, but starts the search …","Returns true if and only if one of the regexes in this set …","Returns an iterator over all capture groups. This includes …","Returns an iterator over the indices of the regexes that …","Returns the total number of capture groups. This includes …","Returns the length, in bytes, of this match.","Returns the total number of capture groups (even if they …","Returns the total number of regexes in this set.","The total number of regexes in the set that created these …","Configures the line terminator to be used by the regex.","Configures the line terminator to be used by the regex.","Whether the regex at the given index matched.","Whether this set contains any matches.","Returns the set of regexes that match in the given …","Returns the set of regexes that match in the given …","This configures multi-line mode for the entire pattern.","This configures multi-line mode for all of the patterns.","Returns the Match associated with the capture group named …","Set the nesting limit for this parser.","Set the nesting limit for this parser.","Create a new builder with a default configuration for the …","Create a new builder with a default configuration for the …","Compiles a regular expression. Once compiled, it can be …","Create a new regex set with the given regular expressions.","","","","","","","","","","","Return a fixed unchanging replacement string.","Return a fixed unchanging replacement string.","","","This configures octal mode for the entire pattern.","This configures octal mode for all of the patterns.","Returns the regex patterns that this regex set was …","","Returns the range over the starting and ending byte …","Replaces the leftmost-first match in the given haystack …","Replaces all non-overlapping matches in the haystack with …","Appends possibly empty data to dst to replace the current …","","","Replaces at most limit non-overlapping matches in the …","Returns the end byte offset of the first match in the …","Returns the same as Regex::shortest_match, but starts the …","","","","","","Sets the approximate size limit, in bytes, of the compiled …","Sets the approximate size limit, in bytes, of the compiled …","Returns an iterator of substrings of the haystack given, …","Returns an iterator of at most limit substrings of the …","Returns the byte offset of the start of the match in the …","Returns the total number of capturing groups that appear …","This configures swap-greed mode for the entire pattern.","This configures swap-greed mode for all of the patterns.","","","","","","","","","","","","","","","","","","","Attempts to parse a string into a regular expression","","Attempts to parse a string into a regular expression","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures Unicode mode for the entire pattern.","This configures Unicode mode for the all of the patterns.","A low level representation of the byte offsets of each …","An iterator over all non-overlapping capture matches in a …","An iterator over the names of all capture groups in a …","Represents the capture groups for a single match.","Represents a single match of a regex in a haystack.","An iterator over all non-overlapping matches in a haystack.","A helper type for forcing literal string replacement.","A compiled regular expression for searching Unicode …","A configurable builder for a Regex.","Match multiple, possibly overlapping, regexes in a single …","A configurable builder for a RegexSet.","A trait for types that can be used to replace matches in a …","A by-reference adaptor for a Replacer.","A set of matches returned by a regex set.","An owned iterator over the set of matches from a regex set.","A borrowed iterator over the set of matches from a regex …","An iterator over all substrings delimited by a regex match.","An iterator over at most N substrings delimited by a regex …","An iterator over all group matches in a Captures value.","Returns the substring of the haystack that matched.","Returns the original string of this regex.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Compiles the pattern given to RegexBuilder::new with the …","Compiles the patterns given to RegexSetBuilder::new with …","Returns a type that implements Replacer, but that borrows …","Returns a type that implements Replacer, but that borrows …","Returns a fresh allocated set of capture locations that can","Returns an iterator over the capture names in this regex.","This routine searches for the first match of this regex in …","Returns the same as Regex::captures, but starts the search …","Returns an iterator that yields successive non-overlapping …","Returns the number of captures groups in this regex.","This is like Regex::captures, but writes the byte offsets …","Returns the same as Regex::captures_read, but starts the …","This configures whether to enable case insensitive …","This configures whether to enable case insensitive …","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures CRLF mode for the entire pattern.","This configures CRLF mode for all of the patterns.","","Set the approximate capacity, in bytes, of the cache of …","Set the approximate capacity, in bytes, of the cache of …","This configures dot-matches-new-line mode for the entire …","This configures dot-matches-new-line mode for the entire …","Create a new empty regex set.","Returns the byte offset of the end of the match in the …","","","Expands all instances of $ref in replacement to the …","This is a convenience routine for extracting the substrings","This routine searches for the first match of this regex in …","Returns the same as Regex::find, but starts the search at …","Returns an iterator that yields successive non-overlapping …","","","","Shows the original regular expression.","Shows the original regular expression.","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Attempts to parse a string into a regular expression","Returns the Match associated with the capture group at …","Returns the start and end byte offsets of the capture …","This configures verbose mode for the entire pattern.","This configures verbose mode for all of the patterns.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Returns true if and only if this match has a length of …","Returns true if this set contains no regexes.","Returns true if and only if there is a match for the regex …","Returns true if and only if one of the regexes in this set …","Returns the same as Regex::is_match, but starts the search …","Returns true if and only if one of the regexes in this set …","Returns an iterator over all capture groups. This includes …","Returns an iterator over the indices of the regexes that …","Returns the total number of capture groups. This includes …","Returns the length, in bytes, of this match.","Returns the total number of capture groups (even if they …","Returns the total number of regexes in this set.","The total number of regexes in the set that created these …","Configures the line terminator to be used by the regex.","Configures the line terminator to be used by the regex.","Whether the regex at the given index matched.","Whether this set contains any matches.","Returns the set of regexes that match in the given …","Returns the set of regexes that match in the given …","This configures multi-line mode for the entire pattern.","This configures multi-line mode for all of the patterns.","Returns the Match associated with the capture group named …","Set the nesting limit for this parser.","Set the nesting limit for this parser.","Create a new builder with a default configuration for the …","Create a new builder with a default configuration for the …","Compiles a regular expression. Once compiled, it can be …","Create a new regex set with the given regular expressions.","","","","","","","","","","","Return a fixed unchanging replacement byte string.","Return a fixed unchanging replacement byte string.","","","This configures octal mode for the entire pattern.","This configures octal mode for all of the patterns.","Returns the regex patterns that this regex set was …","Returns the range over the starting and ending byte …","Replaces the leftmost-first match in the given haystack …","Replaces all non-overlapping matches in the haystack with …","Appends possibly empty data to dst to replace the current …","","","Replaces at most limit non-overlapping matches in the …","Returns the end byte offset of the first match in the …","Returns the same as shortest_match, but starts the search …","","","","","","Sets the approximate size limit, in bytes, of the compiled …","Sets the approximate size limit, in bytes, of the compiled …","Returns an iterator of substrings of the haystack given, …","Returns an iterator of at most limit substrings of the …","Returns the byte offset of the start of the match in the …","Returns the total number of capturing groups that appear …","This configures swap-greed mode for the entire pattern.","This configures swap-greed mode for all of the patterns.","","","","","","","","","","","","","","","","Attempts to parse a string into a regular expression","","Attempts to parse a string into a regular expression","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This configures Unicode mode for the entire pattern.","This configures Unicode mode for the all of the patterns."],"i":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,3,12,4,7,5,1,3,10,21,15,25,26,11,17,9,18,8,19,29,20,12,4,7,5,1,3,10,21,15,25,26,11,17,9,18,8,19,29,20,4,7,34,34,0,1,1,1,1,1,1,1,1,4,7,4,7,5,1,3,10,11,17,18,8,19,20,4,7,5,1,3,10,11,17,18,8,19,20,21,15,11,17,4,7,8,5,4,7,4,7,8,3,5,3,3,0,12,12,1,1,1,12,4,7,5,5,1,1,3,10,21,15,25,26,11,17,9,18,8,19,29,20,12,4,7,5,1,3,10,21,15,25,26,11,17,9,18,8,19,29,20,1,12,10,4,7,12,12,12,4,7,5,1,3,10,21,15,25,26,11,17,9,18,8,19,29,20,21,15,25,26,11,17,19,19,29,20,3,8,1,8,1,8,12,19,12,3,10,8,19,4,7,19,19,8,8,4,7,12,4,7,4,7,1,8,21,15,25,26,11,17,29,20,29,20,34,34,9,18,4,7,8,5,3,1,1,34,9,18,1,1,1,26,11,17,29,20,4,7,1,1,3,1,4,7,4,7,5,1,3,10,11,17,18,8,19,20,5,1,12,4,7,5,1,1,1,3,10,21,15,25,26,11,17,9,18,8,19,29,20,12,4,7,5,1,3,10,21,15,25,26,11,17,9,18,8,19,29,20,12,4,7,5,1,3,10,21,15,25,26,11,17,9,18,8,19,29,20,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,40,47,41,42,40,39,45,53,48,55,56,46,49,44,50,43,51,57,52,47,41,42,40,39,45,53,48,55,56,46,49,44,50,43,51,57,52,41,42,58,58,40,40,40,40,40,40,40,40,41,42,41,42,40,39,45,46,49,50,43,51,52,41,42,40,39,45,46,49,50,43,51,52,53,48,46,49,41,42,43,41,42,41,42,43,39,39,39,47,47,40,40,40,47,41,42,40,40,39,45,53,48,55,56,46,49,44,50,43,51,57,52,47,41,42,40,39,45,53,48,55,56,46,49,44,50,43,51,57,52,40,47,45,41,42,47,47,47,41,42,40,39,45,53,48,55,56,46,49,44,50,43,51,57,52,53,48,55,56,46,49,51,51,57,52,39,43,40,43,40,43,47,51,47,39,45,43,51,41,42,51,51,43,43,41,42,47,41,42,41,42,40,43,53,48,55,56,46,49,57,52,57,52,58,58,44,50,41,42,43,39,40,40,58,44,50,40,40,40,56,46,49,57,52,41,42,40,40,39,40,41,42,41,42,40,39,45,46,49,50,43,51,52,40,47,41,42,40,40,40,39,45,53,48,55,56,46,49,44,50,43,51,57,52,47,41,42,40,39,45,53,48,55,56,46,49,44,50,43,51,57,52,47,41,42,40,39,45,53,48,55,56,46,49,44,50,43,51,57,52,41,42],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[3,2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[4,[[6,[1,5]]]],[7,[[6,[8,5]]]],[[],9],[[],9],0,[1,10],[1,11],[[1,2],[[13,[12]]]],[[1,2,14],[[13,[12]]]],[[1,2],15],[1,14],[[1,10,2],[[13,[3]]]],[[1,10,2,14],[[13,[3]]]],[[4,16],4],[[7,16],7],[4,4],[7,7],[5,5],[1,1],[3,3],[10,10],[11,11],[17,17],[18,18],[8,8],[19,19],[20,20],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[21,14],[15,14],[11,14],[17,14],[[4,16],4],[[7,16],7],[[],8],[5,2],[[4,14],4],[[7,14],7],[[4,16],4],[[7,16],7],[[],8],[3,14],[[5,5],16],[[3,3],16],[[],16],[2,22],[[12,2,22]],[12],[[1,2],[[13,[3]]]],[[1,2,14],[[13,[3]]]],[[1,2],21],[[12,23],24],[[4,23],24],[[7,23],24],[[5,23],24],[[5,23],24],[[1,23],24],[[1,23],24],[[3,23],24],[[10,23],24],[[21,23],24],[[15,23],24],[[25,23],24],[[26,23],24],[[11,23],24],[[17,23],24],[[[9,[[0,[27,28]]]],23],24],[[18,23],24],[[8,23],24],[[19,23],24],[[29,23],24],[[20,23],24],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[2,[[6,[1,5]]]],[[12,14],[[13,[3]]]],[[10,14],13],[[4,16],4],[[7,16],7],[[12,2],2],[[12,14],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[19],[19],[[]],[[]],[3,16],[8,16],[[1,2],16],[[8,2],16],[[1,2,14],16],[[8,2,14],16],[12,17],[19,20],[12,14],[3,14],[10,14],[8,14],[19,14],[[4,30],4],[[7,30],7],[[19,14],16],[19,16],[[8,2],19],[[8,2,14],19],[[4,16],4],[[7,16],7],[[12,2],[[13,[3]]]],[[4,31],4],[[7,31],7],[2,4],[32,7],[2,[[6,[1,5]]]],[32,[[6,[8,5]]]],[21,[[13,[3]]]],[15,[[13,[12]]]],[25,[[13,[2]]]],[26,[[13,[2]]]],[11,[[13,[[13,[2]]]]]],[17,[[13,[[13,[3]]]]]],[29,[[13,[14]]]],[20,[[13,[14]]]],[29,[[13,[14]]]],[20,[[13,[14]]]],[[],[[13,[[33,[2]]]]]],[[],[[13,[[33,[2]]]]]],[[[9,[[0,[34,28]]]]],[[13,[[33,[2]]]]]],[18,[[13,[[33,[2]]]]]],[[4,16],4],[[7,16],7],[8,[[35,[22]]]],[36],[3,[[37,[14]]]],[[1,2,34],[[33,[2]]]],[[1,2,34],[[33,[2]]]],[[12,22]],[[[9,[[0,[34,28]]]],12,22]],[[18,12,22]],[[1,2,14,34],[[33,[2]]]],[[1,2],[[13,[14]]]],[[1,2,14],[[13,[14]]]],[26],[11],[17],[29],[20],[[4,14],4],[[7,14],7],[[1,2],25],[[1,2,14],26],[3,14],[1,[[13,[14]]]],[[4,16],4],[[7,16],7],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],22],[[],22],[[],6],[[],6],[[],6],[[],6],[22,[[6,[1,5]]]],[[],6],[2,[[6,[1,5]]]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[4,16],4],[[7,16],7],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[39,[[35,[30]]]],[40,2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[41,[[6,[40,5]]]],[42,[[6,[43,5]]]],[[],44],[[],44],[40,45],[40,46],[[40,[35,[30]]],[[13,[47]]]],[[40,[35,[30]],14],[[13,[47]]]],[[40,[35,[30]]],48],[40,14],[[40,45,[35,[30]]],[[13,[39]]]],[[40,45,[35,[30]],14],[[13,[39]]]],[[41,16],41],[[42,16],42],[41,41],[42,42],[40,40],[39,39],[45,45],[46,46],[49,49],[50,50],[43,43],[51,51],[52,52],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[53,14],[48,14],[46,14],[49,14],[[41,16],41],[[42,16],42],[[],43],[[41,14],41],[[42,14],42],[[41,16],41],[[42,16],42],[[],43],[39,14],[[39,39],16],[[],16],[[47,[35,[30]],[54,[30]]]],[47],[[40,[35,[30]]],[[13,[39]]]],[[40,[35,[30]],14],[[13,[39]]]],[[40,[35,[30]]],53],[[47,23],24],[[41,23],24],[[42,23],24],[[40,23],24],[[40,23],24],[[39,23],24],[[45,23],24],[[53,23],24],[[48,23],24],[[55,23],24],[[56,23],24],[[46,23],24],[[49,23],24],[[[44,[[0,[27,28]]]],23],24],[[50,23],24],[[43,23],24],[[51,23],24],[[57,23],24],[[52,23],24],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[2,[[6,[40,5]]]],[[47,14],[[13,[39]]]],[[45,14],13],[[41,16],41],[[42,16],42],[[47,14],[[35,[30]]]],[[47,2],[[35,[30]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[51],[51],[[]],[[]],[39,16],[43,16],[[40,[35,[30]]],16],[[43,[35,[30]]],16],[[40,[35,[30]],14],16],[[43,[35,[30]],14],16],[47,49],[51,52],[47,14],[39,14],[45,14],[43,14],[51,14],[[41,30],41],[[42,30],42],[[51,14],16],[51,16],[[43,[35,[30]]],51],[[43,[35,[30]],14],51],[[41,16],41],[[42,16],42],[[47,2],[[13,[39]]]],[[41,31],41],[[42,31],42],[2,41],[32,42],[2,[[6,[40,5]]]],[32,[[6,[43,5]]]],[53,[[13,[39]]]],[48,[[13,[47]]]],[55,[[13,[[35,[30]]]]]],[56,[[13,[[35,[30]]]]]],[46,[[13,[[13,[2]]]]]],[49,[[13,[[13,[39]]]]]],[57,[[13,[14]]]],[52,[[13,[14]]]],[57,[[13,[14]]]],[52,[[13,[14]]]],[[],[[13,[[33,[[35,[30]]]]]]]],[[],[[13,[[33,[[35,[30]]]]]]]],[[[44,[[0,[58,28]]]]],[[13,[[33,[[35,[30]]]]]]]],[50,[[13,[[33,[[35,[30]]]]]]]],[[41,16],41],[[42,16],42],[43,[[35,[22]]]],[39,[[37,[14]]]],[[40,[35,[30]],58],[[33,[[35,[30]]]]]],[[40,[35,[30]],58],[[33,[[35,[30]]]]]],[[47,[54,[30]]]],[[[44,[[0,[58,28]]]],47,[54,[30]]]],[[50,47,[54,[30]]]],[[40,[35,[30]],14,58],[[33,[[35,[30]]]]]],[[40,[35,[30]]],[[13,[14]]]],[[40,[35,[30]],14],[[13,[14]]]],[56],[46],[49],[57],[52],[[41,14],41],[[42,14],42],[[40,[35,[30]]],55],[[40,[35,[30]],14],56],[39,14],[40,[[13,[14]]]],[[41,16],41],[[42,16],42],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],22],[[],6],[[],6],[[],6],[22,[[6,[40,5]]]],[[],6],[2,[[6,[40,5]]]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[],38],[[41,16],41],[[42,16],42]],"c":[],"p":[[3,"Regex"],[15,"str"],[3,"Match"],[3,"RegexBuilder"],[4,"Error"],[4,"Result"],[3,"RegexSetBuilder"],[3,"RegexSet"],[3,"ReplacerRef"],[3,"CaptureLocations"],[3,"CaptureNames"],[3,"Captures"],[4,"Option"],[15,"usize"],[3,"CaptureMatches"],[15,"bool"],[3,"SubCaptureMatches"],[3,"NoExpand"],[3,"SetMatches"],[3,"SetMatchesIter"],[3,"Matches"],[3,"String"],[3,"Formatter"],[6,"Result"],[3,"Split"],[3,"SplitN"],[8,"Debug"],[8,"Sized"],[3,"SetMatchesIntoIter"],[15,"u8"],[15,"u32"],[8,"IntoIterator"],[4,"Cow"],[8,"Replacer"],[15,"slice"],[3,"Demand"],[3,"Range"],[3,"TypeId"],[3,"Match"],[3,"Regex"],[3,"RegexBuilder"],[3,"RegexSetBuilder"],[3,"RegexSet"],[3,"ReplacerRef"],[3,"CaptureLocations"],[3,"CaptureNames"],[3,"Captures"],[3,"CaptureMatches"],[3,"SubCaptureMatches"],[3,"NoExpand"],[3,"SetMatches"],[3,"SetMatchesIter"],[3,"Matches"],[3,"Vec"],[3,"Split"],[3,"SplitN"],[3,"SetMatchesIntoIter"],[8,"Replacer"]]},\ "regex_automata":{"doc":"This crate exposes a variety of regex engines used by the …","t":"NENDNDNDDEENNDDDDNDNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAMMMMMADDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLANDDNNDDNDNNNDDNDEDNLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLALLLLLLLLLMLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMMMDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAAAAAAAAAAAADDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLFFDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLNNNEDDDNNNDNNNNLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLSSSSSSDDDSSSDDDDSSSLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFLLLLLLLDDDMLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLL","n":["All","Anchored","GaveUp","HalfMatch","HaystackTooLong","Input","LeftmostFirst","Match","MatchError","MatchErrorKind","MatchKind","No","Pattern","PatternID","PatternSet","PatternSetInsertError","PatternSetIter","Quit","Span","UnsupportedAnchored","Yes","anchored","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","contains","contains","default","default","dfa","earliest","end","end","end","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","gave_up","get_anchored","get_earliest","get_range","get_span","hash","hash","hash","hash","haystack","haystack_too_long","hybrid","insert","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","is_anchored","is_char_boundary","is_done","is_empty","is_empty","is_empty","is_full","iter","kind","len","len","len","meta","must","must","new","new","new","new","new","next","next_back","nfa","offset","offset","partial_cmp","pattern","pattern","pattern","provide","provide","quit","range","range","range","set_anchored","set_earliest","set_end","set_range","set_span","set_start","size_hint","span","span","start","start","start","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_insert","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unsupported_anchored","util","byte","len","mode","offset","offset","onepass","BuildError","Builder","Cache","Config","DFA","alphabet_len","always_match","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build_from_nfa","build_many","builder","byte_classes","captures","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","config","configure","create_cache","create_captures","default","find","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","get_byte_classes","get_config","get_match_kind","get_nfa","get_size_limit","get_starts_for_each_pattern","into","into","into","into","into","is_match","match_kind","memory_usage","memory_usage","never_match","new","new","new","new","new_from_nfa","new_many","pattern_len","provide","reset","reset_cache","size_limit","source","starts_for_each_pattern","state_len","stride","stride2","syntax","thompson","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_search","try_search_slots","type_id","type_id","type_id","type_id","type_id","BuildError","CacheError","LazyStateID","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","default","dfa","eq","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","hash","into","into","into","is_dead","is_match","is_quit","is_start","is_tagged","is_unknown","partial_cmp","provide","provide","regex","source","source","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","Builder","Cache","Config","DFA","OverlappingState","always_match","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build_from_nfa","build_many","builder","byte_classes","byte_classes","cache_capacity","clear_count","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","config","configure","create_cache","default","eq","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","get_byte_classes","get_cache_capacity","get_config","get_match","get_match_kind","get_minimum_bytes_per_state","get_minimum_cache_capacity","get_minimum_cache_clear_count","get_nfa","get_prefilter","get_quit","get_skip_cache_capacity_check","get_specialize_start_states","get_starts_for_each_pattern","get_unicode_word_boundary","into","into","into","into","into","match_kind","match_len","match_pattern","memory_usage","memory_usage","minimum_bytes_per_state","minimum_cache_clear_count","never_match","new","new","new","new","new_many","next_eoi_state","next_state","next_state_untagged","next_state_untagged_unchecked","pattern_len","prefilter","quit","reset","reset_cache","search_finish","search_start","search_total_len","search_update","skip_cache_capacity_check","specialize_start_states","start","start_state_forward","start_state_reverse","starts_for_each_pattern","syntax","thompson","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_search_fwd","try_search_overlapping_fwd","try_search_overlapping_rev","try_search_rev","try_which_overlapping_matches","type_id","type_id","type_id","type_id","type_id","unicode_word_boundary","Builder","Cache","FindMatches","Regex","as_parts","as_parts_mut","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build_from_dfas","build_many","builder","clone","clone","clone_into","clone_into","create_cache","default","dfa","find","find_iter","fmt","fmt","fmt","fmt","forward","forward","forward_mut","from","from","from","from","into","into","into","into","into_iter","is_match","memory_usage","new","new","new","new_many","next","pattern_len","reset","reset_cache","reverse","reverse","reverse_mut","syntax","thompson","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_search","type_id","type_id","type_id","type_id","BuildError","Builder","Cache","CapturesMatches","Config","FindMatches","Regex","Split","SplitN","auto_prefilter","backtrack","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build_from_hir","build_many","build_many_from_hir","builder","byte_classes","captures","captures_iter","captures_len","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","config","configure","count","count","create_cache","create_captures","default","dfa","dfa_size_limit","dfa_state_limit","find","find_iter","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","get_auto_prefilter","get_backtrack","get_byte_classes","get_config","get_dfa","get_dfa_size_limit","get_dfa_state_limit","get_hybrid","get_hybrid_cache_capacity","get_line_terminator","get_match_kind","get_nfa_size_limit","get_onepass","get_onepass_size_limit","get_prefilter","get_utf8_empty","group_info","hybrid","hybrid_cache_capacity","input","input","input","input","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","is_accelerated","is_match","line_terminator","match_kind","memory_usage","memory_usage","new","new","new","new","new_many","next","next","next","next","nfa_size_limit","onepass","onepass_size_limit","pattern","pattern_len","prefilter","provide","regex","regex","reset","search","search_captures","search_captures_with","search_half","search_half_with","search_slots","search_slots_with","search_with","size_hint","size_limit","source","split","splitn","static_captures_len","syntax","syntax_error","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","utf8_empty","which_overlapping_matches","which_overlapping_matches_with","thompson","BinaryUnion","BuildError","Builder","ByteRange","Capture","Compiler","Config","Dense","DenseTransitions","Fail","Look","Match","NFA","PatternIter","Sparse","SparseTransitions","State","Transition","Union","add_capture_end","add_capture_start","add_empty","add_fail","add_look","add_match","add_range","add_sparse","add_union","add_union_reverse","always_match","backtrack","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","build_from_hir","build_many","build_many_from_hir","byte_classes","captures","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compiler","config","configure","current_pattern_id","default","default","end","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","finish_pattern","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","get_captures","get_look_matcher","get_look_matcher","get_nfa_size_limit","get_reverse","get_reverse","get_shrink","get_size_limit","get_utf8","get_utf8","group_info","has_capture","has_empty","hash","into","into","into","into","into","into","into","into","into","into","into_iter","is_always_start_anchored","is_epsilon","is_reverse","is_utf8","look_matcher","look_matcher","look_set_any","look_set_prefix_any","matches","matches","matches","matches_byte","matches_byte","matches_byte","matches_unit","memory_usage","memory_usage","never_match","new","new","new","new","new_many","next","next","nfa_size_limit","patch","pattern_len","pattern_len","patterns","pikevm","provide","reverse","set_look_matcher","set_reverse","set_size_limit","set_utf8","shrink","size_limit","source","start","start_anchored","start_pattern","start_pattern","start_unanchored","state","states","syntax","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","transitions","transitions","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","utf8","alt1","alt2","alternates","group_index","look","next","next","pattern_id","pattern_id","slot","trans","BoundedBacktracker","Builder","Cache","Config","TryCapturesMatches","TryFindMatches","always_match","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build_from_nfa","build_many","builder","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","config","configure","create_cache","create_captures","default","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","get_config","get_nfa","get_prefilter","get_visited_capacity","into","into","into","into","into","into","into_iter","into_iter","max_haystack_len","memory_usage","min_visited_capacity","never_match","new","new","new","new","new_from_nfa","new_many","next","next","pattern_len","prefilter","reset","reset_cache","syntax","thompson","to_owned","to_owned","to_owned","to_owned","try_captures","try_captures_iter","try_find","try_find_iter","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_is_match","try_search","try_search_slots","type_id","type_id","type_id","type_id","type_id","type_id","visited_capacity","Builder","Cache","CapturesMatches","Config","FindMatches","PikeVM","always_match","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build_from_nfa","build_many","builder","captures","captures_iter","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","config","configure","create_cache","create_captures","default","find","find_iter","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","get_config","get_match_kind","get_nfa","get_prefilter","into","into","into","into","into","into","into_iter","into_iter","is_match","match_kind","memory_usage","never_match","new","new","new","new","new_from_nfa","new_many","next","next","pattern_len","prefilter","reset","reset_cache","search","search_slots","syntax","thompson","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","which_overlapping_matches","alphabet","captures","escape","interpolate","iter","lazy","look","pool","prefilter","primitives","syntax","wire","ByteClassElements","ByteClassIter","ByteClassRepresentatives","ByteClasses","Unit","alphabet_len","as_eoi","as_u8","as_usize","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","default","elements","empty","eoi","eoi","eq","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","get","get_by_unit","into","into","into","into","into","into_iter","into_iter","into_iter","is_byte","is_eoi","is_singleton","is_word_byte","iter","next","next","next","partial_cmp","representatives","set","singletons","stride2","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","u8","Captures","CapturesPatternIter","GroupInfo","GroupInfoAllNames","GroupInfoError","GroupInfoPatternNames","all","all_group_len","all_names","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","count","count","default","empty","empty","explicit_slot_len","extract","extract_bytes","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","get_group","get_group_by_name","get_match","group_info","group_len","group_len","implicit_slot_len","interpolate_bytes","interpolate_bytes_into","interpolate_string","interpolate_string_into","into","into","into","into","into","into","into_iter","into_iter","into_iter","is_match","iter","matches","memory_usage","new","next","next","next","pattern","pattern_len","pattern_names","provide","set_pattern","size_hint","size_hint","slot","slot_len","slots","slots","slots_mut","source","to_index","to_name","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","DebugByte","DebugHaystack","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","fmt","fmt","from","from","into","into","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","bytes","string","CapturesIter","HalfMatchesIter","MatchesIter","Searcher","TryCapturesIter","TryHalfMatchesIter","TryMatchesIter","advance","advance_half","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","infallible","infallible","infallible","input","input","input","input","input","into","into","into","into","into","into","into","into_captures_iter","into_half_matches_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_matches_iter","new","next","next","next","next","next","next","to_owned","try_advance","try_advance_half","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","Lazy","borrow","borrow_mut","deref","fmt","from","get","into","new","try_from","try_into","type_id","End","EndCRLF","EndLF","Look","LookMatcher","LookSet","LookSetIter","Start","StartCRLF","StartLF","UnicodeWordBoundaryError","WordAscii","WordAsciiNegate","WordUnicode","WordUnicodeNegate","as_char","as_repr","available","bits","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","check","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","contains","contains_anchor","contains_anchor_crlf","contains_anchor_haystack","contains_anchor_lf","contains_anchor_line","contains_word","contains_word_ascii","contains_word_unicode","default","default","empty","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from_repr","full","get_line_terminator","insert","intersect","into","into","into","into","into","into_iter","is_empty","is_end","is_end_crlf","is_end_lf","is_start","is_start_crlf","is_start_lf","is_word_ascii","is_word_ascii_negate","is_word_unicode","is_word_unicode_negate","iter","len","matches","matches_set","new","next","provide","read_repr","remove","reversed","set_insert","set_intersect","set_line_terminator","set_remove","set_subtract","set_union","singleton","subtract","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","union","write_repr","Pool","PoolGuard","borrow","borrow","borrow_mut","borrow_mut","deref","deref_mut","fmt","fmt","from","from","get","into","into","new","put","try_from","try_from","try_into","try_into","type_id","type_id","Prefilter","borrow","borrow_mut","clone","clone_into","find","fmt","from","from_hir_prefix","from_hirs_prefix","into","memory_usage","new","prefix","to_owned","try_from","try_into","type_id","LIMIT","LIMIT","LIMIT","MAX","MAX","MAX","NonMaxUsize","PatternID","PatternIDError","SIZE","SIZE","SIZE","SmallIndex","SmallIndexError","StateID","StateIDError","ZERO","ZERO","ZERO","as_i32","as_i32","as_i32","as_u32","as_u32","as_u32","as_u64","as_u64","as_u64","as_usize","as_usize","as_usize","attempted","attempted","attempted","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","default","default","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from_ne_bytes","from_ne_bytes","from_ne_bytes","from_ne_bytes_unchecked","from_ne_bytes_unchecked","from_ne_bytes_unchecked","get","hash","hash","hash","into","into","into","into","into","into","must","must","must","new","new","new","new","new_unchecked","new_unchecked","new_unchecked","one_more","one_more","one_more","partial_cmp","partial_cmp","partial_cmp","provide","provide","provide","to_ne_bytes","to_ne_bytes","to_ne_bytes","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","Config","borrow","borrow_mut","case_insensitive","clone","clone_into","crlf","default","dot_matches_new_line","fmt","from","get_case_insensitive","get_crlf","get_dot_matches_new_line","get_ignore_whitespace","get_line_terminator","get_multi_line","get_nest_limit","get_octal","get_swap_greed","get_unicode","get_utf8","ignore_whitespace","into","line_terminator","multi_line","nest_limit","new","octal","parse","parse_many","parse_many_with","parse_with","swap_greed","to_owned","try_from","try_into","type_id","unicode","utf8","AlignAs","DeserializeError","SerializeError","_align","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","bytes","fmt","fmt","fmt","fmt","fmt","from","from","from","into","into","into","provide","provide","to_string","to_string","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"regex_automata"],[260,"regex_automata::MatchErrorKind"],[265,"regex_automata::dfa"],[266,"regex_automata::dfa::onepass"],[373,"regex_automata::hybrid"],[431,"regex_automata::hybrid::dfa"],[561,"regex_automata::hybrid::regex"],[634,"regex_automata::meta"],[826,"regex_automata::nfa"],[827,"regex_automata::nfa::thompson"],[1057,"regex_automata::nfa::thompson::State"],[1068,"regex_automata::nfa::thompson::backtrack"],[1176,"regex_automata::nfa::thompson::pikevm"],[1283,"regex_automata::util"],[1295,"regex_automata::util::alphabet"],[1377,"regex_automata::util::captures"],[1497,"regex_automata::util::escape"],[1518,"regex_automata::util::interpolate"],[1520,"regex_automata::util::iter"],[1614,"regex_automata::util::lazy"],[1626,"regex_automata::util::look"],[1756,"regex_automata::util::pool"],[1779,"regex_automata::util::prefilter"],[1797,"regex_automata::util::primitives"],[1962,"regex_automata::util::syntax"],[2002,"regex_automata::util::wire"]],"d":["Report all possible matches.","The type of anchored search to perform.","The search, based on heuristics, determined that it would …","A representation of “half” of a match reported by a …","This error occurs if the haystack given to the regex …","The parameters for a regex search including the haystack …","Report only the leftmost matches. When multiple leftmost …","A representation of a match reported by a regex engine.","An error indicating that a search stopped before reporting …","The underlying kind of a MatchError.","The kind of match semantics to use for a regex pattern.","Run an unanchored search. This means a match may occur …","Run an anchored search for a specific pattern. This means …","The identifier of a regex pattern, represented by a …","A set of PatternIDs.","An error that occurs when a PatternID failed to insert …","An iterator over all pattern identifiers in a PatternSet.","The search saw a “quit” byte at which it was …","A representation of a span reported by a regex engine.","An error indicating that a particular type of anchored …","Run an anchored search. This means that a match must begin …","Sets the anchor mode of a search.","","","","","","","","","","","","","","","","","","","","","","","","","Returns the total number of pattern identifiers that may …","Clear this set such that it contains no pattern IDs.","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true when the given offset is contained within …","Return true if and only if the given pattern identifier is …","","","A module for building and searching with deterministic …","Whether to execute an “earliest” search or not.","Return the end position of this search.","The ending position of the match.","The end offset of the span, exclusive.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a new “gave up” error. The given offset …","Return the anchored mode for this search configuration.","Return whether this search should execute in “earliest”…","Return the span as a range for this search configuration.","Return the span for this search configuration.","","","","","Return a borrow of the underlying haystack as a slice of …","Create a new “haystack too long” error. The given len …","A module for building and searching with lazy …","Insert the given pattern identifier into this set and …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Returns true if and only if this anchor mode corresponds …","Returns true if and only if the given offset in this search…","Return true if and only if this search can never return …","Returns true when this span is empty. That is, when …","Returns true when the span in this match is empty.","Return true if and only if this set has no pattern …","Return true if and only if this set has the maximum number …","Returns an iterator over all pattern identifiers in this …","Returns a reference to the underlying error kind.","Returns the length of this span.","Returns the length of this match.","Returns the total number of pattern identifiers in this …","Provides a regex matcher that composes several other regex …","Create a new half match from a pattern ID and a byte …","Create a new match from a pattern ID and a byte offset …","Create a new search configuration for the given haystack.","Create a new half match from a pattern ID and a byte …","Create a new match from a pattern ID and a span.","Create a new set of pattern identifiers with the given …","Create a new error value with the given kind.","","","Provides non-deterministic finite automata (NFA) and regex …","Returns a new span with offset added to this span’s start…","The position of the match.","","Returns the ID of the pattern that matched.","Returns the ID of the pattern that matched.","Returns the pattern ID associated with this configuration …","","","Create a new “quit” error. The given byte corresponds …","Like Input::span, but accepts any range instead.","Returns this span as a range.","Returns the match span as a range.","Set the anchor mode of a search.","Set whether the search should execute in “earliest” …","Set the ending offset for the span for this search …","Set the span for this search configuration given any range.","Set the span for this search configuration.","Set the starting offset for the span for this search …","","Set the span for this search.","Returns the span for this match.","Return the start position of this search.","The starting position of the match.","The start offset of the span, inclusive.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Insert the given pattern identifier into this set and …","","","","","","","","","","","","","","","","","","","","","","","","","Create a new “unsupported anchored” error. This occurs …","A collection of modules that provide APIs that are useful …","The “quit” byte that was observed that caused the …","The length of the haystack that exceeded the limit.","The anchored mode given that is unsupported.","The offset at which the quit byte was observed.","The offset at which the search stopped. This corresponds …","A DFA that can return spans for matching capturing groups.","An error that occurred during the construction of a …","A builder for a one-pass DFA.","A cache represents mutable state that a one-pass DFA …","The configuration used for building a one-pass DFA.","A one-pass DFA for executing a subset of anchored regex …","Returns the total number of elements in the alphabet for …","Create a new one-pass DFA that matches every input.","","","","","","","","","","","Build a one-pass DFA from the given pattern.","Build a DFA from the given NFA.","Build a one-pass DFA from the given patterns.","Return a builder for configuring the construction of a DFA.","Whether to attempt to shrink the size of the DFA’s …","Executes an anchored leftmost forward search and writes …","","","","","","","","","","","Return a default configuration for a DFA.","Apply the given one-pass DFA configuration options to this …","Create a new cache for this DFA.","Create a new empty set of capturing groups that is …","","Executes an anchored leftmost forward search, and returns …","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns whether this configuration has enabled byte …","Return the config for this one-pass DFA.","Returns the match semantics set in this configuration.","Returns a reference to the underlying NFA.","Returns the DFA size limit of this configuration if one …","Returns whether this configuration has enabled anchored …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Executes an anchored leftmost forward search, and returns …","Set the desired match semantics.","Returns the memory usage, in bytes, of this DFA.","Returns the heap memory usage, in bytes, of this cache.","Create a new one-pass DFA that never matches any input.","Return a new default one-pass DFA configuration.","Create a new one-pass DFA builder with the default …","Parse the given regular expression using the default …","Create a new onepass::DFA cache.","Like new, but builds a one-pass DFA directly from an NFA. …","Like new, but parses multiple patterns into a single “…","Returns the total number of patterns compiled into this …","","Reset this cache such that it can be used for searching …","Reset the given cache such that it can be used for …","Set a size limit on the total heap used by a one-pass DFA.","","Whether to compile a separate start state for each pattern …","Returns the total number of states in this one-pass DFA.","Returns the total stride for every state in this DFA. This …","Returns the total stride for every state in this DFA, …","Set the syntax configuration for this builder using …","Set the Thompson NFA configuration for this builder using …","","","","","","","","","","","","","","","","","Executes an anchored leftmost forward search and writes …","Executes an anchored leftmost forward search and writes …","","","","","","An error that occurs when initial construction of a lazy …","An error that occurs when cache usage has become …","A state identifier specifically tailored for lazy DFAs.","","","","","","","","","","","","","","","Types and routines specific to lazy DFAs.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return true if and only if this represents a dead state. A …","Return true if and only if this lazy state ID has been …","Return true if and only if this represents a quit state. A …","Return true if and only if this lazy state ID has been …","Return true if and only if this lazy state ID is tagged.","Return true if and only if this represents a lazy state ID …","","","","A lazy DFA backed Regex.","","","","","","","","","","","","","","","","","A builder for constructing a lazy deterministic finite …","A cache represents a partially computed DFA.","The configuration used for building a lazy DFA.","A hybrid NFA/DFA (also called a “lazy DFA”) for regex …","Represents the current state of an overlapping search.","Create a new lazy DFA that matches every input.","","","","","","","","","","","Build a lazy DFA from the given pattern.","Build a DFA from the given NFA.","Build a lazy DFA from the given patterns.","Return a builder for configuring the construction of a …","Returns the equivalence classes that make up the alphabet …","Whether to attempt to shrink the size of the lazy DFA’s …","Sets the maximum amount of heap memory, in bytes, to …","Returns the total number of times this cache has been …","","","","","","","","","","","Return a default configuration for a DFA.","Apply the given lazy DFA configuration options to this …","Create a new cache for this lazy DFA.","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns whether this configuration has enabled byte …","Returns the cache capacity set on this configuration.","Returns this lazy DFA’s configuration.","Return the match result of the most recent search to …","Returns the match semantics set in this configuration.","Returns, if set, the minimum number of bytes per state …","Returns the minimum lazy DFA cache capacity required for …","Returns, if set, the minimum number of times the cache …","Returns a reference to the underlying NFA.","Returns the prefilter set in this configuration, if one at …","Returns whether this configuration will instruct the lazy …","Returns whether the cache capacity check should be skipped.","Returns whether this configuration will instruct the lazy …","Returns whether this configuration has enabled anchored …","Returns whether this configuration has enabled heuristic …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Set the desired match semantics.","Returns the total number of patterns that match in this …","Returns the pattern ID corresponding to the given match …","Returns the memory usage, in bytes, of this lazy DFA.","Returns the heap memory usage, in bytes, of this cache.","Configure a lazy DFA search to quit only when its …","Configure a lazy DFA search to quit after a certain number …","Create a new lazy DFA that never matches any input.","Parse the given regular expression using a default …","Create a new cache for the given lazy DFA.","Return a new default lazy DFA builder configuration.","Create a new lazy DFA builder with the default …","Parse the given regular expressions using a default …","Transitions from the current state to the next state for …","Transitions from the current state to the next state, …","Transitions from the current state to the next state, …","Transitions from the current state to the next state, …","Returns the total number of patterns compiled into this …","Set a prefilter to be used whenever a start state is …","Add a “quit” byte to the lazy DFA.","Reset this cache such that it can be used for searching …","Reset the given cache such that it can be used for …","Indicates that a search has finished at the given position.","Initializes a new search starting at the given position.","Returns the total number of bytes that have been searched …","Updates the current search to indicate that it has search …","Configures construction of a lazy DFA to use the minimum …","Enable specializing start states in the lazy DFA.","Create a new overlapping state that begins at the start …","Return the ID of the start state for this lazy DFA when …","Return the ID of the start state for this lazy DFA when …","Whether to compile a separate start state for each pattern …","Set the syntax configuration for this builder using …","Set the Thompson NFA configuration for this builder using …","","","","","","","","","","","","","","","","Executes a forward search and returns the end position of …","Executes an overlapping forward search and returns the end …","Executes a reverse overlapping search and returns the …","Executes a reverse search and returns the start of the …","Writes the set of patterns that match anywhere in the …","","","","","","Heuristically enable Unicode word boundaries.","A builder for a regex based on a hybrid NFA/DFA.","A cache represents a partially computed forward and …","An iterator over all non-overlapping matches for an …","A regular expression that uses hybrid NFA/DFAs (also …","Return references to the forward and reverse caches, …","Return mutable references to the forward and reverse …","","","","","","","","","Build a regex from the given pattern.","Build a regex from its component forward and reverse …","Build a regex from the given patterns.","Return a builder for configuring the construction of a …","","","","","Create a new cache for this Regex.","","Set the lazy DFA compilation configuration for this …","Returns the start and end offset of the leftmost match. If …","Returns an iterator over all non-overlapping leftmost …","","","","","Return the underlying lazy DFA responsible for forward …","Return a reference to the forward cache.","Return a mutable reference to the forward cache.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Returns true if and only if this regex matches the given …","Returns the heap memory usage, in bytes, as a sum of the …","Parse the given regular expression using the default …","Create a new cache for the given Regex.","Create a new regex builder with the default configuration.","Like new, but parses multiple patterns into a single “…","","Returns the total number of patterns matched by this regex.","Reset this cache such that it can be used for searching …","Reset the given cache such that it can be used for …","Return the underlying lazy DFA responsible for reverse …","Return a reference to the reverse cache.","Return a mutable reference to the reverse cache.","Set the syntax configuration for this builder using …","Set the Thompson NFA configuration for this builder using …","","","","","","","","","","","Returns the start and end offset of the leftmost match. If …","","","","","An error that occurs when construction of a Regex fails.","A builder for configuring and constructing a Regex.","Represents mutable scratch space used by regex engines …","An iterator over all non-overlapping leftmost matches with …","An object describing the configuration of a Regex.","An iterator over all non-overlapping matches.","A regex matcher that works by composing several other …","Yields all substrings delimited by a regular expression …","Yields at most N spans delimited by a regular expression …","Toggles whether automatic prefilter support is enabled.","Toggle whether a bounded backtracking regex engine should …","","","","","","","","","","","","","","","","","","","Builds a Regex from a single pattern string.","Builds a Regex directly from an Hir expression.","Builds a Regex from many pattern strings.","Builds a Regex directly from many Hir expressions.","Return a builder for configuring the construction of a …","Whether to attempt to shrink the size of the alphabet for …","Executes a leftmost forward search and writes the spans of …","Returns an iterator over all non-overlapping Captures …","Returns the total number of capturing groups.","","","","","","","","","","","Return a default configuration for a Regex.","Configure the behavior of a Regex.","","","Creates a new cache for use with lower level search APIs …","Creates a new object for recording capture group offsets. …","","Toggle whether a fully compiled DFA should be available …","Sets the size limit, in bytes, for heap memory used for a …","Sets a limit on the total number of NFA states, beyond …","Executes a leftmost search and returns the first match …","Returns an iterator over all non-overlapping leftmost …","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns whether automatic prefilters are enabled, as set by","Returns whether the bounded backtracking regex engine may …","Returns whether byte classes are enabled, as set by …","Returns the configuration object used to build this Regex.","Returns whether the DFA regex engine may be used, as set by","Returns DFA size limit, as set by Config::dfa_size_limit.","Returns DFA size limit in terms of the number of states in …","Returns whether the hybrid NFA/DFA regex engine may be …","Returns hybrid NFA/DFA cache capacity, as set by …","Returns the line terminator for this configuration, as set …","Returns the match kind on this configuration, as set by …","Returns NFA size limit, as set by Config::nfa_size_limit.","Returns whether the one-pass DFA regex engine may be used, …","Returns one-pass DFA size limit, as set by …","Returns a manually set prefilter, if one was set by …","Returns whether empty matches must fall on valid UTF-8 …","Return information about the capture groups in this Regex.","Toggle whether the hybrid NFA/DFA (also known as the “…","Set the cache capacity, in bytes, for the lazy DFA.","Returns the current Input associated with this iterator.","Returns the current Input associated with this iterator.","Returns the current Input associated with this iterator.","Returns the current Input associated with this iterator.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","Returns true if this regex has a high chance of being “…","Returns true if and only if this regex matches the given …","Set the line terminator to be used by the ^ and $ anchors …","Set the match semantics for a Regex.","Return the total approximate heap memory, in bytes, used …","Returns the heap memory usage, in bytes, of this cache.","Builds a Regex from a single pattern string using the …","Creates a new Cache for use with this regex.","Create a new configuration object for a Regex.","Creates a new builder for configuring and constructing a …","Builds a Regex from many pattern strings using the default …","","","","","Sets the size limit, in bytes, to enforce on the …","Toggle whether a one-pass DFA should be available for use …","Sets the size limit, in bytes, for the one-pass DFA.","If it is known which pattern ID caused this build error to …","Returns the total number of patterns in this regex.","Overrides and sets the prefilter to use inside a Regex.","","Returns the Regex value that created this iterator.","Returns the Regex value that created this iterator.","Reset this cache such that it can be used for searching …","Returns the start and end offset of the leftmost match. If …","Executes a leftmost forward search and writes the spans of …","This is like Regex::search_captures, but requires the …","Returns the end offset of the leftmost match. If no match …","This is like Regex::search_half, but requires the caller to","Executes a leftmost forward search and writes the spans of …","This is like Regex::search_slots, but requires the caller …","This is like Regex::search, but requires the caller to …","","If this error occurred because the regex exceeded the …","","Returns an iterator of spans of the haystack given, …","Returns an iterator of at most limit spans of the haystack …","Returns the total number of capturing groups that appear …","Configure the syntax options when parsing a pattern string …","If this error corresponds to a syntax error, then a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Toggles whether empty matches are permitted to occur …","Writes the set of patterns that match anywhere in the …","This is like Regex::which_overlapping_matches, but …","Defines a Thompson NFA and provides the PikeVM and …","An alternation such that there exists precisely two …","An error that can occurred during the construction of a …","An abstraction for building Thompson NFAs by hand.","A state with a single transition that can only be taken if …","An empty state that records a capture location.","A builder for compiling an NFA from a regex’s high-level …","The configuration used for a Thompson NFA compiler.","A dense representation of a state with multiple …","A sequence of transitions used to represent a dense state.","A state that cannot be transitioned out of. This is useful …","A conditional epsilon transition satisfied via some sort of","A match state. There is at least one such occurrence of …","A byte oriented Thompson non-deterministic finite …","An iterator over all pattern IDs in an NFA.","A state with possibly many transitions represented in a …","A sequence of transitions used to represent a sparse state.","A state in an NFA.","A single transition to another state.","An alternation such that there exists an epsilon …","Add a “end capture” NFA state.","Add a “start capture” NFA state.","Add an “empty” NFA state.","Adds a “fail” NFA state.","Add a “look” NFA state.","Adds a “match” NFA state.","Add a “range” NFA state.","Add a “sparse” NFA state.","Add a “union” NFA state.","Add a “reverse union” NFA state.","Returns an NFA with a single regex pattern that always …","An NFA backed bounded backtracker for executing regex …","","","","","","","","","","","","","","","","","","","","","Assemble a NFA from the states added so far.","Compile the given regular expression pattern into an NFA.","Compile the given high level intermediate representation …","Compile the given regular expression patterns into a …","Compile the given high level intermediate representations …","Get the byte classes for this NFA.","Whether to include ‘Capture’ states in the NFA.","Clear this builder.","","","","","","","","","","","","","","","","","","","Return a compiler for configuring the construction of an …","Return a default configuration for an NFA.","Apply the given NFA configuration options to this builder.","Returns the pattern identifier of the current pattern.","","","The inclusive end of the byte range.","","","","","","","","","Finish the assembly of a pattern in this NFA.","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Return whether NFA compilation is configured to produce …","Returns the look-around matcher used for this builder.","Return the look-around matcher for this NFA.","Return the configured NFA size limit, if it exists, in the …","Returns whether reverse mode is enabled for this builder.","Returns whether this configuration has enabled reverse NFA …","Return whether NFA shrinking is enabled.","Return the currently configured size limit.","Returns whether UTF-8 mode is enabled for this builder.","Returns whether this configuration has enabled UTF-8 mode.","Returns the capturing group info for this NFA.","Returns true if and only if this NFA has at least one …","Returns true if and only if this NFA can match the empty …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Returns true if and only if all starting states for this …","Returns true if and only if this state contains one or …","Returns true when this NFA is meant to be matched in …","Whether UTF-8 mode is enabled for this NFA or not.","Sets the look-around matcher that should be used with this …","Returns the look-around matcher associated with this NFA.","Returns the union of all look-around assertions used …","Returns the union of all prefix look-around assertions for …","This follows the matching transition for a particular byte.","This follows the matching transition for a particular byte.","Returns true if the position at in haystack falls in this …","This follows the matching transition for a particular byte.","This follows the matching transition for a particular byte.","Returns true if the given byte falls in this transition’…","Returns true if the given alphabet unit falls in this …","Returns the heap memory usage, in bytes, used by the NFA …","Returns the memory usage, in bytes, of this NFA.","Returns an NFA that never matches at any position.","Create a new builder for hand-assembling NFAs.","Return a new default Thompson NFA compiler configuration.","Create a new NFA builder with its default configuration.","Parse the given regular expression using a default …","Parse the given regular expressions using a default …","","The identifier of the state to transition to.","Sets an approximate size limit on the total heap used by …","Add a transition from one state to another.","Returns the number of patterns added to this builder so …","Returns the total number of regex patterns in this NFA.","Returns an iterator over all pattern identifiers in this …","An NFA backed Pike VM for executing regex searches with …","","Reverse the NFA.","Sets the look-around matcher that should be used for the …","Sets whether the NFA produced by this builder should be …","Set the size limit on this builder.","Set whether the NFA produced by this builder should only …","Apply best effort heuristics to shrink the NFA at the …","If this error occurred because the NFA exceeded the …","","The inclusive start of the byte range.","Return the state identifier of the initial anchored state …","Start the assembly of a pattern in this NFA.","Return the state identifier of the initial anchored state …","Return the state identifier of the initial unanchored …","Return a reference to the NFA state corresponding to the …","Returns a slice of all states in this NFA.","Set the syntax configuration for this builder using …","","","","","","","","","","","The sorted sequence of non-overlapping transitions.","A dense representation of this state’s transitions on …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Whether to enable UTF-8 mode during search or not.","An unconditional epsilon transition to another NFA state. …","An unconditional epsilon transition to another NFA state. …","An ordered sequence of unconditional epsilon transitions …","The capture group index that this capture belongs to. …","The look-around assertion that must be satisfied before …","The state to transition to if the look-around assertion is …","The state to transition to, unconditionally.","The pattern ID that this capture belongs to.","The matching pattern ID.","The slot index for this capture. Every capturing group has …","The transition from this state to the next.","A backtracking regex engine that bounds its execution to …","A builder for a bounded backtracker.","A cache represents mutable state that a BoundedBacktracker …","The configuration used for building a bounded backtracker.","An iterator over all non-overlapping leftmost matches, …","An iterator over all non-overlapping matches for a …","Create a new BoundedBacktracker that matches every input.","","","","","","","","","","","","","Build a BoundedBacktracker from the given pattern.","Build a BoundedBacktracker directly from its NFA.","Build a BoundedBacktracker from the given patterns.","Return a builder for configuring the construction of a …","","","","","","","","","Return a default configuration for a BoundedBacktracker.","Apply the given BoundedBacktracker configuration options …","Create a new cache for this regex.","Create a new empty set of capturing groups that is …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Return the config for this BoundedBacktracker.","Returns a reference to the underlying NFA.","Returns the prefilter set in this configuration, if one at …","Returns the configured visited capacity.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Returns the maximum haystack length supported by this …","Returns the heap memory usage, in bytes, of this cache.","Returns the minimum visited capacity for the given …","Create a new BoundedBacktracker that never matches any …","Return a new default regex configuration.","Create a new BoundedBacktracker builder with its default …","Parse the given regular expression using the default …","Create a new BoundedBacktracker cache.","Example","Like new, but parses multiple patterns into a single “…","","","Returns the total number of patterns compiled into this …","Set a prefilter to be used whenever a start state is …","Reset this cache such that it can be used for searching …","Reset the given cache such that it can be used for …","Set the syntax configuration for this builder using …","Set the Thompson NFA configuration for this builder using …","","","","","Executes a leftmost forward search and writes the spans of …","Returns an iterator over all non-overlapping Captures …","Executes a leftmost forward search and returns a Match if …","Returns an iterator over all non-overlapping leftmost …","","","","","","","","","","","","","Returns true if and only if this regex matches the given …","Executes a leftmost forward search and writes the spans of …","Executes a leftmost forward search and writes the spans of …","","","","","","","Set the visited capacity used to bound backtracking.","A builder for a PikeVM.","A cache represents mutable state that a PikeVM requires …","An iterator over all non-overlapping leftmost matches, …","The configuration used for building a PikeVM.","An iterator over all non-overlapping matches for a …","A virtual machine for executing regex searches with …","Create a new PikeVM that matches every input.","","","","","","","","","","","","","Build a PikeVM from the given pattern.","Build a PikeVM directly from its NFA.","Build a PikeVM from the given patterns.","Return a builder for configuring the construction of a …","Executes a leftmost forward search and writes the spans of …","Returns an iterator over all non-overlapping Captures …","","","","","","","","","Return a default configuration for a PikeVM.","Apply the given PikeVM configuration options to this …","Create a new cache for this PikeVM.","Create a new empty set of capturing groups that is …","","Executes a leftmost forward search and returns a Match if …","Returns an iterator over all non-overlapping leftmost …","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Return the config for this PikeVM.","Returns the match semantics set in this configuration.","Returns a reference to the underlying NFA.","Returns the prefilter set in this configuration, if one at …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Returns true if and only if this PikeVM matches the given …","Set the desired match semantics.","Returns the heap memory usage, in bytes, of this cache.","Create a new PikeVM that never matches any input.","Return a new default PikeVM configuration.","Create a new PikeVM builder with its default configuration.","Parse the given regular expression using the default …","Create a new PikeVM cache.","Like new, but builds a PikeVM directly from an NFA. This …","Like new, but parses multiple patterns into a single “…","","","Returns the total number of patterns compiled into this …","Set a prefilter to be used whenever a start state is …","Reset this cache such that it can be used for searching …","Reset the given cache such that it can be used for …","Executes a leftmost forward search and writes the spans of …","Executes a leftmost forward search and writes the spans of …","Set the syntax configuration for this builder using …","Set the Thompson NFA configuration for this builder using …","","","","","","","","","","","","","","","","","","","","","","","Writes the set of patterns that match anywhere in the …","This module provides APIs for dealing with the alphabets …","Provides types for dealing with capturing groups.","Provides convenience routines for escaping raw bytes.","Provides routines for interpolating capture group …","Generic helpers for iteration of matches from a regex …","A lazily initialized value for safe sharing between …","Types and routines for working with look-around assertions.","A thread safe memory pool.","Defines a prefilter for accelerating regex searches.","Lower level primitive types that are useful in a variety …","Utilities for dealing with the syntax of a regular …","Types and routines that support the wire format of finite …","An iterator over all elements in an equivalence class.","An iterator over each equivalence class.","An iterator over representative bytes from each …","A representation of byte oriented equivalence classes.","Unit represents a single unit of haystack for DFA based …","Return the total number of elements in the alphabet …","If this unit is an “end of input” sentinel, then …","If this unit is not an “end of input” sentinel, then …","Return this unit as a usize, regardless of whether it is a …","","","","","","","","","","","","","","","","","Returns an iterator of the bytes in the given equivalence …","Creates a new set of equivalence classes where all bytes …","Create a new “end of input” haystack unit.","Create a unit that represents the “end of input” …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Get the equivalence class for the given byte.","Get the equivalence class for the given haystack unit and …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Returns true if and only of this unit is a byte value …","Returns true when this unit represents an “end of input…","Returns true if and only if every byte in this class maps …","Returns true when this unit corresponds to an ASCII word …","Returns an iterator over all equivalence classes in this …","","","","","Returns an iterator over a sequence of representative …","Set the equivalence class for the given byte.","Creates a new set of equivalence classes where each byte …","Returns the stride, as a base-2 exponent, required for …","","","","","","","","","","","","","","","","","","Create a new haystack unit from a byte value.","The span offsets of capturing groups after a match has …","An iterator over all capturing groups in a Captures value.","Represents information about capturing groups in a …","An iterator over capturing groups and their names for a …","An error that may occur when building a GroupInfo.","An iterator over capturing groups and their names for a …","Create new storage for the offsets of all matching …","Return the total number of capture groups across all …","Return an iterator of all capture groups for all patterns …","","","","","","","","","","","","","Clear this Captures value.","","","","","","","","","","","","","","Create new storage for only tracking which pattern …","This creates an empty GroupInfo.","Returns the total number of slots for explicit capturing …","This is a convenience routine for extracting the substrings","This is a convenience routine for extracting the substrings","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the span of a capturing group match corresponding …","Returns the span of a capturing group match corresponding …","Returns the pattern ID and the span of the match, if one …","Returns a reference to the underlying group info on which …","Return the total number of capturing groups for the …","Return the number of capture groups in a pattern.","Returns the total number of slots for implicit capturing …","Interpolates the capture references in replacement with the","Interpolates the capture references in replacement with the","Interpolates the capture references in replacement with the","Interpolates the capture references in replacement with the","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Returns true if and only if this capturing group …","Returns an iterator of possible spans for every capturing …","Create new storage for only the full match spans of a …","Returns the memory usage, in bytes, of this GroupInfo.","Creates a new group info from a sequence of patterns, …","","","","Returns the identifier of the pattern that matched when …","Returns the total number of patterns in this GroupInfo.","Return an iterator of all capture groups and their names …","","Set the pattern on this Captures value.","","","Returns the starting slot corresponding to the given …","Returns the total number of slots in this GroupInfo across …","Returns the underlying slots, where each slot stores a …","Returns the starting and ending slot corresponding to the …","Returns the underlying slots as a mutable slice, where …","","Return the capture group index corresponding to the given …","Return the capture name for the given index and given …","","","","","","","","","","","","","","","","","","","","","","","","","Provides a convenient Debug implementation for a u8.","Provides a convenient Debug implementation for &[u8].","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","","","Accepts a replacement byte string and interpolates capture …","Accepts a replacement string and interpolates capture …","An iterator over all non-overlapping captures for an …","An iterator over all non-overlapping half matches for an …","An iterator over all non-overlapping matches for an …","A searcher for creating iterators and performing lower …","An iterator over all non-overlapping captures for a …","An iterator over all non-overlapping half matches for a …","An iterator over all non-overlapping matches for a …","Return the next match for an infallible search if one …","Return the next half match for an infallible search if one …","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Return an infallible version of this iterator.","Return an infallible version of this iterator.","Return an infallible version of this iterator.","Returns the current Input used by this iterator.","Returns the current Input used by this iterator.","Returns the current Input used by this searcher.","Returns the current Input used by this iterator.","Returns the current Input used by this iterator.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Given a closure that executes a single search, return an …","Given a closure that executes a single search, return an …","","","","","","","Given a closure that executes a single search, return an …","Create a new fallible non-overlapping matches iterator.","","","","","","","","Return the next match for a fallible search if one exists, …","Return the next half match for a fallible search if one …","","","","","","","","","","","","","","","","","","","","","","A lazily initialized value that implements Deref for T.","","","","","Returns the argument unchanged.","Return a reference to the lazily initialized value.","Calls U::from(self).","Create a new Lazy value that is initialized via the given …","","","","Match the end of text. Specifically, this matches at the …","Match the end of a line or the end of text. Specifically, …","Match the end of a line or the end of text. Specifically, …","A look-around assertion.","A matcher for look-around assertions.","LookSet is a memory-efficient set of look-around …","An iterator over all look-around assertions in a LookSet.","Match the beginning of text. Specifically, this matches at …","Match the beginning of a line or the beginning of text. …","Match the beginning of a line or the beginning of text. …","An error that occurs when the Unicode-aware \\\\w class is …","Match an ASCII-only word boundary. That is, this matches a …","Match an ASCII-only negation of a word boundary.","Match a Unicode-aware word boundary. That is, this matches …","Match a Unicode-aware negation of a word boundary.","Returns a convenient single codepoint representation of …","Return the underlying representation of this look-around …","Checks that all assertions in this set can be matched.","The underlying representation this set is exposed to make …","","","","","","","","","","","Returns an error if and only if Unicode word boundary data …","","","","","","","","","","","Returns true if and only if the given look-around …","Returns true if and only if this set contains any anchor …","Returns true if and only if this set contains any “…","Returns true if and only if this set contains any “…","Returns true if and only if this set contains any “…","Returns true if and only if this set contains any “…","Returns true if and only if this set contains any word …","Returns true if and only if this set contains any ASCII …","Returns true if and only if this set contains any Unicode …","","","Create an empty set of look-around assertions.","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Given the underlying representation of a Look value, …","Create a full set of look-around assertions.","Returns the line terminator that was configured for this …","Return a new set that is equivalent to the original, but …","Returns a new set that is the intersection of this and the …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Returns true if and only if this set is empty.","Returns true when Look::End is satisfied at the given …","Returns true when Look::EndCRLF is satisfied at the given …","Returns true when Look::EndLF is satisfied at the given …","Returns true when Look::Start is satisfied at the given …","Returns true when Look::StartCRLF is satisfied at the given","Returns true when Look::StartLF is satisfied at the given …","Returns true when Look::WordAscii is satisfied at the given","Returns true when Look::WordAsciiNegate is satisfied at …","Returns true when Look::WordUnicode is satisfied at the …","Returns true when Look::WordUnicodeNegate is satisfied at …","Returns an iterator over all of the look-around assertions …","Returns the total number of look-around assertions in this …","Returns true when the position at in haystack satisfies …","Returns true when all of the assertions in the given set …","Creates a new default matcher for look-around assertions.","","","Return a LookSet from the slice given as a native endian …","Return a new set that is equivalent to the original, but …","Flip the look-around assertion to its equivalent for …","Updates this set in place with the result of inserting the …","Updates this set in place with the result of intersecting …","Sets the line terminator for use with (?m:^) and (?m:$).","Updates this set in place with the result of removing the …","Updates this set in place with the result of subtracting …","Updates this set in place with the result of unioning it …","Create a look-around set containing the look-around …","Returns a new set that is the result of subtracting the …","","","","","","","","","","","","","","","","","","","","","","Returns a new set that is the union of this and the one …","Write a LookSet as a native endian 16-bit integer to the …","A thread safe pool that works in an alloc-only context.","A guard that is returned when a caller requests a value …","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Get a value from the pool. The caller is guaranteed to have","Calls U::from(self).","Calls U::from(self).","Create a new pool. The given closure is used to create …","Consumes this guard and puts it back into the pool.","","","","","","","A prefilter for accelerating regex searches.","","","","","Run this prefilter on haystack[span.start..end] and return …","","Returns the argument unchanged.","This attempts to extract prefixes from the given Hir …","This attempts to extract prefixes from the given Hir …","Calls U::from(self).","Returns the heap memory, in bytes, used by the underlying …","Create a new prefilter from a sequence of needles and a …","Returns the span of a prefix of …","","","","","The total number of values that can be represented as a …","The total number of values that can be represented.","The total number of values that can be represented.","The maximum index value.","The maximum value.","The maximum value.","A usize that can never be usize::MAX.","The identifier of a regex pattern, represented by a …","This error occurs when a value could not be constructed.","The number of bytes that a single small index uses in …","The number of bytes that a single value uses in memory.","The number of bytes that a single value uses in memory.","A type that represents a “small” index.","This error occurs when a small index could not be …","The identifier of a finite automaton state, represented by …","This error occurs when a value could not be constructed.","The zero index value.","The zero value.","The zero value.","Return the internal u32 of this small index represented as …","Return the internal value as a i32…","Return the internal value as a i32…","Return the internal u32 of this small index. This is …","Return the internal value as a u32. This is guaranteed to …","Return the internal value as a u32. This is guaranteed to …","Return this small index as a u64. This is guaranteed to …","Return the internal value as a u64. This is guaranteed to …","Return the internal value as a u64. This is guaranteed to …","Return this small index as a usize. This is guaranteed to …","Return the internal value as a usize. This is guaranteed to","Return the internal value as a usize. This is guaranteed to","Returns the value that could not be converted to a small …","Returns the value that could not be converted to an ID.","Returns the value that could not be converted to an ID.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Decode this small index from the bytes given using the …","Decode this value from the bytes given using the native …","Decode this value from the bytes given using the native …","Decode this small index from the bytes given using the …","Decode this value from the bytes given using the native …","Decode this value from the bytes given using the native …","Return the underlying usize value. The returned value is …","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Like SmallIndex::new, but panics if the given index is not …","Like new, but panics if the given value is not valid.","Like new, but panics if the given value is not valid.","Create a new NonMaxUsize from the given value.","Create a new small index.","Create a new value that is represented by a “small index.…","Create a new value that is represented by a “small index.…","Create a new small index without checking whether the …","Create a new value without checking whether the given …","Create a new value without checking whether the given …","Returns one more than this small index as a usize.","Returns one more than this value as a usize.","Returns one more than this value as a usize.","","","","","","","Return the underlying small index integer as raw bytes in …","Return the underlying integer as raw bytes in native endian","Return the underlying integer as raw bytes in native endian","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A common set of configuration options that apply to the …","","","Enable or disable the case insensitive flag by default.","","","Enable or disable the “CRLF mode” flag by default.","","Enable or disable the “dot matches any character” flag …","","Returns the argument unchanged.","Returns whether “case insensitive” mode is enabled.","Returns whether “CRLF” mode is enabled.","Returns whether “dot matches new line” mode is enabled.","Returns whether “ignore whitespace” mode is enabled.","Returns the line terminator in this syntax configuration.","Returns whether “multi line” mode is enabled.","Returns the “nest limit” setting.","Returns whether “octal” mode is enabled.","Returns whether “swap greed” mode is enabled.","Returns whether “unicode” mode is enabled.","Returns whether UTF-8 mode is enabled.","Enable verbose mode in the regular expression.","Calls U::from(self).","Sets the line terminator for use with (?u-s:.) and (?-us:.)…","Enable or disable the multi-line matching flag by default.","Set the nesting limit used for the regular expression …","Return a new default syntax configuration.","Whether to support octal syntax or not.","A convenience routine for parsing a pattern into an HIR …","A convenience routine for parsing many patterns into HIR …","A convenience routine for parsing many patterns into HIR …","A convenience routine for parsing a pattern into an HIR …","Enable or disable the “swap greed” flag by default.","","","","","Enable or disable the Unicode flag (u) by default.","When disabled, the builder will permit the construction of …","A hack to align a smaller type B with a bigger type T.","An error that occurs when deserializing an object defined …","An error that occurs when serializing an object from this …","A zero-sized field indicating the alignment we want.","","","","","","","A possibly non-sized field containing a sequence of bytes.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","",""],"i":[11,0,13,0,13,0,11,0,0,0,0,2,2,0,0,0,0,13,0,13,2,1,5,1,6,7,8,3,9,10,2,11,12,13,5,1,6,7,8,3,9,10,2,11,12,13,3,3,5,1,6,7,8,3,9,10,2,11,12,13,5,1,6,7,8,3,9,10,2,11,12,13,5,6,3,5,11,0,1,1,8,6,5,6,6,7,8,3,2,11,12,13,5,6,7,8,3,2,11,12,13,5,1,6,7,8,3,9,9,10,2,11,12,12,13,5,5,1,1,6,6,7,8,3,9,10,2,11,12,13,12,1,1,1,1,5,6,7,8,1,12,0,3,5,1,6,7,8,3,9,10,2,11,12,13,10,2,1,1,6,8,3,3,3,12,6,8,3,0,7,8,1,7,8,3,12,10,10,0,6,7,5,7,8,2,9,12,12,1,6,8,1,1,1,1,1,1,10,1,8,1,8,6,5,1,6,7,8,3,9,10,2,11,12,13,9,12,5,5,5,5,5,1,6,7,8,3,9,10,2,11,12,13,3,5,1,6,7,8,3,9,10,2,11,12,13,5,1,6,7,8,3,9,10,2,11,12,13,12,0,136,137,138,136,139,0,0,0,0,0,0,35,35,40,37,35,41,36,40,37,35,41,36,37,37,37,35,40,35,40,37,35,41,36,40,37,35,41,36,35,37,35,35,40,35,40,37,35,41,36,36,40,37,35,41,36,40,35,40,35,40,40,40,37,35,41,36,35,40,35,41,35,40,37,35,41,35,35,35,36,41,35,40,36,40,35,35,35,37,37,40,37,35,41,36,36,40,37,35,41,36,40,37,35,41,36,35,35,40,37,35,41,36,0,0,0,47,48,49,47,48,49,47,48,49,47,48,49,49,49,0,49,49,47,47,48,48,49,47,48,49,49,47,48,49,49,49,49,49,49,49,49,47,48,0,47,48,47,48,49,47,48,47,48,49,47,48,49,47,48,49,0,0,0,0,0,50,50,54,53,51,55,50,54,53,51,55,51,51,51,50,50,53,53,54,50,54,53,51,55,50,54,53,51,55,50,51,50,53,55,55,50,54,53,51,55,50,54,53,51,55,53,53,50,55,53,53,53,53,50,53,53,53,53,53,53,50,54,53,51,55,53,50,50,50,54,53,53,50,50,54,53,51,50,50,50,50,50,50,53,53,54,50,54,54,54,54,53,53,55,50,50,53,51,51,50,54,53,51,55,50,54,53,51,55,50,54,53,51,55,50,50,50,50,50,50,54,53,51,55,53,0,0,0,0,57,57,59,60,57,58,59,60,57,58,58,58,58,59,57,58,57,58,59,58,58,59,59,59,60,57,58,59,57,57,59,60,57,58,59,60,57,58,60,59,57,59,57,58,59,60,59,57,59,59,57,57,58,58,57,58,59,60,57,58,59,60,57,58,59,59,60,57,58,0,0,0,0,0,0,0,0,0,61,61,64,63,69,67,70,71,68,61,62,64,63,69,67,70,71,68,61,62,62,62,62,62,63,61,63,63,63,64,63,68,61,62,64,63,68,61,62,63,62,69,67,63,63,61,61,61,61,63,63,64,64,63,69,67,70,71,68,61,62,64,63,69,67,70,71,68,61,62,61,61,61,63,61,61,61,61,61,61,61,61,61,61,61,61,63,61,61,69,67,70,71,64,63,69,67,70,71,68,61,62,69,67,70,71,63,63,61,61,63,68,63,68,61,62,63,69,67,70,71,61,61,61,64,63,61,64,69,67,68,63,63,63,63,63,63,63,63,71,64,64,63,63,63,62,64,64,63,68,61,62,64,64,63,69,67,70,71,68,61,62,64,63,69,67,70,71,68,61,62,64,63,69,67,70,71,68,61,62,61,63,63,0,82,0,0,82,82,0,0,82,0,82,82,82,0,0,82,0,0,0,82,74,74,74,74,74,74,74,74,74,74,39,0,74,45,81,76,39,82,83,84,79,85,74,45,81,76,39,82,83,84,79,85,74,81,81,81,81,39,45,74,74,45,81,76,39,82,83,84,79,74,45,81,76,39,82,83,84,79,39,39,81,74,74,45,79,82,83,84,79,82,83,84,79,74,74,45,81,76,76,39,82,83,84,79,85,74,45,81,76,39,82,83,84,79,85,45,74,45,45,74,45,45,74,74,45,39,39,39,79,74,45,81,76,39,82,83,84,79,85,85,39,82,39,39,45,39,39,39,83,84,79,83,84,79,79,74,39,39,74,45,81,39,39,85,79,45,74,74,39,39,0,76,45,74,74,74,74,45,76,76,79,39,74,39,39,39,39,81,74,45,81,76,39,82,83,84,79,76,83,84,74,45,81,76,39,82,83,84,79,85,74,45,81,76,39,82,83,84,79,85,74,45,81,76,39,82,83,84,79,85,45,140,140,141,142,143,143,142,142,144,142,145,0,0,0,0,0,0,89,91,90,89,93,94,92,91,90,89,93,94,92,90,90,90,89,91,90,89,92,91,90,89,92,89,90,89,89,91,91,90,89,93,94,92,91,90,89,93,94,92,89,89,91,91,91,90,89,93,94,92,93,94,89,92,0,89,91,90,89,92,89,89,93,94,89,91,92,89,90,90,91,90,89,92,89,89,89,89,91,90,89,93,94,92,91,90,89,93,94,92,89,89,89,91,90,89,93,94,92,91,0,0,0,0,0,0,95,99,96,95,100,98,97,99,96,95,100,98,97,96,96,96,95,95,95,99,96,95,97,99,96,95,97,95,96,95,95,99,95,95,99,96,95,100,98,97,99,96,95,100,98,97,95,99,95,99,99,96,95,100,98,97,100,98,95,99,97,95,99,96,95,97,95,95,100,98,95,99,97,95,95,95,96,96,99,96,95,97,99,96,95,100,98,97,99,96,95,100,98,97,99,96,95,100,98,97,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,88,88,88,88,52,102,103,101,88,52,102,103,101,88,52,88,52,88,52,52,52,88,52,88,88,88,52,102,103,101,88,52,102,103,101,52,52,88,52,102,103,101,102,103,101,88,88,52,88,52,102,103,101,88,52,52,52,52,88,52,88,52,102,103,101,88,52,102,103,101,88,52,102,103,101,88,0,0,0,0,0,0,42,72,72,42,105,72,106,107,104,42,105,72,106,107,104,42,42,105,72,106,107,42,105,72,106,107,105,107,72,42,72,72,42,42,42,105,72,106,106,107,104,42,105,72,106,107,104,42,42,42,42,42,72,72,42,42,42,42,42,105,72,106,107,104,105,107,104,42,42,42,72,72,105,107,104,42,72,72,106,42,105,107,72,72,42,72,42,106,72,72,42,105,72,106,107,106,42,105,72,106,107,104,42,105,72,106,107,104,42,105,72,106,107,104,0,0,110,109,110,109,109,109,110,109,110,109,110,109,109,110,109,110,109,110,109,0,0,0,0,0,0,0,0,0,112,112,113,114,115,112,117,118,119,113,114,115,112,117,118,119,112,112,113,114,115,112,117,118,119,113,114,115,112,117,118,119,113,114,115,113,114,112,117,118,113,114,115,112,117,118,119,112,112,113,114,115,117,118,119,112,112,113,114,115,117,118,119,112,112,112,113,114,115,112,117,118,119,113,114,115,112,117,118,119,113,114,115,112,117,118,119,0,121,121,121,121,121,121,121,121,121,121,121,78,78,78,0,0,0,0,78,78,78,0,78,78,78,78,78,78,87,87,78,87,124,86,123,78,87,124,86,123,123,78,87,124,86,123,78,87,124,86,123,87,87,87,87,87,87,87,87,87,87,86,87,78,87,78,87,78,87,124,86,123,123,78,87,124,86,123,78,87,86,87,87,78,87,124,86,123,124,87,86,86,86,86,86,86,86,86,86,86,87,87,86,86,86,124,123,87,87,78,87,87,86,87,87,87,87,87,78,87,124,86,123,123,78,87,124,86,123,78,87,124,86,123,78,87,124,86,123,87,87,0,0,127,126,127,126,126,126,127,126,127,126,127,127,126,127,126,127,126,127,126,127,126,0,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,128,5,75,128,5,75,0,0,0,128,5,75,0,0,0,0,128,5,75,128,5,75,128,5,75,128,5,75,128,5,75,130,30,131,46,128,130,75,30,131,46,128,130,75,30,131,46,128,130,75,30,131,46,128,130,75,30,131,46,128,75,128,75,46,128,130,75,30,131,46,128,130,75,30,131,46,128,130,130,75,30,30,131,131,46,128,128,130,75,75,30,131,128,5,75,128,5,75,46,46,128,75,46,128,130,75,30,131,128,5,75,46,128,5,75,128,5,75,128,5,75,46,128,75,130,30,131,128,5,75,46,128,130,75,30,131,130,30,131,46,128,128,128,128,128,130,75,75,75,75,75,30,131,46,128,130,75,30,131,46,128,130,75,30,131,0,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,0,0,0,0,44,44,44,44,44,44,44,0,0,0,133,133,134,135,133,134,135,133,133,134,134,135,135,133,134,135,133,134,135,134,135,134,135,133,134,135,133,134,135,133,134,135],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3,4],[3],[5,5],[1,1],[6,6],[7,7],[8,8],[3,3],[9,9],[10,10],[2,2],[11,11],[12,12],[13,13],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[5,5],14],[[6,4],15],[[3,5],15],[[],5],[[],11],0,[[1,15],1],[1,4],[8,4],0,[[5,5],15],[[6,[16,[4]]],15],[[6,6],15],[[7,7],15],[[8,8],15],[[3,3],15],[[2,2],15],[[11,11],15],[[12,12],15],[[13,13],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[5,17],18],[[1,17],18],[[6,17],18],[[7,17],18],[[8,17],18],[[3,17],18],[[9,17],18],[[9,17],18],[[10,17],18],[[2,17],18],[[11,17],18],[[12,17],18],[[12,17],18],[[13,17],18],[19,5],[[]],[[]],[[[0,[20,[22,[[21,[19]]]]]]],1],[[[16,[4]]],6],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[4,12],[1,2],[1,15],[1,[[16,[4]]]],[1,6],[[5,23]],[[6,23]],[[7,23]],[[8,23]],[1,[[21,[19]]]],[4,12],0,[[3,5],15],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[2,15],[[1,4],15],[1,15],[6,15],[8,15],[3,15],[3,15],[3,10],[12,13],[6,4],[8,4],[3,4],0,[[4,4],7],[[4,[24,[6]]],8],[[[0,[20,[22,[[21,[19]]]]]]],1],[[5,4],7],[[5,[24,[6]]],8],[4,3],[13,12],[10,[[25,[5]]]],[10,[[25,[5]]]],0,[[6,4],6],[7,4],[[5,5],[[25,[14]]]],[7,5],[8,5],[2,[[25,[5]]]],[26],[26],[[19,4],12],[[1,[27,[4]]],1],[6,[[16,[4]]]],[8,[[16,[4]]]],[[1,2]],[[1,15]],[[1,4]],[[1,[27,[4]]]],[[1,[24,[6]]]],[[1,4]],[10],[[1,[24,[6]]],1],[8,6],[1,4],[8,4],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],28],[[],28],[29,[[31,[5,30]]]],[32,[[31,[5,30]]]],[[],31],[33,[[31,[5,30]]]],[4,[[31,[5,30]]]],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[3,5],[[31,[15,9]]]],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[2,12],0,0,0,0,0,0,0,0,0,0,0,0,[35,4],[[],[[31,[35,36]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[37,38],[[31,[35,36]]]],[[37,39],[[31,[35,36]]]],[[37,[21,[[22,[38]]]]],[[31,[35,36]]]],[[],37],[[40,15],40],[[35,41,[24,[1]],42]],[40,40],[37,37],[35,35],[41,41],[36,36],[[]],[[]],[[]],[[]],[[]],[[],40],[[37,40],37],[35,41],[35,42],[[],40],[[35,41,[24,[1]]],[[25,[8]]]],[[40,17],18],[[37,17],18],[[35,17],18],[[41,17],18],[[36,17],18],[[36,17],18],[[]],[[]],[[]],[[]],[[]],[40,15],[35,40],[40,11],[35,39],[40,[[25,[4]]]],[40,15],[[]],[[]],[[]],[[]],[[]],[[35,41,[24,[1]]],15],[[40,11],40],[35,4],[41,4],[[],[[31,[35,36]]]],[[],40],[[],37],[38,[[31,[35,36]]]],[35,41],[39,[[31,[35,36]]]],[[[21,[[22,[38]]]]],[[31,[35,36]]]],[35,4],[26],[[41,35]],[[35,41]],[[40,[25,[4]]],40],[36,[[25,[43]]]],[[40,15],40],[35,4],[35,4],[35,4],[[37,44],37],[[37,45],37],[[]],[[]],[[]],[[]],[[]],[[],28],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[35,41,1,42],[[31,[12]]]],[[35,41,1,[21,[[25,[46]]]]],[[31,[[25,[5]],12]]]],[[],34],[[],34],[[],34],[[],34],[[],34],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[47,47],[48,48],[49,49],[[]],[[]],[[]],[[49,49],14],[[],49],0,[[49,49],15],[[],15],[[47,17],18],[[47,17],18],[[48,17],18],[[48,17],18],[[49,17],18],[[]],[[]],[[]],[[49,23]],[[]],[[]],[[]],[49,15],[49,15],[49,15],[49,15],[49,15],[49,15],[[49,49],[[25,[14]]]],[26],[26],0,[47,[[25,[43]]]],[48,[[25,[43]]]],[[]],[[]],[[]],[[],28],[[],28],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],0,0,0,0,0,[[],[[31,[50,47]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[51,38],[[31,[50,47]]]],[[51,39],[[31,[50,47]]]],[[51,[21,[[22,[38]]]]],[[31,[50,47]]]],[[],51],[50,52],[[53,15],53],[[53,4],53],[54,4],[50,50],[54,54],[53,53],[51,51],[55,55],[[]],[[]],[[]],[[]],[[]],[[],53],[[51,53],51],[50,54],[[],53],[[55,55],15],[[],15],[[50,17],18],[[54,17],18],[[53,17],18],[[51,17],18],[[55,17],18],[[]],[[]],[[]],[[]],[[]],[53,15],[53,4],[50,53],[55,[[25,[7]]]],[53,11],[53,[[25,[4]]]],[[53,39],[[31,[4,47]]]],[53,[[25,[4]]]],[50,39],[53,[[25,[56]]]],[[53,19],15],[53,15],[53,15],[53,15],[53,15],[[]],[[]],[[]],[[]],[[]],[[53,11],53],[[50,54,49],4],[[50,54,49,4],5],[50,4],[54,4],[[53,[25,[4]]],53],[[53,[25,[4]]],53],[[],[[31,[50,47]]]],[38,[[31,[50,47]]]],[50,54],[[],53],[[],51],[[[21,[[22,[38]]]]],[[31,[50,47]]]],[[50,54,49],[[31,[49,48]]]],[[50,54,49,19],[[31,[49,48]]]],[[50,54,49,19],49],[[50,54,49,19],49],[50,4],[[53,[25,[56]]],53],[[53,19,15],53],[[54,50]],[[50,54]],[[54,4]],[[54,4]],[54,4],[[54,4]],[[53,15],53],[[53,15],53],[[],55],[[50,54,1],[[31,[49,12]]]],[[50,54,1],[[31,[49,12]]]],[[53,15],53],[[51,44],51],[[51,45],51],[[]],[[]],[[]],[[]],[[]],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[50,54,1],[[31,[[25,[7]],12]]]],[[50,54,1,55],[[31,[12]]]],[[50,54,1,55],[[31,[12]]]],[[50,54,1],[[31,[[25,[7]],12]]]],[[50,54,1,3],[[31,[12]]]],[[],34],[[],34],[[],34],[[],34],[[],34],[[53,15],53],0,0,0,0,[57],[57],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[58,38],[[31,[59,47]]]],[[58,50,50],59],[[58,[21,[[22,[38]]]]],[[31,[59,47]]]],[[],58],[57,57],[58,58],[[]],[[]],[59,57],[[],58],[[58,53],58],[[59,57,[24,[1]]],[[25,[8]]]],[[59,57,[24,[1]]],60],[[59,17],18],[[60,17],18],[[57,17],18],[[58,17],18],[59,50],[57,54],[57,54],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[59,57,[24,[1]]],15],[57,4],[38,[[31,[59,47]]]],[59,57],[[],58],[[[21,[[22,[38]]]]],[[31,[59,47]]]],[60,[[25,[8]]]],[59,4],[[57,59]],[[59,57]],[59,50],[57,54],[57,54],[[58,44],58],[[58,45],58],[[]],[[]],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[59,57,1],[[31,[[25,[8]],12]]]],[[],34],[[],34],[[],34],[[],34],0,0,0,0,0,0,0,0,0,[[61,15],61],[[61,15],61],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[62,38],[[31,[63,64]]]],[[62,65],[[31,[63,64]]]],[[62,[21,[[22,[38]]]]],[[31,[63,64]]]],[[62,[21,[[66,[65]]]]],[[31,[63,64]]]],[[],62],[[61,15],61],[[63,[24,[1]],42]],[[63,[24,[1]]],67],[63,4],[64,64],[63,63],[68,68],[61,61],[62,62],[[]],[[]],[[]],[[]],[[]],[[],61],[[62,61],62],[69,4],[67,4],[63,68],[63,42],[[],61],[[61,15],61],[[61,[25,[4]]],61],[[61,[25,[4]]],61],[[63,[24,[1]]],[[25,[8]]]],[[63,[24,[1]]],69],[[64,17],18],[[64,17],18],[[63,17],18],[[69,17],18],[[67,17],18],[[70,17],18],[[71,17],18],[[68,17],18],[[61,17],18],[[62,17],18],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[61,15],[61,15],[61,15],[63,61],[61,15],[61,[[25,[4]]]],[61,[[25,[4]]]],[61,15],[61,4],[61,19],[61,11],[61,[[25,[4]]]],[61,15],[61,[[25,[4]]]],[61,[[25,[56]]]],[61,15],[63,72],[[61,15],61],[[61,4],61],[69,1],[67,1],[70,1],[71,1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[63,15],[[63,[24,[1]]],15],[[61,19],61],[[61,11],61],[63,4],[68,4],[38,[[31,[63,64]]]],[63,68],[[],61],[[],62],[[[21,[[22,[38]]]]],[[31,[63,64]]]],[69,[[25,[8]]]],[67,[[25,[42]]]],[70,[[25,[6]]]],[71,[[25,[6]]]],[[61,[25,[4]]],61],[[61,15],61],[[61,[25,[4]]],61],[64,[[25,[5]]]],[63,4],[[61,[25,[56]]],61],[26],[69,63],[67,63],[[68,63]],[[63,1],[[25,[8]]]],[[63,1,42]],[[63,68,1,42]],[[63,1],[[25,[7]]]],[[63,68,1],[[25,[7]]]],[[63,1,[21,[[25,[46]]]]],[[25,[5]]]],[[63,68,1,[21,[[25,[46]]]]],[[25,[5]]]],[[63,68,1],[[25,[8]]]],[71],[64,[[25,[4]]]],[64,[[25,[43]]]],[[63,[24,[1]]],70],[[63,[24,[1]],4],71],[63,[[25,[4]]]],[[62,44],62],[64,[[25,[73]]]],[[]],[[]],[[]],[[]],[[]],[[],28],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[61,15],61],[[63,1,3]],[[63,68,1,3]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[74,75,32],[[31,[75,76]]]],[[74,75,32,[25,[[77,[38]]]]],[[31,[75,76]]]],[74,[[31,[75,76]]]],[74,[[31,[75,76]]]],[[74,75,78],[[31,[75,76]]]],[74,[[31,[75,76]]]],[[74,79],[[31,[75,76]]]],[[74,[80,[79]]],[[31,[75,76]]]],[[74,[80,[75]]],[[31,[75,76]]]],[[74,[80,[75]]],[[31,[75,76]]]],[[],39],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[74,75,75],[[31,[39,76]]]],[[81,38],[[31,[39,76]]]],[[81,65],[[31,[39,76]]]],[[81,[21,[[22,[38]]]]],[[31,[39,76]]]],[[81,[21,[[66,[65]]]]],[[31,[39,76]]]],[39,52],[[45,15],45],[74],[74,74],[45,45],[81,81],[76,76],[39,39],[82,82],[83,83],[84,84],[79,79],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],81],[[],45],[[81,45],81],[74,5],[[],74],[[],45],0,[[82,82],15],[[83,83],15],[[84,84],15],[[79,79],15],[[],15],[[],15],[[],15],[[],15],[[74,75],[[31,[5,76]]]],[[74,17],18],[[45,17],18],[[81,17],18],[[76,17],18],[[76,17],18],[[39,17],18],[[82,17],18],[[83,17],18],[[84,17],18],[[79,17],18],[[85,17],18],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[45,15],[74,86],[45,86],[45,[[25,[4]]]],[74,15],[45,15],[45,15],[74,[[25,[4]]]],[74,15],[45,15],[39,72],[39,15],[39,15],[[79,23]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[39,15],[82,15],[39,15],[39,15],[[45,86],45],[39,86],[39,87],[39,87],[[83,[21,[19]],4],[[25,[75]]]],[[84,[21,[19]],4],[[25,[75]]]],[[79,[21,[19]],4],15],[[83,19],[[25,[75]]]],[[84,19],[[25,[75]]]],[[79,19],15],[[79,88],15],[74,4],[39,4],[[],39],[[],74],[[],45],[[],81],[38,[[31,[39,76]]]],[[[21,[[22,[38]]]]],[[31,[39,76]]]],[85,[[25,[5]]]],0,[[45,[25,[4]]],45],[[74,75,75],[[31,[76]]]],[74,4],[39,4],[39,85],0,[26],[[45,15],45],[[74,86]],[[74,15]],[[74,[25,[4]]],[[31,[76]]]],[[74,15]],[[45,15],45],[76,[[25,[4]]]],[76,[[25,[43]]]],0,[39,75],[74,[[31,[5,76]]]],[[39,5],[[25,[75]]]],[39,75],[[39,75],82],[39,[[21,[82]]]],[[81,44],81],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],28],0,0,[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[45,15],45],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],[[31,[89,76]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[90,38],[[31,[89,76]]]],[[90,39],[[31,[89,76]]]],[[90,[21,[[22,[38]]]]],[[31,[89,76]]]],[[],90],[91,91],[90,90],[89,89],[92,92],[[]],[[]],[[]],[[]],[[],91],[[90,91],90],[89,92],[89,42],[[],91],[[91,17],18],[[90,17],18],[[89,17],18],[[93,17],18],[[94,17],18],[[92,17],18],[[]],[[]],[[]],[[]],[[]],[[]],[89,91],[89,39],[91,[[25,[56]]]],[91,4],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[89,4],[92,4],[[39,1],4],[[],[[31,[89,76]]]],[[],91],[[],90],[38,[[31,[89,76]]]],[89,92],[39,[[31,[89,76]]]],[[[21,[[22,[38]]]]],[[31,[89,76]]]],[93,[[25,[[31,[8,12]]]]]],[94,[[25,[[31,[42,12]]]]]],[89,4],[[91,[25,[56]]],91],[[92,89]],[[89,92]],[[90,44],90],[[90,45],90],[[]],[[]],[[]],[[]],[[89,92,[24,[1]],42],[[31,[12]]]],[[89,92,[24,[1]]],94],[[89,92,[24,[1]]],[[31,[[25,[8]],12]]]],[[89,92,[24,[1]]],93],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[89,92,[24,[1]]],[[31,[15,12]]]],[[89,92,1,42],[[31,[12]]]],[[89,92,1,[21,[[25,[46]]]]],[[31,[[25,[5]],12]]]],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[91,4],91],0,0,0,0,0,0,[[],[[31,[95,76]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[96,38],[[31,[95,76]]]],[[96,39],[[31,[95,76]]]],[[96,[21,[[22,[38]]]]],[[31,[95,76]]]],[[],96],[[95,97,[24,[1]],42]],[[95,97,[24,[1]]],98],[99,99],[96,96],[95,95],[97,97],[[]],[[]],[[]],[[]],[[],99],[[96,99],96],[95,97],[95,42],[[],99],[[95,97,[24,[1]]],[[25,[8]]]],[[95,97,[24,[1]]],100],[[99,17],18],[[96,17],18],[[95,17],18],[[100,17],18],[[98,17],18],[[97,17],18],[[]],[[]],[[]],[[]],[[]],[[]],[95,99],[99,11],[95,39],[99,[[25,[56]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[95,97,[24,[1]]],15],[[99,11],99],[97,4],[[],[[31,[95,76]]]],[[],99],[[],96],[38,[[31,[95,76]]]],[95,97],[39,[[31,[95,76]]]],[[[21,[[22,[38]]]]],[[31,[95,76]]]],[100,[[25,[8]]]],[98,[[25,[42]]]],[95,4],[[99,[25,[56]]],99],[[97,95]],[[95,97]],[[95,97,1,42]],[[95,97,1,[21,[[25,[46]]]]],[[25,[5]]]],[[96,44],96],[[96,45],96],[[]],[[]],[[]],[[]],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[95,97,1,3]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[52,4],[88,[[25,[33]]]],[88,[[25,[19]]]],[88,4],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[88,88],[52,52],[[]],[[]],[[88,88],14],[[],52],[[52,88],101],[[],52],[4,88],[52,88],[[88,88],15],[[],15],[[88,17],18],[[52,17],18],[[102,17],18],[[103,17],18],[[101,17],18],[[]],[[]],[[]],[[]],[[]],[[52,19],19],[[52,88],4],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[88,19],15],[88,15],[52,15],[88,15],[52,102],[102,[[25,[88]]]],[103,[[25,[88]]]],[101,[[25,[88]]]],[[88,88],[[25,[14]]]],[[52,[27,[19]]],103],[[52,19,19]],[[],52],[52,4],[[]],[[]],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],[[],34],[[],34],[19,88],0,0,0,0,0,0,[72,42],[72,4],[72,104],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[42],[42,42],[105,105],[72,72],[106,106],[107,107],[[]],[[]],[[]],[[]],[[]],[105,4],[107,4],[[],72],[72,42],[[],72],[72,4],[[42,38]],[[42,[21,[19]]]],[[42,17],18],[[105,17],18],[[72,17],18],[[106,17],18],[[106,17],18],[[107,17],18],[[104,17],18],[[]],[[]],[[]],[[]],[[]],[[]],[[42,4],[[25,[6]]]],[[42,38],[[25,[6]]]],[42,[[25,[8]]]],[42,72],[42,4],[[72,5],4],[72,4],[[42,[21,[19]],[21,[19]]],[[80,[19]]]],[[42,[21,[19]],[21,[19]],[80,[19]]]],[[42,38,38],28],[[42,38,38,28]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[42,15],[42,105],[72,42],[72,4],[108,[[31,[72,106]]]],[105,[[25,[[25,[6]]]]]],[107,[[25,[[25,[38]]]]]],[104,25],[42,[[25,[5]]]],[72,4],[[72,5],107],[26],[[42,[25,[5]]]],[105],[107],[[72,5,4],[[25,[4]]]],[72,4],[42,[[21,[[25,[46]]]]]],[[72,5,4],25],[42,[[21,[[25,[46]]]]]],[106,[[25,[43]]]],[[72,5,38],[[25,[4]]]],[[72,5,4],[[25,[38]]]],[[]],[[]],[[]],[[]],[[]],[[],28],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],0,0,[[]],[[]],[[]],[[]],[109,109],[[]],[[110,17],18],[[109,17],18],[[]],[[]],[[]],[[]],[[]],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[[21,[19]],111,111,[80,[19]]]],[[38,111,111,28]],0,0,0,0,0,0,0,[[112,111],[[25,[8]]]],[[112,111],[[25,[7]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[112,112],[[]],[[113,17],18],[[114,17],18],[[115,17],18],[[112,17],18],[[[117,[116]],17],18],[[[118,[116]],17],18],[[[119,[116]],17],18],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[113,117],[114,118],[115,119],[113,1],[114,1],[112,1],[117,1],[118,1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[112,42,111],[[115,[111]]]],[[112,111],[[113,[111]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[112,111],[[114,[111]]]],[1,112],[[[113,[111]]],[[25,[[31,[7,12]]]]]],[[[114,[111]]],[[25,[[31,[8,12]]]]]],[[[115,[111]]],[[25,[[31,[42,12]]]]]],[[[117,[111]]],[[25,[7]]]],[[[118,[111]]],[[25,[8]]]],[[[119,[111]]],[[25,[42]]]],[[]],[[112,111],[[31,[[25,[8]],12]]]],[[112,111],[[31,[[25,[7]],12]]]],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],0,[[]],[[]],[[[121,[120]]]],[[[121,[116,120]],17],18],[[]],[[[121,[120]]]],[[]],[[],121],[[],31],[[],31],[[],34],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[78,122],[78,33],[87,[[31,[123]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[31,[123]]]],[78,78],[87,87],[124,124],[86,86],[123,123],[[]],[[]],[[]],[[]],[[]],[[87,78],15],[87,15],[87,15],[87,15],[87,15],[87,15],[87,15],[87,15],[87,15],[[],87],[[],86],[[],87],[[78,78],15],[[87,87],15],[[],15],[[],15],[[78,17],18],[[87,17],18],[[124,17],18],[[86,17],18],[[123,17],18],[[123,17],18],[[]],[[]],[[]],[[]],[[]],[33,[[25,[78]]]],[[],87],[86,19],[[87,78],87],[[87,87],87],[[]],[[]],[[]],[[]],[[]],[[]],[87,15],[[86,[21,[19]],4],15],[[86,[21,[19]],4],15],[[86,[21,[19]],4],15],[[86,[21,[19]],4],15],[[86,[21,[19]],4],15],[[86,[21,[19]],4],15],[[86,[21,[19]],4],15],[[86,[21,[19]],4],15],[[86,[21,[19]],4],[[31,[15,123]]]],[[86,[21,[19]],4],[[31,[15,123]]]],[87,124],[87,4],[[86,78,[21,[19]],4],15],[[86,87,[21,[19]],4],15],[[],86],[124,[[25,[78]]]],[26],[[[21,[19]]],87],[[87,78],87],[78,78],[[87,78]],[[87,87]],[[86,19],86],[[87,78]],[[87,87]],[[87,87]],[78,87],[[87,87],87],[[]],[[]],[[]],[[]],[[]],[[],28],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],[[],34],[[],34],[[87,87],87],[[87,[21,[19]]]],0,0,[[]],[[]],[[]],[[]],[[[126,[125,120]]],125],[[[126,[125,120]]],125],[[[127,[116]],17],18],[[[126,[[0,[125,116]],120]],17],18],[[]],[[]],[[[127,[125,120]]],[[126,[125,120]]]],[[]],[[]],[[],127],[[[126,[125,120]]]],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],0,[[]],[[]],[56,56],[[]],[[56,[21,[19]],6],[[25,[6]]]],[[56,17],18],[[]],[[11,65],[[25,[56]]]],[[11,[21,[[66,[65]]]]],[[25,[56]]]],[[]],[56,4],[[11,[21,[[22,[[21,[19]]]]]]],[[25,[56]]]],[[56,[21,[19]],6],[[25,[6]]]],[[]],[[],31],[[],31],[[],34],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[128,129],[5,129],[75,129],[128,32],[5,32],[75,32],[128,29],[5,29],[75,29],[128,4],[5,4],[75,4],[130,29],[30,29],[131,29],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[46,46],[128,128],[130,130],[75,75],[30,30],[131,131],[[]],[[]],[[]],[[]],[[]],[[]],[[46,46],14],[[128,128],14],[[75,75],14],[[],128],[[],75],[[46,46],15],[[128,128],15],[[130,130],15],[[75,75],15],[[30,30],15],[[131,131],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[46,17],18],[[128,17],18],[[130,17],18],[[130,17],18],[[75,17],18],[[30,17],18],[[30,17],18],[[131,17],18],[[131,17],18],[[]],[[]],[19,128],[[]],[[]],[19,75],[[]],[[]],[[[132,[19]]],[[31,[128,130]]]],[[[132,[19]]],[[31,[5,30]]]],[[[132,[19]]],[[31,[75,131]]]],[[[132,[19]]],128],[[[132,[19]]],5],[[[132,[19]]],75],[46,4],[[46,23]],[[128,23]],[[75,23]],[[]],[[]],[[]],[[]],[[]],[[]],[4,128],[4,5],[4,75],[4,[[25,[46]]]],[4,[[31,[128,130]]]],[4,[[31,[5,30]]]],[4,[[31,[75,131]]]],[4,128],[4,5],[4,75],[128,4],[5,4],[75,4],[[46,46],[[25,[14]]]],[[128,128],[[25,[14]]]],[[75,75],[[25,[14]]]],[26],[26],[26],[128,[[132,[19]]]],[5,[[132,[19]]]],[75,[[132,[19]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[],28],[[],28],[[],28],[[],31],[4,[[31,[128,130]]]],[[],31],[32,[[31,[128,130]]]],[33,[[31,[128,130]]]],[29,[[31,[128,130]]]],[[],31],[[],31],[33,[[31,[75,131]]]],[29,[[31,[75,131]]]],[32,[[31,[75,131]]]],[4,[[31,[75,131]]]],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],0,[[]],[[]],[[44,15],44],[44,44],[[]],[[44,15],44],[[],44],[[44,15],44],[[44,17],18],[[]],[44,15],[44,15],[44,15],[44,15],[44,19],[44,15],[44,32],[44,15],[44,15],[44,15],[44,15],[[44,15],44],[[]],[[44,19],44],[[44,15],44],[[44,32],44],[[],44],[[44,15],44],[38,[[31,[65,73]]]],[[[21,[[22,[38]]]]],[[31,[[80,[65]],73]]]],[[[21,[[22,[38]]]],44],[[31,[[80,[65]],73]]]],[[38,44],[[31,[65,73]]]],[[44,15],44],[[]],[[],31],[[],31],[[],34],[[44,15],44],[[44,15],44],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],0,[[[133,[[0,[116,20]],116]],17],18],[[134,17],18],[[134,17],18],[[135,17],18],[[135,17],18],[[]],[[]],[[]],[[]],[[]],[[]],[26],[26],[[],28],[[],28],[[],31],[[],31],[[],31],[[],31],[[],31],[[],31],[[],34],[[],34],[[],34]],"c":[],"p":[[3,"Input"],[4,"Anchored"],[3,"PatternSet"],[15,"usize"],[3,"PatternID"],[3,"Span"],[3,"HalfMatch"],[3,"Match"],[3,"PatternSetInsertError"],[3,"PatternSetIter"],[4,"MatchKind"],[3,"MatchError"],[4,"MatchErrorKind"],[4,"Ordering"],[15,"bool"],[3,"Range"],[3,"Formatter"],[6,"Result"],[15,"u8"],[8,"Sized"],[15,"slice"],[8,"AsRef"],[8,"Hasher"],[8,"Into"],[4,"Option"],[3,"Demand"],[8,"RangeBounds"],[3,"String"],[15,"u64"],[3,"PatternIDError"],[4,"Result"],[15,"u32"],[15,"u16"],[3,"TypeId"],[3,"DFA"],[3,"BuildError"],[3,"Builder"],[15,"str"],[3,"NFA"],[3,"Config"],[3,"Cache"],[3,"Captures"],[8,"Error"],[3,"Config"],[3,"Config"],[3,"NonMaxUsize"],[3,"BuildError"],[3,"CacheError"],[3,"LazyStateID"],[3,"DFA"],[3,"Builder"],[3,"ByteClasses"],[3,"Config"],[3,"Cache"],[3,"OverlappingState"],[3,"Prefilter"],[3,"Cache"],[3,"Builder"],[3,"Regex"],[3,"FindMatches"],[3,"Config"],[3,"Builder"],[3,"Regex"],[3,"BuildError"],[3,"Hir"],[8,"Borrow"],[3,"CapturesMatches"],[3,"Cache"],[3,"FindMatches"],[3,"Split"],[3,"SplitN"],[3,"GroupInfo"],[4,"Error"],[3,"Builder"],[3,"StateID"],[3,"BuildError"],[3,"Arc"],[4,"Look"],[3,"Transition"],[3,"Vec"],[3,"Compiler"],[4,"State"],[3,"SparseTransitions"],[3,"DenseTransitions"],[3,"PatternIter"],[3,"LookMatcher"],[3,"LookSet"],[3,"Unit"],[3,"BoundedBacktracker"],[3,"Builder"],[3,"Config"],[3,"Cache"],[3,"TryFindMatches"],[3,"TryCapturesMatches"],[3,"PikeVM"],[3,"Builder"],[3,"Cache"],[3,"CapturesMatches"],[3,"Config"],[3,"FindMatches"],[3,"ByteClassElements"],[3,"ByteClassIter"],[3,"ByteClassRepresentatives"],[3,"GroupInfoAllNames"],[3,"CapturesPatternIter"],[3,"GroupInfoError"],[3,"GroupInfoPatternNames"],[8,"IntoIterator"],[3,"DebugByte"],[3,"DebugHaystack"],[8,"FnMut"],[3,"Searcher"],[3,"TryHalfMatchesIter"],[3,"TryMatchesIter"],[3,"TryCapturesIter"],[8,"Debug"],[3,"HalfMatchesIter"],[3,"MatchesIter"],[3,"CapturesIter"],[8,"Fn"],[3,"Lazy"],[15,"char"],[3,"UnicodeWordBoundaryError"],[3,"LookSetIter"],[8,"Send"],[3,"PoolGuard"],[3,"Pool"],[3,"SmallIndex"],[15,"i32"],[3,"SmallIndexError"],[3,"StateIDError"],[15,"array"],[3,"AlignAs"],[3,"SerializeError"],[3,"DeserializeError"],[13,"Quit"],[13,"HaystackTooLong"],[13,"UnsupportedAnchored"],[13,"GaveUp"],[13,"BinaryUnion"],[13,"Union"],[13,"Capture"],[13,"Look"],[13,"Match"],[13,"ByteRange"]]},\ "regex_syntax":{"doc":"This crate provides a robust regular expression parser.","t":"ENDDNDALLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLLLLLALLLLLFFFFLLLLLLFLLLLLLLLLLLLLLLLLFLLLLLALNNDNNNDNEENNNNNNNNNNDNNNENDEDNDENNEDEEDDNDEENNDDNNNNNNNNNNNNNQDENNNNNNENNNNNNDNDENNDNENNNNNNNNENNNNDNNENNNNNNNNNNNNNQNNDNNNNDNNNNENDEDNNNDNENNNNNNNNNNNNNNNNNNIDNNNNNNNLMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLMMMMMMMMMMMMMMMMMLLMMALLLALLMLLLLLMMMMMMMMMMMMMMMMMMMLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLMMMMMMMMDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLNNNNNNNNNNDNDENDDDDDDNENNNNQDEDENNDNENDDQDDNNNNNNNNNNINNNNLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLMLLLLLMLLLLMLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLEDDNDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNDEDLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLL","n":["Error","Parse","Parser","ParserBuilder","Translate","UnicodeWordError","ast","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","case_insensitive","clone","clone","clone","clone_into","clone_into","clone_into","crlf","default","dot_matches_new_line","eq","equivalent","escape","escape_into","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","hir","ignore_whitespace","into","into","into","into","is_escapeable_character","is_meta_character","is_word_byte","is_word_character","line_terminator","multi_line","nest_limit","new","new","octal","parse","parse","provide","provide","swap_greed","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_is_word_character","type_id","type_id","type_id","type_id","unicode","utf8","utf8","Alnum","Alpha","Alternation","Alternation","Ascii","Ascii","Assertion","Assertion","AssertionKind","Ast","AtLeast","Bell","BinaryOp","Blank","Bounded","Bracketed","Bracketed","CRLF","CaptureIndex","CaptureLimitExceeded","CaptureName","CaptureName","CarriageReturn","CaseInsensitive","Class","Class","ClassAscii","ClassAsciiKind","ClassBracketed","ClassEscapeInvalid","ClassPerl","ClassPerlKind","ClassRangeInvalid","ClassRangeLiteral","ClassSet","ClassSetBinaryOp","ClassSetBinaryOpKind","ClassSetItem","ClassSetRange","ClassSetUnion","ClassUnclosed","ClassUnicode","ClassUnicodeKind","ClassUnicodeOpKind","Cntrl","Colon","Comment","Concat","Concat","DecimalEmpty","DecimalInvalid","Difference","Digit","Digit","Dot","DotMatchesNewLine","Empty","Empty","EndLine","EndText","Equal","Err","Error","ErrorKind","EscapeHexEmpty","EscapeHexInvalid","EscapeHexInvalidDigit","EscapeUnexpectedEof","EscapeUnrecognized","Exactly","Flag","Flag","FlagDanglingNegation","FlagDuplicate","FlagRepeatedNegation","FlagUnexpectedEof","FlagUnrecognized","Flags","Flags","FlagsItem","FlagsItemKind","FormFeed","Graph","Group","Group","GroupKind","GroupNameDuplicate","GroupNameEmpty","GroupNameInvalid","GroupNameUnexpectedEof","GroupUnclosed","GroupUnopened","HexBrace","HexFixed","HexLiteralKind","IgnoreWhitespace","Intersection","Item","LineFeed","Literal","Literal","Literal","LiteralKind","Lower","Meta","MultiLine","Named","NamedValue","Negation","NestLimitExceeded","NonCapturing","NotEqual","NotWordBoundary","Octal","OneLetter","OneOrMore","Output","Perl","Perl","Position","Print","Punct","Range","Range","Repetition","Repetition","RepetitionCountDecimalEmpty","RepetitionCountInvalid","RepetitionCountUnclosed","RepetitionKind","RepetitionMissing","RepetitionOp","RepetitionRange","SetFlags","Space","Space","Space","Span","Special","SpecialLiteralKind","StartLine","StartText","Superfluous","SwapGreed","SymmetricDifference","Tab","Unicode","Unicode","Unicode","UnicodeClassInvalid","UnicodeLong","UnicodeShort","Union","UnsupportedBackreference","UnsupportedLookAround","Upper","Verbatim","VerticalTab","Visitor","WithComments","Word","Word","WordBoundary","X","Xdigit","ZeroOrMore","ZeroOrOne","add_item","ast","ast","ast","asts","asts","auxiliary_span","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","byte","c","capture_index","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","column","comment","comments","digits","drop","drop","end","end","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","finish","flag_state","flags","flags","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_name","greedy","index","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_ast","into_ast","into_item","is_capturing","is_empty","is_empty","is_equal","is_negated","is_negation","is_one_line","is_valid","is_valid","items","items","kind","kind","kind","kind","kind","kind","kind","kind","kind","kind","kind","lhs","line","name","negated","negated","negated","negated","new","new","offset","op","parse","partial_cmp","partial_cmp","pattern","print","provide","push","rhs","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","span","splat","start","start","start","start","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","union","visit","visit_alternation_in","visit_alternation_in","visit_class_set_binary_op_in","visit_class_set_binary_op_in","visit_class_set_binary_op_post","visit_class_set_binary_op_post","visit_class_set_binary_op_pre","visit_class_set_binary_op_pre","visit_class_set_item_post","visit_class_set_item_post","visit_class_set_item_pre","visit_class_set_item_pre","visit_concat_in","visit_concat_in","visit_post","visit_post","visit_pre","visit_pre","with_end","with_start","name","op","value","original","original","original","name","starts_with_p","Parser","ParserBuilder","borrow","borrow","borrow_mut","borrow_mut","build","clone","clone","clone_into","clone_into","default","fmt","fmt","from","from","ignore_whitespace","into","into","nest_limit","new","new","octal","parse","parse_with_comments","to_owned","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","Printer","borrow","borrow_mut","fmt","from","into","new","print","try_from","try_into","type_id","Alternation","AnyByte","AnyByteExcept","AnyByteExceptCRLF","AnyByteExceptLF","AnyChar","AnyCharExcept","AnyCharExceptCRLF","AnyCharExceptLF","Bytes","Capture","Capture","CaseFoldError","Class","Class","ClassBytes","ClassBytesIter","ClassBytesRange","ClassUnicode","ClassUnicodeIter","ClassUnicodeRange","Concat","Dot","Empty","End","EndCRLF","EndLF","Err","Error","ErrorKind","Hir","HirKind","InvalidLineTerminator","InvalidUtf8","Literal","Literal","Look","Look","LookSet","LookSetIter","Output","Properties","Repetition","Repetition","Start","StartCRLF","StartLF","Unicode","UnicodeCaseUnavailable","UnicodeNotAllowed","UnicodePerlClassNotFound","UnicodePropertyNotFound","UnicodePropertyValueNotFound","Visitor","WordAscii","WordAsciiNegate","WordUnicode","WordUnicodeNegate","alternation","as_char","as_repr","bits","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capture","case_fold_simple","case_fold_simple","case_fold_simple","class","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","concat","contains","contains_anchor","contains_anchor_crlf","contains_anchor_haystack","contains_anchor_lf","contains_anchor_line","contains_word","contains_word_ascii","contains_word_unicode","default","default","default","difference","difference","dot","drop","empty","empty","empty","empty","end","end","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","explicit_captures_len","fail","finish","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_repr","full","greedy","index","insert","intersect","intersect","intersect","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_kind","is_alternation_literal","is_ascii","is_ascii","is_empty","is_empty","is_literal","is_utf8","is_utf8","iter","iter","iter","kind","kind","len","len","len","literal","literal","literal","literal","literal","look","look_set","look_set_prefix","look_set_prefix_any","look_set_suffix","look_set_suffix_any","max","maximum_len","maximum_len","maximum_len","maximum_len","memory_usage","min","minimum_len","minimum_len","minimum_len","minimum_len","name","negate","negate","negate","new","new","new","new","next","next","next","partial_cmp","partial_cmp","pattern","print","properties","provide","provide","push","push","ranges","ranges","read_repr","remove","repetition","reversed","set_insert","set_intersect","set_remove","set_subtract","set_union","singleton","span","start","start","start","start","static_explicit_captures_len","sub","sub","subs","subtract","symmetric_difference","symmetric_difference","to_byte_class","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_unicode_class","translate","try_case_fold_simple","try_case_fold_simple","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","union","union","union","union","visit","visit_alternation_in","visit_alternation_in","visit_concat_in","visit_concat_in","visit_post","visit_post","visit_pre","visit_pre","with","write_repr","ExtractKind","Extractor","Literal","Prefix","Seq","Suffix","as_bytes","as_ref","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cmp","cross_forward","cross_reverse","dedup","default","default","empty","eq","eq","equivalent","equivalent","exact","extend","extract","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_iter","inexact","infinite","into","into","into","into","into_bytes","is_empty","is_empty","is_exact","is_exact","is_finite","is_inexact","is_prefix","is_suffix","keep_first_bytes","keep_first_bytes","keep_last_bytes","keep_last_bytes","kind","len","len","limit_class","limit_literal_len","limit_repeat","limit_total","literals","longest_common_prefix","longest_common_suffix","make_inexact","make_inexact","make_infinite","max_cross_len","max_literal_len","max_union_len","min_literal_len","minimize_by_preference","new","new","optimize_for_prefix_by_preference","optimize_for_suffix_by_preference","partial_cmp","push","rank","reverse","reverse_literals","singleton","sort","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","union","union_into_empty","Printer","borrow","borrow_mut","fmt","from","into","new","print","try_from","try_into","type_id","Translator","TranslatorBuilder","borrow","borrow","borrow_mut","borrow_mut","build","case_insensitive","clone","clone","clone_into","clone_into","crlf","default","dot_matches_new_line","fmt","fmt","from","from","into","into","line_terminator","multi_line","new","new","swap_greed","to_owned","to_owned","translate","try_from","try_from","try_into","try_into","type_id","type_id","unicode","utf8","Four","One","Three","Two","Utf8Range","Utf8Sequence","Utf8Sequences","as_slice","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","cmp","cmp","end","eq","eq","equivalent","equivalent","fmt","fmt","fmt","from","from","from","into","into","into","into_iter","into_iter","len","matches","matches","new","next","partial_cmp","partial_cmp","reverse","start","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"regex_syntax"],[84,"regex_syntax::ast"],[925,"regex_syntax::ast::ClassUnicodeKind"],[928,"regex_syntax::ast::ErrorKind"],[931,"regex_syntax::ast::GroupKind"],[933,"regex_syntax::ast::parse"],[966,"regex_syntax::ast::print"],[977,"regex_syntax::hir"],[1437,"regex_syntax::hir::literal"],[1552,"regex_syntax::hir::print"],[1563,"regex_syntax::hir::translate"],[1600,"regex_syntax::utf8"]],"d":["This error type encompasses any error that can be returned …","An error that occurred while translating concrete syntax …","A convenience parser for regular expressions.","A builder for a regular expression parser.","An error that occurred while translating abstract syntax …","An error that occurs when the Unicode-aware \\\\w class is …","Defines an abstract syntax for regular expressions.","","","","","","","","","Build a parser from this configuration with the given …","Enable or disable the case insensitive flag by default.","","","","","","","Enable or disable the CRLF mode flag by default.","","Enable or disable the “dot matches any character” flag …","","","Escapes all regular expression meta characters in text.","Escapes all meta characters in text and writes the result …","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Defines a high-level intermediate (HIR) representation for …","Enable verbose mode in the regular expression.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns true if the given character can be escaped in a …","Returns true if the given character has significance in a …","Returns true if and only if the given character is an …","Returns true if and only if the given character is a …","Sets the line terminator for use with (?u-s:.) and (?-us:.)…","Enable or disable the multi-line matching flag by default.","Set the nesting limit for this parser.","Create a new parser builder with a default configuration.","Create a new parser with a default configuration.","Whether to support octal syntax or not.","A convenience routine for parsing a regex using default …","Parse the regular expression into a high level intermediate","","","Enable or disable the “swap greed” flag by default.","","","","","","","","","","","","","","Returns true if and only if the given character is a …","","","","","Enable or disable the Unicode flag (u) by default.","Converts ranges of Unicode scalar values to equivalent …","When disabled, translation will permit the construction of …","[0-9A-Za-z]","[A-Za-z]","An alternation of regular expressions.","An alternation of regular expressions.","[\\\\x00-\\\\x7F]","An ASCII character class, e.g., [:alnum:] or [:punct:].","A single zero-width assertion.","A single zero-width assertion.","An assertion kind.","An abstract syntax tree for a single regular expression.","{m,}","Bell, spelled \\\\a (\\\\x07).","A single binary operation (i.e., &&, – or ~~).","[ \\\\t]","{m,n}","A bracketed character class set, which may contain zero or …","A bracketed character class set, which may contain zero or …","R","(a)","The capturing group limit was exceeded.","A capture name.","(?<name>a) or (?P<name>a)","Carriage return, spelled \\\\r (\\\\x0D).","i","A single character class expression.","A single character class. This includes all forms of …","An ASCII character class.","The available ASCII character classes.","A bracketed character class, e.g., [a-z0-9].","An invalid escape sequence was found in a character class …","A Perl character class.","The available Perl character classes.","An invalid character class range was found. An invalid …","An invalid range boundary was found in a character class. …","A character class set.","A Unicode character class set operation.","The type of a Unicode character class set operation.","A single component of a character class set.","A single character class range in a set.","A union of items inside a character class set.","An opening [ was found with no corresponding closing ].","A Unicode character class.","The available forms of Unicode character classes.","The type of op used in a Unicode character class.","[\\\\x00-\\\\x1F\\\\x7F]","A property set to a specific value using a colon, e.g., …","A comment from a regular expression with an associated …","A concatenation of regular expressions.","A concatenation of regular expressions.","Note that this error variant is no longer used. Namely, a …","An invalid decimal number was given where one was expected.","The difference of two sets, e.g., \\\\pN--[0-9].","Decimal numbers.","[0-9]","The “any character” class.","s","An empty regex that matches everything.","An empty item.","$","\\\\z","A property set to a specific value, e.g., \\\\p{scx=Katakana}.","An error that visiting an AST might return.","An error that occurred while parsing a regular expression …","The type of an error that occurred while building an AST.","A bracketed hex literal was empty.","A bracketed hex literal did not correspond to a Unicode …","An invalid hexadecimal digit was found.","EOF was found before an escape sequence was completed.","An unrecognized escape sequence.","{m}","A single flag.","A single flag in a group.","A dangling negation was used when setting flags, e.g., i-.","A flag was used twice, e.g., i-i.","The negation operator was used twice, e.g., -i-s.","Expected a flag but got EOF, e.g., (?.","Unrecognized flag, e.g., a.","A group of flags.","A set of flags, e.g., (?is).","A single item in a group of flags.","The kind of an item in a group of flags.","Form feed, spelled \\\\f (\\\\x0C).","[!-~]","A grouped regular expression.","A grouped regular expression.","The kind of a group.","A duplicate capture name was found.","A capture group name is empty, e.g., (?P<>abc).","An invalid character was seen for a capture group name. …","A closing > could not be found for a capture group name.","An unclosed group, e.g., (ab.","An unopened group, e.g., ab).","The literal is written as a hex code with a bracketed …","The literal is written as a hex code with a fixed number …","The type of a Unicode hex literal.","x","The intersection of two sets, e.g., \\\\pN&&[a-z].","An item, which can be a single literal, range, nested …","Line feed, spelled \\\\n (\\\\x0A).","A single literal expression.","A single character literal, which includes escape …","A single literal.","The kind of a single literal expression.","[a-z]","The literal is written as an escape because it is …","m","A binary property, general category or script. The string …","A property name and an associated value.","A negation operator applied to all subsequent flags in the …","The nest limit was exceeded. The limit stored here is the …","(?:a) and (?i:a)","A property that isn’t a particular value, e.g., …","\\\\B","The literal is written as an octal escape, e.g., \\\\141.","A one letter abbreviated class, e.g., \\\\pN.","+","The result of visiting an AST.","A perl character class, e.g., \\\\d or \\\\W.","A perl character class, e.g., \\\\d or \\\\W.","A single position in a regular expression.","[ -~]","[!-/:-@\\\\[-{-~]`","A range between two literals.","{m,n}","A repetition operation applied to a regular expression.","A repetition operator applied to an arbitrary regular …","An opening { was not followed by a valid decimal value. …","The range provided in a counted repetition operator is …","An opening { was found with no corresponding closing }.","The kind of a repetition operator.","A repetition operator was applied to a missing …","The repetition operator itself.","A range repetition operator.","A group of flags that is not applied to a particular …","Space, spelled \\\\ (\\\\x20). Note that this can only appear …","Whitespace.","[\\\\t\\\\n\\\\v\\\\f\\\\r ]","Span represents the position information of a single AST …","The literal is written as a specially recognized escape, …","The type of a special literal.","^","\\\\A","The literal is written as an escape despite the fact that …","U","The symmetric difference of two sets. The symmetric …","Tab, spelled \\\\t (\\\\x09).","A Unicode character class, e.g., \\\\pL or \\\\p{Greek}.","A Unicode character class, e.g., \\\\pL or \\\\p{Greek}.","u","The Unicode class is not valid. This typically occurs when …","A \\\\U prefix. When used without brackets, this form is …","A \\\\u prefix. When used without brackets, this form is …","A union of items.","When octal support is disabled, this error is produced …","When syntax similar to PCRE’s look-around is used, this …","[A-Z]","The literal is written verbatim, e.g., a or .","Vertical tab, spelled \\\\v (\\\\x0B).","A trait for visiting an abstract syntax tree (AST) in …","An abstract syntax tree for a singular expression along …","Word characters.","[0-9A-Za-z_]","\\\\b","A \\\\x prefix. When used without brackets, this form is …","[0-9A-Fa-f]","*","?","Add the given item to this sequence of flags.","The actual ast.","The regular expression under repetition.","The regular expression in this group.","The alternate regular expressions.","The concatenation regular expressions.","Return an auxiliary span. This span exists only for some …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","If this literal was written as a \\\\x hex escape, then this …","The Unicode scalar value corresponding to this literal.","Returns the capture index of this group, if this is a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The approximate column number, starting at 1.","The comment text, starting with the first character …","All comments found in the original regular expression.","The number of digits that must be used with this literal …","","","The end byte offset.","The end of this range.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","All implementors of Visitor must provide a finish method, …","Returns the state of the given flag in this set.","If this group is non-capturing, then this returns the …","The actual sequence of flags.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Return the corresponding ClassAsciiKind variant for the …","Whether this operation was applied greedily or not.","The capture index.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return this alternation as an AST.","Return this concatenation as an AST.","Return this union as a character class set item.","Returns true if and only if this group is capturing.","Returns true if and only if this span is empty. That is, …","Return true if and only if this Ast is empty.","Whether the op is an equality op or not.","Returns true if this class has been negated.","Returns true if and only if this item is a negation …","Returns true if and only if this span occurs on a single …","Returns true if and only if this character class range is …","Returns true if and only if this repetition range is valid.","The sequence of items that make up this union.","A sequence of flag items. Each item is either a flag or a …","Return the type of this error.","The kind of this literal.","The kind of Perl class.","The kind of ASCII class.","The kind of Unicode class.","The type of this set. A set is either a normal union of …","The type of this set operation.","The assertion kind, e.g., \\\\b or ^.","The type of operation.","The kind of this group.","The kind of this item.","The left hand side of the operation.","The line number, starting at 1.","The capture name.","Whether the class is negated or not. e.g., \\\\d is not …","Whether the class is negated or not. e.g., [[:alpha:]] is …","Whether this class is negated or not.","Whether this class is negated or not. e.g., [a] is not …","Create a new span with the given positions.","Create a new position with the given information.","The absolute offset of this position, starting at 0 from …","The actual operation.","This module provides a regular expression parser.","","","The original pattern string in which this error occurred.","This module provides a regular expression printer for Ast.","","Push a new item in this union.","The right hand side of the operation.","Return the span at which this error occurred.","Return the span of this abstract syntax tree.","Return the span of this character class.","Return the span of this character class set.","Return the span of this character class set item.","The span of this comment, including the beginning # and …","The span of this alternation.","The span of this concatenation.","The span of this literal.","The span of this class.","The span of this class.","The span of this class.","The span of this class.","The span of this range.","The span of the items in this operation. e.g., the a-z0-9 …","The span of this operation. e.g., the a-z--[h-p] in …","The span of this assertion.","The span of this operation.","The span of this operator. This includes things like +, *? …","The span of this group.","The span of this capture name.","The span of these flags, including the grouping …","The span of this group of flags.","The span of this item.","Create a new span using the given position as the start …","This method is called before beginning traversal of the …","This method is called before beginning traversal of the …","The start byte offset.","The start of this range.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Build a set from a union.","Executes an implementation of Visitor in constant stack …","This method is called between child nodes of an Alternation…","This method is called between child nodes of an Alternation…","This method is called between the left hand and right hand …","This method is called between the left hand and right hand …","This method is called on every ClassSetBinaryOp after …","This method is called on every ClassSetBinaryOp after …","This method is called on every ClassSetBinaryOp before …","This method is called on every ClassSetBinaryOp before …","This method is called on every ClassSetItem after …","This method is called on every ClassSetItem after …","This method is called on every ClassSetItem before …","This method is called on every ClassSetItem before …","This method is called between child nodes of a …","This method is called between child nodes of a …","This method is called on an Ast after descending all of …","This method is called on an Ast after descending all of …","This method is called on an Ast before descending into …","This method is called on an Ast before descending into …","Create a new span by replacing the ending the position …","Create a new span by replacing the starting the position …","The property name (which may be empty).","The type of Unicode op used to associate name with value.","The property value (which may be empty).","The position of the original flag. The error position …","The position of the original negation operator. The error …","The position of the initial occurrence of the capture …","The capture name.","True if the ?P< syntax is used and false if the ?< syntax …","A regular expression parser.","A builder for a regular expression parser.","","","","","Build a parser from this configuration with the given …","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Enable verbose mode in the regular expression.","Calls U::from(self).","Calls U::from(self).","Set the nesting limit for this parser.","Create a new parser builder with a default configuration.","Create a new parser with a default configuration.","Whether to support octal syntax or not.","Parse the regular expression into an abstract syntax tree.","Parse the regular expression and return an abstract syntax …","","","","","","","","","A printer for a regular expression abstract syntax tree.","","","","Returns the argument unchanged.","Calls U::from(self).","Create a new printer.","Print the given Ast to the given writer. The writer must …","","","","An alternation of expressions.","Matches any byte value.","Matches any byte value except for the u8 given.","Matches any byte value except for \\\\r and \\\\n.","Matches any byte value except for \\\\n.","Matches the UTF-8 encoding of any Unicode scalar value.","Matches the UTF-8 encoding of any Unicode scalar value …","Matches the UTF-8 encoding of any Unicode scalar value …","Matches the UTF-8 encoding of any Unicode scalar value …","A set of characters represented by arbitrary bytes (one …","The high-level intermediate representation for a capturing …","A capturing group, which contains a sub-expression.","An error that occurs when Unicode-aware simple case …","The high-level intermediate representation of a character …","A single character class that matches any of the …","A set of characters represented by arbitrary bytes (where …","An iterator over all ranges in a byte character class.","A single range of characters represented by arbitrary …","A set of characters represented by Unicode scalar values.","An iterator over all ranges in a Unicode character class.","A single range of characters represented by Unicode scalar …","A concatenation of expressions.","A type describing the different flavors of ..","The empty regular expression, which matches everything, …","Match the end of text. Specifically, this matches at the …","Match the end of a line or the end of text. Specifically, …","Match the end of a line or the end of text. Specifically, …","An error that visiting an HIR might return.","An error that can occur while translating an Ast to a Hir.","The type of an error that occurred while building an Hir.","A high-level intermediate representation (HIR) for a …","The underlying kind of an arbitrary Hir expression.","This error occurs when one uses a non-ASCII byte for a …","This error occurs when translating a pattern that could …","The high-level intermediate representation of a literal.","A literalstring that matches exactly these bytes.","The high-level intermediate representation for a …","A look-around assertion. A look-around match always has …","A set of look-around assertions.","An iterator over all look-around assertions in a LookSet.","The result of visiting an HIR.","A type that collects various properties of an HIR value.","The high-level intermediate representation of a repetition …","A repetition operation applied to a sub-expression.","Match the beginning of text. Specifically, this matches at …","Match the beginning of a line or the beginning of text. …","Match the beginning of a line or the beginning of text. …","A set of characters represented by Unicode scalar values.","This occurs when the Unicode simple case mapping tables …","This error occurs when a Unicode feature is used when …","This occurs when a Unicode-aware Perl character class (\\\\w, …","This occurs when an unrecognized Unicode property name …","This occurs when an unrecognized Unicode property value …","A trait for visiting the high-level IR (HIR) in depth …","Match an ASCII-only word boundary. That is, this matches a …","Match an ASCII-only negation of a word boundary.","Match a Unicode-aware word boundary. That is, this matches …","Match a Unicode-aware negation of a word boundary.","Returns the alternation of the given expressions.","Returns a convenient single codepoint representation of …","Return the underlying representation of this look-around …","The underlying representation this set is exposed to make …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Creates a capture HIR expression.","Apply Unicode simple case folding to this character class, …","Expand this character class such that it contains all case …","Expand this character class such that it contains all case …","Creates a class HIR expression. The class may either be …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the concatenation of the given expressions.","Returns true if and only if the given look-around …","Returns true if and only if this set contains any anchor …","Returns true if and only if this set contains any “…","Returns true if and only if this set contains any “…","Returns true if and only if this set contains any “…","Returns true if and only if this set contains any “…","Returns true if and only if this set contains any word …","Returns true if and only if this set contains any ASCII …","Returns true if and only if this set contains any Unicode …","","","","Subtract the given character class from this character …","Subtract the given byte class from this byte class, in …","Returns an HIR expression for ..","","Returns an empty HIR expression.","Create a new class with no ranges.","Create a new class with no ranges.","Create an empty set of look-around assertions.","Return the end of this range.","Return the end of this range.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the total number of explicit capturing groups in …","Returns an HIR expression that can never match anything. …","All implementors of Visitor must provide a finish method, …","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Given the underlying representation of a Look value, …","Create a full set of look-around assertions.","Whether this repetition operator is greedy or not. A …","The capture index of the capture.","Return a new set that is equivalent to the original, but …","Intersect this character class with the given character …","Intersect this byte class with the given byte class, in …","Returns a new set that is the intersection of this and the …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Consumes ownership of this HIR expression and returns its …","Return true if and only if this HIR is either a simple …","Returns true if and only if this character class will …","Returns true if and only if this character class will …","Returns true if and only if this character class is empty. …","Returns true if and only if this set is empty.","Return true if and only if this HIR is a simple literal. …","Returns true if and only if this character class will only …","Return true if and only if the corresponding HIR will …","Return an iterator over all ranges in this class.","Return an iterator over all ranges in this class.","Returns an iterator over all of the look-around assertions …","Return the type of this error.","Returns a reference to the underlying HIR kind.","Returns the number of codepoints in this range.","Returns the number of bytes in this range.","Returns the total number of look-around assertions in this …","Provides literal extraction from Hir expressions.","Creates a literal HIR expression.","If this class consists of exactly one element (whether a …","If this class consists of exactly one codepoint, then …","If this class consists of exactly one byte, then return it …","Creates a look-around assertion HIR expression.","Returns a set of all look-around assertions that appear at …","Returns a set of all look-around assertions that appear as …","Returns a set of all look-around assertions that appear as …","Returns a set of all look-around assertions that appear as …","Returns a set of all look-around assertions that appear as …","The maximum range of the repetition.","Returns the length, in bytes, of the longest string …","Returns the length, in bytes, of the longest string …","Returns the length, in bytes, of the longest string …","Returns the length (in bytes) of the longest string …","Returns the total amount of heap memory usage, in bytes, …","The minimum range of the repetition.","Returns the length, in bytes, of the smallest string …","Returns the length, in bytes, of the smallest string …","Returns the length, in bytes, of the smallest string …","Returns the length (in bytes) of the smallest string …","The name of the capture, if it exists.","Negate this character class in place.","Negate this character class.","Negate this byte class.","Create a new class from a sequence of ranges.","Create a new Unicode scalar value range for a character …","Create a new class from a sequence of ranges.","Create a new byte range for a character class.","","","","","","The original pattern string in which this error occurred.","This module provides a regular expression printer for Hir.","Returns the properties computed for this Hir.","","","Add a new range to this set.","Add a new range to this set.","Return the underlying ranges as a slice.","Return the underlying ranges as a slice.","Return a LookSet from the slice given as a native endian …","Return a new set that is equivalent to the original, but …","Creates a repetition HIR expression.","Flip the look-around assertion to its equivalent for …","Updates this set in place with the result of inserting the …","Updates this set in place with the result of intersecting …","Updates this set in place with the result of removing the …","Updates this set in place with the result of subtracting …","Updates this set in place with the result of unioning it …","Create a look-around set containing the look-around …","Return the span at which this error occurred.","This method is called before beginning traversal of the …","This method is called before beginning traversal of the …","Return the start of this range.","Return the start of this range.","Returns the total number of explicit capturing groups that …","The expression inside the capturing group, which may be …","The expression being repeated.","Returns a slice of this kind’s sub-expressions, if any.","Returns a new set that is the result of subtracting the …","Compute the symmetric difference of the given character …","Compute the symmetric difference of the given byte …","If this class consists of only ASCII ranges, then return …","","","","","","","","","","","","","","","","","","","","","","If this class consists of only ASCII ranges, then return …","Defines a translator that converts an Ast to an Hir.","Apply Unicode simple case folding to this character class, …","Expand this character class such that it contains all case …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Union this character class with the given character class, …","Union this byte class with the given byte class, in place.","Returns a new set of properties that corresponds to the …","Returns a new set that is the union of this and the one …","Executes an implementation of Visitor in constant stack …","This method is called between child nodes of an …","This method is called between child nodes of an …","This method is called between child nodes of a …","This method is called between child nodes of a …","This method is called on an Hir after descending all of …","This method is called on an Hir after descending all of …","This method is called on an Hir before descending into …","This method is called on an Hir before descending into …","Returns a new repetition with the same min, max and greedy …","Write a LookSet as a native endian 16-bit integer to the …","The kind of literals to extract from an Hir expression.","Extracts prefix or suffix literal sequences from Hir …","A single literal extracted from an Hir expression.","Extracts only prefix literals from a regex.","A sequence of literals.","Extracts only suffix literals from a regex.","Returns the bytes in this literal.","","","","","","","","","","","","","","","","","","","Modify this sequence to contain the cross product between …","Modify this sequence to contain the cross product between …","Deduplicate adjacent equivalent literals in this sequence.","","","Returns an empty sequence.","","","","","Returns a new exact literal containing the bytes given.","Extend this literal with the literal given.","Execute the extractor and return a sequence of literals.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns a new inexact literal containing the bytes given.","Returns a sequence of literals without a finite size and …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Yields ownership of the bytes inside this literal.","Returns true if and only if this sequence is finite and …","Returns true if and only if this literal has zero bytes.","Returns true if and only if all literals in this sequence …","Returns true if and only if this literal is exact.","Returns true if this sequence is finite.","Returns true if and only if all literals in this sequence …","Returns true if this kind is the Prefix variant.","Returns true if this kind is the Suffix variant.","Trims all literals in this seq such that only the first len…","Trims this literal such that only the first len bytes …","Trims all literals in this seq such that only the last len …","Trims this literal such that only the last len bytes …","Set the kind of literal sequence to extract from an Hir …","Returns the number of literals in this sequence if the …","Returns the length of this literal in bytes.","Configure a limit on the length of the sequence that is …","Configure a limit on the maximum length of any literal in …","Configure a limit on the total number of repetitions that …","Configure a limit on the total number of literals that …","If this is a finite sequence, return its members as a …","Returns the longest common prefix from this seq.","Returns the longest common suffix from this seq.","Make all of the literals in this sequence inexact.","Marks this literal as inexact.","Converts this sequence to an infinite sequence.","Return the maximum length of the sequence that would …","Returns the length of the longest literal in this sequence.","Return the maximum length of the sequence that would …","Returns the length of the shortest literal in this …","Shrinks this seq to its minimal size while respecting the …","Create a new extractor with a default configuration.","Returns a sequence of exact literals from the given byte …","Optimizes this seq while treating its literals as prefixes …","Optimizes this seq while treating its literals as suffixes …","","Push a literal to the end of this sequence.","Returns the “rank” of the given byte.","Reverse the bytes in this literal.","Reverses all of the literals in this sequence.","Returns a sequence containing a single literal.","Sorts this sequence of literals lexicographically.","","","","","","","","","","","","","","","","","Unions the other sequence into this one.","Unions the other sequence into this one by splice the other","A printer for a regular expression’s high-level …","","","","Returns the argument unchanged.","Calls U::from(self).","Create a new printer.","Print the given Ast to the given writer. The writer must …","","","","A translator maps abstract syntax to a high level …","A builder for constructing an AST->HIR translator.","","","","","Build a translator using the current configuration.","Enable or disable the case insensitive flag (i) by default.","","","","","Enable or disable the CRLF mode flag (R) by default.","","Enable or disable the “dot matches any character” flag …","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Sets the line terminator for use with (?u-s:.) and (?-us:.)…","Enable or disable the multi-line matching flag (m) by …","Create a new translator builder with a default c …","Create a new translator using the default configuration.","Enable or disable the “swap greed” flag (U) by default.","","","Translate the given abstract syntax tree (AST) into a high …","","","","","","","Enable or disable the Unicode flag (u) by default.","When disabled, translation will permit the construction of …","Four successive byte ranges.","One byte range.","Three successive byte ranges.","Two successive byte ranges.","A single inclusive range of UTF-8 bytes.","Utf8Sequence represents a sequence of byte ranges.","An iterator over ranges of matching UTF-8 byte sequences.","Returns the underlying sequence of byte ranges as a slice.","","","","","","","","","","","","","End of byte range (inclusive).","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Returns the number of byte ranges in this sequence.","Returns true if and only if a prefix of bytes matches this …","Returns true if and only if the given byte is in this …","Create a new iterator over UTF-8 byte ranges for the …","","","","Reverses the ranges in this sequence.","Start of byte range (inclusive).","","","","","","","","","","",""],"i":[0,4,0,0,4,0,0,4,1,2,9,4,1,2,9,1,1,4,1,2,4,1,2,1,1,1,4,4,0,0,4,4,1,2,9,9,4,4,4,1,2,9,0,1,4,1,2,9,0,0,0,0,1,1,1,1,2,1,0,2,4,9,1,4,1,2,4,9,4,1,2,9,4,1,2,9,0,4,1,2,9,1,0,1,40,40,0,30,40,46,0,30,0,0,56,34,45,40,56,36,46,61,57,26,0,57,34,61,0,30,0,0,0,26,0,0,26,26,0,0,0,0,0,0,26,0,0,0,40,43,0,0,30,26,26,50,38,40,30,61,30,46,52,52,43,63,0,0,26,26,26,26,26,56,0,60,26,26,26,26,26,0,30,0,0,34,40,0,30,0,26,26,26,26,26,26,33,33,0,61,50,45,34,0,30,46,0,40,33,61,42,42,60,26,57,43,52,33,42,55,63,36,46,0,40,40,46,55,0,30,26,26,26,0,26,0,0,0,34,38,40,0,33,0,52,52,33,61,50,34,36,46,61,26,35,35,46,26,26,40,33,34,0,0,38,40,52,35,40,55,55,19,28,53,25,31,32,11,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,24,24,25,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,23,27,27,29,28,35,30,45,23,47,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,63,19,25,59,11,11,26,26,23,27,28,29,30,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,40,53,58,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,31,32,48,25,23,30,43,41,60,23,47,56,48,19,11,24,37,39,41,44,49,51,54,25,20,49,27,58,37,39,41,44,23,27,27,53,0,23,27,11,0,11,48,49,11,30,36,45,46,29,31,32,24,37,39,41,44,47,48,49,51,53,54,25,58,59,19,20,23,63,63,23,47,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,11,26,30,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,11,26,23,27,28,29,30,31,32,24,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,25,57,58,59,19,20,60,61,45,0,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,23,23,103,103,103,104,105,106,107,107,0,0,64,65,64,65,64,64,65,64,65,64,64,65,64,65,64,64,65,64,64,65,64,65,65,64,65,64,65,64,65,64,65,0,66,66,66,66,66,66,66,66,66,66,76,81,81,81,81,81,81,81,81,72,0,76,0,0,76,0,0,0,0,0,0,76,0,76,69,69,69,92,0,0,0,0,75,75,0,76,0,76,0,0,92,0,0,76,69,69,69,72,75,75,75,75,75,0,69,69,69,69,15,69,69,83,10,75,15,76,77,72,73,85,78,74,86,79,69,71,80,81,82,83,84,87,10,75,15,76,77,72,73,85,78,74,86,79,69,71,80,81,82,83,84,87,15,72,73,74,15,10,75,15,76,77,72,73,78,74,79,69,71,80,81,82,83,84,10,75,15,76,77,72,73,78,74,79,69,71,80,81,82,83,84,78,79,15,83,83,83,83,83,83,83,83,83,78,79,83,73,74,15,15,15,73,74,83,78,79,10,75,15,76,77,72,73,78,74,79,69,71,80,81,82,83,10,75,15,76,77,72,73,78,74,79,69,71,80,81,82,83,82,15,92,10,10,75,75,15,15,76,77,72,73,85,78,74,86,79,69,71,80,81,82,83,84,87,87,10,75,15,76,77,72,73,85,78,74,86,79,69,71,80,81,82,83,84,87,69,83,80,71,83,73,74,83,10,75,15,76,77,72,73,85,78,74,86,79,69,71,80,81,82,83,84,87,85,86,84,15,82,73,74,72,83,82,72,82,73,74,83,10,15,78,79,83,0,15,72,73,74,15,82,82,82,82,82,80,72,73,74,82,82,80,72,73,74,82,71,72,73,74,73,78,74,79,85,86,84,78,79,10,0,15,10,87,73,74,73,74,83,83,15,69,83,83,83,83,83,83,10,92,92,78,79,82,71,80,76,83,73,74,73,10,75,15,76,77,72,73,78,74,79,69,71,80,81,82,83,84,10,75,15,87,74,0,72,73,10,75,15,76,77,72,73,85,78,74,86,79,69,71,80,81,82,83,84,87,10,75,15,76,77,72,73,85,78,74,86,79,69,71,80,81,82,83,84,87,10,75,15,76,77,72,73,85,78,74,86,79,69,71,80,81,82,83,84,87,73,74,82,83,0,92,92,92,92,92,92,92,92,80,83,0,0,0,95,0,95,93,93,94,95,96,93,94,95,96,93,94,95,96,93,94,95,96,93,93,96,96,96,94,95,96,96,93,96,93,93,93,94,94,95,96,93,94,95,96,93,93,93,96,93,96,94,95,96,93,93,96,93,96,93,96,96,95,95,96,93,96,93,94,96,93,94,94,94,94,96,96,96,96,93,96,96,96,96,96,96,94,96,96,96,93,96,0,93,96,96,96,94,95,96,93,94,95,96,93,94,95,96,93,94,95,96,93,96,96,0,97,97,97,97,97,97,97,97,97,97,0,0,98,99,98,99,98,98,98,99,98,99,98,98,98,98,99,98,99,98,99,98,98,98,99,98,98,99,99,98,99,98,99,98,99,98,98,100,100,100,100,0,0,0,100,100,101,102,100,101,102,100,101,100,101,100,101,101,100,101,100,101,100,101,102,100,101,102,100,101,102,100,102,100,100,101,102,102,100,101,100,101,100,101,100,101,102,100,101,102,100,101,102],"f":[0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,2],[[1,3],1],[4,4],[1,1],[2,2],[[]],[[]],[[]],[[1,3],1],[[],1],[[1,3],1],[[4,4],3],[[],3],[5,6],[[5,6]],[[4,7],8],[[4,7],8],[[1,7],8],[[2,7],8],[[9,7],8],[[9,7],8],[10,4],[[]],[11,4],[[]],[[]],[[]],0,[[1,3],1],[[]],[[]],[[]],[[]],[12,3],[12,3],[13,3],[12,3],[[1,13],1],[[1,3],1],[[1,14],1],[[],1],[[],2],[[1,3],1],[5,[[16,[15,4]]]],[[2,5],[[16,[15,4]]]],[17],[17],[[1,3],1],[[]],[[]],[[]],[[],6],[[],6],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[12,[[16,[3,9]]]],[[],18],[[],18],[[],18],[[],18],[[1,3],1],0,[[1,3],1],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[19,20],[[22,[21]]]],0,0,0,0,0,[11,[[22,[23]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[24,[[22,[13]]]],0,[25,[[22,[14]]]],[11,11],[26,26],[23,23],[27,27],[28,28],[29,29],[30,30],[31,31],[32,32],[24,24],[33,33],[34,34],[35,35],[36,36],[37,37],[38,38],[39,39],[40,40],[41,41],[42,42],[43,43],[44,44],[45,45],[46,46],[47,47],[48,48],[49,49],[50,50],[51,51],[52,52],[53,53],[54,54],[55,55],[56,56],[25,25],[57,57],[58,58],[59,59],[19,19],[20,20],[60,60],[61,61],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[23,23],62],[[27,27],62],0,0,0,[35,14],[30],[45],0,0,[[11,11],3],[[26,26],3],[[23,23],3],[[27,27],3],[[28,28],3],[[29,29],3],[[30,30],3],[[31,31],3],[[32,32],3],[[24,24],3],[[33,33],3],[[34,34],3],[[35,35],3],[[36,36],3],[[37,37],3],[[38,38],3],[[39,39],3],[[40,40],3],[[41,41],3],[[42,42],3],[[43,43],3],[[44,44],3],[[45,45],3],[[46,46],3],[[47,47],3],[[48,48],3],[[49,49],3],[[50,50],3],[[51,51],3],[[52,52],3],[[53,53],3],[[54,54],3],[[55,55],3],[[56,56],3],[[25,25],3],[[57,57],3],[[58,58],3],[[59,59],3],[[19,19],3],[[20,20],3],[[60,60],3],[[61,61],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],16],[[19,61],[[22,[3]]]],[25,[[22,[19]]]],0,[[11,7],8],[[11,7],8],[[26,7],8],[[26,7],8],[[23,7],8],[[27,7],8],[[28,7],8],[[29,7],8],[[30,7],8],[[30,7],8],[[31,7],8],[[32,7],8],[[24,7],8],[[33,7],8],[[34,7],8],[[35,7],8],[[36,7],8],[[37,7],8],[[38,7],8],[[39,7],8],[[40,7],8],[[41,7],8],[[42,7],8],[[43,7],8],[[44,7],8],[[45,7],8],[[46,7],8],[[47,7],8],[[48,7],8],[[49,7],8],[[50,7],8],[[51,7],8],[[52,7],8],[[53,7],8],[[54,7],8],[[55,7],8],[[56,7],8],[[25,7],8],[[57,7],8],[[58,7],8],[[59,7],8],[[19,7],8],[[20,7],8],[[60,7],8],[[61,7],8],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[5,[[22,[40]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[31,30],[32,30],[48,46],[25,3],[23,3],[30,3],[43,3],[41,3],[60,3],[23,3],[47,3],[56,3],0,0,[11,26],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[27,27],23],[[21,21,21],27],0,0,0,[[23,23],[[22,[62]]]],[[27,27],[[22,[62]]]],[11,5],0,[17],[[48,46]],0,[11,23],[30,23],[36,23],[45,23],[46,23],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[27,23],[[]],[[]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[48,45],[[30,63],16],[[],16],[[],16],[49,16],[49,16],[49,16],[49,16],[49,16],[49,16],[46,16],[46,16],[46,16],[46,16],[[],16],[[],16],[30,16],[30,16],[30,16],[30,16],[[23,27],23],[[23,27],23],0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[64,65],[64,64],[65,65],[[]],[[]],[[],64],[[64,7],8],[[65,7],8],[[]],[[]],[[64,3],64],[[]],[[]],[[64,14],64],[[],64],[[],65],[[64,3],64],[[65,5],[[16,[30,11]]]],[[65,5],[[16,[28,11]]]],[[]],[[]],[[],16],[[],16],[[],16],[[],16],[[],18],[[],18],0,[[]],[[]],[[66,7],8],[[]],[[]],[[],66],[[66,30,67],8],[[],16],[[],16],[[],18],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[68,[15]]],15],[69,12],[69,70],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[71,15],[72],[73],[74],[72,15],[10,10],[75,75],[15,15],[76,76],[77,77],[72,72],[73,73],[78,78],[74,74],[79,79],[69,69],[71,71],[80,80],[81,81],[82,82],[83,83],[84,84],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[78,78],62],[[79,79],62],[[[68,[15]]],15],[[83,69],3],[83,3],[83,3],[83,3],[83,3],[83,3],[83,3],[83,3],[83,3],[[],78],[[],79],[[],83],[[73,73]],[[74,74]],[81,15],[15],[[],15],[[],73],[[],74],[[],83],[78,12],[79,13],[[10,10],3],[[75,75],3],[[15,15],3],[[76,76],3],[[77,77],3],[[72,72],3],[[73,73],3],[[78,78],3],[[74,74],3],[[79,79],3],[[69,69],3],[[71,71],3],[[80,80],3],[[81,81],3],[[82,82],3],[[83,83],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[82,21],[[],15],[[],16],[[10,7],8],[[10,7],8],[[75,7],8],[[75,7],8],[[15,7],8],[[15,7],8],[[76,7],8],[[77,7],8],[[72,7],8],[[73,7],8],[[85,7],8],[[78,7],8],[[74,7],8],[[86,7],8],[[79,7],8],[[69,7],8],[[71,7],8],[[80,7],8],[[81,7],8],[[82,7],8],[[83,7],8],[[84,7],8],[[87,7],8],[[87,7],8],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[70,[[22,[69]]]],[[],83],0,0,[[83,69],83],[[73,73]],[[74,74]],[[83,83],83],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[15,76],[82,3],[73,3],[74,3],[72,3],[83,3],[82,3],[72,3],[82,3],[73,85],[74,86],[83,84],[10,75],[15,76],[78,21],[79,21],[83,21],0,[[[90,[[89,[[88,[13]]]]]]],15],[72,[[22,[[68,[13]]]]]],[73,[[22,[[68,[13]]]]]],[74,[[22,[[68,[13]]]]]],[69,15],[82,83],[82,83],[82,83],[82,83],[82,83],0,[72,[[22,[21]]]],[73,[[22,[21]]]],[74,[[22,[21]]]],[82,[[22,[21]]]],[82,21],0,[72,[[22,[21]]]],[73,[[22,[21]]]],[74,[[22,[21]]]],[82,[[22,[21]]]],0,[72],[73],[74],[91,73],[[12,12],78],[91,74],[[13,13],79],[85,[[22,[78]]]],[86,[[22,[79]]]],[84,[[22,[69]]]],[[78,78],[[22,[62]]]],[[79,79],[[22,[62]]]],[10,5],0,[15,82],[17],[17],[[73,78]],[[74,79]],[73,[[88,[78]]]],[74,[[88,[79]]]],[[[88,[13]]],83],[[83,69],83],[80,15],[69,69],[[83,69]],[[83,83]],[[83,69]],[[83,83]],[[83,83]],[69,83],[10,23],[[]],[[]],[78,12],[79,13],[82,[[22,[21]]]],0,0,[76,[[88,[15]]]],[[83,83],83],[[73,73]],[[74,74]],[73,[[22,[74]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[[],6],[[],6],[[],6],[74,[[22,[73]]]],0,[72,[[16,[87]]]],[73,[[16,[87]]]],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[73,73]],[[74,74]],[91,82],[[83,83],83],[[15,92],16],[[],16],[[],16],[[],16],[[],16],[15,16],[15,16],[15,16],[15,16],[[80,15],80],[[83,[88,[13]]]],0,0,0,0,0,0,[93,[[88,[13]]]],[93,[[88,[13]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[94,94],[95,95],[96,96],[93,93],[[]],[[]],[[]],[[]],[[93,93],62],[[96,96]],[[96,96]],[96],[[],94],[[],95],[[],96],[[96,96],3],[[93,93],3],[[],3],[[],3],[[[90,[[68,[13]]]]],93],[[93,93]],[[94,15],96],[[94,7],8],[[95,7],8],[[96,7],8],[[93,7],8],[[]],[[]],[[]],[12,93],[13,93],[[]],[91,96],[[[90,[[68,[13]]]]],93],[[],96],[[]],[[]],[[]],[[]],[93,[[68,[13]]]],[96,3],[93,3],[96,3],[93,3],[96,3],[96,3],[95,3],[95,3],[[96,21]],[[93,21]],[[96,21]],[[93,21]],[[94,95],94],[96,[[22,[21]]]],[93,21],[[94,21],94],[[94,21],94],[[94,21],94],[[94,21],94],[96,[[22,[[88,[93]]]]]],[96,[[22,[[88,[13]]]]]],[96,[[22,[[88,[13]]]]]],[96],[93],[96],[[96,96],[[22,[21]]]],[96,[[22,[21]]]],[[96,96],[[22,[21]]]],[96,[[22,[21]]]],[96],[[],94],[91,96],[96],[96],[[93,93],[[22,[62]]]],[[96,93]],[13,13],[93],[96],[93,96],[96],[[]],[[]],[[]],[[]],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],18],[[],18],[[],18],[[],18],[[96,96]],[[96,96]],0,[[]],[[]],[[97,7],8],[[]],[[]],[[],97],[[97,15,67],8],[[],16],[[],16],[[],18],0,0,[[]],[[]],[[]],[[]],[98,99],[[98,3],98],[98,98],[99,99],[[]],[[]],[[98,3],98],[[],98],[[98,3],98],[[98,7],8],[[99,7],8],[[]],[[]],[[]],[[]],[[98,13],98],[[98,3],98],[[],98],[[],99],[[98,3],98],[[]],[[]],[[99,5,30],[[16,[15,10]]]],[[],16],[[],16],[[],16],[[],16],[[],18],[[],18],[[98,3],98],[[98,3],98],0,0,0,0,0,0,0,[100,[[88,[101]]]],[[]],[[]],[[]],[[]],[[]],[[]],[100,100],[101,101],[[]],[[]],[[100,100],62],[[101,101],62],0,[[100,100],3],[[101,101],3],[[],3],[[],3],[[100,7],8],[[101,7],8],[[102,7],8],[[]],[[]],[[]],[[]],[[]],[[]],[100],[[]],[100,21],[[100,[88,[13]]],3],[[101,13],3],[[12,12],102],[102,22],[[100,100],[[22,[62]]]],[[101,101],[[22,[62]]]],[100],0,[[]],[[]],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],18],[[],18],[[],18]],"c":[],"p":[[3,"ParserBuilder"],[3,"Parser"],[15,"bool"],[4,"Error"],[15,"str"],[3,"String"],[3,"Formatter"],[6,"Result"],[3,"UnicodeWordError"],[3,"Error"],[3,"Error"],[15,"char"],[15,"u8"],[15,"u32"],[3,"Hir"],[4,"Result"],[3,"Demand"],[3,"TypeId"],[3,"Flags"],[3,"FlagsItem"],[15,"usize"],[4,"Option"],[3,"Span"],[3,"Literal"],[3,"Group"],[4,"ErrorKind"],[3,"Position"],[3,"WithComments"],[3,"Comment"],[4,"Ast"],[3,"Alternation"],[3,"Concat"],[4,"LiteralKind"],[4,"SpecialLiteralKind"],[4,"HexLiteralKind"],[4,"Class"],[3,"ClassPerl"],[4,"ClassPerlKind"],[3,"ClassAscii"],[4,"ClassAsciiKind"],[3,"ClassUnicode"],[4,"ClassUnicodeKind"],[4,"ClassUnicodeOpKind"],[3,"ClassBracketed"],[4,"ClassSet"],[4,"ClassSetItem"],[3,"ClassSetRange"],[3,"ClassSetUnion"],[3,"ClassSetBinaryOp"],[4,"ClassSetBinaryOpKind"],[3,"Assertion"],[4,"AssertionKind"],[3,"Repetition"],[3,"RepetitionOp"],[4,"RepetitionKind"],[4,"RepetitionRange"],[4,"GroupKind"],[3,"CaptureName"],[3,"SetFlags"],[4,"FlagsItemKind"],[4,"Flag"],[4,"Ordering"],[8,"Visitor"],[3,"ParserBuilder"],[3,"Parser"],[3,"Printer"],[8,"Write"],[3,"Vec"],[4,"Look"],[15,"u16"],[3,"Capture"],[4,"Class"],[3,"ClassUnicode"],[3,"ClassBytes"],[4,"ErrorKind"],[4,"HirKind"],[3,"Literal"],[3,"ClassUnicodeRange"],[3,"ClassBytesRange"],[3,"Repetition"],[4,"Dot"],[3,"Properties"],[3,"LookSet"],[3,"LookSetIter"],[3,"ClassUnicodeIter"],[3,"ClassBytesIter"],[3,"CaseFoldError"],[15,"slice"],[3,"Box"],[8,"Into"],[8,"IntoIterator"],[8,"Visitor"],[3,"Literal"],[3,"Extractor"],[4,"ExtractKind"],[3,"Seq"],[3,"Printer"],[3,"TranslatorBuilder"],[3,"Translator"],[4,"Utf8Sequence"],[3,"Utf8Range"],[3,"Utf8Sequences"],[13,"NamedValue"],[13,"FlagDuplicate"],[13,"FlagRepeatedNegation"],[13,"GroupNameDuplicate"],[13,"CaptureName"]]},\ -"reqwest":{"doc":"reqwest","t":"SSSSDSSSSCDDSSDSSSSSSSSSSSSSSSSSCISSSSSSSSDSSSSSSSSDSSSSSSSSSSSSSDSSSSDDDIGSSSDSSSSSSSSSSDDSDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLGIGKRRRRRRRRRRRRRRRRRIRRRRRRRRRRRRRRRRDRRRERRDRDDDRRRRRIDDDDDDRRRRRNDRRRRRRRRRRRRRRRRRRRRRDRRRRRNDDDDDDRRRRRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDSSSSDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["ACCEPTED","ALREADY_REPORTED","BAD_GATEWAY","BAD_REQUEST","Body","CONFLICT","CONNECT","CONTINUE","CREATED","Certificate","Client","ClientBuilder","DELETE","EXPECTATION_FAILED","Error","FAILED_DEPENDENCY","FORBIDDEN","FOUND","GATEWAY_TIMEOUT","GET","GONE","HEAD","HTTP_09","HTTP_10","HTTP_11","HTTP_2","HTTP_3","HTTP_VERSION_NOT_SUPPORTED","IM_A_TEAPOT","IM_USED","INSUFFICIENT_STORAGE","INTERNAL_SERVER_ERROR","Identity","IntoUrl","LENGTH_REQUIRED","LOCKED","LOOP_DETECTED","METHOD_NOT_ALLOWED","MISDIRECTED_REQUEST","MOVED_PERMANENTLY","MULTIPLE_CHOICES","MULTI_STATUS","Method","NETWORK_AUTHENTICATION_REQUIRED","NON_AUTHORITATIVE_INFORMATION","NOT_ACCEPTABLE","NOT_EXTENDED","NOT_FOUND","NOT_IMPLEMENTED","NOT_MODIFIED","NO_CONTENT","NoProxy","OK","OPTIONS","PARTIAL_CONTENT","PATCH","PAYLOAD_TOO_LARGE","PAYMENT_REQUIRED","PERMANENT_REDIRECT","POST","PRECONDITION_FAILED","PRECONDITION_REQUIRED","PROCESSING","PROXY_AUTHENTICATION_REQUIRED","PUT","Proxy","RANGE_NOT_SATISFIABLE","REQUEST_HEADER_FIELDS_TOO_LARGE","REQUEST_TIMEOUT","RESET_CONTENT","Request","RequestBuilder","Response","ResponseBuilderExt","Result","SEE_OTHER","SERVICE_UNAVAILABLE","SWITCHING_PROTOCOLS","StatusCode","TEMPORARY_REDIRECT","TOO_MANY_REQUESTS","TRACE","UNAUTHORIZED","UNAVAILABLE_FOR_LEGAL_REASONS","UNPROCESSABLE_ENTITY","UNSUPPORTED_MEDIA_TYPE","UPGRADE_REQUIRED","URI_TOO_LONG","USE_PROXY","Upgraded","Url","VARIANT_ALSO_NEGOTIATES","Version","add_root_certificate","all","as_bytes","as_ref","as_ref","as_str","as_str","as_str","as_u16","authority","basic_auth","basic_auth","bearer_auth","body","body","body_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","build_split","builder","bytes","bytes_stream","call","call","cannot_be_a_base","canonical_reason","chunk","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","connect_timeout","connection_verbose","content_length","custom","danger_accept_invalid_certs","default","default","default","default","default","default","default_headers","delete","dns","dns_resolver","domain","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error_for_status","error_for_status_ref","execute","extensions","extensions_mut","fetch_mode_no_cors","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","form","fragment","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_bytes","from_bytes","from_directory_path","from_env","from_file_path","from_parts","from_str","from_str","from_str","from_string","from_u16","get","get","has_authority","has_host","hash","hash","hash","hash","head","header","header","headers","headers","headers","headers_mut","headers_mut","host","host_str","http","http09_responses","http1_allow_obsolete_multiline_headers_in_responses","http1_only","http1_title_case_headers","http2_adaptive_window","http2_initial_connection_window_size","http2_initial_stream_window_size","http2_keep_alive_interval","http2_keep_alive_timeout","http2_keep_alive_while_idle","http2_max_frame_size","http2_prior_knowledge","https","https_only","identity","index","index","index","index","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_string","is_body","is_builder","is_client_error","is_connect","is_decode","is_idempotent","is_informational","is_redirect","is_redirection","is_request","is_safe","is_server_error","is_special","is_status","is_success","is_timeout","is_write_vectored","join","json","json","local_address","make_relative","max_tls_version","method","method_mut","min_tls_version","new","new","new","no_brotli","no_deflate","no_gzip","no_proxy","no_proxy","no_trust_dns","options","origin","parse","parse_with_params","partial_cmp","partial_cmp","partial_cmp","password","patch","path","path_segments","path_segments_mut","poll_flush","poll_read","poll_ready","poll_ready","poll_shutdown","poll_write","poll_write_vectored","pool_idle_timeout","pool_max_idle_per_host","port","port_or_known_default","post","provide","proxy","put","query","query","query_pairs","query_pairs_mut","redirect","redirect","referer","remote_addr","request","resolve","resolve_to_addrs","scheme","send","set_fragment","set_host","set_ip_host","set_password","set_path","set_port","set_query","set_scheme","set_username","socket_addrs","source","status","status","tcp_keepalive","tcp_nodelay","text","text_with_charset","timeout","timeout","timeout","timeout_mut","tls","tls_built_in_root_certs","tls_sni","to_file_path","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","try_clone","try_clone","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","upgrade","url","url","url","url","url_mut","url_mut","use_preconfigured_tls","use_rustls_tls","user_agent","username","version","version","version","version_mut","with_url","without_url","wrap_stream","Addrs","Resolve","Resolving","resolve","ACCEPT","ACCEPT_CHARSET","ACCEPT_ENCODING","ACCEPT_LANGUAGE","ACCEPT_RANGES","ACCESS_CONTROL_ALLOW_CREDENTIALS","ACCESS_CONTROL_ALLOW_HEADERS","ACCESS_CONTROL_ALLOW_METHODS","ACCESS_CONTROL_ALLOW_ORIGIN","ACCESS_CONTROL_EXPOSE_HEADERS","ACCESS_CONTROL_MAX_AGE","ACCESS_CONTROL_REQUEST_HEADERS","ACCESS_CONTROL_REQUEST_METHOD","AGE","ALLOW","ALT_SVC","AUTHORIZATION","AsHeaderName","CACHE_CONTROL","CACHE_STATUS","CDN_CACHE_CONTROL","CONNECTION","CONTENT_DISPOSITION","CONTENT_ENCODING","CONTENT_LANGUAGE","CONTENT_LENGTH","CONTENT_LOCATION","CONTENT_RANGE","CONTENT_SECURITY_POLICY","CONTENT_SECURITY_POLICY_REPORT_ONLY","CONTENT_TYPE","COOKIE","DATE","DNT","Drain","ETAG","EXPECT","EXPIRES","Entry","FORWARDED","FROM","GetAll","HOST","HeaderMap","HeaderName","HeaderValue","IF_MATCH","IF_MODIFIED_SINCE","IF_NONE_MATCH","IF_RANGE","IF_UNMODIFIED_SINCE","IntoHeaderName","IntoIter","InvalidHeaderName","InvalidHeaderValue","Iter","IterMut","Keys","LAST_MODIFIED","LINK","LOCATION","MAX_FORWARDS","ORIGIN","Occupied","OccupiedEntry","PRAGMA","PROXY_AUTHENTICATE","PROXY_AUTHORIZATION","PUBLIC_KEY_PINS","PUBLIC_KEY_PINS_REPORT_ONLY","RANGE","REFERER","REFERRER_POLICY","REFRESH","RETRY_AFTER","SEC_WEBSOCKET_ACCEPT","SEC_WEBSOCKET_EXTENSIONS","SEC_WEBSOCKET_KEY","SEC_WEBSOCKET_PROTOCOL","SEC_WEBSOCKET_VERSION","SERVER","SET_COOKIE","STRICT_TRANSPORT_SECURITY","TE","TRAILER","TRANSFER_ENCODING","ToStrError","UPGRADE","UPGRADE_INSECURE_REQUESTS","USER_AGENT","VARY","VIA","Vacant","VacantEntry","ValueDrain","ValueIter","ValueIterMut","Values","ValuesMut","WARNING","WWW_AUTHENTICATE","X_CONTENT_TYPE_OPTIONS","X_DNS_PREFETCH_CONTROL","X_FRAME_OPTIONS","X_XSS_PROTECTION","append","append","as_bytes","as_ref","as_ref","as_ref","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","cjk_compat_variants","clear","clone","clone","clone","clone_into","clone_into","clone_into","cmp","contains_key","default","drain","drop","drop","drop","entry","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_bytes","from_bytes","from_iter","from_lowercase","from_maybe_shared","from_maybe_shared_unchecked","from_name","from_static","from_static","from_str","from_str","from_str","get","get","get_all","get_mut","get_mut","hash","hash","index","insert","insert","insert","insert_entry","insert_mult","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_key","into_mut","is_empty","is_empty","is_sensitive","iter","iter","iter","iter_mut","iter_mut","key","key","key","keys","keys_len","len","len","new","next","next","next","next","next","next","next","next","next","next","next_back","next_back","nfc","nfd","nfkc","nfkd","or_insert","or_insert_with","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","provide","provide","provide","remove","remove","remove_entry","remove_entry_mult","reserve","set_sensitive","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","stream_safe","to_owned","to_owned","to_owned","to_str","to_string","to_string","to_string","to_string","try_entry","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","values","values_mut","with_capacity","Action","Attempt","Policy","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","custom","default","error","fmt","fmt","fmt","follow","from","from","from","into","into","into","limited","none","previous","redirect","status","stop","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","url","Certificate","Identity","TLS_1_0","TLS_1_1","TLS_1_2","TLS_1_3","Version","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","eq","equivalent","equivalent","fmt","fmt","fmt","from","from","from","from_der","from_pem","from_pem","into","into","into","partial_cmp","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"reqwest"],[494,"reqwest::dns"],[498,"reqwest::header"],[951,"reqwest::redirect"],[989,"reqwest::tls"]],"d":["202 Accepted [RFC7231, Section 6.3.3]","208 Already Reported [RFC5842]","502 Bad Gateway [RFC7231, Section 6.6.3]","400 Bad Request [RFC7231, Section 6.5.1]","An asynchronous request body.","409 Conflict [RFC7231, Section 6.5.8]","CONNECT","100 Continue [RFC7231, Section 6.2.1]","201 Created [RFC7231, Section 6.3.2]","","An asynchronous Client to make Requests with.","A ClientBuilder can be used to create a Client with custom …","DELETE","417 Expectation Failed [RFC7231, Section 6.5.14]","The Errors that may occur when processing a Request.","424 Failed Dependency [RFC4918]","403 Forbidden [RFC7231, Section 6.5.3]","302 Found [RFC7231, Section 6.4.3]","504 Gateway Timeout [RFC7231, Section 6.6.5]","GET","410 Gone [RFC7231, Section 6.5.9]","HEAD","HTTP/0.9","HTTP/1.0","HTTP/1.1","HTTP/2.0","HTTP/3.0","505 HTTP Version Not Supported [RFC7231, Section 6.6.6]","418 I’m a teapot [curiously not registered by IANA but …","226 IM Used [RFC3229]","507 Insufficient Storage [RFC4918]","500 Internal Server Error [RFC7231, Section 6.6.1]","","A trait to try to convert some type into a Url.","411 Length Required [RFC7231, Section 6.5.10]","423 Locked [RFC4918]","508 Loop Detected [RFC5842]","405 Method Not Allowed [RFC7231, Section 6.5.5]","421 Misdirected Request RFC7540, Section 9.1.2","301 Moved Permanently [RFC7231, Section 6.4.2]","300 Multiple Choices [RFC7231, Section 6.4.1]","207 Multi-Status [RFC4918]","The Request Method (VERB)","511 Network Authentication Required [RFC6585]","203 Non-Authoritative Information [RFC7231, Section 6.3.4]","406 Not Acceptable [RFC7231, Section 6.5.6]","510 Not Extended [RFC2774]","404 Not Found [RFC7231, Section 6.5.4]","501 Not Implemented [RFC7231, Section 6.6.2]","304 Not Modified [RFC7232, Section 4.1]","204 No Content [RFC7231, Section 6.3.5]","A configuration for filtering out requests that shouldn’…","200 OK [RFC7231, Section 6.3.1]","OPTIONS","206 Partial Content [RFC7233, Section 4.1]","PATCH","413 Payload Too Large [RFC7231, Section 6.5.11]","402 Payment Required [RFC7231, Section 6.5.2]","308 Permanent Redirect [RFC7238]","POST","412 Precondition Failed [RFC7232, Section 4.2]","428 Precondition Required [RFC6585]","102 Processing [RFC2518]","407 Proxy Authentication Required [RFC7235, Section 3.2]","PUT","Configuration of a proxy that a Client should pass …","416 Range Not Satisfiable [RFC7233, Section 4.4]","431 Request Header Fields Too Large [RFC6585]","408 Request Timeout [RFC7231, Section 6.5.7]","205 Reset Content [RFC7231, Section 6.3.6]","A request which can be executed with Client::execute().","A builder to construct the properties of a Request.","A Response to a submitted Request.","Extension trait for http::response::Builder objects","A Result alias where the Err case is reqwest::Error.","303 See Other [RFC7231, Section 6.4.4]","503 Service Unavailable [RFC7231, Section 6.6.4]","101 Switching Protocols [RFC7231, Section 6.2.2]","An HTTP status code (status-code in RFC 7230 et al.).","307 Temporary Redirect [RFC7231, Section 6.4.7]","429 Too Many Requests [RFC6585]","TRACE","401 Unauthorized [RFC7235, Section 3.1]","451 Unavailable For Legal Reasons [RFC7725]","422 Unprocessable Entity [RFC4918]","415 Unsupported Media Type [RFC7231, Section 6.5.13]","426 Upgrade Required [RFC7231, Section 6.5.15]","414 URI Too Long [RFC7231, Section 6.5.12]","305 Use Proxy [RFC7231, Section 6.4.5]","An upgraded HTTP connection.","A parsed URL record.","506 Variant Also Negotiates [RFC2295]","Represents a version of the HTTP spec.","Add a custom root certificate.","Proxy all traffic to the passed URL.","Returns a reference to the internal data of the Body.","","","Return the serialization of this URL.","Return a &str representation of the HTTP method","Returns a &str representation of the StatusCode","Returns the u16 corresponding to this StatusCode.","Return the authority of this URL as an ASCII string.","Enable HTTP basic authentication.","Set the Proxy-Authorization header using Basic auth.","Enable HTTP bearer authentication.","Get the body.","Set the request body.","Get a mutable reference to the body.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a Client that uses this ClientBuilder …","Build a Request, which can be inspected, modified and …","Build a Request, which can be inspected, modified and …","Creates a ClientBuilder to configure a Client.","Get the full response body as Bytes.","Convert the response into a Stream of Bytes from the body.","","","Return whether this URL is a cannot-be-a-base URL, meaning …","Get the standardised reason-phrase for this status code.","Stream a chunk of the response body.","","","","","","","","","","","","","","","","","","Set a timeout for only the connect phase of a Client.","Set whether connections should emit verbose logs.","Get the content-length of this response, if known.","Provide a custom function to determine what traffic to …","Controls the use of certificate validation.","","","","","","","Sets the default headers for every request.","Convenience method to make a DELETE request to a URL.","DNS resolution","Override the DNS resolver implementation.","If this URL has a host and it is a domain name (not an IP …","","","","","","","","","","","","","","","","","","Turn a response into an error if the server returned an …","Turn a reference to a response into an error if the server …","Executes a Request.","Returns a reference to the associated extensions.","Returns a mutable reference to the associated extensions.","Disable CORS on fetching the request.","","","","","","","","","","","","","","","","","","","Send a form body.","Return this URL’s fragment identifier, if any.","Returns the argument unchanged.","","","","","Returns the argument unchanged.","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Converts a slice of bytes to an HTTP method.","Converts a &u8 to a status code","Convert a directory name as std::path::Path into an URL in …","Returns a new no-proxy configuration based on environment …","Convert a file name as std::path::Path into an URL in the …","Assemble a builder starting from an existing Client and a …","","","","Returns a new no-proxy configuration based on a no_proxy …","Converts a u16 to a status code.","Shortcut method to quickly make a GET request.","Convenience method to make a GET request to a URL.","Return whether the URL has an ‘authority’, which can …","Equivalent to url.host().is_some().","","","","","Convenience method to make a HEAD request to a URL.","HTTP header types","Add a Header to this Request.","Get the headers.","Add a set of Headers to the existing ones on this Request.","Get the Headers of this Response.","Get a mutable reference to the headers.","Get a mutable reference to the Headers of this Response.","Return the parsed representation of the host for this URL. …","Return the string representation of the host (domain or IP …","Proxy all HTTP traffic to the passed URL.","Allow HTTP/0.9 responses","Set whether HTTP/1 connections will accept obsolete line …","Only use HTTP/1.","Send headers as title case instead of lowercase.","Sets whether to use an adaptive flow control.","Sets the max connection-level flow control for HTTP2","Sets the SETTINGS_INITIAL_WINDOW_SIZE option for HTTP2 …","Sets an interval for HTTP2 Ping frames should be sent to …","Sets a timeout for receiving an acknowledgement of the …","Sets whether HTTP2 keep-alive should apply while the …","Sets the maximum frame size to use for HTTP2.","Only use HTTP/2.","Proxy all HTTPS traffic to the passed URL.","Restrict the Client to be used with HTTPS only requests.","Sets the identity to be used for client certificate …","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return the serialization of this URL.","Returns true if the error is related to the request or …","Returns true if the error is from a type Builder.","Check if status is within 400-499.","Returns true if the error is related to connect","Returns true if the error is related to decoding the …","Whether a method is considered “idempotent”, meaning …","Check if status is within 100-199.","Returns true if the error is from a RedirectPolicy.","Check if status is within 300-399.","Returns true if the error is related to the request","Whether a method is considered “safe”, meaning the …","Check if status is within 500-599.","Return whether the URL is special (has a special scheme)","Returns true if the error is from …","Check if status is within 200-299.","Returns true if the error is related to a timeout.","","Parse a string as an URL, with this URL as the base URL.","Send a JSON body.","Try to deserialize the response body as JSON.","Bind to a local IP Address.","Creates a relative URL if possible, with this URL as the …","Set the maximum allowed TLS version for connections.","Get the method.","Get a mutable reference to the method.","Set the minimum required TLS version for connections.","Constructs a new ClientBuilder.","Constructs a new request.","Constructs a new Client.","Disable auto response body brotli decompression.","Disable auto response body deflate decompression.","Disable auto response body gzip decompression.","Clear all Proxies, so Client will use no proxy anymore.","Adds a No Proxy exclusion list to this Proxy","Disables the trust-dns async resolver.","Return a default ParseOptions that can fully configure the …","Return the origin of this URL (…","Parse an absolute URL from a string.","Parse an absolute URL from a string and add params to its …","","","","Return the password for this URL, if any, as a …","Convenience method to make a PATCH request to a URL.","Return the path for this URL, as a percent-encoded ASCII …","Unless this URL is cannot-be-a-base, return an iterator of …","Return an object with methods to manipulate this URL’s …","","","","","","","","Set an optional timeout for idle sockets being kept-alive.","Sets the maximum idle connection per host allowed in the …","Return the port number for this URL, if any.","Return the port number for this URL, or the default port …","Convenience method to make a POST request to a URL.","","Add a Proxy to the list of proxies the Client will use.","Convenience method to make a PUT request to a URL.","Modify the query string of the URL.","Return this URL’s query string, if any, as a …","Parse the URL’s query string, if any, as …","Manipulate this URL’s query string, viewed as a sequence …","Redirect Handling","Set a RedirectPolicy for this client.","Enable or disable automatic setting of the Referer header.","Get the remote address used to get this Response.","Start building a Request with the Method and Url.","Override DNS resolution for specific domains to a …","Override DNS resolution for specific domains to particular …","Return the scheme of this URL, lower-cased, as an ASCII …","Constructs the Request and sends it to the target URL, …","Change this URL’s fragment identifier.","Change this URL’s host.","Change this URL’s host to the given IP address.","Change this URL’s password.","Change this URL’s path.","Change this URL’s port number.","Change this URL’s query string.","Change this URL’s scheme.","Change this URL’s username.","Resolve a URL’s host and port number to SocketAddr.","","Returns the status code, if the error was generated from a …","Get the StatusCode of this Response.","Set that all sockets have SO_KEEPALIVE set with the …","Set whether sockets have TCP_NODELAY enabled.","Get the full response text.","Get the full response text given a specific encoding.","Enables a request timeout.","Get the timeout.","Enables a request timeout.","Get a mutable reference to the timeout.","TLS configuration","Controls the use of built-in/preloaded certificates during …","Controls the use of TLS server name indication.","Assuming the URL is in the file scheme or similar, convert …","","","","","","","","","","","","Attempt to clone the request.","Attempt to clone the RequestBuilder.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Consumes the response and returns a future for a possible …","A builder method for the http::response::Builder type that …","Returns a possible URL related to this error.","Get the url.","Get the final Url of this Response.","Returns a mutable reference to the URL related to this …","Get a mutable reference to the url.","Use a preconfigured TLS backend.","Force using the Rustls TLS backend.","Sets the User-Agent header to be used by this client.","Return the username for this URL (typically the empty …","Get the http version.","Set HTTP version","Get the HTTP Version of this Response.","Get a mutable reference to the http version.","Add a url related to this error (overwriting any existing)","Strip the related url from this error (if, for example, it …","Wrap a futures Stream in a box inside Body.","Alias for an Iterator trait object over SocketAddr.","Trait for customizing DNS resolution in reqwest.","Alias for the Future type returned by a DNS resolver.","Performs DNS resolution on a Name. The return type is a …","Advertises which content types the client is able to …","Advertises which character set the client is able to …","Advertises which content encoding the client is able to …","Advertises which languages the client is able to …","Marker used by the server to advertise partial request …","Preflight response indicating if the response to the …","Preflight response indicating permitted HTTP headers.","Preflight header response indicating permitted access …","Indicates whether the response can be shared with …","Indicates which headers can be exposed as part of the …","Indicates how long the results of a preflight request can …","Informs the server which HTTP headers will be used when an …","Informs the server know which HTTP method will be used …","Indicates the time in seconds the object has been in a …","Lists the set of methods support by a resource.","Advertises the availability of alternate services to …","Contains the credentials to authenticate a user agent with …","A marker trait used to identify values that can be used as …","Specifies directives for caching mechanisms in both …","Indicates how caches have handled a response and its …","Specifies directives that allow origin servers to control …","Controls whether or not the network connection stays open …","Indicates if the content is expected to be displayed …","Used to compress the media-type.","Used to describe the languages intended for the audience.","Indicates the size of the entity-body.","Indicates an alternate location for the returned data.","Indicates where in a full body message a partial message …","Allows controlling resources the user agent is allowed to …","Allows experimenting with policies by monitoring their …","Used to indicate the media type of the resource.","Contains stored HTTP cookies previously sent by the server …","Contains the date and time at which the message was …","Indicates the client’s tracking preference.","A drain iterator for HeaderMap.","Identifier for a specific version of a resource.","Indicates expectations that need to be fulfilled by the …","Contains the date/time after which the response is …","A view into a single location in a HeaderMap, which may be …","Contains information from the client-facing side of proxy …","Contains an Internet email address for a human user who …","A view to all values stored in a single entry.","Specifies the domain name of the server and (optionally) …","A set of HTTP headers","Represents an HTTP header field name","Represents an HTTP header field value.","Makes a request conditional based on the E-Tag.","Makes a request conditional based on the modification date.","Makes a request conditional based on the E-Tag.","Makes a request conditional based on range.","Makes the request conditional based on the last …","A marker trait used to identify values that can be used as …","An owning iterator over the entries of a HeaderMap.","A possible error when converting a HeaderName from another …","A possible error when converting a HeaderValue from a …","HeaderMap entry iterator.","HeaderMap mutable entry iterator","An iterator over HeaderMap keys.","Content-Types that are acceptable for the response.","Allows the server to point an interested client to another …","Indicates the URL to redirect a page to.","Indicates the max number of intermediaries the request …","Indicates where a fetch originates from.","An occupied entry","A view into a single occupied location in a HeaderMap.","HTTP/1.0 header usually used for backwards compatibility.","Defines the authentication method that should be used to …","Contains the credentials to authenticate a user agent to a …","Associates a specific cryptographic public key with a …","Sends reports of pinning violation to the report-uri …","Indicates the part of a document that the server should …","Contains the address of the previous web page from which a …","Governs which referrer information should be included with …","Informs the web browser that the current page or frame …","The Retry-After response HTTP header indicates how long …","The |Sec-WebSocket-Accept| header field is used in the …","The |Sec-WebSocket-Extensions| header field is used in the …","The |Sec-WebSocket-Key| header field is used in the …","The |Sec-WebSocket-Protocol| header field is used in the …","The |Sec-WebSocket-Version| header field is used in the …","Contains information about the software used by the origin …","Used to send cookies from the server to the user agent.","Tells the client to communicate with HTTPS instead of …","Informs the server of transfer encodings willing to be …","Allows the sender to include additional fields at the end …","Specifies the form of encoding used to safely transfer the …","A possible error when converting a HeaderValue to a string …","Used as part of the exchange to upgrade the protocol.","Sends a signal to the server expressing the client’s …","Contains a string that allows identifying the requesting …","Determines how to match future requests with cached …","Added by proxies to track routing.","A vacant entry","A view into a single empty location in a HeaderMap.","An drain iterator of all values associated with a single …","An iterator of all values associated with a single header …","A mutable iterator of all values associated with a single …","HeaderMap value iterator.","HeaderMap mutable value iterator","General HTTP header contains information about possible …","Defines the authentication method that should be used to …","Marker used by the server to indicate that the MIME types …","Controls DNS prefetching.","Indicates whether or not a browser should be allowed to …","Stop pages from loading when an XSS attack is detected.","Inserts a key-value pair into the map.","Insert the value into the entry.","Converts a HeaderValue to a byte slice.","","","","Returns a str representation of the header.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of headers the map can hold without …","","Clears the map, removing all key-value pairs. Keeps the …","","","","","","","","Returns true if the map contains a value for the specified …","","Clears the map, returning all entries as an iterator.","","","","Gets the given key’s corresponding entry in the map for …","","","","","Performs a case-insensitive comparison of the string …","","Performs a case-insensitive comparison of the string …","","","","","","","","","","","","","","Extend a HeaderMap with the contents of another HeaderMap.","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Converts a slice of bytes to an HTTP header name.","Attempt to convert a byte slice to a HeaderValue.","","Converts a slice of bytes to an HTTP header name.","Attempt to convert a Bytes buffer to a HeaderValue.","Convert a Bytes directly into a HeaderValue without …","Converts a HeaderName into a HeaderValue","Converts a static string to a HTTP header name.","Convert a static string to a HeaderValue.","","","Attempt to convert a string to a HeaderValue.","Returns a reference to the value associated with the key.","Get a reference to the first value in the entry.","Returns a view of all values associated with a key.","Returns a mutable reference to the value associated with …","Get a mutable reference to the first value in the entry.","","","Panics","Inserts a key-value pair into the map.","Insert the value into the entry.","Sets the value of the entry.","Insert the value into the entry.","Sets the value of the entry.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a consuming iterator, that is, one that moves keys …","","","","","","","","","","","","","","","","","","Take ownership of the key","Converts the OccupiedEntry into a mutable reference to the …","Returns true if the map contains no elements.","Returns true if the HeaderValue has a length of zero bytes.","Returns true if the value represents sensitive data.","An iterator visiting all key-value pairs.","Returns an iterator visiting all values associated with …","Returns an iterator visiting all values associated with …","An iterator visiting all key-value pairs, with mutable …","Returns an iterator mutably visiting all values associated …","Returns a reference to the entry’s key","Returns a reference to the entry’s key","Returns a reference to the entry’s key.","An iterator visiting all keys.","Returns the number of keys stored in the map.","Returns the number of headers stored in the map.","Returns the length of self.","Create an empty HeaderMap.","","","","","","","","","","","","","","","","","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the result of …","","","","","","","","","","Removes a key from the map, returning the value associated …","Remove the entry from the map.","Remove the entry from the map.","Remove the entry from the map.","Reserves capacity for at least additional more headers to …","Mark that the header value represents sensitive …","","","","","","","","","","","","","","Yields a &str slice if the HeaderValue only contains …","","","","","Gets the given key’s corresponding entry in the map for …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An iterator visiting all values.","An iterator visiting all values mutably.","Create an empty HeaderMap with the specified capacity.","An action to perform when a redirect status code is found.","A type that holds information on the next request and …","A type that controls the policy on how to handle the …","","","","","","","Create a custom Policy using the passed function.","","Returns an action failing the redirect with an error.","","","","Returns an action meaning reqwest should follow the next …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Create a Policy with a maximum number of redirects.","Create a Policy that does not follow any redirect.","Get the list of previous URLs that have already been …","Apply this policy to a given Attempt to produce a Action.","Get the type of redirect.","Returns an action meaning reqwest should not follow the …","","","","","","","","","","Get the next URL to redirect to.","Represents a server X509 certificate.","Represents a private key and X509 cert as a client …","Version 1.0 of the TLS protocol.","Version 1.1 of the TLS protocol.","Version 1.2 of the TLS protocol.","Version 1.3 of the TLS protocol.","A TLS protocol version.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a Certificate from a binary DER encoded certificate","Create a Certificate from a PEM encoded certificate","Parses PEM encoded private key and certificate.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","",""],"i":[12,12,12,12,0,12,11,12,12,0,0,0,11,12,0,12,12,12,12,11,12,11,24,24,24,24,24,12,12,12,12,12,0,0,12,12,12,12,12,12,12,12,0,12,12,12,12,12,12,12,12,0,12,11,12,11,12,12,12,11,12,12,12,12,11,0,12,12,12,12,0,0,0,0,0,12,12,12,0,12,12,11,12,12,12,12,12,12,12,0,0,12,0,1,3,5,9,11,9,11,12,12,9,14,3,14,16,14,16,37,5,1,16,14,19,9,42,18,3,23,11,12,24,37,5,1,16,14,19,9,42,18,3,23,11,12,24,1,14,14,18,19,19,18,18,9,12,19,9,18,3,23,11,12,24,9,18,3,23,11,12,24,9,12,24,1,1,19,3,1,1,18,23,11,12,24,1,18,0,1,9,9,11,11,11,11,11,12,12,24,9,9,11,11,12,12,24,24,19,19,18,19,19,14,37,37,5,1,16,14,19,9,9,42,18,3,23,11,11,12,12,24,14,9,37,5,5,5,5,5,5,5,5,5,1,16,14,19,19,9,42,42,18,3,23,11,11,12,12,24,11,12,9,23,9,14,9,11,12,23,12,0,18,9,9,9,11,12,24,18,0,14,16,14,19,16,19,9,9,3,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,9,9,9,9,37,5,1,16,14,19,9,42,18,3,23,11,12,24,9,37,37,12,37,37,11,12,37,12,37,11,12,9,37,12,37,42,9,14,19,1,9,1,16,16,1,1,16,18,1,1,1,1,3,1,9,9,9,9,9,12,24,9,18,9,9,9,42,42,18,18,42,42,42,1,1,9,9,18,37,1,18,14,9,9,9,0,1,1,19,18,1,1,9,14,9,9,9,9,9,9,9,9,9,9,37,37,19,1,1,19,19,1,16,14,16,0,1,1,9,9,18,3,23,11,12,24,37,9,11,12,16,14,37,5,1,16,16,14,19,9,9,42,18,3,23,11,11,11,12,12,12,12,24,37,5,1,16,14,19,9,42,18,3,23,11,12,24,37,5,1,16,14,19,9,42,18,3,23,11,12,24,19,139,37,16,19,37,16,1,1,1,9,16,14,19,16,37,37,5,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,31,100,94,101,101,94,101,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,101,94,122,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,94,122,31,107,31,31,101,94,31,101,94,94,31,31,31,106,105,107,31,31,110,101,101,101,101,101,94,94,94,94,94,94,31,31,101,101,94,94,31,31,111,111,112,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,101,94,122,122,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,101,94,94,94,94,94,94,94,94,94,94,94,122,101,94,31,101,94,94,94,101,94,101,94,94,31,100,31,31,100,101,94,31,31,119,100,119,100,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,94,122,31,31,31,114,115,106,116,117,118,105,110,110,100,100,100,120,121,107,119,100,31,94,94,31,110,100,31,100,108,119,100,31,31,31,94,31,114,115,106,116,117,118,105,120,121,107,120,121,107,107,107,107,108,108,94,94,94,94,94,94,111,112,122,31,100,100,100,31,94,114,115,106,116,117,118,105,120,107,107,31,101,94,94,111,112,101,122,31,111,112,31,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,101,101,101,101,101,94,94,94,94,94,94,122,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,94,122,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,94,122,31,31,31,0,0,0,85,136,138,85,136,138,85,85,136,85,136,138,136,85,136,138,85,136,138,85,85,136,85,136,136,85,136,138,85,136,138,85,136,138,136,0,0,67,67,67,67,0,2,59,67,2,59,67,2,59,67,2,59,67,67,67,67,67,2,59,67,2,59,67,2,2,59,2,59,67,67,2,59,67,2,59,67,2,59,67,2,59,67],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],1],0,[5,[[8,[[7,[6]]]]]],[9,10],[11,10],[9,10],[11,10],[12,10],[12,13],[9,10],[[14,15,[8,[15]]],14],[[3,10,10],3],[[14,15],14],[16,[[8,[5]]]],[[14,[17,[5]]],14],[16,[[8,[5]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,[[4,[18]]]],[14,[[4,[16]]]],[14],[[],1],[19,[[4,[20]]]],[19,21],[[18,16]],[[18,16]],[9,22],[12,[[8,[10]]]],[19,[[4,[[8,[20]]]]]],[9,9],[18,18],[3,3],[23,23],[11,11],[12,12],[24,24],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[9,9],25],[[12,12],25],[[24,24],25],[[1,26],1],[[1,22],1],[19,[[8,[27]]]],[[[0,[28,29,30]]],3],[[1,22],1],[[],1],[[],18],[[],23],[[],11],[[],12],[[],24],[[1,31],1],[[18,32],14],0,[[1,[34,[33]]],1],[9,[[8,[10]]]],[[9,9],22],[[11,11],22],[[11,11],22],[[11,10],22],[[11,11],22],[[11,10],22],[[12,13],22],[[12,12],22],[[24,24],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[19,[[4,[19]]]],[19,[[4,[19]]]],[[18,16],35],[19,36],[19,36],[14,14],[[37,38],39],[[37,38],39],[[5,38],39],[[1,38],39],[[16,38],39],[[14,38],39],[[19,38],39],[[9,38],[[41,[40]]]],[[9,38],[[41,[40]]]],[[42,38],39],[[18,38],39],[[3,38],39],[[23,38],39],[[11,38],[[41,[40]]]],[[11,38],[[41,[40]]]],[[12,38],[[41,[40]]]],[[12,38],[[41,[40]]]],[[24,38],[[41,[40]]]],[[14,[0,[43,44]]],14],[9,[[8,[10]]]],[[]],[20,5],[[[45,[6]]],5],[46,5],[47,5],[[]],[[[7,[6]]],5],[10,5],[48,5],[19,5],[[]],[[]],[[]],[[]],[[[49,[[17,[5]]]]],19],[[]],[[]],[50,42],[[]],[[]],[[]],[11,11],[[]],[12,12],[[]],[[]],[[[7,[6]]],[[41,[11,51]]]],[[[7,[6]]],[[41,[12,52]]]],[[[54,[53]]],[[41,[9]]]],[[],[[8,[23]]]],[[[54,[53]]],[[41,[9]]]],[[18,16],14],[10,[[41,[9,55]]]],[10,[[41,[11]]]],[10,[[41,[12,52]]]],[10,[[8,[23]]]],[13,[[41,[12,52]]]],[32,[[4,[19]]]],[[18,32],14],[9,22],[9,22],[[9,56]],[[11,56]],[[12,56]],[[24,56]],[[18,32],14],0,[14,14],[16,31],[[14,31],14],[19,31],[16,31],[19,31],[9,[[8,[[57,[10]]]]]],[9,[[8,[10]]]],0,[1,1],[[1,22],1],[1,1],[1,1],[[1,22],1],[[1,[17,[[8,[58]]]]],1],[[1,[17,[[8,[58]]]]],1],[[1,[17,[[8,[26]]]]],1],[[1,26],1],[[1,22],1],[[1,[17,[[8,[58]]]]],1],[1,1],0,[[1,22],1],[[1,59],1],[[9,[61,[60]]],10],[[9,62],10],[[9,[63,[60]]],10],[[9,[64,[60]]],10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[9,47],[37,22],[37,22],[12,22],[37,22],[37,22],[11,22],[12,22],[37,22],[12,22],[37,22],[11,22],[12,22],[9,22],[37,22],[12,22],[37,22],[42,22],[[9,10],[[41,[9,55]]]],[[14,[0,[43,44]]],14],[19,[[4,[65]]]],[[1,[17,[[8,[66]]]]],1],[[9,9],[[8,[47]]]],[[1,67],1],[16,11],[16,11],[[1,67],1],[[],1],[[11,9],16],[[],18],[1,1],[1,1],[1,1],[1,1],[[3,[8,[23]]],3],[1,1],[[],68],[9,69],[10,[[41,[9,55]]]],[[10,70],[[41,[9,55]]]],[[9,9],[[8,[25]]]],[[12,12],[[8,[25]]]],[[24,24],[[8,[25]]]],[9,[[8,[10]]]],[[18,32],14],[9,10],[9,[[8,[[72,[71]]]]]],[9,[[41,[73]]]],[[[74,[42]],75],[[77,[76]]]],[[[74,[42]],75,78],[[77,[76]]]],[[18,75],[[77,[41]]]],[[18,75],[[77,[41]]]],[[[74,[42]],75],[[77,[76]]]],[[[74,[42]],75,[7,[6]]],[[77,[[76,[79]]]]]],[[[74,[42]],75,[7,[80]]],[[77,[[76,[79]]]]]],[[1,[17,[[8,[26]]]]],1],[[1,79],1],[9,[[8,[13]]]],[9,[[8,[13]]]],[[18,32],14],[81],[[1,3],1],[[18,32],14],[[14,[0,[43,44]]],14],[9,[[8,[10]]]],[9,82],[9,[[84,[83]]]],0,[[1,85],1],[[1,22],1],[19,[[8,[86]]]],[[18,11,32],14],[[1,10,86],1],[[1,10,[7,[86]]],1],[9,10],[14,35],[[9,[8,[10]]]],[[9,[8,[10]]],[[41,[55]]]],[[9,66],41],[[9,[8,[10]]],41],[[9,10]],[[9,[8,[13]]],41],[[9,[8,[10]]]],[[9,10],41],[[9,10],41],[[9,28],[[41,[[45,[86,87]],88]]]],[37,[[8,[89]]]],[37,[[8,[12]]]],[19,12],[[1,[17,[[8,[26]]]]],1],[[1,22],1],[19,[[4,[47]]]],[[19,10],[[4,[47]]]],[[1,26],1],[16,[[8,[26]]]],[[14,26],14],[16,[[8,[26]]]],0,[[1,22],1],[[1,22],1],[9,[[41,[90]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],47],[[],47],[[],47],[[],47],[16,[[8,[16]]]],[14,[[8,[14]]]],[[],41],[[],41],[[],41],[[],41],[[[91,[[17,[5]]]]],[[4,[16]]]],[[],41],[[],41],[10,[[41,[9]]]],[[],41],[[],41],[[],41],[[],41],[[],41],[10,[[41,[11]]]],[[[7,[6]]],[[41,[11]]]],[[],41],[10,[[41,[12]]]],[[[7,[6]]],[[41,[12]]]],[[],41],[13,[[41,[12]]]],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[19,[[4,[42]]]],[9],[37,[[8,[9]]]],[16,9],[19,9],[37,[[8,[9]]]],[16,9],[[1,93],1],[1,1],[[1,[95,[94]]],1],[9,10],[16,24],[[14,24],14],[19,24],[16,24],[[37,9],37],[37,37],[[[0,[96,29,30]]],5],0,0,0,[97,98],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[31,99],22],[100],[94,[[7,[6]]]],[101,10],[101,[[7,[6]]]],[94,[[7,[6]]]],[101,10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[101,10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[31,79],[[],102],[31],[[[31,[103]]],[[31,[103]]]],[101,101],[94,94],[[]],[[]],[[]],[[94,94],25],[[31,104],22],[[],31],[31,105],[106],[105],[107],[[31,99],108],[[[31,[[109,[[109,[[109,[109]]]]]]]],[31,[[109,[[109,[[109,[109]]]]]]]]],22],[[[110,[[109,[[109,[[109,[109]]]]]]]],[110,[[109,[[109,[[109,[109]]]]]]]]],22],[[101,101],22],[[101,101],22],[[101,10],22],[[101,101],22],[[101,10],22],[[94,47],22],[[94,10],22],[[94,[7,[6]]],22],[[94,94],22],[[94,44],22],[[94,94],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[31,70]],[[31,70]],[[111,38],[[41,[40]]]],[[111,38],[[41,[40]]]],[[112,38],[[41,[40]]]],[[112,38],[[41,[40]]]],[[[31,[113]],38],[[41,[40]]]],[[[114,[113]],38],[[41,[40]]]],[[[115,[113]],38],[[41,[40]]]],[[[106,[113]],38],[[41,[40]]]],[[[116,[113]],38],[[41,[40]]]],[[[117,[113]],38],[[41,[40]]]],[[[118,[113]],38],[[41,[40]]]],[[[105,[113]],38],[[41,[40]]]],[[[110,[113]],38],[[41,[40]]]],[[[108,[113]],38],[[41,[40]]]],[[[119,[113]],38],[[41,[40]]]],[[[100,[113]],38],[[41,[40]]]],[[[120,[113]],38],[[41,[40]]]],[[[121,[113]],38],[[41,[40]]]],[[[107,[113]],38],[[41,[40]]]],[[101,38],[[41,[40]]]],[[101,38],[[41,[40]]]],[[94,38],[[41,[40]]]],[[122,38],[[41,[40]]]],[[122,38],[[41,[40]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[101,101],[123,94],[79,94],[124,94],[125,94],[58,94],[[]],[94,94],[126,94],[101,94],[13,94],[27,94],[[]],[[[7,[6]]],[[41,[101,111]]]],[[[7,[6]]],[[41,[94,112]]]],[70,31],[[[7,[6]]],[[41,[101,111]]]],[[[54,[[7,[6]]]]],[[41,[94,112]]]],[[[54,[[7,[6]]]]],94],[101,94],[10,101],[10,94],[10,[[41,[101,111]]]],[10,[[41,[94]]]],[10,[[41,[94,112]]]],[[31,104],8],[100],[[31,104],110],[[31,104],8],[100],[[101,56]],[[94,56]],[[31,104]],[[31,99],8],[119],[100],[119,100],[100,107],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[31,106],[31,115],[31,114],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[110,120],[110,120],[100,120],[100,121],[100,121],[[]],[[]],[[]],[119,101],[100],[31,22],[94,22],[94,22],[31,114],[110,120],[100,120],[31,115],[100,121],[108,101],[119,101],[100,101],[31,116],[31,79],[31,79],[94,79],[[],[[31,[94]]]],[114,8],[115,8],[106,8],[116,8],[117,8],[118,8],[105,8],[120,8],[121,8],[107,8],[120,8],[121,8],[[],127],[[],128],[[],127],[[],128],[108],[[108,129]],[[94,10],[[8,[25]]]],[[94,47],[[8,[25]]]],[[94,44],[[8,[25]]]],[[94,94],[[8,[25]]]],[[94,[7,[6]]],[[8,[25]]]],[[94,94],[[8,[25]]]],[81],[81],[81],[[31,104],8],[100],[100],[100],[[31,79]],[[94,22]],[114],[115],[106],[116],[117],[118],[105],[120],[107],[[],130],[[]],[[]],[[]],[94,[[41,[10,122]]]],[[],47],[[],47],[[],47],[[],47],[[31,104],[[41,[108,111]]]],[[],41],[[],41],[[[134,[[0,[131,132]],133]]],[[41,[[31,[135]]]]]],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[47,[[41,[101]]]],[[],41],[[[45,[6,87]]],[[41,[101]]]],[[[7,[6]]],[[41,[101]]]],[10,[[41,[101]]]],[47,[[41,[101]]]],[10,[[41,[94]]]],[[[45,[6,87]]],[[41,[94]]]],[47,[[41,[94]]]],[[],41],[47,[[41,[94]]]],[[[7,[6]]],[[41,[94]]]],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[31,117],[31,118],[79,31],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[[0,[28,29,30]]],85],[[],85],[[136,[17,[[137,[89]]]]],138],[[85,38],39],[[136,38],39],[[138,38],39],[136,138],[[]],[[]],[[]],[[]],[[]],[[]],[79,85],[[],85],[136,[[7,[9]]]],[[85,136],138],[136,12],[136,138],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],92],[[],92],[[],92],[136,9],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[2,2],[59,59],[67,67],[[]],[[]],[[]],[[67,67],25],[[67,67],22],[[],22],[[],22],[[2,38],39],[[59,38],39],[[67,38],39],[[]],[[]],[[]],[[[7,[6]]],[[4,[2]]]],[[[7,[6]]],[[4,[2]]]],[[[7,[6]]],[[4,[59]]]],[[]],[[]],[[]],[[67,67],[[8,[25]]]],[[]],[[]],[[]],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],92],[[],92],[[],92]],"c":[313],"p":[[3,"ClientBuilder"],[3,"Certificate"],[3,"Proxy"],[6,"Result"],[3,"Body"],[15,"u8"],[15,"slice"],[4,"Option"],[3,"Url"],[15,"str"],[3,"Method"],[3,"StatusCode"],[15,"u16"],[3,"RequestBuilder"],[8,"Display"],[3,"Request"],[8,"Into"],[3,"Client"],[3,"Response"],[3,"Bytes"],[8,"Stream"],[15,"bool"],[3,"NoProxy"],[3,"Version"],[4,"Ordering"],[3,"Duration"],[15,"u64"],[8,"Fn"],[8,"Send"],[8,"Sync"],[3,"HeaderMap"],[8,"IntoUrl"],[8,"Resolve"],[3,"Arc"],[8,"Future"],[3,"Extensions"],[3,"Error"],[3,"Formatter"],[6,"Result"],[3,"Error"],[4,"Result"],[3,"Upgraded"],[8,"Serialize"],[8,"Sized"],[3,"Vec"],[3,"File"],[3,"String"],[3,"Body"],[3,"Response"],[3,"Upgraded"],[3,"InvalidMethod"],[3,"InvalidStatusCode"],[3,"Path"],[8,"AsRef"],[4,"ParseError"],[8,"Hasher"],[4,"Host"],[15,"u32"],[3,"Identity"],[4,"Position"],[3,"Range"],[3,"RangeFull"],[3,"RangeTo"],[3,"RangeFrom"],[8,"DeserializeOwned"],[4,"IpAddr"],[3,"Version"],[3,"ParseOptions"],[4,"Origin"],[8,"IntoIterator"],[15,"char"],[3,"Split"],[3,"PathSegmentsMut"],[3,"Pin"],[3,"Context"],[6,"Result"],[4,"Poll"],[3,"ReadBuf"],[15,"usize"],[3,"IoSlice"],[3,"Demand"],[3,"Parse"],[3,"UrlQuery"],[3,"Serializer"],[3,"Policy"],[4,"SocketAddr"],[3,"Global"],[3,"Error"],[8,"Error"],[3,"PathBuf"],[3,"Request"],[3,"TypeId"],[8,"Any"],[3,"HeaderValue"],[8,"TryInto"],[8,"TryStream"],[3,"Name"],[6,"Resolving"],[8,"IntoHeaderName"],[3,"OccupiedEntry"],[3,"HeaderName"],[3,"Replacements"],[8,"Clone"],[8,"AsHeaderName"],[3,"Drain"],[3,"IntoIter"],[3,"ValueDrain"],[4,"Entry"],[8,"PartialEq"],[3,"GetAll"],[3,"InvalidHeaderName"],[3,"InvalidHeaderValue"],[8,"Debug"],[3,"Iter"],[3,"IterMut"],[3,"Keys"],[3,"Values"],[3,"ValuesMut"],[3,"VacantEntry"],[3,"ValueIter"],[3,"ValueIterMut"],[3,"ToStrError"],[15,"i32"],[15,"i16"],[15,"isize"],[15,"i64"],[3,"Recompositions"],[3,"Decompositions"],[8,"FnOnce"],[3,"StreamSafe"],[8,"Eq"],[8,"Hash"],[3,"RandomState"],[3,"HashMap"],[8,"TryFrom"],[3,"Attempt"],[3,"Box"],[3,"Action"],[8,"ResponseBuilderExt"]]},\ +"reqwest":{"doc":"reqwest","t":"SSSSDSSSSCDDSSDSSSSSSSSSSSSSSSSSCISSSSSSSSDSSSSSSSSDSSSSSSSSSSSSSDSSSSDDDIGSSSDSSSSSSSSSSDDSDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLGIGKRRRRRRRRRRRRRRRRRIRRRRRRRRRRRRRRRRDRRRERRDRDDDRRRRRIDDDDDDRRRRRNDRRRRRRRRRRRRRRRRRRRRRDRRRRRNDDDDDDRRRRRRLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDSSSSDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["ACCEPTED","ALREADY_REPORTED","BAD_GATEWAY","BAD_REQUEST","Body","CONFLICT","CONNECT","CONTINUE","CREATED","Certificate","Client","ClientBuilder","DELETE","EXPECTATION_FAILED","Error","FAILED_DEPENDENCY","FORBIDDEN","FOUND","GATEWAY_TIMEOUT","GET","GONE","HEAD","HTTP_09","HTTP_10","HTTP_11","HTTP_2","HTTP_3","HTTP_VERSION_NOT_SUPPORTED","IM_A_TEAPOT","IM_USED","INSUFFICIENT_STORAGE","INTERNAL_SERVER_ERROR","Identity","IntoUrl","LENGTH_REQUIRED","LOCKED","LOOP_DETECTED","METHOD_NOT_ALLOWED","MISDIRECTED_REQUEST","MOVED_PERMANENTLY","MULTIPLE_CHOICES","MULTI_STATUS","Method","NETWORK_AUTHENTICATION_REQUIRED","NON_AUTHORITATIVE_INFORMATION","NOT_ACCEPTABLE","NOT_EXTENDED","NOT_FOUND","NOT_IMPLEMENTED","NOT_MODIFIED","NO_CONTENT","NoProxy","OK","OPTIONS","PARTIAL_CONTENT","PATCH","PAYLOAD_TOO_LARGE","PAYMENT_REQUIRED","PERMANENT_REDIRECT","POST","PRECONDITION_FAILED","PRECONDITION_REQUIRED","PROCESSING","PROXY_AUTHENTICATION_REQUIRED","PUT","Proxy","RANGE_NOT_SATISFIABLE","REQUEST_HEADER_FIELDS_TOO_LARGE","REQUEST_TIMEOUT","RESET_CONTENT","Request","RequestBuilder","Response","ResponseBuilderExt","Result","SEE_OTHER","SERVICE_UNAVAILABLE","SWITCHING_PROTOCOLS","StatusCode","TEMPORARY_REDIRECT","TOO_MANY_REQUESTS","TRACE","UNAUTHORIZED","UNAVAILABLE_FOR_LEGAL_REASONS","UNPROCESSABLE_ENTITY","UNSUPPORTED_MEDIA_TYPE","UPGRADE_REQUIRED","URI_TOO_LONG","USE_PROXY","Upgraded","Url","VARIANT_ALSO_NEGOTIATES","Version","add_root_certificate","all","as_bytes","as_ref","as_ref","as_str","as_str","as_str","as_u16","authority","basic_auth","basic_auth","bearer_auth","body","body","body_mut","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build","build","build_split","builder","bytes","bytes_stream","call","call","cannot_be_a_base","canonical_reason","chunk","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","cmp","connect_timeout","connection_verbose","content_length","custom","danger_accept_invalid_certs","default","default","default","default","default","default","default_headers","delete","dns","dns_resolver","domain","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","error_for_status","error_for_status_ref","execute","extensions","extensions_mut","fetch_mode_no_cors","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","form","fragment","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_bytes","from_bytes","from_directory_path","from_env","from_file_path","from_parts","from_str","from_str","from_str","from_string","from_u16","get","get","has_authority","has_host","hash","hash","hash","hash","head","header","header","headers","headers","headers","headers_mut","headers_mut","host","host_str","http","http09_responses","http1_allow_obsolete_multiline_headers_in_responses","http1_only","http1_title_case_headers","http2_adaptive_window","http2_initial_connection_window_size","http2_initial_stream_window_size","http2_keep_alive_interval","http2_keep_alive_timeout","http2_keep_alive_while_idle","http2_max_frame_size","http2_prior_knowledge","https","https_only","identity","index","index","index","index","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_string","is_body","is_builder","is_client_error","is_connect","is_decode","is_idempotent","is_informational","is_redirect","is_redirection","is_request","is_safe","is_server_error","is_special","is_status","is_success","is_timeout","is_write_vectored","join","json","json","local_address","make_relative","max_tls_version","method","method_mut","min_tls_version","new","new","new","no_brotli","no_deflate","no_gzip","no_proxy","no_proxy","no_trust_dns","options","origin","parse","parse_with_params","partial_cmp","partial_cmp","partial_cmp","password","patch","path","path_segments","path_segments_mut","poll_flush","poll_read","poll_ready","poll_ready","poll_shutdown","poll_write","poll_write_vectored","pool_idle_timeout","pool_max_idle_per_host","port","port_or_known_default","post","provide","proxy","put","query","query","query_pairs","query_pairs_mut","redirect","redirect","referer","remote_addr","request","resolve","resolve_to_addrs","scheme","send","set_fragment","set_host","set_ip_host","set_password","set_path","set_port","set_query","set_scheme","set_username","socket_addrs","source","status","status","tcp_keepalive","tcp_nodelay","text","text_with_charset","timeout","timeout","timeout","timeout_mut","tls","tls_built_in_root_certs","tls_sni","to_file_path","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","try_clone","try_clone","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","upgrade","url","url","url","url","url_mut","url_mut","use_preconfigured_tls","use_rustls_tls","user_agent","username","version","version","version","version_mut","with_url","without_url","wrap_stream","Addrs","Resolve","Resolving","resolve","ACCEPT","ACCEPT_CHARSET","ACCEPT_ENCODING","ACCEPT_LANGUAGE","ACCEPT_RANGES","ACCESS_CONTROL_ALLOW_CREDENTIALS","ACCESS_CONTROL_ALLOW_HEADERS","ACCESS_CONTROL_ALLOW_METHODS","ACCESS_CONTROL_ALLOW_ORIGIN","ACCESS_CONTROL_EXPOSE_HEADERS","ACCESS_CONTROL_MAX_AGE","ACCESS_CONTROL_REQUEST_HEADERS","ACCESS_CONTROL_REQUEST_METHOD","AGE","ALLOW","ALT_SVC","AUTHORIZATION","AsHeaderName","CACHE_CONTROL","CACHE_STATUS","CDN_CACHE_CONTROL","CONNECTION","CONTENT_DISPOSITION","CONTENT_ENCODING","CONTENT_LANGUAGE","CONTENT_LENGTH","CONTENT_LOCATION","CONTENT_RANGE","CONTENT_SECURITY_POLICY","CONTENT_SECURITY_POLICY_REPORT_ONLY","CONTENT_TYPE","COOKIE","DATE","DNT","Drain","ETAG","EXPECT","EXPIRES","Entry","FORWARDED","FROM","GetAll","HOST","HeaderMap","HeaderName","HeaderValue","IF_MATCH","IF_MODIFIED_SINCE","IF_NONE_MATCH","IF_RANGE","IF_UNMODIFIED_SINCE","IntoHeaderName","IntoIter","InvalidHeaderName","InvalidHeaderValue","Iter","IterMut","Keys","LAST_MODIFIED","LINK","LOCATION","MAX_FORWARDS","ORIGIN","Occupied","OccupiedEntry","PRAGMA","PROXY_AUTHENTICATE","PROXY_AUTHORIZATION","PUBLIC_KEY_PINS","PUBLIC_KEY_PINS_REPORT_ONLY","RANGE","REFERER","REFERRER_POLICY","REFRESH","RETRY_AFTER","SEC_WEBSOCKET_ACCEPT","SEC_WEBSOCKET_EXTENSIONS","SEC_WEBSOCKET_KEY","SEC_WEBSOCKET_PROTOCOL","SEC_WEBSOCKET_VERSION","SERVER","SET_COOKIE","STRICT_TRANSPORT_SECURITY","TE","TRAILER","TRANSFER_ENCODING","ToStrError","UPGRADE","UPGRADE_INSECURE_REQUESTS","USER_AGENT","VARY","VIA","Vacant","VacantEntry","ValueDrain","ValueIter","ValueIterMut","Values","ValuesMut","WARNING","WWW_AUTHENTICATE","X_CONTENT_TYPE_OPTIONS","X_DNS_PREFETCH_CONTROL","X_FRAME_OPTIONS","X_XSS_PROTECTION","append","append","as_bytes","as_ref","as_ref","as_ref","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","cjk_compat_variants","clear","clone","clone","clone","clone_into","clone_into","clone_into","cmp","contains_key","default","drain","drop","drop","drop","entry","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","extend","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_bytes","from_bytes","from_iter","from_lowercase","from_maybe_shared","from_maybe_shared_unchecked","from_name","from_static","from_static","from_str","from_str","from_str","get","get","get_all","get_mut","get_mut","hash","hash","index","insert","insert","insert","insert_entry","insert_mult","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_key","into_mut","is_empty","is_empty","is_sensitive","iter","iter","iter","iter_mut","iter_mut","key","key","key","keys","keys_len","len","len","new","next","next","next","next","next","next","next","next","next","next","next_back","next_back","nfc","nfd","nfkc","nfkd","or_insert","or_insert_with","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","provide","provide","provide","remove","remove","remove_entry","remove_entry_mult","reserve","set_sensitive","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","stream_safe","to_owned","to_owned","to_owned","to_str","to_string","to_string","to_string","to_string","try_entry","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","values","values_mut","with_capacity","Action","Attempt","Policy","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","custom","default","error","fmt","fmt","fmt","follow","from","from","from","into","into","into","limited","none","previous","redirect","status","stop","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","url","Certificate","Identity","TLS_1_0","TLS_1_1","TLS_1_2","TLS_1_3","Version","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone_into","clone_into","clone_into","cmp","eq","equivalent","equivalent","fmt","fmt","fmt","from","from","from","from_der","from_pem","from_pem","into","into","into","partial_cmp","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"reqwest"],[494,"reqwest::dns"],[498,"reqwest::header"],[951,"reqwest::redirect"],[989,"reqwest::tls"]],"d":["202 Accepted [RFC7231, Section 6.3.3]","208 Already Reported [RFC5842]","502 Bad Gateway [RFC7231, Section 6.6.3]","400 Bad Request [RFC7231, Section 6.5.1]","An asynchronous request body.","409 Conflict [RFC7231, Section 6.5.8]","CONNECT","100 Continue [RFC7231, Section 6.2.1]","201 Created [RFC7231, Section 6.3.2]","","An asynchronous Client to make Requests with.","A ClientBuilder can be used to create a Client with custom …","DELETE","417 Expectation Failed [RFC7231, Section 6.5.14]","The Errors that may occur when processing a Request.","424 Failed Dependency [RFC4918]","403 Forbidden [RFC7231, Section 6.5.3]","302 Found [RFC7231, Section 6.4.3]","504 Gateway Timeout [RFC7231, Section 6.6.5]","GET","410 Gone [RFC7231, Section 6.5.9]","HEAD","HTTP/0.9","HTTP/1.0","HTTP/1.1","HTTP/2.0","HTTP/3.0","505 HTTP Version Not Supported [RFC7231, Section 6.6.6]","418 I’m a teapot [curiously not registered by IANA but …","226 IM Used [RFC3229]","507 Insufficient Storage [RFC4918]","500 Internal Server Error [RFC7231, Section 6.6.1]","","A trait to try to convert some type into a Url.","411 Length Required [RFC7231, Section 6.5.10]","423 Locked [RFC4918]","508 Loop Detected [RFC5842]","405 Method Not Allowed [RFC7231, Section 6.5.5]","421 Misdirected Request RFC7540, Section 9.1.2","301 Moved Permanently [RFC7231, Section 6.4.2]","300 Multiple Choices [RFC7231, Section 6.4.1]","207 Multi-Status [RFC4918]","The Request Method (VERB)","511 Network Authentication Required [RFC6585]","203 Non-Authoritative Information [RFC7231, Section 6.3.4]","406 Not Acceptable [RFC7231, Section 6.5.6]","510 Not Extended [RFC2774]","404 Not Found [RFC7231, Section 6.5.4]","501 Not Implemented [RFC7231, Section 6.6.2]","304 Not Modified [RFC7232, Section 4.1]","204 No Content [RFC7231, Section 6.3.5]","A configuration for filtering out requests that shouldn’…","200 OK [RFC7231, Section 6.3.1]","OPTIONS","206 Partial Content [RFC7233, Section 4.1]","PATCH","413 Payload Too Large [RFC7231, Section 6.5.11]","402 Payment Required [RFC7231, Section 6.5.2]","308 Permanent Redirect [RFC7238]","POST","412 Precondition Failed [RFC7232, Section 4.2]","428 Precondition Required [RFC6585]","102 Processing [RFC2518]","407 Proxy Authentication Required [RFC7235, Section 3.2]","PUT","Configuration of a proxy that a Client should pass …","416 Range Not Satisfiable [RFC7233, Section 4.4]","431 Request Header Fields Too Large [RFC6585]","408 Request Timeout [RFC7231, Section 6.5.7]","205 Reset Content [RFC7231, Section 6.3.6]","A request which can be executed with Client::execute().","A builder to construct the properties of a Request.","A Response to a submitted Request.","Extension trait for http::response::Builder objects","A Result alias where the Err case is reqwest::Error.","303 See Other [RFC7231, Section 6.4.4]","503 Service Unavailable [RFC7231, Section 6.6.4]","101 Switching Protocols [RFC7231, Section 6.2.2]","An HTTP status code (status-code in RFC 7230 et al.).","307 Temporary Redirect [RFC7231, Section 6.4.7]","429 Too Many Requests [RFC6585]","TRACE","401 Unauthorized [RFC7235, Section 3.1]","451 Unavailable For Legal Reasons [RFC7725]","422 Unprocessable Entity [RFC4918]","415 Unsupported Media Type [RFC7231, Section 6.5.13]","426 Upgrade Required [RFC7231, Section 6.5.15]","414 URI Too Long [RFC7231, Section 6.5.12]","305 Use Proxy [RFC7231, Section 6.4.5]","An upgraded HTTP connection.","A parsed URL record.","506 Variant Also Negotiates [RFC2295]","Represents a version of the HTTP spec.","Add a custom root certificate.","Proxy all traffic to the passed URL.","Returns a reference to the internal data of the Body.","","","Return the serialization of this URL.","Return a &str representation of the HTTP method","Returns a &str representation of the StatusCode","Returns the u16 corresponding to this StatusCode.","Return the authority of this URL as an ASCII string.","Enable HTTP basic authentication.","Set the Proxy-Authorization header using Basic auth.","Enable HTTP bearer authentication.","Get the body.","Set the request body.","Get a mutable reference to the body.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns a Client that uses this ClientBuilder …","Build a Request, which can be inspected, modified and …","Build a Request, which can be inspected, modified and …","Creates a ClientBuilder to configure a Client.","Get the full response body as Bytes.","Convert the response into a Stream of Bytes from the body.","","","Return whether this URL is a cannot-be-a-base URL, meaning …","Get the standardised reason-phrase for this status code.","Stream a chunk of the response body.","","","","","","","","","","","","","","","","","","Set a timeout for only the connect phase of a Client.","Set whether connections should emit verbose logs.","Get the content-length of this response, if known.","Provide a custom function to determine what traffic to …","Controls the use of certificate validation.","","","","","","","Sets the default headers for every request.","Convenience method to make a DELETE request to a URL.","DNS resolution","Override the DNS resolver implementation.","If this URL has a host and it is a domain name (not an IP …","","","","","","","","","","","","","","","","","","Turn a response into an error if the server returned an …","Turn a reference to a response into an error if the server …","Executes a Request.","Returns a reference to the associated extensions.","Returns a mutable reference to the associated extensions.","Disable CORS on fetching the request.","","","","","","","","","","","","","","","","","","","Send a form body.","Return this URL’s fragment identifier, if any.","Returns the argument unchanged.","","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Converts a slice of bytes to an HTTP method.","Converts a &u8 to a status code","Convert a directory name as std::path::Path into an URL in …","Returns a new no-proxy configuration based on environment …","Convert a file name as std::path::Path into an URL in the …","Assemble a builder starting from an existing Client and a …","","","","Returns a new no-proxy configuration based on a no_proxy …","Converts a u16 to a status code.","Shortcut method to quickly make a GET request.","Convenience method to make a GET request to a URL.","Return whether the URL has an ‘authority’, which can …","Equivalent to url.host().is_some().","","","","","Convenience method to make a HEAD request to a URL.","HTTP header types","Add a Header to this Request.","Get the headers.","Add a set of Headers to the existing ones on this Request.","Get the Headers of this Response.","Get a mutable reference to the headers.","Get a mutable reference to the Headers of this Response.","Return the parsed representation of the host for this URL. …","Return the string representation of the host (domain or IP …","Proxy all HTTP traffic to the passed URL.","Allow HTTP/0.9 responses","Set whether HTTP/1 connections will accept obsolete line …","Only use HTTP/1.","Send headers as title case instead of lowercase.","Sets whether to use an adaptive flow control.","Sets the max connection-level flow control for HTTP2","Sets the SETTINGS_INITIAL_WINDOW_SIZE option for HTTP2 …","Sets an interval for HTTP2 Ping frames should be sent to …","Sets a timeout for receiving an acknowledgement of the …","Sets whether HTTP2 keep-alive should apply while the …","Sets the maximum frame size to use for HTTP2.","Only use HTTP/2.","Proxy all HTTPS traffic to the passed URL.","Restrict the Client to be used with HTTPS only requests.","Sets the identity to be used for client certificate …","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return the serialization of this URL.","Returns true if the error is related to the request or …","Returns true if the error is from a type Builder.","Check if status is within 400-499.","Returns true if the error is related to connect","Returns true if the error is related to decoding the …","Whether a method is considered “idempotent”, meaning …","Check if status is within 100-199.","Returns true if the error is from a RedirectPolicy.","Check if status is within 300-399.","Returns true if the error is related to the request","Whether a method is considered “safe”, meaning the …","Check if status is within 500-599.","Return whether the URL is special (has a special scheme)","Returns true if the error is from …","Check if status is within 200-299.","Returns true if the error is related to a timeout.","","Parse a string as an URL, with this URL as the base URL.","Send a JSON body.","Try to deserialize the response body as JSON.","Bind to a local IP Address.","Creates a relative URL if possible, with this URL as the …","Set the maximum allowed TLS version for connections.","Get the method.","Get a mutable reference to the method.","Set the minimum required TLS version for connections.","Constructs a new ClientBuilder.","Constructs a new request.","Constructs a new Client.","Disable auto response body brotli decompression.","Disable auto response body deflate decompression.","Disable auto response body gzip decompression.","Clear all Proxies, so Client will use no proxy anymore.","Adds a No Proxy exclusion list to this Proxy","Disables the trust-dns async resolver.","Return a default ParseOptions that can fully configure the …","Return the origin of this URL (…","Parse an absolute URL from a string.","Parse an absolute URL from a string and add params to its …","","","","Return the password for this URL, if any, as a …","Convenience method to make a PATCH request to a URL.","Return the path for this URL, as a percent-encoded ASCII …","Unless this URL is cannot-be-a-base, return an iterator of …","Return an object with methods to manipulate this URL’s …","","","","","","","","Set an optional timeout for idle sockets being kept-alive.","Sets the maximum idle connection per host allowed in the …","Return the port number for this URL, if any.","Return the port number for this URL, or the default port …","Convenience method to make a POST request to a URL.","","Add a Proxy to the list of proxies the Client will use.","Convenience method to make a PUT request to a URL.","Modify the query string of the URL.","Return this URL’s query string, if any, as a …","Parse the URL’s query string, if any, as …","Manipulate this URL’s query string, viewed as a sequence …","Redirect Handling","Set a RedirectPolicy for this client.","Enable or disable automatic setting of the Referer header.","Get the remote address used to get this Response.","Start building a Request with the Method and Url.","Override DNS resolution for specific domains to a …","Override DNS resolution for specific domains to particular …","Return the scheme of this URL, lower-cased, as an ASCII …","Constructs the Request and sends it to the target URL, …","Change this URL’s fragment identifier.","Change this URL’s host.","Change this URL’s host to the given IP address.","Change this URL’s password.","Change this URL’s path.","Change this URL’s port number.","Change this URL’s query string.","Change this URL’s scheme.","Change this URL’s username.","Resolve a URL’s host and port number to SocketAddr.","","Returns the status code, if the error was generated from a …","Get the StatusCode of this Response.","Set that all sockets have SO_KEEPALIVE set with the …","Set whether sockets have TCP_NODELAY enabled.","Get the full response text.","Get the full response text given a specific encoding.","Enables a request timeout.","Get the timeout.","Enables a request timeout.","Get a mutable reference to the timeout.","TLS configuration","Controls the use of built-in/preloaded certificates during …","Controls the use of TLS server name indication.","Assuming the URL is in the file scheme or similar, convert …","","","","","","","","","","","","Attempt to clone the request.","Attempt to clone the RequestBuilder.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Consumes the response and returns a future for a possible …","A builder method for the http::response::Builder type that …","Returns a possible URL related to this error.","Get the url.","Get the final Url of this Response.","Returns a mutable reference to the URL related to this …","Get a mutable reference to the url.","Use a preconfigured TLS backend.","Force using the Rustls TLS backend.","Sets the User-Agent header to be used by this client.","Return the username for this URL (typically the empty …","Get the http version.","Set HTTP version","Get the HTTP Version of this Response.","Get a mutable reference to the http version.","Add a url related to this error (overwriting any existing)","Strip the related url from this error (if, for example, it …","Wrap a futures Stream in a box inside Body.","Alias for an Iterator trait object over SocketAddr.","Trait for customizing DNS resolution in reqwest.","Alias for the Future type returned by a DNS resolver.","Performs DNS resolution on a Name. The return type is a …","Advertises which content types the client is able to …","Advertises which character set the client is able to …","Advertises which content encoding the client is able to …","Advertises which languages the client is able to …","Marker used by the server to advertise partial request …","Preflight response indicating if the response to the …","Preflight response indicating permitted HTTP headers.","Preflight header response indicating permitted access …","Indicates whether the response can be shared with …","Indicates which headers can be exposed as part of the …","Indicates how long the results of a preflight request can …","Informs the server which HTTP headers will be used when an …","Informs the server know which HTTP method will be used …","Indicates the time in seconds the object has been in a …","Lists the set of methods support by a resource.","Advertises the availability of alternate services to …","Contains the credentials to authenticate a user agent with …","A marker trait used to identify values that can be used as …","Specifies directives for caching mechanisms in both …","Indicates how caches have handled a response and its …","Specifies directives that allow origin servers to control …","Controls whether or not the network connection stays open …","Indicates if the content is expected to be displayed …","Used to compress the media-type.","Used to describe the languages intended for the audience.","Indicates the size of the entity-body.","Indicates an alternate location for the returned data.","Indicates where in a full body message a partial message …","Allows controlling resources the user agent is allowed to …","Allows experimenting with policies by monitoring their …","Used to indicate the media type of the resource.","Contains stored HTTP cookies previously sent by the server …","Contains the date and time at which the message was …","Indicates the client’s tracking preference.","A drain iterator for HeaderMap.","Identifier for a specific version of a resource.","Indicates expectations that need to be fulfilled by the …","Contains the date/time after which the response is …","A view into a single location in a HeaderMap, which may be …","Contains information from the client-facing side of proxy …","Contains an Internet email address for a human user who …","A view to all values stored in a single entry.","Specifies the domain name of the server and (optionally) …","A set of HTTP headers","Represents an HTTP header field name","Represents an HTTP header field value.","Makes a request conditional based on the E-Tag.","Makes a request conditional based on the modification date.","Makes a request conditional based on the E-Tag.","Makes a request conditional based on range.","Makes the request conditional based on the last …","A marker trait used to identify values that can be used as …","An owning iterator over the entries of a HeaderMap.","A possible error when converting a HeaderName from another …","A possible error when converting a HeaderValue from a …","HeaderMap entry iterator.","HeaderMap mutable entry iterator","An iterator over HeaderMap keys.","Content-Types that are acceptable for the response.","Allows the server to point an interested client to another …","Indicates the URL to redirect a page to.","Indicates the max number of intermediaries the request …","Indicates where a fetch originates from.","An occupied entry","A view into a single occupied location in a HeaderMap.","HTTP/1.0 header usually used for backwards compatibility.","Defines the authentication method that should be used to …","Contains the credentials to authenticate a user agent to a …","Associates a specific cryptographic public key with a …","Sends reports of pinning violation to the report-uri …","Indicates the part of a document that the server should …","Contains the address of the previous web page from which a …","Governs which referrer information should be included with …","Informs the web browser that the current page or frame …","The Retry-After response HTTP header indicates how long …","The |Sec-WebSocket-Accept| header field is used in the …","The |Sec-WebSocket-Extensions| header field is used in the …","The |Sec-WebSocket-Key| header field is used in the …","The |Sec-WebSocket-Protocol| header field is used in the …","The |Sec-WebSocket-Version| header field is used in the …","Contains information about the software used by the origin …","Used to send cookies from the server to the user agent.","Tells the client to communicate with HTTPS instead of …","Informs the server of transfer encodings willing to be …","Allows the sender to include additional fields at the end …","Specifies the form of encoding used to safely transfer the …","A possible error when converting a HeaderValue to a string …","Used as part of the exchange to upgrade the protocol.","Sends a signal to the server expressing the client’s …","Contains a string that allows identifying the requesting …","Determines how to match future requests with cached …","Added by proxies to track routing.","A vacant entry","A view into a single empty location in a HeaderMap.","An drain iterator of all values associated with a single …","An iterator of all values associated with a single header …","A mutable iterator of all values associated with a single …","HeaderMap value iterator.","HeaderMap mutable value iterator","General HTTP header contains information about possible …","Defines the authentication method that should be used to …","Marker used by the server to indicate that the MIME types …","Controls DNS prefetching.","Indicates whether or not a browser should be allowed to …","Stop pages from loading when an XSS attack is detected.","Inserts a key-value pair into the map.","Insert the value into the entry.","Converts a HeaderValue to a byte slice.","","","","Returns a str representation of the header.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of headers the map can hold without …","","Clears the map, removing all key-value pairs. Keeps the …","","","","","","","","Returns true if the map contains a value for the specified …","","Clears the map, returning all entries as an iterator.","","","","Gets the given key’s corresponding entry in the map for …","","","","","Performs a case-insensitive comparison of the string …","","Performs a case-insensitive comparison of the string …","","","","","","","","","","","","","","Extend a HeaderMap with the contents of another HeaderMap.","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Converts a slice of bytes to an HTTP header name.","Attempt to convert a byte slice to a HeaderValue.","","Converts a slice of bytes to an HTTP header name.","Attempt to convert a Bytes buffer to a HeaderValue.","Convert a Bytes directly into a HeaderValue without …","Converts a HeaderName into a HeaderValue","Converts a static string to a HTTP header name.","Convert a static string to a HeaderValue.","","","Attempt to convert a string to a HeaderValue.","Returns a reference to the value associated with the key.","Get a reference to the first value in the entry.","Returns a view of all values associated with a key.","Returns a mutable reference to the value associated with …","Get a mutable reference to the first value in the entry.","","","Panics","Inserts a key-value pair into the map.","Insert the value into the entry.","Sets the value of the entry.","Insert the value into the entry.","Sets the value of the entry.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a consuming iterator, that is, one that moves keys …","","","","","","","","","","","","","","","","","","Take ownership of the key","Converts the OccupiedEntry into a mutable reference to the …","Returns true if the map contains no elements.","Returns true if the HeaderValue has a length of zero bytes.","Returns true if the value represents sensitive data.","An iterator visiting all key-value pairs.","Returns an iterator visiting all values associated with …","Returns an iterator visiting all values associated with …","An iterator visiting all key-value pairs, with mutable …","Returns an iterator mutably visiting all values associated …","Returns a reference to the entry’s key","Returns a reference to the entry’s key","Returns a reference to the entry’s key.","An iterator visiting all keys.","Returns the number of keys stored in the map.","Returns the number of headers stored in the map.","Returns the length of self.","Create an empty HeaderMap.","","","","","","","","","","","","","","","","","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the result of …","","","","","","","","","","Removes a key from the map, returning the value associated …","Remove the entry from the map.","Remove the entry from the map.","Remove the entry from the map.","Reserves capacity for at least additional more headers to …","Mark that the header value represents sensitive …","","","","","","","","","","","","","","Yields a &str slice if the HeaderValue only contains …","","","","","Gets the given key’s corresponding entry in the map for …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","An iterator visiting all values.","An iterator visiting all values mutably.","Create an empty HeaderMap with the specified capacity.","An action to perform when a redirect status code is found.","A type that holds information on the next request and …","A type that controls the policy on how to handle the …","","","","","","","Create a custom Policy using the passed function.","","Returns an action failing the redirect with an error.","","","","Returns an action meaning reqwest should follow the next …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Create a Policy with a maximum number of redirects.","Create a Policy that does not follow any redirect.","Get the list of previous URLs that have already been …","Apply this policy to a given Attempt to produce a Action.","Get the type of redirect.","Returns an action meaning reqwest should not follow the …","","","","","","","","","","Get the next URL to redirect to.","Represents a server X509 certificate.","Represents a private key and X509 cert as a client …","Version 1.0 of the TLS protocol.","Version 1.1 of the TLS protocol.","Version 1.2 of the TLS protocol.","Version 1.3 of the TLS protocol.","A TLS protocol version.","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a Certificate from a binary DER encoded certificate","Create a Certificate from a PEM encoded certificate","Parses PEM encoded private key and certificate.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","",""],"i":[12,12,12,12,0,12,11,12,12,0,0,0,11,12,0,12,12,12,12,11,12,11,24,24,24,24,24,12,12,12,12,12,0,0,12,12,12,12,12,12,12,12,0,12,12,12,12,12,12,12,12,0,12,11,12,11,12,12,12,11,12,12,12,12,11,0,12,12,12,12,0,0,0,0,0,12,12,12,0,12,12,11,12,12,12,12,12,12,12,0,0,12,0,1,3,5,9,11,9,11,12,12,9,14,3,14,16,14,16,37,5,1,16,14,19,9,42,18,3,23,11,12,24,37,5,1,16,14,19,9,42,18,3,23,11,12,24,1,14,14,18,19,19,18,18,9,12,19,9,18,3,23,11,12,24,9,18,3,23,11,12,24,9,12,24,1,1,19,3,1,1,18,23,11,12,24,1,18,0,1,9,9,11,11,11,11,11,12,12,24,9,9,11,11,12,12,24,24,19,19,18,19,19,14,37,37,5,1,16,14,19,9,9,42,18,3,23,11,11,12,12,24,14,9,37,5,5,5,5,5,5,5,5,5,1,16,14,19,19,9,42,42,18,3,23,11,11,12,12,24,11,12,9,23,9,14,9,11,12,23,12,0,18,9,9,9,11,12,24,18,0,14,16,14,19,16,19,9,9,3,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,9,9,9,9,37,5,1,16,14,19,9,42,18,3,23,11,12,24,9,37,37,12,37,37,11,12,37,12,37,11,12,9,37,12,37,42,9,14,19,1,9,1,16,16,1,1,16,18,1,1,1,1,3,1,9,9,9,9,9,12,24,9,18,9,9,9,42,42,18,18,42,42,42,1,1,9,9,18,37,1,18,14,9,9,9,0,1,1,19,18,1,1,9,14,9,9,9,9,9,9,9,9,9,9,37,37,19,1,1,19,19,1,16,14,16,0,1,1,9,9,18,3,23,11,12,24,37,9,11,12,16,14,37,5,1,16,16,14,19,9,9,42,18,3,23,11,11,11,12,12,12,12,24,37,5,1,16,14,19,9,42,18,3,23,11,12,24,37,5,1,16,14,19,9,42,18,3,23,11,12,24,19,139,37,16,19,37,16,1,1,1,9,16,14,19,16,37,37,5,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,31,100,94,101,101,94,101,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,101,94,122,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,94,122,31,107,31,31,101,94,31,101,94,94,31,31,31,106,105,107,31,31,110,101,101,101,101,101,94,94,94,94,94,94,31,31,101,101,94,94,31,31,111,111,112,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,101,94,122,122,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,101,94,94,94,94,94,94,94,94,94,94,94,122,101,94,31,101,94,94,94,101,94,101,94,94,31,100,31,31,100,101,94,31,31,119,100,119,100,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,94,122,31,31,31,114,115,106,116,117,118,105,110,110,100,100,100,120,121,107,119,100,31,94,94,31,110,100,31,100,108,119,100,31,31,31,94,31,114,115,106,116,117,118,105,120,121,107,120,121,107,107,107,107,108,108,94,94,94,94,94,94,111,112,122,31,100,100,100,31,94,114,115,106,116,117,118,105,120,107,107,31,101,94,94,111,112,101,122,31,111,112,31,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,101,101,101,101,101,94,94,94,94,94,94,122,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,94,122,111,112,31,114,115,106,116,117,118,105,110,108,119,100,120,121,107,101,94,122,31,31,31,0,0,0,85,136,138,85,136,138,85,85,136,85,136,138,136,85,136,138,85,136,138,85,85,136,85,136,136,85,136,138,85,136,138,85,136,138,136,0,0,67,67,67,67,0,2,59,67,2,59,67,2,59,67,2,59,67,67,67,67,67,2,59,67,2,59,67,2,2,59,2,59,67,67,2,59,67,2,59,67,2,59,67,2,59,67],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],1],0,[5,[[8,[[7,[6]]]]]],[9,10],[11,10],[9,10],[11,10],[12,10],[12,13],[9,10],[[14,15,[8,[15]]],14],[[3,10,10],3],[[14,15],14],[16,[[8,[5]]]],[[14,[17,[5]]],14],[16,[[8,[5]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,[[4,[18]]]],[14,[[4,[16]]]],[14],[[],1],[19,[[4,[20]]]],[19,21],[[18,16]],[[18,16]],[9,22],[12,[[8,[10]]]],[19,[[4,[[8,[20]]]]]],[9,9],[18,18],[3,3],[23,23],[11,11],[12,12],[24,24],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[9,9],25],[[12,12],25],[[24,24],25],[[1,26],1],[[1,22],1],[19,[[8,[27]]]],[[[0,[28,29,30]]],3],[[1,22],1],[[],1],[[],18],[[],23],[[],11],[[],12],[[],24],[[1,31],1],[[18,32],14],0,[[1,[34,[33]]],1],[9,[[8,[10]]]],[[9,9],22],[[11,11],22],[[11,10],22],[[11,11],22],[[11,10],22],[[11,11],22],[[12,13],22],[[12,12],22],[[24,24],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[19,[[4,[19]]]],[19,[[4,[19]]]],[[18,16],35],[19,36],[19,36],[14,14],[[37,38],39],[[37,38],39],[[5,38],39],[[1,38],39],[[16,38],39],[[14,38],39],[[19,38],39],[[9,38],[[41,[40]]]],[[9,38],[[41,[40]]]],[[42,38],39],[[18,38],39],[[3,38],39],[[23,38],39],[[11,38],[[41,[40]]]],[[11,38],[[41,[40]]]],[[12,38],[[41,[40]]]],[[12,38],[[41,[40]]]],[[24,38],[[41,[40]]]],[[14,[0,[43,44]]],14],[9,[[8,[10]]]],[[]],[45,5],[[[46,[6]]],5],[47,5],[[]],[19,5],[20,5],[48,5],[10,5],[[[7,[6]]],5],[[]],[[]],[[]],[[[49,[[17,[5]]]]],19],[[]],[[]],[50,42],[[]],[[]],[[]],[[]],[11,11],[[]],[[]],[12,12],[[]],[[[7,[6]]],[[41,[11,51]]]],[[[7,[6]]],[[41,[12,52]]]],[[[54,[53]]],[[41,[9]]]],[[],[[8,[23]]]],[[[54,[53]]],[[41,[9]]]],[[18,16],14],[10,[[41,[9,55]]]],[10,[[41,[11]]]],[10,[[41,[12,52]]]],[10,[[8,[23]]]],[13,[[41,[12,52]]]],[32,[[4,[19]]]],[[18,32],14],[9,22],[9,22],[[9,56]],[[11,56]],[[12,56]],[[24,56]],[[18,32],14],0,[14,14],[16,31],[[14,31],14],[19,31],[16,31],[19,31],[9,[[8,[[57,[10]]]]]],[9,[[8,[10]]]],0,[1,1],[[1,22],1],[1,1],[1,1],[[1,22],1],[[1,[17,[[8,[58]]]]],1],[[1,[17,[[8,[58]]]]],1],[[1,[17,[[8,[26]]]]],1],[[1,26],1],[[1,22],1],[[1,[17,[[8,[58]]]]],1],[1,1],0,[[1,22],1],[[1,59],1],[[9,[61,[60]]],10],[[9,[62,[60]]],10],[[9,[63,[60]]],10],[[9,64],10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[9,45],[37,22],[37,22],[12,22],[37,22],[37,22],[11,22],[12,22],[37,22],[12,22],[37,22],[11,22],[12,22],[9,22],[37,22],[12,22],[37,22],[42,22],[[9,10],[[41,[9,55]]]],[[14,[0,[43,44]]],14],[19,[[4,[65]]]],[[1,[17,[[8,[66]]]]],1],[[9,9],[[8,[45]]]],[[1,67],1],[16,11],[16,11],[[1,67],1],[[],1],[[11,9],16],[[],18],[1,1],[1,1],[1,1],[1,1],[[3,[8,[23]]],3],[1,1],[[],68],[9,69],[10,[[41,[9,55]]]],[[10,70],[[41,[9,55]]]],[[9,9],[[8,[25]]]],[[12,12],[[8,[25]]]],[[24,24],[[8,[25]]]],[9,[[8,[10]]]],[[18,32],14],[9,10],[9,[[8,[[72,[71]]]]]],[9,[[41,[73]]]],[[[74,[42]],75],[[77,[76]]]],[[[74,[42]],75,78],[[77,[76]]]],[[18,75],[[77,[41]]]],[[18,75],[[77,[41]]]],[[[74,[42]],75],[[77,[76]]]],[[[74,[42]],75,[7,[6]]],[[77,[[76,[79]]]]]],[[[74,[42]],75,[7,[80]]],[[77,[[76,[79]]]]]],[[1,[17,[[8,[26]]]]],1],[[1,79],1],[9,[[8,[13]]]],[9,[[8,[13]]]],[[18,32],14],[81],[[1,3],1],[[18,32],14],[[14,[0,[43,44]]],14],[9,[[8,[10]]]],[9,82],[9,[[84,[83]]]],0,[[1,85],1],[[1,22],1],[19,[[8,[86]]]],[[18,11,32],14],[[1,10,86],1],[[1,10,[7,[86]]],1],[9,10],[14,35],[[9,[8,[10]]]],[[9,[8,[10]]],[[41,[55]]]],[[9,66],41],[[9,[8,[10]]],41],[[9,10]],[[9,[8,[13]]],41],[[9,[8,[10]]]],[[9,10],41],[[9,10],41],[[9,28],[[41,[[46,[86,87]],88]]]],[37,[[8,[89]]]],[37,[[8,[12]]]],[19,12],[[1,[17,[[8,[26]]]]],1],[[1,22],1],[19,[[4,[45]]]],[[19,10],[[4,[45]]]],[[1,26],1],[16,[[8,[26]]]],[[14,26],14],[16,[[8,[26]]]],0,[[1,22],1],[[1,22],1],[9,[[41,[90]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],45],[[],45],[[],45],[[],45],[16,[[8,[16]]]],[14,[[8,[14]]]],[[],41],[[],41],[[],41],[[[91,[[17,[5]]]]],[[4,[16]]]],[[],41],[[],41],[[],41],[[],41],[10,[[41,[9]]]],[[],41],[[],41],[[],41],[[],41],[[[7,[6]]],[[41,[11]]]],[10,[[41,[11]]]],[[],41],[10,[[41,[12]]]],[[[7,[6]]],[[41,[12]]]],[[],41],[13,[[41,[12]]]],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[19,[[4,[42]]]],[9],[37,[[8,[9]]]],[16,9],[19,9],[37,[[8,[9]]]],[16,9],[[1,93],1],[1,1],[[1,[95,[94]]],1],[9,10],[16,24],[[14,24],14],[19,24],[16,24],[[37,9],37],[37,37],[[[0,[96,29,30]]],5],0,0,0,[97,98],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[31,99],22],[100],[94,[[7,[6]]]],[101,10],[101,[[7,[6]]]],[94,[[7,[6]]]],[101,10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[101,10],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[31,79],[[],102],[31],[[[31,[103]]],[[31,[103]]]],[101,101],[94,94],[[]],[[]],[[]],[[94,94],25],[[31,104],22],[[],31],[31,105],[106],[105],[107],[[31,99],108],[[[31,[[109,[[109,[[109,[109]]]]]]]],[31,[[109,[[109,[[109,[109]]]]]]]]],22],[[[110,[[109,[[109,[[109,[109]]]]]]]],[110,[[109,[[109,[[109,[109]]]]]]]]],22],[[101,101],22],[[101,101],22],[[101,10],22],[[101,101],22],[[101,10],22],[[94,45],22],[[94,10],22],[[94,[7,[6]]],22],[[94,94],22],[[94,44],22],[[94,94],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[],22],[[31,70]],[[31,70]],[[111,38],[[41,[40]]]],[[111,38],[[41,[40]]]],[[112,38],[[41,[40]]]],[[112,38],[[41,[40]]]],[[[31,[113]],38],[[41,[40]]]],[[[114,[113]],38],[[41,[40]]]],[[[115,[113]],38],[[41,[40]]]],[[[106,[113]],38],[[41,[40]]]],[[[116,[113]],38],[[41,[40]]]],[[[117,[113]],38],[[41,[40]]]],[[[118,[113]],38],[[41,[40]]]],[[[105,[113]],38],[[41,[40]]]],[[[110,[113]],38],[[41,[40]]]],[[[108,[113]],38],[[41,[40]]]],[[[119,[113]],38],[[41,[40]]]],[[[100,[113]],38],[[41,[40]]]],[[[120,[113]],38],[[41,[40]]]],[[[121,[113]],38],[[41,[40]]]],[[[107,[113]],38],[[41,[40]]]],[[101,38],[[41,[40]]]],[[101,38],[[41,[40]]]],[[94,38],[[41,[40]]]],[[122,38],[[41,[40]]]],[[122,38],[[41,[40]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[101,101],[123,94],[79,94],[124,94],[125,94],[58,94],[[]],[94,94],[126,94],[101,94],[13,94],[27,94],[[]],[[[7,[6]]],[[41,[101,111]]]],[[[7,[6]]],[[41,[94,112]]]],[70,31],[[[7,[6]]],[[41,[101,111]]]],[[[54,[[7,[6]]]]],[[41,[94,112]]]],[[[54,[[7,[6]]]]],94],[101,94],[10,101],[10,94],[10,[[41,[101,111]]]],[10,[[41,[94]]]],[10,[[41,[94,112]]]],[[31,104],8],[100],[[31,104],110],[[31,104],8],[100],[[101,56]],[[94,56]],[[31,104]],[[31,99],8],[119],[100],[119,100],[100,107],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[31,106],[31,115],[31,114],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[110,120],[110,120],[100,120],[100,121],[100,121],[[]],[[]],[[]],[119,101],[100],[31,22],[94,22],[94,22],[31,114],[110,120],[100,120],[31,115],[100,121],[108,101],[119,101],[100,101],[31,116],[31,79],[31,79],[94,79],[[],[[31,[94]]]],[114,8],[115,8],[106,8],[116,8],[117,8],[118,8],[105,8],[120,8],[121,8],[107,8],[120,8],[121,8],[[],127],[[],128],[[],127],[[],128],[108],[[108,129]],[[94,10],[[8,[25]]]],[[94,45],[[8,[25]]]],[[94,44],[[8,[25]]]],[[94,94],[[8,[25]]]],[[94,[7,[6]]],[[8,[25]]]],[[94,94],[[8,[25]]]],[81],[81],[81],[[31,104],8],[100],[100],[100],[[31,79]],[[94,22]],[114],[115],[106],[116],[117],[118],[105],[120],[107],[[],130],[[]],[[]],[[]],[94,[[41,[10,122]]]],[[],45],[[],45],[[],45],[[],45],[[31,104],[[41,[108,111]]]],[[],41],[[],41],[[[134,[[0,[131,132]],133]]],[[41,[[31,[135]]]]]],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[45,[[41,[101]]]],[[],41],[[[46,[6,87]]],[[41,[101]]]],[[[7,[6]]],[[41,[101]]]],[10,[[41,[101]]]],[45,[[41,[101]]]],[10,[[41,[94]]]],[[[46,[6,87]]],[[41,[94]]]],[45,[[41,[94]]]],[[],41],[45,[[41,[94]]]],[[[7,[6]]],[[41,[94]]]],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[[],92],[31,117],[31,118],[79,31],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[[0,[28,29,30]]],85],[[],85],[[136,[17,[[137,[89]]]]],138],[[85,38],39],[[136,38],39],[[138,38],39],[136,138],[[]],[[]],[[]],[[]],[[]],[[]],[79,85],[[],85],[136,[[7,[9]]]],[[85,136],138],[136,12],[136,138],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],92],[[],92],[[],92],[136,9],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[2,2],[59,59],[67,67],[[]],[[]],[[]],[[67,67],25],[[67,67],22],[[],22],[[],22],[[2,38],39],[[59,38],39],[[67,38],39],[[]],[[]],[[]],[[[7,[6]]],[[4,[2]]]],[[[7,[6]]],[[4,[2]]]],[[[7,[6]]],[[4,[59]]]],[[]],[[]],[[]],[[67,67],[[8,[25]]]],[[]],[[]],[[]],[[],41],[[],41],[[],41],[[],41],[[],41],[[],41],[[],92],[[],92],[[],92]],"c":[313],"p":[[3,"ClientBuilder"],[3,"Certificate"],[3,"Proxy"],[6,"Result"],[3,"Body"],[15,"u8"],[15,"slice"],[4,"Option"],[3,"Url"],[15,"str"],[3,"Method"],[3,"StatusCode"],[15,"u16"],[3,"RequestBuilder"],[8,"Display"],[3,"Request"],[8,"Into"],[3,"Client"],[3,"Response"],[3,"Bytes"],[8,"Stream"],[15,"bool"],[3,"NoProxy"],[3,"Version"],[4,"Ordering"],[3,"Duration"],[15,"u64"],[8,"Fn"],[8,"Send"],[8,"Sync"],[3,"HeaderMap"],[8,"IntoUrl"],[8,"Resolve"],[3,"Arc"],[8,"Future"],[3,"Extensions"],[3,"Error"],[3,"Formatter"],[6,"Result"],[3,"Error"],[4,"Result"],[3,"Upgraded"],[8,"Serialize"],[8,"Sized"],[3,"String"],[3,"Vec"],[3,"File"],[3,"Body"],[3,"Response"],[3,"Upgraded"],[3,"InvalidMethod"],[3,"InvalidStatusCode"],[3,"Path"],[8,"AsRef"],[4,"ParseError"],[8,"Hasher"],[4,"Host"],[15,"u32"],[3,"Identity"],[4,"Position"],[3,"Range"],[3,"RangeTo"],[3,"RangeFrom"],[3,"RangeFull"],[8,"DeserializeOwned"],[4,"IpAddr"],[3,"Version"],[3,"ParseOptions"],[4,"Origin"],[8,"IntoIterator"],[15,"char"],[3,"Split"],[3,"PathSegmentsMut"],[3,"Pin"],[3,"Context"],[6,"Result"],[4,"Poll"],[3,"ReadBuf"],[15,"usize"],[3,"IoSlice"],[3,"Demand"],[3,"Parse"],[3,"UrlQuery"],[3,"Serializer"],[3,"Policy"],[4,"SocketAddr"],[3,"Global"],[3,"Error"],[8,"Error"],[3,"PathBuf"],[3,"Request"],[3,"TypeId"],[8,"Any"],[3,"HeaderValue"],[8,"TryInto"],[8,"TryStream"],[3,"Name"],[6,"Resolving"],[8,"IntoHeaderName"],[3,"OccupiedEntry"],[3,"HeaderName"],[3,"Replacements"],[8,"Clone"],[8,"AsHeaderName"],[3,"Drain"],[3,"IntoIter"],[3,"ValueDrain"],[4,"Entry"],[8,"PartialEq"],[3,"GetAll"],[3,"InvalidHeaderName"],[3,"InvalidHeaderValue"],[8,"Debug"],[3,"Iter"],[3,"IterMut"],[3,"Keys"],[3,"Values"],[3,"ValuesMut"],[3,"VacantEntry"],[3,"ValueIter"],[3,"ValueIterMut"],[3,"ToStrError"],[15,"i32"],[15,"i16"],[15,"isize"],[15,"i64"],[3,"Recompositions"],[3,"Decompositions"],[8,"FnOnce"],[3,"StreamSafe"],[8,"Eq"],[8,"Hash"],[3,"RandomState"],[3,"HashMap"],[8,"TryFrom"],[3,"Attempt"],[3,"Box"],[3,"Action"],[8,"ResponseBuilderExt"]]},\ "ring":{"doc":"Safe, fast, small crypto using Rust with BoringSSL’s …","t":"AAAAAAAAAAAAAOHHDDIHDRRDIDDDDKKLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLRDRDRLLLLLLLLLLLLLLLLLLLHHDHDGLLLLLLLLLLLLLLLLLLLLLLLLDHHDDDHFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFDDDRRRHRHRHRHHRRLLLMLLLLLLMLLLLFLLLLLLLLLLLLMLLLLLLLLLLLLDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDHHHHIDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLDDHHHHDGGGDGLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLFLDLLLLLLLLLLLLDHHHHLLLLFLLLLLLLLFDLLLLLLLLDIIDLLLLLLLKLLLLFLLLLLLLLLLHHHHHHHHHHHRDDDDDIQHHHHHHHHHHHHHHHHHIDDDDDDILLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLDDLLLLFFFFFLLLLLLLMMLLLFLLFLLLLLL","n":["aead","agreement","constant_time","digest","error","hkdf","hmac","io","pbkdf2","pkcs8","rand","signature","test","test_file","AES_128_GCM","AES_256_GCM","Aad","Algorithm","BoundKey","CHACHA20_POLY1305","LessSafeKey","MAX_TAG_LEN","NONCE_LEN","Nonce","NonceSequence","OpeningKey","SealingKey","Tag","UnboundKey","advance","algorithm","algorithm","algorithm","algorithm","algorithm","as_ref","as_ref","as_ref","assume_unique_for_key","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","chacha20_poly1305_openssh","empty","eq","equivalent","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","key_len","len","new","new","new","new","new","nonce_len","open_in_place","open_in_place","open_within","open_within","quic","seal_in_place","seal_in_place","seal_in_place_append_tag","seal_in_place_append_tag","seal_in_place_separate_tag","seal_in_place_separate_tag","tag_len","try_assume_unique_for_key","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","KEY_LEN","OpeningKey","PACKET_LENGTH_LEN","SealingKey","TAG_LEN","borrow","borrow","borrow_mut","borrow_mut","decrypt_packet_length","from","from","into","into","new","new","open_in_place","seal_in_place","try_from","try_from","try_into","try_into","type_id","type_id","AES_128","AES_256","Algorithm","CHACHA20","HeaderProtectionKey","Sample","algorithm","borrow","borrow","borrow_mut","borrow_mut","eq","equivalent","fmt","from","from","from","into","into","key_len","len","new","new_mask","sample_len","try_from","try_from","try_into","try_into","type_id","type_id","Algorithm","ECDH_P256","ECDH_P384","EphemeralPrivateKey","PublicKey","UnparsedPublicKey","X25519","agree_ephemeral","algorithm","algorithm","algorithm","as_ref","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","bytes","clone","clone","clone_into","clone_into","compute_public_key","eq","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","generate","into","into","into","into","new","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","verify_slices_are_equal","Algorithm","Context","Digest","MAX_BLOCK_LEN","MAX_CHAINING_LEN","MAX_OUTPUT_LEN","SHA1_FOR_LEGACY_USE_ONLY","SHA1_OUTPUT_LEN","SHA256","SHA256_OUTPUT_LEN","SHA384","SHA384_OUTPUT_LEN","SHA512","SHA512_256","SHA512_256_OUTPUT_LEN","SHA512_OUTPUT_LEN","algorithm","algorithm","as_ref","block_len","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","chaining_len","clone","clone","clone_into","clone_into","digest","eq","equivalent","finish","fmt","fmt","from","from","from","into","into","into","new","output_len","to_owned","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","update","KeyRejected","Unspecified","borrow","borrow","borrow_mut","borrow_mut","cause","cause","clone","clone","clone_into","clone_into","description","description","description_","eq","fmt","fmt","fmt","fmt","from","from","from","from","from","into","into","provide","provide","to_owned","to_owned","to_string","to_string","try_from","try_from","try_into","try_into","type_id","type_id","Algorithm","HKDF_SHA1_FOR_LEGACY_USE_ONLY","HKDF_SHA256","HKDF_SHA384","HKDF_SHA512","KeyType","Okm","Prk","Salt","algorithm","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","eq","equivalent","expand","extract","fill","fmt","fmt","fmt","fmt","from","from","from","from","from","from","hmac_algorithm","into","into","into","into","len","len","len","new","new_less_safe","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","Algorithm","Context","HMAC_SHA1_FOR_LEGACY_USE_ONLY","HMAC_SHA256","HMAC_SHA384","HMAC_SHA512","Key","Signature","SigningContext","SigningKey","Tag","VerificationKey","algorithm","as_ref","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","digest_algorithm","eq","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","generate","into","into","into","into","len","new","sign","sign","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","update","verify","with_key","Positive","big_endian_without_leading_zero","borrow","borrow_mut","clone","clone_into","first_byte","from","into","to_owned","try_from","try_into","type_id","Algorithm","PBKDF2_HMAC_SHA1","PBKDF2_HMAC_SHA256","PBKDF2_HMAC_SHA384","PBKDF2_HMAC_SHA512","borrow","borrow_mut","clone","clone_into","derive","eq","equivalent","from","into","to_owned","try_from","try_into","type_id","verify","Document","as_ref","borrow","borrow_mut","from","into","try_from","try_into","type_id","Random","RandomlyConstructable","SecureRandom","SystemRandom","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","expose","fill","fill","fmt","from","from","generate","into","into","new","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","ECDSA_P256_SHA256_ASN1","ECDSA_P256_SHA256_ASN1_SIGNING","ECDSA_P256_SHA256_FIXED","ECDSA_P256_SHA256_FIXED_SIGNING","ECDSA_P256_SHA384_ASN1","ECDSA_P384_SHA256_ASN1","ECDSA_P384_SHA384_ASN1","ECDSA_P384_SHA384_ASN1_SIGNING","ECDSA_P384_SHA384_FIXED","ECDSA_P384_SHA384_FIXED_SIGNING","ED25519","ED25519_PUBLIC_KEY_LEN","EcdsaKeyPair","EcdsaSigningAlgorithm","EcdsaVerificationAlgorithm","Ed25519KeyPair","EdDSAParameters","KeyPair","PublicKey","RSA_PKCS1_1024_8192_SHA1_FOR_LEGACY_USE_ONLY","RSA_PKCS1_1024_8192_SHA256_FOR_LEGACY_USE_ONLY","RSA_PKCS1_1024_8192_SHA512_FOR_LEGACY_USE_ONLY","RSA_PKCS1_2048_8192_SHA1_FOR_LEGACY_USE_ONLY","RSA_PKCS1_2048_8192_SHA256","RSA_PKCS1_2048_8192_SHA384","RSA_PKCS1_2048_8192_SHA512","RSA_PKCS1_3072_8192_SHA384","RSA_PKCS1_SHA256","RSA_PKCS1_SHA384","RSA_PKCS1_SHA512","RSA_PSS_2048_8192_SHA256","RSA_PSS_2048_8192_SHA384","RSA_PSS_2048_8192_SHA512","RSA_PSS_SHA256","RSA_PSS_SHA384","RSA_PSS_SHA512","RsaEncoding","RsaKeyPair","RsaParameters","RsaPublicKeyComponents","RsaSubjectPublicKey","Signature","UnparsedPublicKey","VerificationAlgorithm","as_ref","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","e","eq","equivalent","exponent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from_der","from_pkcs8","from_pkcs8","from_pkcs8","from_pkcs8_maybe_unchecked","from_private_key_and_public_key","from_seed_and_public_key","from_seed_unchecked","generate_pkcs8","generate_pkcs8","into","into","into","into","into","into","into","into","into","into","into","modulus","n","new","public_key","public_key","public_key","public_key","public_modulus_len","sign","sign","sign","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verify","verify","verify","verify","verify","verify","File","TestCase","borrow","borrow","borrow_mut","borrow_mut","compile_time_assert_clone","compile_time_assert_copy","compile_time_assert_send","compile_time_assert_std_error_error","compile_time_assert_sync","consume_bool","consume_bytes","consume_digest_alg","consume_optional_string","consume_string","consume_usize","consume_usize_bits","contents","file_name","fmt","from","from","from_hex","into","into","run","try_from","try_from","try_into","try_into","type_id","type_id"],"q":[[0,"ring"],[14,"ring::aead"],[127,"ring::aead::chacha20_poly1305_openssh"],[151,"ring::aead::quic"],[181,"ring::agreement"],[237,"ring::constant_time"],[238,"ring::digest"],[295,"ring::error"],[334,"ring::hkdf"],[395,"ring::hmac"],[465,"ring::io"],[478,"ring::pbkdf2"],[497,"ring::pkcs8"],[506,"ring::rand"],[533,"ring::signature"],[708,"ring::test"]],"d":["Authenticated Encryption with Associated Data (AEAD).","Key Agreement: ECDH, including X25519.","Constant-time operations.","SHA-2 and the legacy SHA-1 digest algorithm.","Error reporting.","HMAC-based Extract-and-Expand Key Derivation Function.","HMAC is specified in RFC 2104.","Serialization and deserialization.","PBKDF2 derivation and verification.","PKCS#8 is specified in RFC 5958.","Cryptographic pseudo-random number generation.","Public key signatures: signing and verification.","Testing framework.","References a test input file.","AES-128 in GCM mode with 128-bit tags and 96 bit nonces.","AES-256 in GCM mode with 128-bit tags and 96 bit nonces.","The additionally authenticated data (AAD) for an opening …","An AEAD Algorithm.","An AEAD key bound to a nonce sequence.","ChaCha20-Poly1305 as described in RFC 7539.","Immutable keys for use in situations where OpeningKey/…","The maximum length of a tag for the algorithms in this …","All the AEADs we support use 96-bit nonces.","A nonce for a single AEAD opening or sealing operation.","A sequences of unique nonces.","An AEAD key for authenticating and decrypting (“opening…","An AEAD key for encrypting and signing (“sealing”), …","An authentication tag.","An AEAD key without a designated role or nonce sequence.","Returns the next nonce in the sequence.","The key’s AEAD algorithm.","","","The key’s AEAD algorithm.","The key’s AEAD algorithm.","","","","Constructs a Nonce with the given value, assuming that the …","","","","","","","","","","","","","","","","","The chacha20-poly1305@openssh.com AEAD-ish construct.","Construct an empty Aad.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Construct the Aad from the given bytes.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The length of the key.","","Constructs a new key from the given UnboundKey and …","","","Constructs an UnboundKey.","Constructs a LessSafeKey from an UnboundKey.","The length of the nonces.","Authenticates and decrypts (“opens”) data in place.","Like OpeningKey::open_in_place(), except it accepts an …","Authenticates and decrypts (“opens”) data in place, …","Like OpeningKey::open_within(), except it accepts an …","QUIC Header Protection.","Deprecated. Renamed to seal_in_place_append_tag().","Deprecated. Renamed to seal_in_place_append_tag().","Encrypts and signs (“seals”) data in place, appending …","Like SealingKey::seal_in_place_append_tag(), except it …","Encrypts and signs (“seals”) data in place.","Like SealingKey::seal_in_place_separate_tag(), except it …","The length of a tag.","Constructs a Nonce with the given value, assuming that the …","","","","","","","","","","","","","","","","","","","","","","","","","The length of key.","A key for opening packets.","The length in bytes of the packet_length field in a SSH …","A key for sealing packets.","The length in bytes of an authentication tag.","","","","","Returns the decrypted, but unauthenticated, packet length.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Constructs a new SealingKey.","Constructs a new OpeningKey.","Opens (authenticates and decrypts) a packet.","Seals (encrypts and signs) a packet.","","","","","","","AES-128.","AES-256.","A QUIC Header Protection Algorithm.","ChaCha20.","A key for generating QUIC Header Protection masks.","QUIC sample for new key masks","The key’s algorithm.","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","The length of the key.","","Create a new header protection key.","Generate a new QUIC Header Protection mask.","The required sample length.","","","","","","","A key agreement algorithm.","ECDH using the NSA Suite B P-256 (secp256r1) curve.","ECDH using the NSA Suite B P-384 (secp384r1) curve.","An ephemeral private key for use (only) with …","A public key for key agreement.","An unparsed, possibly malformed, public key for key …","X25519 (ECDH using Curve25519) as described in RFC 7748.","Performs a key agreement with an ephemeral private key and …","The algorithm for the private key.","TODO: doc","The algorithm for the public key.","","","","","","","","","","TODO: doc","","","","","Computes the public key from the private key.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Generate a new ephemeral private key for the given …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Constructs a new UnparsedPublicKey.","","","","","","","","","","","","","","","Returns Ok(()) if a == b and Err(error::Unspecified) …","A digest algorithm.","A context for multi-step (Init-Update-Finish) digest …","A calculated digest value.","The maximum block length (Algorithm::block_len) of all the …","The maximum chaining length (Algorithm::chaining_len) of …","The maximum output length (Algorithm::output_len) of all …","SHA-1 as specified in FIPS 180-4. Deprecated.","The length of the output of SHA-1, in bytes.","SHA-256 as specified in FIPS 180-4.","The length of the output of SHA-256, in bytes.","SHA-384 as specified in FIPS 180-4.","The length of the output of SHA-384, in bytes.","SHA-512 as specified in FIPS 180-4.","SHA-512/256 as specified in FIPS 180-4.","The length of the output of SHA-512/256, in bytes.","The length of the output of SHA-512, in bytes.","The algorithm that this context is using.","The algorithm that was used to calculate the digest value.","","The internal block length.","","","","","","","The size of the chaining value of the digest function, in …","","","","","Returns the digest of data using the given digest …","","","Finalizes the digest calculation and returns the digest …","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Constructs a new context.","The length of a finalized digest.","","","","","","","","","","","","Updates the digest with all the data in data. update may …","An error parsing or validating a key.","An error with absolutely no details.","","","","","","","","","","","","","The value returned from ::description()","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","An HKDF algorithm.","HKDF using HMAC-SHA-1. Obsolete.","HKDF using HMAC-SHA-256.","HKDF using HMAC-SHA-384.","HKDF using HMAC-SHA-512.","The length of the OKM (Output Keying Material) for a …","An HKDF OKM (Output Keying Material)","A HKDF PRK (pseudorandom key).","A salt for HKDF operations.","The algorithm used to derive this salt.","","","","","","","","","","","","","","","The HKDF-Expand operation.","The HKDF-Extract operation.","Fills out with the output of the HKDF-Expand operation for …","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","The underlying HMAC algorithm.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The length that Prk::expand() should expand its input to.","","The OkmLength given to Prk::expand().","Constructs a new Salt with the given value based on the …","Construct a new Prk directly with the given value.","","","","","","","","","","","","","","","An HMAC algorithm.","A context for multi-step (Init-Update-Finish) HMAC signing.","HMAC using SHA-1. Obsolete.","HMAC using SHA-256.","HMAC using SHA-384.","HMAC using SHA-512.","A key to use for HMAC signing.","A deprecated alias for Tag.","hmac::SigningContext was renamed to hmac::Context.","hmac::SigningKey was renamed to hmac::Key.","An HMAC tag.","hmac::VerificationKey was merged into hmac::Key.","The digest algorithm for the key.","","","","","","","","","","","","","","","","","","The digest algorithm this HMAC algorithm is based on.","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Generate an HMAC signing key using the given digest …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Construct an HMAC signing key using the given digest …","Calculates the HMAC of data using the key key in one step.","Finalizes the HMAC calculation and returns the HMAC value. …","","","","","","","","","","","","","","","","","Updates the HMAC with all the data in data. update may be …","Calculates the HMAC of data using the signing key key, and …","Constructs a new HMAC signing context using the given …","A serialized positive integer.","Returns the value, ordered from significant byte to least …","","","","","Returns the first byte.","Returns the argument unchanged.","Calls U::from(self).","","","","","A PBKDF2 algorithm.","PBKDF2 using HMAC-SHA1.","PBKDF2 using HMAC-SHA256.","PBKDF2 using HMAC-SHA384.","PBKDF2 using HMAC-SHA512.","","","","","Fills out with the key derived using PBKDF2 with the given …","","","Returns the argument unchanged.","Calls U::from(self).","","","","","Verifies that a previously-derived (e.g., using derive) …","A generated PKCS#8 document.","","","","Returns the argument unchanged.","Calls U::from(self).","","","","A random value constructed from a SecureRandom that hasn’…","A type that can be returned by ring::rand::generate().","A secure random number generator.","A secure random number generator where the random values …","","","","","","","Expose the random value.","Fills dest with random bytes.","","","Returns the argument unchanged.","Returns the argument unchanged.","Generate the new random value using rng.","Calls U::from(self).","Calls U::from(self).","Constructs a new SystemRandom.","","","","","","","","Verification of ASN.1 DER-encoded ECDSA signatures using …","Signing of ASN.1 DER-encoded ECDSA signatures using the …","Verification of fixed-length (PKCS#11 style) ECDSA …","Signing of fixed-length (PKCS#11 style) ECDSA signatures …","Not recommended. Verification of ASN.1 DER-encoded ECDSA …","Not recommended. Verification of ASN.1 DER-encoded ECDSA …","Verification of ASN.1 DER-encoded ECDSA signatures using …","Signing of ASN.1 DER-encoded ECDSA signatures using the …","Verification of fixed-length (PKCS#11 style) ECDSA …","Signing of fixed-length (PKCS#11 style) ECDSA signatures …","Verification of Ed25519 signatures.","The length of an Ed25519 public key.","An ECDSA key pair, used for signing.","An ECDSA signing algorithm.","An ECDSA verification algorithm.","An Ed25519 key pair, for signing.","Parameters for EdDSA signing and verification.","Key pairs for signing messages (private key and public …","The type of the public key.","Verification of signatures using RSA keys of 1024-8192 …","Verification of signatures using RSA keys of 1024-8192 …","Verification of signatures using RSA keys of 1024-8192 …","Verification of signatures using RSA keys of 2048-8192 …","Verification of signatures using RSA keys of 2048-8192 …","Verification of signatures using RSA keys of 2048-8192 …","Verification of signatures using RSA keys of 2048-8192 …","Verification of signatures using RSA keys of 3072-8192 …","PKCS#1 1.5 padding using SHA-256 for RSA signatures.","PKCS#1 1.5 padding using SHA-384 for RSA signatures.","PKCS#1 1.5 padding using SHA-512 for RSA signatures.","Verification of signatures using RSA keys of 2048-8192 …","Verification of signatures using RSA keys of 2048-8192 …","Verification of signatures using RSA keys of 2048-8192 …","RSA PSS padding using SHA-256 for RSA signatures.","RSA PSS padding using SHA-384 for RSA signatures.","RSA PSS padding using SHA-512 for RSA signatures.","An RSA signature encoding as described in RFC 3447 Section …","An RSA key pair, used for signing.","Parameters for RSA verification.","Low-level API for the verification of RSA signatures.","A serialized RSA public key.","A public key signature returned from a signing operation.","An unparsed, possibly malformed, public key for signature …","A signature verification algorithm.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The public exponent, encoded in big-endian bytes without …","","","The public exponent (e).","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Parses an RSA private key that is not inside a PKCS#8 …","Constructs an Ed25519 key pair by parsing an unencrypted …","Constructs an ECDSA key pair by parsing an unencrypted …","Parses an unencrypted PKCS#8-encoded RSA private key.","Constructs an Ed25519 key pair by parsing an unencrypted …","Constructs an ECDSA key pair from the private key and …","Constructs an Ed25519 key pair from the private key seed …","Constructs a Ed25519 key pair from the private key seed …","Generates a new key pair and returns the key pair …","Generates a new key pair and returns the key pair …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The public modulus (n).","The public modulus, encoded in big-endian bytes without …","Construct a new UnparsedPublicKey.","The public key for the key pair.","","","","Returns the length in bytes of the key pair’s public …","Returns the signature of the message msg.","Deprecated. Returns the signature of the message using a …","Sign msg. msg is digested using the digest algorithm from …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Verify the signature signature of message msg with the …","","","Parses the public key and verifies signature is a valid …","","Verifies that signature is a valid signature of message …","A test input file.","A test case. A test case consists of a set of named …","","","","","compile_time_assert_clone::<T>(); fails to compile if T …","compile_time_assert_copy::<T>(); fails to compile if T …","compile_time_assert_send::<T>(); fails to compile if T …","compile_time_assert_std_error_error::<T>(); fails to …","compile_time_assert_sync::<T>(); fails to compile if T …","Maps the string “true” to true and the string “false…","Returns the value of an attribute that is encoded as a …","Maps the strings “SHA1”, “SHA256”, “SHA384”, …","Like consume_string() except it returns None if the test …","Returns the raw value of an attribute, without any …","Returns the value of an attribute that is an integer, in …","Returns the value of an attribute that is an integer, in …","The contents of the file.","The name (path) of the file.","","Returns the argument unchanged.","Returns the argument unchanged.","Decode an string of hex digits into a sequence of bytes. …","Calls U::from(self).","Calls U::from(self).","Parses test cases out of the given file, calling f on each …","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,83,6,7,8,9,13,14,1,1,6,7,13,8,9,4,14,1,6,7,13,8,9,4,14,1,0,13,4,4,6,7,8,9,4,6,7,13,13,8,8,9,4,14,1,6,7,13,8,9,4,14,1,4,4,83,6,7,8,9,4,6,9,6,9,0,7,9,7,9,7,9,4,1,6,7,13,8,9,4,14,1,6,7,13,8,9,4,14,1,6,7,13,8,9,4,14,1,0,0,0,0,0,27,25,27,25,25,27,25,27,25,27,25,25,27,27,25,27,25,27,25,0,0,0,0,0,0,28,28,29,28,29,29,29,29,28,28,29,28,29,29,29,28,28,29,28,29,28,29,28,29,0,0,0,0,0,0,0,0,30,31,34,34,33,30,31,34,33,30,31,34,31,31,34,31,34,30,33,33,33,30,31,34,33,30,31,34,30,33,30,31,34,31,31,34,33,30,31,34,33,30,31,34,33,30,31,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,40,40,39,39,38,40,39,38,40,39,38,40,38,40,0,39,39,38,39,40,39,38,40,39,38,40,38,39,38,40,39,38,40,39,38,40,39,38,40,38,0,0,2,44,2,44,2,44,2,44,2,44,2,44,44,2,2,2,44,44,2,2,2,2,44,2,44,2,44,2,44,2,44,2,44,2,44,2,44,0,0,0,0,0,0,0,0,0,50,51,50,52,19,51,50,52,19,51,52,51,52,51,51,52,50,19,51,50,52,19,51,50,50,52,52,19,51,51,50,52,19,53,51,19,50,52,51,52,51,50,52,19,51,50,52,19,51,50,52,19,0,0,0,0,0,0,0,0,0,0,0,0,55,56,54,56,55,57,54,56,55,57,54,56,55,57,54,56,55,57,54,54,54,54,56,55,57,54,56,55,55,57,55,54,56,55,57,54,55,0,57,54,56,55,57,54,56,55,57,54,56,55,57,54,56,55,57,57,0,57,0,58,58,58,58,58,58,58,58,58,58,58,58,0,0,0,0,0,59,59,59,59,0,59,59,59,59,59,59,59,59,0,0,61,61,61,61,61,61,61,61,0,0,0,0,64,62,64,62,62,62,64,37,62,62,64,62,0,64,62,62,62,64,62,64,62,64,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,66,70,71,69,72,73,74,67,75,68,65,66,70,71,69,72,73,74,67,75,68,65,66,67,68,65,66,67,68,65,66,68,69,69,65,70,71,69,72,73,74,75,68,65,70,71,69,72,73,74,67,75,68,65,66,74,70,72,74,70,72,70,70,70,72,70,71,69,72,73,74,67,75,68,65,66,65,68,67,84,70,72,74,74,70,72,74,67,68,65,66,70,71,69,72,73,74,67,75,68,65,66,70,71,69,72,73,74,67,75,68,65,66,70,71,69,72,73,74,67,75,68,65,66,76,71,73,67,75,68,0,0,81,79,81,79,0,0,0,0,0,79,79,79,79,79,79,79,81,81,79,81,79,0,81,79,0,81,79,81,79,81,79],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],[[3,[1,2]]]],[[],4],[[[6,[5]]],4],[[[7,[5]]],4],[8,4],[9,4],[[[13,[[12,[[11,[10]]]]]]],[[11,[10]]]],[14,[[11,[10]]]],[1,[[15,[10]]]],[[[15,[10]]],1],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],[[13,[[15,[10]]]]]],[[4,4],16],[[],16],[[[6,[5]],17],[[3,[18]]]],[[[7,[5]],17],[[3,[18]]]],[[8,17],[[3,[18]]]],[[9,17],[[3,[18]]]],[[4,17],[[3,[18]]]],[[]],[[]],[[[12,[[11,[10]]]]],[[13,[[12,[[11,[10]]]]]]]],[[]],[[[19,[4]]],8],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[4,20],[4,20],[8],[[8,5],[[6,[5]]]],[[8,5],[[7,[5]]]],[[4,[11,[10]]],[[3,[8,2]]]],[8,9],[4,20],[[[6,[5]],[13,[[12,[[11,[10]]]]]],[11,[10]]],[[3,[[11,[10]],2]]]],[[9,1,[13,[[12,[[11,[10]]]]]],[11,[10]]],[[3,[[11,[10]],2]]]],[[[6,[5]],[13,[[12,[[11,[10]]]]]],[11,[10]],[21,[20]]],[[3,[[11,[10]],2]]]],[[9,1,[13,[[12,[[11,[10]]]]]],[11,[10]],[21,[20]]],[[3,[[11,[10]],2]]]],0,[[[7,[5]],[13,[[12,[[11,[10]]]]]],[0,[[22,[[11,[10]]]],[23,[10]]]]],[[3,[2]]]],[[9,1,[13,[[12,[[11,[10]]]]]],[0,[[22,[[11,[10]]]],[23,[10]]]]],[[3,[2]]]],[[[7,[5]],[13,[[12,[[11,[10]]]]]],[0,[[22,[[11,[10]]]],[23,[10]]]]],[[3,[2]]]],[[9,1,[13,[[12,[[11,[10]]]]]],[0,[[22,[[11,[10]]]],[23,[10]]]]],[[3,[2]]]],[[[7,[5]],[13,[[12,[[11,[10]]]]]],[11,[10]]],[[3,[14,2]]]],[[9,1,[13,[[12,[[11,[10]]]]]],[11,[10]]],[[3,[14,2]]]],[4,20],[[[11,[10]]],[[3,[1,2]]]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],[[],24],[[],24],[[],24],[[],24],[[],24],[[],24],0,0,0,0,0,[[]],[[]],[[]],[[]],[[25,26,[15,[10]]],[[15,[10]]]],[[]],[[]],[[]],[[]],[[[15,[10]]],27],[[[15,[10]]],25],[[25,26,[11,[10]],[15,[10]]],[[3,[[11,[10]],2]]]],[[27,26,[11,[10]],[15,[10]]]],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],0,0,0,0,0,0,[28,29],[[]],[[]],[[]],[[]],[[29,29],16],[[],16],[[29,17],[[3,[18]]]],[[]],[[[19,[29]]],28],[[]],[[]],[[]],[29,20],[29,20],[[29,[11,[10]]],[[3,[28,2]]]],[[28,[11,[10]]],[[3,[[15,[10]],2]]]],[29,20],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],0,0,0,0,0,0,0,[[30,[31,[[12,[[11,[10]]]]]],32],3],[30,33],[[[31,[[12,[[11,[10]]]]]]],33],[34,33],[34,[[11,[10]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[31,[[12,[[11,[10]]]]]]],[[12,[[11,[10]]]]]],[[[31,[[0,[[12,[[11,[10]]]],35]]]]],[[31,[[0,[[12,[[11,[10]]]],35]]]]]],[34,34],[[]],[[]],[30,[[3,[34,2]]]],[[33,33],16],[[],16],[[33,17],[[3,[18]]]],[[30,17],[[3,[18]]]],[[[31,[[0,[[12,[[11,[10]]]],36]]]],17],[[3,[18]]]],[[34,17],[[3,[18]]]],[[]],[[]],[[]],[[]],[[33,37],[[3,[30,2]]]],[[]],[[]],[[]],[[]],[[33,[12,[[11,[10]]]]],[[31,[[12,[[11,[10]]]]]]]],[[]],[[]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],[[],24],[[],24],[[[11,[10]],[11,[10]]],[[3,[2]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[38,39],[40,39],[40,[[11,[10]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],0,[38,38],[40,40],[[]],[[]],[[39,[11,[10]]],40],[[39,39],16],[[],16],[38,40],[[39,17],[[3,[18]]]],[[40,17],41],[[]],[[]],[[]],[[]],[[]],[[]],[39,38],0,[[]],[[]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],[[],24],[[38,[11,[10]]]],0,0,[[]],[[]],[[]],[[]],[2,[[43,[42]]]],[44,[[43,[42]]]],[2,2],[44,44],[[]],[[]],[2,45],[44,45],[44,45],[[2,2],16],[[2,17],41],[[2,17],41],[[44,17],41],[[44,17],41],[[]],[44,2],[46,2],[47,2],[[]],[[]],[[]],[48],[48],[[]],[[]],[[],49],[[],49],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],0,0,0,0,0,0,0,0,0,[50,51],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[51,51],[52,52],[[]],[[]],[[51,51],16],[[],16],[[52,[11,[[11,[10]]]],53],[[3,[[19,[53]],2]]]],[[50,[11,[10]]],52],[[[19,[53]],[11,[10]]],[[3,[2]]]],[[51,17],41],[[50,17],41],[[52,17],41],[[[19,[[0,[36,53]]]],17],41],[[]],[[[19,[51]]],50],[[]],[[[19,[51]]],52],[[]],[[]],[51,54],[[]],[[]],[[]],[[]],[[],20],[51,20],[[[19,[53]]],53],[[51,[11,[10]]],50],[[51,[11,[10]]],52],[[]],[[]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],[[],24],[[],24],0,0,0,0,0,0,0,0,0,0,0,0,[55,54],[56,[[11,[10]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[54,54],[56,56],[55,55],[57,57],[[]],[[]],[[]],[[]],[54,39],[[54,54],16],[[],16],[[54,17],41],[[56,17],41],[[55,17],[[3,[18]]]],[[57,17],[[3,[18]]]],[[]],[[]],[[[19,[54]]],55],[[]],[[]],[[54,37],[[3,[55,2]]]],[[]],[[]],[[]],[[]],[54,20],[[54,[11,[10]]],55],[[55,[11,[10]]],56],[57,56],[[]],[[]],[[]],[[]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],[[],24],[[],24],[[57,[11,[10]]]],[[55,[11,[10]],[11,[10]]],[[3,[2]]]],[55,57],0,[58,[[11,[10]]]],[[]],[[]],[58,58],[[]],[58,10],[[]],[[]],[[]],[[],3],[[],3],[[],24],0,0,0,0,0,[[]],[[]],[59,59],[[]],[[59,60,[11,[10]],[11,[10]],[11,[10]]]],[[59,59],16],[[],16],[[]],[[]],[[]],[[],3],[[],3],[[],24],[[59,60,[11,[10]],[11,[10]],[11,[10]]],[[3,[2]]]],0,[61,[[11,[10]]]],[[]],[[]],[[]],[[]],[[],3],[[],3],[[],24],0,0,0,0,[[]],[[]],[[]],[[]],[62,62],[[]],[[[64,[63]]],63],[[[11,[10]]],[[3,[2]]]],[[[11,[10]]],[[3,[2]]]],[[62,17],41],[[]],[[]],[37,[[3,[[64,[63]],2]]]],[[]],[[]],[[],62],[[]],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[65,[[11,[10]]]],[66,[[11,[10]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[67,[[0,[[12,[[11,[10]]]],35]]]]],[[67,[[0,[[12,[[11,[10]]]],35]]]]]],[[[68,[[0,[[12,[[11,[10]]]],36,35]]]]],[[68,[[0,[[12,[[11,[10]]]],36,35]]]]]],[65,65],[66,66],[[]],[[]],[[]],[[]],0,[[69,69],16],[[],16],[65,58],[[70,17],[[3,[18]]]],[[71,17],[[3,[18]]]],[[69,17],[[3,[18]]]],[[72,17],[[3,[18]]]],[[73,17],[[3,[18]]]],[[74,17],[[3,[18]]]],[[75,17],41],[[[68,[[0,[36,[12,[[11,[10]]]],36]]]],17],41],[[65,17],[[3,[18]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[11,[10]]],[[3,[74,44]]]],[[[11,[10]]],[[3,[70,44]]]],[[69,[11,[10]]],[[3,[72,44]]]],[[[11,[10]]],[[3,[74,44]]]],[[[11,[10]]],[[3,[70,44]]]],[[69,[11,[10]],[11,[10]]],[[3,[72,44]]]],[[[11,[10]],[11,[10]]],[[3,[70,44]]]],[[[11,[10]]],[[3,[70,44]]]],[37,[[3,[61,2]]]],[[69,37],[[3,[61,2]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[65,58],0,[[76,[12,[[11,[10]]]]],[[67,[[12,[[11,[10]]]]]]]],[[]],[70],[72],[74],[74,20],[[70,[11,[10]]],66],[[72,37,[11,[10]]],[[3,[66,2]]]],[[74,77,37,[11,[10]],[11,[10]]],[[3,[2]]]],[[]],[[]],[[]],[[]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24],[[],24],[[],24],[[],24],[[],24],[[],24],[[],24],[[],24],[[],24],[[],24],[[78,78,78],[[3,[2]]]],[[71,78,78,78],[[3,[2]]]],[[73,78,78,78],[[3,[2]]]],[[[67,[[12,[[11,[10]]]]]],[11,[10]],[11,[10]]],[[3,[2]]]],[[75,78,78,78],[[3,[2]]]],[[[68,[[0,[[12,[[11,[10]]]],36]]]],75,[11,[10]],[11,[10]]],[[3,[2]]]],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[79,45],16],[[79,45],[[80,[10]]]],[[79,45],[[43,[39]]]],[[79,45],[[43,[49]]]],[[79,45],49],[[79,45],20],0,0,0,[[79,17],41],[[]],[[]],[45,[[3,[[80,[10]],49]]]],[[]],[[]],[[81,82]],[[],3],[[],3],[[],3],[[],3],[[],24],[[],24]],"c":[95,96,402,403,404,406],"p":[[3,"Nonce"],[3,"Unspecified"],[4,"Result"],[3,"Algorithm"],[8,"NonceSequence"],[3,"OpeningKey"],[3,"SealingKey"],[3,"UnboundKey"],[3,"LessSafeKey"],[15,"u8"],[15,"slice"],[8,"AsRef"],[3,"Aad"],[3,"Tag"],[15,"array"],[15,"bool"],[3,"Formatter"],[3,"Error"],[3,"Okm"],[15,"usize"],[3,"RangeFrom"],[8,"AsMut"],[8,"Extend"],[3,"TypeId"],[3,"OpeningKey"],[15,"u32"],[3,"SealingKey"],[3,"HeaderProtectionKey"],[3,"Algorithm"],[3,"EphemeralPrivateKey"],[3,"UnparsedPublicKey"],[8,"FnOnce"],[3,"Algorithm"],[3,"PublicKey"],[8,"Clone"],[8,"Debug"],[8,"SecureRandom"],[3,"Context"],[3,"Algorithm"],[3,"Digest"],[6,"Result"],[8,"Error"],[4,"Option"],[3,"KeyRejected"],[15,"str"],[3,"EndOfInput"],[3,"TryFromSliceError"],[3,"Demand"],[3,"String"],[3,"Salt"],[3,"Algorithm"],[3,"Prk"],[8,"KeyType"],[3,"Algorithm"],[3,"Key"],[3,"Tag"],[3,"Context"],[3,"Positive"],[3,"Algorithm"],[3,"NonZeroU32"],[3,"Document"],[3,"SystemRandom"],[8,"RandomlyConstructable"],[3,"Random"],[3,"RsaSubjectPublicKey"],[3,"Signature"],[3,"UnparsedPublicKey"],[3,"RsaPublicKeyComponents"],[3,"EcdsaSigningAlgorithm"],[3,"Ed25519KeyPair"],[3,"EdDSAParameters"],[3,"EcdsaKeyPair"],[3,"EcdsaVerificationAlgorithm"],[3,"RsaKeyPair"],[3,"RsaParameters"],[8,"VerificationAlgorithm"],[8,"RsaEncoding"],[3,"Input"],[3,"TestCase"],[3,"Vec"],[3,"File"],[8,"FnMut"],[8,"BoundKey"],[8,"KeyPair"]]},\ "rle_decode_fast":{"doc":"rle-decode-helper","t":"F","n":["rle_decode"],"q":[[0,"rle_decode_fast"]],"d":["Fast decoding of run length encoded data"],"i":[0],"f":[[[[2,[1]],3,3]]],"c":[],"p":[[8,"Copy"],[3,"Vec"],[15,"usize"]]},\ "rustls":{"doc":"Rustls - a modern TLS library","t":"HHHNNNNENNNNNNNNNNNNNNEEDNENNNNNNNNNNNENNCCNNNDDIEDEHHNNNNNNNNNDNDNNNNNNNNNNNNNNNNNNNNNNENNNNNNNNNNNNNNNNENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNENNNNNNDNNIDNNNNNNNNNNNNNNENNNNNNNNNDNNNNNNNNNNNNNDNENENNDENNNNNNNNNNNDNNNNNNNNDNNNNNNNNNNNNNNNNNCCNNNNNCNNNNEIENENNDDEDDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNDNDNNNDNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNDDDDDNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMALKLLAMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMNNNLALAMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMDHHHHHHHHHLLMLLLMLLLDDDDDIDNNDDNIDDIENNDEDDDDDMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLKLLLLLLLLLLLLLLLLLLMKLMLLLLLKLLLKMLKLKLLLLKLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLFFLLLLLAAAIKAAAAAAAAAADLLMLLLLMLLLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDLLLLLLLLLLIEDSINNNLLLLLLLLLKLLLLLLLLLLLLLFFKLLLLLLLLLLLLLLLLDLMDENDMLLLLLLLLLLLLLLLLMLLMLLLLLLLLLMNNNENENNNENENNNNNENNENNNNNNENNNNNNNENEENNENNNNENENNNNENNNNNNNNNNNNNNNNNNNNNNSNNENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNNNNNNNNNNNNNNNNNNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLRRDRLLLLLLLLLLLNNENDEGDNDDNDNNNENNNDENDNEIINNNNDNNNDDNNNNNNNNNNDEINEDNNENNNDNNNNEDDNNDNNNDDNDDNNNDNNDDDENNDNEDNNEDNNNNNNNNNNNNNNNNNNNNNNNNDMLLLLLLLLKMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLMMMMMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLMLLLLLLKLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMLMMLLLLLMLLLLLLLLLLLMMMMMMMMLMMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLMMMLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNDNNNNSDEENDDNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMLLLLLLLLLLLLLLLLLMMMLLLLLLMMMMMMDDGDDDMMMLLLLLLLLLLMMLLLLMLLLLMLLLLLLLLLLLLLLLLLMLLLLLLLMLLLLLLLLLLLLLLLLLLMMDDLLLLLLLLLLMLLLLLLMHHHAAAAADDDDDIDDDDDIDIDDDDDIDDLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLMLLLLKLLLLLLLLLLKLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLMLLLLLLLLLLLLLLLLLLLMKMMLLLLLLLLLLLKLLLLLLKLMMLLMLLLLKLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLDDIIKFFFLLLLMKLLLLLLLLLMLMLKMKFLLLLLLLLHH","n":["ALL_CIPHER_SUITES","ALL_KX_GROUPS","ALL_VERSIONS","AccessDenied","Aes128Gcm","Aes256Gcm","Alert","AlertDescription","AlertReceived","Anonymous","ApplicationData","ApplicationVerificationFailure","AttemptedDowngradeToTls12WhenTls13IsSupported","BadCertChainExtensions","BadCertificate","BadCertificateHashValue","BadCertificateStatusResponse","BadEncoding","BadMaxFragmentSize","BadRecordMac","BadSignature","BadSignature","BulkAlgorithm","CertRevocationListError","Certificate","Certificate","CertificateError","CertificateExpired","CertificateRequest","CertificateRequired","CertificateRevoked","CertificateStatus","CertificateURL","CertificateUnknown","CertificateUnobtainable","CertificateVerify","Chacha20Poly1305","ChangeCipherSpec","CipherSuite","Client","Client","ClientConfig","ClientConnection","ClientHello","ClientKeyExchange","CloseNotify","CommonState","ConfigBuilder","ConfigSide","Connection","ConnectionCommon","ContentType","DEFAULT_CIPHER_SUITES","DEFAULT_VERSIONS","DSA","DTLSv1_0","DTLSv1_2","DTLSv1_3","DecodeError","DecompressionFailure","DecryptError","DecryptError","DecryptionFailed","DigitallySignedStruct","DisallowedEncryptedExtension","DistinguishedName","DuplicateClientHelloExtensions","DuplicateEncryptedExtensions","DuplicateHelloRetryRequestExtensions","DuplicateNewSessionTicketExtensions","DuplicateServerHelloExtensions","DuplicateServerNameTypes","ECDSA","ECDSA_NISTP256_SHA256","ECDSA_NISTP384_SHA384","ECDSA_NISTP521_SHA512","ECDSA_SHA1_Legacy","ED25519","ED25519","ED448","ED448","EarlyDataAttemptedInSecondClientHello","EarlyDataExtensionWithoutResumption","EarlyDataOfferedWithVariedCipherSuite","EcPointsExtensionRequired","EncryptError","EncryptedExtensions","EndOfEarlyData","Error","Expired","ExportRestriction","FFDHE2048","FFDHE3072","FFDHE4096","FFDHE6144","FFDHE8192","FailedToGetCurrentTime","FailedToGetRandomBytes","Finished","General","Handshake","HandshakeFailure","HandshakeHashVariedAfterRetry","HandshakeNotComplete","HandshakePayloadTooLarge","HandshakeType","Heartbeat","HelloRequest","HelloRetryRequest","HelloVerifyRequest","IllegalHelloRetryRequestWithEmptyCookie","IllegalHelloRetryRequestWithNoChanges","IllegalHelloRetryRequestWithOfferedGroup","IllegalHelloRetryRequestWithUnofferedCipherSuite","IllegalHelloRetryRequestWithUnofferedNamedGroup","IllegalHelloRetryRequestWithUnsupportedVersion","IllegalMiddleboxChangeCipherSpec","IllegalParameter","IllegalTlsInnerPlaintext","InappropriateFallback","InappropriateHandshakeMessage","InappropriateMessage","IncorrectBinder","InsufficientSecurity","InternalError","InvalidCcs","InvalidCertRequest","InvalidCertRevocationList","InvalidCertificate","InvalidCertificateStatusType","InvalidContentType","InvalidCrlNumber","InvalidDhParams","InvalidEmptyPayload","InvalidKeyShare","InvalidKeyUpdate","InvalidMaxEarlyDataSize","InvalidMessage","InvalidMessage","InvalidPurpose","InvalidRevokedCertSerialNumber","InvalidSct","InvalidSctList","InvalidServerName","IoState","IssuerInvalidForCrl","KeyEpochWithPendingFragment","KeyLog","KeyLogFile","KeyShareExtensionRequired","KeyUpdate","KeyUpdateReceivedInQuicConnection","MessageHash","MessageInterleavedWithHandshakeMessage","MessageTooLarge","MessageTooShort","MissingBinderInPskExtension","MissingData","MissingExtension","MissingKeyExchange","MissingKeyShare","MissingPskModesExtension","MissingQuicTransportParameters","NamedGroup","NamedGroupsExtensionRequired","NewSessionTicket","NoApplicationProtocol","NoApplicationProtocol","NoCertificate","NoCertificateRequestSignatureSchemesInCommon","NoCertificatesPresented","NoCipherSuitesInCommon","NoEcPointFormatsInCommon","NoKeyLog","NoKxGroupsInCommon","NoRenegotiation","NoSignatureSchemes","NoSignatureSchemesInCommon","NotValidForName","NotValidYet","NullCompressionRequired","OfferedDuplicateKeyShares","OfferedEarlyDataWithOldProtocolVersion","OfferedEmptyApplicationProtocol","OfferedIncorrectCompressions","Other","Other","OwnedTrustAnchor","ParseError","PeerIncompatible","PeerIncompatible","PeerMisbehaved","PeerMisbehaved","PeerSentOversizedRecord","PrivateKey","ProtocolVersion","ProtocolVersion","PskExtensionMustBeLast","PskExtensionWithMismatchedIdsAndBinders","RSA","RSA_PKCS1_SHA1","RSA_PKCS1_SHA256","RSA_PKCS1_SHA384","RSA_PKCS1_SHA512","RSA_PSS_SHA256","RSA_PSS_SHA384","RSA_PSS_SHA512","Reader","RecordOverflow","RefusedToFollowHelloRetryRequest","RejectedEarlyDataInterleavedWithHandshakeMessage","ResumptionAttemptedWithVariedEms","ResumptionOfferedWithIncompatibleCipherSuite","ResumptionOfferedWithVariedCipherSuite","ResumptionOfferedWithVariedEms","Revoked","RootCertStore","SSL_FORTEZZA_KEA_WITH_FORTEZZA_CBC_SHA","SSL_FORTEZZA_KEA_WITH_NULL_SHA","SSL_RSA_FIPS_WITH_3DES_EDE_CBC_SHA","SSL_RSA_FIPS_WITH_DES_CBC_SHA","SSLv2","SSLv3","SelectedDifferentCipherSuiteAfterRetry","SelectedInvalidPsk","SelectedTls12UsingTls13VersionExtension","SelectedUnofferedApplicationProtocol","SelectedUnofferedCipherSuite","SelectedUnofferedCompression","SelectedUnofferedKxGroup","SelectedUnofferedPsk","SelectedUnusableCipherSuiteForVersion","Server","Server","ServerConfig","ServerConnection","ServerDoesNotSupportTls12Or13","ServerHello","ServerHelloDone","ServerHelloMustOfferUncompressedEcPoints","ServerKeyExchange","ServerName","ServerNameDifferedOnRetry","ServerNameMustContainOneHostName","ServerSentHelloRetryRequestWithUnknownExtension","ServerTlsVersionIsDisabledByOurConfig","Side","SideData","SignatureAlgorithm","SignatureAlgorithmsExtensionRequired","SignatureScheme","SignedHandshakeWithUnadvertisedSigScheme","SignedKxWithWrongAlgorithm","Stream","StreamOwned","SupportedCipherSuite","SupportedKxGroup","SupportedProtocolVersion","SupportedVersionsExtensionRequired","TLS13_AES_128_CCM_8_SHA256","TLS13_AES_128_CCM_SHA256","TLS13_AES_128_GCM_SHA256","TLS13_AES_256_GCM_SHA384","TLS13_CHACHA20_POLY1305_SHA256","TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA","TLS_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA","TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA","TLS_DHE_DSS_WITH_3DES_EDE_CBC_RMD","TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA","TLS_DHE_DSS_WITH_AES_128_CBC_RMD","TLS_DHE_DSS_WITH_AES_128_CBC_SHA","TLS_DHE_DSS_WITH_AES_128_CBC_SHA256","TLS_DHE_DSS_WITH_AES_128_GCM_SHA256","TLS_DHE_DSS_WITH_AES_256_CBC_RMD","TLS_DHE_DSS_WITH_AES_256_CBC_SHA","TLS_DHE_DSS_WITH_AES_256_CBC_SHA256","TLS_DHE_DSS_WITH_AES_256_GCM_SHA384","TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256","TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256","TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384","TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384","TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA","TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256","TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256","TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA","TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256","TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384","TLS_DHE_DSS_WITH_DES_CBC_SHA","TLS_DHE_DSS_WITH_RC4_128_SHA","TLS_DHE_DSS_WITH_SEED_CBC_SHA","TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA","TLS_DHE_PSK_WITH_AES_128_CBC_SHA","TLS_DHE_PSK_WITH_AES_128_CBC_SHA256","TLS_DHE_PSK_WITH_AES_128_CCM","TLS_DHE_PSK_WITH_AES_128_GCM_SHA256","TLS_DHE_PSK_WITH_AES_256_CBC_SHA","TLS_DHE_PSK_WITH_AES_256_CBC_SHA384","TLS_DHE_PSK_WITH_AES_256_CCM","TLS_DHE_PSK_WITH_AES_256_GCM_SHA384","TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256","TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256","TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384","TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384","TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256","TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256","TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384","TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384","TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256","TLS_DHE_PSK_WITH_NULL_SHA","TLS_DHE_PSK_WITH_NULL_SHA256","TLS_DHE_PSK_WITH_NULL_SHA384","TLS_DHE_PSK_WITH_RC4_128_SHA","TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA","TLS_DHE_RSA_WITH_3DES_EDE_CBC_RMD","TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA","TLS_DHE_RSA_WITH_AES_128_CBC_RMD","TLS_DHE_RSA_WITH_AES_128_CBC_SHA","TLS_DHE_RSA_WITH_AES_128_CBC_SHA256","TLS_DHE_RSA_WITH_AES_128_CCM","TLS_DHE_RSA_WITH_AES_128_CCM_8","TLS_DHE_RSA_WITH_AES_128_GCM_SHA256","TLS_DHE_RSA_WITH_AES_256_CBC_RMD","TLS_DHE_RSA_WITH_AES_256_CBC_SHA","TLS_DHE_RSA_WITH_AES_256_CBC_SHA256","TLS_DHE_RSA_WITH_AES_256_CCM","TLS_DHE_RSA_WITH_AES_256_CCM_8","TLS_DHE_RSA_WITH_AES_256_GCM_SHA384","TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256","TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256","TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384","TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384","TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA","TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256","TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256","TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA","TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256","TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384","TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256","TLS_DHE_RSA_WITH_DES_CBC_SHA","TLS_DHE_RSA_WITH_SEED_CBC_SHA","TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA","TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA","TLS_DH_DSS_WITH_AES_128_CBC_SHA","TLS_DH_DSS_WITH_AES_128_CBC_SHA256","TLS_DH_DSS_WITH_AES_128_GCM_SHA256","TLS_DH_DSS_WITH_AES_256_CBC_SHA","TLS_DH_DSS_WITH_AES_256_CBC_SHA256","TLS_DH_DSS_WITH_AES_256_GCM_SHA384","TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256","TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256","TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384","TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384","TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA","TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256","TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256","TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA","TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256","TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384","TLS_DH_DSS_WITH_DES_CBC_SHA","TLS_DH_DSS_WITH_SEED_CBC_SHA","TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA","TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA","TLS_DH_RSA_WITH_AES_128_CBC_SHA","TLS_DH_RSA_WITH_AES_128_CBC_SHA256","TLS_DH_RSA_WITH_AES_128_GCM_SHA256","TLS_DH_RSA_WITH_AES_256_CBC_SHA","TLS_DH_RSA_WITH_AES_256_CBC_SHA256","TLS_DH_RSA_WITH_AES_256_GCM_SHA384","TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256","TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256","TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384","TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384","TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA","TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256","TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256","TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA","TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256","TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384","TLS_DH_RSA_WITH_DES_CBC_SHA","TLS_DH_RSA_WITH_SEED_CBC_SHA","TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA","TLS_DH_anon_EXPORT_WITH_RC4_40_MD5","TLS_DH_anon_WITH_3DES_EDE_CBC_SHA","TLS_DH_anon_WITH_AES_128_CBC_SHA","TLS_DH_anon_WITH_AES_128_CBC_SHA256","TLS_DH_anon_WITH_AES_128_GCM_SHA256","TLS_DH_anon_WITH_AES_256_CBC_SHA","TLS_DH_anon_WITH_AES_256_CBC_SHA256","TLS_DH_anon_WITH_AES_256_GCM_SHA384","TLS_DH_anon_WITH_ARIA_128_CBC_SHA256","TLS_DH_anon_WITH_ARIA_128_GCM_SHA256","TLS_DH_anon_WITH_ARIA_256_CBC_SHA384","TLS_DH_anon_WITH_ARIA_256_GCM_SHA384","TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA","TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256","TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256","TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA","TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256","TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384","TLS_DH_anon_WITH_DES_CBC_SHA","TLS_DH_anon_WITH_RC4_128_MD5","TLS_DH_anon_WITH_SEED_CBC_SHA","TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA","TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA","TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256","TLS_ECDHE_ECDSA_WITH_AES_128_CCM","TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8","TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256","TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA","TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384","TLS_ECDHE_ECDSA_WITH_AES_256_CCM","TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8","TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384","TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256","TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256","TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384","TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384","TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256","TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256","TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384","TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384","TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256","TLS_ECDHE_ECDSA_WITH_NULL_SHA","TLS_ECDHE_ECDSA_WITH_RC4_128_SHA","TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA","TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA","TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256","TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA","TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384","TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256","TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384","TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256","TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384","TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256","TLS_ECDHE_PSK_WITH_NULL_SHA","TLS_ECDHE_PSK_WITH_NULL_SHA256","TLS_ECDHE_PSK_WITH_NULL_SHA384","TLS_ECDHE_PSK_WITH_RC4_128_SHA","TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA","TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA","TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256","TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256","TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA","TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384","TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384","TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256","TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256","TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384","TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384","TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256","TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256","TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384","TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384","TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256","TLS_ECDHE_RSA_WITH_NULL_SHA","TLS_ECDHE_RSA_WITH_RC4_128_SHA","TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA","TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA_draft","TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA","TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256","TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA_draft","TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256","TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA","TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384","TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA_draft","TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384","TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256","TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256","TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384","TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384","TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256","TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256","TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384","TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384","TLS_ECDH_ECDSA_WITH_DES_CBC_SHA_draft","TLS_ECDH_ECDSA_WITH_NULL_SHA","TLS_ECDH_ECDSA_WITH_NULL_SHA_draft","TLS_ECDH_ECDSA_WITH_RC4_128_SHA","TLS_ECDH_ECDSA_WITH_RC4_128_SHA_draft","TLS_ECDH_ECNRA_WITH_3DES_EDE_CBC_SHA_draft","TLS_ECDH_ECNRA_WITH_DES_CBC_SHA_draft","TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA","TLS_ECDH_RSA_WITH_AES_128_CBC_SHA","TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256","TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256","TLS_ECDH_RSA_WITH_AES_256_CBC_SHA","TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384","TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384","TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256","TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256","TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384","TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384","TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256","TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256","TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384","TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384","TLS_ECDH_RSA_WITH_NULL_SHA","TLS_ECDH_RSA_WITH_RC4_128_SHA","TLS_ECDH_anon_EXPORT_WITH_DES40_CBC_SHA_draft","TLS_ECDH_anon_EXPORT_WITH_RC4_40_SHA_draft","TLS_ECDH_anon_NULL_WITH_SHA_draft","TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA","TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA_draft","TLS_ECDH_anon_WITH_AES_128_CBC_SHA","TLS_ECDH_anon_WITH_AES_256_CBC_SHA","TLS_ECDH_anon_WITH_DES_CBC_SHA_draft","TLS_ECDH_anon_WITH_NULL_SHA","TLS_ECDH_anon_WITH_RC4_128_SHA","TLS_ECDH_anon_WITH_RC4_128_SHA_draft","TLS_ECMQV_ECDSA_NULL_SHA_draft","TLS_ECMQV_ECDSA_WITH_3DES_EDE_CBC_SHA_draft","TLS_ECMQV_ECDSA_WITH_DES_CBC_SHA_draft","TLS_ECMQV_ECDSA_WITH_RC4_128_SHA_draft","TLS_ECMQV_ECNRA_NULL_SHA_draft","TLS_ECMQV_ECNRA_WITH_3DES_EDE_CBC_SHA_draft","TLS_ECMQV_ECNRA_WITH_DES_CBC_SHA_draft","TLS_ECMQV_ECNRA_WITH_RC4_128_SHA_draft","TLS_EMPTY_RENEGOTIATION_INFO_SCSV","TLS_GOSTR341001_WITH_28147_CNT_IMIT","TLS_GOSTR341001_WITH_NULL_GOSTR3411","TLS_GOSTR341094_WITH_28147_CNT_IMIT","TLS_GOSTR341094_WITH_NULL_GOSTR3411","TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5","TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA","TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5","TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA","TLS_KRB5_EXPORT_WITH_RC4_40_MD5","TLS_KRB5_EXPORT_WITH_RC4_40_SHA","TLS_KRB5_WITH_3DES_EDE_CBC_MD5","TLS_KRB5_WITH_3DES_EDE_CBC_SHA","TLS_KRB5_WITH_DES_CBC_MD5","TLS_KRB5_WITH_DES_CBC_SHA_or_SSL_FORTEZZA_KEA_WITH_RC4_128_SHA","TLS_KRB5_WITH_IDEA_CBC_MD5","TLS_KRB5_WITH_IDEA_CBC_SHA","TLS_KRB5_WITH_RC4_128_MD5","TLS_KRB5_WITH_RC4_128_SHA","TLS_NULL_WITH_NULL_NULL","TLS_PSK_DHE_WITH_AES_128_CCM_8","TLS_PSK_DHE_WITH_AES_256_CCM_8","TLS_PSK_WITH_3DES_EDE_CBC_SHA","TLS_PSK_WITH_AES_128_CBC_SHA","TLS_PSK_WITH_AES_128_CBC_SHA256","TLS_PSK_WITH_AES_128_CCM","TLS_PSK_WITH_AES_128_CCM_8","TLS_PSK_WITH_AES_128_GCM_SHA256","TLS_PSK_WITH_AES_256_CBC_SHA","TLS_PSK_WITH_AES_256_CBC_SHA384","TLS_PSK_WITH_AES_256_CCM","TLS_PSK_WITH_AES_256_CCM_8","TLS_PSK_WITH_AES_256_GCM_SHA384","TLS_PSK_WITH_ARIA_128_CBC_SHA256","TLS_PSK_WITH_ARIA_128_GCM_SHA256","TLS_PSK_WITH_ARIA_256_CBC_SHA384","TLS_PSK_WITH_ARIA_256_GCM_SHA384","TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256","TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256","TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384","TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384","TLS_PSK_WITH_CHACHA20_POLY1305_SHA256","TLS_PSK_WITH_NULL_SHA","TLS_PSK_WITH_NULL_SHA256","TLS_PSK_WITH_NULL_SHA384","TLS_PSK_WITH_RC4_128_SHA","TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA","TLS_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5","TLS_RSA_EXPORT1024_WITH_RC4_56_MD5","TLS_RSA_EXPORT1024_WITH_RC4_56_SHA","TLS_RSA_EXPORT_WITH_DES40_CBC_SHA","TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5","TLS_RSA_EXPORT_WITH_RC4_40_MD5","TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA","TLS_RSA_PSK_WITH_AES_128_CBC_SHA","TLS_RSA_PSK_WITH_AES_128_CBC_SHA256","TLS_RSA_PSK_WITH_AES_128_GCM_SHA256","TLS_RSA_PSK_WITH_AES_256_CBC_SHA","TLS_RSA_PSK_WITH_AES_256_CBC_SHA384","TLS_RSA_PSK_WITH_AES_256_GCM_SHA384","TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256","TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256","TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384","TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384","TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256","TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256","TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384","TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384","TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256","TLS_RSA_PSK_WITH_NULL_SHA","TLS_RSA_PSK_WITH_NULL_SHA256","TLS_RSA_PSK_WITH_NULL_SHA384","TLS_RSA_PSK_WITH_RC4_128_SHA","TLS_RSA_WITH_3DES_EDE_CBC_RMD","TLS_RSA_WITH_3DES_EDE_CBC_SHA","TLS_RSA_WITH_AES_128_CBC_RMD","TLS_RSA_WITH_AES_128_CBC_SHA","TLS_RSA_WITH_AES_128_CBC_SHA256","TLS_RSA_WITH_AES_128_CCM","TLS_RSA_WITH_AES_128_CCM_8","TLS_RSA_WITH_AES_128_GCM_SHA256","TLS_RSA_WITH_AES_256_CBC_RMD","TLS_RSA_WITH_AES_256_CBC_SHA","TLS_RSA_WITH_AES_256_CBC_SHA256","TLS_RSA_WITH_AES_256_CCM","TLS_RSA_WITH_AES_256_CCM_8","TLS_RSA_WITH_AES_256_GCM_SHA384","TLS_RSA_WITH_ARIA_128_CBC_SHA256","TLS_RSA_WITH_ARIA_128_GCM_SHA256","TLS_RSA_WITH_ARIA_256_CBC_SHA384","TLS_RSA_WITH_ARIA_256_GCM_SHA384","TLS_RSA_WITH_CAMELLIA_128_CBC_SHA","TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256","TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256","TLS_RSA_WITH_CAMELLIA_256_CBC_SHA","TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256","TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384","TLS_RSA_WITH_DES_CBC_SHA","TLS_RSA_WITH_IDEA_CBC_SHA","TLS_RSA_WITH_NULL_MD5","TLS_RSA_WITH_NULL_SHA","TLS_RSA_WITH_NULL_SHA256","TLS_RSA_WITH_RC4_128_MD5","TLS_RSA_WITH_RC4_128_SHA","TLS_RSA_WITH_SEED_CBC_SHA","TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA","TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA","TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA","TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA","TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA","TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA","TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA","TLS_SRP_SHA_WITH_AES_128_CBC_SHA","TLS_SRP_SHA_WITH_AES_256_CBC_SHA","TLSv1_0","TLSv1_1","TLSv1_2","TLSv1_3","Ticketer","Tls12","Tls12CipherSuite","Tls12NotOffered","Tls12NotOfferedOrEnabled","Tls13","Tls13CipherSuite","Tls13RequiredForQuic","TooMuchEarlyDataReceived","TrailingData","UncompressedEcPointsRequired","UnexpectedCleartextExtension","UnexpectedMessage","UnexpectedMessage","UnhandledCriticalExtension","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","UnknownCA","UnknownIssuer","UnknownPSKIdentity","UnknownProtocolVersion","UnrecognisedName","UnsolicitedCertExtension","UnsolicitedEncryptedExtension","UnsolicitedSctList","UnsolicitedServerHelloExtension","UnsupportedCertificate","UnsupportedCompression","UnsupportedCriticalExtension","UnsupportedCrlVersion","UnsupportedCurveType","UnsupportedDeltaCrl","UnsupportedExtension","UnsupportedIndirectCrl","UnsupportedKeyExchangeAlgorithm","UnsupportedNameType","UnsupportedRevocationReason","UserCanceled","WantsCipherSuites","WantsKxGroups","WantsVerifier","WantsVersions","Writer","WrongGroupForKeyShare","X25519","X448","add","add_parsable_certificates","add_server_trust_anchors","alpn_protocol","as_ref","as_str","as_str","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","can_resume_from","cipher_suite","client","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","common","common","complete_io","complete_io","conn","conn","deref","deref","deref_mut","deref_mut","empty","encode","encode","encode","encode","encode","encode","encode","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","explicit_nonce_len","export_keying_material","export_keying_material","fixed_iv_len","flush","flush","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_subject_spki_name_constraints","get_mut","get_ref","get_u16","get_u16","get_u16","get_u8","get_u8","get_u8","get_u8","hash","hash_algorithm","hash_algorithm","hash_algorithm","internal","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_empty","is_handshaking","kx","kx_group","len","log","log","log","manual","name","negotiated_cipher_suite","new","new","new","new","partial_cmp","peer_certificates","peer_has_closed","plaintext_bytes_to_read","process_new_packets","process_new_packets","protocol_version","provide","read","read","read","read","read","read","read","read","read","read","read","read","read_tls","read_tls","reader","reader","resolve_sig_schemes","roots","scheme","secp256r1","secp384r1","secp521r1","send_close_notify","server","set_buffer_limit","sign","sign","signature","sock","sock","subject","suite","tls_bytes_to_write","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","usable_for_signature_algorithm","version","version","version","wants_read","wants_write","will_log","will_log","will_log","with_cert_resolver","with_certificate_transparency_logs","with_cipher_suites","with_client_auth_cert","with_client_auth_cert","with_client_cert_resolver","with_client_cert_resolver","with_client_cert_verifier","with_custom_certificate_verifier","with_kx_groups","with_no_client_auth","with_no_client_auth","with_no_client_auth","with_protocol_versions","with_root_certificates","with_safe_default_cipher_suites","with_safe_default_kx_groups","with_safe_default_protocol_versions","with_safe_defaults","with_single_cert","with_single_cert","with_single_cert","with_single_cert_with_ocsp_and_sct","write","write","write","write_tls","write_tls","write_vectored","write_vectored","writer","writer","expect_types","expect_types","got_type","got_type","CipherSuiteCommon","TLS13_AES_128_GCM_SHA256","TLS13_AES_256_GCM_SHA384","TLS13_CHACHA20_POLY1305_SHA256","TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256","TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384","TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256","TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256","TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384","TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256","borrow","borrow_mut","bulk","fmt","from","into","suite","try_from","try_into","type_id","CertificateTransparencyPolicy","ClientConfig","ClientConnection","ClientConnectionData","ClientSessionMemoryCache","ClientSessionStore","DangerousClientConfig","Disabled","DnsName","HandshakeSignatureValid","InvalidDnsNameError","IpAddress","ResolvesClientCert","Resumption","ServerCertVerified","ServerCertVerifier","ServerName","SessionIdOnly","SessionIdOrTickets","Tls12ClientSessionValue","Tls12Resumption","Tls13ClientSessionValue","WantsClientCert","WantsTransparencyPolicyOrClientCert","WebPkiVerifier","WriteEarlyData","alpn_protocols","assertion","assertion","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","builder","bytes_left","cfg","client_auth_cert_resolver","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","dangerous","default","deref","deref_mut","disabled","early_data","enable_early_data","enable_sni","eq","eq","equivalent","flush","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","has_certs","hash","in_memory_sessions","insert_tls13_ticket","insert_tls13_ticket","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","is_early_data_accepted","key_log","kx_hint","kx_hint","max_fragment_size","new","new","new","new","provide","remove_tls12_session","remove_tls12_session","request_scts","request_scts","resolve","resumption","set_certificate_verifier","set_kx_hint","set_kx_hint","set_tls12_session","set_tls12_session","store","supported_verify_schemes","supported_verify_schemes","take_tls13_ticket","take_tls13_ticket","tls12_resumption","tls12_session","tls12_session","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verification_schemes","verify_server_cert","verify_server_cert","verify_server_cert_signed_by_trust_anchor","verify_server_name","verify_tls12_signature","verify_tls12_signature","verify_tls13_signature","verify_tls13_signature","write","cipher","msgs","record_layer","MessageDecrypter","decrypt","alert","base","ccs","codec","deframer","enums","fragmenter","handshake","message","persist","AlertMessagePayload","borrow","borrow_mut","description","encode","fmt","from","into","level","read","try_from","try_into","type_id","Payload","PayloadU16","PayloadU24","PayloadU8","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","empty","empty","empty","encode","encode","encode","encode","encode_slice","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","into","into","into","into","into_inner","new","new","new","new","read","read","read","read","read","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","ChangeCipherSpecPayload","borrow","borrow_mut","encode","fmt","from","into","read","try_from","try_into","type_id","Codec","ListLength","Reader","SIZE_LEN","TlsListElement","U16","U24","U8","any_left","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","encode","encode","expect_empty","fmt","from","from","from","get_encoding","get_encoding","init","into","into","into","left","put_u16","put_u64","read","read","read_bytes","read_bytes","rest","sub","take","to_owned","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","u24","used","max","Deframed","DeframerError","HandshakePayloadSizeTooLarge","MessageDeframer","aligned","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","default","fmt","fmt","from","from","from","has_pending","into","into","into","message","pop","read","trial_decryption_finished","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","want_close_before_decrypt","ALProtocolNegotiation","ANSIX962CompressedChar2","ANSIX962CompressedPrime","AlertLevel","CertificateAuthorities","CertificateStatusType","CertificateType","ChannelId","ClientAuthz","ClientCertificateType","ClientCertificateUrl","Compression","Cookie","DSSEphemeralDH","DSSFixedDH","DSSSign","Deflate","ECCurveType","ECDSAFixedECDH","ECDSASign","ECPointFormat","ECPointFormats","EarlyData","EllipticCurves","ExplicitChar2","ExplicitPrime","ExtendedMasterSecret","ExtensionType","FFDHE2048","FFDHE3072","FFDHE4096","FFDHE6144","FFDHE8192","Fatal","FortezzaDMS","HashAlgorithm","Heartbeat","HeartbeatMessageType","HeartbeatMode","HostName","KeyShare","KeyUpdateRequest","LSZ","MD5","MaxFragmentLength","NONE","NamedCurve","NamedCurve","NamedGroup","NextProtocolNegotiation","Null","OCSP","OIDFilters","PSKKeyExchangeMode","PSKKeyExchangeModes","PSK_DHE_KE","PSK_KE","Padding","PeerAllowedToSend","PeerNotAllowedToSend","PostHandshakeAuth","PreSharedKey","RSAEphemeralDH","RSAFixedDH","RSAFixedECDH","RSASign","RenegotiationInfo","Request","Response","SCT","SHA1","SHA224","SHA256","SHA384","SHA512","SRP","SUPPORTED","ServerAuthz","ServerName","ServerNameType","SessionTicket","SignatureAlgorithms","SignatureAlgorithmsCert","StatusRequest","SupportedVersions","TicketEarlyDataInfo","TransportParameters","TransportParametersDraft","TruncatedHMAC","TrustedCAKeys","Uncompressed","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","UpdateNotRequested","UpdateRequested","UseSRTP","UserMapping","Warning","X25519","X25519","X448","X448","arbitrary_explicit_char2_curves","arbitrary_explicit_prime_curves","as_str","as_str","as_str","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","brainpoolp256r1","brainpoolp384r1","brainpoolp512r1","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","get_u16","get_u16","get_u16","get_u8","get_u8","get_u8","get_u8","get_u8","get_u8","get_u8","get_u8","get_u8","get_u8","get_u8","get_u8","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","secp160k1","secp160r1","secp160r2","secp192k1","secp192r1","secp224k1","secp224r1","secp256k1","secp256r1","secp256r1","secp384r1","secp384r1","secp521r1","secp521r1","sect163k1","sect163r1","sect163r2","sect193r1","sect193r2","sect233k1","sect233r1","sect239k1","sect283k1","sect283r1","sect409k1","sect409r1","sect571k1","sect571r1","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","MAX_FRAGMENT_LEN","MAX_FRAGMENT_SIZE","MessageFragmenter","PACKET_OVERHEAD","borrow","borrow_mut","default","fragment_message","fragment_slice","from","into","set_max_fragment_size","try_from","try_into","type_id","AuthorityNames","BulkOnly","CertReqExtension","Certificate","CertificateEntry","CertificateExtension","CertificatePayload","CertificatePayloadTLS13","CertificateRequest","CertificateRequestPayload","CertificateRequestPayloadTLS13","CertificateRequestTLS13","CertificateStatus","CertificateStatus","CertificateStatus","CertificateStatusAck","CertificateStatusRequest","CertificateStatusRequest","CertificateTLS13","CertificateVerify","ClientECDHParams","ClientExtension","ClientHello","ClientHelloPayload","ClientKeyExchange","ClientSessionTicket","ConvertProtocolNameList","ConvertServerNameList","Cookie","Cookie","DH","DHE","DistinguishedName","ECDH","ECDHE","ECDHE","ECDHEServerKeyExchange","ECParameters","ECPointFormats","ECPointFormats","EarlyData","EarlyData","EarlyData","EncryptedExtensions","EndOfEarlyData","ExtendedMasterSecretAck","ExtendedMasterSecretRequest","Finished","HandshakeMessagePayload","HandshakePayload","HasServerExtensions","HelloRequest","HelloRetryExtension","HelloRetryRequest","HelloRetryRequest","HostName","KeyExchangeAlgorithm","KeyShare","KeyShare","KeyShare","KeyShareEntry","KeyUpdate","MessageHash","NamedGroups","NewSessionTicket","NewSessionTicketExtension","NewSessionTicketPayload","NewSessionTicketPayloadTLS13","NewSessionTicketTLS13","OCSP","OCSPCertificateStatusRequest","Offer","PresharedKey","PresharedKey","PresharedKeyBinder","PresharedKeyIdentity","PresharedKeyModes","PresharedKeyOffer","ProtocolName","Protocols","Protocols","RSA","Random","RenegotiationInfo","Request","ResponderId","Sct","ServerECDHParams","ServerExtension","ServerHello","ServerHelloDone","ServerHelloPayload","ServerKeyExchange","ServerKeyExchangePayload","ServerName","ServerName","ServerNameAck","ServerNamePayload","SessionId","SessionTicket","SessionTicketAck","SignatureAlgorithms","SignatureAlgorithms","SignedCertificateTimestamp","SignedCertificateTimestamp","SignedCertificateTimestampRequest","SupportedVersions","SupportedVersions","SupportedVersions","TransportParameters","TransportParameters","TransportParametersDraft","TransportParametersDraft","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","Unknown","UnknownExtension","age_add","any_entry_has_duplicate_extension","any_entry_has_extension","any_entry_has_unknown_extension","as_ref","as_ref","as_ref","as_ref","as_ref","as_single_slice","binders","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_handshake_hash","build_key_update_notify","build_ocsp","canames","cert","certtypes","check_psk_ext_is_last","cipher_suite","cipher_suite","cipher_suites","client_version","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","compression_method","compression_methods","context","context","convert","curve_params","curve_type","dss","early_data_extension_offered","early_data_extension_offered","early_data_extension_offered","empty","ems_support_acked","ems_support_offered","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","encode","entries","eq","eq","eq","equivalent","extensions","extensions","extensions","extensions","extensions","exts","exts","find_extension","find_extension","find_extension","find_extension","find_extension","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_slices","get_alpn_extension","get_alpn_protocol","get_alpn_protocol","get_authorities_extension","get_cert_status","get_cookie","get_ecpoints_extension","get_ecpoints_extension","get_encoding_for_binder_signing","get_end_entity_ocsp","get_end_entity_scts","get_extensions","get_extensions","get_key_share","get_keyshare_extension","get_max_early_data_size","get_namedgroups_extension","get_ocsp_response","get_psk","get_psk_index","get_psk_modes","get_quic_params_extension","get_quic_params_extension","get_quic_params_extension","get_requested_key_share_group","get_sct_list","get_sct_list","get_scts","get_sigalgs_extension","get_sigalgs_extension","get_single_hostname","get_sni_extension","get_supported_versions","get_supported_versions","get_ticket_extension","get_type","get_type","get_type","get_type","get_type","get_type","get_versions_extension","group","has_duplicate_extension","has_duplicate_extension","has_duplicate_extension","has_duplicate_extension","has_duplicate_extension","has_duplicate_extension","has_duplicate_names_for_type","has_keyshare_extension_with_duplicates","has_unknown_extension","has_unknown_extension","identities","identity","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_inner","is_empty","legacy_version","legacy_version","len","lifetime","lifetime_hint","make_alpn","make_empty_renegotiation_info","make_sct","make_sct","make_sni","named_group","new","new","new","new","new","new","new","new","new","new","new_hostname","nonce","obfuscated_ticket_age","ocsp_response","params","payload","payload","payload","payload","psk_mode_offered","public","public","random","random","random","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read","read_version","responder_ids","session_id","session_id","session_id","set_psk_binder","sigschemes","ticket","ticket","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_slices","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","typ","typ","typ","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unwrap_given_kxa","write_slice","Alert","ApplicationData","BorrowedPlainMessage","ChangeCipherSpec","Handshake","InvalidContentType","InvalidEmptyPayload","MAX_WIRE_SIZE","Message","MessageError","MessagePayload","MessageTooLarge","OpaqueMessage","PlainMessage","TooShortForHeader","TooShortForLength","UnknownProtocolVersion","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","build_alert","build_key_update_notify","clone","clone","clone_into","clone_into","content_type","encode","encode","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","handshake","into","into","into","into","into","into","into_plain_message","into_unencrypted_opaque","is_handshake_type","new","payload","payload","payload","payload","read","to_owned","to_owned","to_unencrypted_opaque","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","typ","typ","typ","type_id","type_id","type_id","type_id","type_id","type_id","version","version","version","version","encoded","parsed","ClientSessionCommon","Retrieved","ServerSessionKey","ServerSessionValue","Tls12ClientSessionValue","Tls13ClientSessionValue","age_obfuscation_offset","alpn","application_data","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cipher_suite","client_cert_chain","clone","clone","clone_into","clone_into","creation_time_sec","deref","deref","deref","encode","extended_ms","fmt","fmt","fmt","fmt","from","from","from","from","from","has_expired","into","into","into","into","into","is_fresh","map","master_secret","max_early_data_size","new","new","obfuscated_ticket_age","read","set_extended_ms_used","set_freshness","sni","suite","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","value","version","Decrypted","RecordLayer","borrow","borrow","borrow_mut","borrow_mut","fmt","from","from","into","into","new","plaintext","try_from","try_from","try_into","try_into","type_id","type_id","want_close_before_decrypt","SECP256R1","SECP384R1","X25519","_01_impl_vulnerabilities","_02_tls_vulnerabilities","_03_howto","_04_features","_05_defaults","Accepted","Acceptor","AllowAnyAnonymousOrAuthenticatedClient","AllowAnyAuthenticatedClient","ClientCertVerified","ClientCertVerifier","ClientHello","DnsName","NoClientAuth","NoServerSessionStorage","ParsedCertificate","ProducesTickets","ReadEarlyData","ResolvesServerCert","ResolvesServerCertUsingSni","ServerConfig","ServerConnection","ServerConnectionData","ServerSessionMemoryCache","StoresServerSessions","UnparsedCertRevocationList","WantsServerCert","accept","add","alpn","alpn_protocols","as_ref","assertion","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","boxed","boxed","boxed","builder","can_cache","can_cache","can_cache","cert_resolver","cipher_suites","client_auth_mandatory","client_auth_mandatory","client_auth_mandatory","client_auth_root_subjects","client_auth_root_subjects","client_auth_root_subjects","client_auth_root_subjects","client_hello","clone","clone","clone","clone_into","clone_into","clone_into","decrypt","default","default","deref","deref_mut","early_data","enabled","encrypt","eq","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","get","get","get","hash","ignore_client_order","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_connection","key_log","lifetime","max_early_data_size","max_fragment_size","new","new","new","new","new","offer_client_auth","offer_client_auth","offer_client_auth","offer_client_auth","offer_client_auth","parse","put","put","put","read","read_tls","received_resumption_data","reject_early_data","resolve","resolve","send_half_rtt_data","send_tls13_tickets","server_name","server_name","session_storage","set_resumption_data","signature_schemes","supported_verify_schemes","supported_verify_schemes","take","take","take","ticketer","to_owned","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_ascii","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verify_client_cert","verify_client_cert","verify_client_cert","verify_client_cert","verify_tls12_signature","verify_tls12_signature","verify_tls13_signature","verify_tls13_signature","with_crls","with_crls","CertifiedKey","SignError","Signer","SigningKey","algorithm","any_ecdsa_type","any_eddsa_type","any_supported_type","borrow","borrow","borrow_mut","borrow_mut","cert","choose_scheme","clone","clone_into","end_entity_cert","fmt","fmt","from","from","into","into","key","new","ocsp","provide","scheme","sct_list","sign","supported_sign_tls13","to_owned","to_string","try_from","try_from","try_into","try_into","type_id","type_id","TLS12","TLS13"],"q":[[0,"rustls"],[1289,"rustls::Error"],[1293,"rustls::cipher_suite"],[1313,"rustls::client"],[1547,"rustls::internal"],[1550,"rustls::internal::cipher"],[1552,"rustls::internal::msgs"],[1562,"rustls::internal::msgs::alert"],[1575,"rustls::internal::msgs::base"],[1650,"rustls::internal::msgs::ccs"],[1661,"rustls::internal::msgs::codec"],[1713,"rustls::internal::msgs::codec::ListLength"],[1714,"rustls::internal::msgs::deframer"],[1749,"rustls::internal::msgs::enums"],[2155,"rustls::internal::msgs::fragmenter"],[2170,"rustls::internal::msgs::handshake"],[2909,"rustls::internal::msgs::message"],[3005,"rustls::internal::msgs::message::MessagePayload"],[3007,"rustls::internal::msgs::persist"],[3084,"rustls::internal::record_layer"],[3104,"rustls::kx_group"],[3107,"rustls::manual"],[3112,"rustls::server"],[3365,"rustls::sign"],[3404,"rustls::version"]],"d":["A list of all the cipher suites supported by rustls.","A list of all the key exchange groups supported by rustls.","A list of all the protocol versions supported by rustls.","","AES with 128-bit keys in Galois counter mode.","AES with 256-bit keys in Galois counter mode.","","The AlertDescription TLS protocol enum. Values in this …","We received a fatal alert. This means the peer is unhappy.","","","The certificate is valid, but the handshake is rejected …","","","","","","The certificate is not correctly encoded.","The max_fragment_size value supplied in configuration was …","","A certificate is not correctly signed by the key of its …","The CRL had a bad, or unsupported signature from its …","Bulk symmetric encryption scheme used by a cipher suite.","The ways in which a certificate revocation list (CRL) can …","This type contains a single certificate by value.","","The ways in which certificate validators can express …","","","","","","","","","","Chacha20 for confidentiality with poly1305 for …","","The CipherSuite TLS protocol enum. Values in this enum …","A client initiates the connection.","A client connection","","","","","","Connection state common to both client and server …","Building a ServerConfig or ClientConfig in a …","Helper trait to abstract ConfigBuilder over building a …","A client or server connection.","Interface shared by client and server connections.","The ContentType TLS protocol enum. Values in this enum …","The cipher suite configuration that an application should …","The version configuration that an application should use …","","","","","","","We couldn’t decrypt a message. This is invariably fatal.","","","This type combines a SignatureScheme and a signature …","","A DistinguishedName is a Vec<u8> wrapped in internal types.","","","","","","","","","","","","","","","","","","","","We couldn’t encrypt a message because it was larger than …","","","rustls reports protocol errors using this type.","The current time is after the notAfter time in the …","","","","","","","We failed to figure out what time it currently is.","We failed to acquire random bytes from the system.","","A catch-all error for unlikely errors.","","","","This function doesn’t work until the TLS handshake is …","An advertised message was larger then expected.","The HandshakeType TLS protocol enum. Values in this enum …","","","","","","","","","","","","","","","We received a TLS handshake message that isn’t valid …","We received a TLS message that isn’t valid right now. …","","","","The peer sent us a syntactically incorrect …","Context was incorrectly attached to a certificate request …","A provided certificate revocation list (CRL) was invalid.","We saw an invalid certificate.","A peer sent an invalid certificate status type","An unknown content type was encountered during message …","The CRL contained an invalid CRL number.","A peer’s DH params could not be decoded","A message was zero-length when its record kind forbids it.","","A peer sent an unexpected key update request.","","A corrupt TLS message payload that resulted in an error.","The peer sent us a TLS message with invalid contents.","The certificate is being used for a different purpose than …","The CRL contained a revoked certificate with an invalid …","The presented SCT(s) were invalid.","","A peer’s server name could not be decoded","Values of this structure are returned from …","The CRL issuer does not specify the cRLSign key usage.","","This trait represents the ability to do something useful …","KeyLog implementation that opens a file whose name is …","","","","","","A TLS message payload was larger then allowed by the …","Message is shorter than the expected length","","Missing data for the named handshake payload value","","A peer did not advertise its supported key exchange groups.","","","","The NamedGroup TLS protocol enum. Values in this enum are …","","","An incoming connection did not support any known …","","","","The peer didn’t give us any certificates.","","","KeyLog that does exactly nothing.","","","A peer sent an empty list of signature schemes","","The subject names in an end-entity certificate do not …","The current time is before the notBefore time in the …","","","","","","Any other error.","The CRL is invalid for some other reason.","A trust anchor, commonly known as a “Root Certificate.”","The CRL is not correctly encoded.","The set of cases where we failed to make a connection …","The peer doesn’t support a protocol version/feature we …","The set of cases where we failed to make a connection …","The peer deviated from the standard TLS protocol. The …","The peer sent an oversized record/fragment.","This type contains a private key by value.","The ProtocolVersion TLS protocol enum. Values in this …","","","","","","","","","","","","A structure that implements std::io::Read for reading …","","","","","","","","The certificate has been revoked.","A container for root certificates able to provide a …","","","","","","","","","","","","","","","","A server waits for a client to connect.","A server connection","","","","","","","","","","","","","Side of the connection.","Data specific to the peer’s side (client or server).","The SignatureAlgorithm TLS protocol enum. Values in this …","","The SignatureScheme TLS protocol enum. Values in this …","","","This type implements io::Read and io::Write, encapsulating …","This type implements io::Read and io::Write, encapsulating …","A cipher suite supported by rustls.","A key-exchange group supported by rustls.","A TLS protocol version supported by rustls.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A concrete, safe ticket creation mechanism.","A TLS 1.2 cipher suite","A TLS 1.2 cipher suite supported by rustls.","","","A TLS 1.3 cipher suite","A TLS 1.3 cipher suite supported by rustls.","","","Trailing data found for the named handshake payload value","","","A peer sent an unexpected message type.","","The certificate contains an extension marked critical, but …","","","","","","","","","","The certificate chain is not issued by a known root …","","An unknown TLS protocol was encountered during message …","","","","","","","A peer sent a non-null compression method.","The CRL, or a revoked certificate in the CRL, contained an …","The CRL is not a v2 X.509 CRL.","A peer sent an unknown elliptic curve type.","The CRL is an unsupported delta CRL, containing only …","","The CRL is an unsupported indirect CRL, containing revoked …","A peer sent an unsupported key exchange algorithm.","The certificate verifier doesn’t support the given type …","The CRL contained a revoked certificate with an …","","Config builder state where the caller must supply cipher …","Config builder state where the caller must supply key …","Config builder state where the caller must supply a …","Config builder state where the caller must supply TLS …","A structure that implements std::io::Write for writing …","","","","Add a single DER-encoded certificate to the store.","Parse the given DER-encoded certificates and add all that …","Adds all the given TrustAnchors anchors. This does not …","Retrieves the protocol agreed with the peer via ALPN.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Can a session using suite self resume from suite prev?","All defined ciphersuites appear in this module.","Items for use in a client.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Common cipher suite fields.","Common cipher suite fields.","This function uses io to complete any outstanding IO for …","This function uses io to complete any outstanding IO for …","Our TLS connection","Our connection","","","","","Make a new, empty RootCertStore.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","This is a non-standard extension which extends the key …","Derives key material from the agreed connection secrets.","Derives key material from the agreed connection secrets.","How long the fixed part of the ‘IV’ is.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","Constructs an OwnedTrustAnchor from its components.","Get a mutable reference to the underlying socket","Get a reference to the underlying socket","","","","","","","","","Which hash function to use with this suite.","Which hash function to use with this suite.","Which hash function to use with this suite.","Internal classes which may be useful outside the library. …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return true if there are no certificates.","Returns true if the connection is currently performing the …","How to exchange/agree keys.","All defined key exchange groups appear in this module.","Say how many certificates are in the container.","Log the given secret. client_random is provided for …","","","This is the rustls manual.","The IANA “TLS Supported Groups” name of the group","Retrieves the ciphersuite agreed with the peer.","Makes a new KeyLogFile. The environment variable is …","Make the recommended Ticketer. This produces tickets with …","Make a new Stream using the Connection conn and …","Make a new StreamOwned taking the Connection conn and …","","Retrieves the certificate chain used by the peer to …","True if the peer has sent us a close_notify alert. This is","How many plaintext bytes could be obtained via …","Processes any new packets read by a previous call to …","Processes any new packets read by a previous call to …","Retrieves the protocol version agreed with the peer.","","Obtain plaintext data received from the peer over this TLS …","","","","","","","","","","","","Read TLS content from rd into the internal buffer.","Read TLS content from rd.","Returns an object that allows reading plaintext.","Returns an object that allows reading plaintext.","Resolve the set of supported SignatureSchemes from the …","The list of roots.","The SignatureScheme used to produce the signature.","","","","Queues a close_notify warning alert to be sent in the next …","Items for use in a server.","Sets a limit on the internal buffers used to buffer unsent …","Message signing interfaces and implementations.","How to sign messages for authentication.","Get the signature.","The underlying transport, like a socket","The underlying transport, like a socket","Return the subject field including its outer SEQUENCE …","The cipher suite’s identifier","How many bytes could be written by Connection::write_tls …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Return true if this suite is usable for a key only …","All defined protocol versions appear in this module.","Return supported protocol version for the cipher suite.","The TLS enumeration naming this version.","Returns true if the caller should call Connection::read_tls…","Returns true if the caller should call …","Indicates whether the secret with label label will be …","Indicates whether the secret with label label will be …","","Sets a custom ResolvesServerCert.","Set Certificate Transparency logs to use for server …","Choose a specific set of cipher suites.","Sets a single certificate chain and matching private key …","Sets a single certificate chain and matching private key …","Sets a custom ResolvesClientCert.","Sets a custom ResolvesClientCert.","Choose how to verify client certificates.","Set a custom certificate verifier.","Choose a specific set of key exchange groups.","Disable client authentication.","Do not support client auth.","Do not support client auth.","Use a specific set of protocol versions.","Choose how to verify server certificates.","Choose the default set of cipher suites (…","Choose the default set of key exchange groups (…","Accept the default protocol versions: both TLS1.2 and …","Start side-specific config with defaults for underlying …","Sets a single certificate chain and matching private key …","Sets a single certificate chain and matching private key …","Sets a single certificate chain and matching private key. …","Sets a single certificate chain, matching private key, OCSP","Send the plaintext buf to the peer, encrypting and …","","","Writes TLS messages to wr.","Writes TLS messages to wr.","","","Returns an object that allows writing plaintext.","Returns an object that allows writing plaintext.","Which types we expected","Which handshake type we expected","What type we received","What handshake type we received","Common state for cipher suites (both for TLS 1.2 and TLS …","The TLS1.3 ciphersuite TLS_AES_128_GCM_SHA256","The TLS1.3 ciphersuite TLS_AES_256_GCM_SHA384","The TLS1.3 ciphersuite TLS_CHACHA20_POLY1305_SHA256","The TLS1.2 ciphersuite …","The TLS1.2 ciphersuite …","The TLS1.2 ciphersuite …","The TLS1.2 ciphersuite …","The TLS1.2 ciphersuite …","The TLS1.2 ciphersuite …","","","How to do bulk encryption.","","Returns the argument unchanged.","Calls U::from(self).","The TLS enumeration naming this cipher suite.","","","","Policy for enforcing Certificate Transparency.","Common configuration for (typically) all connections made …","This represents a single TLS client connection.","State associated with a client connection.","An implementer of ClientSessionStore that stores everything","A trait for the ability to store client session data, so …","Accessor for dangerous configuration options.","Disable 1.2 resumption.","The server is identified by a DNS name. The name is sent …","Zero-sized marker type representing verification of a …","The provided input could not be parsed because it is not a …","The server is identified by an IP address. SNI is not done.","A trait for the ability to choose a certificate chain and …","Configuration for how/when a client is allowed to resume a …","Zero-sized marker type representing verification of a …","Something that can verify a server certificate chain, and …","Encodes ways a client can know the expected name of the …","Support 1.2 resumption using session ids only.","Support 1.2 resumption using session ids or RFC 5077 …","","What mechanisms to support for resuming a TLS 1.2 session.","","A config builder state where the caller needs to supply …","A config builder state where the caller needs to supply a …","Default ServerCertVerifier, see the trait impl for more …","Stub that implements io::Write and dispatches to …","Which ALPN protocols we include in our client hello. If …","Make a HandshakeSignatureValid","Make a ServerCertVerified","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Create a builder to build up the client configuration.","How many bytes you may send. Writes will become short …","The underlying ClientConfig","How to decide what client auth certificate/keys to use.","","","","","","","","","","","","","Access configuration options whose use is dangerous and …","Create an in-memory session store resumption with up to …","","","Disable all use of session resumption.","Returns an io::Write implementer you can write bytes to to …","Whether to send data on the first flight (“early data”…","Whether to send the Server Name Indication (SNI) extension …","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Return true if any certificates at all are available.","","Create a new Resumption that stores data for the given …","Remember a TLS1.3 ticket that might be retrieved later …","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns True if the server signalled it will process early …","How to output key material for debugging. The default …","This should return the value most recently passed to …","","The maximum size of TLS message we’ll emit. If None, we …","Constructs a new WebPkiVerifier.","Create a new policy.","Make a new ClientConnection. config controls how we …","Make a new ClientSessionMemoryCache. size is the maximum …","","Remove and forget any saved TLS1.2 session for server_name.","","Returns true if Rustls should ask the server to send SCTs.","Returns true if Rustls should ask the server to send SCTs.","With the server-supplied acceptable issuers in …","How and when the client can resume a previous session.","Overrides the default ServerCertVerifier with something …","Remember what NamedGroup the given server chose.","","Remember a TLS1.2 session.","","Use a custom ClientSessionStore implementation to store …","Return the list of SignatureSchemes that this verifier …","Return the list of SignatureSchemes that this verifier …","Return a TLS1.3 ticket previously provided to …","","Configure whether TLS 1.2 sessions may be resumed, and by …","Get the most recently saved TLS1.2 session for server_name …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the signature verification methods supported by …","Verify the end-entity certificate end_entity is valid for …","Will verify the certificate is valid in the following ways:","Verify that the end-entity certificate end_entity is a …","Verify that the end_entity has a name or alternative name …","Verify a signature allegedly by the given server …","Verify a signature allegedly by the given server …","Verify a signature allegedly by the given server …","Verify a signature allegedly by the given server …","","Low-level TLS message decryption functions.","Low-level TLS message parsing and encoding functions.","Low-level TLS record layer functions.","Objects with this trait can decrypt TLS messages.","Perform the decryption over the concerned TLS message.","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","","An externally length’d payload","An arbitrary, unknown-content, u16-length-prefixed payload","An arbitrary, unknown-content, u24-length-prefixed payload","An arbitrary, unknown-content, u8-length-prefixed payload","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","Trait for implementing encoding and decoding functionality …","The length of the length prefix for a list.","Wrapper over a slice of bytes that allows reading chunks …","","A trait for types that can be encoded and decoded in a …","","","","Used to check whether the reader has any content left …","","","","","","","","","Function for encoding itself by appending itself to the …","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convenience function for encoding the implementation into …","Convenience function for encoding the implementation into …","Creates a new Reader of the provided bytes slice with the …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns the number of bytes that are still able to be read …","","","Function for decoding itself from the provided reader will …","","Function for wrapping a call to the read function in a …","Function for wrapping a call to the read function in a …","Borrows a slice of all the remaining bytes that appear …","Attempts to create a new Reader on a sub section of this …","Attempts to borrow a slice of bytes from the current …","","","","","","","","","","","","Returns the cursor position which is also the number of …","","","","","This deframer works to reconstruct TLS messages from a …","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns true if we have messages for the caller to …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Return any decrypted messages that the deframer has been …","Read some bytes from rd, and add them to our internal …","","","","","","","","","","","","","","","The AlertLevel TLS protocol enum. Values in this enum are …","","The CertificateStatusType TLS protocol enum. Values in …","","","","The ClientCertificateType TLS protocol enum. Values in …","","The Compression TLS protocol enum. Values in this enum …","","","","","","The ECCurveType TLS protocol enum. Values in this enum …","","","The ECPointFormat TLS protocol enum. Values in this enum …","","","","","","","The ExtensionType TLS protocol enum. Values in this enum …","","","","","","","","The HashAlgorithm TLS protocol enum. Values in this enum …","","The HeartbeatMessageType TLS protocol enum. Values in …","The HeartbeatMode TLS protocol enum. Values in this enum …","","","The KeyUpdateRequest TLS protocol enum. Values in this …","","","","","The NamedCurve TLS protocol enum. Values in this enum are …","","The NamedGroup TLS protocol enum. Values in this enum are …","","","","","The PSKKeyExchangeMode TLS protocol enum. Values in this …","","","","","","","","","","","","","","","","","","","","","","","","","","The ServerNameType TLS protocol enum. Values in this enum …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Take the Message msg and re-fragment it into new messages …","Enqueue borrowed fragments of (version, typ, payload) which","Returns the argument unchanged.","Calls U::from(self).","Set the maximum fragment size that will be produced.","","","","","","","","","","","","","","","","Only supports OCSP","","","","","","","","","","","","","","","","","","","","A DistinguishedName is a Vec<u8> wrapped in internal types.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns true if there is more than one extension of a given","Returns true if there is more than one extension of a given","Returns true if there is more than one extension of a given","Returns true if there is more than one extension of a given","","","","","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","Make a basic SNI ServerNameRequest quoting hostname.","","","","","Make a new one with one entry.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A TLS frame, named TLSPlaintext in the standard.","","","","","Maximum on-wire message size.","A message with decoded payload","","","","A TLS frame, named TLSPlaintext in the standard.","A decrypted TLS frame","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Force conversion into a plaintext message.","","","","","","","","MessageError allows callers to distinguish between valid …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Result of decryption.","Record layer that tracks decryption and encryption keys.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Create new record layer with no keys.","The decrypted message.","","","","","","","Whether the peer appears to be getting close to encrypting …","Ephemeral ECDH on secp256r1 (aka NIST-P256)","Ephemeral ECDH on secp384r1 (aka NIST-P384)","Ephemeral ECDH on curve25519 (see RFC7748)","This section discusses vulnerabilities in other TLS …","This section discusses vulnerabilities and design errors …","This section collects together goal-oriented documentation.","This section documents rustls itself: what protocol …","This section provides rationale for the defaults in rustls.","Represents a ClientHello message received through the …","Handle on a server-side connection before configuration is …","A ClientCertVerifier that will allow both anonymous and …","A ClientCertVerifier that will ensure that every client …","Zero-sized marker type representing verification of a …","Something that can verify a client certificate chain","A struct representing the received Client Hello","A type which encapsulates an owned string that is a …","Turns off client authentication.","Something which never stores sessions.","wrapper around internal representation of a parsed …","A trait for the ability to encrypt and decrypt tickets.","Allows reading of early data in resumed TLS1.3 connections.","How to choose a certificate chain and signing key for use …","Something that resolves do different cert chains/keys based","Common configuration for a set of server sessions.","This represents a single TLS server connection.","State associated with a server connection.","An implementer of StoresServerSessions that stores …","A trait for the ability to store server session data.","An unparsed DER encoded Certificate Revocation List (CRL).","A config builder state where the caller must supply how to …","Check if a ClientHello message has been received.","Add a new sign::CertifiedKey to be used for the given SNI …","Get the ALPN protocol identifiers submitted by the client.","Protocol names we support, most preferred first. If empty …","","Make a ClientCertVerified","","","","","","","","","","","","","","","Produce a borrowed DnsNameRef from this owned DnsName.","","","","","","","","","","","","","","","","","","","","","","","Wrap this verifier in an Arc and coerce it to …","Wrap this verifier in an Arc and coerce it to …","Construct a NoClientAuth, wrap it in an Arc and coerce it …","Create builder to build up the server configuration.","Whether the store can cache another session. This is used …","","","How to choose a server cert and key.","Get cipher suites.","Return true to require a client certificate and false to …","Return true to require a client certificate and false to …","","Returns the Subjects of the client authentication trust …","","","","Get the ClientHello for this connection.","","","","","","","Decrypt cipher, validating its authenticity protection and …","Return an empty Acceptor, ready to receive bytes from a …","","","","Returns an io::Read implementer you can read bytes from …","Returns true if this implementation will encrypt/decrypt …","Encrypt and authenticate plain, returning the resulting …","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Find a value with the given key. Return it, or None if it …","","","","Ignore the client’s ciphersuite order. Instead, choose …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Convert the Accepted into a ServerConnection.","How to output key material for debugging. The default …","Returns the lifetime in seconds of tickets produced now. …","Amount of early data to accept for sessions created by …","The maximum size of TLS message we’ll emit. If None, we …","Construct a new AllowAnyAuthenticatedClient.","Construct a new AllowAnyAnonymousOrAuthenticatedClient.","Make a new ServerSessionMemoryCache. size is the maximum …","Create a new and empty (i.e., knows no certificates) …","Make a new ServerConnection. config controls how we …","Returns true to enable the server to request a client …","Returns true to enable the server to request a client …","","","","Parse the CRL DER, yielding a webpki::CertRevocationList …","Store session secrets encoded in value against key, …","","","","Read TLS content from rd.","Application-controlled portion of the resumption ticket …","Explicitly discard early data, notifying the client","Choose a certificate chain and matching key given …","","Whether the server should send “0.5RTT” data. This …","How many TLS1.3 tickets to send immediately after a …","Get the server name indicator.","Retrieves the server name, if any, used to select the …","How to store client sessions.","Set the resumption data to embed in future resumption …","Get the compatible signature schemes.","Return the list of SignatureSchemes that this verifier …","Return the list of SignatureSchemes that this verifier …","Find a value with the given key. Return it and delete it; …","","","How to produce tickets.","","","","","","","","","","","","","","","","","","","","","","","","Validate the given bytes are a DNS name if they are viewed …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Verify the end-entity certificate end_entity is valid, …","","","","Verify a signature allegedly by the given client …","Verify a signature allegedly by the given client …","Verify a signature allegedly by the given client …","Verify a signature allegedly by the given client …","Update the verifier to validate client certificates …","Update the verifier to validate client certificates …","A packaged-together certificate chain, matching SigningKey …","Errors while signing","A thing that can sign a message.","An abstract signing key.","What kind of key we have.","Parse der as any ECDSA key type, returning the first which …","Parse der as any EdDSA key type, returning the first which …","Parse der as any supported key encoding/type, returning …","","","","","The certificate chain.","Choose a SignatureScheme from those offered.","","","The end-entity certificate.","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","The certified key.","Make a new CertifiedKey, with the given chain and key.","An optional OCSP response from the certificate issuer, …","","Reveals which scheme will be used when you call sign().","An optional collection of SCTs from CT logs, proving the …","Signs message using the selected scheme.","The set of schemes we support for signatures and that are …","","","","","","","","","TLS1.2","TLS1.3"],"i":[0,0,0,31,47,47,33,0,3,34,33,21,19,19,31,31,31,21,3,31,21,22,0,0,0,32,0,31,32,31,31,32,32,31,31,32,47,33,0,17,42,0,0,32,32,31,0,0,0,0,0,0,0,0,34,11,11,11,31,31,3,31,31,0,19,0,19,19,19,19,19,19,34,14,14,14,14,14,34,14,34,19,19,19,20,3,32,32,0,21,31,103,103,103,103,103,3,3,32,3,33,31,19,3,18,0,33,32,32,32,19,19,19,19,19,19,19,31,19,31,3,3,19,31,31,18,18,3,3,18,18,22,18,18,19,18,19,0,3,21,22,3,19,18,0,22,19,0,0,20,32,19,32,19,18,18,19,18,31,18,19,19,19,0,20,32,3,31,31,20,3,20,20,0,20,31,18,20,21,21,20,19,19,19,19,21,22,0,22,0,3,0,3,3,0,0,31,19,19,34,14,14,14,14,14,14,14,0,31,19,19,19,19,19,19,21,0,13,13,13,13,11,11,19,19,19,19,19,19,19,19,19,17,42,0,0,20,32,32,19,32,0,19,19,20,20,0,0,0,20,0,19,19,0,0,0,0,0,20,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,11,11,11,11,0,36,0,20,20,36,0,20,19,18,20,19,18,31,21,103,31,32,33,11,13,14,34,31,21,31,18,31,19,19,19,19,31,18,22,22,18,22,31,22,18,3,22,31,0,0,0,0,0,19,103,103,1,1,1,9,2,11,13,14,9,75,50,38,44,15,70,71,58,211,16,1,46,17,42,3,18,19,20,21,22,54,55,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,47,36,48,9,75,50,38,44,15,70,71,58,211,16,1,46,17,42,3,18,19,20,21,22,54,55,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,47,36,48,15,0,0,16,1,17,3,18,19,20,21,22,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,36,16,1,17,3,18,19,20,21,22,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,36,2,44,15,38,42,54,55,38,42,38,42,1,23,31,32,33,11,13,14,34,2,44,15,46,17,3,18,19,20,21,22,31,32,33,11,13,14,34,35,2,47,36,48,46,31,32,33,11,13,14,34,35,2,47,48,44,38,42,44,50,54,55,44,15,58,16,1,46,17,42,3,3,18,19,20,21,22,54,55,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,47,36,48,9,75,50,38,44,15,70,71,58,211,16,1,46,17,42,42,42,3,3,3,3,3,3,3,18,19,20,21,22,22,54,55,23,26,27,28,29,30,31,31,31,32,32,33,33,11,11,13,13,14,14,34,34,35,2,47,36,36,36,48,16,55,55,11,13,14,31,32,33,34,2,44,15,36,0,9,75,50,38,44,15,70,71,58,211,16,1,46,17,42,3,18,19,20,21,22,54,55,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,47,36,48,1,9,44,0,1,212,70,71,0,58,9,71,211,54,55,2,9,46,46,38,42,9,3,75,54,55,23,31,32,33,11,13,14,34,2,38,42,38,42,44,1,23,103,103,103,9,0,9,0,44,23,54,55,16,36,46,16,1,17,3,18,19,20,21,22,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,36,3,9,75,50,38,44,15,70,71,58,211,16,1,46,17,42,3,18,19,20,21,22,54,55,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,47,36,48,9,75,50,38,44,15,70,71,58,211,16,1,46,17,42,3,18,19,20,21,22,54,55,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,47,36,48,9,75,50,38,44,15,70,71,58,211,16,1,46,17,42,3,18,19,20,21,22,54,55,23,26,27,28,29,30,31,32,33,11,13,14,34,35,2,47,36,48,36,0,36,48,9,9,212,212,70,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,50,54,55,38,42,50,54,38,42,213,214,213,214,0,0,0,0,0,0,0,0,0,0,92,92,92,92,92,92,92,92,92,92,0,0,0,0,0,0,0,96,98,0,0,98,0,0,0,0,0,96,96,0,0,0,0,0,0,0,83,93,94,105,104,95,61,215,102,100,93,94,84,87,83,96,97,98,99,105,104,95,61,215,102,100,93,94,84,87,83,96,97,98,99,83,95,99,83,84,87,83,96,97,98,84,87,83,96,97,98,83,97,61,61,97,61,83,83,96,98,98,95,90,61,100,100,93,94,84,87,83,96,97,98,99,105,104,95,61,215,102,100,93,94,84,87,83,96,97,98,99,88,98,97,108,102,105,104,95,61,215,102,100,93,94,84,87,83,96,97,98,99,61,83,108,102,83,105,104,61,102,100,108,102,90,90,88,83,99,108,102,108,102,97,90,90,108,102,97,108,102,84,87,83,96,97,98,100,105,104,95,61,215,102,100,93,94,84,87,83,96,97,98,98,99,105,104,95,61,215,102,100,93,94,84,87,83,96,97,98,99,105,104,95,61,215,102,100,93,94,84,87,83,96,97,98,99,105,90,105,0,0,90,90,90,90,95,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,113,113,113,113,113,113,113,113,113,113,113,113,0,0,0,0,114,115,116,117,114,115,116,117,114,115,116,117,114,115,116,117,114,116,117,114,115,116,117,116,114,115,116,117,114,115,116,117,114,115,116,117,114,115,116,117,117,114,115,116,117,117,114,115,116,117,114,114,115,116,117,114,115,116,117,114,115,116,117,114,115,116,117,114,115,116,117,0,119,119,119,119,119,119,119,119,119,119,0,0,0,217,0,218,218,218,76,76,218,120,76,218,120,120,120,219,120,76,120,76,218,120,219,219,76,76,218,120,76,0,0,219,120,219,219,76,76,76,120,76,218,120,76,218,120,76,218,120,0,76,220,0,0,123,0,122,121,122,123,121,122,123,121,122,123,121,122,123,121,121,122,123,122,121,121,122,121,122,123,121,122,123,121,122,123,122,125,133,133,0,125,0,125,125,125,0,125,0,125,128,128,128,129,0,128,128,0,125,125,125,135,135,125,0,103,103,103,103,103,130,128,0,125,0,0,132,125,0,129,127,125,127,0,135,0,125,129,138,125,0,125,136,136,125,134,134,125,125,128,128,128,128,125,131,131,125,127,127,127,127,127,125,133,125,125,0,125,125,125,125,125,125,125,125,125,125,133,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,137,137,125,125,130,126,103,126,103,126,126,125,126,103,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,126,126,126,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,127,128,128,129,129,130,130,131,131,125,125,132,132,126,126,103,103,133,133,134,134,135,135,136,136,137,137,138,138,125,126,103,127,128,129,130,131,132,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,126,126,126,126,126,126,126,126,126,103,126,103,126,103,126,126,126,126,126,126,126,126,126,126,126,126,126,126,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,127,128,129,130,131,125,132,126,103,133,134,135,136,137,138,0,0,0,0,139,139,139,139,139,139,139,139,139,139,139,173,160,0,179,0,0,0,0,179,0,0,179,0,165,179,159,0,157,179,179,0,0,179,0,179,0,0,0,157,163,160,160,0,160,160,171,0,0,157,159,157,159,176,179,179,159,157,179,0,0,0,179,0,0,179,151,0,157,159,163,0,179,179,157,179,0,0,0,179,146,0,158,157,159,0,0,157,0,0,157,159,160,0,159,158,0,0,0,0,179,179,0,179,0,0,157,159,0,0,157,159,157,173,159,165,157,157,159,163,157,159,157,159,151,146,157,159,163,165,171,173,176,179,0,177,140,140,140,141,142,143,144,77,221,155,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,147,163,164,162,165,166,140,160,167,168,169,170,171,77,172,173,174,175,176,177,178,179,145,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,147,163,164,162,165,166,140,160,167,168,169,170,171,77,172,173,174,175,176,177,178,179,145,145,145,146,172,166,172,147,164,162,147,147,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,160,77,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,160,77,162,147,140,174,140,169,167,170,222,222,147,149,162,147,148,149,152,141,153,154,142,155,143,156,146,144,157,159,147,163,164,162,165,166,140,167,168,169,170,171,77,172,173,174,175,176,177,178,145,140,148,149,160,148,156,147,164,162,174,166,177,222,222,147,174,177,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,147,163,164,162,165,166,140,160,167,168,169,170,171,77,172,173,174,175,176,177,178,179,145,148,148,149,150,151,152,141,141,153,154,142,142,155,143,143,156,146,144,144,157,158,159,147,163,164,162,165,166,140,160,167,168,169,170,171,77,77,172,173,174,175,176,177,178,179,145,221,147,222,222,174,165,164,147,162,145,140,140,222,162,162,147,177,147,166,147,162,147,222,222,147,164,162,165,166,147,174,223,147,164,162,147,157,159,163,165,173,176,147,153,222,222,147,164,166,177,223,147,164,166,155,154,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,147,163,164,162,165,166,140,160,167,168,169,170,171,77,172,173,174,175,176,177,178,179,145,178,149,164,162,149,177,175,159,159,159,165,157,167,148,153,154,155,166,140,169,175,177,178,151,177,154,178,170,150,152,153,145,147,168,169,149,147,162,148,149,152,141,153,154,142,155,143,156,146,144,157,159,147,163,164,162,165,166,140,167,168,169,170,171,77,172,173,174,175,176,177,178,145,145,156,147,164,162,147,172,175,177,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,160,77,221,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,147,163,164,162,165,166,140,160,167,168,169,170,171,77,172,173,174,175,176,177,178,179,145,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,147,163,164,162,165,166,140,160,167,168,169,170,171,77,172,173,174,175,176,177,178,179,145,150,152,145,148,149,150,151,152,141,153,154,142,155,143,156,146,144,157,158,159,147,163,164,162,165,166,140,160,167,168,169,170,171,77,172,173,174,175,176,177,178,179,145,171,148,185,185,0,185,185,186,186,110,0,0,0,186,0,0,186,186,186,183,185,110,112,112,184,186,183,185,110,112,184,186,184,184,110,112,110,112,185,185,110,185,110,112,184,186,183,185,110,112,112,184,186,185,183,185,110,112,184,186,110,112,184,185,183,110,112,184,110,110,112,183,183,185,110,112,184,184,186,183,185,110,112,184,186,183,110,112,183,185,110,112,184,186,183,110,112,184,224,224,0,0,0,0,0,0,189,189,189,188,101,107,187,189,188,101,107,187,189,189,189,107,187,107,187,189,188,101,107,189,189,101,107,187,189,188,101,107,187,189,188,188,101,107,187,189,189,188,189,101,188,189,188,189,189,189,189,101,107,187,188,101,107,187,189,188,101,107,187,189,188,101,107,187,189,188,189,0,0,124,191,124,191,191,124,191,124,191,124,191,124,191,124,191,124,191,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,194,195,80,182,196,204,197,198,201,109,199,200,194,195,203,62,192,193,182,182,196,81,80,202,204,197,198,201,109,199,200,194,195,203,62,192,193,182,196,81,80,202,197,198,201,80,225,199,200,80,195,89,89,198,89,197,198,201,193,182,81,80,182,81,80,72,192,202,62,62,62,72,72,182,182,89,62,182,196,81,80,204,197,198,201,109,199,200,194,195,203,62,192,193,182,196,81,80,202,225,199,200,182,80,204,197,198,201,109,199,200,194,195,203,62,192,193,182,196,81,80,202,193,80,72,80,80,197,198,200,194,62,89,89,197,198,201,204,225,199,200,203,192,62,62,82,194,80,80,195,62,80,62,195,89,89,225,199,200,80,182,81,80,204,197,198,201,109,109,199,200,194,195,203,62,192,193,182,182,196,81,80,202,182,204,197,198,201,109,199,200,194,195,203,62,192,193,182,196,81,80,202,204,197,198,201,109,199,200,194,195,203,62,192,193,182,196,81,80,202,89,197,198,201,89,89,89,89,197,198,0,0,0,0,207,0,0,0,106,208,106,208,106,207,106,106,106,208,208,106,208,106,208,106,106,106,208,209,106,209,0,106,208,106,208,106,208,106,208,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[1,2],[[4,[3]]]],[[1,[6,[[7,[[6,[5]]]]]]]],[[1,8]],[9,[[10,[[6,[5]]]]]],[2,[[6,[5]]]],[11,[[10,[12]]]],[13,[[10,[12]]]],[14,[[10,[12]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[15,15],[[10,[15]]]],0,0,[16,16],[1,1],[17,17],[3,3],[18,18],[19,19],[20,20],[21,21],[22,22],[23,23],[[[26,[[0,[24,25]],24]]],[[26,[[0,[24,25]],24]]]],[27,27],[28,28],[29,29],[30,30],[31,31],[32,32],[33,33],[11,11],[13,13],[14,14],[34,34],[35,35],[2,2],[36,36],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[2,2],37],0,0,[[38,[0,[39,40]]],[[4,[41]]]],[[42,[0,[39,40]]],[[4,[41]]]],0,0,[38],[42],[38],[42],[[],1],[[23,[43,[5]]]],[[31,[43,[5]]]],[[32,[43,[5]]]],[[33,[43,[5]]]],[[11,[43,[5]]]],[[13,[43,[5]]]],[[14,[43,[5]]]],[[34,[43,[5]]]],[[2,[43,[5]]]],[[44,44],45],[[15,15],45],[[46,46],45],[[17,17],45],[[3,3],45],[[18,18],45],[[19,19],45],[[20,20],45],[[21,21],45],[[22,22],45],[[31,31],45],[[32,32],45],[[33,33],45],[[11,11],45],[[13,13],45],[[14,14],45],[[34,34],45],[[35,35],45],[[2,2],45],[[47,47],45],[[36,36],45],[[48,48],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],0,[[38,[49,[[6,[5]]]],[6,[5]],[10,[[6,[5]]]]],[[4,[[49,[[6,[5]]]],3]]]],[[42,[49,[[6,[5]]]],[6,[5]],[10,[[6,[5]]]]],[[4,[[49,[[6,[5]]]],3]]]],0,[50,51],[[[54,[[0,[52,53]],[0,[39,40]]]]],51],[[[55,[[0,[52,53]],[0,[39,40]]]]],51],[[44,56],57],[[15,56],57],[[58,56],57],[[16,56],57],[[1,56],57],[[46,56],57],[[17,56],57],[[42,56],57],[[3,56],57],[[3,56],57],[[18,56],57],[[19,56],57],[[20,56],57],[[21,56],57],[[22,56],57],[[[54,[[0,[59,60]],[0,[59,39,40,60]]]],56],57],[[[55,[[0,[59,60]],[0,[59,39,40,60]]]],56],57],[[23,56],57],[[[26,[25,59]],56],57],[[27,56],57],[[28,56],57],[[29,56],57],[[30,56],57],[[31,56],57],[[32,56],57],[[33,56],57],[[11,56],57],[[13,56],57],[[14,56],57],[[34,56],57],[[35,56],57],[[2,56],57],[[47,56],57],[[36,56],57],[[48,56],57],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[61,42],[62,42],[[]],[19,3],[22,3],[20,3],[21,3],[18,3],[[]],[63,3],[[]],[[]],[[]],[[]],[[]],[64,22],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[21,31],[5,31],[[]],[5,32],[[]],[5,33],[[]],[65,11],[[]],[65,13],[[]],[65,14],[5,34],[[]],[[]],[[]],[[]],[15,36],[44,36],[[]],[[]],[[[66,[[43,[5]]]],[66,[[43,[5]]]],[10,[[66,[[43,[5]]]]]]],16],[[[55,[[0,[52,53]],[0,[39,40]]]]],[[0,[39,40]]]],[[[55,[[0,[52,53]],[0,[39,40]]]]],[[0,[39,40]]]],[11,65],[13,65],[14,65],[31,5],[32,5],[33,5],[34,5],[[2,67]],[44,68],[15,68],[36,68],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,45],[9,45],0,0,[1,69],[[12,[6,[5]],[6,[5]]]],[[70,12,[6,[5]],[6,[5]]]],[[71,12,[6,[5]],[6,[5]]]],0,0,[9,[[10,[36]]]],[[],71],[[],[[4,[[73,[72]],3]]]],[[[0,[52,53]],[0,[39,40]]],[[54,[[0,[52,53]],[0,[39,40]]]]]],[[[0,[52,53]],[0,[39,40]]],[[55,[[0,[52,53]],[0,[39,40]]]]]],[[2,2],[[10,[37]]]],[9,[[10,[[6,[2]]]]]],[46,45],[46,69],[38,[[4,[46,3]]]],[42,[[4,[46,3]]]],[9,[[10,[11]]]],[74],[[75,[6,[5]]],[[51,[69]]]],[[[54,[[0,[52,53]],[0,[39,40]]]],[6,[5]]],[[51,[69]]]],[[[55,[[0,[52,53]],[0,[39,40]]]],[6,[5]]],[[51,[69]]]],[76,[[4,[23,18]]]],[76,[[4,[31,18]]]],[76,[[4,[32,18]]]],[76,[[4,[33,18]]]],[76,[[4,[11,18]]]],[76,[[4,[13,18]]]],[76,[[4,[14,18]]]],[76,[[4,[34,18]]]],[76,[[4,[2,18]]]],[[38,39],[[4,[69,41]]]],[[42,39],[[4,[69,41]]]],[38,75],[42,75],[[44,[6,[14]]],[[43,[14]]]],0,0,0,0,0,[9],0,[[9,[10,[69]]]],0,0,[23,[[6,[5]]]],0,0,[16,77],[36,13],[46,69],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],78],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[36,34],45],0,[36,48],0,[9,45],[9,45],[12,45],[12,45],[[70,12],45],[[[26,[80,81]],[73,[82]]],80],[[[26,[83,84]],[6,[85]],86],[[26,[83,87]]]],[[[26,[25,27]],[6,[36]]],[[26,[25,28]]]],[[[26,[83,87]],[43,[2]],35],[[4,[83,3]]]],[[[26,[83,84]],[43,[2]],35],[[4,[83,3]]]],[[[26,[83,87]],[73,[88]]],83],[[[26,[83,84]],[73,[88]]],83],[[[26,[80,30]],[73,[89]]],[[26,[80,81]]]],[[[26,[83,30]],[73,[90]]],[[26,[83,87]]]],[[[26,[25,28]],[6,[58]]],[[26,[25,29]]]],[[[26,[80,30]]],[[26,[80,81]]]],[[[26,[83,87]]],83],[[[26,[83,84]]],83],[[[26,[25,29]],[6,[48]]],[[4,[[26,[25,30]],3]]]],[[[26,[83,30]],1],[[26,[83,84]]]],[[[26,[25,27]]],[[26,[25,28]]]],[[[26,[25,28]]],[[26,[25,29]]]],[[[26,[25,29]]],[[4,[[26,[25,30]],3]]]],[[[26,[25,27]]],[[26,[25,30]]]],[[[26,[83,87]],[43,[2]],35],[[4,[83,3]]]],[[[26,[83,84]],[43,[2]],35],[[4,[83,3]]]],[[[26,[80,81]],[43,[2]],35],[[4,[80,3]]]],[[[26,[80,81]],[43,[2]],35,[43,[5]],[43,[5]]],[[4,[80,3]]]],[[50,[6,[5]]],[[51,[69]]]],[[[54,[[0,[52,53]],[0,[39,40]]]],[6,[5]]],[[51,[69]]]],[[[55,[[0,[52,53]],[0,[39,40]]]],[6,[5]]],[[51,[69]]]],[[38,40],[[4,[69,41]]]],[[42,40],[[4,[69,41]]]],[[50,[6,[91]]],[[51,[69]]]],[[[54,[[0,[52,53]],[0,[39,40]]]],[6,[91]]],[[51,[69]]]],[38,50],[42,50],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],0,[[92,56],57],[[]],[[]],0,[[],4],[[],4],[[],79],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],93],[[],94],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[26,[83,27]]]],[95,69],0,0,[84,84],[87,87],[83,83],[96,96],[97,97],[98,98],[[]],[[]],[[]],[[]],[[]],[[]],[83,99],[[],97],[61],[61],[[],97],[61,[[10,[95]]]],0,0,[[96,96],45],[[98,98],45],[[],45],[95,51],[[90,56],57],[[61,56],57],[[100,56],57],[[100,56],57],[[93,56],57],[[94,56],57],[[84,56],57],[[87,56],57],[[83,56],57],[[96,56],57],[[97,56],57],[[98,56],57],[[99,56],57],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],45],[[98,67]],[69,97],[[98,101]],[[102,98,101]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[61,45],0,[98,[[10,[103]]]],[[102,98],[[10,[103]]]],0,[[1,[10,[104]]],105],[[[6,[85]],86],104],[[[73,[83]],98],[[4,[61,3]]]],[69,102],[74],[98],[[102,98]],[[],45],[[],45],[[[6,[[6,[5]]]],[6,[14]]],[[10,[[73,[106]]]]]],0,[[99,[73,[90]]]],[[98,103]],[[102,98,103]],[[98,107]],[[102,98,107]],[[[73,[108]]],97],[[],[[43,[14]]]],[[],[[43,[14]]]],[98,[[10,[101]]]],[[102,98],[[10,[101]]]],[[97,96],97],[98,[[10,[107]]]],[[102,98],[[10,[107]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[],78],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[12,[[4,[98]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],[[43,[14]]]],[[2,[6,[2]],98,8,[6,[5]],86],[[4,[94,3]]]],[[105,2,[6,[2]],98,8,[6,[5]],86],[[4,[94,3]]]],[[109,1,[6,[2]],86],[[4,[3]]]],[[109,98],[[4,[3]]]],[[[6,[5]],2,23],[[4,[93,3]]]],[[[6,[5]],2,23],[[4,[93,3]]]],[[[6,[5]],2,23],[[4,[93,3]]]],[[[6,[5]],2,23],[[4,[93,3]]]],[[95,[6,[5]]],[[51,[69]]]],0,0,0,0,[[110,111],[[4,[112,3]]]],0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],0,[[113,[43,[5]]]],[[113,56],57],[[]],[[]],0,[76,[[4,[113,18]]]],[[],4],[[],4],[[],79],0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[114,114],[115,115],[116,116],[117,117],[[]],[[]],[[]],[[]],[[],114],[[],116],[[],117],[[114,[43,[5]]]],[[115,[43,[5]]]],[[116,[43,[5]]]],[[117,[43,[5]]]],[[[6,[5]],[43,[5]]]],[[114,114],45],[[115,115],45],[[116,116],45],[[117,117],45],[[],45],[[],45],[[],45],[[],45],[[114,56],57],[[115,56],57],[[116,56],57],[[117,56],57],[[]],[[]],[[]],[[]],[[[118,[0]]],117],[[]],[[]],[[]],[[]],[117,[[43,[5]]]],[[[66,[[43,[5]]]]],114],[[[43,[5]]],115],[[[43,[5]]],116],[[[43,[5]]],117],[76,114],[76,[[4,[114,18]]]],[76,[[4,[115,18]]]],[76,[[4,[116,18]]]],[76,[[4,[117,18]]]],[[]],[[]],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],[[],79],[[],79],0,[[]],[[]],[[119,[43,[5]]]],[[119,56],57],[[]],[[]],[76,[[4,[119,18]]]],[[],4],[[],4],[[],79],0,0,0,0,0,0,0,0,[76,45],[[]],[[]],[[]],[[]],[[]],[[]],[120,120],[[]],[[[43,[5]]]],[[120,[43,[5]]]],[[76,12],[[4,[18]]]],[[120,56],57],[[]],[[]],[[]],[[],[[43,[5]]]],[[],[[43,[5]]]],[[[6,[5]]],76],[[]],[[]],[[]],[76,69],[[65,[6,[5]]]],[[111,[6,[5]]]],[76,[[4,[18]]]],[76,[[4,[120,18]]]],[[[6,[5]]],[[4,[18]]]],[[[6,[5]]],[[4,[18]]]],[76,[[6,[5]]]],[[76,69],[[4,[76,18]]]],[[76,69],[[10,[[6,[5]]]]]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],[[],79],0,[76,69],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[],121],[[122,56],57],[[123,56],57],[[]],[[]],[[]],[121,45],[[]],[[]],[[]],0,[[121,124],[[4,[[10,[122]],3]]]],[[121,39],[[51,[69]]]],0,[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],[[],79],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[125,[[10,[12]]]],[126,[[10,[12]]]],[103,[[10,[12]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,[127,127],[128,128],[129,129],[130,130],[131,131],[125,125],[132,132],[126,126],[103,103],[133,133],[134,134],[135,135],[136,136],[137,137],[138,138],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[127,[43,[5]]]],[[128,[43,[5]]]],[[129,[43,[5]]]],[[130,[43,[5]]]],[[131,[43,[5]]]],[[125,[43,[5]]]],[[132,[43,[5]]]],[[126,[43,[5]]]],[[103,[43,[5]]]],[[133,[43,[5]]]],[[134,[43,[5]]]],[[135,[43,[5]]]],[[136,[43,[5]]]],[[137,[43,[5]]]],[[138,[43,[5]]]],[[127,127],45],[[128,128],45],[[129,129],45],[[130,130],45],[[131,131],45],[[125,125],45],[[132,132],45],[[126,126],45],[[103,103],45],[[133,133],45],[[134,134],45],[[135,135],45],[[136,136],45],[[137,137],45],[[138,138],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[],45],[[127,56],57],[[128,56],57],[[129,56],57],[[130,56],57],[[131,56],57],[[125,56],57],[[132,56],57],[[126,56],57],[[103,56],57],[[133,56],57],[[134,56],57],[[135,56],57],[[136,56],57],[[137,56],57],[[138,56],57],[[]],[5,127],[[]],[5,128],[5,129],[[]],[[]],[5,130],[[]],[5,131],[65,125],[[]],[[]],[5,132],[65,126],[[]],[65,103],[[]],[5,133],[[]],[[]],[5,134],[5,135],[[]],[5,136],[[]],[5,137],[[]],[[]],[5,138],[125,65],[126,65],[103,65],[127,5],[128,5],[129,5],[130,5],[131,5],[132,5],[133,5],[134,5],[135,5],[136,5],[137,5],[138,5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[76,[[4,[127,18]]]],[76,[[4,[128,18]]]],[76,[[4,[129,18]]]],[76,[[4,[130,18]]]],[76,[[4,[131,18]]]],[76,[[4,[125,18]]]],[76,[[4,[132,18]]]],[76,[[4,[126,18]]]],[76,[[4,[103,18]]]],[76,[[4,[133,18]]]],[76,[[4,[134,18]]]],[76,[[4,[135,18]]]],[76,[[4,[136,18]]]],[76,[[4,[137,18]]]],[76,[[4,[138,18]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],0,0,0,0,[[]],[[]],[[],139],[[139,112],8],[[139,33,11,[6,[5]]],8],[[]],[[]],[[139,[10,[69]]],[[4,[3]]]],[[],4],[[],4],[[],79],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[140,45],[140,45],[140,45],[141,[[6,[5]]]],[142,[[6,[5]]]],[143,[[6,[5]]]],[144,[[6,[5]]]],[77,[[6,[5]]]],[[],[[10,[[6,[5]]]]]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[6,[5]]],145],[[],145],[[],146],0,0,0,[147,45],0,0,0,0,[148,148],[149,149],[150,150],[151,151],[152,152],[141,141],[153,153],[154,154],[142,142],[155,155],[143,143],[156,156],[146,146],[144,144],[157,157],[158,158],[159,159],[160,160],[77,77],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,0,0,[140,161],0,0,0,[[],45],[[],45],[147,45],[[],149],[162,45],[147,45],[[148,[43,[5]]]],[[149,[43,[5]]]],[[152,[43,[5]]]],[[141,[43,[5]]]],[[153,[43,[5]]]],[[154,[43,[5]]]],[[142,[43,[5]]]],[[155,[43,[5]]]],[[143,[43,[5]]]],[[156,[43,[5]]]],[[146,[43,[5]]]],[[144,[43,[5]]]],[[157,[43,[5]]]],[[159,[43,[5]]]],[[147,[43,[5]]]],[[163,[43,[5]]]],[[164,[43,[5]]]],[[162,[43,[5]]]],[[165,[43,[5]]]],[[166,[43,[5]]]],[[140,[43,[5]]]],[[167,[43,[5]]]],[[168,[43,[5]]]],[[169,[43,[5]]]],[[170,[43,[5]]]],[[171,[43,[5]]]],[[77,[43,[5]]]],[[172,[43,[5]]]],[[173,[43,[5]]]],[[174,[43,[5]]]],[[175,[43,[5]]]],[[176,[43,[5]]]],[[177,[43,[5]]]],[[178,[43,[5]]]],[[145,[43,[5]]]],0,[[148,148],45],[[149,149],45],[[160,160],45],[[],45],0,0,0,0,0,0,0,[125,[[10,[159]]]],[125,[[10,[159]]]],[[147,125],[[10,[157]]]],[[174,125],[[10,[173]]]],[[177,125],[[10,[176]]]],[[148,56],57],[[149,56],57],[[150,56],57],[[151,56],57],[[152,56],57],[[141,56],57],[[153,56],57],[[154,56],57],[[142,56],57],[[155,56],57],[[143,56],57],[[156,56],57],[[146,56],57],[[144,56],57],[[157,56],57],[[158,56],57],[[159,56],57],[[147,56],57],[[163,56],57],[[164,56],57],[[162,56],57],[[165,56],57],[[166,56],57],[[140,56],57],[[160,56],57],[[167,56],57],[[168,56],57],[[169,56],57],[[170,56],57],[[171,56],57],[[77,56],57],[[172,56],57],[[173,56],57],[[174,56],57],[[175,56],57],[[176,56],57],[[177,56],57],[[178,56],57],[[179,56],57],[[145,56],57],[[[180,[5]]],148],[[]],[[]],[[]],[[]],[[]],[[]],[[[43,[5]]],141],[[]],[[]],[[]],[[[43,[5]]],142],[[]],[[[43,[5]]],143],[[]],[[]],[[]],[[]],[[[43,[5]]],144],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[43,[5]]],77],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[6,[[6,[5]]]]]],[147,[[10,[[43,[141]]]]]],[[],[[10,[[6,[5]]]]]],[[],[[10,[[6,[5]]]]]],[174,[[10,[[6,[77]]]]]],[165,[[10,[[43,[5]]]]]],[164,[[10,[116]]]],[147,[[10,[[6,[133]]]]]],[162,[[10,[[6,[133]]]]]],[145,[[43,[5]]]],[140,[[43,[5]]]],[140,[[10,[[6,[144]]]]]],[[],[[6,[159]]]],[162,[[6,[159]]]],[162,[[10,[153]]]],[147,[[10,[[6,[153]]]]]],[177,[[10,[181]]]],[147,[[10,[[6,[103]]]]]],[166,[[10,[[43,[5]]]]]],[147,[[10,[155]]]],[162,[[10,[65]]]],[147,[[10,[[6,[136]]]]]],[[],[[10,[[43,[5]]]]]],[[],[[10,[[43,[5]]]]]],[147,[[10,[[43,[5]]]]]],[164,[[10,[103]]]],[162,[[10,[[6,[144]]]]]],[165,[[10,[[6,[144]]]]]],[166,[[10,[[6,[144]]]]]],[147,[[10,[[6,[14]]]]]],[174,[[10,[[6,[14]]]]]],[[],[[10,[0]]]],[147,[[10,[[6,[152]]]]]],[164,[[10,[11]]]],[162,[[10,[11]]]],[147,[[10,[157]]]],[157,125],[159,125],[163,125],[165,125],[173,125],[176,125],[147,[[10,[[6,[11]]]]]],0,[[],45],[[],45],[147,45],[164,45],[166,45],[177,45],[[],45],[147,45],[164,45],[166,45],0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[178,[[43,[5]]]],[149,45],0,0,[149,69],0,0,[[[6,[[6,[5]]]]],159],[[],159],[[[43,[5]]],159],[[[43,[5]]],165],0,0,[[],[[4,[148,0]]]],[[103,[6,[5]]],153],[[[43,[5]],181],154],[[154,[43,[5]]],155],[2,166],[[[43,[166]]],140],[[103,[6,[5]]],169],[[181,[43,[5]]],175],[[181,181,[43,[5]],[43,[5]]],177],[[[43,[5]]],178],[182,151],0,0,0,0,0,0,0,0,[[147,136],45],0,0,[[],[[4,[149,0]]]],0,0,[76,[[4,[148,18]]]],[76,[[4,[149,18]]]],[76,[[4,[152,18]]]],[76,[[4,[141,18]]]],[76,[[4,[153,18]]]],[76,[[4,[154,18]]]],[76,[[4,[142,18]]]],[76,[[4,[155,18]]]],[76,[[4,[143,18]]]],[76,[[4,[156,18]]]],[76,[[4,[146,18]]]],[76,[[4,[144,18]]]],[76,[[4,[157,18]]]],[76,[[4,[159,18]]]],[76,[[4,[147,18]]]],[76,[[4,[163,18]]]],[76,[[4,[164,18]]]],[76,[[4,[162,18]]]],[76,[[4,[165,18]]]],[76,[[4,[166,18]]]],[76,[[4,[140,18]]]],[76,[[4,[167,18]]]],[76,[[4,[168,18]]]],[76,[[4,[169,18]]]],[76,[[4,[170,18]]]],[76,[[4,[171,18]]]],[76,[[4,[77,18]]]],[76,[[4,[172,18]]]],[76,[[4,[173,18]]]],[76,[[4,[174,18]]]],[76,[[4,[175,18]]]],[76,[[4,[176,18]]]],[76,[[4,[177,18]]]],[76,[[4,[178,18]]]],[76,[[4,[145,18]]]],[[76,11],[[4,[145,18]]]],0,0,0,0,[[147,[66,[[43,[5]]]]]],0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[43,[[6,[5]]]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,0,0,[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[171,160],[[10,[170]]]],[[148,[6,[5]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[112,183],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[130,31],184],[[],184],[110,110],[112,112],[[]],[[]],[185,33],[[185,[43,[5]]]],[110,[[43,[5]]]],[[185,56],57],[[110,56],57],[[112,56],57],[[184,56],57],[[186,56],57],[[]],[[]],[[]],[184,112],[[]],[[]],[[]],[145,185],[[]],[[]],[[]],[[]],[[]],[[]],[110,112],[112,110],[[184,32],45],[[33,11,114],[[4,[185,18]]]],0,0,0,0,[76,[[4,[110,186]]]],[[]],[[]],[183,110],[[],4],[[],4],[[],4],[[],4],[[],4],[112,[[4,[184]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,0,0,[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,0,[107,107],[187,187],[[]],[[]],0,[188],[101],[107],[[189,[43,[5]]]],0,[[101,56],57],[[107,56],57],[[187,56],57],[[189,56],57],[[]],[[]],[[]],[[]],[[]],[[[188,[53]]],45],[[]],[[]],[[]],[[]],[[]],[189,45],[[188,190],[[10,[188]]]],0,[101,181],0,0,[[[188,[101]]],181],[76,[[4,[189,18]]]],[189],0,0,[101,15],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],[[],79],[[],79],[[],79],0,0,0,0,[[]],[[]],[[]],[[]],[[191,56],57],[[]],[[]],[[]],[[]],[[],124],0,[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[192,[[4,[[10,[193]],3]]]],[[194,12,106],[[4,[3]]]],[195,[[10,[8]]]],0,[182,12],[[],196],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[197,[[73,[89]]]],[198,[[73,[89]]]],[[],[[73,[89]]]],[[],[[26,[80,27]]]],[[],45],[199,45],[200,45],0,[195,[[6,[13]]]],[[],45],[[],45],[198,45],[[],[[6,[77]]]],[197,[[6,[77]]]],[198,[[6,[77]]]],[201,[[6,[77]]]],[193,195],[182,182],[81,81],[80,80],[[]],[[]],[[]],[[[6,[5]]],[[10,[[43,[5]]]]]],[[],192],[[],202],[62],[62],[62,[[10,[203]]]],[[],45],[[[6,[5]]],[[10,[[43,[5]]]]]],[[182,182],45],[[],45],[[89,56],57],[[62,56],57],[[182,56],57],[[196,56],57],[[81,56],57],[[80,56],57],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[6,[5]]],[[10,[[43,[5]]]]]],[[199,[6,[5]]],[[10,[[43,[5]]]]]],[[200,[6,[5]]],[[10,[[43,[5]]]]]],[[182,67]],0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[193,[73,[80]]],[[4,[62,3]]]],0,[[],181],0,0,[1,197],[1,198],[69,[[73,[200]]]],[[],194],[[[73,[80]]],[[4,[62,3]]]],[[],45],[[],45],[197,45],[198,45],[201,45],[204,[[4,[205,22]]]],[[[43,[5]],[43,[5]]],45],[[199,[43,[5]],[43,[5]]],45],[[200,[43,[5]],[43,[5]]],45],[[203,[6,[5]]],[[51,[69]]]],[[192,39],[[4,[69,41]]]],[62,[[10,[[6,[5]]]]]],[62],[195,[[10,[[73,[106]]]]]],[[194,195],[[10,[[73,[106]]]]]],0,0,[195,[[10,[12]]]],[62,[[10,[12]]]],0,[[62,[6,[5]]]],[195,[[6,[14]]]],[[],[[43,[14]]]],[[],[[43,[14]]]],[[[6,[5]]],[[10,[[43,[5]]]]]],[[199,[6,[5]]],[[10,[[43,[5]]]]]],[[200,[6,[5]]],[[10,[[43,[5]]]]]],0,[[]],[[]],[[]],[[],4],[[],4],[[],4],[[],4],[[],4],[2,[[4,[109]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[78,[[4,[182]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[[6,[5]]],[[4,[182,100]]]],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[],79],[[2,[6,[2]],86],[[4,[196,3]]]],[[197,2,[6,[2]],86],[[4,[196,3]]]],[[198,2,[6,[2]],86],[[4,[196,3]]]],[[201,2,[6,[2]],86],[[4,[196,3]]]],[[[6,[5]],2,23],[[4,[93,3]]]],[[[6,[5]],2,23],[[4,[93,3]]]],[[[6,[5]],2,23],[[4,[93,3]]]],[[[6,[5]],2,23],[[4,[93,3]]]],[[197,206],[[4,[197,22]]]],[[198,206],[[4,[198,22]]]],0,0,0,0,[[],34],[35,[[4,[[73,[207]],208]]]],[35,[[4,[[73,[207]],208]]]],[35,[[4,[[73,[207]],208]]]],[[]],[[]],[[]],[[]],0,[[[6,[14]]],[[10,[[210,[209]]]]]],[106,106],[[]],[106,[[4,[2,208]]]],[[208,56],57],[[208,56],57],[[]],[[]],[[]],[[]],0,[[[43,[2]],[73,[207]]],106],0,[74],[[],14],0,[[[6,[5]]],[[4,[[43,[5]],3]]]],[[],[[6,[14]]]],[[]],[[],78],[[],4],[[],4],[[],4],[[],4],[[],79],[[],79],0,0],"c":[1276,1277],"p":[[3,"RootCertStore"],[3,"Certificate"],[4,"Error"],[4,"Result"],[15,"u8"],[15,"slice"],[8,"AsRef"],[8,"Iterator"],[3,"CommonState"],[4,"Option"],[4,"ProtocolVersion"],[15,"str"],[4,"CipherSuite"],[4,"SignatureScheme"],[3,"Tls13CipherSuite"],[3,"OwnedTrustAnchor"],[4,"Side"],[4,"InvalidMessage"],[4,"PeerMisbehaved"],[4,"PeerIncompatible"],[4,"CertificateError"],[4,"CertRevocationListError"],[3,"DigitallySignedStruct"],[8,"Clone"],[8,"ConfigSide"],[3,"ConfigBuilder"],[3,"WantsCipherSuites"],[3,"WantsKxGroups"],[3,"WantsVersions"],[3,"WantsVerifier"],[4,"AlertDescription"],[4,"HandshakeType"],[4,"ContentType"],[4,"SignatureAlgorithm"],[3,"PrivateKey"],[4,"SupportedCipherSuite"],[4,"Ordering"],[3,"ConnectionCommon"],[8,"Read"],[8,"Write"],[3,"Error"],[4,"Connection"],[3,"Vec"],[3,"Tls12CipherSuite"],[15,"bool"],[3,"IoState"],[4,"BulkAlgorithm"],[3,"SupportedProtocolVersion"],[8,"AsMut"],[3,"Writer"],[6,"Result"],[8,"DerefMut"],[8,"Deref"],[3,"Stream"],[3,"StreamOwned"],[3,"Formatter"],[6,"Result"],[3,"SupportedKxGroup"],[8,"Debug"],[8,"Sized"],[3,"ClientConnection"],[3,"ServerConnection"],[3,"SystemTimeError"],[4,"Error"],[15,"u16"],[8,"Into"],[8,"Hasher"],[3,"Algorithm"],[15,"usize"],[3,"NoKeyLog"],[3,"KeyLogFile"],[8,"ProducesTickets"],[3,"Arc"],[3,"Demand"],[3,"Reader"],[3,"Reader"],[3,"DistinguishedName"],[3,"String"],[3,"TypeId"],[3,"ServerConfig"],[3,"WantsServerCert"],[8,"ResolvesServerCert"],[3,"ClientConfig"],[3,"WantsTransparencyPolicyOrClientCert"],[3,"Log"],[3,"SystemTime"],[3,"WantsClientCert"],[8,"ResolvesClientCert"],[8,"ClientCertVerifier"],[8,"ServerCertVerifier"],[3,"IoSlice"],[3,"CipherSuiteCommon"],[3,"HandshakeSignatureValid"],[3,"ServerCertVerified"],[3,"WriteEarlyData"],[4,"Tls12Resumption"],[3,"Resumption"],[4,"ServerName"],[3,"DangerousClientConfig"],[3,"InvalidDnsNameError"],[3,"Tls13ClientSessionValue"],[3,"ClientSessionMemoryCache"],[4,"NamedGroup"],[3,"CertificateTransparencyPolicy"],[3,"WebPkiVerifier"],[3,"CertifiedKey"],[3,"Tls12ClientSessionValue"],[8,"ClientSessionStore"],[3,"ParsedCertificate"],[3,"OpaqueMessage"],[15,"u64"],[3,"PlainMessage"],[3,"AlertMessagePayload"],[3,"Payload"],[3,"PayloadU24"],[3,"PayloadU16"],[3,"PayloadU8"],[3,"Okm"],[3,"ChangeCipherSpecPayload"],[3,"u24"],[3,"MessageDeframer"],[3,"Deframed"],[4,"DeframerError"],[3,"RecordLayer"],[4,"ExtensionType"],[4,"NamedCurve"],[4,"HashAlgorithm"],[4,"ClientCertificateType"],[4,"Compression"],[4,"AlertLevel"],[4,"HeartbeatMessageType"],[4,"ServerNameType"],[4,"ECPointFormat"],[4,"HeartbeatMode"],[4,"ECCurveType"],[4,"PSKKeyExchangeMode"],[4,"KeyUpdateRequest"],[4,"CertificateStatusType"],[3,"MessageFragmenter"],[3,"CertificatePayloadTLS13"],[3,"ProtocolName"],[3,"PresharedKeyBinder"],[3,"ResponderId"],[3,"Sct"],[3,"HandshakeMessagePayload"],[4,"CertificateStatusRequest"],[3,"ClientHelloPayload"],[3,"Random"],[3,"SessionId"],[3,"UnknownExtension"],[4,"ServerNamePayload"],[3,"ServerName"],[3,"KeyShareEntry"],[3,"PresharedKeyIdentity"],[3,"PresharedKeyOffer"],[3,"OCSPCertificateStatusRequest"],[4,"ClientExtension"],[4,"ClientSessionTicket"],[4,"ServerExtension"],[4,"KeyExchangeAlgorithm"],[6,"CertificatePayload"],[3,"ServerHelloPayload"],[4,"HelloRetryExtension"],[3,"HelloRetryRequest"],[4,"CertificateExtension"],[3,"CertificateEntry"],[3,"ECParameters"],[3,"ClientECDHParams"],[3,"ServerECDHParams"],[3,"ECDHEServerKeyExchange"],[4,"ServerKeyExchangePayload"],[3,"CertificateRequestPayload"],[4,"CertReqExtension"],[3,"CertificateRequestPayloadTLS13"],[3,"NewSessionTicketPayload"],[4,"NewSessionTicketExtension"],[3,"NewSessionTicketPayloadTLS13"],[3,"CertificateStatus"],[4,"HandshakePayload"],[15,"array"],[15,"u32"],[3,"DnsName"],[3,"BorrowedPlainMessage"],[3,"Message"],[4,"MessagePayload"],[4,"MessageError"],[3,"ClientSessionCommon"],[3,"Retrieved"],[3,"ServerSessionValue"],[8,"FnOnce"],[3,"Decrypted"],[3,"Acceptor"],[3,"Accepted"],[3,"ResolvesServerCertUsingSni"],[3,"ClientHello"],[3,"ClientCertVerified"],[3,"AllowAnyAuthenticatedClient"],[3,"AllowAnyAnonymousOrAuthenticatedClient"],[3,"NoServerSessionStorage"],[3,"ServerSessionMemoryCache"],[3,"NoClientAuth"],[3,"ServerConnectionData"],[3,"ReadEarlyData"],[3,"UnparsedCertRevocationList"],[3,"OwnedCertRevocationList"],[8,"IntoIterator"],[8,"SigningKey"],[3,"SignError"],[8,"Signer"],[3,"Box"],[3,"Ticketer"],[8,"KeyLog"],[13,"InappropriateMessage"],[13,"InappropriateHandshakeMessage"],[3,"ClientConnectionData"],[8,"MessageDecrypter"],[8,"TlsListElement"],[4,"ListLength"],[8,"Codec"],[13,"U24"],[8,"ConvertProtocolNameList"],[8,"HasServerExtensions"],[8,"ConvertServerNameList"],[13,"Handshake"],[8,"StoresServerSessions"]]},\ @@ -173,14 +173,14 @@ var searchIndex = JSON.parse('{\ "scopeguard":{"doc":"A scope guard will run a given closure when it goes out of …","t":"EDILLLLOLLLLLLLFLLLKLLLLLLLL","n":["Always","ScopeGuard","Strategy","borrow","borrow","borrow_mut","borrow_mut","defer","deref","deref_mut","drop","fmt","fmt","from","from","guard","into","into","into_inner","should_run","should_run","try_from","try_from","try_into","try_into","type_id","type_id","with_strategy"],"q":[[0,"scopeguard"]],"d":["Always run on scope exit.","ScopeGuard is a scope guard that may own a protected value.","Controls in which cases the associated code should be run","","","","","Macro to create a ScopeGuard (always run).","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Create a new ScopeGuard owning v and with deferred closure …","Calls U::from(self).","Calls U::from(self).","“Defuse” the guard and extract the value without …","Return true if the guard’s associated code should run …","","","","","","","","Create a ScopeGuard that owns v (accessible through deref) …"],"i":[0,0,0,3,7,3,7,0,3,3,3,3,7,3,7,0,3,7,3,2,7,3,7,3,7,3,7,3],"f":[0,0,0,[[]],[[]],[[]],[[]],0,[[[3,[1,2]]]],[[[3,[1,2]]]],[[[3,[1,2]]]],[[[3,[4,1,2]],5],6],[[7,5],6],[[]],[[]],[1,[[3,[1,7]]]],[[]],[[]],[[[3,[1,2]]]],[[],8],[[],8],[[],9],[[],9],[[],9],[[],9],[[],10],[[],10],[1,[[3,[1,2]]]]],"c":[],"p":[[8,"FnOnce"],[8,"Strategy"],[3,"ScopeGuard"],[8,"Debug"],[3,"Formatter"],[6,"Result"],[4,"Always"],[15,"bool"],[4,"Result"],[3,"TypeId"]]},\ "sct":{"doc":"SCT.rs: SCT verification library","t":"ENDNNNNLLLLLLMLLLLLMLLMMMLLLLLLLLMF","n":["Error","InvalidSignature","Log","MalformedSct","TimestampInFuture","UnknownLog","UnsupportedSctVersion","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","description","eq","fmt","fmt","from","from","id","into","into","key","max_merge_delay","operated_by","should_be_fatal","to_owned","try_from","try_from","try_into","try_into","type_id","type_id","url","verify_sct"],"q":[[0,"sct"]],"d":["How sct.rs reports errors.","The SCT contained an invalid signature.","Describes a CT log","The SCT was somehow misencoded, truncated or otherwise …","The SCT was signed in the future. Clock skew?","The SCT was refers to an unknown log.","The SCT had a version that this library does not handle.","","","","","","","The operator’s name/description of the log. This field …","","","","Returns the argument unchanged.","Returns the argument unchanged.","Key hash, which is SHA256 applied to the SPKI encoding.","Calls U::from(self).","Calls U::from(self).","Public key usable for verifying certificates. TODO: fixme …","The log’s maximum merge delay. This field is not used by …","Which entity operates the log. This field is not used by …","Applies a suggested policy for error handling:","","","","","","","","The certificate submission url. This field is not used by …","Verifies that the SCT sct (a SignedCertificateTimestamp …"],"i":[0,1,0,1,1,1,1,3,1,3,1,1,1,3,1,3,1,3,1,3,3,1,3,3,3,1,1,3,1,3,1,3,1,3,0],"f":[0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[1,1],[[]],0,[[1,1],2],[[3,4],5],[[1,4],5],[[]],[[]],0,[[]],[[]],0,0,0,[1,2],[[]],[[],6],[[],6],[[],6],[[],6],[[],7],[[],7],0,[[[9,[8]],[9,[8]],10,[9,[3]]],[[6,[11,1]]]]],"c":[],"p":[[4,"Error"],[15,"bool"],[3,"Log"],[3,"Formatter"],[6,"Result"],[4,"Result"],[3,"TypeId"],[15,"u8"],[15,"slice"],[15,"u64"],[15,"usize"]]},\ "seq_macro":{"doc":"github crates-io docs-rs","t":"O","n":["seq"],"q":[[0,"seq_macro"]],"d":[""],"i":[0],"f":[0],"c":[],"p":[]},\ -"serde":{"doc":"Serde","t":"IYIQQQIYQQQQQQQILLLAKKKKKKKKKLKKKKKKKKKKKKKKKLKKKKKKOLLAOKKKKKKLKKKKKKKKKKKKKKKKLKKKKKKKNNNIIIIQNIIQQQQQINDININNNNNINCNNNENNNQQQIILLLLLLLLKLKKLKKKKKKKKLKKKKKKKKKKKKKKKLKKKKKKLLLKLKLLLLLLLLLKLLLLLLKLKLLLKLKLLKLLLLLLLKLLKLLALKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDDDDDDDDDDDDDDDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIQQQQQQQQDQQQQQQQQIIQIQIQIQIQIQIQICLLLLLKKKKKKKKLLLLLLLLLLKKKKKKLLLKKKKKKLLLLLKKKKKLKKKKKKKKKKKKLKKKKKKKKLLLLLL","n":["Deserialize","Deserialize","Deserializer","Error","Error","Ok","Serialize","Serialize","SerializeMap","SerializeSeq","SerializeStruct","SerializeStructVariant","SerializeTuple","SerializeTupleStruct","SerializeTupleVariant","Serializer","collect_map","collect_seq","collect_str","de","deserialize","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","forward_to_deserialize_any","is_human_readable","is_human_readable","ser","serde_if_integer128","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","Bool","Bytes","Char","Deserialize","DeserializeOwned","DeserializeSeed","Deserializer","Deserializer","Enum","EnumAccess","Error","Error","Error","Error","Error","Error","Expected","Float","IgnoredAny","IntoDeserializer","Map","MapAccess","NewtypeStruct","NewtypeVariant","Option","Other","Seq","SeqAccess","Signed","StdError","Str","StructVariant","TupleVariant","Unexpected","Unit","UnitVariant","Unsigned","Value","Value","Variant","VariantAccess","Visitor","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","custom","default","deserialize","deserialize","deserialize","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","duplicate_field","eq","eq","expecting","expecting","fmt","fmt","fmt","fmt","fmt","fmt","from","from","into","into","into_deserializer","invalid_length","invalid_type","invalid_value","is_human_readable","missing_field","newtype_variant","newtype_variant_seed","next_element","next_element_seed","next_entry","next_entry_seed","next_key","next_key_seed","next_value","next_value_seed","size_hint","size_hint","struct_variant","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","tuple_variant","type_id","type_id","unit_variant","unknown_field","unknown_variant","value","variant","variant_seed","visit_bool","visit_bool","visit_borrowed_bytes","visit_borrowed_str","visit_byte_buf","visit_bytes","visit_bytes","visit_char","visit_enum","visit_enum","visit_f32","visit_f64","visit_f64","visit_i128","visit_i128","visit_i16","visit_i32","visit_i64","visit_i64","visit_i8","visit_map","visit_map","visit_newtype_struct","visit_newtype_struct","visit_none","visit_none","visit_seq","visit_seq","visit_some","visit_some","visit_str","visit_str","visit_string","visit_u128","visit_u128","visit_u16","visit_u32","visit_u64","visit_u64","visit_u8","visit_unit","visit_unit","BoolDeserializer","BorrowedBytesDeserializer","BorrowedStrDeserializer","BytesDeserializer","CharDeserializer","CowStrDeserializer","EnumAccessDeserializer","Error","F32Deserializer","F64Deserializer","I128Deserializer","I16Deserializer","I32Deserializer","I64Deserializer","I8Deserializer","IsizeDeserializer","MapAccessDeserializer","MapDeserializer","SeqAccessDeserializer","SeqDeserializer","StrDeserializer","StringDeserializer","U128Deserializer","U16Deserializer","U32Deserializer","U64Deserializer","U8Deserializer","UnitDeserializer","UsizeDeserializer","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","custom","custom","description","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","end","end","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","next_element_seed","next_element_seed","next_entry_seed","next_key_seed","next_value_seed","provide","size_hint","size_hint","size_hint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","variant_seed","variant_seed","variant_seed","variant_seed","variant_seed","variant_seed","Error","Error","Error","Error","Error","Error","Error","Error","Error","Impossible","Ok","Ok","Ok","Ok","Ok","Ok","Ok","Ok","Serialize","SerializeMap","SerializeMap","SerializeSeq","SerializeSeq","SerializeStruct","SerializeStruct","SerializeStructVariant","SerializeStructVariant","SerializeTuple","SerializeTuple","SerializeTupleStruct","SerializeTupleStruct","SerializeTupleVariant","SerializeTupleVariant","Serializer","StdError","borrow","borrow_mut","collect_map","collect_seq","collect_str","custom","end","end","end","end","end","end","end","end","end","end","end","end","end","end","from","into","is_human_readable","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_element","serialize_element","serialize_element","serialize_element","serialize_entry","serialize_f32","serialize_f64","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_key","serialize_key","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","serialize_value","serialize_value","skip_field","skip_field","try_from","try_into","type_id"],"q":[[0,"serde"],[88,"serde::de"],[266,"serde::de::value"],[1533,"serde::ser"]],"d":["A data structure that can be deserialized from any data …","Derive macro available if serde is built with …","A data format that can deserialize any data structure …","The error type that can be returned if some error occurs …","The error type when some error occurs during serialization.","The output type produced by this Serializer during …","A data structure that can be serialized into any data …","Derive macro available if serde is built with …","Type returned from serialize_map for serializing the …","Type returned from serialize_seq for serializing the …","Type returned from serialize_struct for serializing the …","Type returned from serialize_struct_variant for …","Type returned from serialize_tuple for serializing the …","Type returned from serialize_tuple_struct for serializing …","Type returned from serialize_tuple_variant for serializing …","A data format that can serialize any data structure …","Collect an iterator as a map.","Collect an iterator as a sequence.","Serialize a string produced by an implementation of Display…","Generic data structure deserialization framework.","Deserialize this value from the given Serde deserializer.","Require the Deserializer to figure out how to drive the …","Hint that the Deserialize type is expecting a bool value.","Hint that the Deserialize type is expecting a byte array …","Hint that the Deserialize type is expecting a byte array …","Hint that the Deserialize type is expecting a char value.","Hint that the Deserialize type is expecting an enum value …","Hint that the Deserialize type is expecting a f32 value.","Hint that the Deserialize type is expecting a f64 value.","Hint that the Deserialize type is expecting an i128 value.","Hint that the Deserialize type is expecting an i16 value.","Hint that the Deserialize type is expecting an i32 value.","Hint that the Deserialize type is expecting an i64 value.","Hint that the Deserialize type is expecting an i8 value.","Hint that the Deserialize type is expecting the name of a …","Hint that the Deserialize type needs to deserialize a …","Hint that the Deserialize type is expecting a map of …","Hint that the Deserialize type is expecting a newtype …","Hint that the Deserialize type is expecting an optional …","Hint that the Deserialize type is expecting a sequence of …","Hint that the Deserialize type is expecting a string value …","Hint that the Deserialize type is expecting a string value …","Hint that the Deserialize type is expecting a struct with …","Hint that the Deserialize type is expecting a sequence of …","Hint that the Deserialize type is expecting a tuple struct …","Hint that the Deserialize type is expecting an u128 value.","Hint that the Deserialize type is expecting a u16 value.","Hint that the Deserialize type is expecting a u32 value.","Hint that the Deserialize type is expecting a u64 value.","Hint that the Deserialize type is expecting a u8 value.","Hint that the Deserialize type is expecting a unit value.","Hint that the Deserialize type is expecting a unit struct …","Helper macro when implementing the Deserializer part of a …","Determine whether Deserialize implementations should …","Determine whether Serialize implementations should …","Generic data structure serialization framework.","Conditional compilation depending on whether Serde is …","Serialize this value into the given Serde serializer.","Serialize a bool value.","Serialize a chunk of raw byte data.","Serialize a character.","Serialize an f32 value.","Serialize an f64 value.","Serialize an i128 value.","Serialize an i16 value.","Serialize an i32 value.","Serialize an i64 value.","Serialize an i8 value.","Begin to serialize a map. This call must be followed by …","Serialize a newtype struct like struct Millimeters(u8).","Serialize a newtype variant like E::N in enum E { N(u8) }.","Serialize a None value.","Begin to serialize a variably sized sequence. This call …","Serialize a Some(T) value.","Serialize a &str.","Begin to serialize a struct like …","Begin to serialize a struct variant like E::S in …","Begin to serialize a statically sized sequence whose …","Begin to serialize a tuple struct like …","Begin to serialize a tuple variant like E::T in …","Serialize a u128 value.","Serialize a u16 value.","Serialize a u32 value.","Serialize a u64 value.","Serialize a u8 value.","Serialize a () value.","Serialize a unit struct like struct Unit or PhantomData<T>.","Serialize a unit variant like E::A in enum E { A, B }.","The input contained a boolean value that was not expected.","The input contained a &[u8] or Vec<u8> that was not …","The input contained a char that was not expected.","A data structure that can be deserialized from any data …","A data structure that can be deserialized without …","DeserializeSeed is the stateful form of the Deserialize …","A data format that can deserialize any data structure …","The type of the deserializer being converted into.","The input contained an enum that was not expected.","Provides a Visitor access to the data of an enum in the …","The Error trait allows Deserialize implementations to …","The error type that can be returned if some error occurs …","The error type that can be returned if some error occurs …","The error type that can be returned if some error occurs …","The error type that can be returned if some error occurs …","The error type that can be returned if some error occurs …","Expected represents an explanation of what data a Visitor …","The input contained a floating point f32 or f64 that was …","An efficient way of discarding data from a deserializer.","Converts an existing value into a Deserializer from which …","The input contained a map that was not expected.","Provides a Visitor access to each entry of a map in the …","The input contained a newtype struct that was not expected.","The input contained a newtype variant that was not …","The input contained an Option<T> that was not expected.","A message stating what uncategorized thing the input …","The input contained a sequence that was not expected.","Provides a Visitor access to each element of a sequence in …","The input contained a signed integer i8, i16, i32 or i64 …","","The input contained a &str or String that was not expected.","The input contained a struct variant that was not expected.","The input contained a tuple variant that was not expected.","Unexpected represents an unexpected invocation of any one …","The input contained a unit () that was not expected.","The input contained a unit variant that was not expected.","The input contained an unsigned integer u8, u16, u32 or u64…","The type produced by using this seed.","The value produced by this visitor.","The Visitor that will be used to deserialize the content …","VariantAccess is a visitor that is created by the …","This trait represents a visitor that walks through a …","","","","","","","","","Raised when there is general error when deserializing a …","","Deserialize this value from the given Serde deserializer.","Equivalent to the more common Deserialize::deserialize …","","Require the Deserializer to figure out how to drive the …","Hint that the Deserialize type is expecting a bool value.","Hint that the Deserialize type is expecting a byte array …","Hint that the Deserialize type is expecting a byte array …","Hint that the Deserialize type is expecting a char value.","Hint that the Deserialize type is expecting an enum value …","Hint that the Deserialize type is expecting a f32 value.","Hint that the Deserialize type is expecting a f64 value.","Hint that the Deserialize type is expecting an i128 value.","Hint that the Deserialize type is expecting an i16 value.","Hint that the Deserialize type is expecting an i32 value.","Hint that the Deserialize type is expecting an i64 value.","Hint that the Deserialize type is expecting an i8 value.","Hint that the Deserialize type is expecting the name of a …","Hint that the Deserialize type needs to deserialize a …","Hint that the Deserialize type is expecting a map of …","Hint that the Deserialize type is expecting a newtype …","Hint that the Deserialize type is expecting an optional …","Hint that the Deserialize type is expecting a sequence of …","Hint that the Deserialize type is expecting a string value …","Hint that the Deserialize type is expecting a string value …","Hint that the Deserialize type is expecting a struct with …","Hint that the Deserialize type is expecting a sequence of …","Hint that the Deserialize type is expecting a tuple struct …","Hint that the Deserialize type is expecting an u128 value.","Hint that the Deserialize type is expecting a u16 value.","Hint that the Deserialize type is expecting a u32 value.","Hint that the Deserialize type is expecting a u64 value.","Hint that the Deserialize type is expecting a u8 value.","Hint that the Deserialize type is expecting a unit value.","Hint that the Deserialize type is expecting a unit struct …","Raised when a Deserialize struct type received more than …","","","Format a message stating what data this Visitor expects to …","","Format an explanation of what data was being expected. …","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Convert this value into a deserializer.","Raised when deserializing a sequence or map and the input …","Raised when a Deserialize receives a type different from …","Raised when a Deserialize receives a value of the right …","Determine whether Deserialize implementations should …","Raised when a Deserialize struct type expected to receive …","Called when deserializing a variant with a single value.","Called when deserializing a variant with a single value.","This returns Ok(Some(value)) for the next value in the …","This returns Ok(Some(value)) for the next value in the …","This returns Ok(Some((key, value))) for the next …","This returns Ok(Some((key, value))) for the next …","This returns Ok(Some(key)) for the next key in the map, or …","This returns Ok(Some(key)) for the next key in the map, or …","This returns a Ok(value) for the next value in the map.","This returns a Ok(value) for the next value in the map.","Returns the number of elements remaining in the sequence, …","Returns the number of entries remaining in the map, if …","Called when deserializing a struct-like variant.","","","","","","","","Called when deserializing a tuple-like variant.","","","Called when deserializing a variant with no values.","Raised when a Deserialize struct type received a field …","Raised when a Deserialize enum type received a variant …","Building blocks for deserializing basic values using the …","variant is called to identify which variant to deserialize.","variant is called to identify which variant to deserialize.","The input contains a boolean.","","The input contains a byte array that lives at least as …","The input contains a string that lives at least as long as …","The input contains a byte array and ownership of the byte …","The input contains a byte array. The lifetime of the byte …","","The input contains a char.","The input contains an enum.","","The input contains an f32.","The input contains an f64.","","The input contains a i128.","","The input contains an i16.","The input contains an i32.","The input contains an i64.","","The input contains an i8.","The input contains a key-value map.","","The input contains a newtype struct.","","The input contains an optional that is absent.","","The input contains a sequence of elements.","","The input contains an optional that is present.","","The input contains a string. The lifetime of the string is …","","The input contains a string and ownership of the string is …","The input contains a u128.","","The input contains a u16.","The input contains a u32.","The input contains a u64.","","The input contains a u8.","The input contains a unit ().","","A deserializer holding a bool.","A deserializer holding a &[u8] with a lifetime tied to …","A deserializer holding a &str with a lifetime tied to …","A deserializer holding a &[u8]. Always calls …","A deserializer holding a char.","A deserializer holding a Cow<str>.","A deserializer holding an EnumAccess.","A minimal representation of all possible errors that can …","A deserializer holding an f32.","A deserializer holding an f64.","A deserializer holding an i128.","A deserializer holding an i16.","A deserializer holding an i32.","A deserializer holding an i64.","A deserializer holding an i8.","A deserializer holding an isize.","A deserializer holding a MapAccess.","A deserializer that iterates over a map.","A deserializer holding a SeqAccess.","A deserializer that iterates over a sequence.","A deserializer holding a &str.","A deserializer holding a String.","A deserializer holding a u128.","A deserializer holding a u16.","A deserializer holding a u32.","A deserializer holding a u64.","A deserializer holding a u8.","A deserializer holding a ().","A deserializer holding a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check for remaining elements after passing a …","Check for remaining elements after passing a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Create a new borrowed deserializer from the given string.","","","Create a new deserializer from the given bytes.","Create a new borrowed deserializer from the given borrowed …","Construct a new MapDeserializer<I, E>.","","","","","","","","","","","","","","","","Construct a new SeqDeserializer<I, E>.","Construct a new SeqAccessDeserializer<A>.","Construct a new MapAccessDeserializer<A>.","Construct a new EnumAccessDeserializer<A>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Trait used by Serialize implementations to generically …","The error type when some error occurs during serialization.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Helper type for implementing a Serializer that does not …","The output type produced by this Serializer during …","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","A data structure that can be serialized into any data …","Returned from Serializer::serialize_map.","Type returned from serialize_map for serializing the …","Returned from Serializer::serialize_seq.","Type returned from serialize_seq for serializing the …","Returned from Serializer::serialize_struct.","Type returned from serialize_struct for serializing the …","Returned from Serializer::serialize_struct_variant.","Type returned from serialize_struct_variant for …","Returned from Serializer::serialize_tuple.","Type returned from serialize_tuple for serializing the …","Returned from Serializer::serialize_tuple_struct.","Type returned from serialize_tuple_struct for serializing …","Returned from Serializer::serialize_tuple_variant.","Type returned from serialize_tuple_variant for serializing …","A data format that can serialize any data structure …","","","","Collect an iterator as a map.","Collect an iterator as a sequence.","Serialize a string produced by an implementation of Display…","Used when a Serialize implementation encounters any error …","Finish serializing a sequence.","Finish serializing a tuple.","Finish serializing a tuple struct.","Finish serializing a tuple variant.","Finish serializing a map.","Finish serializing a struct.","Finish serializing a struct variant.","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","Determine whether Serialize implementations should …","Serialize this value into the given Serde serializer.","Serialize a bool value.","Serialize a chunk of raw byte data.","Serialize a character.","Serialize a sequence element.","Serialize a tuple element.","","","Serialize a map entry consisting of a key and a value.","Serialize an f32 value.","Serialize an f64 value.","Serialize a tuple struct field.","Serialize a tuple variant field.","Serialize a struct field.","Serialize a struct variant field.","","","","","Serialize an i128 value.","Serialize an i16 value.","Serialize an i32 value.","Serialize an i64 value.","Serialize an i8 value.","Serialize a map key.","","Begin to serialize a map. This call must be followed by …","Serialize a newtype struct like struct Millimeters(u8).","Serialize a newtype variant like E::N in enum E { N(u8) }.","Serialize a None value.","Begin to serialize a variably sized sequence. This call …","Serialize a Some(T) value.","Serialize a &str.","Begin to serialize a struct like …","Begin to serialize a struct variant like E::S in …","Begin to serialize a statically sized sequence whose …","Begin to serialize a tuple struct like …","Begin to serialize a tuple variant like E::T in …","Serialize a u128 value.","Serialize a u16 value.","Serialize a u32 value.","Serialize a u64 value.","Serialize a u8 value.","Serialize a () value.","Serialize a unit struct like struct Unit or PhantomData<T>.","Serialize a unit variant like E::A in enum E { A, B }.","Serialize a map value.","","Indicate that a struct field has been skipped.","Indicate that a struct variant field has been skipped.","","",""],"i":[0,0,0,5,11,11,0,0,11,11,11,11,11,11,11,0,11,11,11,0,33,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,5,11,0,0,22,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,28,28,28,0,0,0,0,79,28,0,0,5,41,40,39,80,0,28,0,0,28,0,28,28,28,28,28,0,28,0,28,28,28,0,28,28,28,34,6,39,0,0,27,28,27,28,27,28,27,28,37,27,33,34,27,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,37,27,28,6,27,31,31,27,27,28,28,27,28,27,28,79,37,37,37,5,37,80,80,41,41,40,40,40,40,40,40,41,40,80,27,28,28,27,28,27,28,80,27,28,80,37,37,0,39,39,6,27,6,6,6,6,27,6,6,27,6,6,27,6,27,6,6,6,27,6,6,27,6,27,6,27,6,27,6,27,6,27,6,6,27,6,6,6,27,6,6,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,53,53,53,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,52,69,53,42,43,44,45,46,47,48,49,52,53,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,52,69,52,52,52,53,52,52,69,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,53,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,43,44,45,46,47,71,0,11,81,82,83,84,85,86,87,0,11,81,82,83,84,85,86,87,0,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,0,78,78,11,11,11,77,81,82,83,84,85,86,87,78,78,78,78,78,78,78,78,78,11,22,11,11,11,81,82,78,78,85,11,11,83,84,86,87,78,78,78,78,11,11,11,11,11,85,78,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,85,78,86,87,78,78,78],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],[[[0,[3,4]]],2],0,[5,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,[8,[7]],6],2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,6],2],[6,2],[6,2],[6,2],[6,2],[[7,[8,[7]],6],2],[[9,6],2],[[7,9,6],2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,6],2],0,[[],10],[[],10],0,0,[11,2],[10,2],[[[8,[12]]],2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[[[21,[9]]],2],[[7,[0,[22,4]]],2],[[7,23,7,[0,[22,4]]],2],[[],2],[[[21,[9]]],2],[[[0,[22,4]]],2],[7,2],[[7,9],2],[[7,23,7,9],2],[9,2],[[7,9],2],[[7,23,7,9],2],[24,2],[25,2],[23,2],[26,2],[12,2],[[],2],[7,2],[[7,23,7],2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[27,27],[28,28],[[]],[[]],[3],[[],27],[5,2],[5,2],[5,[[2,[27]]]],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,[8,[7]],6],2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,6],2],[6,2],[6,2],[6,2],[6,2],[[7,[8,[7]],6],2],[[9,6],2],[[7,9,6],2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,6],2],[7],[[27,27],10],[[28,28],10],[29,30],[[27,29],30],[29,30],[[31,29],30],[[27,29],30],[29,[[2,[32]]]],[[28,29],30],[[28,29],30],[[]],[[]],[[]],[[]],[[]],[[9,31]],[[28,31]],[[28,31]],[[],10],[7],[[],[[2,[33]]]],[34,2],[[],[[2,[[21,[33]]]]]],[34,[[2,[21]]]],[[],[[2,[21]]]],[[34,34],[[2,[21]]]],[[],[[2,[[21,[33]]]]]],[34,[[2,[21]]]],[[],[[2,[33]]]],[34,2],[[],[[21,[9]]]],[[],[[21,[9]]]],[[[8,[7]],6],2],[[]],[[]],[[],35],[[],2],[[],2],[[],2],[[],2],[[9,6],2],[[],36],[[],36],[[],2],[[7,[8,[7]]]],[[7,[8,[7]]]],0,[[],2],[34,2],[10,[[2,[37]]]],[[27,10],2],[[[8,[12]]],[[2,[37]]]],[7,[[2,[37]]]],[[[38,[12]]],[[2,[37]]]],[[[8,[12]]],[[2,[37]]]],[[27,[8,[12]]],[[2,[37]]]],[13,[[2,[37]]]],[39,2],[[27,39],2],[14,[[2,[37]]]],[15,[[2,[37]]]],[[27,15],2],[16,[[2,[37]]]],[[27,16],2],[17,[[2,[37]]]],[18,[[2,[37]]]],[19,[[2,[37]]]],[[27,19],2],[20,[[2,[37]]]],[40,2],[[27,40],2],[5,2],[[27,5],2],[[],[[2,[37]]]],[27,2],[41,2],[[27,41],2],[5,2],[[27,5],2],[7,[[2,[37]]]],[[27,7],[[2,[37]]]],[35,[[2,[37]]]],[24,[[2,[37]]]],[[27,24],2],[25,[[2,[37]]]],[23,[[2,[37]]]],[26,[[2,[37]]]],[[27,26],2],[12,[[2,[37]]]],[[],[[2,[37]]]],[27,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[42,42],[43,43],[44,44],[45,45],[46,46],[47,47],[48,48],[49,49],[[[52,[[0,[50,51]]]]],[[52,[[0,[50,51]]]]]],[53,53],[54,54],[55,55],[56,56],[57,57],[58,58],[59,59],[60,60],[61,61],[62,62],[63,63],[64,64],[65,65],[66,66],[67,67],[68,68],[[[69,[51,51]]],[[69,[51,51]]]],[[[70,[51]]],[[70,[51]]]],[[[71,[51]]],[[71,[51]]]],[[[72,[51]]],[[72,[51]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3,53],[3,53],[53,7],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],7,[8,[7]],6],2],[[[43,[37]],7,[8,[7]],6],2],[[[44,[37]],7,[8,[7]],6],2],[[[45,[37]],7,[8,[7]],6],2],[[[46,[37]],7,[8,[7]],6],2],[[[47,[37]],7,[8,[7]],6],2],[[[48,[37]],7,[8,[7]],6],2],[[[49,[37]],7,[8,[7]],6],2],[[[52,[50,37]],7,[8,[7]],6],2],[[[54,[37]],7,[8,[7]],6],2],[[[55,[37]],7,[8,[7]],6],2],[[[56,[37]],7,[8,[7]],6],2],[[[57,[37]],7,[8,[7]],6],2],[[[58,[37]],7,[8,[7]],6],2],[[[59,[37]],7,[8,[7]],6],2],[[[60,[37]],7,[8,[7]],6],2],[[[61,[37]],7,[8,[7]],6],2],[[[62,[37]],7,[8,[7]],6],2],[[[63,[37]],7,[8,[7]],6],2],[[[64,[37]],7,[8,[7]],6],2],[[[65,[37]],7,[8,[7]],6],2],[[[66,[37]],7,[8,[7]],6],2],[[[67,[37]],7,[8,[7]],6],2],[[[68,[37]],7,[8,[7]],6],2],[[[69,[50,37]],7,[8,[7]],6],2],[[[70,[41]],7,[8,[7]],6],2],[[[71,[40]],7,[8,[7]],6],2],[[[72,[39]],7,[8,[7]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],7,6],2],[[[43,[37]],7,6],2],[[[44,[37]],7,6],2],[[[45,[37]],7,6],2],[[[46,[37]],7,6],2],[[[47,[37]],7,6],2],[[[48,[37]],7,6],2],[[[49,[37]],7,6],2],[[[52,[50,37]],7,6],2],[[[54,[37]],7,6],2],[[[55,[37]],7,6],2],[[[56,[37]],7,6],2],[[[57,[37]],7,6],2],[[[58,[37]],7,6],2],[[[59,[37]],7,6],2],[[[60,[37]],7,6],2],[[[61,[37]],7,6],2],[[[62,[37]],7,6],2],[[[63,[37]],7,6],2],[[[64,[37]],7,6],2],[[[65,[37]],7,6],2],[[[66,[37]],7,6],2],[[[67,[37]],7,6],2],[[[68,[37]],7,6],2],[[[69,[50,37]],7,6],2],[[[70,[41]],7,6],2],[[[71,[40]],7,6],2],[[[72,[39]],7,6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],7,[8,[7]],6],2],[[[43,[37]],7,[8,[7]],6],2],[[[44,[37]],7,[8,[7]],6],2],[[[45,[37]],7,[8,[7]],6],2],[[[46,[37]],7,[8,[7]],6],2],[[[47,[37]],7,[8,[7]],6],2],[[[48,[37]],7,[8,[7]],6],2],[[[49,[37]],7,[8,[7]],6],2],[[[52,[50,37]],7,[8,[7]],6],2],[[[54,[37]],7,[8,[7]],6],2],[[[55,[37]],7,[8,[7]],6],2],[[[56,[37]],7,[8,[7]],6],2],[[[57,[37]],7,[8,[7]],6],2],[[[58,[37]],7,[8,[7]],6],2],[[[59,[37]],7,[8,[7]],6],2],[[[60,[37]],7,[8,[7]],6],2],[[[61,[37]],7,[8,[7]],6],2],[[[62,[37]],7,[8,[7]],6],2],[[[63,[37]],7,[8,[7]],6],2],[[[64,[37]],7,[8,[7]],6],2],[[[65,[37]],7,[8,[7]],6],2],[[[66,[37]],7,[8,[7]],6],2],[[[67,[37]],7,[8,[7]],6],2],[[[68,[37]],7,[8,[7]],6],2],[[[69,[50,37]],7,[8,[7]],6],2],[[[70,[41]],7,[8,[7]],6],2],[[[71,[40]],7,[8,[7]],6],2],[[[72,[39]],7,[8,[7]],6],2],[[[42,[37]],9,6],2],[[[43,[37]],9,6],2],[[[44,[37]],9,6],2],[[[45,[37]],9,6],2],[[[46,[37]],9,6],2],[[[47,[37]],9,6],2],[[[48,[37]],9,6],2],[[[49,[37]],9,6],2],[[[52,[50,37]],9,6],2],[[[54,[37]],9,6],2],[[[55,[37]],9,6],2],[[[56,[37]],9,6],2],[[[57,[37]],9,6],2],[[[58,[37]],9,6],2],[[[59,[37]],9,6],2],[[[60,[37]],9,6],2],[[[61,[37]],9,6],2],[[[62,[37]],9,6],2],[[[63,[37]],9,6],2],[[[64,[37]],9,6],2],[[[65,[37]],9,6],2],[[[66,[37]],9,6],2],[[[67,[37]],9,6],2],[[[68,[37]],9,6],2],[[[69,[50,37]],9,6],2],[[[70,[41]],9,6],2],[[[71,[40]],9,6],2],[[[72,[39]],9,6],2],[[[42,[37]],7,9,6],2],[[[43,[37]],7,9,6],2],[[[44,[37]],7,9,6],2],[[[45,[37]],7,9,6],2],[[[46,[37]],7,9,6],2],[[[47,[37]],7,9,6],2],[[[48,[37]],7,9,6],2],[[[49,[37]],7,9,6],2],[[[52,[50,37]],7,9,6],2],[[[54,[37]],7,9,6],2],[[[55,[37]],7,9,6],2],[[[56,[37]],7,9,6],2],[[[57,[37]],7,9,6],2],[[[58,[37]],7,9,6],2],[[[59,[37]],7,9,6],2],[[[60,[37]],7,9,6],2],[[[61,[37]],7,9,6],2],[[[62,[37]],7,9,6],2],[[[63,[37]],7,9,6],2],[[[64,[37]],7,9,6],2],[[[65,[37]],7,9,6],2],[[[66,[37]],7,9,6],2],[[[67,[37]],7,9,6],2],[[[68,[37]],7,9,6],2],[[[69,[50,37]],7,9,6],2],[[[70,[41]],7,9,6],2],[[[71,[40]],7,9,6],2],[[[72,[39]],7,9,6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],7,6],2],[[[43,[37]],7,6],2],[[[44,[37]],7,6],2],[[[45,[37]],7,6],2],[[[46,[37]],7,6],2],[[[47,[37]],7,6],2],[[[48,[37]],7,6],2],[[[49,[37]],7,6],2],[[[52,[50,37]],7,6],2],[[[54,[37]],7,6],2],[[[55,[37]],7,6],2],[[[56,[37]],7,6],2],[[[57,[37]],7,6],2],[[[58,[37]],7,6],2],[[[59,[37]],7,6],2],[[[60,[37]],7,6],2],[[[61,[37]],7,6],2],[[[62,[37]],7,6],2],[[[63,[37]],7,6],2],[[[64,[37]],7,6],2],[[[65,[37]],7,6],2],[[[66,[37]],7,6],2],[[[67,[37]],7,6],2],[[[68,[37]],7,6],2],[[[69,[50,37]],7,6],2],[[[70,[41]],7,6],2],[[[71,[40]],7,6],2],[[[72,[39]],7,6],2],[[[52,[50,37]]],[[2,[37]]]],[[[69,[50,37]]],[[2,[37]]]],[[53,53],10],[[42,29],30],[[43,29],30],[[44,29],30],[[45,29],30],[[46,29],30],[[47,29],30],[[48,29],30],[[49,29],30],[[[52,[[0,[50,73]]]],29],30],[[53,29],30],[[53,29],30],[[54,29],30],[[55,29],30],[[56,29],30],[[57,29],30],[[58,29],30],[[59,29],30],[[60,29],30],[[61,29],30],[[62,29],30],[[63,29],30],[[64,29],30],[[65,29],30],[[66,29],30],[[67,29],30],[[68,29],30],[[[69,[73]],29],30],[[[70,[73]],29],30],[[[71,[73]],29],30],[[[72,[73]],29],30],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],42],[23,43],[7,44],[7,45],[35,46],[[[74,[7]]],47],[[[8,[12]]],48],[[[8,[12]]],49],[50,[[52,[50]]]],[10,54],[20,55],[17,56],[18,57],[19,58],[75,59],[12,60],[25,61],[26,62],[9,63],[14,64],[15,65],[13,66],[16,67],[24,68],[50,[[69,[50]]]],[[],70],[[],71],[[],72],[[[52,[50,37]],34],[[2,[21]]]],[[[69,[50,37]],34],[[2,[21]]]],[[[52,[50,37]],34,34],[[2,[21]]]],[[[52,[50,37]],34],[[2,[21]]]],[[[52,[50,37]],34],2],[76],[[[52,[50,37]]],[[21,[9]]]],[[[52,[50,37]]],[[21,[9]]]],[[[69,[50,37]]],[[21,[9]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],35],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[[43,[37]],34],2],[[[44,[37]],34],2],[[[45,[37]],34],2],[[[46,[37]],34],2],[[[47,[37]],34],2],[[[71,[40]],34],2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[1,2],[1,2],[[[0,[3,4]]],2],[3],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[]],[[]],[[],10],[11,2],[10,2],[[[8,[12]]],2],[13,2],[[[0,[22,4]]],2],[[[0,[22,4]]],2],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[[[0,[22,4]],[0,[22,4]]],2],[14,2],[15,2],[[[0,[22,4]]],2],[[[0,[22,4]]],2],[[7,[0,[22,4]]],2],[[7,[0,[22,4]]],2],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[[[78,[77]],7,[0,[22,4]]],[[2,[77]]]],[[[78,[77]],7,[0,[22,4]]],[[2,[77]]]],[16,2],[17,2],[18,2],[19,2],[20,2],[[[0,[22,4]]],2],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[[[21,[9]]],2],[[7,[0,[22,4]]],2],[[7,23,7,[0,[22,4]]],2],[[],2],[[[21,[9]]],2],[[[0,[22,4]]],2],[7,2],[[7,9],2],[[7,23,7,9],2],[9,2],[[7,9],2],[[7,23,7,9],2],[24,2],[25,2],[23,2],[26,2],[12,2],[[],2],[7,2],[[7,23,7],2],[[[0,[22,4]]],2],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[7,2],[7,2],[[],2],[[],2],[[],36]],"c":[],"p":[[8,"IntoIterator"],[4,"Result"],[8,"Display"],[8,"Sized"],[8,"Deserializer"],[8,"Visitor"],[15,"str"],[15,"slice"],[15,"usize"],[15,"bool"],[8,"Serializer"],[15,"u8"],[15,"char"],[15,"f32"],[15,"f64"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[4,"Option"],[8,"Serialize"],[15,"u32"],[15,"u128"],[15,"u16"],[15,"u64"],[3,"IgnoredAny"],[4,"Unexpected"],[3,"Formatter"],[6,"Result"],[8,"Expected"],[3,"Error"],[8,"Deserialize"],[8,"DeserializeSeed"],[3,"String"],[3,"TypeId"],[8,"Error"],[3,"Vec"],[8,"EnumAccess"],[8,"MapAccess"],[8,"SeqAccess"],[3,"UnitDeserializer"],[3,"U32Deserializer"],[3,"StrDeserializer"],[3,"BorrowedStrDeserializer"],[3,"StringDeserializer"],[3,"CowStrDeserializer"],[3,"BytesDeserializer"],[3,"BorrowedBytesDeserializer"],[8,"Iterator"],[8,"Clone"],[3,"MapDeserializer"],[3,"Error"],[3,"BoolDeserializer"],[3,"I8Deserializer"],[3,"I16Deserializer"],[3,"I32Deserializer"],[3,"I64Deserializer"],[3,"IsizeDeserializer"],[3,"U8Deserializer"],[3,"U16Deserializer"],[3,"U64Deserializer"],[3,"UsizeDeserializer"],[3,"F32Deserializer"],[3,"F64Deserializer"],[3,"CharDeserializer"],[3,"I128Deserializer"],[3,"U128Deserializer"],[3,"SeqDeserializer"],[3,"SeqAccessDeserializer"],[3,"MapAccessDeserializer"],[3,"EnumAccessDeserializer"],[8,"Debug"],[4,"Cow"],[15,"isize"],[3,"Demand"],[8,"Error"],[3,"Impossible"],[8,"IntoDeserializer"],[8,"VariantAccess"],[8,"SerializeSeq"],[8,"SerializeTuple"],[8,"SerializeTupleStruct"],[8,"SerializeTupleVariant"],[8,"SerializeMap"],[8,"SerializeStruct"],[8,"SerializeStructVariant"]]},\ +"serde":{"doc":"Serde","t":"IYIQQQIYQQQQQQQILLLAKKKKKKKKKLKKKKKKKKKKKKKKKLKKKKKKOLLAOKKKKKKLKKKKKKKKKKKKKKKKLKKKKKKKNNNIIIIQNIIQQQQQINDININNNNNINCNNNENNNQQQIILLLLLLLLKLKKLKKKKKKKKLKKKKKKKKKKKKKKKLKKKKKKLLLKLKLLLLLLLLLKLLLLLLKLKLLLKLKLLKLLLLLLLKLLKLLALKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDDDDDDDDDDDDDDDDDDDDDDDDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIQQQQQQQQDQQQQQQQQIIQIQIQIQIQIQIQICLLLLLKKKKKKKKLLLLLLLLLLKKKKKKLLLKKKKKKLLLLLKKKKKLKKKKKKKKKKKKLKKKKKKKKLLLLLL","n":["Deserialize","Deserialize","Deserializer","Error","Error","Ok","Serialize","Serialize","SerializeMap","SerializeSeq","SerializeStruct","SerializeStructVariant","SerializeTuple","SerializeTupleStruct","SerializeTupleVariant","Serializer","collect_map","collect_seq","collect_str","de","deserialize","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","forward_to_deserialize_any","is_human_readable","is_human_readable","ser","serde_if_integer128","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","Bool","Bytes","Char","Deserialize","DeserializeOwned","DeserializeSeed","Deserializer","Deserializer","Enum","EnumAccess","Error","Error","Error","Error","Error","Error","Expected","Float","IgnoredAny","IntoDeserializer","Map","MapAccess","NewtypeStruct","NewtypeVariant","Option","Other","Seq","SeqAccess","Signed","StdError","Str","StructVariant","TupleVariant","Unexpected","Unit","UnitVariant","Unsigned","Value","Value","Variant","VariantAccess","Visitor","borrow","borrow","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","custom","default","deserialize","deserialize","deserialize","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","duplicate_field","eq","eq","expecting","expecting","fmt","fmt","fmt","fmt","fmt","fmt","from","from","into","into","into_deserializer","invalid_length","invalid_type","invalid_value","is_human_readable","missing_field","newtype_variant","newtype_variant_seed","next_element","next_element_seed","next_entry","next_entry_seed","next_key","next_key_seed","next_value","next_value_seed","size_hint","size_hint","struct_variant","to_owned","to_owned","to_string","try_from","try_from","try_into","try_into","tuple_variant","type_id","type_id","unit_variant","unknown_field","unknown_variant","value","variant","variant_seed","visit_bool","visit_bool","visit_borrowed_bytes","visit_borrowed_str","visit_byte_buf","visit_bytes","visit_bytes","visit_char","visit_enum","visit_enum","visit_f32","visit_f64","visit_f64","visit_i128","visit_i128","visit_i16","visit_i32","visit_i64","visit_i64","visit_i8","visit_map","visit_map","visit_newtype_struct","visit_newtype_struct","visit_none","visit_none","visit_seq","visit_seq","visit_some","visit_some","visit_str","visit_str","visit_string","visit_u128","visit_u128","visit_u16","visit_u32","visit_u64","visit_u64","visit_u8","visit_unit","visit_unit","BoolDeserializer","BorrowedBytesDeserializer","BorrowedStrDeserializer","BytesDeserializer","CharDeserializer","CowStrDeserializer","EnumAccessDeserializer","Error","F32Deserializer","F64Deserializer","I128Deserializer","I16Deserializer","I32Deserializer","I64Deserializer","I8Deserializer","IsizeDeserializer","MapAccessDeserializer","MapDeserializer","SeqAccessDeserializer","SeqDeserializer","StrDeserializer","StringDeserializer","U128Deserializer","U16Deserializer","U32Deserializer","U64Deserializer","U8Deserializer","UnitDeserializer","UsizeDeserializer","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","custom","custom","description","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","end","end","eq","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","new","next_element_seed","next_element_seed","next_entry_seed","next_key_seed","next_value_seed","provide","size_hint","size_hint","size_hint","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","variant_seed","variant_seed","variant_seed","variant_seed","variant_seed","variant_seed","Error","Error","Error","Error","Error","Error","Error","Error","Error","Impossible","Ok","Ok","Ok","Ok","Ok","Ok","Ok","Ok","Serialize","SerializeMap","SerializeMap","SerializeSeq","SerializeSeq","SerializeStruct","SerializeStruct","SerializeStructVariant","SerializeStructVariant","SerializeTuple","SerializeTuple","SerializeTupleStruct","SerializeTupleStruct","SerializeTupleVariant","SerializeTupleVariant","Serializer","StdError","borrow","borrow_mut","collect_map","collect_seq","collect_str","custom","end","end","end","end","end","end","end","end","end","end","end","end","end","end","from","into","is_human_readable","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_element","serialize_element","serialize_element","serialize_element","serialize_entry","serialize_f32","serialize_f64","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_field","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_key","serialize_key","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","serialize_value","serialize_value","skip_field","skip_field","try_from","try_into","type_id"],"q":[[0,"serde"],[88,"serde::de"],[266,"serde::de::value"],[1533,"serde::ser"]],"d":["A data structure that can be deserialized from any data …","Derive macro available if serde is built with …","A data format that can deserialize any data structure …","The error type that can be returned if some error occurs …","The error type when some error occurs during serialization.","The output type produced by this Serializer during …","A data structure that can be serialized into any data …","Derive macro available if serde is built with …","Type returned from serialize_map for serializing the …","Type returned from serialize_seq for serializing the …","Type returned from serialize_struct for serializing the …","Type returned from serialize_struct_variant for …","Type returned from serialize_tuple for serializing the …","Type returned from serialize_tuple_struct for serializing …","Type returned from serialize_tuple_variant for serializing …","A data format that can serialize any data structure …","Collect an iterator as a map.","Collect an iterator as a sequence.","Serialize a string produced by an implementation of Display…","Generic data structure deserialization framework.","Deserialize this value from the given Serde deserializer.","Require the Deserializer to figure out how to drive the …","Hint that the Deserialize type is expecting a bool value.","Hint that the Deserialize type is expecting a byte array …","Hint that the Deserialize type is expecting a byte array …","Hint that the Deserialize type is expecting a char value.","Hint that the Deserialize type is expecting an enum value …","Hint that the Deserialize type is expecting a f32 value.","Hint that the Deserialize type is expecting a f64 value.","Hint that the Deserialize type is expecting an i128 value.","Hint that the Deserialize type is expecting an i16 value.","Hint that the Deserialize type is expecting an i32 value.","Hint that the Deserialize type is expecting an i64 value.","Hint that the Deserialize type is expecting an i8 value.","Hint that the Deserialize type is expecting the name of a …","Hint that the Deserialize type needs to deserialize a …","Hint that the Deserialize type is expecting a map of …","Hint that the Deserialize type is expecting a newtype …","Hint that the Deserialize type is expecting an optional …","Hint that the Deserialize type is expecting a sequence of …","Hint that the Deserialize type is expecting a string value …","Hint that the Deserialize type is expecting a string value …","Hint that the Deserialize type is expecting a struct with …","Hint that the Deserialize type is expecting a sequence of …","Hint that the Deserialize type is expecting a tuple struct …","Hint that the Deserialize type is expecting an u128 value.","Hint that the Deserialize type is expecting a u16 value.","Hint that the Deserialize type is expecting a u32 value.","Hint that the Deserialize type is expecting a u64 value.","Hint that the Deserialize type is expecting a u8 value.","Hint that the Deserialize type is expecting a unit value.","Hint that the Deserialize type is expecting a unit struct …","Helper macro when implementing the Deserializer part of a …","Determine whether Deserialize implementations should …","Determine whether Serialize implementations should …","Generic data structure serialization framework.","Conditional compilation depending on whether Serde is …","Serialize this value into the given Serde serializer.","Serialize a bool value.","Serialize a chunk of raw byte data.","Serialize a character.","Serialize an f32 value.","Serialize an f64 value.","Serialize an i128 value.","Serialize an i16 value.","Serialize an i32 value.","Serialize an i64 value.","Serialize an i8 value.","Begin to serialize a map. This call must be followed by …","Serialize a newtype struct like struct Millimeters(u8).","Serialize a newtype variant like E::N in enum E { N(u8) }.","Serialize a None value.","Begin to serialize a variably sized sequence. This call …","Serialize a Some(T) value.","Serialize a &str.","Begin to serialize a struct like …","Begin to serialize a struct variant like E::S in …","Begin to serialize a statically sized sequence whose …","Begin to serialize a tuple struct like …","Begin to serialize a tuple variant like E::T in …","Serialize a u128 value.","Serialize a u16 value.","Serialize a u32 value.","Serialize a u64 value.","Serialize a u8 value.","Serialize a () value.","Serialize a unit struct like struct Unit or PhantomData<T>.","Serialize a unit variant like E::A in enum E { A, B }.","The input contained a boolean value that was not expected.","The input contained a &[u8] or Vec<u8> that was not …","The input contained a char that was not expected.","A data structure that can be deserialized from any data …","A data structure that can be deserialized without …","DeserializeSeed is the stateful form of the Deserialize …","A data format that can deserialize any data structure …","The type of the deserializer being converted into.","The input contained an enum that was not expected.","Provides a Visitor access to the data of an enum in the …","The Error trait allows Deserialize implementations to …","The error type that can be returned if some error occurs …","The error type that can be returned if some error occurs …","The error type that can be returned if some error occurs …","The error type that can be returned if some error occurs …","The error type that can be returned if some error occurs …","Expected represents an explanation of what data a Visitor …","The input contained a floating point f32 or f64 that was …","An efficient way of discarding data from a deserializer.","Converts an existing value into a Deserializer from which …","The input contained a map that was not expected.","Provides a Visitor access to each entry of a map in the …","The input contained a newtype struct that was not expected.","The input contained a newtype variant that was not …","The input contained an Option<T> that was not expected.","A message stating what uncategorized thing the input …","The input contained a sequence that was not expected.","Provides a Visitor access to each element of a sequence in …","The input contained a signed integer i8, i16, i32 or i64 …","","The input contained a &str or String that was not expected.","The input contained a struct variant that was not expected.","The input contained a tuple variant that was not expected.","Unexpected represents an unexpected invocation of any one …","The input contained a unit () that was not expected.","The input contained a unit variant that was not expected.","The input contained an unsigned integer u8, u16, u32 or u64…","The type produced by using this seed.","The value produced by this visitor.","The Visitor that will be used to deserialize the content …","VariantAccess is a visitor that is created by the …","This trait represents a visitor that walks through a …","","","","","","","","","Raised when there is general error when deserializing a …","","Deserialize this value from the given Serde deserializer.","Equivalent to the more common Deserialize::deserialize …","","Require the Deserializer to figure out how to drive the …","Hint that the Deserialize type is expecting a bool value.","Hint that the Deserialize type is expecting a byte array …","Hint that the Deserialize type is expecting a byte array …","Hint that the Deserialize type is expecting a char value.","Hint that the Deserialize type is expecting an enum value …","Hint that the Deserialize type is expecting a f32 value.","Hint that the Deserialize type is expecting a f64 value.","Hint that the Deserialize type is expecting an i128 value.","Hint that the Deserialize type is expecting an i16 value.","Hint that the Deserialize type is expecting an i32 value.","Hint that the Deserialize type is expecting an i64 value.","Hint that the Deserialize type is expecting an i8 value.","Hint that the Deserialize type is expecting the name of a …","Hint that the Deserialize type needs to deserialize a …","Hint that the Deserialize type is expecting a map of …","Hint that the Deserialize type is expecting a newtype …","Hint that the Deserialize type is expecting an optional …","Hint that the Deserialize type is expecting a sequence of …","Hint that the Deserialize type is expecting a string value …","Hint that the Deserialize type is expecting a string value …","Hint that the Deserialize type is expecting a struct with …","Hint that the Deserialize type is expecting a sequence of …","Hint that the Deserialize type is expecting a tuple struct …","Hint that the Deserialize type is expecting an u128 value.","Hint that the Deserialize type is expecting a u16 value.","Hint that the Deserialize type is expecting a u32 value.","Hint that the Deserialize type is expecting a u64 value.","Hint that the Deserialize type is expecting a u8 value.","Hint that the Deserialize type is expecting a unit value.","Hint that the Deserialize type is expecting a unit struct …","Raised when a Deserialize struct type received more than …","","","Format a message stating what data this Visitor expects to …","","Format an explanation of what data was being expected. …","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Convert this value into a deserializer.","Raised when deserializing a sequence or map and the input …","Raised when a Deserialize receives a type different from …","Raised when a Deserialize receives a value of the right …","Determine whether Deserialize implementations should …","Raised when a Deserialize struct type expected to receive …","Called when deserializing a variant with a single value.","Called when deserializing a variant with a single value.","This returns Ok(Some(value)) for the next value in the …","This returns Ok(Some(value)) for the next value in the …","This returns Ok(Some((key, value))) for the next …","This returns Ok(Some((key, value))) for the next …","This returns Ok(Some(key)) for the next key in the map, or …","This returns Ok(Some(key)) for the next key in the map, or …","This returns a Ok(value) for the next value in the map.","This returns a Ok(value) for the next value in the map.","Returns the number of elements remaining in the sequence, …","Returns the number of entries remaining in the map, if …","Called when deserializing a struct-like variant.","","","","","","","","Called when deserializing a tuple-like variant.","","","Called when deserializing a variant with no values.","Raised when a Deserialize struct type received a field …","Raised when a Deserialize enum type received a variant …","Building blocks for deserializing basic values using the …","variant is called to identify which variant to deserialize.","variant is called to identify which variant to deserialize.","The input contains a boolean.","","The input contains a byte array that lives at least as …","The input contains a string that lives at least as long as …","The input contains a byte array and ownership of the byte …","The input contains a byte array. The lifetime of the byte …","","The input contains a char.","The input contains an enum.","","The input contains an f32.","The input contains an f64.","","The input contains a i128.","","The input contains an i16.","The input contains an i32.","The input contains an i64.","","The input contains an i8.","The input contains a key-value map.","","The input contains a newtype struct.","","The input contains an optional that is absent.","","The input contains a sequence of elements.","","The input contains an optional that is present.","","The input contains a string. The lifetime of the string is …","","The input contains a string and ownership of the string is …","The input contains a u128.","","The input contains a u16.","The input contains a u32.","The input contains a u64.","","The input contains a u8.","The input contains a unit ().","","A deserializer holding a bool.","A deserializer holding a &[u8] with a lifetime tied to …","A deserializer holding a &str with a lifetime tied to …","A deserializer holding a &[u8]. Always calls …","A deserializer holding a char.","A deserializer holding a Cow<str>.","A deserializer holding an EnumAccess.","A minimal representation of all possible errors that can …","A deserializer holding an f32.","A deserializer holding an f64.","A deserializer holding an i128.","A deserializer holding an i16.","A deserializer holding an i32.","A deserializer holding an i64.","A deserializer holding an i8.","A deserializer holding an isize.","A deserializer holding a MapAccess.","A deserializer that iterates over a map.","A deserializer holding a SeqAccess.","A deserializer that iterates over a sequence.","A deserializer holding a &str.","A deserializer holding a String.","A deserializer holding a u128.","A deserializer holding a u16.","A deserializer holding a u32.","A deserializer holding a u64.","A deserializer holding a u8.","A deserializer holding a ().","A deserializer holding a usize.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Check for remaining elements after passing a …","Check for remaining elements after passing a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","Create a new borrowed deserializer from the given string.","","","Create a new deserializer from the given bytes.","Create a new borrowed deserializer from the given borrowed …","Construct a new MapDeserializer<I, E>.","","","","","","","","","","","","","","","","Construct a new SeqDeserializer<I, E>.","Construct a new SeqAccessDeserializer<A>.","Construct a new MapAccessDeserializer<A>.","Construct a new EnumAccessDeserializer<A>.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Trait used by Serialize implementations to generically …","The error type when some error occurs during serialization.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Must match the Error type of our Serializer.","Helper type for implementing a Serializer that does not …","The output type produced by this Serializer during …","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","Must match the Ok type of our Serializer.","A data structure that can be serialized into any data …","Returned from Serializer::serialize_map.","Type returned from serialize_map for serializing the …","Returned from Serializer::serialize_seq.","Type returned from serialize_seq for serializing the …","Returned from Serializer::serialize_struct.","Type returned from serialize_struct for serializing the …","Returned from Serializer::serialize_struct_variant.","Type returned from serialize_struct_variant for …","Returned from Serializer::serialize_tuple.","Type returned from serialize_tuple for serializing the …","Returned from Serializer::serialize_tuple_struct.","Type returned from serialize_tuple_struct for serializing …","Returned from Serializer::serialize_tuple_variant.","Type returned from serialize_tuple_variant for serializing …","A data format that can serialize any data structure …","","","","Collect an iterator as a map.","Collect an iterator as a sequence.","Serialize a string produced by an implementation of Display…","Used when a Serialize implementation encounters any error …","Finish serializing a sequence.","Finish serializing a tuple.","Finish serializing a tuple struct.","Finish serializing a tuple variant.","Finish serializing a map.","Finish serializing a struct.","Finish serializing a struct variant.","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","Determine whether Serialize implementations should …","Serialize this value into the given Serde serializer.","Serialize a bool value.","Serialize a chunk of raw byte data.","Serialize a character.","Serialize a sequence element.","Serialize a tuple element.","","","Serialize a map entry consisting of a key and a value.","Serialize an f32 value.","Serialize an f64 value.","Serialize a tuple struct field.","Serialize a tuple variant field.","Serialize a struct field.","Serialize a struct variant field.","","","","","Serialize an i128 value.","Serialize an i16 value.","Serialize an i32 value.","Serialize an i64 value.","Serialize an i8 value.","Serialize a map key.","","Begin to serialize a map. This call must be followed by …","Serialize a newtype struct like struct Millimeters(u8).","Serialize a newtype variant like E::N in enum E { N(u8) }.","Serialize a None value.","Begin to serialize a variably sized sequence. This call …","Serialize a Some(T) value.","Serialize a &str.","Begin to serialize a struct like …","Begin to serialize a struct variant like E::S in …","Begin to serialize a statically sized sequence whose …","Begin to serialize a tuple struct like …","Begin to serialize a tuple variant like E::T in …","Serialize a u128 value.","Serialize a u16 value.","Serialize a u32 value.","Serialize a u64 value.","Serialize a u8 value.","Serialize a () value.","Serialize a unit struct like struct Unit or PhantomData<T>.","Serialize a unit variant like E::A in enum E { A, B }.","Serialize a map value.","","Indicate that a struct field has been skipped.","Indicate that a struct variant field has been skipped.","","",""],"i":[0,0,0,5,11,11,0,0,11,11,11,11,11,11,11,0,11,11,11,0,33,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,5,11,0,0,22,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,28,28,28,0,0,0,0,79,28,0,0,5,41,40,39,80,0,28,0,0,28,0,28,28,28,28,28,0,28,0,28,28,28,0,28,28,28,34,6,39,0,0,27,28,27,28,27,28,27,28,37,27,33,34,27,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,37,27,28,6,27,31,31,27,27,28,28,27,28,27,28,79,37,37,37,5,37,80,80,41,41,40,40,40,40,40,40,41,40,80,27,28,28,27,28,27,28,80,27,28,80,37,37,0,39,39,6,27,6,6,6,6,27,6,6,27,6,6,27,6,27,6,6,6,27,6,6,27,6,27,6,27,6,27,6,27,6,27,6,6,27,6,6,6,27,6,6,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,53,53,53,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,52,69,53,42,43,44,45,46,47,48,49,52,53,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,52,69,52,52,52,53,52,52,69,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,53,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,42,43,44,45,46,47,48,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,43,44,45,46,47,71,0,11,81,82,83,84,85,86,87,0,11,81,82,83,84,85,86,87,0,0,11,0,11,0,11,0,11,0,11,0,11,0,11,0,0,78,78,11,11,11,77,81,82,83,84,85,86,87,78,78,78,78,78,78,78,78,78,11,22,11,11,11,81,82,78,78,85,11,11,83,84,86,87,78,78,78,78,11,11,11,11,11,85,78,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,85,78,86,87,78,78,78],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,2],[[[0,[3,4]]],2],0,[5,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,[8,[7]],6],2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,6],2],[6,2],[6,2],[6,2],[6,2],[[7,[8,[7]],6],2],[[9,6],2],[[7,9,6],2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,6],2],0,[[],10],[[],10],0,0,[11,2],[10,2],[[[8,[12]]],2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[[[21,[9]]],2],[[7,[0,[22,4]]],2],[[7,23,7,[0,[22,4]]],2],[[],2],[[[21,[9]]],2],[[[0,[22,4]]],2],[7,2],[[7,9],2],[[7,23,7,9],2],[9,2],[[7,9],2],[[7,23,7,9],2],[24,2],[25,2],[23,2],[26,2],[12,2],[[],2],[7,2],[[7,23,7],2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[27,27],[28,28],[[]],[[]],[3],[[],27],[5,2],[5,2],[5,[[2,[27]]]],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,[8,[7]],6],2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,6],2],[6,2],[6,2],[6,2],[6,2],[[7,[8,[7]],6],2],[[9,6],2],[[7,9,6],2],[6,2],[6,2],[6,2],[6,2],[6,2],[6,2],[[7,6],2],[7],[[27,27],10],[[28,28],10],[29,30],[[27,29],30],[29,30],[[31,29],30],[[27,29],30],[29,[[2,[32]]]],[[28,29],30],[[28,29],30],[[]],[[]],[[]],[[]],[[]],[[9,31]],[[28,31]],[[28,31]],[[],10],[7],[[],[[2,[33]]]],[34,2],[[],[[2,[[21,[33]]]]]],[34,[[2,[21]]]],[[],[[2,[21]]]],[[34,34],[[2,[21]]]],[[],[[2,[[21,[33]]]]]],[34,[[2,[21]]]],[[],[[2,[33]]]],[34,2],[[],[[21,[9]]]],[[],[[21,[9]]]],[[[8,[7]],6],2],[[]],[[]],[[],35],[[],2],[[],2],[[],2],[[],2],[[9,6],2],[[],36],[[],36],[[],2],[[7,[8,[7]]]],[[7,[8,[7]]]],0,[[],2],[34,2],[10,[[2,[37]]]],[[27,10],2],[[[8,[12]]],[[2,[37]]]],[7,[[2,[37]]]],[[[38,[12]]],[[2,[37]]]],[[[8,[12]]],[[2,[37]]]],[[27,[8,[12]]],[[2,[37]]]],[13,[[2,[37]]]],[39,2],[[27,39],2],[14,[[2,[37]]]],[15,[[2,[37]]]],[[27,15],2],[16,[[2,[37]]]],[[27,16],2],[17,[[2,[37]]]],[18,[[2,[37]]]],[19,[[2,[37]]]],[[27,19],2],[20,[[2,[37]]]],[40,2],[[27,40],2],[5,2],[[27,5],2],[[],[[2,[37]]]],[27,2],[41,2],[[27,41],2],[5,2],[[27,5],2],[7,[[2,[37]]]],[[27,7],[[2,[37]]]],[35,[[2,[37]]]],[24,[[2,[37]]]],[[27,24],2],[25,[[2,[37]]]],[23,[[2,[37]]]],[26,[[2,[37]]]],[[27,26],2],[12,[[2,[37]]]],[[],[[2,[37]]]],[27,2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[42,42],[43,43],[44,44],[45,45],[46,46],[47,47],[48,48],[49,49],[[[52,[[0,[50,51]]]]],[[52,[[0,[50,51]]]]]],[53,53],[54,54],[55,55],[56,56],[57,57],[58,58],[59,59],[60,60],[61,61],[62,62],[63,63],[64,64],[65,65],[66,66],[67,67],[68,68],[[[69,[51,51]]],[[69,[51,51]]]],[[[70,[51]]],[[70,[51]]]],[[[71,[51]]],[[71,[51]]]],[[[72,[51]]],[[72,[51]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3,53],[3,53],[53,7],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],7,[8,[7]],6],2],[[[43,[37]],7,[8,[7]],6],2],[[[44,[37]],7,[8,[7]],6],2],[[[45,[37]],7,[8,[7]],6],2],[[[46,[37]],7,[8,[7]],6],2],[[[47,[37]],7,[8,[7]],6],2],[[[48,[37]],7,[8,[7]],6],2],[[[49,[37]],7,[8,[7]],6],2],[[[52,[50,37]],7,[8,[7]],6],2],[[[54,[37]],7,[8,[7]],6],2],[[[55,[37]],7,[8,[7]],6],2],[[[56,[37]],7,[8,[7]],6],2],[[[57,[37]],7,[8,[7]],6],2],[[[58,[37]],7,[8,[7]],6],2],[[[59,[37]],7,[8,[7]],6],2],[[[60,[37]],7,[8,[7]],6],2],[[[61,[37]],7,[8,[7]],6],2],[[[62,[37]],7,[8,[7]],6],2],[[[63,[37]],7,[8,[7]],6],2],[[[64,[37]],7,[8,[7]],6],2],[[[65,[37]],7,[8,[7]],6],2],[[[66,[37]],7,[8,[7]],6],2],[[[67,[37]],7,[8,[7]],6],2],[[[68,[37]],7,[8,[7]],6],2],[[[69,[50,37]],7,[8,[7]],6],2],[[[70,[41]],7,[8,[7]],6],2],[[[71,[40]],7,[8,[7]],6],2],[[[72,[39]],7,[8,[7]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],7,6],2],[[[43,[37]],7,6],2],[[[44,[37]],7,6],2],[[[45,[37]],7,6],2],[[[46,[37]],7,6],2],[[[47,[37]],7,6],2],[[[48,[37]],7,6],2],[[[49,[37]],7,6],2],[[[52,[50,37]],7,6],2],[[[54,[37]],7,6],2],[[[55,[37]],7,6],2],[[[56,[37]],7,6],2],[[[57,[37]],7,6],2],[[[58,[37]],7,6],2],[[[59,[37]],7,6],2],[[[60,[37]],7,6],2],[[[61,[37]],7,6],2],[[[62,[37]],7,6],2],[[[63,[37]],7,6],2],[[[64,[37]],7,6],2],[[[65,[37]],7,6],2],[[[66,[37]],7,6],2],[[[67,[37]],7,6],2],[[[68,[37]],7,6],2],[[[69,[50,37]],7,6],2],[[[70,[41]],7,6],2],[[[71,[40]],7,6],2],[[[72,[39]],7,6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],7,[8,[7]],6],2],[[[43,[37]],7,[8,[7]],6],2],[[[44,[37]],7,[8,[7]],6],2],[[[45,[37]],7,[8,[7]],6],2],[[[46,[37]],7,[8,[7]],6],2],[[[47,[37]],7,[8,[7]],6],2],[[[48,[37]],7,[8,[7]],6],2],[[[49,[37]],7,[8,[7]],6],2],[[[52,[50,37]],7,[8,[7]],6],2],[[[54,[37]],7,[8,[7]],6],2],[[[55,[37]],7,[8,[7]],6],2],[[[56,[37]],7,[8,[7]],6],2],[[[57,[37]],7,[8,[7]],6],2],[[[58,[37]],7,[8,[7]],6],2],[[[59,[37]],7,[8,[7]],6],2],[[[60,[37]],7,[8,[7]],6],2],[[[61,[37]],7,[8,[7]],6],2],[[[62,[37]],7,[8,[7]],6],2],[[[63,[37]],7,[8,[7]],6],2],[[[64,[37]],7,[8,[7]],6],2],[[[65,[37]],7,[8,[7]],6],2],[[[66,[37]],7,[8,[7]],6],2],[[[67,[37]],7,[8,[7]],6],2],[[[68,[37]],7,[8,[7]],6],2],[[[69,[50,37]],7,[8,[7]],6],2],[[[70,[41]],7,[8,[7]],6],2],[[[71,[40]],7,[8,[7]],6],2],[[[72,[39]],7,[8,[7]],6],2],[[[42,[37]],9,6],2],[[[43,[37]],9,6],2],[[[44,[37]],9,6],2],[[[45,[37]],9,6],2],[[[46,[37]],9,6],2],[[[47,[37]],9,6],2],[[[48,[37]],9,6],2],[[[49,[37]],9,6],2],[[[52,[50,37]],9,6],2],[[[54,[37]],9,6],2],[[[55,[37]],9,6],2],[[[56,[37]],9,6],2],[[[57,[37]],9,6],2],[[[58,[37]],9,6],2],[[[59,[37]],9,6],2],[[[60,[37]],9,6],2],[[[61,[37]],9,6],2],[[[62,[37]],9,6],2],[[[63,[37]],9,6],2],[[[64,[37]],9,6],2],[[[65,[37]],9,6],2],[[[66,[37]],9,6],2],[[[67,[37]],9,6],2],[[[68,[37]],9,6],2],[[[69,[50,37]],9,6],2],[[[70,[41]],9,6],2],[[[71,[40]],9,6],2],[[[72,[39]],9,6],2],[[[42,[37]],7,9,6],2],[[[43,[37]],7,9,6],2],[[[44,[37]],7,9,6],2],[[[45,[37]],7,9,6],2],[[[46,[37]],7,9,6],2],[[[47,[37]],7,9,6],2],[[[48,[37]],7,9,6],2],[[[49,[37]],7,9,6],2],[[[52,[50,37]],7,9,6],2],[[[54,[37]],7,9,6],2],[[[55,[37]],7,9,6],2],[[[56,[37]],7,9,6],2],[[[57,[37]],7,9,6],2],[[[58,[37]],7,9,6],2],[[[59,[37]],7,9,6],2],[[[60,[37]],7,9,6],2],[[[61,[37]],7,9,6],2],[[[62,[37]],7,9,6],2],[[[63,[37]],7,9,6],2],[[[64,[37]],7,9,6],2],[[[65,[37]],7,9,6],2],[[[66,[37]],7,9,6],2],[[[67,[37]],7,9,6],2],[[[68,[37]],7,9,6],2],[[[69,[50,37]],7,9,6],2],[[[70,[41]],7,9,6],2],[[[71,[40]],7,9,6],2],[[[72,[39]],7,9,6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],6],2],[[[43,[37]],6],2],[[[44,[37]],6],2],[[[45,[37]],6],2],[[[46,[37]],6],2],[[[47,[37]],6],2],[[[48,[37]],6],2],[[[49,[37]],6],2],[[[52,[50,37]],6],2],[[[54,[37]],6],2],[[[55,[37]],6],2],[[[56,[37]],6],2],[[[57,[37]],6],2],[[[58,[37]],6],2],[[[59,[37]],6],2],[[[60,[37]],6],2],[[[61,[37]],6],2],[[[62,[37]],6],2],[[[63,[37]],6],2],[[[64,[37]],6],2],[[[65,[37]],6],2],[[[66,[37]],6],2],[[[67,[37]],6],2],[[[68,[37]],6],2],[[[69,[50,37]],6],2],[[[70,[41]],6],2],[[[71,[40]],6],2],[[[72,[39]],6],2],[[[42,[37]],7,6],2],[[[43,[37]],7,6],2],[[[44,[37]],7,6],2],[[[45,[37]],7,6],2],[[[46,[37]],7,6],2],[[[47,[37]],7,6],2],[[[48,[37]],7,6],2],[[[49,[37]],7,6],2],[[[52,[50,37]],7,6],2],[[[54,[37]],7,6],2],[[[55,[37]],7,6],2],[[[56,[37]],7,6],2],[[[57,[37]],7,6],2],[[[58,[37]],7,6],2],[[[59,[37]],7,6],2],[[[60,[37]],7,6],2],[[[61,[37]],7,6],2],[[[62,[37]],7,6],2],[[[63,[37]],7,6],2],[[[64,[37]],7,6],2],[[[65,[37]],7,6],2],[[[66,[37]],7,6],2],[[[67,[37]],7,6],2],[[[68,[37]],7,6],2],[[[69,[50,37]],7,6],2],[[[70,[41]],7,6],2],[[[71,[40]],7,6],2],[[[72,[39]],7,6],2],[[[52,[50,37]]],[[2,[37]]]],[[[69,[50,37]]],[[2,[37]]]],[[53,53],10],[[42,29],30],[[43,29],30],[[44,29],30],[[45,29],30],[[46,29],30],[[47,29],30],[[48,29],30],[[49,29],30],[[[52,[[0,[50,73]]]],29],30],[[53,29],30],[[53,29],30],[[54,29],30],[[55,29],30],[[56,29],30],[[57,29],30],[[58,29],30],[[59,29],30],[[60,29],30],[[61,29],30],[[62,29],30],[[63,29],30],[[64,29],30],[[65,29],30],[[66,29],30],[[67,29],30],[[68,29],30],[[[69,[73]],29],30],[[[70,[73]],29],30],[[[71,[73]],29],30],[[[72,[73]],29],30],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],42],[23,43],[7,44],[7,45],[35,46],[[[74,[7]]],47],[[[8,[12]]],48],[[[8,[12]]],49],[50,[[52,[50]]]],[10,54],[20,55],[17,56],[18,57],[19,58],[75,59],[12,60],[25,61],[26,62],[9,63],[14,64],[15,65],[13,66],[16,67],[24,68],[50,[[69,[50]]]],[[],70],[[],71],[[],72],[[[52,[50,37]],34],[[2,[21]]]],[[[69,[50,37]],34],[[2,[21]]]],[[[52,[50,37]],34,34],[[2,[21]]]],[[[52,[50,37]],34],[[2,[21]]]],[[[52,[50,37]],34],2],[76],[[[52,[50,37]]],[[21,[9]]]],[[[52,[50,37]]],[[21,[9]]]],[[[69,[50,37]]],[[21,[9]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],35],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[],36],[[[43,[37]],34],2],[[[44,[37]],34],2],[[[45,[37]],34],2],[[[46,[37]],34],2],[[[47,[37]],34],2],[[[71,[40]],34],2],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[1,2],[1,2],[[[0,[3,4]]],2],[3],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[],2],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[[78,[77]]],[[2,[77]]]],[[]],[[]],[[],10],[11,2],[10,2],[[[8,[12]]],2],[13,2],[[[0,[22,4]]],2],[[[0,[22,4]]],2],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[[[0,[22,4]],[0,[22,4]]],2],[14,2],[15,2],[[[0,[22,4]]],2],[[[0,[22,4]]],2],[[7,[0,[22,4]]],2],[[7,[0,[22,4]]],2],[[[78,[77]],7,[0,[22,4]]],[[2,[77]]]],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[[[78,[77]],7,[0,[22,4]]],[[2,[77]]]],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[16,2],[17,2],[18,2],[19,2],[20,2],[[[0,[22,4]]],2],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[[[21,[9]]],2],[[7,[0,[22,4]]],2],[[7,23,7,[0,[22,4]]],2],[[],2],[[[21,[9]]],2],[[[0,[22,4]]],2],[7,2],[[7,9],2],[[7,23,7,9],2],[9,2],[[7,9],2],[[7,23,7,9],2],[24,2],[25,2],[23,2],[26,2],[12,2],[[],2],[7,2],[[7,23,7],2],[[[0,[22,4]]],2],[[[78,[77]],[0,[22,4]]],[[2,[77]]]],[7,2],[7,2],[[],2],[[],2],[[],36]],"c":[],"p":[[8,"IntoIterator"],[4,"Result"],[8,"Display"],[8,"Sized"],[8,"Deserializer"],[8,"Visitor"],[15,"str"],[15,"slice"],[15,"usize"],[15,"bool"],[8,"Serializer"],[15,"u8"],[15,"char"],[15,"f32"],[15,"f64"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[4,"Option"],[8,"Serialize"],[15,"u32"],[15,"u128"],[15,"u16"],[15,"u64"],[3,"IgnoredAny"],[4,"Unexpected"],[3,"Formatter"],[6,"Result"],[8,"Expected"],[3,"Error"],[8,"Deserialize"],[8,"DeserializeSeed"],[3,"String"],[3,"TypeId"],[8,"Error"],[3,"Vec"],[8,"EnumAccess"],[8,"MapAccess"],[8,"SeqAccess"],[3,"UnitDeserializer"],[3,"U32Deserializer"],[3,"StrDeserializer"],[3,"BorrowedStrDeserializer"],[3,"StringDeserializer"],[3,"CowStrDeserializer"],[3,"BytesDeserializer"],[3,"BorrowedBytesDeserializer"],[8,"Iterator"],[8,"Clone"],[3,"MapDeserializer"],[3,"Error"],[3,"BoolDeserializer"],[3,"I8Deserializer"],[3,"I16Deserializer"],[3,"I32Deserializer"],[3,"I64Deserializer"],[3,"IsizeDeserializer"],[3,"U8Deserializer"],[3,"U16Deserializer"],[3,"U64Deserializer"],[3,"UsizeDeserializer"],[3,"F32Deserializer"],[3,"F64Deserializer"],[3,"CharDeserializer"],[3,"I128Deserializer"],[3,"U128Deserializer"],[3,"SeqDeserializer"],[3,"SeqAccessDeserializer"],[3,"MapAccessDeserializer"],[3,"EnumAccessDeserializer"],[8,"Debug"],[4,"Cow"],[15,"isize"],[3,"Demand"],[8,"Error"],[3,"Impossible"],[8,"IntoDeserializer"],[8,"VariantAccess"],[8,"SerializeSeq"],[8,"SerializeTuple"],[8,"SerializeTupleStruct"],[8,"SerializeTupleVariant"],[8,"SerializeMap"],[8,"SerializeStruct"],[8,"SerializeStructVariant"]]},\ "serde_derive":{"doc":"This crate provides Serde’s two derive macros.","t":"YY","n":["Deserialize","Serialize"],"q":[[0,"serde_derive"]],"d":["",""],"i":[0,0],"f":[0,0],"c":[],"p":[]},\ -"serde_json":{"doc":"Serde JSON","t":"NNDDDNDNNGDDNELLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFLFLLLLLLLLLLLLLLLLOALLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLFFFFFFLLLLLLLLLLLLLLLLLLADDIDDDLLLLLLLLLLLFLFLFLLLLLLLLLLLLLLLLLLLENNDNGNLLLLLLLLLLLLLLLLLLLLLEDDDDDNDNDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNEDNINDNNDNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNICNDNNDDNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLFLLLLLLL","n":["Array","Bool","Deserializer","Error","Map","Null","Number","Number","Object","Result","Serializer","StreamDeserializer","String","Value","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_from","clone_into","clone_into","collect_str","custom","custom","de","default","default","deserialize","deserialize","deserialize_any","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","error","extend","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","from_iter","from_reader","from_slice","from_str","from_str","from_value","index","index","index_mut","index_mut","into","into","into","into","into","into","into_deserializer","into_iter","into_iter","into_iter","into_iter","invalid_type","json","map","next","provide","ser","serialize","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","source","to_owned","to_owned","to_string","to_string","to_string","to_string_pretty","to_value","to_vec","to_vec_pretty","to_writer","to_writer_pretty","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","value","Deserializer","IoRead","Read","SliceRead","StrRead","StreamDeserializer","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","byte_offset","end","from","from","from","from_reader","from_reader","from_slice","from_slice","from_str","from_str","into","into","into","into_iter","new","new","new","new","new","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","Category","Data","Eof","Error","Io","Result","Syntax","borrow","borrow_mut","classify","clone","clone_into","column","eq","equivalent","fmt","from","into","io_error_kind","is_data","is_eof","is_io","is_syntax","line","to_owned","try_from","try_into","type_id","Entry","IntoIter","Iter","IterMut","Keys","Map","Occupied","OccupiedEntry","Vacant","VacantEntry","Values","ValuesMut","and_modify","append","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear","contains_key","entry","from","from","from","from","from","from","from","from","from","get","get","get_key_value","get_mut","get_mut","insert","insert","insert","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_mut","is_empty","iter","iter_mut","key","key","key","keys","len","len","len","len","len","len","len","new","next","next","next","next","next","next","next_back","next_back","next_back","next_back","next_back","next_back","or_insert","or_insert_with","remove","remove","remove_entry","retain","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","values","values_mut","with_capacity","AsciiControl","Backspace","CarriageReturn","CharEscape","CompactFormatter","FormFeed","Formatter","LineFeed","PrettyFormatter","Quote","ReverseSolidus","Serializer","Solidus","Tab","begin_array","begin_array","begin_array_value","begin_array_value","begin_object","begin_object","begin_object_key","begin_object_key","begin_object_value","begin_object_value","begin_string","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","default","end_array","end_array","end_array_value","end_array_value","end_object","end_object","end_object_key","end_object_value","end_object_value","end_string","fmt","fmt","from","from","from","into","into","into","into_inner","new","new","pretty","to_owned","to_owned","to_string","to_string_pretty","to_vec","to_vec_pretty","to_writer","to_writer_pretty","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","with_formatter","with_indent","write_bool","write_byte_array","write_char_escape","write_f32","write_f64","write_i128","write_i16","write_i32","write_i64","write_i8","write_null","write_number_str","write_raw_fragment","write_string_fragment","write_u128","write_u16","write_u32","write_u64","write_u8","Array","Bool","Index","Map","Null","Number","Number","Object","RawValue","Serializer","String","Value","as_array","as_array_mut","as_bool","as_f64","as_f64","as_i64","as_i64","as_null","as_object","as_object_mut","as_str","as_u64","as_u64","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","collect_str","deserialize","deserialize","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","eq","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from_f64","from_str","from_string","from_value","get","get","get_mut","hash","into","into","is_array","is_boolean","is_f64","is_f64","is_i64","is_i64","is_null","is_number","is_object","is_string","is_u64","is_u64","pointer","pointer_mut","serialize","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","take","to_owned","to_owned","to_raw_value","to_string","to_string","to_value","try_from","try_from","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"serde_json"],[305,"serde_json::de"],[346,"serde_json::error"],[374,"serde_json::map"],[511,"serde_json::ser"],[607,"serde_json::value"]],"d":["Represents a JSON array.","Represents a JSON boolean.","A structure that deserializes JSON into Rust values.","This type represents all possible errors that can occur …","Represents a JSON key/value type.","Represents a JSON null value.","Represents a JSON number, whether integer or floating …","Represents a JSON number, whether integer or floating …","Represents a JSON object.","Alias for a Result with the error type serde_json::Error.","A structure for serializing Rust values into JSON.","Iterator that deserializes a stream into multiple JSON …","Represents a JSON string.","Represents any valid JSON value.","","","","","","","","","","","","","","","","","","","","","Deserialize JSON data to a Rust data structure.","","","","","","","","","","","","","","Parses a JSON string as bytes. Note that this function …","","","","","","Parses an enum as an object like {"$KEY":$VALUE}, where …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Parses a newtype struct as the underlying value.","","","Parses a null as a None, and any other values as a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","When serializing or deserializing JSON goes wrong.","","","","","","Display a JSON value as a string.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Convert 32-bit floating point number to Value","","Convert String to Value","","Convert copy-on-write string to Value","","Convert string slice to Value","Returns the argument unchanged.","","","","Convert Number to Value","","","Convert a Vec to Value","","Convert 64-bit floating point number to Value","","Convert map (with string keys) to Value","Convert () to Value","Convert boolean to Value","Convert a slice to Value","","Convert an iteratable type to a Value","Convert an iteratable type to a Value","Deserialize an instance of type T from an I/O stream of …","Deserialize an instance of type T from bytes of JSON text.","Deserialize an instance of type T from a string of JSON …","","Interpret a serde_json::Value as an instance of type T.","","Index into a serde_json::Value using the syntax value[0] or","","Write into a serde_json::Value using the syntax …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","Construct a serde_json::Value from a JSON literal.","A map of String to serde_json::Value.","","","Serialize a Rust data structure into JSON data.","","","","","","","","","","","","","","Serialize newtypes without an object wrapper.","","","","","","","","","","","","","","","","","","","","","","Serialize the given data structure as a String of JSON.","","","Serialize the given data structure as a pretty-printed …","Convert a T into serde_json::Value which is an enum that …","Serialize the given data structure as a JSON byte vector.","Serialize the given data structure as a pretty-printed …","Serialize the given data structure as JSON into the I/O …","Serialize the given data structure as pretty-printed JSON …","","","","","","","","","","","","","","","","","","","The Value enum, a loosely typed way of representing any …","A structure that deserializes JSON into Rust values.","JSON input source that reads from a std::io input stream.","Trait used by the deserializer for iterating over input. …","JSON input source that reads from a slice of bytes.","JSON input source that reads from a UTF-8 string.","Iterator that deserializes a stream into multiple JSON …","","","","","","","Returns the number of bytes so far deserialized into a …","The Deserializer::end method should be called after a …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Deserialize an instance of type T from an I/O stream of …","Creates a JSON deserializer from an io::Read.","Deserialize an instance of type T from bytes of JSON text.","Creates a JSON deserializer from a &[u8].","Deserialize an instance of type T from a string of JSON …","Creates a JSON deserializer from a &str.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Turn a JSON deserializer into an iterator over values of …","Create a JSON deserializer from one of the possible …","Create a JSON stream deserializer from one of the possible …","Create a JSON input source to read from a std::io input …","Create a JSON input source to read from a slice of bytes.","Create a JSON input source to read from a UTF-8 string.","","","","","","","","","","Categorizes the cause of a serde_json::Error.","The error was caused by input data that was semantically …","The error was caused by prematurely reaching the end of …","This type represents all possible errors that can occur …","The error was caused by a failure to read or write bytes …","Alias for a Result with the error type serde_json::Error.","The error was caused by input that was not syntactically …","","","Categorizes the cause of this error.","","","One-based column number at which the error was detected.","","","","Returns the argument unchanged.","Calls U::from(self).","The kind reported by the underlying standard library I/O …","Returns true if this error was caused by input data that …","Returns true if this error was caused by prematurely …","Returns true if this error was caused by a failure to read …","Returns true if this error was caused by input that was not","One-based line number at which the error was detected.","","","","","A view into a single entry in a map, which may either be …","An owning iterator over a serde_json::Map’s entries.","An iterator over a serde_json::Map’s entries.","A mutable iterator over a serde_json::Map’s entries.","An iterator over a serde_json::Map’s keys.","Represents a JSON key/value type.","An occupied Entry.","An occupied Entry. It is part of the Entry enum.","A vacant Entry.","A vacant Entry. It is part of the Entry enum.","An iterator over a serde_json::Map’s values.","A mutable iterator over a serde_json::Map’s values.","Provides in-place mutable access to an occupied entry …","Moves all elements from other into self, leaving other …","","","","","","","","","","","","","","","","","","","Clears the map, removing all values.","Returns true if the map contains a value for the specified …","Gets the given key’s corresponding entry in the map for …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns a reference to the value corresponding to the key.","Gets a reference to the value in the entry.","Returns the key-value pair matching the given key.","Returns a mutable reference to the value corresponding to …","Gets a mutable reference to the value in the entry.","Inserts a key-value pair into the map.","Sets the value of the entry with the VacantEntry’s key, …","Sets the value of the entry with the OccupiedEntry’s …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","Converts the entry into a mutable reference to its value.","Returns true if the map contains no elements.","Gets an iterator over the entries of the map.","Gets a mutable iterator over the entries of the map.","Returns a reference to this entry’s key.","Gets a reference to the key that would be used when …","Gets a reference to the key in the entry.","Gets an iterator over the keys of the map.","Returns the number of elements in the map.","","","","","","","Makes a new empty Map.","","","","","","","","","","","","","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the result of …","Removes a key from the map, returning the value at the key …","Takes the value of the entry out of the map, and returns …","Removes a key from the map, returning the stored key and …","Retains only the elements specified by the predicate.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Gets an iterator over the values of the map.","Gets an iterator over mutable values of the map.","Makes a new empty Map with the given initial capacity.","An escaped ASCII plane control character (usually escaped …","An escaped backspace character (usually escaped as \\\\b)","An escaped carriage return character (usually escaped as \\\\r…","Represents a character escape code in a type-safe manner.","This structure compacts a JSON value with no extra …","An escaped form feed character (usually escaped as \\\\f)","This trait abstracts away serializing the JSON control …","An escaped line feed character (usually escaped as \\\\n)","This structure pretty prints a JSON value to make it human …","An escaped quote "","An escaped reverse solidus \\\\","A structure for serializing Rust values into JSON.","An escaped solidus /","An escaped tab character (usually escaped as \\\\t)","Called before every array. Writes a [ to the specified …","","Called before every array value. Writes a , if needed to …","","Called before every object. Writes a { to the specified …","","Called before every object key.","","Called before every object value. A : should be written to","","Called before each series of write_string_fragment and …","","","","","","","","","","","","Called after every array. Writes a ] to the specified …","","Called after every array value.","","Called after every object. Writes a } to the specified …","","Called after every object key. A : should be written to …","Called after every object value.","","Called after each series of write_string_fragment and …","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Unwrap the Writer from the Serializer.","Creates a new JSON serializer.","Construct a pretty printer formatter that defaults to …","Creates a new JSON pretty print serializer.","","","Serialize the given data structure as a String of JSON.","Serialize the given data structure as a pretty-printed …","Serialize the given data structure as a JSON byte vector.","Serialize the given data structure as a pretty-printed …","Serialize the given data structure as JSON into the I/O …","Serialize the given data structure as pretty-printed JSON …","","","","","","","","","","Creates a new JSON visitor whose output will be written to …","Construct a pretty printer formatter that uses the indent …","Writes a true or false value to the specified writer.","Writes the representation of a byte array. Formatters can …","Writes a character escape code to the specified writer.","Writes a floating point value like -31.26e+12 to the …","Writes a floating point value like -31.26e+12 to the …","Writes an integer value like -123 to the specified writer.","Writes an integer value like -123 to the specified writer.","Writes an integer value like -123 to the specified writer.","Writes an integer value like -123 to the specified writer.","Writes an integer value like -123 to the specified writer.","Writes a null value to the specified writer.","Writes a number that has already been rendered to a string.","Writes a raw JSON fragment that doesn’t need any …","Writes a string fragment that doesn’t need any escaping …","Writes an integer value like 123 to the specified writer.","Writes an integer value like 123 to the specified writer.","Writes an integer value like 123 to the specified writer.","Writes an integer value like 123 to the specified writer.","Writes an integer value like 123 to the specified writer.","Represents a JSON array.","Represents a JSON boolean.","A type that can be used to index into a serde_json::Value.","","Represents a JSON null value.","Represents a JSON number, whether integer or floating …","Represents a JSON number, whether integer or floating …","Represents a JSON object.","Reference to a range of bytes encompassing a single valid …","Serializer whose output is a Value.","Represents a JSON string.","Represents any valid JSON value.","If the Value is an Array, returns the associated vector. …","If the Value is an Array, returns the associated mutable …","If the Value is a Boolean, returns the associated bool. …","If the Value is a number, represent it as f64 if possible. …","Represents the number as f64 if possible. Returns None …","If the Value is an integer, represent it as i64 if …","If the Number is an integer, represent it as i64 if …","If the Value is a Null, returns (). Returns None otherwise.","If the Value is an Object, returns the associated Map. …","If the Value is an Object, returns the associated mutable …","If the Value is a String, returns the associated str. …","If the Value is an integer, represent it as u64 if …","If the Number is an integer, represent it as u64 if …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","Returns the argument unchanged.","","","Converts a finite f64 to a Number. Infinite or NaN values …","","Convert an owned String of JSON data to an owned RawValue.","Interpret a serde_json::Value as an instance of type T.","Access the JSON text underlying a raw value.","Index into a JSON array or map. A string index can be used …","Mutably index into a JSON array or map. A string index can …","","Calls U::from(self).","Calls U::from(self).","Returns true if the Value is an Array. Returns false …","Returns true if the Value is a Boolean. Returns false …","Returns true if the Value is a number that can be …","Returns true if the Number can be represented by f64.","Returns true if the Value is an integer between i64::MIN …","Returns true if the Number is an integer between i64::MIN …","Returns true if the Value is a Null. Returns false …","Returns true if the Value is a Number. Returns false …","Returns true if the Value is an Object. Returns false …","Returns true if the Value is a String. Returns false …","Returns true if the Value is an integer between zero and …","Returns true if the Number is an integer between zero and …","Looks up a value by a JSON Pointer.","Looks up a value by a JSON Pointer and returns a mutable …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Takes the value out of the Value, leaving a Null in its …","","","Convert a T into a boxed RawValue.","","","Convert a T into serde_json::Value which is an enum that …","","","","","","",""],"i":[2,2,0,0,0,2,0,2,2,0,0,0,2,0,14,50,10,3,6,2,14,50,10,3,6,2,3,2,3,3,2,6,10,10,0,3,2,3,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,0,3,10,10,3,2,2,14,50,10,3,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,0,0,0,2,0,3,2,3,2,14,50,10,3,6,2,2,50,3,3,3,10,0,0,50,10,0,3,2,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,10,3,2,0,10,2,0,0,0,0,0,0,14,50,10,3,6,2,14,50,10,3,6,2,14,50,10,3,6,2,0,0,0,0,0,0,0,59,60,61,59,60,61,50,14,59,60,61,0,14,0,14,0,14,59,60,61,14,14,50,59,60,61,59,60,61,59,60,61,59,60,61,0,62,62,0,62,0,62,62,62,10,62,62,10,62,62,62,62,62,10,10,10,10,10,10,62,62,62,62,0,0,0,0,0,0,64,0,64,0,0,0,64,3,64,67,66,68,69,71,70,72,73,64,67,66,68,69,71,70,72,73,3,3,3,64,67,66,68,69,71,70,72,73,3,66,3,3,66,3,67,66,64,67,66,68,69,71,70,72,73,68,69,71,70,72,73,66,3,3,3,64,67,66,3,3,68,69,71,70,72,73,3,68,69,71,70,72,73,68,69,71,70,72,73,64,64,3,66,3,3,68,69,71,70,72,73,64,67,66,68,69,71,70,72,73,64,67,66,68,69,71,70,72,73,64,67,66,68,69,71,70,72,73,3,3,3,78,78,78,0,0,78,0,78,0,78,78,0,78,78,5,76,5,76,5,76,5,76,5,76,5,78,77,76,78,77,76,77,76,77,76,76,5,76,5,76,5,76,5,5,76,5,77,76,78,77,76,78,77,76,6,6,76,6,77,76,0,0,0,0,0,0,78,77,76,78,77,76,78,77,76,6,76,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,2,0,0,2,0,2,2,0,0,2,0,2,2,2,2,38,2,38,2,2,2,2,2,38,79,80,38,79,80,38,38,38,79,80,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,80,80,38,38,79,38,38,38,38,38,38,38,38,38,38,38,38,38,80,0,80,2,2,38,79,38,2,2,2,38,2,38,2,2,2,2,2,38,2,2,80,38,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,2,80,38,0,80,38,0,79,38,79,38,79,80,38],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[3,[1,2]]],[[3,[1,2]]]],[2,2],[[[3,[1,2]],[3,[1,2]]]],[[]],[[]],[[[6,[4,5]],[0,[7,8]]],9],[8,10],[8,10],0,[[],[[3,[1,2]]]],[[],2],[11,[[12,[[3,[1,2]]]]]],[11,[[12,[2]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],16,[17,[16]],15],9],[[2,16,[17,[16]],15],[[12,[10]]]],[[2,16,[17,[16]],15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],16,15],9],[[2,16,15],[[12,[10]]]],[[2,16,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],16,[17,[16]],15],9],[[2,16,[17,[16]],15],[[12,[10]]]],[[2,16,[17,[16]],15],[[12,[10]]]],[[[14,[13]],18,15],9],[[2,18,15],[[12,[10]]]],[[2,18,15],[[12,[10]]]],[[[14,[13]],16,18,15],9],[[2,16,18,15],[[12,[10]]]],[[2,16,18,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],16,15],9],[[2,16,15],[[12,[10]]]],[[2,16,15],[[12,[10]]]],[[[3,[1,2]],[3,[1,2]]],19],[[2,20],19],[[2,1],19],[[2,21],19],[[2,22],19],[[2,20],19],[[2,23],19],[[2,21],19],[[2,19],19],[[2,24],19],[[2,25],19],[[2,26],19],[[2,27],19],[[2,24],19],[[2,26],19],[[2,21],19],[[2,28],19],[[2,23],19],[[2,28],19],[[2,2],19],[[2,22],19],[[2,26],19],[[2,18],19],[[2,25],19],[[2,27],19],[[2,28],19],[[2,29],19],[[2,27],19],[[2,19],19],[[2,30],19],[[2,29],19],[[2,23],19],[[2,30],19],[[2,20],19],[[2,25],19],[[2,24],19],[[2,22],19],[[2,16],19],[[2,16],19],[[2,29],19],[[2,30],19],[[2,18],19],[[2,18],19],[[2,19],19],[[],19],[[],19],0,[[[3,[1,2]],31]],[[10,32],33],[[10,32],33],[[[3,[1,2]],32],[[12,[34]]]],[[2,32],33],[[2,32],33],[[]],[[]],[[]],[[]],[[]],[24,2],[30,2],[[[36,[[35,[2]]]]],2],[1,2],[28,2],[[[37,[16]]],2],[20,2],[16,2],[[]],[22,2],[23,2],[29,2],[38,2],[26,2],[27,2],[[[39,[[35,[2]]]]],2],[18,2],[25,2],[21,2],[[[3,[1,2]]],2],[[],2],[19,2],[[[17,[[0,[40,[35,[2]]]]]]],2],[31,[[3,[1,2]]]],[31,2],[31,2],[41,[[9,[42]]]],[[[17,[23]]],[[9,[43]]]],[16,[[9,[43]]]],[16,[[12,[2,10]]]],[2,[[12,[42,10]]]],[[[3,[1,2]],[0,[7,44,45,46]]],2],[[2,47],2],[[[3,[1,2]],[0,[7,44,45,46]]],2],[[2,47],2],[[]],[[]],[[]],[[]],[[]],[[]],[2],[[]],[[[3,[1,2]]]],[[[3,[1,2]]]],[[[3,[1,2]]]],[[48,49],10],0,0,[[[50,[13,43]]],[[36,[[9,[43]]]]]],[51],0,[[[3,[1,2]],52],12],[[2,52],12],[[[6,[4,5]],19],9],[[[6,[4,5]],[17,[23]]],9],[[[6,[4,5]],53],9],[[[6,[4,5]],30],9],[[[6,[4,5]],25],9],[[[6,[4,5]],54],9],[[[6,[4,5]],29],9],[[[6,[4,5]],27],9],[[[6,[4,5]],26],9],[[[6,[4,5]],24],9],[[[6,[4,5]],[36,[18]]],9],[[[6,[4,5]],16,[0,[7,55]]],9],[[[6,[4,5]],16,21,16,[0,[7,55]]],9],[[[6,[4,5]]],9],[[[6,[4,5]],[36,[18]]],9],[[[6,[4,5]],[0,[7,55]]],9],[[[6,[4,5]],16],9],[[[6,[4,5]],16,18],9],[[[6,[4,5]],16,21,16,18],9],[[[6,[4,5]],18],9],[[[6,[4,5]],16,18],9],[[[6,[4,5]],16,21,16,18],9],[[[6,[4,5]],56],9],[[[6,[4,5]],20],9],[[[6,[4,5]],21],9],[[[6,[4,5]],22],9],[[[6,[4,5]],23],9],[[[6,[4,5]]],9],[[[6,[4,5]],16],9],[[[6,[4,5]],16,21,16],9],[10,[[36,[57]]]],[[]],[[]],[[[0,[7,55]]],[[9,[1]]]],[[],1],[[],1],[[[0,[7,55]]],[[9,[1]]]],[55,[[12,[2,10]]]],[[[0,[7,55]]],[[9,[[39,[23]]]]]],[[[0,[7,55]]],[[9,[[39,[23]]]]]],[[4,[0,[7,55]]],9],[[4,[0,[7,55]]],9],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[[50,[13,43]]],18],[[[14,[13]]],9],[[]],[[]],[[]],[41,[[9,[42]]]],[41,[[14,[[59,[41]]]]]],[[[17,[23]]],[[9,[43]]]],[[[17,[23]]],[[14,[60]]]],[16,[[9,[43]]]],[16,[[14,[61]]]],[[]],[[]],[[]],[[[14,[13]]],[[50,[13,43]]]],[13,[[14,[13]]]],[13,[[50,[13,43]]]],[41,[[59,[41]]]],[[[17,[23]]],60],[16,61],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58],0,0,0,0,0,0,0,[[]],[[]],[10,62],[62,62],[[]],[10,18],[[62,62],19],[[],19],[[62,32],33],[[]],[[]],[10,[[36,[63]]]],[10,19],[10,19],[10,19],[10,19],[10,18],[[]],[[],12],[[],12],[[],58],0,0,0,0,0,0,0,0,0,0,0,0,[[64,65],64],[[[3,[1,2]],[3,[1,2]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[3,[1,2]]]],[[[3,[1,2]],[0,[7,44,45,46]]],19],[[[3,[1,2]],[35,[1]]],64],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[3,[1,2]],[0,[7,44,45,46]]],[[36,[2]]]],[66,2],[[[3,[1,2]],[0,[7,44,45,46]]],36],[[[3,[1,2]],[0,[7,44,45,46]]],[[36,[2]]]],[66,2],[[[3,[1,2]],1,2],[[36,[2]]]],[[67,2],2],[[66,2],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[66,2],[[[3,[1,2]]],19],[[[3,[1,2]]],68],[[[3,[1,2]]],69],[64,1],[67,1],[66,1],[[[3,[1,2]]],70],[[[3,[1,2]]],18],[68,18],[69,18],[71,18],[70,18],[72,18],[73,18],[[],[[3,[1,2]]]],[68,36],[69,36],[71,36],[70,36],[72,36],[73,36],[68,36],[69,36],[71,36],[70,36],[72,36],[73,36],[[64,2],2],[[64,65],2],[[[3,[1,2]],[0,[7,44,45,46]]],[[36,[2]]]],[66,2],[[[3,[1,2]],[0,[7,44,45,46]]],36],[[[3,[1,2]],74]],[68],[69],[71],[70],[72],[73],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],[[[3,[1,2]]],72],[[[3,[1,2]]],73],[18,[[3,[1,2]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]],19],75],[[76,[0,[7,4]],19],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]],19],75],[[76,[0,[7,4]],19],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[]],[[]],[[]],[[]],[[]],[[]],[77,77],[76,76],[[]],[[]],[[],76],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[77,32],33],[[76,32],33],[[]],[[]],[[]],[[]],[[]],[[]],[[[6,[4,5]]],4],[4,[[6,[4]]]],[[],76],[4,[[6,[4,76]]]],[[]],[[]],[[[0,[7,55]]],[[9,[1]]]],[[[0,[7,55]]],[[9,[1]]]],[[[0,[7,55]]],[[9,[[39,[23]]]]]],[[[0,[7,55]]],[[9,[[39,[23]]]]]],[[4,[0,[7,55]]],9],[[4,[0,[7,55]]],9],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58],[[4,5],[[6,[4,5]]]],[[[17,[23]]],76],[[[0,[7,4]],19],75],[[[0,[7,4]],[17,[23]]],75],[[[0,[7,4]],78],75],[[[0,[7,4]],30],75],[[[0,[7,4]],25],75],[[[0,[7,4]],54],75],[[[0,[7,4]],29],75],[[[0,[7,4]],27],75],[[[0,[7,4]],26],75],[[[0,[7,4]],24],75],[[[0,[7,4]]],75],[[[0,[7,4]],16],75],[[[0,[7,4]],16],75],[[[0,[7,4]],16],75],[[[0,[7,4]],56],75],[[[0,[7,4]],20],75],[[[0,[7,4]],21],75],[[[0,[7,4]],22],75],[[[0,[7,4]],23],75],0,0,0,0,0,0,0,0,0,0,0,0,[2,[[36,[[39,[2]]]]]],[2,[[36,[[39,[2]]]]]],[2,[[36,[19]]]],[2,[[36,[25]]]],[38,[[36,[25]]]],[2,[[36,[26]]]],[38,[[36,[26]]]],[2,36],[2,[[36,[[3,[1,2]]]]]],[2,[[36,[[3,[1,2]]]]]],[2,[[36,[16]]]],[2,[[36,[22]]]],[38,[[36,[22]]]],[[]],[[]],[[]],[[]],[[]],[[]],[38,38],[[]],[[79,[0,[7,8]]],[[9,[2]]]],[11,[[12,[80]]]],[11,[[12,[38]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,16,[17,[16]],15],12],[[38,16,[17,[16]],15],12],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,16,15],12],[[38,16,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,15],12],[[38,16,[17,[16]],15],12],[[38,16,[17,[16]],15],12],[[38,18,15],12],[[38,18,15],12],[[38,16,18,15],12],[[38,16,18,15],12],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],[[12,[10]]]],[[38,15],12],[[38,15],12],[[38,16,15],12],[[38,16,15],12],[[38,38],19],[[],19],[[80,32],33],[[80,32],33],[[38,32],33],[[38,32],33],[[]],[21,38],[29,38],[20,38],[27,38],[24,38],[26,38],[22,38],[18,38],[[]],[23,38],[28,38],[25,[[36,[38]]]],[16,[[12,[38]]]],[1,[[12,[[81,[80]],10]]]],[2,[[12,[42,10]]]],[80,16],[[2,47],[[36,[2]]]],[[2,47],[[36,[2]]]],[[38,82]],[[]],[[]],[2,19],[2,19],[2,19],[38,19],[2,19],[38,19],[2,19],[2,19],[2,19],[2,19],[2,19],[38,19],[[2,16],[[36,[2]]]],[[2,16],[[36,[2]]]],[[80,52],12],[[38,52],12],[[79,19],[[9,[2]]]],[[79,[17,[23]]],[[9,[2]]]],[[79,53],[[9,[2]]]],[[79,30],[[9,[2]]]],[[79,25],[[9,[2]]]],[[79,54],[[9,[2]]]],[[79,29],[[9,[2]]]],[[79,27],[[9,[2]]]],[[79,26],[[9,[2]]]],[[79,24],[[9,[2]]]],[[79,[36,[18]]],9],[[79,16,[0,[7,55]]],[[9,[2]]]],[[79,16,21,16,[0,[7,55]]],[[9,[2]]]],[79,[[9,[2]]]],[[79,[36,[18]]],9],[[79,[0,[7,55]]],[[9,[2]]]],[[79,16],[[9,[2]]]],[[79,16,18],9],[[79,16,21,16,18],9],[[79,18],9],[[79,16,18],9],[[79,16,21,16,18],9],[[79,56],[[9,[2]]]],[[79,20],[[9,[2]]]],[[79,21],[[9,[2]]]],[[79,22],[[9,[2]]]],[[79,23],[[9,[2]]]],[79,[[9,[2]]]],[[79,16],[[9,[2]]]],[[79,16,21,16],[[9,[2]]]],[2,2],[80],[[]],[[[0,[7,55]]],[[12,[[81,[80]],10]]]],[[],1],[[],1],[55,[[12,[2,10]]]],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58]],"c":[],"p":[[3,"String"],[4,"Value"],[3,"Map"],[8,"Write"],[8,"Formatter"],[3,"Serializer"],[8,"Sized"],[8,"Display"],[6,"Result"],[3,"Error"],[8,"Deserializer"],[4,"Result"],[8,"Read"],[3,"Deserializer"],[8,"Visitor"],[15,"str"],[15,"slice"],[15,"usize"],[15,"bool"],[15,"u16"],[15,"u32"],[15,"u64"],[15,"u8"],[15,"i8"],[15,"f64"],[15,"i64"],[15,"i32"],[15,"isize"],[15,"i16"],[15,"f32"],[8,"IntoIterator"],[3,"Formatter"],[6,"Result"],[3,"Error"],[8,"Into"],[4,"Option"],[4,"Cow"],[3,"Number"],[3,"Vec"],[8,"Clone"],[8,"Read"],[8,"DeserializeOwned"],[8,"Deserialize"],[8,"Ord"],[8,"Eq"],[8,"Hash"],[8,"Index"],[4,"Unexpected"],[8,"Expected"],[3,"StreamDeserializer"],[3,"Demand"],[8,"Serializer"],[15,"char"],[15,"i128"],[8,"Serialize"],[15,"u128"],[8,"Error"],[3,"TypeId"],[3,"IoRead"],[3,"SliceRead"],[3,"StrRead"],[4,"Category"],[4,"ErrorKind"],[4,"Entry"],[8,"FnOnce"],[3,"OccupiedEntry"],[3,"VacantEntry"],[3,"Iter"],[3,"IterMut"],[3,"Keys"],[3,"IntoIter"],[3,"Values"],[3,"ValuesMut"],[8,"FnMut"],[6,"Result"],[3,"PrettyFormatter"],[3,"CompactFormatter"],[4,"CharEscape"],[3,"Serializer"],[3,"RawValue"],[3,"Box"],[8,"Hasher"]]},\ +"serde_json":{"doc":"Serde JSON","t":"NNDDDNDNNGDDNELLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFLFLLLLLLLLLLLLLLLLLOALLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLFFFFFFLLLLLLLLLLLLLLLLLLADDIDDDLLLLLLLLLLLFLFLFLLLLLLLLLLLLLLLLLLLENNDNGNLLLLLLLLLLLLLLLLLLLLLEDDDDDNDNDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNNEDNINDNNDNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFFFFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNNICNDNNDDNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLFLLLLLLL","n":["Array","Bool","Deserializer","Error","Map","Null","Number","Number","Object","Result","Serializer","StreamDeserializer","String","Value","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_from","clone_into","clone_into","collect_str","custom","custom","de","default","default","deserialize","deserialize","deserialize_any","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","deserialize_unit_struct","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","error","extend","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","from_iter","from_reader","from_slice","from_str","from_str","from_value","index","index","index_mut","index_mut","into","into","into","into","into","into","into_deserializer","into_deserializer","into_iter","into_iter","into_iter","into_iter","invalid_type","json","map","next","provide","ser","serialize","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","source","to_owned","to_owned","to_string","to_string","to_string","to_string_pretty","to_value","to_vec","to_vec_pretty","to_writer","to_writer_pretty","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","value","Deserializer","IoRead","Read","SliceRead","StrRead","StreamDeserializer","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","byte_offset","end","from","from","from","from_reader","from_reader","from_slice","from_slice","from_str","from_str","into","into","into","into_iter","new","new","new","new","new","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","Category","Data","Eof","Error","Io","Result","Syntax","borrow","borrow_mut","classify","clone","clone_into","column","eq","equivalent","fmt","from","into","io_error_kind","is_data","is_eof","is_io","is_syntax","line","to_owned","try_from","try_into","type_id","Entry","IntoIter","Iter","IterMut","Keys","Map","Occupied","OccupiedEntry","Vacant","VacantEntry","Values","ValuesMut","and_modify","append","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clear","contains_key","entry","from","from","from","from","from","from","from","from","from","get","get","get_key_value","get_mut","get_mut","insert","insert","insert","into","into","into","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_mut","is_empty","iter","iter_mut","key","key","key","keys","len","len","len","len","len","len","len","new","next","next","next","next","next","next","next_back","next_back","next_back","next_back","next_back","next_back","or_insert","or_insert_with","remove","remove","remove_entry","retain","size_hint","size_hint","size_hint","size_hint","size_hint","size_hint","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","values","values_mut","with_capacity","AsciiControl","Backspace","CarriageReturn","CharEscape","CompactFormatter","FormFeed","Formatter","LineFeed","PrettyFormatter","Quote","ReverseSolidus","Serializer","Solidus","Tab","begin_array","begin_array","begin_array_value","begin_array_value","begin_object","begin_object","begin_object_key","begin_object_key","begin_object_value","begin_object_value","begin_string","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone_into","clone_into","default","end_array","end_array","end_array_value","end_array_value","end_object","end_object","end_object_key","end_object_value","end_object_value","end_string","fmt","fmt","from","from","from","into","into","into","into_inner","new","new","pretty","to_owned","to_owned","to_string","to_string_pretty","to_vec","to_vec_pretty","to_writer","to_writer_pretty","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","with_formatter","with_indent","write_bool","write_byte_array","write_char_escape","write_f32","write_f64","write_i128","write_i16","write_i32","write_i64","write_i8","write_null","write_number_str","write_raw_fragment","write_string_fragment","write_u128","write_u16","write_u32","write_u64","write_u8","Array","Bool","Index","Map","Null","Number","Number","Object","RawValue","Serializer","String","Value","as_array","as_array_mut","as_bool","as_f64","as_f64","as_i64","as_i64","as_null","as_object","as_object_mut","as_str","as_u64","as_u64","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","collect_str","deserialize","deserialize","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","eq","equivalent","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from_f64","from_str","from_string","from_value","get","get","get_mut","hash","into","into","is_array","is_boolean","is_f64","is_f64","is_i64","is_i64","is_null","is_number","is_object","is_string","is_u64","is_u64","pointer","pointer_mut","serialize","serialize","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i128","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u128","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","take","to_owned","to_owned","to_raw_value","to_string","to_string","to_value","try_from","try_from","try_into","try_into","type_id","type_id","type_id"],"q":[[0,"serde_json"],[306,"serde_json::de"],[347,"serde_json::error"],[375,"serde_json::map"],[512,"serde_json::ser"],[608,"serde_json::value"]],"d":["Represents a JSON array.","Represents a JSON boolean.","A structure that deserializes JSON into Rust values.","This type represents all possible errors that can occur …","Represents a JSON key/value type.","Represents a JSON null value.","Represents a JSON number, whether integer or floating …","Represents a JSON number, whether integer or floating …","Represents a JSON object.","Alias for a Result with the error type serde_json::Error.","A structure for serializing Rust values into JSON.","Iterator that deserializes a stream into multiple JSON …","Represents a JSON string.","Represents any valid JSON value.","","","","","","","","","","","","","","","","","","","","","Deserialize JSON data to a Rust data structure.","","","","","","","","","","","","","","Parses a JSON string as bytes. Note that this function …","","","","","","Parses an enum as an object like {"$KEY":$VALUE}, where …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Parses a newtype struct as the underlying value.","","","Parses a null as a None, and any other values as a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","When serializing or deserializing JSON goes wrong.","","","","","","Display a JSON value as a string.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","","Convert String to Value","Convert a slice to Value","","Convert () to Value","Convert copy-on-write string to Value","","Convert a Vec to Value","","Convert map (with string keys) to Value","","Convert 32-bit floating point number to Value","Convert string slice to Value","","Convert 64-bit floating point number to Value","Convert boolean to Value","","Returns the argument unchanged.","Convert Number to Value","","","Convert an iteratable type to a Value","Convert an iteratable type to a Value","Deserialize an instance of type T from an I/O stream of …","Deserialize an instance of type T from bytes of JSON text.","Deserialize an instance of type T from a string of JSON …","","Interpret a serde_json::Value as an instance of type T.","","Index into a serde_json::Value using the syntax value[0] or","","Write into a serde_json::Value using the syntax …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Construct a serde_json::Value from a JSON literal.","A map of String to serde_json::Value.","","","Serialize a Rust data structure into JSON data.","","","","","","","","","","","","","","Serialize newtypes without an object wrapper.","","","","","","","","","","","","","","","","","","","","","","Serialize the given data structure as a String of JSON.","","","Serialize the given data structure as a pretty-printed …","Convert a T into serde_json::Value which is an enum that …","Serialize the given data structure as a JSON byte vector.","Serialize the given data structure as a pretty-printed …","Serialize the given data structure as JSON into the I/O …","Serialize the given data structure as pretty-printed JSON …","","","","","","","","","","","","","","","","","","","The Value enum, a loosely typed way of representing any …","A structure that deserializes JSON into Rust values.","JSON input source that reads from a std::io input stream.","Trait used by the deserializer for iterating over input. …","JSON input source that reads from a slice of bytes.","JSON input source that reads from a UTF-8 string.","Iterator that deserializes a stream into multiple JSON …","","","","","","","Returns the number of bytes so far deserialized into a …","The Deserializer::end method should be called after a …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Deserialize an instance of type T from an I/O stream of …","Creates a JSON deserializer from an io::Read.","Deserialize an instance of type T from bytes of JSON text.","Creates a JSON deserializer from a &[u8].","Deserialize an instance of type T from a string of JSON …","Creates a JSON deserializer from a &str.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Turn a JSON deserializer into an iterator over values of …","Create a JSON deserializer from one of the possible …","Create a JSON stream deserializer from one of the possible …","Create a JSON input source to read from a std::io input …","Create a JSON input source to read from a slice of bytes.","Create a JSON input source to read from a UTF-8 string.","","","","","","","","","","Categorizes the cause of a serde_json::Error.","The error was caused by input data that was semantically …","The error was caused by prematurely reaching the end of …","This type represents all possible errors that can occur …","The error was caused by a failure to read or write bytes …","Alias for a Result with the error type serde_json::Error.","The error was caused by input that was not syntactically …","","","Categorizes the cause of this error.","","","One-based column number at which the error was detected.","","","","Returns the argument unchanged.","Calls U::from(self).","The kind reported by the underlying standard library I/O …","Returns true if this error was caused by input data that …","Returns true if this error was caused by prematurely …","Returns true if this error was caused by a failure to read …","Returns true if this error was caused by input that was not","One-based line number at which the error was detected.","","","","","A view into a single entry in a map, which may either be …","An owning iterator over a serde_json::Map’s entries.","An iterator over a serde_json::Map’s entries.","A mutable iterator over a serde_json::Map’s entries.","An iterator over a serde_json::Map’s keys.","Represents a JSON key/value type.","An occupied Entry.","An occupied Entry. It is part of the Entry enum.","A vacant Entry.","A vacant Entry. It is part of the Entry enum.","An iterator over a serde_json::Map’s values.","A mutable iterator over a serde_json::Map’s values.","Provides in-place mutable access to an occupied entry …","Moves all elements from other into self, leaving other …","","","","","","","","","","","","","","","","","","","Clears the map, removing all values.","Returns true if the map contains a value for the specified …","Gets the given key’s corresponding entry in the map for …","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns a reference to the value corresponding to the key.","Gets a reference to the value in the entry.","Returns the key-value pair matching the given key.","Returns a mutable reference to the value corresponding to …","Gets a mutable reference to the value in the entry.","Inserts a key-value pair into the map.","Sets the value of the entry with the VacantEntry’s key, …","Sets the value of the entry with the OccupiedEntry’s …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","Converts the entry into a mutable reference to its value.","Returns true if the map contains no elements.","Gets an iterator over the entries of the map.","Gets a mutable iterator over the entries of the map.","Returns a reference to this entry’s key.","Gets a reference to the key that would be used when …","Gets a reference to the key in the entry.","Gets an iterator over the keys of the map.","Returns the number of elements in the map.","","","","","","","Makes a new empty Map.","","","","","","","","","","","","","Ensures a value is in the entry by inserting the default …","Ensures a value is in the entry by inserting the result of …","Removes a key from the map, returning the value at the key …","Takes the value of the entry out of the map, and returns …","Removes a key from the map, returning the stored key and …","Retains only the elements specified by the predicate.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Gets an iterator over the values of the map.","Gets an iterator over mutable values of the map.","Makes a new empty Map with the given initial capacity.","An escaped ASCII plane control character (usually escaped …","An escaped backspace character (usually escaped as \\\\b)","An escaped carriage return character (usually escaped as \\\\r…","Represents a character escape code in a type-safe manner.","This structure compacts a JSON value with no extra …","An escaped form feed character (usually escaped as \\\\f)","This trait abstracts away serializing the JSON control …","An escaped line feed character (usually escaped as \\\\n)","This structure pretty prints a JSON value to make it human …","An escaped quote "","An escaped reverse solidus \\\\","A structure for serializing Rust values into JSON.","An escaped solidus /","An escaped tab character (usually escaped as \\\\t)","Called before every array. Writes a [ to the specified …","","Called before every array value. Writes a , if needed to …","","Called before every object. Writes a { to the specified …","","Called before every object key.","","Called before every object value. A : should be written to","","Called before each series of write_string_fragment and …","","","","","","","","","","","","Called after every array. Writes a ] to the specified …","","Called after every array value.","","Called after every object. Writes a } to the specified …","","Called after every object key. A : should be written to …","Called after every object value.","","Called after each series of write_string_fragment and …","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Unwrap the Writer from the Serializer.","Creates a new JSON serializer.","Construct a pretty printer formatter that defaults to …","Creates a new JSON pretty print serializer.","","","Serialize the given data structure as a String of JSON.","Serialize the given data structure as a pretty-printed …","Serialize the given data structure as a JSON byte vector.","Serialize the given data structure as a pretty-printed …","Serialize the given data structure as JSON into the I/O …","Serialize the given data structure as pretty-printed JSON …","","","","","","","","","","Creates a new JSON visitor whose output will be written to …","Construct a pretty printer formatter that uses the indent …","Writes a true or false value to the specified writer.","Writes the representation of a byte array. Formatters can …","Writes a character escape code to the specified writer.","Writes a floating point value like -31.26e+12 to the …","Writes a floating point value like -31.26e+12 to the …","Writes an integer value like -123 to the specified writer.","Writes an integer value like -123 to the specified writer.","Writes an integer value like -123 to the specified writer.","Writes an integer value like -123 to the specified writer.","Writes an integer value like -123 to the specified writer.","Writes a null value to the specified writer.","Writes a number that has already been rendered to a string.","Writes a raw JSON fragment that doesn’t need any …","Writes a string fragment that doesn’t need any escaping …","Writes an integer value like 123 to the specified writer.","Writes an integer value like 123 to the specified writer.","Writes an integer value like 123 to the specified writer.","Writes an integer value like 123 to the specified writer.","Writes an integer value like 123 to the specified writer.","Represents a JSON array.","Represents a JSON boolean.","A type that can be used to index into a serde_json::Value.","","Represents a JSON null value.","Represents a JSON number, whether integer or floating …","Represents a JSON number, whether integer or floating …","Represents a JSON object.","Reference to a range of bytes encompassing a single valid …","Serializer whose output is a Value.","Represents a JSON string.","Represents any valid JSON value.","If the Value is an Array, returns the associated vector. …","If the Value is an Array, returns the associated mutable …","If the Value is a Boolean, returns the associated bool. …","If the Value is a number, represent it as f64 if possible. …","Represents the number as f64 if possible. Returns None …","If the Value is an integer, represent it as i64 if …","If the Number is an integer, represent it as i64 if …","If the Value is a Null, returns (). Returns None otherwise.","If the Value is an Object, returns the associated Map. …","If the Value is an Object, returns the associated mutable …","If the Value is a String, returns the associated str. …","If the Value is an integer, represent it as u64 if …","If the Number is an integer, represent it as u64 if …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","","","","","","Converts a finite f64 to a Number. Infinite or NaN values …","","Convert an owned String of JSON data to an owned RawValue.","Interpret a serde_json::Value as an instance of type T.","Access the JSON text underlying a raw value.","Index into a JSON array or map. A string index can be used …","Mutably index into a JSON array or map. A string index can …","","Calls U::from(self).","Calls U::from(self).","Returns true if the Value is an Array. Returns false …","Returns true if the Value is a Boolean. Returns false …","Returns true if the Value is a number that can be …","Returns true if the Number can be represented by f64.","Returns true if the Value is an integer between i64::MIN …","Returns true if the Number is an integer between i64::MIN …","Returns true if the Value is a Null. Returns false …","Returns true if the Value is a Number. Returns false …","Returns true if the Value is an Object. Returns false …","Returns true if the Value is a String. Returns false …","Returns true if the Value is an integer between zero and …","Returns true if the Number is an integer between zero and …","Looks up a value by a JSON Pointer.","Looks up a value by a JSON Pointer and returns a mutable …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Takes the value out of the Value, leaving a Null in its …","","","Convert a T into a boxed RawValue.","","","Convert a T into serde_json::Value which is an enum that …","","","","","","",""],"i":[2,2,0,0,0,2,0,2,2,0,0,0,2,0,14,50,10,3,6,2,14,50,10,3,6,2,3,2,3,3,2,6,10,10,0,3,2,3,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,14,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,0,3,10,10,3,2,2,14,50,10,3,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,0,0,0,2,0,3,2,3,2,14,50,10,3,6,2,2,2,50,3,3,3,10,0,0,50,10,0,3,2,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,10,3,2,0,10,2,0,0,0,0,0,0,14,50,10,3,6,2,14,50,10,3,6,2,14,50,10,3,6,2,0,0,0,0,0,0,0,59,60,61,59,60,61,50,14,59,60,61,0,14,0,14,0,14,59,60,61,14,14,50,59,60,61,59,60,61,59,60,61,59,60,61,0,62,62,0,62,0,62,62,62,10,62,62,10,62,62,62,62,62,10,10,10,10,10,10,62,62,62,62,0,0,0,0,0,0,64,0,64,0,0,0,64,3,64,67,66,68,69,71,70,72,73,64,67,66,68,69,71,70,72,73,3,3,3,64,67,66,68,69,71,70,72,73,3,66,3,3,66,3,67,66,64,67,66,68,69,71,70,72,73,68,69,71,70,72,73,66,3,3,3,64,67,66,3,3,68,69,71,70,72,73,3,68,69,71,70,72,73,68,69,71,70,72,73,64,64,3,66,3,3,68,69,71,70,72,73,64,67,66,68,69,71,70,72,73,64,67,66,68,69,71,70,72,73,64,67,66,68,69,71,70,72,73,3,3,3,78,78,78,0,0,78,0,78,0,78,78,0,78,78,5,76,5,76,5,76,5,76,5,76,5,78,77,76,78,77,76,77,76,77,76,76,5,76,5,76,5,76,5,5,76,5,77,76,78,77,76,78,77,76,6,6,76,6,77,76,0,0,0,0,0,0,78,77,76,78,77,76,78,77,76,6,76,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,2,0,0,2,0,2,2,0,0,2,0,2,2,2,2,40,2,40,2,2,2,2,2,40,79,80,40,79,80,40,40,40,79,80,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,80,80,40,40,79,40,40,40,40,40,40,40,40,40,40,40,40,40,80,0,80,2,2,40,79,40,2,2,2,40,2,40,2,2,2,2,2,40,2,2,80,40,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,2,80,40,0,80,40,0,79,40,79,40,79,80,40],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[3,[1,2]]],[[3,[1,2]]]],[2,2],[[[3,[1,2]],[3,[1,2]]]],[[]],[[]],[[[6,[4,5]],[0,[7,8]]],9],[8,10],[8,10],0,[[],[[3,[1,2]]]],[[],2],[11,[[12,[[3,[1,2]]]]]],[11,[[12,[2]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],16,[17,[16]],15],9],[[2,16,[17,[16]],15],[[12,[10]]]],[[2,16,[17,[16]],15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],16,15],9],[[2,16,15],[[12,[10]]]],[[2,16,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],16,[17,[16]],15],9],[[2,16,[17,[16]],15],[[12,[10]]]],[[2,16,[17,[16]],15],[[12,[10]]]],[[[14,[13]],18,15],9],[[2,18,15],[[12,[10]]]],[[2,18,15],[[12,[10]]]],[[[14,[13]],16,18,15],9],[[2,16,18,15],[[12,[10]]]],[[2,16,18,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],15],9],[[2,15],[[12,[10]]]],[[2,15],[[12,[10]]]],[[[14,[13]],16,15],9],[[2,16,15],[[12,[10]]]],[[2,16,15],[[12,[10]]]],[[[3,[1,2]],[3,[1,2]]],19],[[2,2],19],[[2,20],19],[[2,21],19],[[2,22],19],[[2,21],19],[[2,23],19],[[2,16],19],[[2,24],19],[[2,19],19],[[2,22],19],[[2,25],19],[[2,19],19],[[2,25],19],[[2,21],19],[[2,26],19],[[2,27],19],[[2,20],19],[[2,16],19],[[2,25],19],[[2,28],19],[[2,23],19],[[2,29],19],[[2,18],19],[[2,19],19],[[2,30],19],[[2,29],19],[[2,27],19],[[2,18],19],[[2,28],19],[[2,22],19],[[2,26],19],[[2,24],19],[[2,24],19],[[2,30],19],[[2,29],19],[[2,28],19],[[2,27],19],[[2,23],19],[[2,30],19],[[2,18],19],[[2,1],19],[[2,26],19],[[2,20],19],[[],19],[[],19],0,[[[3,[1,2]],31]],[[10,32],33],[[10,32],33],[[[3,[1,2]],32],[[12,[34]]]],[[2,32],33],[[2,32],33],[[]],[[]],[[]],[[]],[[]],[18,2],[28,2],[21,2],[23,2],[1,2],[[[17,[[0,[35,[36,[2]]]]]]],2],[22,2],[[],2],[[[37,[16]]],2],[30,2],[[[38,[[36,[2]]]]],2],[24,2],[[[3,[1,2]]],2],[27,2],[20,2],[16,2],[29,2],[25,2],[19,2],[[[39,[[36,[2]]]]],2],[[]],[40,2],[26,2],[31,[[3,[1,2]]]],[31,2],[31,2],[41,[[9,[42]]]],[[[17,[29]]],[[9,[43]]]],[16,[[9,[43]]]],[16,[[12,[2,10]]]],[2,[[12,[42,10]]]],[[[3,[1,2]],[0,[7,44,45,46]]],2],[[2,47],2],[[[3,[1,2]],[0,[7,44,45,46]]],2],[[2,47],2],[[]],[[]],[[]],[[]],[[]],[[]],[2],[2],[[]],[[[3,[1,2]]]],[[[3,[1,2]]]],[[[3,[1,2]]]],[[48,49],10],0,0,[[[50,[13,43]]],[[39,[[9,[43]]]]]],[51],0,[[[3,[1,2]],52],12],[[2,52],12],[[[6,[4,5]],19],9],[[[6,[4,5]],[17,[29]]],9],[[[6,[4,5]],53],9],[[[6,[4,5]],20],9],[[[6,[4,5]],25],9],[[[6,[4,5]],54],9],[[[6,[4,5]],26],9],[[[6,[4,5]],28],9],[[[6,[4,5]],21],9],[[[6,[4,5]],24],9],[[[6,[4,5]],[39,[18]]],9],[[[6,[4,5]],16,[0,[7,55]]],9],[[[6,[4,5]],16,23,16,[0,[7,55]]],9],[[[6,[4,5]]],9],[[[6,[4,5]],[39,[18]]],9],[[[6,[4,5]],[0,[7,55]]],9],[[[6,[4,5]],16],9],[[[6,[4,5]],16,18],9],[[[6,[4,5]],16,23,16,18],9],[[[6,[4,5]],18],9],[[[6,[4,5]],16,18],9],[[[6,[4,5]],16,23,16,18],9],[[[6,[4,5]],56],9],[[[6,[4,5]],22],9],[[[6,[4,5]],23],9],[[[6,[4,5]],27],9],[[[6,[4,5]],29],9],[[[6,[4,5]]],9],[[[6,[4,5]],16],9],[[[6,[4,5]],16,23,16],9],[10,[[39,[57]]]],[[]],[[]],[[[0,[7,55]]],[[9,[1]]]],[[],1],[[],1],[[[0,[7,55]]],[[9,[1]]]],[55,[[12,[2,10]]]],[[[0,[7,55]]],[[9,[[38,[29]]]]]],[[[0,[7,55]]],[[9,[[38,[29]]]]]],[[4,[0,[7,55]]],9],[[4,[0,[7,55]]],9],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[[50,[13,43]]],18],[[[14,[13]]],9],[[]],[[]],[[]],[41,[[9,[42]]]],[41,[[14,[[59,[41]]]]]],[[[17,[29]]],[[9,[43]]]],[[[17,[29]]],[[14,[60]]]],[16,[[9,[43]]]],[16,[[14,[61]]]],[[]],[[]],[[]],[[[14,[13]]],[[50,[13,43]]]],[13,[[14,[13]]]],[13,[[50,[13,43]]]],[41,[[59,[41]]]],[[[17,[29]]],60],[16,61],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58],0,0,0,0,0,0,0,[[]],[[]],[10,62],[62,62],[[]],[10,18],[[62,62],19],[[],19],[[62,32],33],[[]],[[]],[10,[[39,[63]]]],[10,19],[10,19],[10,19],[10,19],[10,18],[[]],[[],12],[[],12],[[],58],0,0,0,0,0,0,0,0,0,0,0,0,[[64,65],64],[[[3,[1,2]],[3,[1,2]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[3,[1,2]]]],[[[3,[1,2]],[0,[7,44,45,46]]],19],[[[3,[1,2]],[36,[1]]],64],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[3,[1,2]],[0,[7,44,45,46]]],[[39,[2]]]],[66,2],[[[3,[1,2]],[0,[7,44,45,46]]],39],[[[3,[1,2]],[0,[7,44,45,46]]],[[39,[2]]]],[66,2],[[[3,[1,2]],1,2],[[39,[2]]]],[[67,2],2],[[66,2],2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[66,2],[[[3,[1,2]]],19],[[[3,[1,2]]],68],[[[3,[1,2]]],69],[64,1],[67,1],[66,1],[[[3,[1,2]]],70],[[[3,[1,2]]],18],[68,18],[69,18],[71,18],[70,18],[72,18],[73,18],[[],[[3,[1,2]]]],[68,39],[69,39],[71,39],[70,39],[72,39],[73,39],[68,39],[69,39],[71,39],[70,39],[72,39],[73,39],[[64,2],2],[[64,65],2],[[[3,[1,2]],[0,[7,44,45,46]]],[[39,[2]]]],[66,2],[[[3,[1,2]],[0,[7,44,45,46]]],39],[[[3,[1,2]],74]],[68],[69],[71],[70],[72],[73],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],[[],58],[[[3,[1,2]]],72],[[[3,[1,2]]],73],[18,[[3,[1,2]]]],0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]],19],75],[[76,[0,[7,4]],19],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]],19],75],[[76,[0,[7,4]],19],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[]],[[]],[[]],[[]],[[]],[[]],[77,77],[76,76],[[]],[[]],[[],76],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[[0,[7,4]]],75],[[76,[0,[7,4]]],75],[[[0,[7,4]]],75],[[77,32],33],[[76,32],33],[[]],[[]],[[]],[[]],[[]],[[]],[[[6,[4,5]]],4],[4,[[6,[4]]]],[[],76],[4,[[6,[4,76]]]],[[]],[[]],[[[0,[7,55]]],[[9,[1]]]],[[[0,[7,55]]],[[9,[1]]]],[[[0,[7,55]]],[[9,[[38,[29]]]]]],[[[0,[7,55]]],[[9,[[38,[29]]]]]],[[4,[0,[7,55]]],9],[[4,[0,[7,55]]],9],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58],[[4,5],[[6,[4,5]]]],[[[17,[29]]],76],[[[0,[7,4]],19],75],[[[0,[7,4]],[17,[29]]],75],[[[0,[7,4]],78],75],[[[0,[7,4]],20],75],[[[0,[7,4]],25],75],[[[0,[7,4]],54],75],[[[0,[7,4]],26],75],[[[0,[7,4]],28],75],[[[0,[7,4]],21],75],[[[0,[7,4]],24],75],[[[0,[7,4]]],75],[[[0,[7,4]],16],75],[[[0,[7,4]],16],75],[[[0,[7,4]],16],75],[[[0,[7,4]],56],75],[[[0,[7,4]],22],75],[[[0,[7,4]],23],75],[[[0,[7,4]],27],75],[[[0,[7,4]],29],75],0,0,0,0,0,0,0,0,0,0,0,0,[2,[[39,[[38,[2]]]]]],[2,[[39,[[38,[2]]]]]],[2,[[39,[19]]]],[2,[[39,[25]]]],[40,[[39,[25]]]],[2,[[39,[21]]]],[40,[[39,[21]]]],[2,39],[2,[[39,[[3,[1,2]]]]]],[2,[[39,[[3,[1,2]]]]]],[2,[[39,[16]]]],[2,[[39,[27]]]],[40,[[39,[27]]]],[[]],[[]],[[]],[[]],[[]],[[]],[40,40],[[]],[[79,[0,[7,8]]],[[9,[2]]]],[11,[[12,[80]]]],[11,[[12,[40]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,16,[17,[16]],15],12],[[40,16,[17,[16]],15],12],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,16,15],12],[[40,16,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,15],12],[[40,16,[17,[16]],15],12],[[40,16,[17,[16]],15],12],[[40,18,15],12],[[40,18,15],12],[[40,16,18,15],12],[[40,16,18,15],12],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],[[12,[10]]]],[[40,15],12],[[40,15],12],[[40,16,15],12],[[40,16,15],12],[[40,40],19],[[],19],[[80,32],33],[[80,32],33],[[40,32],33],[[40,32],33],[[]],[26,40],[27,40],[23,40],[21,40],[24,40],[[]],[22,40],[18,40],[29,40],[28,40],[30,40],[25,[[39,[40]]]],[16,[[12,[40]]]],[1,[[12,[[81,[80]],10]]]],[2,[[12,[42,10]]]],[80,16],[[2,47],[[39,[2]]]],[[2,47],[[39,[2]]]],[[40,82]],[[]],[[]],[2,19],[2,19],[2,19],[40,19],[2,19],[40,19],[2,19],[2,19],[2,19],[2,19],[2,19],[40,19],[[2,16],[[39,[2]]]],[[2,16],[[39,[2]]]],[[80,52],12],[[40,52],12],[[79,19],[[9,[2]]]],[[79,[17,[29]]],[[9,[2]]]],[[79,53],[[9,[2]]]],[[79,20],[[9,[2]]]],[[79,25],[[9,[2]]]],[[79,54],[[9,[2]]]],[[79,26],[[9,[2]]]],[[79,28],[[9,[2]]]],[[79,21],[[9,[2]]]],[[79,24],[[9,[2]]]],[[79,[39,[18]]],9],[[79,16,[0,[7,55]]],[[9,[2]]]],[[79,16,23,16,[0,[7,55]]],[[9,[2]]]],[79,[[9,[2]]]],[[79,[39,[18]]],9],[[79,[0,[7,55]]],[[9,[2]]]],[[79,16],[[9,[2]]]],[[79,16,18],9],[[79,16,23,16,18],9],[[79,18],9],[[79,16,18],9],[[79,16,23,16,18],9],[[79,56],[[9,[2]]]],[[79,22],[[9,[2]]]],[[79,23],[[9,[2]]]],[[79,27],[[9,[2]]]],[[79,29],[[9,[2]]]],[79,[[9,[2]]]],[[79,16],[[9,[2]]]],[[79,16,23,16],[[9,[2]]]],[2,2],[80],[[]],[[[0,[7,55]]],[[12,[[81,[80]],10]]]],[[],1],[[],1],[55,[[12,[2,10]]]],[[],12],[[],12],[[],12],[[],12],[[],58],[[],58],[[],58]],"c":[],"p":[[3,"String"],[4,"Value"],[3,"Map"],[8,"Write"],[8,"Formatter"],[3,"Serializer"],[8,"Sized"],[8,"Display"],[6,"Result"],[3,"Error"],[8,"Deserializer"],[4,"Result"],[8,"Read"],[3,"Deserializer"],[8,"Visitor"],[15,"str"],[15,"slice"],[15,"usize"],[15,"bool"],[15,"f32"],[15,"i64"],[15,"u16"],[15,"u32"],[15,"i8"],[15,"f64"],[15,"i16"],[15,"u64"],[15,"i32"],[15,"u8"],[15,"isize"],[8,"IntoIterator"],[3,"Formatter"],[6,"Result"],[3,"Error"],[8,"Clone"],[8,"Into"],[4,"Cow"],[3,"Vec"],[4,"Option"],[3,"Number"],[8,"Read"],[8,"DeserializeOwned"],[8,"Deserialize"],[8,"Ord"],[8,"Eq"],[8,"Hash"],[8,"Index"],[4,"Unexpected"],[8,"Expected"],[3,"StreamDeserializer"],[3,"Demand"],[8,"Serializer"],[15,"char"],[15,"i128"],[8,"Serialize"],[15,"u128"],[8,"Error"],[3,"TypeId"],[3,"IoRead"],[3,"SliceRead"],[3,"StrRead"],[4,"Category"],[4,"ErrorKind"],[4,"Entry"],[8,"FnOnce"],[3,"OccupiedEntry"],[3,"VacantEntry"],[3,"Iter"],[3,"IterMut"],[3,"Keys"],[3,"IntoIter"],[3,"Values"],[3,"ValuesMut"],[8,"FnMut"],[6,"Result"],[3,"PrettyFormatter"],[3,"CompactFormatter"],[4,"CharEscape"],[3,"Serializer"],[3,"RawValue"],[3,"Box"],[8,"Hasher"]]},\ "serde_urlencoded":{"doc":"x-www-form-urlencoded meets Serde","t":"DDLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFFLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLDDLLLLLLLLLLLFFFLLLLLLLLNEDDDDDDDDNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLLLLLLLLL","n":["Deserializer","Serializer","borrow","borrow","borrow_mut","borrow_mut","de","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","from","from","from_bytes","from_reader","from_str","into","into","ser","serialize_bool","serialize_bytes","serialize_char","serialize_f32","serialize_f64","serialize_i16","serialize_i32","serialize_i64","serialize_i8","serialize_map","serialize_newtype_struct","serialize_newtype_variant","serialize_none","serialize_seq","serialize_some","serialize_str","serialize_struct","serialize_struct_variant","serialize_tuple","serialize_tuple_struct","serialize_tuple_variant","serialize_u16","serialize_u32","serialize_u64","serialize_u8","serialize_unit","serialize_unit_struct","serialize_unit_variant","to_string","try_from","try_from","try_into","try_into","type_id","type_id","Deserializer","Error","borrow","borrow_mut","clone","clone_into","custom","custom","description","eq","fmt","fmt","from","from_bytes","from_reader","from_str","into","new","provide","to_owned","to_string","try_from","try_into","type_id","Custom","Error","MapSerializer","SeqSerializer","Serializer","StructSerializer","StructVariantSerializer","TupleSerializer","TupleStructSerializer","TupleVariantSerializer","Utf8","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","clone","clone_into","custom","description","end","end","end","end","end","end","end","eq","equivalent","fmt","fmt","from","from","from","from","from","from","from","from","into","into","into","into","into","into","into","into","new","provide","serialize_element","serialize_element","serialize_entry","serialize_field","serialize_field","serialize_field","serialize_field","serialize_key","serialize_value","source","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id"],"q":[[0,"serde_urlencoded"],[79,"serde_urlencoded::de"],[103,"serde_urlencoded::ser"]],"d":["A deserializer for the application/x-www-form-urlencoded …","A serializer for the application/x-www-form-urlencoded …","","","","","Deserialization support for the …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Deserializes a application/x-www-form-urlencoded value …","Convenience function that reads all bytes from reader and …","Deserializes a application/x-www-form-urlencoded value …","Calls U::from(self).","Calls U::from(self).","Serialization support for the …","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Serializes a map, given length is ignored.","Serializes the inner value, ignoring the newtype name.","Returns an error.","Returns Ok.","Serialize a sequence, given length (if any) is ignored.","Serializes the given value.","Returns an error.","Serializes a struct, given length is ignored.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns an error.","Returns Ok.","Returns Ok.","Returns an error.","Serializes a value into a application/x-www-form-urlencoded…","","","","","","","A deserializer for the application/x-www-form-urlencoded …","A minimal representation of all possible errors that can …","","","","","","","","","","","Returns the argument unchanged.","Deserializes a application/x-www-form-urlencoded value …","Convenience function that reads all bytes from reader and …","Deserializes a application/x-www-form-urlencoded value …","Calls U::from(self).","Returns a new Deserializer.","","","","","","","","Errors returned during serializing to …","Map serializer.","Sequence serializer.","A serializer for the application/x-www-form-urlencoded …","Struct serializer.","Struct variant serializer.","Tuple serializer.","Tuple struct serializer.","Tuple variant serializer.","","","","","","","","","","","","","","","","","","The lower-level cause of this error, in the case of a Utf8 …","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns a new Serializer.","","","","","","","","","","","The lower-level source of this error, in the case of a Utf8…","","Serializes a value into a application/x-www-form-urlencoded…","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,1,13,1,13,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,13,0,0,0,1,13,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,1,13,1,13,1,13,0,0,9,9,9,9,9,9,9,9,9,9,9,0,0,0,9,1,9,9,9,9,9,9,15,0,0,0,0,0,0,0,0,0,15,37,38,39,40,41,42,43,15,37,38,39,40,41,42,43,15,15,15,15,15,15,37,38,39,40,41,42,43,15,15,15,15,37,38,39,40,41,42,43,15,37,38,39,40,41,42,43,15,13,15,37,38,41,39,40,42,43,41,41,15,15,0,15,37,38,39,40,41,42,43,15,37,38,39,40,41,42,43,15,37,38,39,40,41,42,43,15],"f":[0,0,[[]],[[]],[[]],[[]],0,[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,4,[5,[4]],2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,4,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,4,[5,[4]],2],3],[[1,6,2],3],[[1,4,6,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,2],3],[[1,4,2],3],[[]],[[]],[[[5,[7]]],[[3,[8,9]]]],[10,[[3,[11,9]]]],[4,[[3,[8,9]]]],[[]],[[]],0,[[[13,[12]],14],[[3,[15]]]],[[[13,[12]],[5,[7]]],[[3,[15]]]],[[[13,[12]],16],[[3,[15]]]],[[[13,[12]],17],[[3,[15]]]],[[[13,[12]],18],[[3,[15]]]],[[[13,[12]],19],[[3,[15]]]],[[[13,[12]],20],[[3,[15]]]],[[[13,[12]],21],[[3,[15]]]],[[[13,[12]],22],[[3,[15]]]],[[[13,[12]],[23,[6]]],[[3,[15]]]],[[[13,[12]],4,[0,[24,25]]],[[3,[15]]]],[[[13,[12]],4,26,4,[0,[24,25]]],[[3,[15]]]],[[[13,[12]]],[[3,[15]]]],[[[13,[12]],[23,[6]]],[[3,[15]]]],[[[13,[12]],[0,[24,25]]],[[3,[15]]]],[[[13,[12]],4],[[3,[15]]]],[[[13,[12]],4,6],[[3,[15]]]],[[[13,[12]],4,26,4,6],[[3,[15]]]],[[[13,[12]],6],[[3,[15]]]],[[[13,[12]],4,6],[[3,[15]]]],[[[13,[12]],4,26,4,6],[[3,[15]]]],[[[13,[12]],27],[[3,[15]]]],[[[13,[12]],26],[[3,[15]]]],[[[13,[12]],28],[[3,[15]]]],[[[13,[12]],7],[[3,[15]]]],[[[13,[12]]],[[3,[15]]]],[[[13,[12]],4],[[3,[15]]]],[[[13,[12]],4,26,4],[[3,[15]]]],[25,[[3,[29,15]]]],[[],3],[[],3],[[],3],[[],3],[[],30],[[],30],0,0,[[]],[[]],[9,9],[[]],[31,9],[31,9],[9,4],[[9,9],14],[[9,32],[[3,[33]]]],[[9,32],[[3,[33]]]],[[]],[[[5,[7]]],[[3,[8,9]]]],[10,[[3,[11,9]]]],[4,[[3,[8,9]]]],[[]],[34,1],[35],[[]],[[],29],[[],3],[[],3],[[],30],0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[15,[[23,[36]]]],[15,15],[[]],[31,15],[15,4],[[[37,[12]]],[[3,[15]]]],[[[38,[12]]],[[3,[15]]]],[[[39,[12]]],[[3,[15]]]],[[[40,[12]]],[[3,[15]]]],[[[41,[12]]],[[3,[15]]]],[[[42,[12]]],[[3,[15]]]],[[[43,[12]]],[[3,[15]]]],[[15,15],14],[[],14],[[15,32],44],[[15,32],44],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[45,[12]]],[[13,[12]]]],[35],[[[37,[12]],[0,[24,25]]],[[3,[15]]]],[[[38,[12]],[0,[24,25]]],[[3,[15]]]],[[[41,[12]],[0,[24,25]],[0,[24,25]]],[[3,[15]]]],[[[39,[12]],[0,[24,25]]],[[3,[15]]]],[[[40,[12]],[0,[24,25]]],[[3,[15]]]],[[[42,[12]],4,[0,[24,25]]],[[3,[15]]]],[[[43,[12]],4,[0,[24,25]]],[[3,[15]]]],[[[41,[12]],[0,[24,25]]],[[3,[15]]]],[[[41,[12]],[0,[24,25]]],[[3,[15]]]],[15,[[23,[36]]]],[[]],[25,[[3,[29,15]]]],[[],29],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],30],[[],30],[[],30],[[],30],[[],30],[[],30],[[],30],[[],30]],"c":[],"p":[[3,"Deserializer"],[8,"Visitor"],[4,"Result"],[15,"str"],[15,"slice"],[15,"usize"],[15,"u8"],[8,"Deserialize"],[3,"Error"],[8,"Read"],[8,"DeserializeOwned"],[8,"Target"],[3,"Serializer"],[15,"bool"],[4,"Error"],[15,"char"],[15,"f32"],[15,"f64"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[4,"Option"],[8,"Sized"],[8,"Serialize"],[15,"u32"],[15,"u16"],[15,"u64"],[3,"String"],[3,"TypeId"],[8,"Display"],[3,"Formatter"],[3,"Error"],[3,"Parse"],[3,"Demand"],[8,"Error"],[3,"SeqSerializer"],[3,"TupleSerializer"],[3,"TupleStructSerializer"],[3,"TupleVariantSerializer"],[3,"MapSerializer"],[3,"StructSerializer"],[3,"StructVariantSerializer"],[6,"Result"],[3,"Serializer"]]},\ "signal_hook":{"doc":"Library for easier and safe Unix signal handling","t":"DLLLLLALLALLLLAALLLLLRRARRRRRRRRRRRRRRRRRRRRRRRRRRRRRFFFFDCCGDLALLLLALLLLLLLLLLLLLLLLLLLLLNNDGDNEGNDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLIDCLLLLLLLLALLLLDLLLLLLLLLLLLFAFFAFFFFDLLLLLLLLLLLFF","n":["SigId","borrow","borrow_mut","clone","clone_into","cmp","consts","eq","equivalent","flag","fmt","from","hash","into","iterator","low_level","partial_cmp","to_owned","try_from","try_into","type_id","FORBIDDEN","TERM_SIGNALS","signal","SIGABRT","SIGALRM","SIGBUS","SIGCHLD","SIGCONT","SIGFPE","SIGHUP","SIGILL","SIGINT","SIGIO","SIGKILL","SIGPIPE","SIGPROF","SIGQUIT","SIGSEGV","SIGSTOP","SIGSYS","SIGTERM","SIGTRAP","SIGTSTP","SIGTTIN","SIGTTOU","SIGURG","SIGUSR1","SIGUSR2","SIGVTALRM","SIGWINCH","SIGXCPU","SIGXFSZ","register","register_conditional_default","register_conditional_shutdown","register_usize","Forever","Handle","Pending","Signals","SignalsInfo","add_signal","backend","borrow","borrow","borrow_mut","borrow_mut","exfiltrator","fmt","forever","from","from","handle","into","into","into_iter","into_iter","is_closed","new","next","pending","try_from","try_from","try_into","try_into","type_id","type_id","wait","with_exfiltrator","Closed","Err","Handle","OwningSignalIterator","Pending","Pending","PollResult","RefSignalIterator","Signal","SignalDelivery","SignalIterator","add_signal","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone_into","close","fmt","fmt","fmt","from","from","from","from","from","get_read","get_read_mut","handle","handle","into","into","into","into","into","into_iter","is_closed","new","next","pending","poll_pending","poll_signal","to_owned","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","with_pipe","Exfiltrator","SignalOnly","WithRawSiginfo","borrow","borrow_mut","clone","clone_into","default","fmt","from","into","raw","to_owned","try_from","try_into","type_id","WithRawSiginfo","borrow","borrow_mut","clone","clone_into","default","fmt","from","into","to_owned","try_from","try_into","type_id","abort","channel","emulate_default_handler","exit","pipe","raise","register","signal_name","unregister","Channel","borrow","borrow_mut","default","from","into","new","recv","send","try_from","try_into","type_id","register","register_raw"],"q":[[0,"signal_hook"],[21,"signal_hook::consts"],[24,"signal_hook::consts::signal"],[53,"signal_hook::flag"],[57,"signal_hook::iterator"],[90,"signal_hook::iterator::backend"],[156,"signal_hook::iterator::exfiltrator"],[172,"signal_hook::iterator::exfiltrator::raw"],[185,"signal_hook::low_level"],[194,"signal_hook::low_level::channel"],[206,"signal_hook::low_level::pipe"]],"d":["An ID of registered action.","","","","","","The low-level constants.","","","Module for actions setting flags.","","Returns the argument unchanged.","","Calls U::from(self).","An iterator over incoming signals.","Some low level utilities","","","","","","List of forbidden signals.","Various signals commonly requesting shutdown of an …","The signal constants.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Registers an action to set the flag to true whenever the …","Conditionally runs an emulation of the default action on …","Terminate the application on a signal if the given …","Registers an action to set the flag to the given value …","An infinite iterator of arriving signals.","","","A type alias for an iterator returning just the signal …","The main structure of the module, representing interest in …","Registers another signal to the set watched by this Signals…","A backend module for implementing the iterator like …","","","","","An abstraction over exfiltrating information out of signal …","","Get an infinite iterator over arriving signals.","Returns the argument unchanged.","Returns the argument unchanged.","Get a shareable handle to a Handle for this instance.","Calls U::from(self).","Calls U::from(self).","","","Is it closed?","Creates the Signals structure.","","Returns an iterator of already received signals.","","","","","","","Waits for some signals to be available and returns an …","An advanced constructor with explicit Exfiltrator.","The iterator was closed. There won’t be any signals …","An error happened during polling for arrived signals.","A struct to control an instance of an associated type …","A signal iterator which consumes a SignalDelivery instance …","The iterator of one batch of signals.","There are no signals yet but there may arrive some in the …","Possible results of the poll_signal function.","A signal iterator which takes a mutable reference to a …","A signal arrived","A struct for delivering received signals to the main …","An infinite iterator of received signals.","Registers another signal to the set watched by the …","","","","","","","","","","","","","Closes the associated instance.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Get a reference to the read end of the self pipe","Get a mutable reference to the read end of the self pipe","Get a shareable Handle for this instance.","Get a Handle for this SignalDelivery instance.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Is it closed?","Create a new infinite iterator for signals registered with …","","Returns an iterator of already received signals.","Checks the reading end of the self pipe for available …","Return a signal if there is one or tell the caller that …","","","","","","","","","","","","","","","","","Creates the SignalDelivery structure.","A trait describing what and how is extracted from signal …","An Exfiltrator providing just the signal numbers.","","","","","","","","Returns the argument unchanged.","Calls U::from(self).","An exfiltrator providing the raw siginfo_t.","","","","","The Exfiltrator that produces the raw libc::siginfo_t. …","","","","","","","Returns the argument unchanged.","Calls U::from(self).","","","","","A bare libc abort.","A restricted channel to pass data from signal handler.","Emulates the behaviour of a default handler for the …","A bare libc exit.","Module with the self-pipe pattern.","The usual raise, just the safe wrapper around it.","Registers an arbitrary action for the given signal.","Provides a human-readable name of a signal.","Removes a previously installed action.","A restricted async-signal-safe channel","","","","Returns the argument unchanged.","Calls U::from(self).","Creates a new channel with nothing in it.","Takes a value from the channel.","Inserts a value into the channel.","","","","Registers a write to a self-pipe whenever there’s the …","Registers a write to a self-pipe whenever there’s the …"],"i":[0,1,1,1,1,1,0,1,1,0,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,17,20,17,20,0,17,17,17,20,17,17,20,17,20,17,17,20,17,17,20,17,20,17,20,17,17,33,33,0,0,0,33,0,0,33,0,0,21,33,30,21,25,24,33,30,21,25,24,21,21,21,21,25,24,33,30,21,25,24,25,25,30,25,33,30,21,25,24,24,21,30,24,25,25,30,21,33,30,21,25,24,33,30,21,25,24,33,30,21,25,24,25,0,0,0,34,34,34,34,34,34,34,34,0,34,34,34,34,0,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,40,40,40,40,40,40,40,40,40,40,40,0,0],"f":[0,[[]],[[]],[1,1],[[]],[[1,1],2],0,[[1,1],3],[[],3],0,[[1,4],[[6,[5]]]],[[]],[[1,7]],[[]],0,0,[[1,1],[[8,[2]]]],[[]],[[],6],[[],6],[[],9],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[10,[12,[11]]],[[6,[1,13]]]],[[10,[12,[11]]],[[6,[1,13]]]],[[10,10,[12,[11]]],[[6,[1,13]]]],[[10,[12,[14]],15],[[6,[1,13]]]],0,0,0,0,0,[[[17,[16]],10],[[6,[13]]]],0,[[]],[[]],[[]],[[]],0,[[[17,[[0,[18,16]]]],4],19],[[[17,[16]]],[[20,[16]]]],[[]],[[]],[[[17,[16]]],21],[[]],[[]],[[[17,[16]]]],[[]],[[[17,[16]]],3],[22,[[6,[[17,[23,16]],13]]]],[[[20,[16]]],8],[[[17,[16]]],[[24,[16]]]],[[],6],[[],6],[[],6],[[],6],[[],9],[[],9],[[[17,[16]]],[[24,[16]]]],[[22,16],[[6,[[17,[16]],13]]]],0,0,0,0,0,0,0,0,0,0,0,[[21,10],[[6,[13]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[21,21],[[]],[21],[[21,4],19],[[[25,[18,[0,[18,16]]]],4],19],[[[24,[[0,[18,16]]]],4],19],[[]],[[]],[[]],[[]],[[]],[[[25,[[0,[26,27,28]],16]]],[[0,[26,27,28]]]],[[[25,[[0,[26,27,28]],16]]],[[0,[26,27,28]]]],[[[30,[[29,[[25,[[0,[26,27,28]],16]]]],16]]],21],[[[25,[[0,[26,27,28]],16]]],21],[[]],[[]],[[]],[[]],[[]],[[]],[21,3],[[[31,[[25,[[0,[26,27,28]],16]]]]],[[30,[[31,[[25,[[0,[26,27,28]],16]]]],16]]]],[[[24,[16]]],8],[[[25,[[0,[26,27,28]],16]]],[[24,[16]]]],[[[25,[[0,[26,27,28]],16]],32],[[6,[[8,[[24,[16]]]],13]]]],[[[30,[[31,[[25,[[0,[26,27,28]],16]]]],16]],32],33],[[]],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],6],[[],9],[[],9],[[],9],[[],9],[[],9],[[[0,[26,27,28]],[0,[26,18,27,28]],16,22],[[6,[[25,[[0,[26,27,28]],16]],13]]]],0,0,0,[[]],[[]],[34,34],[[]],[[],34],[[34,4],19],[[]],[[]],0,[[]],[[],6],[[],6],[[],9],0,[[]],[[]],[35,35],[[]],[[],35],[[35,4],19],[[]],[[]],[[]],[[],6],[[],6],[[],9],[[],36],0,[10,[[6,[13]]]],[10,36],0,[10,[[6,[13]]]],[[37,[0,[38,28,27]]],[[6,[1,13]]]],[10,[[8,[39]]]],[1,3],0,[[]],[[]],[[],40],[[]],[[]],[[],40],[40,8],[40],[[],6],[[],6],[[],9],[[10,41],[[6,[1,13]]]],[[10,42],[[6,[1,13]]]]],"c":[],"p":[[3,"SigId"],[4,"Ordering"],[15,"bool"],[3,"Formatter"],[3,"Error"],[4,"Result"],[8,"Hasher"],[4,"Option"],[3,"TypeId"],[6,"c_int"],[3,"AtomicBool"],[3,"Arc"],[3,"Error"],[3,"AtomicUsize"],[15,"usize"],[8,"Exfiltrator"],[3,"SignalsInfo"],[8,"Debug"],[6,"Result"],[3,"Forever"],[3,"Handle"],[8,"IntoIterator"],[8,"Default"],[3,"Pending"],[3,"SignalDelivery"],[8,"AsRawFd"],[8,"Send"],[8,"Sync"],[8,"Borrow"],[3,"SignalIterator"],[8,"BorrowMut"],[8,"FnMut"],[4,"PollResult"],[3,"SignalOnly"],[3,"WithRawSiginfo"],[15,"never"],[15,"i32"],[8,"Fn"],[15,"str"],[3,"Channel"],[8,"IntoRawFd"],[6,"RawFd"]]},\ "signal_hook_mio":{"doc":"A crate offering integration with the MIO runtime.","t":"ADGDLLLLLLLLLLLLLLLLLLLLLLLL","n":["v0_8","Pending","Signals","SignalsInfo","add_signal","borrow","borrow","borrow_mut","borrow_mut","deregister","fmt","from","from","into","into","into_iter","new","next","pending","register","reregister","try_from","try_from","try_into","try_into","type_id","type_id","with_exfiltrator"],"q":[[0,"signal_hook_mio"],[1,"signal_hook_mio::v0_8"]],"d":["A module for integrating signal handling with the MIO 0.8 …","The iterator of one batch of signals.","A simplified signal iterator.","A struct which mimics signal_hook::iterator::SignalsInfo …","Registers another signal to the set watched by this Signals…","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","Create a Signals instance.","","Returns an iterator of already received signals.","","","","","","","","","A constructor with specifying an exfiltrator to pass …"],"i":[0,0,0,0,2,2,9,2,9,6,9,2,9,2,9,9,2,9,2,6,6,2,9,2,9,2,9,2],"f":[0,0,0,0,[[[2,[1]],3],[[5,[4]]]],[[]],[[]],[[]],[[]],[[6,7],[[5,[4]]]],[[[9,[[0,[8,1]]]],10],[[5,[11]]]],[[]],[[]],[[]],[[]],[[]],[12,[[5,[[2,[13,1]],4]]]],[[[9,[1]]],14],[[[2,[1]]],[[9,[1]]]],[[6,7,15,16],[[5,[4]]]],[[6,7,15,16],[[5,[4]]]],[[],5],[[],5],[[],5],[[],5],[[],17],[[],17],[[12,1],[[5,[[2,[1]],4]]]]],"c":[],"p":[[8,"Exfiltrator"],[3,"SignalsInfo"],[6,"c_int"],[3,"Error"],[4,"Result"],[6,"Signals"],[3,"Registry"],[8,"Debug"],[3,"Pending"],[3,"Formatter"],[3,"Error"],[8,"IntoIterator"],[8,"Default"],[4,"Option"],[3,"Token"],[3,"Interest"],[3,"TypeId"]]},\ "signal_hook_registry":{"doc":"Backend of the signal-hook crate.","t":"RDLLLLLLLLLLLLFFFFLLLLF","n":["FORBIDDEN","SigId","borrow","borrow_mut","clone","clone_into","cmp","eq","equivalent","fmt","from","hash","into","partial_cmp","register","register_sigaction","register_signal_unchecked","register_unchecked","to_owned","try_from","try_into","type_id","unregister"],"q":[[0,"signal_hook_registry"]],"d":["List of forbidden signals.","An ID of registered action.","","","","","","","","","Returns the argument unchanged.","","Calls U::from(self).","","Registers an arbitrary action for the given signal.","Register a signal action.","Register a signal action without checking for forbidden …","Register a signal action without checking for forbidden …","","","","","Removes a previously installed action."],"i":[0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0],"f":[0,0,[[]],[[]],[1,1],[[]],[[1,1],2],[[1,1],3],[[],3],[[1,4],5],[[]],[[1,6]],[[]],[[1,1],[[7,[2]]]],[[8,[0,[9,10,11]]],[[13,[1,12]]]],[[8,[0,[9,10,11]]],[[13,[1,12]]]],[[8,[0,[9,10,11]]],[[13,[1,12]]]],[[8,[0,[9,10,11]]],[[13,[1,12]]]],[[]],[[],13],[[],13],[[],14],[1,3]],"c":[],"p":[[3,"SigId"],[4,"Ordering"],[15,"bool"],[3,"Formatter"],[6,"Result"],[8,"Hasher"],[4,"Option"],[6,"c_int"],[8,"Fn"],[8,"Sync"],[8,"Send"],[3,"Error"],[4,"Result"],[3,"TypeId"]]},\ -"simd_json":{"doc":"simd-json is a rust port of the simdjson c++ library. It …","t":"DNNNNNDNDENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNDENCNNNNNNCGNENNCNNNNNNNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCCLLLCLLLLLLLLLLLLLLLLOOLOLLLLLLLLALLAOOOOOOOLLLLCLLLLCFCCCCLLLLLLLLLLLLLLLLLLLLLLLLOALLNENLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLEINQNINQQNNNNQQINNNINQCNQNNIIEILKKKKLLKLLLKLKKKLLLKLLLLKKKKLLLLLLLLLLLLKKLLLLLLLLLKLLLLLLLLLLLLLLLLLKLLLLLLLLLKKKKKKLKKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKNNNELLLLLFFFFFFFLLFFFLFFFFFLLLEINQNNCINNQQNENNNNNNNNNQQINNNNNINQGICENQQDNNNNNNNIIIEILKKKKLLKLLLKLKKKLLLKLLLLLLLLALLLLLLLLLFKKLLLLLLMLLLLLLLLLAKKLLLLLLLLLLLLKKLLLLLLLLLMKLLLLKKKLLLLLLLLLLLLLLLLKLLLLLLLLLKKKKKKKLKAKLALLKLKLACCLLLCCLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKNGNNNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLIDDDQDLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLNGNNNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLEINQININNQQNENNNNNNNQQINNNNINQNQQDNNNNNNIIEILKKKKLLKLLLKLKKKLLLKLLLLLKKMKKLLLLLLLLLLLLKKLLLLLLLLLKMLKLLLLLLLLLLLLLLLLLKLLLLLLLLLKKKKKLKLKKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLLKKLLLLLLNENNNDLLLLLLLLLLLLLLLLLLL","n":["AlignedBuf","Array","BadKeyType","Bool","Bool","Custom","Deserializer","Eof","Error","ErrorType","ExpectedArray","ExpectedArrayComma","ExpectedArrayContent","ExpectedBoolean","ExpectedEnum","ExpectedFloat","ExpectedInteger","ExpectedMap","ExpectedMapComma","ExpectedMapEnd","ExpectedNull","ExpectedNumber","ExpectedObjectColon","ExpectedObjectContent","ExpectedObjectKey","ExpectedSigned","ExpectedString","ExpectedUnsigned","Extended","F64","F64","I128","I64","I64","InputTooLarge","InternalError","InvalidEscape","InvalidExponent","InvalidNumber","InvalidUnicodeCodepoint","InvalidUnicodeEscape","InvalidUtf8","Io","KeyMustBeAString","KnownKey","KnownKeyError","NoStructure","Node","NotAnObject","Null","Null","Object","Overflow","Parser","Result","Result","Serde","StaticNode","String","Syntax","Tape","TrailingData","U128","U64","U64","Unexpected","UnexpectedCharacter","UnterminatedString","ValueType","as_array","as_bool","as_f64","as_i64","as_object","as_str","as_u64","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cast_f64","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cow","custom","custom","default","default","deref","deref_mut","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_reader","from_slice","from_slice","from_slice_with_buffer","from_slice_with_buffers","from_str","generic","index","index","index_mut","index_mut","insert","into","into","into","into","into","into","into","into","into_tape","is_null","json","json_typed","key","likely","lookup","lookup_mut","lookup_or_insert_mut","map_insert","map_lookup","map_lookup_mut","map_lookup_or_insert_mut","next_","prelude","provide","provide","serde","static_cast_i128","static_cast_i32","static_cast_i64","static_cast_i8","static_cast_u32","static_cast_u64","stry","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string_pretty","to_tape","to_vec","to_vec_pretty","to_writer","to_writer_pretty","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unlikely","value","value_type","with_capacity","Borrowed","Cow","Owned","add","add","add_assign","add_assign","as_ref","as_ref","borrow","borrow","borrow_mut","clone","clone_from","clone_into","cmp","default","deref","deserialize","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","from_iter","from_iter","hash","into","into_deserializer","into_owned","is_borrowed","is_owned","ne","ne","ne","ne","ne","ne","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","serialize","to_mut","to_owned","to_string","to_string","try_from","try_into","type_id","AccessError","Array","Array","Array","Bool","Builder","Custom","Element","Element","Extended","F64","I128","I64","Key","Key","Mutable","NotAnArray","NotAnObject","Null","Object","Object","Object","ObjectInit","String","Target","U128","U64","ValueAccess","ValueTrait","ValueType","Writable","array","array_with_capacity","as_array","as_array_mut","as_bool","as_char","as_f32","as_f64","as_i128","as_i16","as_i32","as_i64","as_i8","as_object","as_object_mut","as_str","as_u128","as_u16","as_u32","as_u64","as_u8","as_usize","cast_f64","contains_key","encode","encode_pp","get","get","get","get_array","get_bool","get_f32","get_f64","get_i128","get_i16","get_i32","get_i64","get_i8","get_idx","get_idx_mut","get_mut","get_mut","get_mut","get_object","get_str","get_u128","get_u16","get_u32","get_u64","get_u8","get_usize","insert","insert","is_array","is_bool","is_char","is_custom","is_empty","is_empty","is_f32","is_f64","is_f64_castable","is_float","is_i128","is_i16","is_i32","is_i64","is_i8","is_integer","is_null","is_number","is_object","is_str","is_u128","is_u16","is_u32","is_u64","is_u8","is_usize","iter","iter","keys","len","len","null","object","object_with_capacity","pop","pop","push","push","remove","remove","try_as_array","try_as_bool","try_as_char","try_as_f32","try_as_f64","try_as_i128","try_as_i16","try_as_i32","try_as_i64","try_as_i8","try_as_object","try_as_str","try_as_u128","try_as_u16","try_as_u32","try_as_u64","try_as_u8","try_as_usize","try_cast_f64","try_get","try_get_array","try_get_bool","try_get_f32","try_get_f64","try_get_i128","try_get_i16","try_get_i32","try_get_i64","try_get_i8","try_get_idx","try_get_object","try_get_str","try_get_u128","try_get_u16","try_get_u32","try_get_u64","try_get_u8","try_get_usize","try_insert","try_pop","try_push","try_remove","value_type","values","write","write_pp","NanOrInfinity","NumberOutOfBounds","Oops","SerdeConversionError","borrow","borrow_mut","fmt","fmt","from","from_borrowed_value","from_owned_value","from_reader","from_refborrowed_value","from_refowned_value","from_slice","from_str","into","provide","to_borrowed_value","to_owned_value","to_string","to_string","to_string_pretty","to_vec","to_vec_pretty","to_writer","to_writer_pretty","try_from","try_into","type_id","AccessError","Array","Array","Array","Bool","Bool","BorrowedValue","Builder","Char","Custom","Element","Element","Extended","ExtendedValueType","F32","F64","F64","I128","I16","I32","I64","I64","I8","Key","Key","Mutable","None","NotAnArray","NotAnObject","Null","Null","Object","Object","Object","ObjectHasher","ObjectInit","OwnedValue","StaticNode","String","String","Target","TryTypeError","U128","U16","U32","U64","U64","U8","Usize","Value","ValueAccess","ValueInto","ValueType","Writable","array","array_with_capacity","as_array","as_array_mut","as_bool","as_char","as_f32","as_f64","as_i128","as_i16","as_i32","as_i64","as_i8","as_object","as_object_mut","as_str","as_u128","as_u16","as_u32","as_u64","as_u8","as_usize","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrowed","cast_f64","clone","clone","clone","clone_into","clone_into","clone_into","contains_key","default","deserialize","encode","encode_pp","eq","eq","equivalent","equivalent","equivalent","equivalent","expected","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","generator","get","get","get","get_array","get_bool","get_f32","get_f64","get_i128","get_i16","get_i32","get_i64","get_i8","get_idx","get_idx_mut","get_mut","get_mut","get_mut","get_object","get_str","get_u128","get_u16","get_u32","get_u64","get_u8","get_usize","got","insert","insert","into","into","into","into_array","into_object","into_string","is_array","is_bool","is_char","is_custom","is_empty","is_empty","is_f32","is_f64","is_f64_castable","is_float","is_i128","is_i16","is_i32","is_i64","is_i8","is_integer","is_null","is_number","is_object","is_str","is_u128","is_u16","is_u32","is_u64","is_u8","is_usize","iter","iter","keys","len","len","new","null","object","object_with_capacity","owned","pop","pop","prelude","provide","provide","push","push","remove","remove","tape","to_borrowed_value","to_borrowed_value_with_buffers","to_owned","to_owned","to_owned","to_owned_value","to_owned_value_with_buffers","to_string","to_string","to_string","try_as_array","try_as_bool","try_as_char","try_as_f32","try_as_f64","try_as_i128","try_as_i16","try_as_i32","try_as_i64","try_as_i8","try_as_object","try_as_str","try_as_u128","try_as_u16","try_as_u32","try_as_u64","try_as_u8","try_as_usize","try_cast_f64","try_from","try_from","try_from","try_get","try_get_array","try_get_bool","try_get_f32","try_get_f64","try_get_i128","try_get_i16","try_get_i32","try_get_i64","try_get_i8","try_get_idx","try_get_object","try_get_str","try_get_u128","try_get_u16","try_get_u32","try_get_u64","try_get_u8","try_get_usize","try_insert","try_into","try_into","try_into","try_into_array","try_into_object","try_into_string","try_pop","try_push","try_remove","type_id","type_id","type_id","value_type","values","write","write_pp","Array","Object","Object","Static","String","Value","array_with_capacity","as_array","as_array_mut","as_bool","as_f64","as_i128","as_i64","as_object","as_object_mut","as_str","as_u64","borrow","borrow_mut","cast_f64","clone","clone_into","clone_static","default","deserialize","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","encode","encode_pp","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","index","index","index_mut","index_mut","into","into_array","into_deserializer","into_object","into_static","into_string","is_null","new","null","object_with_capacity","serialize","to_owned","to_string","to_value","to_value_with_buffers","try_from","try_from","try_into","try_into","type_id","value_type","write","write_pp","BaseGenerator","DumpGenerator","PrettyGenerator","PrettyWriterGenerator","T","WriterGenerator","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","consume","consume","dedent","dedent","dedent","default","from","from","from","from","get_writer","get_writer","get_writer","get_writer","get_writer","indent","indent","indent","into","into","into","into","new","new","new","new","new_line","new_line","new_line","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","write","write","write","write_char","write_char","write_char","write_float","write_int","write_min","write_min","write_min","write_min","write_min","write_simple_str_content","write_simple_string","write_str_simd","write_string","write_string_complex","write_string_content","Array","Object","Object","Static","String","Value","array_with_capacity","as_array","as_array_mut","as_bool","as_f64","as_i128","as_i64","as_object","as_object_mut","as_str","as_u64","borrow","borrow_mut","cast_f64","clone","clone_into","default","deserialize","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","encode","encode_pp","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","index","index","index_mut","index_mut","into","into_array","into_deserializer","into_object","into_string","is_null","new","null","object_with_capacity","serialize","to_owned","to_string","to_value","to_value_with_buffers","try_from","try_from","try_into","try_into","type_id","value_type","write","write_pp","AccessError","Array","Array","Array","BaseGenerator","Bool","Builder","Char","Custom","Element","Element","Extended","ExtendedValueType","F32","F64","I128","I16","I32","I64","I8","Key","Key","Mutable","None","NotAnArray","NotAnObject","Null","Object","Object","Object","String","T","Target","TryTypeError","U128","U16","U32","U64","U8","Usize","Value","ValueAccess","ValueType","Writable","array","array_with_capacity","as_array","as_array_mut","as_bool","as_char","as_f32","as_f64","as_i128","as_i16","as_i32","as_i64","as_i8","as_object","as_object_mut","as_str","as_u128","as_u16","as_u32","as_u64","as_u8","as_usize","cast_f64","contains_key","dedent","encode","encode_pp","expected","get","get","get","get_array","get_bool","get_f32","get_f64","get_i128","get_i16","get_i32","get_i64","get_i8","get_idx","get_idx_mut","get_mut","get_mut","get_mut","get_object","get_str","get_u128","get_u16","get_u32","get_u64","get_u8","get_usize","get_writer","got","indent","insert","insert","is_array","is_bool","is_char","is_custom","is_empty","is_empty","is_f32","is_f64","is_f64_castable","is_float","is_i128","is_i16","is_i32","is_i64","is_i8","is_integer","is_null","is_number","is_object","is_str","is_u128","is_u16","is_u32","is_u64","is_u8","is_usize","iter","iter","keys","len","len","new_line","null","object","object_with_capacity","pop","pop","push","push","remove","remove","try_as_array","try_as_bool","try_as_char","try_as_f32","try_as_f64","try_as_i128","try_as_i16","try_as_i32","try_as_i64","try_as_i8","try_as_object","try_as_str","try_as_u128","try_as_u16","try_as_u32","try_as_u64","try_as_u8","try_as_usize","try_cast_f64","try_get","try_get_array","try_get_bool","try_get_f32","try_get_f64","try_get_i128","try_get_i16","try_get_i32","try_get_i64","try_get_i8","try_get_idx","try_get_object","try_get_str","try_get_u128","try_get_u16","try_get_u32","try_get_u64","try_get_u8","try_get_usize","try_insert","try_pop","try_push","try_remove","value_type","values","write","write","write_char","write_float","write_int","write_min","write_pp","write_simple_str_content","write_simple_string","write_str_simd","write_string","write_string_complex","write_string_content","Array","Node","Object","Static","String","Tape","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","eq","fmt","from","from","into","into","to_owned","try_from","try_from","try_into","try_into","type_id","type_id"],"q":[[0,"simd_json"],[287,"simd_json::cow"],[382,"simd_json::prelude"],[552,"simd_json::serde"],[582,"simd_json::value"],[842,"simd_json::value::borrowed"],[1007,"simd_json::value::generator"],[1081,"simd_json::value::owned"],[1246,"simd_json::value::prelude"],[1446,"simd_json::value::tape"]],"d":["SIMD aligned buffer","an array","The key of a map isn’t a string","A boolean value","a boolean","a custom type","Deserializer struct to deserialize a JSON","Early End Of File","Parser error","Error types encountered while parsing","Expected an array","Expected a , in an array","Expected Array elements","expected an boolean","Expected an enum","Expected a float","Expected an integer","Expected a map","Expected a , in an object","Expected the object to end","Expected a null","Expected a number","Expected an : to separate key and value in an object","Expected Object elements","Expected Object Key","Expected a signed number","Expected a string","Expected an unsigned number","Extended types that do not have a real representation in …","A floating point value","a float type","a 128 bit signed integer","A signed 64 bit integer.","a signed integer type","Simd-json only supports inputs of up to 4GB in size.","Internal error","Invalid escape sequence","Invalid exponent in a floating point number","Invalid number","Invalid Unicode codepoint","Invalid Unicode escape sequence","Invalid UTF8 codepoint","IO error","Object Key isn’t a string","Well known key that can be looked up in a Value faster. It …","Error for known keys","Non structural character","","The target passed wasn’t an object","The null value","null","an object","Overflow of a limited buffer","Parser Error","","simd-json Result type","Generic serde error","Static tape node","a string type","Generic syntax error","","Trailing data","a 128 bit unsiged integer","An unsigned 64 bit integer.","a unsigned integer type","A specific type was expected but another one encountered.","Unexpected character","Unterminated string","Types of JSON values","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Reexport of Cow Reexport of Cow","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","","","Creates a serializer from a mutable slice of bytes","Creates a serializer from a mutable slice of bytes using a …","Creates a serializer from a mutable slice of bytes using a …","","Create a generic error","","","","","Inserts a value key into Value, returns None if the key …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Extracts the tape from the Deserializer","","Taken from: …","Adapted from: …","The known key","possible compiler hint that a branch is likely","Looks up this key in a Value, returns None if the key wasn…","Looks up this key in a Value, returns None if the key wasn…","Looks up this key in a Value, inserts with when the key …","Inserts a value key into map, returns None if the key wasn…","Looks up this key in a Object<Cow<'value> the inner …","Looks up this key in a Object<'value>, the inner …","Looks up this key in a Object<'value>, the inner …","Same as next() but we pull out the check so we don’t …","Default trait imports;","","","serde related helper functions","static cast to an i64","static cast to an i32","static cast to an i64","static cast to an i8","static cast to an u32","static cast to an u64","FROM serde-json We only use our own error type; no need …","","","","","","","","","","","Creates a tape from the input for later consumption","","","","","","","","","","","","","","","","","","","","","","","","","","","","","possible compiler hint that a branch is unlikely","simd-json JSON-DOM value","","Creates a new buffer that is aligned with the simd …","Borrowed data.","A clone-on-write smart pointer.","Owned data.","","","","","","","","","","","","","","Creates an owned Cow<’a, B> with the default value for …","","","","","","","","","","","","","","","","","","","","","","","","","","Creates an Owned variant of Cow from an owned instance of …","Creates a clone-on-write pointer from an owned instance of …","Converts the string reference into a Cow::Borrowed.","Returns the argument unchanged.","Moves the string into a Cow::Owned.","Creates a clone-on-write pointer from a reference to Path.","Converts a string slice into a Borrowed variant. No heap …","Converts a String reference into a Borrowed variant. No …","Converts a &CString into a borrowed Cow without copying or …","Creates a Borrowed variant of Cow from a slice.","Creates a clone-on-write pointer from a reference to …","Creates a Borrowed variant of Cow from a reference to Vec.","Converts a CString into an owned Cow without copying or …","Converts a CStr into a borrowed Cow without copying or …","Converts a String into an Owned variant. No heap …","Converts the string reference into a Cow::Borrowed.","","","","","","Calls U::from(self).","","Extracts the owned data.","Returns true if the data is borrowed, i.e. if to_mut would …","Returns true if the data is owned, i.e. if to_mut would be …","","","","","","","","","","","","","","","","","","","","","Acquires a mutable reference to the owned form of the data.","","","","","","","Prelude to include needed traits An access error for …","Prelude to include needed traits Functions guaranteed for …","an array","The array structure","a boolean","Prelude to include needed traits Support of builder …","a custom type","Elements of the array","The values in the object","Extended types that do not have a real representation in …","a float type","a 128 bit signed integer","a signed integer type","The key in the objects","The type for Objects","Prelude to include needed traits Mutatability for values","An access attempt to a Value was made under the assumption …","An access attempt to a Value was made under the assumption …","null","Prelude to include needed traits A JSON Object","an object","The object structure","","a string type","The target for nested lookups","a 128 bit unsiged integer","a unsigned integer type","Prelude to include needed traits Trait to allow accessing …","Prelude to include needed traits The Value exposes common …","Prelude to include needed traits Types of JSON values","Prelude to include needed traits A Value that can be …","Returns an empty array","Returns an empty array with a given capacity","Tries to represent the value as an array and returns a …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as an i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Casts the current value to a f64 if possible, this will …","Checks if a Value contains a given key. This will return …","Encodes the value into it’s JSON representation as a …","Encodes the value into it’s JSON representation as a …","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on a key, returns None if the …","Tries to get an element of an object as a array","Tries to get an element of an object as a bool","Tries to get an element of an object as a f32","Tries to get an element of an object as a f64","Tries to get an element of an object as a i128","Tries to get an element of an object as a i16","Tries to get an element of an object as a i32","Tries to get an element of an object as a i64","Tries to get an element of an object as a i8","Gets a ref to a value based on n index, returns None if the","Same as get_idx but returns a mutable ref instead","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Same as get but returns a mutable ref instead","Tries to get an element of an object as a object","Tries to get an element of an object as a str","Tries to get an element of an object as a u128","Tries to get an element of an object as a u16","Tries to get an element of an object as a u32","Tries to get an element of an object as a u64","Tries to get an element of an object as a u8","Tries to get an element of an object as a usize","Inserts a value","Insert into this Value as an Object. Will return an …","returns true if the current value can be represented as an …","returns true if the current value a bool","returns true if the current value can be represented as a …","returns if a type is a custom type","Returns if the array is empty","Returns if the array is empty","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be cast into a f64","returns true if the current value a floatingpoint number","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value a integer number","returns true if the current value is null","returns true if the current value a number either float or …","returns true if the current value can be represented as an …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","Returns anull value","Returns an empty object","Returns an empty object with a given capacity","Returns the last element of the array or None","Pops from this Value as an Array. Will return an …","Appends e to the end of the Array","Pushes to this Value as an Array. Will return an …","Removes a value from the object","Remove from this Value as an Object. Will return an …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as a i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Tries to Casts the current value to a f64 if possible, …","Trys to get a value based on a key, returns a TryTypeError …","Tries to get an element of an object as an array, returns …","Tries to get an element of an object as a bool, returns an …","Tries to get an element of an object as a f32, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a i128, returns an …","Tries to get an element of an object as a i16, returns an …","Tries to get an element of an object as a i32, returns an …","Tries to get an element of an object as a i64, returns an …","Tries to get an element of an object as a i8, returns an …","Tries to get a value based on n index, returns a type …","Tries to get an element of an object as an object, returns …","Tries to get an element of an object as a str, returns an …","Tries to get an element of an object as a u128, returns an …","Tries to get an element of an object as a u16, returns an …","Tries to get an element of an object as a u32, returns an …","Tries to get an element of an object as a u64, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a usize, returns …","Tries to insert into this Value as an Object. If the Value …","Tries to pop from a Value as an Array. if the Value is any …","Tries to push to a Value if as an Array. This funciton …","Tries to remove from this Value as an Object. If the Value …","Gets the type of the current value","Iterates over the values","Encodes the value into it’s JSON representation into a …","Encodes the value into it’s JSON representation into a …","Serde can not reflect NAN or Infinity","The number is out of the 64 bit bound","Something horrible went wrong, please open a ticket at …","Error while converting from or to serde values","","","","","Returns the argument unchanged.","Tries to convert a BorrowedValue into a struct that …","Tries to convert a OwnedValue into a struct that implements","parses a Reader using a serde deserializer.","Tries to convert a &BorrowedValue into a struct that …","Tries to convert a &OwnedValue into a struct that …","parses a byte slice using a serde deserializer. note that …","parses a str using a serde deserializer. note that the …","Calls U::from(self).","","Tries to convert a struct that implements serde’s …","Tries to convert a struct that implements serde’s …","Write a value to a string","","Write a value to a string","Write a value to a vector","Write a value to a vector","Write a value to a string","Write a value to a string","","","","An access error for ValueType","Functions guaranteed for any array object","an array","The array structure","A boolean value","a boolean","","Support of builder methods for traits.","A single utf-8 character","a custom type","Elements of the array","The values in the object","Extended types that do not have a real representation in …","Extended types that have no native representation in JSON","A 32 bit floating point value","A floating point value","a float type","a 128 bit signed integer","A 16 bit signed integer value","A 32 bit signed integer value","A signed 64 bit integer.","a signed integer type","A 8 bit signed integer value","The key in the objects","The type for Objects","Mutatability for values","Not a value at all","An access attempt to a Value was made under the assumption …","An access attempt to a Value was made under the assumption …","The null value","null","A JSON Object","an object","The object structure","Hasher used for objects","Provides new function for objects if the ObjectHasher is …","","Static tape node","a string type","The type for Strings","The target for nested lookups","A type error thrown by the try_* functions","a 128 bit unsiged integer","A 16 bit unsigned integer value","A 32 bit unsigned integer value","An unsigned 64 bit integer.","a unsigned integer type","A 8 bit unsigned integer value","A useize value","The Value exposes common interface for values, this allows …","Trait to allow accessing data inside a Value","A trait that specifies how to turn the Value into it’s …","Types of JSON values","A Value that can be serialized and written","Returns an empty array","Returns an empty array with a given capacity","Tries to represent the value as an array and returns a …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as an i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","","","","","","","This module holds the two dom implementations we use. We …","Casts the current value to a f64 if possible, this will …","","","","","","","Checks if a Value contains a given key. This will return …","","Parses a slice of bytes into a Value dom. This function …","Encodes the value into it’s JSON representation as a …","Encodes the value into it’s JSON representation as a …","","","","","","","The expected value type","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Traits for serializing JSON","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on a key, returns None if the …","Tries to get an element of an object as a array","Tries to get an element of an object as a bool","Tries to get an element of an object as a f32","Tries to get an element of an object as a f64","Tries to get an element of an object as a i128","Tries to get an element of an object as a i16","Tries to get an element of an object as a i32","Tries to get an element of an object as a i64","Tries to get an element of an object as a i8","Gets a ref to a value based on n index, returns None if the","Same as get_idx but returns a mutable ref instead","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Same as get but returns a mutable ref instead","Tries to get an element of an object as a object","Tries to get an element of an object as a str","Tries to get an element of an object as a u128","Tries to get an element of an object as a u16","Tries to get an element of an object as a u32","Tries to get an element of an object as a u64","Tries to get an element of an object as a u8","Tries to get an element of an object as a usize","The actual value type","Inserts a value","Insert into this Value as an Object. Will return an …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Tries to turn the value into it’s array representation","Tries to turn the value into it’s object representation","Tries to turn the value into it’s string representation","returns true if the current value can be represented as an …","returns true if the current value a bool","returns true if the current value can be represented as a …","returns if a type is a custom type","Returns if the array is empty","Returns if the array is empty","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be cast into a f64","returns true if the current value a floatingpoint number","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value a integer number","returns true if the current value is null","returns true if the current value a number either float or …","returns true if the current value can be represented as an …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","Creates a new object","Returns anull value","Returns an empty object","Returns an empty object with a given capacity","Owned, lifetimeless version of the value for times when …","Returns the last element of the array or None","Pops from this Value as an Array. Will return an …","Prelude for traits","","","Appends e to the end of the Array","Pushes to this Value as an Array. Will return an …","Removes a value from the object","Remove from this Value as an Object. Will return an …","Tape implementation","","","","","","","","","","","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as a i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Tries to Casts the current value to a f64 if possible, …","","","","Trys to get a value based on a key, returns a TryTypeError …","Tries to get an element of an object as an array, returns …","Tries to get an element of an object as a bool, returns an …","Tries to get an element of an object as a f32, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a i128, returns an …","Tries to get an element of an object as a i16, returns an …","Tries to get an element of an object as a i32, returns an …","Tries to get an element of an object as a i64, returns an …","Tries to get an element of an object as a i8, returns an …","Tries to get a value based on n index, returns a type …","Tries to get an element of an object as an object, returns …","Tries to get an element of an object as a str, returns an …","Tries to get an element of an object as a u128, returns an …","Tries to get an element of an object as a u16, returns an …","Tries to get an element of an object as a u32, returns an …","Tries to get an element of an object as a u64, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a usize, returns …","Tries to insert into this Value as an Object. If the Value …","","","","Tries to turn the value into it’s array representation","Tries to turn the value into it’s object representation","Tries to turn the value into it’s string representation","Tries to pop from a Value as an Array. if the Value is any …","Tries to push to a Value if as an Array. This funciton …","Tries to remove from this Value as an Object. If the Value …","","","","Gets the type of the current value","Iterates over the values","Encodes the value into it’s JSON representation into a …","Encodes the value into it’s JSON representation into a …","array type","Representation of a JSON object","object type","Static values","string type","Borrowed JSON-DOM Value, consider using the ValueTrait to …","","","","","","","","","","","","","","","","","Clones the current value and enforces a static lifetime, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","Calls U::from(self).","","","","Enforces static lifetime on a borrowed value, this will …","","","","","","","","","Parses a slice of bytes into a Value dom. This function …","Parses a slice of bytes into a Value dom. This function …","","","","","","","","","Base generator trait","Simple dump Generator","Pretty Generator","Pretty Writer Generator","The writer","Writer Generator","","","","","","","","","Returns the data as a String","Returns the data as a String","dedents one step","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","returns teh writer","","","","","indents one step","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a new generator","Creates a new pretty priting generator","Creates a new generator","Creates a new generator","writes new line","","","","","","","","","","","","","","","Write a slice","","","Write a char","","","writes a float value","writes an integer value","write with minimum","","","","","writes a simple string content (usually short and non …","writes a simple string (usually short and non escaped) …","Writes a string with simd-acceleration","writes a string","Writes a string with escape sequences","writes a string","array type","Representation of a JSON object","object type","Static values","string type","Owned JSON-DOM Value, consider using the ValueTrait to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","Calls U::from(self).","","","","","","","","","","","","Parses a slice of bytes into a Value dom. This function …","Parses a slice of bytes into a Value dom. This function …","","","","","","","","","An access error for ValueType","Functions guaranteed for any array object","an array","The array structure","Base generator trait","a boolean","Support of builder methods for traits.","A single utf-8 character","a custom type","Elements of the array","The values in the object","Extended types that do not have a real representation in …","Extended types that have no native representation in JSON","A 32 bit floating point value","a float type","a 128 bit signed integer","A 16 bit signed integer value","A 32 bit signed integer value","a signed integer type","A 8 bit signed integer value","The key in the objects","The type for Objects","Mutatability for values","Not a value at all","An access attempt to a Value was made under the assumption …","An access attempt to a Value was made under the assumption …","null","A JSON Object","an object","The object structure","a string type","The writer","The target for nested lookups","A type error thrown by the try_* functions","a 128 bit unsiged integer","A 16 bit unsigned integer value","A 32 bit unsigned integer value","a unsigned integer type","A 8 bit unsigned integer value","A useize value","The Value exposes common interface for values, this allows …","Trait to allow accessing data inside a Value","Types of JSON values","A Value that can be serialized and written","Returns an empty array","Returns an empty array with a given capacity","Tries to represent the value as an array and returns a …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as an i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Casts the current value to a f64 if possible, this will …","Checks if a Value contains a given key. This will return …","dedents one step","Encodes the value into it’s JSON representation as a …","Encodes the value into it’s JSON representation as a …","The expected value type","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on a key, returns None if the …","Tries to get an element of an object as a array","Tries to get an element of an object as a bool","Tries to get an element of an object as a f32","Tries to get an element of an object as a f64","Tries to get an element of an object as a i128","Tries to get an element of an object as a i16","Tries to get an element of an object as a i32","Tries to get an element of an object as a i64","Tries to get an element of an object as a i8","Gets a ref to a value based on n index, returns None if the","Same as get_idx but returns a mutable ref instead","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Same as get but returns a mutable ref instead","Tries to get an element of an object as a object","Tries to get an element of an object as a str","Tries to get an element of an object as a u128","Tries to get an element of an object as a u16","Tries to get an element of an object as a u32","Tries to get an element of an object as a u64","Tries to get an element of an object as a u8","Tries to get an element of an object as a usize","returns teh writer","The actual value type","indents one step","Inserts a value","Insert into this Value as an Object. Will return an …","returns true if the current value can be represented as an …","returns true if the current value a bool","returns true if the current value can be represented as a …","returns if a type is a custom type","Returns if the array is empty","Returns if the array is empty","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be cast into a f64","returns true if the current value a floatingpoint number","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value a integer number","returns true if the current value is null","returns true if the current value a number either float or …","returns true if the current value can be represented as an …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","writes new line","Returns anull value","Returns an empty object","Returns an empty object with a given capacity","Returns the last element of the array or None","Pops from this Value as an Array. Will return an …","Appends e to the end of the Array","Pushes to this Value as an Array. Will return an …","Removes a value from the object","Remove from this Value as an Object. Will return an …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as a i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Tries to Casts the current value to a f64 if possible, …","Trys to get a value based on a key, returns a TryTypeError …","Tries to get an element of an object as an array, returns …","Tries to get an element of an object as a bool, returns an …","Tries to get an element of an object as a f32, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a i128, returns an …","Tries to get an element of an object as a i16, returns an …","Tries to get an element of an object as a i32, returns an …","Tries to get an element of an object as a i64, returns an …","Tries to get an element of an object as a i8, returns an …","Tries to get a value based on n index, returns a type …","Tries to get an element of an object as an object, returns …","Tries to get an element of an object as a str, returns an …","Tries to get an element of an object as a u128, returns an …","Tries to get an element of an object as a u16, returns an …","Tries to get an element of an object as a u32, returns an …","Tries to get an element of an object as a u64, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a usize, returns …","Tries to insert into this Value as an Object. If the Value …","Tries to pop from a Value as an Array. if the Value is any …","Tries to push to a Value if as an Array. This funciton …","Tries to remove from this Value as an Object. If the Value …","Gets the type of the current value","Iterates over the values","Encodes the value into it’s JSON representation into a …","Write a slice","Write a char","writes a float value","writes an integer value","write with minimum","Encodes the value into it’s JSON representation into a …","writes a simple string content (usually short and non …","writes a simple string (usually short and non escaped) …","Writes a string with simd-acceleration","writes a string","Writes a string with escape sequences","writes a string","An array with a given size starts here. The next size …","Tape Node","An Object with the given size starts here. the following …","A static value that is interned into the tape, it can be …","A string, located inside the input slice","Tape","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","",""],"i":[0,10,32,1,10,10,0,32,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,10,1,10,10,1,10,32,32,32,32,32,32,32,32,32,32,0,0,32,0,12,1,10,10,32,32,0,0,32,0,10,32,0,32,10,1,10,32,32,32,0,1,1,1,1,1,1,1,1,10,16,15,32,14,11,12,1,10,16,15,32,14,11,12,1,1,10,11,12,1,10,11,12,0,14,14,1,10,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,10,32,14,11,12,10,10,1,1,10,10,32,14,14,11,12,12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,10,16,15,32,14,14,11,11,12,0,0,16,16,16,0,14,1,1,1,1,11,1,10,16,15,32,14,11,12,16,1,0,0,11,0,11,11,11,11,11,11,11,16,0,14,12,0,0,0,0,0,0,0,0,1,10,11,12,0,1,10,14,12,0,0,0,0,0,0,1,10,16,15,32,14,11,12,1,10,16,15,32,14,11,12,1,10,16,15,32,14,11,12,0,0,1,15,40,0,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,10,99,10,0,10,100,101,10,10,10,10,101,99,0,73,73,10,0,10,99,0,10,99,10,10,0,0,0,0,84,84,99,102,99,99,99,99,99,99,99,99,99,99,102,99,99,99,99,99,99,99,99,99,103,103,100,101,99,99,99,99,99,99,99,99,99,99,99,102,100,101,102,99,99,99,99,99,99,99,99,101,102,92,92,92,92,100,101,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,100,101,101,100,101,84,84,84,100,102,100,102,101,102,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,102,102,102,102,99,101,103,103,78,78,78,0,78,78,78,78,78,0,0,0,0,0,0,0,78,78,0,0,0,78,0,0,0,0,0,78,78,78,0,0,10,99,1,10,0,0,83,10,100,101,10,0,83,1,10,10,83,83,1,10,83,101,99,0,83,73,73,1,10,0,10,99,0,0,0,0,10,104,99,0,10,83,83,1,10,83,83,0,0,0,0,0,84,84,99,102,99,99,99,99,99,99,99,99,99,99,102,99,99,99,99,99,99,99,73,83,76,73,83,76,0,99,73,83,76,73,83,76,99,83,0,103,103,73,83,73,73,83,83,76,73,73,83,83,76,76,73,83,76,0,100,101,99,99,99,99,99,99,99,99,99,99,99,102,100,101,102,99,99,99,99,99,99,99,99,76,101,102,73,83,76,104,104,104,92,92,92,92,100,101,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,100,101,101,100,101,105,84,84,84,0,100,102,0,73,76,100,102,101,102,0,0,0,73,83,76,0,0,73,83,76,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,73,83,76,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,102,73,83,76,104,104,104,102,102,102,73,83,76,99,101,103,103,37,0,37,37,37,0,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,42,37,37,37,37,37,0,0,37,37,37,37,37,37,37,37,0,0,0,0,106,0,93,94,96,95,93,94,96,95,93,94,106,94,95,93,93,94,96,95,106,93,94,96,95,106,94,95,93,94,96,95,93,94,96,95,106,94,95,93,94,96,95,93,94,96,95,93,94,96,95,106,93,94,106,93,94,106,106,106,93,94,96,95,106,106,106,106,106,106,80,0,80,80,80,0,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,98,80,80,80,80,80,0,0,80,80,80,80,80,80,80,80,0,0,10,99,0,10,0,83,10,100,101,10,0,83,10,10,83,83,10,83,101,99,0,83,73,73,10,0,10,99,10,106,99,0,10,83,83,10,83,83,0,0,0,0,84,84,99,102,99,99,99,99,99,99,99,99,99,99,102,99,99,99,99,99,99,99,99,99,106,103,103,76,100,101,99,99,99,99,99,99,99,99,99,99,99,102,100,101,102,99,99,99,99,99,99,99,99,106,76,106,101,102,92,92,92,92,100,101,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,100,101,101,100,101,106,84,84,84,100,102,100,102,101,102,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,102,102,102,102,99,101,103,106,106,106,106,106,103,106,106,106,106,106,106,38,0,38,38,38,0,107,38,107,38,38,38,38,38,107,38,107,38,38,107,38,107,38,107,38],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,[[2,[3]]]],[1,[[2,[4]]]],[1,[[2,[5]]]],[1,[[2,[[7,[1,6]]]]]],[1,[[2,[8]]]],[1,[[2,[9]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,[[2,[4]]]],[1,1],[10,10],[11,11],[12,12],[[]],[[]],[[]],[[]],0,[13,14],[13,14],[[],1],[[],10],[15],[15],[[16,17],18],[[16,17],18],[[16,17],19],[[16,17],19],[[16,17],19],[[16,8,[20,[8]],17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],19],[[16,17],19],[[16,17],18],[[16,8,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,8,[20,[8]],17],18],[[16,21,17],18],[[16,8,21,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,8,17],18],[15],[[1,3],3],[[1,22],3],[[1,23],3],[[1,4],3],[[1,24],3],[[1,25],3],[[1,26],3],[[1,27],3],[[1,28],3],[[1,29],3],[[1,5],3],[[1,1],3],[1,3],[[1,30],3],[[1,8],3],[[1,8],3],[[1,9],3],[[1,31],3],[[1,21],3],[[10,10],3],[[32,32],3],[[14,14],3],[[11,11],3],[[12,12],3],[[],3],[[],3],[[1,33],[[19,[34]]]],[[1,33],[[19,[34]]]],[[10,33],[[19,[34]]]],[[10,33],[[19,[34]]]],[[32,33],35],[[14,33],35],[[14,33],35],[[11,33],35],[[12,33],35],[[12,33],35],[26,1],[25,1],[24,1],[31,1],[[]],[29,1],[21,1],[3,1],[4,1],[9,1],[22,1],[23,1],[[],1],[5,1],[[]],[[]],[[]],[[]],[36,14],[[]],[[],11],[[]],[[]],0,0,[[[20,[22]]],[[18,[16]]]],[[[20,[22]],[20,[22]]],[[18,[16]]]],[[[20,[22]],15,[20,[22]]],[[18,[16]]]],0,[32,14],[[1,8]],[[1,21]],[[1,21]],[[1,8]],[[11,37,37],[[19,[[2,[37]],12]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[16,[[39,[38]]]],[1,3],0,0,[11,[[40,[8]]]],0,[[11,37],[[2,[37]]]],[[11,37],[[2,[37]]]],[[11,37,41],[[19,[37,12]]]],[[11,42,37],[[2,[37]]]],[[11,42],[[2,[37]]]],[[11,42],[[2,[37]]]],[[11,42,41],37],[16,38],0,[43],[43],0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],0,[[],28],[[],28],[[],28],[[],28],0,[[[20,[22]]],[[18,[[39,[38]]]]]],0,0,0,0,[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],0,0,[1,10],[21,15],0,0,0,[[[40,[8]],8]],[[[40,[8]],[40,[8]]]],[[[40,[8]],[40,[8]]]],[[[40,[8]],8]],[[[40,[[0,[45,46]]]]],[[0,[45,46]]]],[[[40,[47]]],48],[[]],[[[40,[[0,[45,46]]]]],[[0,[45,46]]]],[[]],[[[40,[[0,[45,46]]]]],[[40,[[0,[45,46]]]]]],[[[40,[[0,[45,46]]]],[40,[[0,[45,46]]]]]],[[]],[[[40,[[0,[49,45,46]]]],[40,[[0,[49,45,46]]]]],50],[[],[[40,[[0,[45,46]]]]]],[[[40,[[0,[45,46]]]]],[[0,[45,46]]]],[51,[[19,[[40,[[0,[45,46]]]]]]]],[[[40,[48]],48],3],[[[40,[48]],47],3],[[[40,[8]],8],3],[[[40,[47]],48],3],[[[40,[[20,[[0,[52,53]]]]]],[39,[54]]],3],[[[40,[[0,[[52,[[0,[45,46]]]],45,46]]]],[40,[[0,[45,46]]]]],3],[[[40,[[20,[[0,[52,53]]]]]],20],3],[[[40,[48]],48],3],[[[40,[48]],55],3],[[[40,[47]],56],3],[[[40,[47]],47],3],[[[40,[47]],47],3],[[[40,[8]],8],3],[[[40,[47]],48],3],[[[40,[47]],55],3],[[[40,[48]],56],3],[[[40,[48]],47],3],[[[40,[8]],28],3],[[[40,[[20,[[0,[52,53]]]]]],20],3],[[],3],[[],3],[[[40,[[0,[57,45,46]]]],33],[[19,[34]]]],[[[40,[[0,[13,45,46]]]],33],[[19,[34]]]],[[[39,[53,58]]],[[40,[[20,[53]]]]]],[56,[[40,[48]]]],[55,[[40,[47]]]],[[]],[55,[[40,[47]]]],[48,[[40,[48]]]],[8,[[40,[8]]]],[28,[[40,[8]]]],[59,[[40,[60]]]],[[[20,[53]]],[[40,[[20,[53]]]]]],[56,[[40,[48]]]],[[[39,[53,58]]],[[40,[[20,[53]]]]]],[59,[[40,[60]]]],[60,[[40,[60]]]],[28,[[40,[8]]]],[47,[[40,[47]]]],[61,[[40,[8]]]],[61,[[40,[[20,[53]]]]]],[61,[[40,[8]]]],[61,[[40,[8]]]],[[[40,[[0,[62,45,46]]]],63]],[[]],[[[40,[8]]],[[65,[64]]]],[[[40,[[0,[45,46]]]]]],[[[40,[[0,[45,46]]]]],3],[[[40,[[0,[45,46]]]]],3],[[[40,[[20,[[0,[52,53]]]]]],[39,[54]]],3],[[[40,[8]],28],3],[[[40,[8]],8],3],[[[40,[8]],8],3],[[[40,[[20,[[0,[52,53]]]]]],20],3],[[[40,[[20,[[0,[52,53]]]]]],20],3],[[[40,[48]],55],[[2,[50]]]],[[[40,[48]],47],[[2,[50]]]],[[[40,[48]],47],[[2,[50]]]],[[[40,[48]],48],[[2,[50]]]],[[[40,[47]],55],[[2,[50]]]],[[[40,[[0,[[66,[[0,[[66,[[0,[[66,[[0,[66,45,46]]]],45,46]]]],45,46]]]],45,46]]]],[40,[[0,[[66,[[0,[[66,[[0,[[66,[[0,[66,45,46]]]],45,46]]]],45,46]]]],45,46]]]]],[[2,[50]]]],[[[40,[48]],48],[[2,[50]]]],[[[40,[47]],47],[[2,[50]]]],[[[40,[47]],47],[[2,[50]]]],[[[40,[47]],48],[[2,[50]]]],[[[40,[47]],56],[[2,[50]]]],[[[40,[47]],48],[[2,[50]]]],[[[40,[48]],56],[[2,[50]]]],[[[40,[[0,[67,45,46]]]],68],19],[[[40,[[0,[45,46]]]]]],[[]],[[[40,[8]]],28],[[],28],[[],19],[[],19],[[],44],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[21],[[],2],[[],2],[[],[[2,[3]]]],[[],[[2,[69]]]],[[],[[2,[29]]]],[[],[[2,[4]]]],[[],[[2,[27]]]],[[],[[2,[25]]]],[[],[[2,[23]]]],[[],[[2,[5]]]],[[],[[2,[24]]]],[[],2],[[],2],[[],[[2,[8]]]],[[],[[2,[30]]]],[[],[[2,[31]]]],[[],[[2,[26]]]],[[],[[2,[9]]]],[[],[[2,[22]]]],[[],[[2,[21]]]],[[],[[2,[4]]]],[[[0,[62,70,49,46]]],3],[[],28],[[],28],[[[71,[20]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[3]]]],[[[0,[62,70,49,46]]],[[2,[29]]]],[[[0,[62,70,49,46]]],[[2,[4]]]],[[[0,[62,70,49,46]]],[[2,[27]]]],[[[0,[62,70,49,46]]],[[2,[25]]]],[[[0,[62,70,49,46]]],[[2,[23]]]],[[[0,[62,70,49,46]]],[[2,[5]]]],[[[0,[62,70,49,46]]],[[2,[24]]]],[21,2],[21,2],[21,2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[8]]]],[[[0,[62,70,49,46]]],[[2,[30]]]],[[[0,[62,70,49,46]]],[[2,[31]]]],[[[0,[62,70,49,46]]],[[2,[26]]]],[[[0,[62,70,49,46]]],[[2,[9]]]],[[[0,[62,70,49,46]]],[[2,[22]]]],[[[0,[62,70,49,46]]],[[2,[21]]]],[[72,72],2],[[72,72],[[19,[2,73]]]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],[[75,[74,58]]]],[[],[[75,[74,58]]]],[[],[[75,[74,58]]]],[[],21],[[],21],[[]],[[]],[21],[[],2],[[],[[19,[2,73]]]],[[]],[72,[[19,[73]]]],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[19,[2,73]]]],[[],[[19,[76]]]],[[],[[19,[3,76]]]],[[],[[19,[69,76]]]],[[],[[19,[29,76]]]],[[],[[19,[4,76]]]],[[],[[19,[27,76]]]],[[],[[19,[25,76]]]],[[],[[19,[23,76]]]],[[],[[19,[5,76]]]],[[],[[19,[24,76]]]],[[],[[19,[76]]]],[[],[[19,[8,76]]]],[[],[[19,[30,76]]]],[[],[[19,[31,76]]]],[[],[[19,[26,76]]]],[[],[[19,[9,76]]]],[[],[[19,[22,76]]]],[[],[[19,[21,76]]]],[[],[[19,[4,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[3]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[29]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[4]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[27]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[25]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[23]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[5]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[24]],76]]]],[21,[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[8]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[30]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[31]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[26]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[9]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[22]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[21]],76]]]],[[72,72],2],[[],2],[72],[[[0,[62,70,49,46]]],2],[[],10],[[],[[75,[74,58]]]],[77,[[19,[36]]]],[77,[[19,[36]]]],0,0,0,0,[[]],[[]],[[78,33],35],[[78,33],35],[[]],[37,[[18,[79]]]],[80,[[18,[81]]]],[82,[[18,[81]]]],[37,[[18,[79]]]],[80,[[18,[81]]]],[[[20,[22]]],[[18,[79]]]],[8,[[18,[79]]]],[[]],[43],[67,[[18,[37]]]],[67,[[18,[80]]]],[[[0,[67,46]]],[[18,[28]]]],[[],28],[[[0,[67,46]]],[[18,[28]]]],[[[0,[67,46]]],[[18,[[39,[22]]]]]],[[[0,[67,46]]],[[18,[[39,[22]]]]]],[[77,[0,[67,46]]],18],[[77,[0,[67,46]]],18],[[],19],[[],19],[[],44],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[21],[[],2],[[],2],[[],[[2,[3]]]],[[],[[2,[69]]]],[[],[[2,[29]]]],[[],[[2,[4]]]],[[],[[2,[27]]]],[[],[[2,[25]]]],[[],[[2,[23]]]],[[],[[2,[5]]]],[[],[[2,[24]]]],[[],2],[[],2],[[],[[2,[8]]]],[[],[[2,[30]]]],[[],[[2,[31]]]],[[],[[2,[26]]]],[[],[[2,[9]]]],[[],[[2,[22]]]],[[],[[2,[21]]]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],[[2,[4]]]],[73,73],[83,83],[76,76],[[]],[[]],[[]],[[[0,[62,70,49,46]]],3],[[],83],[[[20,[22]]],[[18,[[0,[84,[85,[[39,[[0,[84,[85,[[39,[[0,[84,[85,[39]],[85,[86]]]]]]]],[85,[[86,[[0,[62,70,[85,[8]]]],[0,[84,[85,[39]],[85,[86]]]],87]]]]]]]]]],[85,[[86,[[0,[62,70,[85,[8]]]],[0,[84,[85,[[39,[[0,[84,[85,[39]],[85,[86]]]]]]]],[85,[[86,[[0,[62,70,[85,[8]]]],[0,[84,[85,[39]],[85,[86]]]],87]]]]]],87]]]]]]]]]],[[],28],[[],28],[[73,73],3],[[83,83],3],[[],3],[[],3],[[],3],[[],3],0,[[73,33],[[19,[34]]]],[[73,33],[[19,[34]]]],[[83,33],[[19,[34]]]],[[83,33],[[19,[34]]]],[[76,33],[[19,[34]]]],[[76,33],[[19,[34]]]],[[]],[[]],[[]],0,[[[71,[20]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[3]]]],[[[0,[62,70,49,46]]],[[2,[29]]]],[[[0,[62,70,49,46]]],[[2,[4]]]],[[[0,[62,70,49,46]]],[[2,[27]]]],[[[0,[62,70,49,46]]],[[2,[25]]]],[[[0,[62,70,49,46]]],[[2,[23]]]],[[[0,[62,70,49,46]]],[[2,[5]]]],[[[0,[62,70,49,46]]],[[2,[24]]]],[21,2],[21,2],[21,2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[8]]]],[[[0,[62,70,49,46]]],[[2,[30]]]],[[[0,[62,70,49,46]]],[[2,[31]]]],[[[0,[62,70,49,46]]],[[2,[26]]]],[[[0,[62,70,49,46]]],[[2,[9]]]],[[[0,[62,70,49,46]]],[[2,[22]]]],[[[0,[62,70,49,46]]],[[2,[21]]]],0,[[72,72],2],[[72,72],[[19,[2,73]]]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],[[75,[74,58]]]],[[],[[75,[74,58]]]],[[],[[75,[74,58]]]],[[],21],[[],21],[[]],[[]],[[]],[21],0,[[],2],[[],[[19,[2,73]]]],0,[43],[43],[[]],[72,[[19,[73]]]],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[19,[2,73]]]],0,0,0,[[]],[[]],[[]],0,0,[[],28],[[],28],[[],28],[[],[[19,[76]]]],[[],[[19,[3,76]]]],[[],[[19,[69,76]]]],[[],[[19,[29,76]]]],[[],[[19,[4,76]]]],[[],[[19,[27,76]]]],[[],[[19,[25,76]]]],[[],[[19,[23,76]]]],[[],[[19,[5,76]]]],[[],[[19,[24,76]]]],[[],[[19,[76]]]],[[],[[19,[8,76]]]],[[],[[19,[30,76]]]],[[],[[19,[31,76]]]],[[],[[19,[26,76]]]],[[],[[19,[9,76]]]],[[],[[19,[22,76]]]],[[],[[19,[21,76]]]],[[],[[19,[4,76]]]],[[],19],[[],19],[[],19],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[3]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[29]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[4]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[27]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[25]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[23]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[5]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[24]],76]]]],[21,[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[8]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[30]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[31]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[26]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[9]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[22]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[21]],76]]]],[[72,72],2],[[],19],[[],19],[[],19],[[],[[19,[76]]]],[[],[[19,[76]]]],[[],[[19,[76]]]],[[],2],[72],[[[0,[62,70,49,46]]],2],[[],44],[[],44],[[],44],[[],10],[[],[[75,[74,58]]]],[77,[[19,[36]]]],[77,[[19,[36]]]],0,0,0,0,0,0,[21,37],[37,[[2,[[39,[37]]]]]],[37,[[2,[[39,[37]]]]]],[37,[[2,[3]]]],[37,[[2,[4]]]],[37,[[2,[27]]]],[37,[[2,[5]]]],[37,[[2,[42]]]],[37,[[2,[42]]]],[37,[[2,[8]]]],[37,[[2,[9]]]],[[]],[[]],[37,[[2,[4]]]],[37,37],[[]],[37,37],[[],37],[51,[[19,[37]]]],[[37,17],[[19,[14]]]],[[37,17],[[19,[14]]]],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,8,[20,[8]],17],[[19,[14]]]],[[37,8,[20,[8]],17],[[19,[14]]]],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,8,17],[[19,[14]]]],[[37,8,17],[[19,[14]]]],[[37,17],[[19,[14]]]],[[37,17],[[19,[14]]]],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,8,[20,[8]],17],[[19,[14]]]],[[37,8,[20,[8]],17],[[19,[14]]]],[[37,21,17],19],[[37,21,17],19],[[37,8,21,17],19],[[37,8,21,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,8,17],19],[[37,8,17],19],[37,28],[37,28],[37,3],[[37,24],3],[[37,31],3],[[37,80],3],[[37,5],3],[[37,22],3],[[37,29],3],[[37,8],3],[[37,[7,[[0,[[88,[8]],62,70]],89]]],3],[[37,20],3],[[37,8],3],[[37,28],3],[[37,9],3],[[37,30],3],[[37,23],3],[[37,26],3],[[37,3],3],[[37,27],3],[[37,37],3],[[37,25],3],[[37,4],3],[[37,21],3],[37,3],[[37,33],35],[[37,33],35],[9,37],[2,37],[42,37],[21,37],[39,37],[8,37],[80,37],[29,37],[26,37],[3,37],[5,37],[1,37],[[]],[25,37],[28,37],[4,37],[22,37],[[],37],[[[40,[8]]],37],[24,37],[31,37],[23,37],[61,37],[61,37],[[37,8]],[[37,21]],[[37,21]],[[37,8]],[[]],[37,2],[37],[37,2],[37,37],[37,2],[37,3],[[],42],[[],37],[21,37],[[37,68],19],[[]],[[],28],[[[20,[22]]],[[18,[37]]]],[[[20,[22]],15,[20,[22]]],[[18,[37]]]],[90,[[19,[37,78]]]],[[],19],[37,[[19,[90,78]]]],[[],19],[[],44],[37,10],[[37,77],91],[[37,77],91],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[93,[92]]],28],[[[94,[92]]],28],[[]],[[[94,[92]]]],[[[95,[77,92]]]],[[],[[93,[92]]]],[[]],[[]],[[]],[[]],[[]],[[[93,[92]]],[[39,[22,58]]]],[[[94,[92]]],[[39,[22,58]]]],[[[96,[77,92]]],77],[[[95,[77,92]]],77],[[]],[[[94,[92]]]],[[[95,[77,92]]]],[[]],[[]],[[]],[[]],[[],[[93,[92]]]],[31,[[94,[92]]]],[77,[[96,[77,92]]]],[[77,31],[[95,[77,92]]]],[[],[[19,[36]]]],[[[94,[92]]],[[19,[36]]]],[[[95,[77,92]]],[[19,[36]]]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],44],[[],44],[[],44],[[],44],[[[20,[22]]],[[19,[36]]]],[[[93,[92]],[20,[22]]],[[19,[36]]]],[[[94,[92]],[20,[22]]],[[19,[36]]]],[22,[[19,[36]]]],[[[93,[92]],22],[[19,[36]]]],[[[94,[92]],22],[[19,[36]]]],[4,[[19,[36]]]],[97,[[19,[36]]]],[[[20,[22]],22],[[19,[36]]]],[[[93,[92]],[20,[22]],22],[[19,[36]]]],[[[94,[92]],[20,[22]],22],[[19,[36]]]],[[[96,[77,92]],[20,[22]],22],[[19,[36]]]],[[[95,[77,92]],[20,[22]],22],[[19,[36]]]],[8,[[19,[36]]]],[8,[[19,[36]]]],[[[20,[22]]],[[19,[36]]]],[8,[[19,[36]]]],[[[20,[22]],21],[[19,[36]]]],[8,[[19,[36]]]],0,0,0,0,0,0,[21,80],[80,[[2,[[39,[80]]]]]],[80,[[2,[[39,[80]]]]]],[80,[[2,[3]]]],[80,[[2,[4]]]],[80,[[2,[27]]]],[80,[[2,[5]]]],[80,[[2,[98]]]],[80,[[2,[98]]]],[80,[[2,[8]]]],[80,[[2,[9]]]],[[]],[[]],[80,[[2,[4]]]],[80,80],[[]],[[],80],[51,[[19,[80]]]],[[80,17],[[19,[14]]]],[[80,17],[[19,[14]]]],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,8,[20,[8]],17],[[19,[14]]]],[[80,8,[20,[8]],17],[[19,[14]]]],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,8,17],[[19,[14]]]],[[80,8,17],[[19,[14]]]],[[80,17],[[19,[14]]]],[[80,17],[[19,[14]]]],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,8,[20,[8]],17],[[19,[14]]]],[[80,8,[20,[8]],17],[[19,[14]]]],[[80,21,17],19],[[80,21,17],19],[[80,8,21,17],19],[[80,8,21,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,8,17],19],[[80,8,17],19],[80,28],[80,28],[[80,9],3],[[80,8],3],[[80,25],3],[[80,37],3],[[80,20],3],[[80,22],3],[[80,31],3],[80,3],[[80,80],3],[[80,23],3],[[80,[7,[[0,[[88,[8]],62,70]],89]]],3],[[80,29],3],[[80,26],3],[[80,28],3],[[80,8],3],[[80,4],3],[[80,24],3],[[80,27],3],[[80,3],3],[[80,30],3],[[80,21],3],[80,3],[[80,5],3],[[80,33],35],[[80,33],35],[37,80],[24,80],[9,80],[3,80],[4,80],[8,80],[2,80],[28,80],[26,80],[28,80],[1,80],[23,80],[98,80],[21,80],[25,80],[[[40,[8]]],80],[31,80],[[],80],[5,80],[39,80],[29,80],[[[7,[28,80]]],80],[22,80],[[]],[61,80],[61,80],[[80,8]],[[80,21]],[[80,21]],[[80,8]],[[]],[80,2],[80],[80,2],[80,2],[80,3],[[],98],[[],80],[21,80],[[80,68],19],[[]],[[],28],[[[20,[22]]],[[18,[80]]]],[[[20,[22]],15,[20,[22]]],[[18,[80]]]],[90,[[19,[80,78]]]],[[],19],[[],19],[80,[[19,[90,78]]]],[[],44],[80,10],[[80,77],91],[[80,77],91],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[21],[[],2],[[],2],[[],[[2,[3]]]],[[],[[2,[69]]]],[[],[[2,[29]]]],[[],[[2,[4]]]],[[],[[2,[27]]]],[[],[[2,[25]]]],[[],[[2,[23]]]],[[],[[2,[5]]]],[[],[[2,[24]]]],[[],2],[[],2],[[],[[2,[8]]]],[[],[[2,[30]]]],[[],[[2,[31]]]],[[],[[2,[26]]]],[[],[[2,[9]]]],[[],[[2,[22]]]],[[],[[2,[21]]]],[[],[[2,[4]]]],[[[0,[62,70,49,46]]],3],[[]],[[],28],[[],28],0,[[[71,[20]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[3]]]],[[[0,[62,70,49,46]]],[[2,[29]]]],[[[0,[62,70,49,46]]],[[2,[4]]]],[[[0,[62,70,49,46]]],[[2,[27]]]],[[[0,[62,70,49,46]]],[[2,[25]]]],[[[0,[62,70,49,46]]],[[2,[23]]]],[[[0,[62,70,49,46]]],[[2,[5]]]],[[[0,[62,70,49,46]]],[[2,[24]]]],[21,2],[21,2],[21,2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[8]]]],[[[0,[62,70,49,46]]],[[2,[30]]]],[[[0,[62,70,49,46]]],[[2,[31]]]],[[[0,[62,70,49,46]]],[[2,[26]]]],[[[0,[62,70,49,46]]],[[2,[9]]]],[[[0,[62,70,49,46]]],[[2,[22]]]],[[[0,[62,70,49,46]]],[[2,[21]]]],[[]],0,[[]],[[72,72],2],[[72,72],[[19,[2,73]]]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],[[75,[74,58]]]],[[],[[75,[74,58]]]],[[],[[75,[74,58]]]],[[],21],[[],21],[[],[[19,[36]]]],[[]],[[]],[21],[[],2],[[],[[19,[2,73]]]],[[]],[72,[[19,[73]]]],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[19,[2,73]]]],[[],[[19,[76]]]],[[],[[19,[3,76]]]],[[],[[19,[69,76]]]],[[],[[19,[29,76]]]],[[],[[19,[4,76]]]],[[],[[19,[27,76]]]],[[],[[19,[25,76]]]],[[],[[19,[23,76]]]],[[],[[19,[5,76]]]],[[],[[19,[24,76]]]],[[],[[19,[76]]]],[[],[[19,[8,76]]]],[[],[[19,[30,76]]]],[[],[[19,[31,76]]]],[[],[[19,[26,76]]]],[[],[[19,[9,76]]]],[[],[[19,[22,76]]]],[[],[[19,[21,76]]]],[[],[[19,[4,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[3]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[29]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[4]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[27]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[25]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[23]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[5]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[24]],76]]]],[21,[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[8]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[30]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[31]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[26]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[9]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[22]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[21]],76]]]],[[72,72],2],[[],2],[72],[[[0,[62,70,49,46]]],2],[[],10],[[],[[75,[74,58]]]],[77,[[19,[36]]]],[[[20,[22]]],[[19,[36]]]],[22,[[19,[36]]]],[4,[[19,[36]]]],[97,[[19,[36]]]],[[[20,[22]],22],[[19,[36]]]],[77,[[19,[36]]]],[8,[[19,[36]]]],[8,[[19,[36]]]],[[[20,[22]]],[[19,[36]]]],[8,[[19,[36]]]],[[[20,[22]],21],[[19,[36]]]],[8,[[19,[36]]]],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[38,38],[[]],[[38,38],3],[[38,33],35],[[]],[[]],[[]],[[]],[[]],[[],19],[[],19],[[],19],[[],19],[[],44],[[],44]],"c":[],"p":[[4,"StaticNode"],[4,"Option"],[15,"bool"],[15,"f64"],[15,"i64"],[3,"RandomState"],[3,"HashMap"],[15,"str"],[15,"u64"],[4,"ValueType"],[3,"KnownKey"],[4,"KnownKeyError"],[8,"Display"],[3,"Error"],[3,"AlignedBuf"],[3,"Deserializer"],[8,"Visitor"],[6,"Result"],[4,"Result"],[15,"slice"],[15,"usize"],[15,"u8"],[15,"i32"],[15,"i8"],[15,"i16"],[15,"u32"],[15,"i128"],[3,"String"],[15,"f32"],[15,"u128"],[15,"u16"],[4,"ErrorType"],[3,"Formatter"],[3,"Error"],[6,"Result"],[3,"Error"],[4,"Value"],[4,"Node"],[3,"Vec"],[4,"Cow"],[8,"FnOnce"],[6,"Object"],[3,"Demand"],[3,"TypeId"],[8,"ToOwned"],[8,"Sized"],[3,"OsStr"],[3,"Path"],[8,"Ord"],[4,"Ordering"],[8,"Deserializer"],[8,"PartialEq"],[8,"Clone"],[8,"Allocator"],[3,"OsString"],[3,"PathBuf"],[8,"Debug"],[3,"Global"],[3,"CString"],[3,"CStr"],[8,"IntoIterator"],[8,"Hash"],[8,"Hasher"],[8,"Error"],[3,"CowStrDeserializer"],[8,"PartialOrd"],[8,"Serialize"],[8,"Serializer"],[15,"char"],[8,"Eq"],[8,"SliceIndex"],[8,"Into"],[4,"AccessError"],[8,"Iterator"],[3,"Box"],[3,"TryTypeError"],[8,"Write"],[4,"SerdeConversionError"],[8,"Deserialize"],[4,"Value"],[8,"DeserializeOwned"],[8,"Read"],[4,"ExtendedValueType"],[8,"Builder"],[8,"From"],[6,"HashMap"],[6,"ObjectHasher"],[8,"AsRef"],[8,"BuildHasher"],[4,"Value"],[6,"Result"],[8,"Value"],[3,"DumpGenerator"],[3,"PrettyGenerator"],[3,"PrettyWriterGenerator"],[3,"WriterGenerator"],[8,"Integer"],[6,"Object"],[8,"ValueAccess"],[8,"Array"],[8,"Object"],[8,"Mutable"],[8,"Writable"],[8,"ValueInto"],[8,"ObjectInit"],[8,"BaseGenerator"],[3,"Tape"]]},\ +"simd_json":{"doc":"simd-json is a rust port of the simdjson c++ library. It …","t":"DNNNNNDNDENNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNDENCNNNNNNCGNENNCNNNNNNNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCCLLLCLLLLLLLLLLLLLLLLOOLOLLLLLLLLALLAOOOOOOOLLLLCLLLLCFCCCCLLLLLLLLLLLLLLLLLLLLLLLLOALLNENLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLEINQNINQQNNNNQQINNNINQCNQNNIIEILKKKKLLKLLLKLKKKLLLKLLLLKKKKLLLLLLLLLLLLKKLLLLLLLLLKLLLLLLLLLLLLLLLLLKLLLLLLLLLKKKKKKLKKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKNNNELLLLLFFFFFFFLLFFFLFFFFFLLLEINQNNCINNQQNENNNNNNNNNQQINNNNNINQGICENQQDNNNNNNNIIIEILKKKKLLKLLLKLKKKLLLKLLLLLLLLALLLLLLLLLFKKLLLLLLMLLLLLLLLLAKKLLLLLLLLLLLLKKLLLLLLLLLMKLLLLKKKLLLLLLLLLLLLLLLLKLLLLLLLLLKKKKKKKLKAKLALLKLKLACCLLLCCLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKNGNNNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLIDDDQDLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLNGNNNELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFFLLLLLLLLEINQININNQQNENNNNNNNQQINNNNINQNQQDNNNNNNIIEILKKKKLLKLLLKLKKKLLLKLLLLLKKMKKLLLLLLLLLLLLKKLLLLLLLLLKMLKLLLLLLLLLLLLLLLLLKLLLLLLLLLKKKKKLKLKKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKLLLLKKLLLLLLNENNNDLLLLLLLLLLLLLLLLLLL","n":["AlignedBuf","Array","BadKeyType","Bool","Bool","Custom","Deserializer","Eof","Error","ErrorType","ExpectedArray","ExpectedArrayComma","ExpectedArrayContent","ExpectedBoolean","ExpectedEnum","ExpectedFloat","ExpectedInteger","ExpectedMap","ExpectedMapComma","ExpectedMapEnd","ExpectedNull","ExpectedNumber","ExpectedObjectColon","ExpectedObjectContent","ExpectedObjectKey","ExpectedSigned","ExpectedString","ExpectedUnsigned","Extended","F64","F64","I128","I64","I64","InputTooLarge","InternalError","InvalidEscape","InvalidExponent","InvalidNumber","InvalidUnicodeCodepoint","InvalidUnicodeEscape","InvalidUtf8","Io","KeyMustBeAString","KnownKey","KnownKeyError","NoStructure","Node","NotAnObject","Null","Null","Object","Overflow","Parser","Result","Result","Serde","StaticNode","String","Syntax","Tape","TrailingData","U128","U64","U64","Unexpected","UnexpectedCharacter","UnterminatedString","ValueType","as_array","as_bool","as_f64","as_i64","as_object","as_str","as_u64","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cast_f64","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","cow","custom","custom","default","default","deref","deref_mut","deserialize_any","deserialize_bool","deserialize_byte_buf","deserialize_bytes","deserialize_char","deserialize_enum","deserialize_f32","deserialize_f64","deserialize_i128","deserialize_i16","deserialize_i32","deserialize_i64","deserialize_i8","deserialize_identifier","deserialize_ignored_any","deserialize_map","deserialize_newtype_struct","deserialize_option","deserialize_seq","deserialize_str","deserialize_string","deserialize_struct","deserialize_tuple","deserialize_tuple_struct","deserialize_u128","deserialize_u16","deserialize_u32","deserialize_u64","deserialize_u8","deserialize_unit","deserialize_unit_struct","drop","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_reader","from_slice","from_slice","from_slice_with_buffer","from_slice_with_buffers","from_str","generic","index","index","index_mut","index_mut","insert","into","into","into","into","into","into","into","into","into_tape","is_null","json","json_typed","key","likely","lookup","lookup_mut","lookup_or_insert_mut","map_insert","map_lookup","map_lookup_mut","map_lookup_or_insert_mut","next_","prelude","provide","provide","serde","static_cast_i128","static_cast_i32","static_cast_i64","static_cast_i8","static_cast_u32","static_cast_u64","stry","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","to_string_pretty","to_tape","to_vec","to_vec_pretty","to_writer","to_writer_pretty","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unlikely","value","value_type","with_capacity","Borrowed","Cow","Owned","add","add","add_assign","add_assign","as_ref","as_ref","borrow","borrow","borrow_mut","clone","clone_from","clone_into","cmp","default","deref","deserialize","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","from_iter","from_iter","hash","into","into_deserializer","into_owned","is_borrowed","is_owned","ne","ne","ne","ne","ne","ne","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","serialize","to_mut","to_owned","to_string","to_string","try_from","try_into","type_id","AccessError","Array","Array","Array","Bool","Builder","Custom","Element","Element","Extended","F64","I128","I64","Key","Key","Mutable","NotAnArray","NotAnObject","Null","Object","Object","Object","ObjectInit","String","Target","U128","U64","ValueAccess","ValueTrait","ValueType","Writable","array","array_with_capacity","as_array","as_array_mut","as_bool","as_char","as_f32","as_f64","as_i128","as_i16","as_i32","as_i64","as_i8","as_object","as_object_mut","as_str","as_u128","as_u16","as_u32","as_u64","as_u8","as_usize","cast_f64","contains_key","encode","encode_pp","get","get","get","get_array","get_bool","get_f32","get_f64","get_i128","get_i16","get_i32","get_i64","get_i8","get_idx","get_idx_mut","get_mut","get_mut","get_mut","get_object","get_str","get_u128","get_u16","get_u32","get_u64","get_u8","get_usize","insert","insert","is_array","is_bool","is_char","is_custom","is_empty","is_empty","is_f32","is_f64","is_f64_castable","is_float","is_i128","is_i16","is_i32","is_i64","is_i8","is_integer","is_null","is_number","is_object","is_str","is_u128","is_u16","is_u32","is_u64","is_u8","is_usize","iter","iter","keys","len","len","null","object","object_with_capacity","pop","pop","push","push","remove","remove","try_as_array","try_as_bool","try_as_char","try_as_f32","try_as_f64","try_as_i128","try_as_i16","try_as_i32","try_as_i64","try_as_i8","try_as_object","try_as_str","try_as_u128","try_as_u16","try_as_u32","try_as_u64","try_as_u8","try_as_usize","try_cast_f64","try_get","try_get_array","try_get_bool","try_get_f32","try_get_f64","try_get_i128","try_get_i16","try_get_i32","try_get_i64","try_get_i8","try_get_idx","try_get_object","try_get_str","try_get_u128","try_get_u16","try_get_u32","try_get_u64","try_get_u8","try_get_usize","try_insert","try_pop","try_push","try_remove","value_type","values","write","write_pp","NanOrInfinity","NumberOutOfBounds","Oops","SerdeConversionError","borrow","borrow_mut","fmt","fmt","from","from_borrowed_value","from_owned_value","from_reader","from_refborrowed_value","from_refowned_value","from_slice","from_str","into","provide","to_borrowed_value","to_owned_value","to_string","to_string","to_string_pretty","to_vec","to_vec_pretty","to_writer","to_writer_pretty","try_from","try_into","type_id","AccessError","Array","Array","Array","Bool","Bool","BorrowedValue","Builder","Char","Custom","Element","Element","Extended","ExtendedValueType","F32","F64","F64","I128","I16","I32","I64","I64","I8","Key","Key","Mutable","None","NotAnArray","NotAnObject","Null","Null","Object","Object","Object","ObjectHasher","ObjectInit","OwnedValue","StaticNode","String","String","Target","TryTypeError","U128","U16","U32","U64","U64","U8","Usize","Value","ValueAccess","ValueInto","ValueType","Writable","array","array_with_capacity","as_array","as_array_mut","as_bool","as_char","as_f32","as_f64","as_i128","as_i16","as_i32","as_i64","as_i8","as_object","as_object_mut","as_str","as_u128","as_u16","as_u32","as_u64","as_u8","as_usize","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrowed","cast_f64","clone","clone","clone","clone_into","clone_into","clone_into","contains_key","default","deserialize","encode","encode_pp","eq","eq","equivalent","equivalent","equivalent","equivalent","expected","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","generator","get","get","get","get_array","get_bool","get_f32","get_f64","get_i128","get_i16","get_i32","get_i64","get_i8","get_idx","get_idx_mut","get_mut","get_mut","get_mut","get_object","get_str","get_u128","get_u16","get_u32","get_u64","get_u8","get_usize","got","insert","insert","into","into","into","into_array","into_object","into_string","is_array","is_bool","is_char","is_custom","is_empty","is_empty","is_f32","is_f64","is_f64_castable","is_float","is_i128","is_i16","is_i32","is_i64","is_i8","is_integer","is_null","is_number","is_object","is_str","is_u128","is_u16","is_u32","is_u64","is_u8","is_usize","iter","iter","keys","len","len","new","null","object","object_with_capacity","owned","pop","pop","prelude","provide","provide","push","push","remove","remove","tape","to_borrowed_value","to_borrowed_value_with_buffers","to_owned","to_owned","to_owned","to_owned_value","to_owned_value_with_buffers","to_string","to_string","to_string","try_as_array","try_as_bool","try_as_char","try_as_f32","try_as_f64","try_as_i128","try_as_i16","try_as_i32","try_as_i64","try_as_i8","try_as_object","try_as_str","try_as_u128","try_as_u16","try_as_u32","try_as_u64","try_as_u8","try_as_usize","try_cast_f64","try_from","try_from","try_from","try_get","try_get_array","try_get_bool","try_get_f32","try_get_f64","try_get_i128","try_get_i16","try_get_i32","try_get_i64","try_get_i8","try_get_idx","try_get_object","try_get_str","try_get_u128","try_get_u16","try_get_u32","try_get_u64","try_get_u8","try_get_usize","try_insert","try_into","try_into","try_into","try_into_array","try_into_object","try_into_string","try_pop","try_push","try_remove","type_id","type_id","type_id","value_type","values","write","write_pp","Array","Object","Object","Static","String","Value","array_with_capacity","as_array","as_array_mut","as_bool","as_f64","as_i128","as_i64","as_object","as_object_mut","as_str","as_u64","borrow","borrow_mut","cast_f64","clone","clone_into","clone_static","default","deserialize","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","encode","encode_pp","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","index","index","index_mut","index_mut","into","into_array","into_deserializer","into_object","into_static","into_string","is_null","new","null","object_with_capacity","serialize","to_owned","to_string","to_value","to_value_with_buffers","try_from","try_from","try_into","try_into","type_id","value_type","write","write_pp","BaseGenerator","DumpGenerator","PrettyGenerator","PrettyWriterGenerator","T","WriterGenerator","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","consume","consume","dedent","dedent","dedent","default","from","from","from","from","get_writer","get_writer","get_writer","get_writer","get_writer","indent","indent","indent","into","into","into","into","new","new","new","new","new_line","new_line","new_line","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","write","write","write","write_char","write_char","write_char","write_float","write_int","write_min","write_min","write_min","write_min","write_min","write_simple_str_content","write_simple_string","write_str_simd","write_string","write_string_complex","write_string_content","Array","Object","Object","Static","String","Value","array_with_capacity","as_array","as_array_mut","as_bool","as_f64","as_i128","as_i64","as_object","as_object_mut","as_str","as_u64","borrow","borrow_mut","cast_f64","clone","clone_into","default","deserialize","deserialize_any","deserialize_any","deserialize_bool","deserialize_bool","deserialize_byte_buf","deserialize_byte_buf","deserialize_bytes","deserialize_bytes","deserialize_char","deserialize_char","deserialize_enum","deserialize_enum","deserialize_f32","deserialize_f32","deserialize_f64","deserialize_f64","deserialize_i128","deserialize_i128","deserialize_i16","deserialize_i16","deserialize_i32","deserialize_i32","deserialize_i64","deserialize_i64","deserialize_i8","deserialize_i8","deserialize_identifier","deserialize_identifier","deserialize_ignored_any","deserialize_ignored_any","deserialize_map","deserialize_map","deserialize_newtype_struct","deserialize_newtype_struct","deserialize_option","deserialize_option","deserialize_seq","deserialize_seq","deserialize_str","deserialize_str","deserialize_string","deserialize_string","deserialize_struct","deserialize_struct","deserialize_tuple","deserialize_tuple","deserialize_tuple_struct","deserialize_tuple_struct","deserialize_u128","deserialize_u128","deserialize_u16","deserialize_u16","deserialize_u32","deserialize_u32","deserialize_u64","deserialize_u64","deserialize_u8","deserialize_u8","deserialize_unit","deserialize_unit","deserialize_unit_struct","deserialize_unit_struct","encode","encode_pp","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_iter","from_iter","index","index","index_mut","index_mut","into","into_array","into_deserializer","into_object","into_string","is_null","new","null","object_with_capacity","serialize","to_owned","to_string","to_value","to_value_with_buffers","try_from","try_from","try_into","try_into","type_id","value_type","write","write_pp","AccessError","Array","Array","Array","BaseGenerator","Bool","Builder","Char","Custom","Element","Element","Extended","ExtendedValueType","F32","F64","I128","I16","I32","I64","I8","Key","Key","Mutable","None","NotAnArray","NotAnObject","Null","Object","Object","Object","String","T","Target","TryTypeError","U128","U16","U32","U64","U8","Usize","Value","ValueAccess","ValueType","Writable","array","array_with_capacity","as_array","as_array_mut","as_bool","as_char","as_f32","as_f64","as_i128","as_i16","as_i32","as_i64","as_i8","as_object","as_object_mut","as_str","as_u128","as_u16","as_u32","as_u64","as_u8","as_usize","cast_f64","contains_key","dedent","encode","encode_pp","expected","get","get","get","get_array","get_bool","get_f32","get_f64","get_i128","get_i16","get_i32","get_i64","get_i8","get_idx","get_idx_mut","get_mut","get_mut","get_mut","get_object","get_str","get_u128","get_u16","get_u32","get_u64","get_u8","get_usize","get_writer","got","indent","insert","insert","is_array","is_bool","is_char","is_custom","is_empty","is_empty","is_f32","is_f64","is_f64_castable","is_float","is_i128","is_i16","is_i32","is_i64","is_i8","is_integer","is_null","is_number","is_object","is_str","is_u128","is_u16","is_u32","is_u64","is_u8","is_usize","iter","iter","keys","len","len","new_line","null","object","object_with_capacity","pop","pop","push","push","remove","remove","try_as_array","try_as_bool","try_as_char","try_as_f32","try_as_f64","try_as_i128","try_as_i16","try_as_i32","try_as_i64","try_as_i8","try_as_object","try_as_str","try_as_u128","try_as_u16","try_as_u32","try_as_u64","try_as_u8","try_as_usize","try_cast_f64","try_get","try_get_array","try_get_bool","try_get_f32","try_get_f64","try_get_i128","try_get_i16","try_get_i32","try_get_i64","try_get_i8","try_get_idx","try_get_object","try_get_str","try_get_u128","try_get_u16","try_get_u32","try_get_u64","try_get_u8","try_get_usize","try_insert","try_pop","try_push","try_remove","value_type","values","write","write","write_char","write_float","write_int","write_min","write_pp","write_simple_str_content","write_simple_string","write_str_simd","write_string","write_string_complex","write_string_content","Array","Node","Object","Static","String","Tape","borrow","borrow","borrow_mut","borrow_mut","clone","clone_into","eq","fmt","from","from","into","into","to_owned","try_from","try_from","try_into","try_into","type_id","type_id"],"q":[[0,"simd_json"],[287,"simd_json::cow"],[382,"simd_json::prelude"],[552,"simd_json::serde"],[582,"simd_json::value"],[842,"simd_json::value::borrowed"],[1007,"simd_json::value::generator"],[1081,"simd_json::value::owned"],[1246,"simd_json::value::prelude"],[1446,"simd_json::value::tape"]],"d":["SIMD aligned buffer","an array","The key of a map isn’t a string","A boolean value","a boolean","a custom type","Deserializer struct to deserialize a JSON","Early End Of File","Parser error","Error types encountered while parsing","Expected an array","Expected a , in an array","Expected Array elements","expected an boolean","Expected an enum","Expected a float","Expected an integer","Expected a map","Expected a , in an object","Expected the object to end","Expected a null","Expected a number","Expected an : to separate key and value in an object","Expected Object elements","Expected Object Key","Expected a signed number","Expected a string","Expected an unsigned number","Extended types that do not have a real representation in …","A floating point value","a float type","a 128 bit signed integer","A signed 64 bit integer.","a signed integer type","Simd-json only supports inputs of up to 4GB in size.","Internal error","Invalid escape sequence","Invalid exponent in a floating point number","Invalid number","Invalid Unicode codepoint","Invalid Unicode escape sequence","Invalid UTF8 codepoint","IO error","Object Key isn’t a string","Well known key that can be looked up in a Value faster. It …","Error for known keys","Non structural character","","The target passed wasn’t an object","The null value","null","an object","Overflow of a limited buffer","Parser Error","","simd-json Result type","Generic serde error","Static tape node","a string type","Generic syntax error","","Trailing data","a 128 bit unsiged integer","An unsigned 64 bit integer.","a unsigned integer type","A specific type was expected but another one encountered.","Unexpected character","Unterminated string","Types of JSON values","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Reexport of Cow Reexport of Cow","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","","Returns the argument unchanged.","","","Creates a serializer from a mutable slice of bytes","Creates a serializer from a mutable slice of bytes using a …","Creates a serializer from a mutable slice of bytes using a …","","Create a generic error","","","","","Inserts a value key into Value, returns None if the key …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Extracts the tape from the Deserializer","","Taken from: …","Adapted from: …","The known key","possible compiler hint that a branch is likely","Looks up this key in a Value, returns None if the key wasn…","Looks up this key in a Value, returns None if the key wasn…","Looks up this key in a Value, inserts with when the key …","Inserts a value key into map, returns None if the key wasn…","Looks up this key in a Object<Cow<'value> the inner …","Looks up this key in a Object<'value>, the inner …","Looks up this key in a Object<'value>, the inner …","Same as next() but we pull out the check so we don’t …","Default trait imports;","","","serde related helper functions","static cast to an i64","static cast to an i32","static cast to an i64","static cast to an i8","static cast to an u32","static cast to an u64","FROM serde-json We only use our own error type; no need …","","","","","","","","","","","Creates a tape from the input for later consumption","","","","","","","","","","","","","","","","","","","","","","","","","","","","","possible compiler hint that a branch is unlikely","simd-json JSON-DOM value","","Creates a new buffer that is aligned with the simd …","Borrowed data.","A clone-on-write smart pointer.","Owned data.","","","","","","","","","","","","","","Creates an owned Cow<’a, B> with the default value for …","","","","","","","","","","","","","","","","","","","","","","","","","","Converts a String reference into a Borrowed variant. No …","Creates a Borrowed variant of Cow from a slice.","Converts a String into an Owned variant. No heap …","Creates a clone-on-write pointer from a reference to …","Creates a clone-on-write pointer from an owned instance of …","Converts the string reference into a Cow::Borrowed.","Converts a CStr into a borrowed Cow without copying or …","Moves the string into a Cow::Owned.","Converts a &CString into a borrowed Cow without copying or …","Converts a CString into an owned Cow without copying or …","Creates a Borrowed variant of Cow from a reference to Vec.","Creates an Owned variant of Cow from an owned instance of …","Converts the string reference into a Cow::Borrowed.","Creates a clone-on-write pointer from a reference to Path.","Returns the argument unchanged.","Converts a string slice into a Borrowed variant. No heap …","","","","","","Calls U::from(self).","","Extracts the owned data.","Returns true if the data is borrowed, i.e. if to_mut would …","Returns true if the data is owned, i.e. if to_mut would be …","","","","","","","","","","","","","","","","","","","","","Acquires a mutable reference to the owned form of the data.","","","","","","","Prelude to include needed traits An access error for …","Prelude to include needed traits Functions guaranteed for …","an array","The array structure","a boolean","Prelude to include needed traits Support of builder …","a custom type","Elements of the array","The values in the object","Extended types that do not have a real representation in …","a float type","a 128 bit signed integer","a signed integer type","The key in the objects","The type for Objects","Prelude to include needed traits Mutatability for values","An access attempt to a Value was made under the assumption …","An access attempt to a Value was made under the assumption …","null","Prelude to include needed traits A JSON Object","an object","The object structure","","a string type","The target for nested lookups","a 128 bit unsiged integer","a unsigned integer type","Prelude to include needed traits Trait to allow accessing …","Prelude to include needed traits The Value exposes common …","Prelude to include needed traits Types of JSON values","Prelude to include needed traits A Value that can be …","Returns an empty array","Returns an empty array with a given capacity","Tries to represent the value as an array and returns a …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as an i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Casts the current value to a f64 if possible, this will …","Checks if a Value contains a given key. This will return …","Encodes the value into it’s JSON representation as a …","Encodes the value into it’s JSON representation as a …","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on a key, returns None if the …","Tries to get an element of an object as a array","Tries to get an element of an object as a bool","Tries to get an element of an object as a f32","Tries to get an element of an object as a f64","Tries to get an element of an object as a i128","Tries to get an element of an object as a i16","Tries to get an element of an object as a i32","Tries to get an element of an object as a i64","Tries to get an element of an object as a i8","Gets a ref to a value based on n index, returns None if the","Same as get_idx but returns a mutable ref instead","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Same as get but returns a mutable ref instead","Tries to get an element of an object as a object","Tries to get an element of an object as a str","Tries to get an element of an object as a u128","Tries to get an element of an object as a u16","Tries to get an element of an object as a u32","Tries to get an element of an object as a u64","Tries to get an element of an object as a u8","Tries to get an element of an object as a usize","Inserts a value","Insert into this Value as an Object. Will return an …","returns true if the current value can be represented as an …","returns true if the current value a bool","returns true if the current value can be represented as a …","returns if a type is a custom type","Returns if the array is empty","Returns if the array is empty","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be cast into a f64","returns true if the current value a floatingpoint number","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value a integer number","returns true if the current value is null","returns true if the current value a number either float or …","returns true if the current value can be represented as an …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","Returns anull value","Returns an empty object","Returns an empty object with a given capacity","Returns the last element of the array or None","Pops from this Value as an Array. Will return an …","Appends e to the end of the Array","Pushes to this Value as an Array. Will return an …","Removes a value from the object","Remove from this Value as an Object. Will return an …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as a i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Tries to Casts the current value to a f64 if possible, …","Trys to get a value based on a key, returns a TryTypeError …","Tries to get an element of an object as an array, returns …","Tries to get an element of an object as a bool, returns an …","Tries to get an element of an object as a f32, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a i128, returns an …","Tries to get an element of an object as a i16, returns an …","Tries to get an element of an object as a i32, returns an …","Tries to get an element of an object as a i64, returns an …","Tries to get an element of an object as a i8, returns an …","Tries to get a value based on n index, returns a type …","Tries to get an element of an object as an object, returns …","Tries to get an element of an object as a str, returns an …","Tries to get an element of an object as a u128, returns an …","Tries to get an element of an object as a u16, returns an …","Tries to get an element of an object as a u32, returns an …","Tries to get an element of an object as a u64, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a usize, returns …","Tries to insert into this Value as an Object. If the Value …","Tries to pop from a Value as an Array. if the Value is any …","Tries to push to a Value if as an Array. This funciton …","Tries to remove from this Value as an Object. If the Value …","Gets the type of the current value","Iterates over the values","Encodes the value into it’s JSON representation into a …","Encodes the value into it’s JSON representation into a …","Serde can not reflect NAN or Infinity","The number is out of the 64 bit bound","Something horrible went wrong, please open a ticket at …","Error while converting from or to serde values","","","","","Returns the argument unchanged.","Tries to convert a BorrowedValue into a struct that …","Tries to convert a OwnedValue into a struct that implements","parses a Reader using a serde deserializer.","Tries to convert a &BorrowedValue into a struct that …","Tries to convert a &OwnedValue into a struct that …","parses a byte slice using a serde deserializer. note that …","parses a str using a serde deserializer. note that the …","Calls U::from(self).","","Tries to convert a struct that implements serde’s …","Tries to convert a struct that implements serde’s …","Write a value to a string","","Write a value to a string","Write a value to a vector","Write a value to a vector","Write a value to a string","Write a value to a string","","","","An access error for ValueType","Functions guaranteed for any array object","an array","The array structure","A boolean value","a boolean","","Support of builder methods for traits.","A single utf-8 character","a custom type","Elements of the array","The values in the object","Extended types that do not have a real representation in …","Extended types that have no native representation in JSON","A 32 bit floating point value","A floating point value","a float type","a 128 bit signed integer","A 16 bit signed integer value","A 32 bit signed integer value","A signed 64 bit integer.","a signed integer type","A 8 bit signed integer value","The key in the objects","The type for Objects","Mutatability for values","Not a value at all","An access attempt to a Value was made under the assumption …","An access attempt to a Value was made under the assumption …","The null value","null","A JSON Object","an object","The object structure","Hasher used for objects","Provides new function for objects if the ObjectHasher is …","","Static tape node","a string type","The type for Strings","The target for nested lookups","A type error thrown by the try_* functions","a 128 bit unsiged integer","A 16 bit unsigned integer value","A 32 bit unsigned integer value","An unsigned 64 bit integer.","a unsigned integer type","A 8 bit unsigned integer value","A useize value","The Value exposes common interface for values, this allows …","Trait to allow accessing data inside a Value","A trait that specifies how to turn the Value into it’s …","Types of JSON values","A Value that can be serialized and written","Returns an empty array","Returns an empty array with a given capacity","Tries to represent the value as an array and returns a …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as an i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","","","","","","","This module holds the two dom implementations we use. We …","Casts the current value to a f64 if possible, this will …","","","","","","","Checks if a Value contains a given key. This will return …","","Parses a slice of bytes into a Value dom. This function …","Encodes the value into it’s JSON representation as a …","Encodes the value into it’s JSON representation as a …","","","","","","","The expected value type","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Traits for serializing JSON","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on a key, returns None if the …","Tries to get an element of an object as a array","Tries to get an element of an object as a bool","Tries to get an element of an object as a f32","Tries to get an element of an object as a f64","Tries to get an element of an object as a i128","Tries to get an element of an object as a i16","Tries to get an element of an object as a i32","Tries to get an element of an object as a i64","Tries to get an element of an object as a i8","Gets a ref to a value based on n index, returns None if the","Same as get_idx but returns a mutable ref instead","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Same as get but returns a mutable ref instead","Tries to get an element of an object as a object","Tries to get an element of an object as a str","Tries to get an element of an object as a u128","Tries to get an element of an object as a u16","Tries to get an element of an object as a u32","Tries to get an element of an object as a u64","Tries to get an element of an object as a u8","Tries to get an element of an object as a usize","The actual value type","Inserts a value","Insert into this Value as an Object. Will return an …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Tries to turn the value into it’s array representation","Tries to turn the value into it’s object representation","Tries to turn the value into it’s string representation","returns true if the current value can be represented as an …","returns true if the current value a bool","returns true if the current value can be represented as a …","returns if a type is a custom type","Returns if the array is empty","Returns if the array is empty","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be cast into a f64","returns true if the current value a floatingpoint number","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value a integer number","returns true if the current value is null","returns true if the current value a number either float or …","returns true if the current value can be represented as an …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","Creates a new object","Returns anull value","Returns an empty object","Returns an empty object with a given capacity","Owned, lifetimeless version of the value for times when …","Returns the last element of the array or None","Pops from this Value as an Array. Will return an …","Prelude for traits","","","Appends e to the end of the Array","Pushes to this Value as an Array. Will return an …","Removes a value from the object","Remove from this Value as an Object. Will return an …","Tape implementation","","","","","","","","","","","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as a i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Tries to Casts the current value to a f64 if possible, …","","","","Trys to get a value based on a key, returns a TryTypeError …","Tries to get an element of an object as an array, returns …","Tries to get an element of an object as a bool, returns an …","Tries to get an element of an object as a f32, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a i128, returns an …","Tries to get an element of an object as a i16, returns an …","Tries to get an element of an object as a i32, returns an …","Tries to get an element of an object as a i64, returns an …","Tries to get an element of an object as a i8, returns an …","Tries to get a value based on n index, returns a type …","Tries to get an element of an object as an object, returns …","Tries to get an element of an object as a str, returns an …","Tries to get an element of an object as a u128, returns an …","Tries to get an element of an object as a u16, returns an …","Tries to get an element of an object as a u32, returns an …","Tries to get an element of an object as a u64, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a usize, returns …","Tries to insert into this Value as an Object. If the Value …","","","","Tries to turn the value into it’s array representation","Tries to turn the value into it’s object representation","Tries to turn the value into it’s string representation","Tries to pop from a Value as an Array. if the Value is any …","Tries to push to a Value if as an Array. This funciton …","Tries to remove from this Value as an Object. If the Value …","","","","Gets the type of the current value","Iterates over the values","Encodes the value into it’s JSON representation into a …","Encodes the value into it’s JSON representation into a …","array type","Representation of a JSON object","object type","Static values","string type","Borrowed JSON-DOM Value, consider using the ValueTrait to …","","","","","","","","","","","","","","","","","Clones the current value and enforces a static lifetime, …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","Calls U::from(self).","","","","Enforces static lifetime on a borrowed value, this will …","","","","","","","","","Parses a slice of bytes into a Value dom. This function …","Parses a slice of bytes into a Value dom. This function …","","","","","","","","","Base generator trait","Simple dump Generator","Pretty Generator","Pretty Writer Generator","The writer","Writer Generator","","","","","","","","","Returns the data as a String","Returns the data as a String","dedents one step","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","returns teh writer","","","","","indents one step","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a new generator","Creates a new pretty priting generator","Creates a new generator","Creates a new generator","writes new line","","","","","","","","","","","","","","","Write a slice","","","Write a char","","","writes a float value","writes an integer value","write with minimum","","","","","writes a simple string content (usually short and non …","writes a simple string (usually short and non escaped) …","Writes a string with simd-acceleration","writes a string","Writes a string with escape sequences","writes a string","array type","Representation of a JSON object","object type","Static values","string type","Owned JSON-DOM Value, consider using the ValueTrait to …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Calls U::from(self).","","","","","","","","","","","","Parses a slice of bytes into a Value dom. This function …","Parses a slice of bytes into a Value dom. This function …","","","","","","","","","An access error for ValueType","Functions guaranteed for any array object","an array","The array structure","Base generator trait","a boolean","Support of builder methods for traits.","A single utf-8 character","a custom type","Elements of the array","The values in the object","Extended types that do not have a real representation in …","Extended types that have no native representation in JSON","A 32 bit floating point value","a float type","a 128 bit signed integer","A 16 bit signed integer value","A 32 bit signed integer value","a signed integer type","A 8 bit signed integer value","The key in the objects","The type for Objects","Mutatability for values","Not a value at all","An access attempt to a Value was made under the assumption …","An access attempt to a Value was made under the assumption …","null","A JSON Object","an object","The object structure","a string type","The writer","The target for nested lookups","A type error thrown by the try_* functions","a 128 bit unsiged integer","A 16 bit unsigned integer value","A 32 bit unsigned integer value","a unsigned integer type","A 8 bit unsigned integer value","A useize value","The Value exposes common interface for values, this allows …","Trait to allow accessing data inside a Value","Types of JSON values","A Value that can be serialized and written","Returns an empty array","Returns an empty array with a given capacity","Tries to represent the value as an array and returns a …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as an i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Casts the current value to a f64 if possible, this will …","Checks if a Value contains a given key. This will return …","dedents one step","Encodes the value into it’s JSON representation as a …","Encodes the value into it’s JSON representation as a …","The expected value type","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on a key, returns None if the …","Tries to get an element of an object as a array","Tries to get an element of an object as a bool","Tries to get an element of an object as a f32","Tries to get an element of an object as a f64","Tries to get an element of an object as a i128","Tries to get an element of an object as a i16","Tries to get an element of an object as a i32","Tries to get an element of an object as a i64","Tries to get an element of an object as a i8","Gets a ref to a value based on n index, returns None if the","Same as get_idx but returns a mutable ref instead","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Same as get but returns a mutable ref instead","Tries to get an element of an object as a object","Tries to get an element of an object as a str","Tries to get an element of an object as a u128","Tries to get an element of an object as a u16","Tries to get an element of an object as a u32","Tries to get an element of an object as a u64","Tries to get an element of an object as a u8","Tries to get an element of an object as a usize","returns teh writer","The actual value type","indents one step","Inserts a value","Insert into this Value as an Object. Will return an …","returns true if the current value can be represented as an …","returns true if the current value a bool","returns true if the current value can be represented as a …","returns if a type is a custom type","Returns if the array is empty","Returns if the array is empty","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be cast into a f64","returns true if the current value a floatingpoint number","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value a integer number","returns true if the current value is null","returns true if the current value a number either float or …","returns true if the current value can be represented as an …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","writes new line","Returns anull value","Returns an empty object","Returns an empty object with a given capacity","Returns the last element of the array or None","Pops from this Value as an Array. Will return an …","Appends e to the end of the Array","Pushes to this Value as an Array. Will return an …","Removes a value from the object","Remove from this Value as an Object. Will return an …","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as a i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Tries to Casts the current value to a f64 if possible, …","Trys to get a value based on a key, returns a TryTypeError …","Tries to get an element of an object as an array, returns …","Tries to get an element of an object as a bool, returns an …","Tries to get an element of an object as a f32, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a i128, returns an …","Tries to get an element of an object as a i16, returns an …","Tries to get an element of an object as a i32, returns an …","Tries to get an element of an object as a i64, returns an …","Tries to get an element of an object as a i8, returns an …","Tries to get a value based on n index, returns a type …","Tries to get an element of an object as an object, returns …","Tries to get an element of an object as a str, returns an …","Tries to get an element of an object as a u128, returns an …","Tries to get an element of an object as a u16, returns an …","Tries to get an element of an object as a u32, returns an …","Tries to get an element of an object as a u64, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a usize, returns …","Tries to insert into this Value as an Object. If the Value …","Tries to pop from a Value as an Array. if the Value is any …","Tries to push to a Value if as an Array. This funciton …","Tries to remove from this Value as an Object. If the Value …","Gets the type of the current value","Iterates over the values","Encodes the value into it’s JSON representation into a …","Write a slice","Write a char","writes a float value","writes an integer value","write with minimum","Encodes the value into it’s JSON representation into a …","writes a simple string content (usually short and non …","writes a simple string (usually short and non escaped) …","Writes a string with simd-acceleration","writes a string","Writes a string with escape sequences","writes a string","An array with a given size starts here. The next size …","Tape Node","An Object with the given size starts here. the following …","A static value that is interned into the tape, it can be …","A string, located inside the input slice","Tape","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","",""],"i":[0,10,32,1,10,10,0,32,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,10,1,10,10,1,10,32,32,32,32,32,32,32,32,32,32,0,0,32,0,12,1,10,10,32,32,0,0,32,0,10,32,0,32,10,1,10,32,32,32,0,1,1,1,1,1,1,1,1,10,16,15,32,14,11,12,1,10,16,15,32,14,11,12,1,1,10,11,12,1,10,11,12,0,14,14,1,10,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,10,32,14,11,12,10,10,1,1,10,10,32,14,14,11,12,12,1,1,1,1,1,1,1,1,1,1,1,1,1,1,10,16,15,32,14,14,11,11,12,0,0,16,16,16,0,14,1,1,1,1,11,1,10,16,15,32,14,11,12,16,1,0,0,11,0,11,11,11,11,11,11,11,16,0,14,12,0,0,0,0,0,0,0,0,1,10,11,12,0,1,10,14,12,0,0,0,0,0,0,1,10,16,15,32,14,11,12,1,10,16,15,32,14,11,12,1,10,16,15,32,14,11,12,0,0,1,15,40,0,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,10,99,10,0,10,100,101,10,10,10,10,101,99,0,73,73,10,0,10,99,0,10,99,10,10,0,0,0,0,84,84,99,102,99,99,99,99,99,99,99,99,99,99,102,99,99,99,99,99,99,99,99,99,103,103,100,101,99,99,99,99,99,99,99,99,99,99,99,102,100,101,102,99,99,99,99,99,99,99,99,101,102,92,92,92,92,100,101,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,100,101,101,100,101,84,84,84,100,102,100,102,101,102,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,102,102,102,102,99,101,103,103,78,78,78,0,78,78,78,78,78,0,0,0,0,0,0,0,78,78,0,0,0,78,0,0,0,0,0,78,78,78,0,0,10,99,1,10,0,0,83,10,100,101,10,0,83,1,10,10,83,83,1,10,83,101,99,0,83,73,73,1,10,0,10,99,0,0,0,0,10,104,99,0,10,83,83,1,10,83,83,0,0,0,0,0,84,84,99,102,99,99,99,99,99,99,99,99,99,99,102,99,99,99,99,99,99,99,73,83,76,73,83,76,0,99,73,83,76,73,83,76,99,83,0,103,103,73,83,73,73,83,83,76,73,73,83,83,76,76,73,83,76,0,100,101,99,99,99,99,99,99,99,99,99,99,99,102,100,101,102,99,99,99,99,99,99,99,99,76,101,102,73,83,76,104,104,104,92,92,92,92,100,101,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,100,101,101,100,101,105,84,84,84,0,100,102,0,73,76,100,102,101,102,0,0,0,73,83,76,0,0,73,83,76,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,73,83,76,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,102,73,83,76,104,104,104,102,102,102,73,83,76,99,101,103,103,37,0,37,37,37,0,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,42,37,37,37,37,37,0,0,37,37,37,37,37,37,37,37,0,0,0,0,106,0,93,94,96,95,93,94,96,95,93,94,106,94,95,93,93,94,96,95,106,93,94,96,95,106,94,95,93,94,96,95,93,94,96,95,106,94,95,93,94,96,95,93,94,96,95,93,94,96,95,106,93,94,106,93,94,106,106,106,93,94,96,95,106,106,106,106,106,106,80,0,80,80,80,0,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,98,80,80,80,80,80,0,0,80,80,80,80,80,80,80,80,0,0,10,99,0,10,0,83,10,100,101,10,0,83,10,10,83,83,10,83,101,99,0,83,73,73,10,0,10,99,10,106,99,0,10,83,83,10,83,83,0,0,0,0,84,84,99,102,99,99,99,99,99,99,99,99,99,99,102,99,99,99,99,99,99,99,99,99,106,103,103,76,100,101,99,99,99,99,99,99,99,99,99,99,99,102,100,101,102,99,99,99,99,99,99,99,99,106,76,106,101,102,92,92,92,92,100,101,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,100,101,101,100,101,106,84,84,84,100,102,100,102,101,102,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,102,102,102,102,99,101,103,106,106,106,106,106,103,106,106,106,106,106,106,38,0,38,38,38,0,107,38,107,38,38,38,38,38,107,38,107,38,38,107,38,107,38,107,38],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[1,[[2,[3]]]],[1,[[2,[4]]]],[1,[[2,[5]]]],[1,[[2,[[7,[1,6]]]]]],[1,[[2,[8]]]],[1,[[2,[9]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,[[2,[4]]]],[1,1],[10,10],[11,11],[12,12],[[]],[[]],[[]],[[]],0,[13,14],[13,14],[[],1],[[],10],[15],[15],[[16,17],18],[[16,17],18],[[16,17],19],[[16,17],19],[[16,17],19],[[16,8,[20,[8]],17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],19],[[16,17],19],[[16,17],18],[[16,8,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,8,[20,[8]],17],18],[[16,21,17],18],[[16,8,21,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,17],18],[[16,8,17],18],[15],[[1,22],3],[[1,5],3],[[1,23],3],[[1,24],3],[[1,25],3],[[1,4],3],[[1,26],3],[[1,8],3],[[1,27],3],[[1,28],3],[[1,1],3],[[1,3],3],[[1,29],3],[[1,30],3],[[1,9],3],[1,3],[[1,21],3],[[1,31],3],[[1,8],3],[[10,10],3],[[32,32],3],[[14,14],3],[[11,11],3],[[12,12],3],[[],3],[[],3],[[1,33],[[19,[34]]]],[[1,33],[[19,[34]]]],[[10,33],[[19,[34]]]],[[10,33],[[19,[34]]]],[[32,33],35],[[14,33],35],[[14,33],35],[[11,33],35],[[12,33],35],[[12,33],35],[23,1],[[],1],[22,1],[3,1],[24,1],[27,1],[4,1],[21,1],[5,1],[31,1],[[]],[30,1],[29,1],[9,1],[[]],[[]],[[]],[[]],[[]],[36,14],[[]],[[],11],[[]],0,0,[[[20,[24]]],[[18,[16]]]],[[[20,[24]],[20,[24]]],[[18,[16]]]],[[[20,[24]],15,[20,[24]]],[[18,[16]]]],0,[32,14],[[1,21]],[[1,8]],[[1,21]],[[1,8]],[[11,37,37],[[19,[[2,[37]],12]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[16,[[39,[38]]]],[1,3],0,0,[11,[[40,[8]]]],0,[[11,37],[[2,[37]]]],[[11,37],[[2,[37]]]],[[11,37,41],[[19,[37,12]]]],[[11,42,37],[[2,[37]]]],[[11,42],[[2,[37]]]],[[11,42],[[2,[37]]]],[[11,42,41],37],[16,38],0,[43],[43],0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],0,[[],25],[[],25],[[],25],[[],25],0,[[[20,[24]]],[[18,[[39,[38]]]]]],0,0,0,0,[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],0,0,[1,10],[21,15],0,0,0,[[[40,[8]],[40,[8]]]],[[[40,[8]],8]],[[[40,[8]],8]],[[[40,[8]],[40,[8]]]],[[[40,[[0,[45,46]]]]],[[0,[45,46]]]],[[[40,[47]]],48],[[]],[[[40,[[0,[45,46]]]]],[[0,[45,46]]]],[[]],[[[40,[[0,[45,46]]]]],[[40,[[0,[45,46]]]]]],[[[40,[[0,[45,46]]]],[40,[[0,[45,46]]]]]],[[]],[[[40,[[0,[49,45,46]]]],[40,[[0,[49,45,46]]]]],50],[[],[[40,[[0,[45,46]]]]]],[[[40,[[0,[45,46]]]]],[[0,[45,46]]]],[51,[[19,[[40,[[0,[45,46]]]]]]]],[[[40,[47]],52],3],[[[40,[48]],52],3],[[[40,[48]],47],3],[[[40,[47]],53],3],[[[40,[48]],48],3],[[[40,[47]],47],3],[[[40,[[20,[[0,[54,55]]]]]],[39,[56]]],3],[[[40,[[20,[[0,[54,55]]]]]],20],3],[[[40,[8]],8],3],[[[40,[47]],47],3],[[[40,[[0,[[54,[[0,[45,46]]]],45,46]]]],[40,[[0,[45,46]]]]],3],[[[40,[48]],48],3],[[[40,[47]],48],3],[[[40,[8]],8],3],[[[40,[48]],53],3],[[[40,[48]],47],3],[[[40,[47]],48],3],[[[40,[8]],25],3],[[[40,[[20,[[0,[54,55]]]]]],20],3],[[],3],[[],3],[[[40,[[0,[13,45,46]]]],33],[[19,[34]]]],[[[40,[[0,[57,45,46]]]],33],[[19,[34]]]],[25,[[40,[8]]]],[[[20,[55]]],[[40,[[20,[55]]]]]],[25,[[40,[8]]]],[52,[[40,[48]]]],[52,[[40,[48]]]],[53,[[40,[47]]]],[58,[[40,[58]]]],[53,[[40,[47]]]],[59,[[40,[58]]]],[59,[[40,[58]]]],[[[39,[55,60]]],[[40,[[20,[55]]]]]],[[[39,[55,60]]],[[40,[[20,[55]]]]]],[47,[[40,[47]]]],[48,[[40,[48]]]],[[]],[8,[[40,[8]]]],[61,[[40,[8]]]],[61,[[40,[8]]]],[61,[[40,[[20,[55]]]]]],[61,[[40,[8]]]],[[[40,[[0,[62,45,46]]]],63]],[[]],[[[40,[8]]],[[65,[64]]]],[[[40,[[0,[45,46]]]]]],[[[40,[[0,[45,46]]]]],3],[[[40,[[0,[45,46]]]]],3],[[[40,[[20,[[0,[54,55]]]]]],20],3],[[[40,[8]],8],3],[[[40,[8]],8],3],[[[40,[[20,[[0,[54,55]]]]]],20],3],[[[40,[8]],25],3],[[[40,[[20,[[0,[54,55]]]]]],[39,[56]]],3],[[[40,[48]],48],[[2,[50]]]],[[[40,[48]],53],[[2,[50]]]],[[[40,[47]],52],[[2,[50]]]],[[[40,[48]],52],[[2,[50]]]],[[[40,[48]],47],[[2,[50]]]],[[[40,[47]],48],[[2,[50]]]],[[[40,[47]],53],[[2,[50]]]],[[[40,[[0,[[66,[[0,[[66,[[0,[[66,[[0,[66,45,46]]]],45,46]]]],45,46]]]],45,46]]]],[40,[[0,[[66,[[0,[[66,[[0,[[66,[[0,[66,45,46]]]],45,46]]]],45,46]]]],45,46]]]]],[[2,[50]]]],[[[40,[48]],48],[[2,[50]]]],[[[40,[47]],47],[[2,[50]]]],[[[40,[48]],47],[[2,[50]]]],[[[40,[47]],48],[[2,[50]]]],[[[40,[47]],47],[[2,[50]]]],[[[40,[[0,[67,45,46]]]],68],19],[[[40,[[0,[45,46]]]]]],[[]],[[[40,[8]]],25],[[],25],[[],19],[[],19],[[],44],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[21],[[],2],[[],2],[[],[[2,[3]]]],[[],[[2,[69]]]],[[],[[2,[30]]]],[[],[[2,[4]]]],[[],[[2,[28]]]],[[],[[2,[23]]]],[[],[[2,[31]]]],[[],[[2,[5]]]],[[],[[2,[27]]]],[[],2],[[],2],[[],[[2,[8]]]],[[],[[2,[26]]]],[[],[[2,[22]]]],[[],[[2,[29]]]],[[],[[2,[9]]]],[[],[[2,[24]]]],[[],[[2,[21]]]],[[],[[2,[4]]]],[[[0,[62,70,49,46]]],3],[[],25],[[],25],[[[71,[20]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[3]]]],[[[0,[62,70,49,46]]],[[2,[30]]]],[[[0,[62,70,49,46]]],[[2,[4]]]],[[[0,[62,70,49,46]]],[[2,[28]]]],[[[0,[62,70,49,46]]],[[2,[23]]]],[[[0,[62,70,49,46]]],[[2,[31]]]],[[[0,[62,70,49,46]]],[[2,[5]]]],[[[0,[62,70,49,46]]],[[2,[27]]]],[21,2],[21,2],[21,2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[8]]]],[[[0,[62,70,49,46]]],[[2,[26]]]],[[[0,[62,70,49,46]]],[[2,[22]]]],[[[0,[62,70,49,46]]],[[2,[29]]]],[[[0,[62,70,49,46]]],[[2,[9]]]],[[[0,[62,70,49,46]]],[[2,[24]]]],[[[0,[62,70,49,46]]],[[2,[21]]]],[[72,72],2],[[72,72],[[19,[2,73]]]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],[[75,[74,60]]]],[[],[[75,[74,60]]]],[[],[[75,[74,60]]]],[[],21],[[],21],[[]],[[]],[21],[[],2],[[],[[19,[2,73]]]],[[]],[72,[[19,[73]]]],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[19,[2,73]]]],[[],[[19,[76]]]],[[],[[19,[3,76]]]],[[],[[19,[69,76]]]],[[],[[19,[30,76]]]],[[],[[19,[4,76]]]],[[],[[19,[28,76]]]],[[],[[19,[23,76]]]],[[],[[19,[31,76]]]],[[],[[19,[5,76]]]],[[],[[19,[27,76]]]],[[],[[19,[76]]]],[[],[[19,[8,76]]]],[[],[[19,[26,76]]]],[[],[[19,[22,76]]]],[[],[[19,[29,76]]]],[[],[[19,[9,76]]]],[[],[[19,[24,76]]]],[[],[[19,[21,76]]]],[[],[[19,[4,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[3]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[30]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[4]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[28]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[23]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[31]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[5]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[27]],76]]]],[21,[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[8]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[26]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[22]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[29]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[9]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[24]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[21]],76]]]],[[72,72],2],[[],2],[72],[[[0,[62,70,49,46]]],2],[[],10],[[],[[75,[74,60]]]],[77,[[19,[36]]]],[77,[[19,[36]]]],0,0,0,0,[[]],[[]],[[78,33],35],[[78,33],35],[[]],[37,[[18,[79]]]],[80,[[18,[81]]]],[82,[[18,[81]]]],[37,[[18,[79]]]],[80,[[18,[81]]]],[[[20,[24]]],[[18,[79]]]],[8,[[18,[79]]]],[[]],[43],[67,[[18,[37]]]],[67,[[18,[80]]]],[[[0,[67,46]]],[[18,[25]]]],[[],25],[[[0,[67,46]]],[[18,[25]]]],[[[0,[67,46]]],[[18,[[39,[24]]]]]],[[[0,[67,46]]],[[18,[[39,[24]]]]]],[[77,[0,[67,46]]],18],[[77,[0,[67,46]]],18],[[],19],[[],19],[[],44],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[21],[[],2],[[],2],[[],[[2,[3]]]],[[],[[2,[69]]]],[[],[[2,[30]]]],[[],[[2,[4]]]],[[],[[2,[28]]]],[[],[[2,[23]]]],[[],[[2,[31]]]],[[],[[2,[5]]]],[[],[[2,[27]]]],[[],2],[[],2],[[],[[2,[8]]]],[[],[[2,[26]]]],[[],[[2,[22]]]],[[],[[2,[29]]]],[[],[[2,[9]]]],[[],[[2,[24]]]],[[],[[2,[21]]]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[],[[2,[4]]]],[73,73],[83,83],[76,76],[[]],[[]],[[]],[[[0,[62,70,49,46]]],3],[[],83],[[[20,[24]]],[[18,[[0,[84,[85,[[39,[[0,[84,[85,[[39,[[0,[84,[85,[39]],[85,[86]]]]]]]],[85,[[86,[[0,[62,70,[85,[8]]]],[0,[84,[85,[39]],[85,[86]]]],87]]]]]]]]]],[85,[[86,[[0,[62,70,[85,[8]]]],[0,[84,[85,[[39,[[0,[84,[85,[39]],[85,[86]]]]]]]],[85,[[86,[[0,[62,70,[85,[8]]]],[0,[84,[85,[39]],[85,[86]]]],87]]]]]],87]]]]]]]]]],[[],25],[[],25],[[73,73],3],[[83,83],3],[[],3],[[],3],[[],3],[[],3],0,[[73,33],[[19,[34]]]],[[73,33],[[19,[34]]]],[[83,33],[[19,[34]]]],[[83,33],[[19,[34]]]],[[76,33],[[19,[34]]]],[[76,33],[[19,[34]]]],[[]],[[]],[[]],0,[[[71,[20]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[3]]]],[[[0,[62,70,49,46]]],[[2,[30]]]],[[[0,[62,70,49,46]]],[[2,[4]]]],[[[0,[62,70,49,46]]],[[2,[28]]]],[[[0,[62,70,49,46]]],[[2,[23]]]],[[[0,[62,70,49,46]]],[[2,[31]]]],[[[0,[62,70,49,46]]],[[2,[5]]]],[[[0,[62,70,49,46]]],[[2,[27]]]],[21,2],[21,2],[21,2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[8]]]],[[[0,[62,70,49,46]]],[[2,[26]]]],[[[0,[62,70,49,46]]],[[2,[22]]]],[[[0,[62,70,49,46]]],[[2,[29]]]],[[[0,[62,70,49,46]]],[[2,[9]]]],[[[0,[62,70,49,46]]],[[2,[24]]]],[[[0,[62,70,49,46]]],[[2,[21]]]],0,[[72,72],2],[[72,72],[[19,[2,73]]]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],[[75,[74,60]]]],[[],[[75,[74,60]]]],[[],[[75,[74,60]]]],[[],21],[[],21],[[]],[[]],[[]],[21],0,[[],2],[[],[[19,[2,73]]]],0,[43],[43],[[]],[72,[[19,[73]]]],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[19,[2,73]]]],0,0,0,[[]],[[]],[[]],0,0,[[],25],[[],25],[[],25],[[],[[19,[76]]]],[[],[[19,[3,76]]]],[[],[[19,[69,76]]]],[[],[[19,[30,76]]]],[[],[[19,[4,76]]]],[[],[[19,[28,76]]]],[[],[[19,[23,76]]]],[[],[[19,[31,76]]]],[[],[[19,[5,76]]]],[[],[[19,[27,76]]]],[[],[[19,[76]]]],[[],[[19,[8,76]]]],[[],[[19,[26,76]]]],[[],[[19,[22,76]]]],[[],[[19,[29,76]]]],[[],[[19,[9,76]]]],[[],[[19,[24,76]]]],[[],[[19,[21,76]]]],[[],[[19,[4,76]]]],[[],19],[[],19],[[],19],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[3]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[30]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[4]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[28]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[23]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[31]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[5]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[27]],76]]]],[21,[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[8]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[26]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[22]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[29]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[9]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[24]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[21]],76]]]],[[72,72],2],[[],19],[[],19],[[],19],[[],[[19,[76]]]],[[],[[19,[76]]]],[[],[[19,[76]]]],[[],2],[72],[[[0,[62,70,49,46]]],2],[[],44],[[],44],[[],44],[[],10],[[],[[75,[74,60]]]],[77,[[19,[36]]]],[77,[[19,[36]]]],0,0,0,0,0,0,[21,37],[37,[[2,[[39,[37]]]]]],[37,[[2,[[39,[37]]]]]],[37,[[2,[3]]]],[37,[[2,[4]]]],[37,[[2,[28]]]],[37,[[2,[5]]]],[37,[[2,[42]]]],[37,[[2,[42]]]],[37,[[2,[8]]]],[37,[[2,[9]]]],[[]],[[]],[37,[[2,[4]]]],[37,37],[[]],[37,37],[[],37],[51,[[19,[37]]]],[[37,17],[[19,[14]]]],[[37,17],[[19,[14]]]],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,8,[20,[8]],17],[[19,[14]]]],[[37,8,[20,[8]],17],[[19,[14]]]],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,8,17],[[19,[14]]]],[[37,8,17],[[19,[14]]]],[[37,17],[[19,[14]]]],[[37,17],[[19,[14]]]],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,8,[20,[8]],17],[[19,[14]]]],[[37,8,[20,[8]],17],[[19,[14]]]],[[37,21,17],19],[[37,21,17],19],[[37,8,21,17],19],[[37,8,21,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,17],19],[[37,8,17],19],[[37,8,17],19],[37,25],[37,25],[[37,8],3],[[37,30],3],[37,3],[[37,28],3],[[37,8],3],[[37,23],3],[[37,20],3],[[37,22],3],[[37,21],3],[[37,29],3],[[37,37],3],[[37,27],3],[[37,31],3],[[37,24],3],[[37,[7,[[0,[[88,[8]],62,70]],89]]],3],[[37,5],3],[[37,80],3],[[37,3],3],[[37,4],3],[[37,25],3],[[37,9],3],[[37,26],3],[37,3],[[37,33],35],[[37,33],35],[[[40,[8]]],37],[29,37],[22,37],[23,37],[5,37],[24,37],[1,37],[4,37],[27,37],[[]],[3,37],[30,37],[21,37],[9,37],[80,37],[[],37],[8,37],[39,37],[31,37],[42,37],[25,37],[2,37],[61,37],[61,37],[[37,21]],[[37,8]],[[37,21]],[[37,8]],[[]],[37,2],[37],[37,2],[37,37],[37,2],[37,3],[[],42],[[],37],[21,37],[[37,68],19],[[]],[[],25],[[[20,[24]]],[[18,[37]]]],[[[20,[24]],15,[20,[24]]],[[18,[37]]]],[90,[[19,[37,78]]]],[[],19],[37,[[19,[90,78]]]],[[],19],[[],44],[37,10],[[37,77],91],[[37,77],91],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[93,[92]]],25],[[[94,[92]]],25],[[]],[[[94,[92]]]],[[[95,[77,92]]]],[[],[[93,[92]]]],[[]],[[]],[[]],[[]],[[]],[[[93,[92]]],[[39,[24,60]]]],[[[94,[92]]],[[39,[24,60]]]],[[[96,[77,92]]],77],[[[95,[77,92]]],77],[[]],[[[94,[92]]]],[[[95,[77,92]]]],[[]],[[]],[[]],[[]],[[],[[93,[92]]]],[22,[[94,[92]]]],[77,[[96,[77,92]]]],[[77,22],[[95,[77,92]]]],[[],[[19,[36]]]],[[[94,[92]]],[[19,[36]]]],[[[95,[77,92]]],[[19,[36]]]],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],19],[[],44],[[],44],[[],44],[[],44],[[[20,[24]]],[[19,[36]]]],[[[93,[92]],[20,[24]]],[[19,[36]]]],[[[94,[92]],[20,[24]]],[[19,[36]]]],[24,[[19,[36]]]],[[[93,[92]],24],[[19,[36]]]],[[[94,[92]],24],[[19,[36]]]],[4,[[19,[36]]]],[97,[[19,[36]]]],[[[20,[24]],24],[[19,[36]]]],[[[93,[92]],[20,[24]],24],[[19,[36]]]],[[[94,[92]],[20,[24]],24],[[19,[36]]]],[[[96,[77,92]],[20,[24]],24],[[19,[36]]]],[[[95,[77,92]],[20,[24]],24],[[19,[36]]]],[8,[[19,[36]]]],[8,[[19,[36]]]],[[[20,[24]]],[[19,[36]]]],[8,[[19,[36]]]],[[[20,[24]],21],[[19,[36]]]],[8,[[19,[36]]]],0,0,0,0,0,0,[21,80],[80,[[2,[[39,[80]]]]]],[80,[[2,[[39,[80]]]]]],[80,[[2,[3]]]],[80,[[2,[4]]]],[80,[[2,[28]]]],[80,[[2,[5]]]],[80,[[2,[98]]]],[80,[[2,[98]]]],[80,[[2,[8]]]],[80,[[2,[9]]]],[[]],[[]],[80,[[2,[4]]]],[80,80],[[]],[[],80],[51,[[19,[80]]]],[[80,17],[[19,[14]]]],[[80,17],[[19,[14]]]],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,8,[20,[8]],17],[[19,[14]]]],[[80,8,[20,[8]],17],[[19,[14]]]],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,8,17],[[19,[14]]]],[[80,8,17],[[19,[14]]]],[[80,17],[[19,[14]]]],[[80,17],[[19,[14]]]],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,8,[20,[8]],17],[[19,[14]]]],[[80,8,[20,[8]],17],[[19,[14]]]],[[80,21,17],19],[[80,21,17],19],[[80,8,21,17],19],[[80,8,21,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,17],19],[[80,8,17],19],[[80,8,17],19],[80,25],[80,25],[[80,24],3],[[80,29],3],[[80,21],3],[[80,8],3],[[80,3],3],[[80,80],3],[[80,31],3],[[80,8],3],[[80,9],3],[[80,28],3],[80,3],[[80,4],3],[[80,37],3],[[80,20],3],[[80,23],3],[[80,22],3],[[80,30],3],[[80,[7,[[0,[[88,[8]],62,70]],89]]],3],[[80,5],3],[[80,26],3],[[80,27],3],[[80,25],3],[80,3],[[80,33],35],[[80,33],35],[25,80],[[]],[25,80],[1,80],[98,80],[5,80],[9,80],[39,80],[37,80],[24,80],[2,80],[22,80],[[[40,[8]]],80],[29,80],[8,80],[[],80],[21,80],[31,80],[23,80],[30,80],[[[7,[25,80]]],80],[27,80],[3,80],[4,80],[61,80],[61,80],[[80,8]],[[80,21]],[[80,21]],[[80,8]],[[]],[80,2],[80],[80,2],[80,2],[80,3],[[],98],[[],80],[21,80],[[80,68],19],[[]],[[],25],[[[20,[24]]],[[18,[80]]]],[[[20,[24]],15,[20,[24]]],[[18,[80]]]],[90,[[19,[80,78]]]],[[],19],[[],19],[80,[[19,[90,78]]]],[[],44],[80,10],[[80,77],91],[[80,77],91],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[21],[[],2],[[],2],[[],[[2,[3]]]],[[],[[2,[69]]]],[[],[[2,[30]]]],[[],[[2,[4]]]],[[],[[2,[28]]]],[[],[[2,[23]]]],[[],[[2,[31]]]],[[],[[2,[5]]]],[[],[[2,[27]]]],[[],2],[[],2],[[],[[2,[8]]]],[[],[[2,[26]]]],[[],[[2,[22]]]],[[],[[2,[29]]]],[[],[[2,[9]]]],[[],[[2,[24]]]],[[],[[2,[21]]]],[[],[[2,[4]]]],[[[0,[62,70,49,46]]],3],[[]],[[],25],[[],25],0,[[[71,[20]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[3]]]],[[[0,[62,70,49,46]]],[[2,[30]]]],[[[0,[62,70,49,46]]],[[2,[4]]]],[[[0,[62,70,49,46]]],[[2,[28]]]],[[[0,[62,70,49,46]]],[[2,[23]]]],[[[0,[62,70,49,46]]],[[2,[31]]]],[[[0,[62,70,49,46]]],[[2,[5]]]],[[[0,[62,70,49,46]]],[[2,[27]]]],[21,2],[21,2],[21,2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[2,[8]]]],[[[0,[62,70,49,46]]],[[2,[26]]]],[[[0,[62,70,49,46]]],[[2,[22]]]],[[[0,[62,70,49,46]]],[[2,[29]]]],[[[0,[62,70,49,46]]],[[2,[9]]]],[[[0,[62,70,49,46]]],[[2,[24]]]],[[[0,[62,70,49,46]]],[[2,[21]]]],[[]],0,[[]],[[72,72],2],[[72,72],[[19,[2,73]]]],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],3],[[],[[75,[74,60]]]],[[],[[75,[74,60]]]],[[],[[75,[74,60]]]],[[],21],[[],21],[[],[[19,[36]]]],[[]],[[]],[21],[[],2],[[],[[19,[2,73]]]],[[]],[72,[[19,[73]]]],[[[0,[62,70,49,46]]],2],[[[0,[62,70,49,46]]],[[19,[2,73]]]],[[],[[19,[76]]]],[[],[[19,[3,76]]]],[[],[[19,[69,76]]]],[[],[[19,[30,76]]]],[[],[[19,[4,76]]]],[[],[[19,[28,76]]]],[[],[[19,[23,76]]]],[[],[[19,[31,76]]]],[[],[[19,[5,76]]]],[[],[[19,[27,76]]]],[[],[[19,[76]]]],[[],[[19,[8,76]]]],[[],[[19,[26,76]]]],[[],[[19,[22,76]]]],[[],[[19,[29,76]]]],[[],[[19,[9,76]]]],[[],[[19,[24,76]]]],[[],[[19,[21,76]]]],[[],[[19,[4,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[3]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[30]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[4]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[28]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[23]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[31]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[5]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[27]],76]]]],[21,[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[2,76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[8]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[26]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[22]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[29]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[9]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[24]],76]]]],[[[0,[62,70,49,46]]],[[19,[[2,[21]],76]]]],[[72,72],2],[[],2],[72],[[[0,[62,70,49,46]]],2],[[],10],[[],[[75,[74,60]]]],[77,[[19,[36]]]],[[[20,[24]]],[[19,[36]]]],[24,[[19,[36]]]],[4,[[19,[36]]]],[97,[[19,[36]]]],[[[20,[24]],24],[[19,[36]]]],[77,[[19,[36]]]],[8,[[19,[36]]]],[8,[[19,[36]]]],[[[20,[24]]],[[19,[36]]]],[8,[[19,[36]]]],[[[20,[24]],21],[[19,[36]]]],[8,[[19,[36]]]],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[38,38],[[]],[[38,38],3],[[38,33],35],[[]],[[]],[[]],[[]],[[]],[[],19],[[],19],[[],19],[[],19],[[],44],[[],44]],"c":[],"p":[[4,"StaticNode"],[4,"Option"],[15,"bool"],[15,"f64"],[15,"i64"],[3,"RandomState"],[3,"HashMap"],[15,"str"],[15,"u64"],[4,"ValueType"],[3,"KnownKey"],[4,"KnownKeyError"],[8,"Display"],[3,"Error"],[3,"AlignedBuf"],[3,"Deserializer"],[8,"Visitor"],[6,"Result"],[4,"Result"],[15,"slice"],[15,"usize"],[15,"u16"],[15,"i16"],[15,"u8"],[3,"String"],[15,"u128"],[15,"i8"],[15,"i128"],[15,"u32"],[15,"f32"],[15,"i32"],[4,"ErrorType"],[3,"Formatter"],[3,"Error"],[6,"Result"],[3,"Error"],[4,"Value"],[4,"Node"],[3,"Vec"],[4,"Cow"],[8,"FnOnce"],[6,"Object"],[3,"Demand"],[3,"TypeId"],[8,"ToOwned"],[8,"Sized"],[3,"OsStr"],[3,"Path"],[8,"Ord"],[4,"Ordering"],[8,"Deserializer"],[3,"PathBuf"],[3,"OsString"],[8,"PartialEq"],[8,"Clone"],[8,"Allocator"],[8,"Debug"],[3,"CStr"],[3,"CString"],[3,"Global"],[8,"IntoIterator"],[8,"Hash"],[8,"Hasher"],[8,"Error"],[3,"CowStrDeserializer"],[8,"PartialOrd"],[8,"Serialize"],[8,"Serializer"],[15,"char"],[8,"Eq"],[8,"SliceIndex"],[8,"Into"],[4,"AccessError"],[8,"Iterator"],[3,"Box"],[3,"TryTypeError"],[8,"Write"],[4,"SerdeConversionError"],[8,"Deserialize"],[4,"Value"],[8,"DeserializeOwned"],[8,"Read"],[4,"ExtendedValueType"],[8,"Builder"],[8,"From"],[6,"HashMap"],[6,"ObjectHasher"],[8,"AsRef"],[8,"BuildHasher"],[4,"Value"],[6,"Result"],[8,"Value"],[3,"DumpGenerator"],[3,"PrettyGenerator"],[3,"PrettyWriterGenerator"],[3,"WriterGenerator"],[8,"Integer"],[6,"Object"],[8,"ValueAccess"],[8,"Array"],[8,"Object"],[8,"Mutable"],[8,"Writable"],[8,"ValueInto"],[8,"ObjectInit"],[8,"BaseGenerator"],[3,"Tape"]]},\ "simdutf8":{"doc":"Blazingly fast API-compatible UTF-8 validation for Rust …","t":"AADLLLLLLLLLFFALLLLLLLIIKKKKKKAAADDLLLLLLLLLLLLLLLLLLLLFDDLLLLLLLLLLLLLLLLLLLLFDLLLLLLLLLLFFALLLLLLLLAAAFF","n":["basic","compat","Utf8Error","borrow","borrow_mut","clone","clone_into","eq","equivalent","fmt","fmt","from","from_utf8","from_utf8_mut","imp","into","provide","to_owned","to_string","try_from","try_into","type_id","ChunkedUtf8Validator","Utf8Validator","finalize","finalize","new","new","update","update_from_chunks","x86","avx2","sse42","ChunkedUtf8ValidatorImp","Utf8ValidatorImp","borrow","borrow","borrow_mut","borrow_mut","finalize","finalize","from","from","into","into","new","new","try_from","try_from","try_into","try_into","type_id","type_id","update","update_from_chunks","validate_utf8","ChunkedUtf8ValidatorImp","Utf8ValidatorImp","borrow","borrow","borrow_mut","borrow_mut","finalize","finalize","from","from","into","into","new","new","try_from","try_from","try_into","try_into","type_id","type_id","update","update_from_chunks","validate_utf8","Utf8Error","borrow","borrow_mut","clone","clone_into","eq","equivalent","error_len","fmt","fmt","from","from_utf8","from_utf8_mut","imp","into","provide","to_owned","to_string","try_from","try_into","type_id","valid_up_to","x86","avx2","sse42","validate_utf8","validate_utf8"],"q":[[0,"simdutf8"],[2,"simdutf8::basic"],[22,"simdutf8::basic::imp"],[31,"simdutf8::basic::imp::x86"],[33,"simdutf8::basic::imp::x86::avx2"],[56,"simdutf8::basic::imp::x86::sse42"],[79,"simdutf8::compat"],[101,"simdutf8::compat::imp"],[102,"simdutf8::compat::imp::x86"],[104,"simdutf8::compat::imp::x86::avx2"],[105,"simdutf8::compat::imp::x86::sse42"]],"d":["The basic API flavor provides barebones UTF-8 checking at …","The compat API flavor provides full compatibility with …","Simple zero-sized UTF-8 error.","","","","","","","","","Returns the argument unchanged.","Analogue to std::str::from_utf8().","Analogue to std::str::from_utf8_mut().","Allows direct access to the platform-specific unsafe …","Calls U::from(self).","","","","","","","Like Utf8Validator this low-level API is for streaming …","A low-level interfacne for streaming validation of UTF-8 …","Finishes the validation and returns Ok(()) if the input …","Updates the validator with remaining input if any. There …","Creates a new validator.","Creates a new validator.","Updates the validator with input.","Updates the validator with input.","Includes the x86/x86-64 SIMD implementations.","Includes the validation implementation for AVX …","Includes the validation implementation for SSE …","Low-level implementation of the …","Low-level implementation of the basic::imp::Utf8Validator …","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Validation implementation for CPUs supporting the SIMD …","Low-level implementation of the …","Low-level implementation of the basic::imp::Utf8Validator …","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","","","","","","","","","","","Validation implementation for CPUs supporting the SIMD …","UTF-8 error information compatible with std::str::Utf8Error…","","","","","","","Analogue to std::str::Utf8Error::error_len().","","","Returns the argument unchanged.","Analogue to std::str::from_utf8_mut().","Analogue to std::str::from_utf8_mut().","Allows direct access to the platform-specific unsafe …","Calls U::from(self).","","","","","","","Analogue to std::str::Utf8Error::valid_up_to().","Includes the x86/x86-64 SIMD implementations.","Includes the validation implementation for AVX …","Includes the validation implementation for SSE …","Validation implementation for CPUs supporting the SIMD …","Validation implementation for CPUs supporting the SIMD …"],"i":[0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,20,21,20,21,20,21,0,0,0,0,0,14,15,14,15,14,15,14,15,14,15,14,15,14,15,14,15,14,15,14,15,0,0,0,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,16,17,0,0,18,18,18,18,18,18,18,18,18,18,0,0,0,18,18,18,18,18,18,18,18,0,0,0,0,0],"f":[0,0,0,[[]],[[]],[1,1],[[]],[[1,1],2],[[],2],[[1,3],4],[[1,3],4],[[]],[[[6,[5]]],[[8,[7,1]]]],[[[6,[5]]],[[8,[7,1]]]],0,[[]],[9],[[]],[[],10],[[],8],[[],8],[[],11],0,0,[[],[[8,[1]]]],[[[12,[[6,[5]]]]],[[8,[1]]]],[[],13],[[],13],[[[6,[5]]]],[[[6,[5]]]],0,0,0,0,0,[[]],[[]],[[]],[[]],[14,[[8,[1]]]],[[15,[12,[[6,[5]]]]],[[8,[1]]]],[[]],[[]],[[]],[[]],[[],14],[[],15],[[],8],[[],8],[[],8],[[],8],[[],11],[[],11],[[14,[6,[5]]]],[[15,[6,[5]]]],[[[6,[5]]],[[8,[1]]]],0,0,[[]],[[]],[[]],[[]],[16,[[8,[1]]]],[[17,[12,[[6,[5]]]]],[[8,[1]]]],[[]],[[]],[[]],[[]],[[],16],[[],17],[[],8],[[],8],[[],8],[[],8],[[],11],[[],11],[[16,[6,[5]]]],[[17,[6,[5]]]],[[[6,[5]]],[[8,[1]]]],0,[[]],[[]],[18,18],[[]],[[18,18],2],[[],2],[18,[[12,[19]]]],[[18,3],4],[[18,3],4],[[]],[[[6,[5]]],[[8,[7,18]]]],[[[6,[5]]],[[8,[7,18]]]],0,[[]],[9],[[]],[[],10],[[],8],[[],8],[[],11],[18,19],0,0,0,[[[6,[5]]],[[8,[18]]]],[[[6,[5]]],[[8,[18]]]]],"c":[],"p":[[3,"Utf8Error"],[15,"bool"],[3,"Formatter"],[6,"Result"],[15,"u8"],[15,"slice"],[15,"str"],[4,"Result"],[3,"Demand"],[3,"String"],[3,"TypeId"],[4,"Option"],[8,"Sized"],[3,"Utf8ValidatorImp"],[3,"ChunkedUtf8ValidatorImp"],[3,"Utf8ValidatorImp"],[3,"ChunkedUtf8ValidatorImp"],[3,"Utf8Error"],[15,"usize"],[8,"Utf8Validator"],[8,"ChunkedUtf8Validator"]]},\ "siphasher":{"doc":"","t":"AAACCCCDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDIDDDLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["prelude","sip","sip128","_","_","sip","sip128","SipHasher","SipHasher13","SipHasher24","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","default","default","default","finish","finish","finish","fmt","fmt","fmt","from","from","from","into","into","into","key","key","key","keys","keys","keys","new","new","new","new_with_key","new_with_key","new_with_key","new_with_keys","new_with_keys","new_with_keys","try_from","try_from","try_from","try_into","try_into","try_into","type_id","type_id","type_id","write","write","write","write_u16","write_u16","write_u16","write_u32","write_u32","write_u32","write_u64","write_u64","write_u64","write_u8","write_u8","write_u8","write_usize","write_usize","write_usize","Hash128","Hasher128","SipHasher","SipHasher13","SipHasher24","as_bytes","as_u128","as_u64","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","default","default","default","default","finish","finish","finish","finish128","finish128","finish128","finish128","fmt","fmt","fmt","fmt","from","from","from","from","from","h1","h2","into","into","into","into","key","key","key","keys","keys","keys","new","new","new","new_with_key","new_with_key","new_with_key","new_with_keys","new_with_keys","new_with_keys","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","write","write","write","write_u16","write_u16","write_u16","write_u32","write_u32","write_u32","write_u64","write_u64","write_u64","write_u8","write_u8","write_u8","write_usize","write_usize","write_usize"],"q":[[0,"siphasher"],[3,"siphasher::prelude"],[7,"siphasher::sip"],[76,"siphasher::sip128"]],"d":["","An implementation of SipHash.","An implementation of SipHash with a 128-bit output.","","","","","An implementation of SipHash 2-4.","An implementation of SipHash 1-3.","An implementation of SipHash 2-4.","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Get the key used by this hasher as a 16 byte vector","Get the key used by this hasher as a 16 byte vector","Get the key used by this hasher as a 16 byte vector","Get the keys used by this hasher","Get the keys used by this hasher","Get the keys used by this hasher","Creates a new SipHasher13 with the two initial keys set to …","Creates a new SipHasher24 with the two initial keys set to …","Creates a new SipHasher with the two initial keys set to 0.","Creates a SipHasher13 from a 16 byte key.","Creates a SipHasher24 from a 16 byte key.","Creates a SipHasher from a 16 byte key.","Creates a SipHasher13 that is keyed off the provided keys.","Creates a SipHasher24 that is keyed off the provided keys.","Creates a SipHasher that is keyed off the provided keys.","","","","","","","","","","","","","","","","","","","","","","","","","","","","A 128-bit (2x64) hash output","","An implementation of SipHash128 2-4.","An implementation of SipHash128 1-3.","An implementation of SipHash128 2-4.","Convert into a 16-bytes vector","Convert into a u128","Convert into (u64, u64)","","","","","","","","","","","","","","","","","","","","Return a 128-bit hash","Return a 128-bit hash","Return a 128-bit hash","Return a 128-bit hash","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Get the key used by this hasher as a 16 byte vector","Get the key used by this hasher as a 16 byte vector","Get the key used by this hasher as a 16 byte vector","Get the keys used by this hasher","Get the keys used by this hasher","Get the keys used by this hasher","Creates a new SipHasher13 with the two initial keys set to …","Creates a new SipHasher24 with the two initial keys set to …","Creates a new SipHasher with the two initial keys set to 0.","Creates a SipHasher13 from a 16 byte key.","Creates a SipHasher24 from a 16 byte key.","Creates a SipHasher from a 16 byte key.","Creates a SipHasher13 that is keyed off the provided keys.","Creates a SipHasher24 that is keyed off the provided keys.","Creates a SipHasher that is keyed off the provided keys.","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,0,0,0,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,0,0,0,0,0,15,15,15,15,17,18,19,15,17,18,19,15,17,18,19,15,17,18,19,17,18,19,20,17,18,19,15,17,18,19,15,15,17,18,19,15,15,15,17,18,19,17,18,19,17,18,19,17,18,19,17,18,19,17,18,19,15,17,18,19,15,17,18,19,15,17,18,19,17,18,19,17,18,19,17,18,19,17,18,19,17,18,19,17,18,19],"f":[0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[1,1],[2,2],[3,3],[[],1],[[],2],[[],3],[1,4],[2,4],[3,4],[[1,5],6],[[2,5],6],[[3,5],6],[[]],[[]],[[]],[[]],[[]],[[]],[1,[[8,[7]]]],[2,[[8,[7]]]],[3,[[8,[7]]]],[1],[2],[3],[[],1],[[],2],[[],3],[[[8,[7]]],1],[[[8,[7]]],2],[[[8,[7]]],3],[[4,4],1],[[4,4],2],[[4,4],3],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],10],[[],10],[[],10],[[1,[11,[7]]]],[[2,[11,[7]]]],[[3,[11,[7]]]],[[1,12]],[[2,12]],[[3,12]],[[1,13]],[[2,13]],[[3,13]],[[1,4]],[[2,4]],[[3,4]],[[1,7]],[[2,7]],[[3,7]],[[1,14]],[[2,14]],[[3,14]],0,0,0,0,0,[15,[[8,[7]]]],[15,16],[15],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[15,15],[17,17],[18,18],[19,19],[[],15],[[],17],[[],18],[[],19],[17,4],[18,4],[19,4],[[],15],[17,15],[18,15],[19,15],[[15,5],6],[[17,5],6],[[18,5],6],[[19,5],6],[16,15],[[]],[[]],[[]],[[]],0,0,[[]],[[]],[[]],[[]],[17,[[8,[7]]]],[18,[[8,[7]]]],[19,[[8,[7]]]],[17],[18],[19],[[],17],[[],18],[[],19],[[[8,[7]]],17],[[[8,[7]]],18],[[[8,[7]]],19],[[4,4],17],[[4,4],18],[[4,4],19],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],10],[[],10],[[],10],[[],10],[[17,[11,[7]]]],[[18,[11,[7]]]],[[19,[11,[7]]]],[[17,12]],[[18,12]],[[19,12]],[[17,13]],[[18,13]],[[19,13]],[[17,4]],[[18,4]],[[19,4]],[[17,7]],[[18,7]],[[19,7]],[[17,14]],[[18,14]],[[19,14]]],"c":[],"p":[[3,"SipHasher13"],[3,"SipHasher24"],[3,"SipHasher"],[15,"u64"],[3,"Formatter"],[6,"Result"],[15,"u8"],[15,"array"],[4,"Result"],[3,"TypeId"],[15,"slice"],[15,"u16"],[15,"u32"],[15,"usize"],[3,"Hash128"],[15,"u128"],[3,"SipHasher13"],[3,"SipHasher24"],[3,"SipHasher"],[8,"Hasher128"]]},\ "slab":{"doc":"Pre-allocated storage for a uniform data type.","t":"DDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["Drain","IntoIter","Iter","IterMut","Slab","VacantEntry","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","capacity","clear","clone","clone","clone_into","clone_into","compact","contains","default","drain","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_iter","get","get2_mut","get2_unchecked_mut","get_mut","get_unchecked","get_unchecked_mut","index","index_mut","insert","insert","into","into","into","into","into","into","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","into_iter","is_empty","iter","iter_mut","key","key_of","len","len","len","len","len","new","next","next","next","next","next_back","next_back","next_back","next_back","remove","reserve","reserve_exact","retain","shrink_to_fit","size_hint","size_hint","size_hint","size_hint","to_owned","to_owned","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_remove","type_id","type_id","type_id","type_id","type_id","type_id","vacant_entry","vacant_key","with_capacity"],"q":[[0,"slab"]],"d":["A draining iterator for Slab","A consuming iterator over the values stored in a Slab","An iterator over the values stored in the Slab","A mutable iterator over the values stored in the Slab","Pre-allocated storage for a uniform data type","A handle to a vacant entry in a Slab.","","","","","","","","","","","","","Return the number of values the slab can store without …","Clear the slab of all values.","","","","","Reduce the capacity as much as possible, changing the key …","Return true if a value is associated with the given key.","","Return a draining iterator that removes all elements from …","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Return a reference to the value associated with the given …","Return two mutable references to the values associated …","Return two mutable references to the values associated …","Return a mutable reference to the value associated with …","Return a reference to the value associated with the given …","Return a mutable reference to the value associated with …","","","Insert a value in the slab, returning key assigned to the …","Insert a value in the entry, returning a mutable reference …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","","","","","","Return true if there are no values stored in the slab.","Return an iterator over the slab.","Return an iterator that allows modifying each value.","Return the key associated with this entry.","Get the key for an element in the slab.","","","","","Return the number of stored values.","Construct a new, empty Slab.","","","","","","","","","Remove and return the value associated with the given key.","Reserve capacity for at least additional more values to be …","Reserve the minimum capacity required to store exactly …","Retain only the elements specified by the predicate.","Shrink the capacity of the slab as much as possible …","","","","","","","","","","","","","","","","","","","Tries to remove the value associated with the given key, …","","","","","","","Return a handle to a vacant entry allowing for further …","Returns the key of the next vacant entry.","Construct a new, empty Slab with the specified capacity."],"i":[0,0,0,0,0,0,9,3,12,7,1,13,9,3,12,7,1,13,1,1,3,1,3,1,1,1,1,1,9,3,12,7,1,13,9,3,12,7,1,13,1,1,1,1,1,1,1,1,1,1,13,9,3,12,7,1,13,9,3,12,7,1,1,1,1,1,1,13,1,9,3,12,7,1,1,9,3,12,7,9,3,12,7,1,1,1,1,1,9,3,12,7,3,1,9,3,12,7,1,13,9,3,12,7,1,13,1,9,3,12,7,1,13,1,1,1],"f":[0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,2],[1],[3,3],[[[1,[4]]],[[1,[4]]]],[[]],[[]],[[1,5]],[[1,2],6],[[],1],[1,7],[[[9,[8]],10],11],[[[3,[8]],10],11],[[[12,[8]],10],11],[[7,10],11],[[[1,[8]],10],11],[[[13,[8]],10],11],[[]],[[]],[[]],[[]],[[]],[[]],[14,1],[[1,2],15],[[1,2,2],15],[[1,2,2]],[[1,2],15],[[1,2]],[[1,2]],[[1,2]],[[1,2]],[1,2],[13],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,12],[1,9],[1,3],[1,6],[1,3],[1,12],[13,2],[1,2],[9,2],[3,2],[12,2],[7,2],[1,2],[[],1],[9,15],[3,15],[12,15],[7,15],[9,15],[3,15],[12,15],[7,15],[[1,2]],[[1,2]],[[1,2]],[[1,5]],[1],[9],[3],[12],[7],[[]],[[]],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[1,2],15],[[],17],[[],17],[[],17],[[],17],[[],17],[[],17],[1,13],[1,2],[2,1]],"c":[],"p":[[3,"Slab"],[15,"usize"],[3,"Iter"],[8,"Clone"],[8,"FnMut"],[15,"bool"],[3,"Drain"],[8,"Debug"],[3,"IntoIter"],[3,"Formatter"],[6,"Result"],[3,"IterMut"],[3,"VacantEntry"],[8,"IntoIterator"],[4,"Option"],[4,"Result"],[3,"TypeId"]]},\ @@ -198,7 +198,7 @@ var searchIndex = JSON.parse('{\ "strength_reduce":{"doc":"strength_reduce implements integer division and modulo via …","t":"DDDDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["StrengthReducedU128","StrengthReducedU16","StrengthReducedU32","StrengthReducedU64","StrengthReducedU8","StrengthReducedUsize","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","clone","div_rem","div_rem","div_rem","div_rem","div_rem","div_rem","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","get","get","get","get","get","get","into","into","into","into","into","into","new","new","new","new","new","new","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id"],"q":[[0,"strength_reduce"]],"d":["Implements unsigned division and modulo via mutiplication …","Implements unsigned division and modulo via mutiplication …","Implements unsigned division and modulo via mutiplication …","Implements unsigned division and modulo via mutiplication …","Implements unsigned division and modulo via mutiplication …","Implements unsigned division and modulo via mutiplication …","","","","","","","","","","","","","","","","","","","Simultaneous truncated integer division and modulus. …","Simultaneous truncated integer division and modulus. …","Simultaneous truncated integer division and modulus. …","Simultaneous truncated integer division and modulus. …","Simultaneous truncated integer division and modulus. …","Simultaneous truncated integer division and modulus. …","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Retrieve the value used to create this struct","Retrieve the value used to create this struct","Retrieve the value used to create this struct","Retrieve the value used to create this struct","Retrieve the value used to create this struct","Retrieve the value used to create this struct","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a new divisor instance.","Creates a new divisor instance.","Creates a new divisor instance.","Creates a new divisor instance.","Creates a new divisor instance.","Creates a new divisor instance.","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6],"f":[0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,1],[2,2],[3,3],[4,4],[5,5],[6,6],[[7,1]],[[8,2]],[[9,3]],[[10,4]],[[11,5]],[[12,6]],[[1,13],14],[[2,13],14],[[3,13],14],[[4,13],14],[[5,13],14],[[6,13],14],[[]],[[]],[[]],[[]],[[]],[[]],[1,7],[2,8],[3,9],[4,10],[5,11],[6,12],[[]],[[]],[[]],[[]],[[]],[[]],[7,1],[8,2],[9,3],[10,4],[11,5],[12,6],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],15],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16]],"c":[],"p":[[3,"StrengthReducedU8"],[3,"StrengthReducedU128"],[3,"StrengthReducedU16"],[3,"StrengthReducedU32"],[3,"StrengthReducedU64"],[3,"StrengthReducedUsize"],[15,"u8"],[15,"u128"],[15,"u16"],[15,"u32"],[15,"u64"],[15,"usize"],[3,"Formatter"],[6,"Result"],[4,"Result"],[3,"TypeId"]]},\ "strum":{"doc":"Strum","t":"ISIIIIQESINAKLLLLLLLLLLLKKLKKKLLKLLLLLL","n":["AsStaticRef","COUNT","EnumCount","EnumMessage","EnumProperty","IntoEnumIterator","Iterator","ParseError","VARIANTS","VariantNames","VariantNotFound","additional_attributes","as_static","borrow","borrow_mut","clone","clone_into","description","eq","equivalent","fmt","fmt","from","get_bool","get_detailed_message","get_documentation","get_int","get_message","get_serializations","get_str","hash","into","iter","provide","to_owned","to_string","try_from","try_into","type_id"],"q":[[0,"strum"]],"d":["A cheap reference-to-reference conversion. Used to convert …","","A trait for capturing the number of variants in Enum. This …","Associates additional pieces of information with an Enum. …","EnumProperty is a trait that makes it possible to store …","This trait designates that an Enum can be iterated over. …","","The ParseError enum is a collection of all the possible …","Names of the variants of this enum","A trait for retrieving the names of each variant in Enum. …","","Documentation for Additional Attributes","","","","","","","","","","","Returns the argument unchanged.","","","Get the doc comment associated with a variant if it exists.","","","","","","Calls U::from(self).","","","","","","",""],"i":[0,15,0,0,0,0,16,0,17,0,1,0,18,1,1,1,1,1,1,1,1,1,1,19,20,20,19,20,20,19,1,1,16,1,1,1,1,1,1],"f":[0,0,0,0,0,0,0,0,0,0,0,0,[[]],[[]],[[]],[1,1],[[]],[1,2],[[1,1],3],[[],3],[[1,4],[[6,[5]]]],[[1,4],7],[[]],[2,[[8,[3]]]],[[],[[8,[2]]]],[[],[[8,[2]]]],[2,[[8,[9]]]],[[],[[8,[2]]]],[[],[[10,[2]]]],[2,[[8,[2]]]],[[1,11]],[[]],[[]],[12],[[]],[[],13],[[],6],[[],6],[[],14]],"c":[0,12],"p":[[4,"ParseError"],[15,"str"],[15,"bool"],[3,"Formatter"],[3,"Error"],[4,"Result"],[6,"Result"],[4,"Option"],[15,"usize"],[15,"slice"],[8,"Hasher"],[3,"Demand"],[3,"String"],[3,"TypeId"],[8,"EnumCount"],[8,"IntoEnumIterator"],[8,"VariantNames"],[8,"AsStaticRef"],[8,"EnumProperty"],[8,"EnumMessage"]]},\ "strum_macros":{"doc":"Strum","t":"YYYYYYYYYYYYY","n":["AsRefStr","AsStaticStr","Display","EnumCount","EnumDiscriminants","EnumIter","EnumMessage","EnumProperty","EnumString","EnumVariantNames","FromRepr","IntoStaticStr","ToString"],"q":[[0,"strum_macros"]],"d":["Converts enum variants to &'static str.","","Converts enum variants to strings.","Add a constant usize equal to the number of variants.","Generate a new type with only the discriminant names.","Creates a new type that iterates of the variants of an …","Add a verbose message to an enum variant.","Add custom properties to enum variants.","Converts strings to enum variants based on their name.","Implements Strum::VariantNames which adds an associated …","Add a function to enum that allows accessing variants by …","Implements From<MyEnum> for &'static str on an enum.","implements std::string::ToString on en enum"],"i":[0,0,0,0,0,0,0,0,0,0,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0],"c":[1,12],"p":[]},\ -"sysinfo":{"doc":"sysinfo ","t":"NNNNDINDIDNDIEDNDNNNNSNNNNDNSDDIDIDNDINNNDIDENNDNNSNENNNNDINNNNNNSDNNNNDNNINNNNNNNKLKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLKLLLKLLLKKLLLKLKLKLLLLLLLLLLKLLKLLLKLKLKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKLLLLKLMKLMLLLLLLLLLLLLLLLLLLLLLLLLKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLKLFLLKLKKLLKLLLLKLKLLLLLLLLLLLLLLLLLLLLLLLLKLLKLKLLLKLKLKLKLKLKLKLKLLKLKKKKKLLLLLKLLLKLLLLLLLLKLLMKLKLKLKLLLLLLLKLKLKLKLLLLLLMKLKKKLLLLLLLKLLLKLLLKLKLLLKLLLLLKLLLKLLLLLKLKLKLKLFKLKLKLMKLLLLLLLLLLLLLLLLLKLKLKLKLKLMKLKLKLKLMKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKLKLLKLKLLKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLM","n":["Abort","Alarm","Bus","Child","Component","ComponentExt","Continue","Cpu","CpuExt","CpuRefreshKind","Dead","Disk","DiskExt","DiskKind","DiskUsage","FloatingPointException","Gid","HDD","Hangup","IO","IOT","IS_SUPPORTED","Idle","Illegal","Interrupt","Kill","LoadAvg","LockBlocked","MINIMUM_CPU_UPDATE_INTERVAL","MacAddr","NetworkData","NetworkExt","Networks","NetworksExt","NetworksIter","Parked","Pid","PidExt","Pipe","Poll","Power","Process","ProcessExt","ProcessRefreshKind","ProcessStatus","Profiling","Quit","RefreshKind","Run","SSD","SUPPORTED_SIGNALS","Segv","Signal","Sleep","Stop","Stop","Sys","System","SystemExt","TSTP","TTIN","TTOU","Term","Tracing","Trap","UNSPECIFIED","Uid","UninterruptibleDiskSleep","Unknown","Unknown","Urgent","User","User1","User2","UserExt","VirtualAlarm","Wakekill","Waking","Winch","XCPU","XFSZ","Zombie","as_u32","as_u32","available_memory","available_memory","available_space","available_space","boot_time","boot_time","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","brand","brand","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmd","cmd","cmp","cmp","cmp","cmp","components","components","components","components_list","components_mut","components_mut","cpu","cpu","cpu_usage","cpu_usage","cpu_usage","cpu_usage","cpu_usage","cpus","cpus","critical","critical","cwd","cwd","default","default","default","default","default","default","default","deref","deref","disk_usage","disk_usage","disk_usage","disks","disks","disks","disks_list","disks_mut","disks_mut","distribution_id","distribution_id","effective_group_id","effective_group_id","effective_user_id","effective_user_id","environ","environ","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","errors_on_received","errors_on_received","errors_on_transmitted","errors_on_transmitted","everything","everything","everything","exe","exe","fifteen","file_system","file_system","five","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","free_memory","free_memory","free_swap","free_swap","frequency","frequency","frequency","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","from_str","from_str","from_u32","from_u32","get_current_pid","get_user_by_id","get_user_by_id","global_cpu_info","global_cpu_info","group_id","group_id","group_id","group_id","groups","groups","hash","hash","hash","host_name","host_name","id","id","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","is_removable","is_removable","is_unspecified","iter","iter","kernel_version","kernel_version","kill","kill","kill_with","kill_with","kind","kind","label","label","load_average","load_average","long_os_version","long_os_version","mac_address","mac_address","max","max","memory","memory","memory","mount_point","mount_point","name","name","name","name","name","name","name","name","name","name","networks","networks","networks","networks_list","networks_mut","networks_mut","new","new","new","new","new","new_all","new_all","new_with_specifics","new_with_specifics","next","one","os_version","os_version","packets_received","packets_received","packets_transmitted","packets_transmitted","parent","parent","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","physical_core_count","physical_core_count","pid","pid","process","process","processes","processes","processes","processes_by_exact_name","processes_by_exact_name","processes_by_name","processes_by_name","read_bytes","received","received","refresh","refresh","refresh","refresh","refresh","refresh","refresh_all","refresh_all","refresh_components","refresh_components","refresh_components_list","refresh_components_list","refresh_cpu","refresh_cpu","refresh_cpu_specifics","refresh_cpu_specifics","refresh_disks","refresh_disks","refresh_disks_list","refresh_disks_list","refresh_memory","refresh_memory","refresh_networks","refresh_networks","refresh_networks_list","refresh_networks_list","refresh_networks_list","refresh_networks_list","refresh_process","refresh_process","refresh_process_specifics","refresh_process_specifics","refresh_processes","refresh_processes","refresh_processes_specifics","refresh_processes_specifics","refresh_specifics","refresh_specifics","refresh_system","refresh_system","refresh_users_list","refresh_users_list","root","root","run_time","run_time","session_id","session_id","set_open_files_limit","sort_disks_by","sort_disks_by","start_time","start_time","status","status","tasks","temperature","temperature","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","total_errors_on_received","total_errors_on_received","total_errors_on_transmitted","total_errors_on_transmitted","total_memory","total_memory","total_packets_received","total_packets_received","total_packets_transmitted","total_packets_transmitted","total_read_bytes","total_received","total_received","total_space","total_space","total_swap","total_swap","total_transmitted","total_transmitted","total_written_bytes","transmitted","transmitted","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uptime","uptime","used_memory","used_memory","used_swap","used_swap","user","user_id","user_id","users","users","users_list","vendor_id","vendor_id","virtual_memory","virtual_memory","wait","wait","with_components","with_components_list","with_cpu","with_cpu","with_cpu_usage","with_disk_usage","with_disks","with_disks_list","with_frequency","with_memory","with_networks","with_networks_list","with_processes","with_user","with_users_list","without_components","without_components_list","without_cpu","without_cpu","without_cpu_usage","without_disk_usage","without_disks","without_disks_list","without_frequency","without_memory","without_networks","without_networks_list","without_processes","without_user","without_users_list","written_bytes"],"q":[[0,"sysinfo"]],"d":["Abort signal from C abort function.","Timer signal from C alarm function.","Bus error (bad memory access).","Child stopped or terminated.","Struct containing a component information (temperature and …","Getting a component temperature information.","Continue if stopped.","Struct containing information of a CPU.","Contains all the methods of the Cpu struct.","Used to determine what you want to refresh specifically on …","Linux","Struct containing a disk information.","Contains all the methods of the Disk struct.","Enum containing the different supported kinds of disks.","Type containing read and written bytes.","Floating point exception.","A group id wrapping a platform specific type.","HDD type.","Hangup detected on controlling terminal or death of …","I/O now possible.","IOT trap. A synonym for SIGABRT.","Returns true if this OS is supported. Please refer to the …","Linux","Illegal instruction.","Interrupt from keyboard.","Kill signal.","A struct representing system load average value.","FreeBSD","This is the minimum interval time used internally by …","MAC address for network interface.","Contains network interface information.","Getting volume of received and transmitted data.","Networks interfaces.","Interacting with network interfaces.","Iterator over network interfaces.","Linux","Process ID.","Trait to have a common conversions for the Pid type.","Broken pipe: write to pipe with no readers.","Pollable event (Sys V). Synonym for IO","Power failure (System V).","Struct containing information of a process.","Contains all the methods of the Process struct.","Used to determine what you want to refresh specifically on …","Enum describing the different status of a process.","Profiling time expired.","Quit from keyboard.","Used to determine what you want to refresh specifically on …","Running.","SSD type.","Returns the list of the supported signals on this system …","Invalid memory reference.","An enum representing signals on UNIX-like systems.","Linux","Stop process.","Linux","Bad argument to routine (SVr4).","Structs containing system’s information.","Contains all the methods of the System type.","Stop typed at terminal.","Terminal input for background process.","Terminal output for background process.","Termination signal.","Linux","Trace/breakpoint trap.","A MacAddr with all bytes set to 0.","A user id wrapping a platform specific type.","Linux","Unknown type.","Unknown.","Urgent condition on socket.","Type containing user information.","User-defined signal 1.","User-defined signal 2.","Getting information for a user.","Virtual alarm clock.","Linux","Linux","Windows resize signal.","CPU time limit exceeded.","File size limit exceeded.","Linux/FreeBSD/macOS","Allows to convert Pid into u32.","","Returns the amount of available RAM in bytes.","","Returns the available disk size, in bytes.","","Returns the time (in seconds) when the system booted since …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the CPU’s brand.","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the command line.","","","","","","Returns the components list.","","Returns the value of the “components” refresh kind.","Returns the value of the “components_list” refresh …","Returns a mutable components list.","","Returns the value of the “cpu” refresh kind.","Returns the value of the “cpu” refresh kind.","Returns the total CPU usage (in %). Notice that it might …","Returns this CPU’s usage.","","","Returns the value of the “cpu_usage” refresh kind.","Returns the list of the CPUs.","","Returns the highest temperature before the component halts …","","Returns the current working directory.","","","","","","","","","","","Returns number of bytes read and written to disk.","","Returns the value of the “disk_usage” refresh kind.","Returns the disks list.","","Returns the value of the “disks” refresh kind.","Returns the value of the “disks_list” refresh kind.","Returns the disks list.","","Returns the distribution id as defined by os-release, or …","","Returns the effective group ID of the process.","","Returns the user ID of the effective owner of this process …","","Returns the environment variables of the process.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of incoming errors since the last …","","Returns the number of outcoming errors since the last …","","Creates a new ProcessRefreshKind with every refresh set to …","Creates a new CpuRefreshKind with every refresh set to true…","Creates a new RefreshKind with every refresh set to true/…","Returns the path to the process.","","Average load within fifteen minutes.","Returns the file system used on this disk (so for example: …","","Average load within five minutes.","","","","","","","","","","","","","","","","","","","","","","","","","Returns the amount of free RAM in bytes.","","Returns the amount of free SWAP in bytes.","","Returns the CPU’s frequency.","Returns the CPU frequency in MHz.","Returns the value of the “frequency” refresh kind.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Allows to convert a u32 into Pid.","","Returns the pid for the current process.","Returns the User matching the given user_id.","Returns the User matching the given user_id.","Returns “global” CPUs information (aka the addition of …","","Returns the process group ID of the process.","Return the group id of the user.","","","Returns the groups of the user.","","","","","Returns the system hostname based off DNS","","Return the user id of the user.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Returns true if the disk is removable.","","Checks if this MacAddr has all bytes equal to 0.","Returns an iterator over the network interfaces.","","Returns the system’s kernel version.","","Sends Signal::Kill to the process (which is the only …","Sends Signal::Kill to the process (which is the only …","Sends the given signal to the process. If the signal doesn…","","Returns the kind of disk.","","Returns the label of the component.","","Returns the system load average value.","","Returns the system long os version (e.g “MacOS 11.2 …","","Returns the MAC address associated to current interface.","","Returns the maximum temperature of the component (in …","","Returns the memory usage (in bytes).","","Returns the value of the “memory” refresh kind.","Returns the mount point of the disk (/ for example).","","Returns the disk name.","Returns the name of the process.","Returns this CPU’s name.","Returns the system name.","Returns the name of the user.","","","","","","Returns the network interfaces object.","","Returns the value of the “networks” refresh kind.","Returns the value of the “networks_list” refresh kind.","Returns a mutable access to network interfaces.","","Creates a new System instance with nothing loaded. If you …","Creates a new System instance with nothing loaded. If you …","Creates a new ProcessRefreshKind with every refresh set to …","Creates a new CpuRefreshKind with every refresh set to …","Creates a new RefreshKind with every refresh set to false/…","Creates a new System instance with everything loaded.","Creates a new System instance with everything loaded.","Creates a new System instance and refresh the data …","","","Average load within one minute.","Returns the system version (e.g. for MacOS this will …","","Returns the number of incoming packets since the last …","","Returns the number of outcoming packets since the last …","","Returns the parent PID.","","","","","","","","Returns the number of physical cores on the CPU or None if …","","Returns the PID of the process.","","Returns the process corresponding to the given pid or None …","","Returns the process list.","","Returns the value of the “processes” refresh kind.","Returns an iterator of processes with exactly the given …","Returns an iterator of processes with exactly the given …","Returns an iterator of process containing the given name.","Returns an iterator of process containing the given name.","Number of read bytes since the last refresh.","Returns the number of received bytes since the last …","","Updates the disk’ information.","Refreshes the network interfaces’ content.","Refreshes component.","","","","Refreshes all system, processes, disks and network …","Refreshes all system, processes, disks and network …","Refreshes components’ temperature.","Refreshes components’ temperature.","Refreshes components list.","","Refreshes CPUs information.","Refreshes CPUs information.","Refreshes CPUs specific information.","","Refreshes the listed disks’ information.","Refreshes the listed disks’ information.","The disk list will be emptied then completely recomputed.","","Refreshes RAM and SWAP usage.","","Refreshes networks data.","Refreshes networks data.","Refreshes the network interfaces list.","The network list will be updated: removing not existing …","The network list will be updated: removing not existing …","","Refreshes only the process corresponding to pid. Returns …","Refreshes only the process corresponding to pid. Returns …","Refreshes only the process corresponding to pid. Returns …","","Gets all processes and updates their information.","Gets all processes and updates their information.","Gets all processes and updates the specified information.","","Refreshes according to the given RefreshKind. It calls the …","Refreshes according to the given RefreshKind. It calls the …","Refreshes system information (RAM, swap, CPU usage and …","Refreshes system information (RAM, swap, CPU usage and …","Refreshes users list.","","Returns the path of the root directory.","","Returns for how much time the process has been running (in …","","Returns the session ID for the current process or None if …","","This function is only used on Linux targets, on the other …","Sort the disk list with the provided callback.","","Returns the time where the process was started (in …","","Returns the status of the process.","","Tasks run by this process.","Returns the temperature of the component (in celsius …","","","","","","","","","","","","","","","","","","Returns the total number of incoming errors.","","Returns the total number of outcoming errors.","","Returns the RAM size in bytes.","","Returns the total number of incoming packets.","","Returns the total number of outcoming packets.","","Total number of read bytes.","Returns the total number of received bytes.","","Returns the total disk size, in bytes.","","Returns the SWAP size in bytes.","","Returns the total number of transmitted bytes.","","Total number of written bytes.","Returns the number of transmitted bytes since the last …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns system uptime (in seconds).","","Returns the amount of used RAM in bytes.","","Returns the amount of used SWAP in bytes.","","Returns the value of the “user” refresh kind. This …","Returns the ID of the owner user of this process or None …","","Returns the users list.","","Returns the value of the “users_list” refresh kind.","Returns the CPU’s vendor id.","","Returns the virtual memory usage (in bytes).","","Wait for process termination.","","Sets the value of the “components” refresh kind to true…","Sets the value of the “components_list” refresh kind …","Sets the value of the “cpu” refresh kind to true.","Sets the value of the “cpu” refresh kind to true.","Sets the value of the “cpu_usage” refresh kind to true.","Sets the value of the “disk_usage” refresh kind to true…","Sets the value of the “disks” refresh kind to true.","Sets the value of the “disks_list” refresh kind to true…","Sets the value of the “frequency” refresh kind to true.","Sets the value of the “memory” refresh kind to true.","Sets the value of the “networks” refresh kind to true.","Sets the value of the “networks_list” refresh kind to …","Sets the value of the “processes” refresh kind to true.","Sets the value of the “user” refresh kind to true.","Sets the value of the “users_list” refresh kind to true…","Sets the value of the “components” refresh kind to …","Sets the value of the “components_list” refresh kind …","Sets the value of the “cpu” refresh kind to false.","Sets the value of the “cpu” refresh kind to false.","Sets the value of the “cpu_usage” refresh kind to false…","Sets the value of the “disk_usage” refresh kind to …","Sets the value of the “disks” refresh kind to false.","Sets the value of the “disks_list” refresh kind to …","Sets the value of the “frequency” refresh kind to false…","Sets the value of the “memory” refresh kind to false.","Sets the value of the “networks” refresh kind to false.","Sets the value of the “networks_list” refresh kind to …","Sets the value of the “processes” refresh kind to false…","Sets the value of the “user” refresh kind to false.","Sets the value of the “users_list” refresh kind to …","Number of written bytes since the last refresh."],"i":[12,12,12,12,0,0,12,0,0,0,17,0,0,0,0,12,0,11,12,12,12,45,17,12,12,12,0,17,45,0,0,0,0,0,0,17,0,0,12,12,12,0,0,0,0,12,12,0,17,11,45,12,0,17,12,17,12,0,0,12,12,12,12,17,12,18,0,17,11,17,12,0,12,12,0,12,17,17,12,12,12,17,46,2,45,4,47,5,45,4,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,48,7,2,8,9,10,11,12,13,14,15,16,17,18,2,8,9,10,11,12,13,14,15,16,17,18,49,21,2,14,15,23,45,4,10,10,45,4,8,10,49,48,7,21,9,45,4,50,24,49,21,4,24,8,9,10,13,16,14,15,49,21,8,45,4,10,10,45,4,45,4,49,21,49,21,49,21,5,2,8,9,10,11,12,14,15,23,16,17,18,5,2,8,9,10,11,12,14,15,23,16,17,18,51,29,51,29,8,9,10,49,21,13,47,5,13,7,33,29,21,4,24,5,2,2,8,9,10,11,12,12,13,14,15,23,16,17,17,18,18,45,4,45,4,48,7,9,37,7,33,29,21,4,24,5,2,2,8,9,10,11,12,13,14,15,23,16,17,18,2,14,15,46,2,0,45,45,45,4,49,52,21,23,52,23,2,14,15,45,4,52,23,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,37,33,47,5,18,53,33,45,4,49,49,49,21,47,5,50,24,45,4,45,4,51,29,50,24,49,21,10,47,5,47,49,48,45,52,7,21,4,5,23,45,4,10,10,45,4,45,45,8,9,10,45,45,45,4,37,13,45,4,51,29,51,29,49,21,2,12,14,15,23,16,45,4,49,21,45,4,45,4,10,45,45,45,45,16,51,29,47,53,50,33,24,5,45,45,45,45,45,4,45,45,45,4,45,45,45,4,45,4,45,45,53,45,45,33,45,45,45,4,45,45,45,4,45,45,45,45,45,4,49,21,49,21,49,21,0,45,4,49,21,49,21,21,50,24,2,8,9,10,11,12,13,14,15,16,17,18,2,12,17,18,51,29,51,29,45,4,51,29,51,29,16,51,29,47,5,45,4,51,29,16,51,29,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,14,15,15,23,16,17,18,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,45,4,45,4,45,4,8,49,21,45,4,10,48,7,49,21,49,21,10,10,8,10,9,8,10,10,9,10,10,10,10,8,10,10,10,8,10,9,8,10,10,9,10,10,10,10,8,10,16],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],1],[2,1],[[],3],[4,3],[[],3],[5,3],[[],3],[4,3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[7,6],[2,2],[8,8],[9,9],[10,10],[11,11],[12,12],[13,13],[14,14],[15,15],[16,16],[17,17],[18,18],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[20,[19]]]],[21,[[20,[19]]]],[[2,2],22],[[14,14],22],[[15,15],22],[[23,23],22],[[],[[20,[24]]]],[4,[[20,[24]]]],[10,25],[10,25],[[],[[20,[24]]]],[4,[[20,[24]]]],[8,25],[10,[[26,[9]]]],[[],27],[[],27],[7,27],[21,27],[9,25],[[],[[20,[7]]]],[4,[[20,[7]]]],[[],[[26,[27]]]],[24,[[26,[27]]]],[[],28],[21,28],[[],4],[[],24],[[],8],[[],9],[[],10],[[],13],[[],16],[14],[15],[[],16],[21,16],[8,25],[[],[[20,[5]]]],[4,[[20,[5]]]],[10,25],[10,25],[[],[[20,[5]]]],[4,[[20,[5]]]],[[],19],[4,19],[[],[[26,[15]]]],[21,[[26,[15]]]],[[],[[26,[14]]]],[21,[[26,[14]]]],[[],[[20,[19]]]],[21,[[20,[19]]]],[[5,5],25],[[2,2],25],[[8,8],25],[[9,9],25],[[10,10],25],[[11,11],25],[[12,12],25],[[14,14],25],[[15,15],25],[[23,23],25],[[16,16],25],[[17,17],25],[[18,18],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],3],[29,3],[[],3],[29,3],[[],8],[[],9],[[],10],[[],28],[21,28],0,[[],[[20,[30]]]],[5,[[20,[30]]]],0,[[7,31],32],[[33,31],32],[[29,31],32],[[21,31],32],[[4,31],32],[[24,31],32],[[5,31],32],[[2,31],32],[[2,31],32],[[8,31],32],[[9,31],32],[[10,31],32],[[11,31],32],[[12,31],32],[[12,31],32],[[13,31],32],[[14,31],32],[[15,31],32],[[23,31],32],[[16,31],32],[[17,31],32],[[17,31],32],[[18,31],32],[[18,31],32],[[],3],[4,3],[[],3],[4,3],[[],3],[7,3],[9,25],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[34,2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[6,[[35,[2]]]],[6,[[35,[14]]]],[6,[[35,[15]]]],[1],[1,2],[[],[[35,[2,6]]]],[14,[[26,[23]]]],[14,[[26,[23]]]],[[],7],[4,7],[[],[[26,[15]]]],[[],15],[21,[[26,[15]]]],[23,15],[[],[[20,[19]]]],[23,[[20,[19]]]],[[2,36]],[[14,36]],[[15,36]],[[],[[26,[19]]]],[4,[[26,[19]]]],[[],14],[23,14],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[33],[[],25],[5,25],[18,25],[[],37],[33,37],[[],[[26,[19]]]],[4,[[26,[19]]]],[[],25],[[],25],[12,[[26,[25]]]],[[21,12],[[26,[25]]]],[[],11],[5,11],[[],6],[24,6],[[],13],[4,13],[[],[[26,[19]]]],[4,[[26,[19]]]],[[],18],[29,18],[[],27],[24,27],[[],3],[21,3],[10,25],[[],28],[5,28],[[],38],[[],6],[[],6],[[],[[26,[19]]]],[[],6],[7,6],[21,6],[4,[[26,[19]]]],[5,38],[23,6],[[],33],[4,33],[10,25],[10,25],[[],33],[4,33],[[]],[[]],[[],8],[[],9],[[],10],[[]],[[]],[10],[10,4],[37,26],0,[[],[[26,[19]]]],[4,[[26,[19]]]],[[],3],[29,3],[[],3],[29,3],[[],[[26,[2]]]],[21,[[26,[2]]]],[[2,2],[[26,[22]]]],[[12,12],[[26,[22]]]],[[14,14],[[26,[22]]]],[[15,15],[[26,[22]]]],[[23,23],[[26,[22]]]],[[16,16],[[26,[22]]]],[[],[[26,[34]]]],[4,[[26,[34]]]],[[],2],[21,2],[2,[[26,[21]]]],[[4,2],[[26,[21]]]],[[],[[39,[2,21]]]],[4,[[39,[2,21]]]],[10,[[26,[8]]]],[6,[[41,[40]]]],[6,[[41,[40]]]],[6,[[41,[40]]]],[6,[[41,[40]]]],0,[[],3],[29,3],[[],25],[[]],[[]],[33],[24],[5,25],[[]],[[]],[[]],[[]],[[]],[4],[[]],[[]],[9],[[4,9]],[[]],[[]],[[]],[4],[[]],[4],[[]],[[]],[[]],[[]],[[]],[33],[2,25],[2,25],[[2,8],25],[[4,2,8],25],[[]],[[]],[8],[[4,8]],[10],[10],[[]],[[]],[[]],[4],[[],28],[21,28],[[],3],[21,3],[[],[[26,[2]]]],[21,[[26,[2]]]],[42,25],[43],[[4,43]],[[],3],[21,3],[[],17],[21,17],0,[[],27],[24,27],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],19],[[],19],[[],19],[[],19],[[],3],[29,3],[[],3],[29,3],[[],3],[4,3],[[],3],[29,3],[[],3],[29,3],0,[[],3],[29,3],[[],3],[5,3],[[],3],[4,3],[[],3],[29,3],0,[[],3],[29,3],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[34,[[35,[14]]]],[[],35],[34,[[35,[15]]]],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],3],[4,3],[[],3],[4,3],[[],3],[4,3],[8,25],[[],[[26,[14]]]],[21,[[26,[14]]]],[[],[[20,[23]]]],[4,[[20,[23]]]],[10,25],[[],6],[7,6],[[],3],[21,3],[[]],[21],[10,10],[10,10],[8,8],[[10,9],10],[9,9],[8,8],[10,10],[10,10],[9,9],[10,10],[10,10],[10,10],[[10,8],10],[8,8],[10,10],[10,10],[10,10],[8,8],[10,10],[9,9],[8,8],[10,10],[10,10],[9,9],[10,10],[10,10],[10,10],[10,10],[8,8],[10,10],0],"c":[],"p":[[15,"u32"],[3,"Pid"],[15,"u64"],[3,"System"],[3,"Disk"],[15,"str"],[3,"Cpu"],[3,"ProcessRefreshKind"],[3,"CpuRefreshKind"],[3,"RefreshKind"],[4,"DiskKind"],[4,"Signal"],[3,"LoadAvg"],[3,"Uid"],[3,"Gid"],[3,"DiskUsage"],[4,"ProcessStatus"],[3,"MacAddr"],[3,"String"],[15,"slice"],[3,"Process"],[4,"Ordering"],[3,"User"],[3,"Component"],[15,"bool"],[4,"Option"],[15,"f32"],[3,"Path"],[3,"NetworkData"],[15,"u8"],[3,"Formatter"],[6,"Result"],[3,"Networks"],[15,"usize"],[4,"Result"],[8,"Hasher"],[3,"NetworksIter"],[3,"OsStr"],[3,"HashMap"],[8,"Iterator"],[3,"Box"],[15,"isize"],[8,"FnMut"],[3,"TypeId"],[8,"SystemExt"],[8,"PidExt"],[8,"DiskExt"],[8,"CpuExt"],[8,"ProcessExt"],[8,"ComponentExt"],[8,"NetworkExt"],[8,"UserExt"],[8,"NetworksExt"]]},\ +"sysinfo":{"doc":"sysinfo ","t":"NNNNDINDIDNDIEDNDNNNNSNNNNDNSDDIDIDNDINNNDIDENNDNNSNENNNNDINNNNNNSDNNNNDNNINNNNNNNKLKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLKLLLKLLLKKLLLKLKLKLLLLLLLLLLKLLKLLLKLKLKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKLLLLKLMKLMLLLLLLLLLLLLLLLLLLLLLLLLKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLKLFLLKLKKLLKLLLLKLKLLLLLLLLLLLLLLLLLLLLLLLLKLLKLKLLLKLKLKLKLKLKLKLKLLKLKKKKKLLLLLKLLLKLLLLLLLLKLLMKLKLKLKLLLLLLLKLKLKLKLLLLLLMKLKKKLLLLLLLKLLLKLLLKLKLLLKLLLLLKLLLKLLLLLKLKLKLKLFKLKLKLMKLLLLLLLLLLLLLLLLLKLKLKLKLKLMKLKLKLKLMKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKLKLLKLKLLKLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLM","n":["Abort","Alarm","Bus","Child","Component","ComponentExt","Continue","Cpu","CpuExt","CpuRefreshKind","Dead","Disk","DiskExt","DiskKind","DiskUsage","FloatingPointException","Gid","HDD","Hangup","IO","IOT","IS_SUPPORTED","Idle","Illegal","Interrupt","Kill","LoadAvg","LockBlocked","MINIMUM_CPU_UPDATE_INTERVAL","MacAddr","NetworkData","NetworkExt","Networks","NetworksExt","NetworksIter","Parked","Pid","PidExt","Pipe","Poll","Power","Process","ProcessExt","ProcessRefreshKind","ProcessStatus","Profiling","Quit","RefreshKind","Run","SSD","SUPPORTED_SIGNALS","Segv","Signal","Sleep","Stop","Stop","Sys","System","SystemExt","TSTP","TTIN","TTOU","Term","Tracing","Trap","UNSPECIFIED","Uid","UninterruptibleDiskSleep","Unknown","Unknown","Urgent","User","User1","User2","UserExt","VirtualAlarm","Wakekill","Waking","Winch","XCPU","XFSZ","Zombie","as_u32","as_u32","available_memory","available_memory","available_space","available_space","boot_time","boot_time","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","brand","brand","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmd","cmd","cmp","cmp","cmp","cmp","components","components","components","components_list","components_mut","components_mut","cpu","cpu","cpu_usage","cpu_usage","cpu_usage","cpu_usage","cpu_usage","cpus","cpus","critical","critical","cwd","cwd","default","default","default","default","default","default","default","deref","deref","disk_usage","disk_usage","disk_usage","disks","disks","disks","disks_list","disks_mut","disks_mut","distribution_id","distribution_id","effective_group_id","effective_group_id","effective_user_id","effective_user_id","environ","environ","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","errors_on_received","errors_on_received","errors_on_transmitted","errors_on_transmitted","everything","everything","everything","exe","exe","fifteen","file_system","file_system","five","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","free_memory","free_memory","free_swap","free_swap","frequency","frequency","frequency","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from_str","from_str","from_str","from_u32","from_u32","get_current_pid","get_user_by_id","get_user_by_id","global_cpu_info","global_cpu_info","group_id","group_id","group_id","group_id","groups","groups","hash","hash","hash","host_name","host_name","id","id","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into","into_iter","into_iter","is_removable","is_removable","is_unspecified","iter","iter","kernel_version","kernel_version","kill","kill","kill_with","kill_with","kind","kind","label","label","load_average","load_average","long_os_version","long_os_version","mac_address","mac_address","max","max","memory","memory","memory","mount_point","mount_point","name","name","name","name","name","name","name","name","name","name","networks","networks","networks","networks_list","networks_mut","networks_mut","new","new","new","new","new","new_all","new_all","new_with_specifics","new_with_specifics","next","one","os_version","os_version","packets_received","packets_received","packets_transmitted","packets_transmitted","parent","parent","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","partial_cmp","physical_core_count","physical_core_count","pid","pid","process","process","processes","processes","processes","processes_by_exact_name","processes_by_exact_name","processes_by_name","processes_by_name","read_bytes","received","received","refresh","refresh","refresh","refresh","refresh","refresh","refresh_all","refresh_all","refresh_components","refresh_components","refresh_components_list","refresh_components_list","refresh_cpu","refresh_cpu","refresh_cpu_specifics","refresh_cpu_specifics","refresh_disks","refresh_disks","refresh_disks_list","refresh_disks_list","refresh_memory","refresh_memory","refresh_networks","refresh_networks","refresh_networks_list","refresh_networks_list","refresh_networks_list","refresh_networks_list","refresh_process","refresh_process","refresh_process_specifics","refresh_process_specifics","refresh_processes","refresh_processes","refresh_processes_specifics","refresh_processes_specifics","refresh_specifics","refresh_specifics","refresh_system","refresh_system","refresh_users_list","refresh_users_list","root","root","run_time","run_time","session_id","session_id","set_open_files_limit","sort_disks_by","sort_disks_by","start_time","start_time","status","status","tasks","temperature","temperature","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","total_errors_on_received","total_errors_on_received","total_errors_on_transmitted","total_errors_on_transmitted","total_memory","total_memory","total_packets_received","total_packets_received","total_packets_transmitted","total_packets_transmitted","total_read_bytes","total_received","total_received","total_space","total_space","total_swap","total_swap","total_transmitted","total_transmitted","total_written_bytes","transmitted","transmitted","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","uptime","uptime","used_memory","used_memory","used_swap","used_swap","user","user_id","user_id","users","users","users_list","vendor_id","vendor_id","virtual_memory","virtual_memory","wait","wait","with_components","with_components_list","with_cpu","with_cpu","with_cpu_usage","with_disk_usage","with_disks","with_disks_list","with_frequency","with_memory","with_networks","with_networks_list","with_processes","with_user","with_users_list","without_components","without_components_list","without_cpu","without_cpu","without_cpu_usage","without_disk_usage","without_disks","without_disks_list","without_frequency","without_memory","without_networks","without_networks_list","without_processes","without_user","without_users_list","written_bytes"],"q":[[0,"sysinfo"]],"d":["Abort signal from C abort function.","Timer signal from C alarm function.","Bus error (bad memory access).","Child stopped or terminated.","Struct containing a component information (temperature and …","Getting a component temperature information.","Continue if stopped.","Struct containing information of a CPU.","Contains all the methods of the Cpu struct.","Used to determine what you want to refresh specifically on …","Linux","Struct containing a disk information.","Contains all the methods of the Disk struct.","Enum containing the different supported kinds of disks.","Type containing read and written bytes.","Floating point exception.","A group id wrapping a platform specific type.","HDD type.","Hangup detected on controlling terminal or death of …","I/O now possible.","IOT trap. A synonym for SIGABRT.","Returns true if this OS is supported. Please refer to the …","Linux","Illegal instruction.","Interrupt from keyboard.","Kill signal.","A struct representing system load average value.","FreeBSD","This is the minimum interval time used internally by …","MAC address for network interface.","Contains network interface information.","Getting volume of received and transmitted data.","Networks interfaces.","Interacting with network interfaces.","Iterator over network interfaces.","Linux","Process ID.","Trait to have a common conversions for the Pid type.","Broken pipe: write to pipe with no readers.","Pollable event (Sys V). Synonym for IO","Power failure (System V).","Struct containing information of a process.","Contains all the methods of the Process struct.","Used to determine what you want to refresh specifically on …","Enum describing the different status of a process.","Profiling time expired.","Quit from keyboard.","Used to determine what you want to refresh specifically on …","Running.","SSD type.","Returns the list of the supported signals on this system …","Invalid memory reference.","An enum representing signals on UNIX-like systems.","Linux","Stop process.","Linux","Bad argument to routine (SVr4).","Structs containing system’s information.","Contains all the methods of the System type.","Stop typed at terminal.","Terminal input for background process.","Terminal output for background process.","Termination signal.","Linux","Trace/breakpoint trap.","A MacAddr with all bytes set to 0.","A user id wrapping a platform specific type.","Linux","Unknown type.","Unknown.","Urgent condition on socket.","Type containing user information.","User-defined signal 1.","User-defined signal 2.","Getting information for a user.","Virtual alarm clock.","Linux","Linux","Windows resize signal.","CPU time limit exceeded.","File size limit exceeded.","Linux/FreeBSD/macOS","Allows to convert Pid into u32.","","Returns the amount of available RAM in bytes.","","Returns the available disk size, in bytes.","","Returns the time (in seconds) when the system booted since …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the CPU’s brand.","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the command line.","","","","","","Returns the components list.","","Returns the value of the “components” refresh kind.","Returns the value of the “components_list” refresh …","Returns a mutable components list.","","Returns the value of the “cpu” refresh kind.","Returns the value of the “cpu” refresh kind.","Returns the total CPU usage (in %). Notice that it might …","Returns this CPU’s usage.","","","Returns the value of the “cpu_usage” refresh kind.","Returns the list of the CPUs.","","Returns the highest temperature before the component halts …","","Returns the current working directory.","","","","","","","","","","","Returns number of bytes read and written to disk.","","Returns the value of the “disk_usage” refresh kind.","Returns the disks list.","","Returns the value of the “disks” refresh kind.","Returns the value of the “disks_list” refresh kind.","Returns the disks list.","","Returns the distribution id as defined by os-release, or …","","Returns the effective group ID of the process.","","Returns the user ID of the effective owner of this process …","","Returns the environment variables of the process.","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the number of incoming errors since the last …","","Returns the number of outcoming errors since the last …","","Creates a new ProcessRefreshKind with every refresh set to …","Creates a new CpuRefreshKind with every refresh set to true…","Creates a new RefreshKind with every refresh set to true/…","Returns the path to the process.","","Average load within fifteen minutes.","Returns the file system used on this disk (so for example: …","","Average load within five minutes.","","","","","","","","","","","","","","","","","","","","","","","","","Returns the amount of free RAM in bytes.","","Returns the amount of free SWAP in bytes.","","Returns the CPU’s frequency.","Returns the CPU frequency in MHz.","Returns the value of the “frequency” refresh kind.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","","","Allows to convert a u32 into Pid.","","Returns the pid for the current process.","Returns the User matching the given user_id.","Returns the User matching the given user_id.","Returns “global” CPUs information (aka the addition of …","","Returns the process group ID of the process.","Return the group id of the user.","","","Returns the groups of the user.","","","","","Returns the system hostname based off DNS","","Return the user id of the user.","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","","Returns true if the disk is removable.","","Checks if this MacAddr has all bytes equal to 0.","Returns an iterator over the network interfaces.","","Returns the system’s kernel version.","","Sends Signal::Kill to the process (which is the only …","Sends Signal::Kill to the process (which is the only …","Sends the given signal to the process. If the signal doesn…","","Returns the kind of disk.","","Returns the label of the component.","","Returns the system load average value.","","Returns the system long os version (e.g “MacOS 11.2 …","","Returns the MAC address associated to current interface.","","Returns the maximum temperature of the component (in …","","Returns the memory usage (in bytes).","","Returns the value of the “memory” refresh kind.","Returns the mount point of the disk (/ for example).","","Returns the disk name.","Returns the name of the process.","Returns this CPU’s name.","Returns the system name.","Returns the name of the user.","","","","","","Returns the network interfaces object.","","Returns the value of the “networks” refresh kind.","Returns the value of the “networks_list” refresh kind.","Returns a mutable access to network interfaces.","","Creates a new System instance with nothing loaded. If you …","Creates a new System instance with nothing loaded. If you …","Creates a new ProcessRefreshKind with every refresh set to …","Creates a new CpuRefreshKind with every refresh set to …","Creates a new RefreshKind with every refresh set to false/…","Creates a new System instance with everything loaded.","Creates a new System instance with everything loaded.","Creates a new System instance and refresh the data …","","","Average load within one minute.","Returns the system version (e.g. for MacOS this will …","","Returns the number of incoming packets since the last …","","Returns the number of outcoming packets since the last …","","Returns the parent PID.","","","","","","","","Returns the number of physical cores on the CPU or None if …","","Returns the PID of the process.","","Returns the process corresponding to the given pid or None …","","Returns the process list.","","Returns the value of the “processes” refresh kind.","Returns an iterator of processes with exactly the given …","Returns an iterator of processes with exactly the given …","Returns an iterator of process containing the given name.","Returns an iterator of process containing the given name.","Number of read bytes since the last refresh.","Returns the number of received bytes since the last …","","Updates the disk’ information.","Refreshes the network interfaces’ content.","Refreshes component.","","","","Refreshes all system, processes, disks and network …","Refreshes all system, processes, disks and network …","Refreshes components’ temperature.","Refreshes components’ temperature.","Refreshes components list.","","Refreshes CPUs information.","Refreshes CPUs information.","Refreshes CPUs specific information.","","Refreshes the listed disks’ information.","Refreshes the listed disks’ information.","The disk list will be emptied then completely recomputed.","","Refreshes RAM and SWAP usage.","","Refreshes networks data.","Refreshes networks data.","Refreshes the network interfaces list.","The network list will be updated: removing not existing …","The network list will be updated: removing not existing …","","Refreshes only the process corresponding to pid. Returns …","Refreshes only the process corresponding to pid. Returns …","Refreshes only the process corresponding to pid. Returns …","","Gets all processes and updates their information.","Gets all processes and updates their information.","Gets all processes and updates the specified information.","","Refreshes according to the given RefreshKind. It calls the …","Refreshes according to the given RefreshKind. It calls the …","Refreshes system information (RAM, swap, CPU usage and …","Refreshes system information (RAM, swap, CPU usage and …","Refreshes users list.","","Returns the path of the root directory.","","Returns for how much time the process has been running (in …","","Returns the session ID for the current process or None if …","","This function is only used on Linux targets, on the other …","Sort the disk list with the provided callback.","","Returns the time where the process was started (in …","","Returns the status of the process.","","Tasks run by this process.","Returns the temperature of the component (in celsius …","","","","","","","","","","","","","","","","","","Returns the total number of incoming errors.","","Returns the total number of outcoming errors.","","Returns the RAM size in bytes.","","Returns the total number of incoming packets.","","Returns the total number of outcoming packets.","","Total number of read bytes.","Returns the total number of received bytes.","","Returns the total disk size, in bytes.","","Returns the SWAP size in bytes.","","Returns the total number of transmitted bytes.","","Total number of written bytes.","Returns the number of transmitted bytes since the last …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns system uptime (in seconds).","","Returns the amount of used RAM in bytes.","","Returns the amount of used SWAP in bytes.","","Returns the value of the “user” refresh kind. This …","Returns the ID of the owner user of this process or None …","","Returns the users list.","","Returns the value of the “users_list” refresh kind.","Returns the CPU’s vendor id.","","Returns the virtual memory usage (in bytes).","","Wait for process termination.","","Sets the value of the “components” refresh kind to true…","Sets the value of the “components_list” refresh kind …","Sets the value of the “cpu” refresh kind to true.","Sets the value of the “cpu” refresh kind to true.","Sets the value of the “cpu_usage” refresh kind to true.","Sets the value of the “disk_usage” refresh kind to true…","Sets the value of the “disks” refresh kind to true.","Sets the value of the “disks_list” refresh kind to true…","Sets the value of the “frequency” refresh kind to true.","Sets the value of the “memory” refresh kind to true.","Sets the value of the “networks” refresh kind to true.","Sets the value of the “networks_list” refresh kind to …","Sets the value of the “processes” refresh kind to true.","Sets the value of the “user” refresh kind to true.","Sets the value of the “users_list” refresh kind to true…","Sets the value of the “components” refresh kind to …","Sets the value of the “components_list” refresh kind …","Sets the value of the “cpu” refresh kind to false.","Sets the value of the “cpu” refresh kind to false.","Sets the value of the “cpu_usage” refresh kind to false…","Sets the value of the “disk_usage” refresh kind to …","Sets the value of the “disks” refresh kind to false.","Sets the value of the “disks_list” refresh kind to …","Sets the value of the “frequency” refresh kind to false…","Sets the value of the “memory” refresh kind to false.","Sets the value of the “networks” refresh kind to false.","Sets the value of the “networks_list” refresh kind to …","Sets the value of the “processes” refresh kind to false…","Sets the value of the “user” refresh kind to false.","Sets the value of the “users_list” refresh kind to …","Number of written bytes since the last refresh."],"i":[12,12,12,12,0,0,12,0,0,0,17,0,0,0,0,12,0,11,12,12,12,45,17,12,12,12,0,17,45,0,0,0,0,0,0,17,0,0,12,12,12,0,0,0,0,12,12,0,17,11,45,12,0,17,12,17,12,0,0,12,12,12,12,17,12,18,0,17,11,17,12,0,12,12,0,12,17,17,12,12,12,17,46,2,45,4,47,5,45,4,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,48,7,2,8,9,10,11,12,13,14,15,16,17,18,2,8,9,10,11,12,13,14,15,16,17,18,49,21,2,14,15,23,45,4,10,10,45,4,8,10,49,48,7,21,9,45,4,50,24,49,21,4,24,8,9,10,13,16,14,15,49,21,8,45,4,10,10,45,4,45,4,49,21,49,21,49,21,5,2,8,9,10,11,12,14,15,23,16,17,18,5,2,8,9,10,11,12,14,15,23,16,17,18,51,29,51,29,8,9,10,49,21,13,47,5,13,7,33,29,21,4,24,5,2,2,8,9,10,11,12,12,13,14,15,23,16,17,17,18,18,45,4,45,4,48,7,9,37,7,33,29,21,4,24,5,2,2,8,9,10,11,12,13,14,15,23,16,17,18,2,14,15,46,2,0,45,45,45,4,49,52,21,23,52,23,2,14,15,45,4,52,23,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,37,33,47,5,18,53,33,45,4,49,49,49,21,47,5,50,24,45,4,45,4,51,29,50,24,49,21,10,47,5,47,49,48,45,52,7,21,4,5,23,45,4,10,10,45,4,45,45,8,9,10,45,45,45,4,37,13,45,4,51,29,51,29,49,21,2,12,14,15,23,16,45,4,49,21,45,4,45,4,10,45,45,45,45,16,51,29,47,53,50,33,24,5,45,45,45,45,45,4,45,45,45,4,45,45,45,4,45,4,45,45,53,45,45,33,45,45,45,4,45,45,45,4,45,45,45,45,45,4,49,21,49,21,49,21,0,45,4,49,21,49,21,21,50,24,2,8,9,10,11,12,13,14,15,16,17,18,2,12,17,18,51,29,51,29,45,4,51,29,51,29,16,51,29,47,5,45,4,51,29,16,51,29,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,14,15,15,23,16,17,18,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,37,7,33,29,21,4,24,5,2,8,9,10,11,12,13,14,15,23,16,17,18,45,4,45,4,45,4,8,49,21,45,4,10,48,7,49,21,49,21,10,10,8,10,9,8,10,10,9,10,10,10,10,8,10,10,10,8,10,9,8,10,10,9,10,10,10,10,8,10,16],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[],1],[2,1],[[],3],[4,3],[[],3],[5,3],[[],3],[4,3],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],6],[7,6],[2,2],[8,8],[9,9],[10,10],[11,11],[12,12],[13,13],[14,14],[15,15],[16,16],[17,17],[18,18],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[20,[19]]]],[21,[[20,[19]]]],[[2,2],22],[[14,14],22],[[15,15],22],[[23,23],22],[[],[[20,[24]]]],[4,[[20,[24]]]],[10,25],[10,25],[[],[[20,[24]]]],[4,[[20,[24]]]],[8,25],[10,[[26,[9]]]],[[],27],[[],27],[7,27],[21,27],[9,25],[[],[[20,[7]]]],[4,[[20,[7]]]],[[],[[26,[27]]]],[24,[[26,[27]]]],[[],28],[21,28],[[],4],[[],24],[[],8],[[],9],[[],10],[[],13],[[],16],[14],[15],[[],16],[21,16],[8,25],[[],[[20,[5]]]],[4,[[20,[5]]]],[10,25],[10,25],[[],[[20,[5]]]],[4,[[20,[5]]]],[[],19],[4,19],[[],[[26,[15]]]],[21,[[26,[15]]]],[[],[[26,[14]]]],[21,[[26,[14]]]],[[],[[20,[19]]]],[21,[[20,[19]]]],[[5,5],25],[[2,2],25],[[8,8],25],[[9,9],25],[[10,10],25],[[11,11],25],[[12,12],25],[[14,14],25],[[15,15],25],[[23,23],25],[[16,16],25],[[17,17],25],[[18,18],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],25],[[],3],[29,3],[[],3],[29,3],[[],8],[[],9],[[],10],[[],28],[21,28],0,[[],[[20,[30]]]],[5,[[20,[30]]]],0,[[7,31],32],[[33,31],32],[[29,31],32],[[21,31],32],[[4,31],32],[[24,31],32],[[5,31],32],[[2,31],32],[[2,31],32],[[8,31],32],[[9,31],32],[[10,31],32],[[11,31],32],[[12,31],32],[[12,31],32],[[13,31],32],[[14,31],32],[[15,31],32],[[23,31],32],[[16,31],32],[[17,31],32],[[17,31],32],[[18,31],32],[[18,31],32],[[],3],[4,3],[[],3],[4,3],[[],3],[7,3],[9,25],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[34,2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[6,[[35,[2]]]],[6,[[35,[14]]]],[6,[[35,[15]]]],[1],[1,2],[[],[[35,[2,6]]]],[14,[[26,[23]]]],[14,[[26,[23]]]],[[],7],[4,7],[[],[[26,[15]]]],[[],15],[21,[[26,[15]]]],[23,15],[[],[[20,[19]]]],[23,[[20,[19]]]],[[2,36]],[[14,36]],[[15,36]],[[],[[26,[19]]]],[4,[[26,[19]]]],[[],14],[23,14],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[33],[[],25],[5,25],[18,25],[[],37],[33,37],[[],[[26,[19]]]],[4,[[26,[19]]]],[[],25],[[],25],[12,[[26,[25]]]],[[21,12],[[26,[25]]]],[[],11],[5,11],[[],6],[24,6],[[],13],[4,13],[[],[[26,[19]]]],[4,[[26,[19]]]],[[],18],[29,18],[[],27],[24,27],[[],3],[21,3],[10,25],[[],28],[5,28],[[],38],[[],6],[[],6],[[],[[26,[19]]]],[[],6],[7,6],[21,6],[4,[[26,[19]]]],[5,38],[23,6],[[],33],[4,33],[10,25],[10,25],[[],33],[4,33],[[]],[[]],[[],8],[[],9],[[],10],[[]],[[]],[10],[10,4],[37,26],0,[[],[[26,[19]]]],[4,[[26,[19]]]],[[],3],[29,3],[[],3],[29,3],[[],[[26,[2]]]],[21,[[26,[2]]]],[[2,2],[[26,[22]]]],[[12,12],[[26,[22]]]],[[14,14],[[26,[22]]]],[[15,15],[[26,[22]]]],[[23,23],[[26,[22]]]],[[16,16],[[26,[22]]]],[[],[[26,[34]]]],[4,[[26,[34]]]],[[],2],[21,2],[2,[[26,[21]]]],[[4,2],[[26,[21]]]],[[],[[39,[2,21]]]],[4,[[39,[2,21]]]],[10,[[26,[8]]]],[6,[[41,[40]]]],[6,[[41,[40]]]],[6,[[41,[40]]]],[6,[[41,[40]]]],0,[[],3],[29,3],[[],25],[[]],[[]],[33],[24],[5,25],[[]],[[]],[[]],[[]],[[]],[4],[[]],[[]],[9],[[4,9]],[[]],[[]],[[]],[4],[[]],[4],[[]],[[]],[[]],[[]],[[]],[33],[2,25],[2,25],[[2,8],25],[[4,2,8],25],[[]],[[]],[8],[[4,8]],[10],[10],[[]],[[]],[[]],[4],[[],28],[21,28],[[],3],[21,3],[[],[[26,[2]]]],[21,[[26,[2]]]],[42,25],[43],[[4,43]],[[],3],[21,3],[[],17],[21,17],0,[[],27],[24,27],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],19],[[],19],[[],19],[[],19],[[],3],[29,3],[[],3],[29,3],[[],3],[4,3],[[],3],[29,3],[[],3],[29,3],0,[[],3],[29,3],[[],3],[5,3],[[],3],[4,3],[[],3],[29,3],0,[[],3],[29,3],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[34,[[35,[14]]]],[[],35],[34,[[35,[15]]]],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],35],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],44],[[],3],[4,3],[[],3],[4,3],[[],3],[4,3],[8,25],[[],[[26,[14]]]],[21,[[26,[14]]]],[[],[[20,[23]]]],[4,[[20,[23]]]],[10,25],[[],6],[7,6],[[],3],[21,3],[[]],[21],[10,10],[10,10],[8,8],[[10,9],10],[9,9],[8,8],[10,10],[10,10],[9,9],[10,10],[10,10],[10,10],[[10,8],10],[8,8],[10,10],[10,10],[10,10],[8,8],[10,10],[9,9],[8,8],[10,10],[10,10],[9,9],[10,10],[10,10],[10,10],[10,10],[8,8],[10,10],0],"c":[],"p":[[15,"u32"],[3,"Pid"],[15,"u64"],[3,"System"],[3,"Disk"],[15,"str"],[3,"Cpu"],[3,"ProcessRefreshKind"],[3,"CpuRefreshKind"],[3,"RefreshKind"],[4,"DiskKind"],[4,"Signal"],[3,"LoadAvg"],[3,"Uid"],[3,"Gid"],[3,"DiskUsage"],[4,"ProcessStatus"],[3,"MacAddr"],[3,"String"],[15,"slice"],[3,"Process"],[4,"Ordering"],[3,"User"],[3,"Component"],[15,"bool"],[4,"Option"],[15,"f32"],[3,"Path"],[3,"NetworkData"],[15,"u8"],[3,"Formatter"],[6,"Result"],[3,"Networks"],[15,"usize"],[4,"Result"],[8,"Hasher"],[3,"NetworksIter"],[3,"OsStr"],[3,"HashMap"],[8,"Iterator"],[3,"Box"],[15,"isize"],[8,"FnMut"],[3,"TypeId"],[8,"SystemExt"],[8,"PidExt"],[8,"DiskExt"],[8,"CpuExt"],[8,"ProcessExt"],[8,"ComponentExt"],[8,"NetworkExt"],[8,"UserExt"],[8,"NetworksExt"]]},\ "target_features":{"doc":"Target features","t":"NENNRDDNNNNIDDDNNNLLLLLLLLLLLLLLLLLLLLALLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLAAAAAAAAA","n":["AArch64","Architecture","Arm","Bpf","CURRENT_TARGET","Feature","FeaturesIter","Hexagon","Mips","PowerPC","RiscV","SimdType","Target","UnknownCpu","UnknownFeature","Unsupported","Wasm","X86","architecture","architecture","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone","description","docs","eq","eq","eq","features","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from_cpu","from_str","implies","into","into","into","into","into","into","into_iter","name","new","new","next","suggested_simd_width","supports_feature","supports_feature_str","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","with_feature","with_feature_str","aarch64","arm","bpf","hexagon","mips","powerpc","riscv","wasm","x86"],"q":[[0,"target_features"],[93,"target_features::docs"]],"d":["AArch64","A target architecture.","Arm","BPF","The target of the current build.","A target feature.","Iterator returned by Target::features.","Hexagon","MIPS","PowerPC","RISC-V","Types which can be SIMD vector elements.","A target architecture with optional features.","Returned by Target::from_cpu when the requested CPU can’…","Returned by Feature::new when the requested feature can’…","Another target, which doesn’t have features","WASM","x86 and x86-64","Get the architecture this feature is for.","Returns the target architecture.","","","","","","","","","","","","","","","","","","Get a human-readable description of the feature.","List of features available for each architecture.","","","","Returns an iterator over the features.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a target based on a particular CPU.","Create a new Architecture from its name.","Return all features which are implied by the existence of …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","","Get the name of the feature.","Look up a feature.","Create a target with no specified features.","","Returns a suggested number of elements for a SIMD vector …","Returns whether the target supports the specified feature.","Returns whether the target supports the specified feature.","","","","","","","","","","","","","","","","","","","Add a feature to the target.","Add a feature to the target.","aarch64 documentation","arm documentation","bpf documentation","hexagon documentation","mips documentation","powerpc documentation","riscv documentation","wasm documentation","x86 documentation"],"i":[2,0,2,2,0,0,0,2,2,2,2,0,0,0,0,2,2,2,1,3,8,2,4,5,1,3,8,2,4,5,1,3,2,4,5,1,3,1,0,2,1,3,3,2,4,4,5,5,1,3,8,2,4,5,1,3,3,2,1,8,2,4,5,1,3,8,1,1,3,8,3,3,3,8,2,4,5,1,3,8,2,4,5,1,3,8,2,4,5,1,3,3,3,0,0,0,0,0,0,0,0,0],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[3,2],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[2,2],[4,4],[5,5],[1,1],[3,3],[1,6],0,[[2,2],7],[[1,1],7],[[3,3],7],[3,8],[[2,9],10],[[4,9],10],[[4,9],10],[[5,9],10],[[5,9],10],[[1,9],[[12,[11]]]],[[3,9],[[12,[11]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[2,6],[[12,[3,5]]]],[6,2],[1,[[13,[1]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,6],[[2,6],[[12,[1,4]]]],[2,3],[8,14],[3,[[14,[15]]]],[[3,1],7],[[3,6],7],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],12],[[],16],[[],16],[[],16],[[],16],[[],16],[[],16],[[3,1],3],[[3,6],3],0,0,0,0,0,0,0,0,0],"c":[],"p":[[3,"Feature"],[4,"Architecture"],[3,"Target"],[3,"UnknownFeature"],[3,"UnknownCpu"],[15,"str"],[15,"bool"],[3,"FeaturesIter"],[3,"Formatter"],[6,"Result"],[3,"Error"],[4,"Result"],[15,"slice"],[4,"Option"],[15,"usize"],[3,"TypeId"]]},\ "thiserror":{"doc":"github crates-io docs-rs","t":"Y","n":["Error"],"q":[[0,"thiserror"]],"d":[""],"i":[0],"f":[0],"c":[],"p":[]},\ "thiserror_impl":{"doc":"","t":"Y","n":["Error"],"q":[[0,"thiserror_impl"]],"d":[""],"i":[0],"f":[0],"c":[],"p":[]},\ @@ -221,7 +221,7 @@ var searchIndex = JSON.parse('{\ "unindent":{"doc":"github crates-io docs-rs","t":"QIFKF","n":["Output","Unindent","unindent","unindent","unindent_bytes"],"q":[[0,"unindent"]],"d":["","","","",""],"i":[6,0,0,6,0],"f":[0,0,[1,2],[[]],[[[4,[3]]],[[5,[3]]]]],"c":[],"p":[[15,"str"],[3,"String"],[15,"u8"],[15,"slice"],[3,"Vec"],[8,"Unindent"]]},\ "untrusted":{"doc":"untrusted.rs: Safe, fast, zero-panic, zero-crashing, …","t":"DDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLLL","n":["EndOfInput","Input","Mark","Reader","as_slice_less_safe","at_end","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","eq","eq","eq","fmt","fmt","fmt","from","from","from","from","from","from","get_input_between_marks","into","into","into","into","is_empty","len","mark","new","peek","read_all","read_all_optional","read_byte","read_bytes","read_bytes_to_end","read_partial","skip","skip_to_end","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id"],"q":[[0,"untrusted"]],"d":["The error type used to indicate the end of the input was …","A wrapper around &'a [u8] that helps in writing panic-free …","An index into the already-parsed input of a Reader.","A read-only, forward-only* cursor into the data in an Input…","Access the input as a slice so it can be processed by …","Returns true if the reader is at the end of the input, and …","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Construct a new Input for the given input bytes.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns an Input for already-parsed input that has had its …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Returns true if the input is empty and false otherwise.","Returns the length of the Input.","Return the current position of the Reader for future use …","Construct a new Reader for the given input. Use read_all or","Returns true if there is at least one more byte in the …","Calls read with the given input as a Reader, ensuring that …","Calls read with the given input as a Reader, ensuring that …","Reads the next input byte.","Skips num_bytes of the input, returning the skipped input …","Skips the reader to the end of the input, returning the …","Calls read() with the given input as a Reader. On success, …","Skips num_bytes of the input.","Skips the reader to the end of the input.","","","","","","","","","","","",""],"i":[0,0,0,0,1,4,9,1,4,6,9,1,4,6,1,6,1,1,6,1,4,6,9,1,1,1,4,6,4,9,1,4,6,1,1,4,4,4,1,0,4,4,4,4,4,4,9,1,4,6,9,1,4,6,9,1,4,6],"f":[0,0,0,0,[1,[[3,[2]]]],[4,5],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,1],[6,6],[[1,1],5],[[1,[3,[2]]],5],[[6,6],5],[[1,7],8],[[4,7],8],[[6,7],8],[[]],[[[3,[2]]],1],[[]],[[[3,[2]]],1],[[]],[[]],[[4,9,9],[[10,[1,6]]]],[[]],[[]],[[]],[[]],[1,5],[1,11],[4,9],[1,4],[[4,2],5],[[1,12],10],[[[13,[1]],12],10],[4,[[10,[2,6]]]],[[4,11],[[10,[1,6]]]],[4,1],[[4,12],10],[[4,11],[[10,[6]]]],[4],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],10],[[],14],[[],14],[[],14],[[],14]],"c":[],"p":[[3,"Input"],[15,"u8"],[15,"slice"],[3,"Reader"],[15,"bool"],[3,"EndOfInput"],[3,"Formatter"],[6,"Result"],[3,"Mark"],[4,"Result"],[15,"usize"],[8,"FnOnce"],[4,"Option"],[3,"TypeId"]]},\ "url":{"doc":"rust-url is an implementation of the URL Standard for the …","t":"NNNNNNNNNNNNNNNNNNNNNGNNNENNNNNNNNNNDENEDDNENNNENNNDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLCLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["AfterFragment","AfterHost","AfterPassword","AfterPath","AfterPort","AfterQuery","AfterScheme","AfterUsername","Backslash","BeforeFragment","BeforeHost","BeforePassword","BeforePath","BeforePort","BeforeQuery","BeforeScheme","BeforeUsername","C0SpaceIgnored","Domain","EmbeddedCredentials","EmptyHost","EncodingOverride","ExpectedDoubleSlash","ExpectedFileDoubleSlash","FileWithHostAndWindowsDrive","Host","IdnaError","InvalidDomainCharacter","InvalidIpv4Address","InvalidIpv6Address","InvalidPort","Ipv4","Ipv6","NonUrlCodePoint","NullInFragment","Opaque","OpaqueOrigin","Origin","Overflow","ParseError","ParseOptions","PathSegmentsMut","PercentDecode","Position","RelativeUrlWithCannotBeABaseBase","RelativeUrlWithoutBase","SetHostOnCannotBeABaseUrl","SyntaxViolation","TabOrNewlineIgnored","Tuple","UnencodedAtSign","Url","UrlQuery","as_mut_string","as_ref","as_str","ascii_serialization","authority","base_url","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cannot_be_a_base","clear","clone","clone","clone","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","clone_into","cmp","cmp","description","domain","drop","drop","encoding_override","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","extend","finish","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","form_urlencoded","fragment","from","from","from","from","from","from","from","from","from","from","from","from_directory_path","from_file_path","from_str","has_authority","has_host","hash","hash","hash","hash","host","host_str","index","index","index","index","into","into","into","into","into","into","into","into","into","into","into_string","is_special","is_tuple","join","make_relative","new_opaque","options","origin","parse","parse","parse","parse_opaque","parse_with_params","partial_cmp","partial_cmp","password","path","path_segments","path_segments_mut","pop","pop_if_empty","port","port_or_known_default","provide","push","query","query_pairs","query_pairs_mut","scheme","set_fragment","set_host","set_ip_host","set_password","set_path","set_port","set_query","set_scheme","set_username","socket_addrs","syntax_violation_callback","to_file_path","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","unicode_serialization","username"],"q":[[0,"url"]],"d":["","","","","","","","","","","","","","","","","","","A DNS domain name, as ‘.’ dot-separated labels. …","","","","","","","The host name of an URL.","","","","","","An IPv4 address. Url::host_str returns the serialization …","An IPv6 address. Url::host_str returns the serialization …","","","A globally unique identifier","Opaque identifier for URLs that have file or other schemes","The origin of an URL","","Errors that can occur during parsing.","Full configuration for the URL parser.","Exposes methods to manipulate the path of an URL that is …","","Indicates a position within a URL based on its components.","","","","Non-fatal syntax violations that can occur during parsing.","","Consists of the URL’s scheme, host and port","","A parsed URL record.","Implementation detail of Url::query_pairs_mut. Typically …","","","Return the serialization of this URL.","…","Return the authority of this URL as an ASCII string.","Change the base URL","","","","","","","","","","","","","","","","","","","","","Return whether this URL is a cannot-be-a-base URL, meaning …","Remove all segments in the path, leaving the minimal …","","","","","","","","","","","","","","","","","","","","If this URL has a host and it is a domain name (not an IP …","","","Override the character encoding of query strings. This is …","","","","","","","","","","","","","Append each segment from the given iterator at the end of …","","","","","","","","","","","","","","","","Return this URL’s fragment identifier, if any.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Convert a directory name as std::path::Path into an URL in …","Convert a file name as std::path::Path into an URL in the …","","Return whether the URL has an ‘authority’, which can …","Equivalent to url.host().is_some().","","","","","Return the parsed representation of the host for this URL. …","Return the string representation of the host (domain or IP …","","","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Return the serialization of this URL.","Return whether the URL is special (has a special scheme)","Return whether this origin is a (scheme, host, port) tuple …","Parse a string as an URL, with this URL as the base URL.","Creates a relative URL if possible, with this URL as the …","Creates a new opaque origin that is only equal to itself.","Return a default ParseOptions that can fully configure the …","Return the origin of this URL (…","Parse a host: either an IPv6 address in [] square …","Parse an absolute URL from a string.","Parse an URL string with the configuration so far.","","Parse an absolute URL from a string and add params to its …","","","Return the password for this URL, if any, as a …","Return the path for this URL, as a percent-encoded ASCII …","Unless this URL is cannot-be-a-base, return an iterator of …","Return an object with methods to manipulate this URL’s …","Remove the last segment of this URL’s path.","Remove the last segment of this URL’s path if it is …","Return the port number for this URL, if any.","Return the port number for this URL, or the default port …","","Append the given segment at the end of this URL’s path.","Return this URL’s query string, if any, as a …","Parse the URL’s query string, if any, as …","Manipulate this URL’s query string, viewed as a sequence …","Return the scheme of this URL, lower-cased, as an ASCII …","Change this URL’s fragment identifier.","Change this URL’s host.","Change this URL’s host to the given IP address.","Change this URL’s password.","Change this URL’s path.","Change this URL’s port number.","Change this URL’s query string.","Change this URL’s scheme.","Change this URL’s username.","Resolve a URL’s host and port number to SocketAddr.","Call the provided function or closure for a non-fatal …","Assuming the URL is in the file scheme or similar, convert …","Return a copy of self that owns an allocated String but …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","…","Return the username for this URL (typically the empty …"],"i":[15,15,15,15,15,15,15,15,14,15,15,15,15,15,15,15,15,14,11,14,13,0,14,14,14,0,13,13,13,13,13,11,11,14,14,5,0,0,13,0,0,0,14,0,13,13,13,0,14,5,14,0,0,1,3,3,5,3,6,11,5,12,13,14,9,15,3,6,1,11,5,12,13,14,9,15,3,6,1,3,9,11,5,12,13,14,15,3,6,11,5,12,13,14,15,3,6,11,3,14,3,9,1,6,11,5,12,13,14,3,11,5,12,13,14,3,9,1,11,11,5,12,13,13,14,14,9,15,3,3,1,0,3,11,5,12,13,13,14,9,15,3,6,1,3,3,3,3,3,11,5,12,3,3,3,3,3,3,3,11,5,12,13,14,9,15,3,6,1,3,3,5,3,3,5,3,3,11,3,6,11,3,11,3,3,3,3,3,9,9,3,3,13,9,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,3,11,11,5,12,13,14,15,3,6,11,13,14,3,11,5,12,13,14,9,15,3,3,6,1,11,5,12,13,14,9,15,3,6,1,11,5,12,13,14,9,15,3,6,1,5,3],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,2],[3,4],[3,4],[5,2],[3,4],[[6,[7,[3]]],6],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3,8],[9,9],[[[11,[10]]],[[11,[10]]]],[5,5],[12,12],[13,13],[14,14],[15,15],[3,3],[6,6],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[11,[16]],[11,[16]]],17],[[3,3],17],[14,4],[3,[[7,[4]]]],[9],[1],[[6,18],6],[[[11,[19]],11],8],[[5,5],8],[[12,12],8],[[13,13],8],[[14,14],8],[[3,3],8],[[],8],[[],8],[[],8],[[],8],[[],8],[[],8],[[9,20],9],[1,3],[[[11,[21]],22],23],[[[11,[[24,[4]]]],22],23],[[5,22],23],[[12,22],23],[[13,22],23],[[13,22],23],[[14,22],23],[[14,22],23],[[9,22],23],[[15,22],23],[[3,22],23],[[3,22],23],[[1,22],23],0,[3,[[7,[4]]]],[[]],[[]],[[]],[[]],[25,13],[[]],[[]],[[]],[[]],[[]],[[]],[[[24,[26]]],[[27,[3]]]],[[[24,[26]]],[[27,[3]]]],[4,[[27,[3,13]]]],[3,8],[3,8],[[[11,[28]],29]],[[5,29]],[[12,29]],[[3,29]],[3,[[7,[[11,[4]]]]]],[3,[[7,[4]]]],[[3,[30,[15]]],4],[[3,[31,[15]]],4],[[3,[32,[15]]],4],[[3,33],4],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[3,2],[3,8],[5,8],[[3,4],[[27,[3,13]]]],[[3,3],[[7,[2]]]],[[],5],[[],6],[3,5],[4,[[27,[[11,[2]],13]]]],[4,[[27,[3,13]]]],[[6,4],[[27,[3,13]]]],[4,[[27,[[11,[2]],13]]]],[[4,20],[[27,[3,13]]]],[[[11,[34]],[11,[34]]],[[7,[17]]]],[[3,3],[[7,[17]]]],[3,[[7,[4]]]],[3,4],[3,[[7,[[36,[35]]]]]],[3,[[27,[9]]]],[9,9],[9,9],[3,[[7,[37]]]],[3,[[7,[37]]]],[38],[[9,4],9],[3,[[7,[4]]]],[3,39],[3,[[40,[1]]]],[3,4],[[3,[7,[4]]]],[[3,[7,[4]]],[[27,[13]]]],[[3,41],27],[[3,[7,[4]]],27],[[3,4]],[[3,[7,[37]]],27],[[3,[7,[4]]]],[[3,4],27],[[3,4],27],[[3,42],[[45,[[44,[43]]]]]],[[6,[7,[42]]],6],[3,[[27,[46]]]],[[[11,[4]]],[[11,[2]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],2],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[4,[[27,[3]]]],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],27],[[],47],[[],47],[[],47],[[],47],[[],47],[[],47],[[],47],[[],47],[[],47],[[],47],[5,2],[3,4]],"c":[169],"p":[[3,"UrlQuery"],[3,"String"],[3,"Url"],[15,"str"],[4,"Origin"],[3,"ParseOptions"],[4,"Option"],[15,"bool"],[3,"PathSegmentsMut"],[8,"Clone"],[4,"Host"],[3,"OpaqueOrigin"],[4,"ParseError"],[4,"SyntaxViolation"],[4,"Position"],[8,"Ord"],[4,"Ordering"],[6,"EncodingOverride"],[8,"PartialEq"],[8,"IntoIterator"],[8,"Debug"],[3,"Formatter"],[6,"Result"],[8,"AsRef"],[3,"Errors"],[3,"Path"],[4,"Result"],[8,"Hash"],[8,"Hasher"],[3,"Range"],[3,"RangeFrom"],[3,"RangeTo"],[3,"RangeFull"],[8,"PartialOrd"],[15,"char"],[3,"Split"],[15,"u16"],[3,"Demand"],[3,"Parse"],[3,"Serializer"],[4,"IpAddr"],[8,"Fn"],[4,"SocketAddr"],[3,"Vec"],[6,"Result"],[3,"PathBuf"],[3,"TypeId"]]},\ -"value_trait":{"doc":"A crate providing generalised value traits for working with","t":"EINQNNINNQQNENNNNNNNNNQQINNNNNINQENQQDNNNNNNNIIIEILKKLKKLLLKLLLLKLLKLKKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLAKKLLLLLLLLLLLLKKLLLLLLLLLMLLLLKLLLLLLKKKLLLLLLLLLLLLLLKLLLLLLLLLLKKKKKKLKKLALLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKKKIDDDQDLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLCICCQQCQCICCCCCKKKKKLLLLLLKKKKKKKKK","n":["AccessError","Array","Array","Array","Bool","Bool","Builder","Char","Custom","Element","Element","Extended","ExtendedValueType","F32","F64","F64","I128","I16","I32","I64","I64","I8","Key","Key","Mutable","None","NotAnArray","NotAnObject","Null","Null","Object","Object","Object","StaticNode","String","String","Target","TryTypeError","U128","U16","U32","U64","U64","U8","Usize","Value","ValueAccess","ValueInto","ValueType","Writable","array","array_with_capacity","as_array","as_array","as_array_mut","as_bool","as_bool","as_char","as_f32","as_f64","as_f64","as_i128","as_i16","as_i32","as_i64","as_i64","as_i8","as_object","as_object","as_object_mut","as_str","as_str","as_u128","as_u16","as_u32","as_u64","as_u64","as_u8","as_usize","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cast_f64","cast_f64","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","contains_key","default","default","default","encode","encode_pp","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expected","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","generator","get","get","get","get_array","get_bool","get_f32","get_f64","get_i128","get_i16","get_i32","get_i64","get_i8","get_idx","get_idx_mut","get_mut","get_mut","get_mut","get_object","get_str","get_u128","get_u16","get_u32","get_u64","get_u8","get_usize","got","index","index","index_mut","index_mut","insert","insert","into","into","into","into","into","into_array","into_object","into_string","is_array","is_bool","is_char","is_custom","is_f32","is_f64","is_f64_castable","is_float","is_i128","is_i16","is_i32","is_i64","is_i8","is_integer","is_null","is_null","is_number","is_object","is_str","is_u128","is_u16","is_u32","is_u64","is_u8","is_usize","iter","iter","keys","len","len","null","object","object_with_capacity","pop","pop","prelude","provide","provide","push","push","remove","remove","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","try_as_array","try_as_bool","try_as_char","try_as_f32","try_as_f64","try_as_i128","try_as_i16","try_as_i32","try_as_i64","try_as_i8","try_as_object","try_as_str","try_as_u128","try_as_u16","try_as_u32","try_as_u64","try_as_u8","try_as_usize","try_cast_f64","try_from","try_from","try_from","try_from","try_from","try_get","try_get_array","try_get_bool","try_get_f32","try_get_f64","try_get_i128","try_get_i16","try_get_i32","try_get_i64","try_get_i8","try_get_idx","try_get_object","try_get_str","try_get_u128","try_get_u16","try_get_u32","try_get_u64","try_get_u8","try_get_usize","try_insert","try_into","try_into","try_into","try_into","try_into","try_into_array","try_into_object","try_into_string","try_pop","try_push","try_remove","type_id","type_id","type_id","type_id","type_id","value_type","value_type","values","write","write_pp","BaseGenerator","DumpGenerator","PrettyGenerator","PrettyWriterGenerator","T","WriterGenerator","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","consume","consume","dedent","dedent","dedent","default","from","from","from","from","get_writer","get_writer","get_writer","get_writer","get_writer","indent","indent","indent","into","into","into","into","new","new","new","new","new_line","new_line","new_line","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","write","write","write","write_char","write_char","write_char","write_float","write_int","write_min","write_min","write_min","write_min","write_min","write_simple_str_content","write_simple_string","write_str_simd","write_string","write_string_complex","write_string_content","AccessError","Array","BaseGenerator","Builder","Element","Element","ExtendedValueType","Key","Mutable","Object","TryTypeError","Value","ValueAccess","ValueType","Writable","get","get","get_mut","get_mut","insert","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","iter","iter","keys","len","len","pop","push","remove","values"],"q":[[0,"value_trait"],[322,"value_trait::generator"],[396,"value_trait::prelude"]],"d":["An access error for ValueType","Functions guaranteed for any array object","an array","The array structure","A boolean value","a boolean","Support of builder methods for traits.","A single utf-8 character","a custom type","Elements of the array","The values in the object","Extended types that do not have a real representation in …","Extended types that have no native representation in JSON","A 32 bit floating point value","A floating point value","a float type","a 128 bit signed integer","A 16 bit signed integer value","A 32 bit signed integer value","A signed 64 bit integer.","a signed integer type","A 8 bit signed integer value","The key in the objects","The type for Objects","Mutatability for values","Not a value at all","An access attempt to a Value was made under the assumption …","An access attempt to a Value was made under the assumption …","The null value","null","A JSON Object","an object","The object structure","Static tape node","a string type","The type for Strings","The target for nested lookups","A type error thrown by the try_* functions","a 128 bit unsiged integer","A 16 bit unsigned integer value","A 32 bit unsigned integer value","An unsigned 64 bit integer.","a unsigned integer type","A 8 bit unsigned integer value","A useize value","The Value exposes common interface for values, this allows …","Trait to allow accessing data inside a Value","A trait that specifies how to turn the Value into it’s …","Types of JSON values","A Value that can be serialized and written","Returns an empty array","Returns an empty array with a given capacity","Tries to represent the value as an array and returns a …","","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","","Tries to represent the value as an i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","","Tries to represent the value as an u8","Tries to represent the value as an usize","","","","","","","","","","","Casts the current value to a f64 if possible, this will …","","","","","","","","","","","","Checks if a Value contains a given key. This will return …","","","","Encodes the value into it’s JSON representation as a …","Encodes the value into it’s JSON representation as a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The expected value type","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Traits for serializing JSON","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on a key, returns None if the …","Tries to get an element of an object as a array","Tries to get an element of an object as a bool","Tries to get an element of an object as a f32","Tries to get an element of an object as a f64","Tries to get an element of an object as a i128","Tries to get an element of an object as a i16","Tries to get an element of an object as a i32","Tries to get an element of an object as a i64","Tries to get an element of an object as a i8","Gets a ref to a value based on n index, returns None if the","Same as get_idx but returns a mutable ref instead","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Same as get but returns a mutable ref instead","Tries to get an element of an object as a object","Tries to get an element of an object as a str","Tries to get an element of an object as a u128","Tries to get an element of an object as a u16","Tries to get an element of an object as a u32","Tries to get an element of an object as a u64","Tries to get an element of an object as a u8","Tries to get an element of an object as a usize","The actual value type","","","","","Inserts a value","Insert into this Value as an Object. Will return an …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Tries to turn the value into it’s array representation","Tries to turn the value into it’s object representation","Tries to turn the value into it’s string representation","returns true if the current value can be represented as an …","returns true if the current value a bool","returns true if the current value can be represented as a …","returns if a type is a custom type","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be cast into a f64","returns true if the current value a floatingpoint number","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value a integer number","returns true if the current value is null","","returns true if the current value a number either float or …","returns true if the current value can be represented as an …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","Returns anull value","Returns an empty object","Returns an empty object with a given capacity","Returns the last element of the array or None","Pops from this Value as an Array. Will return an …","Prelude for traits","","","Appends e to the end of the Array","Pushes to this Value as an Array. Will return an …","Removes a value from the object","Remove from this Value as an Object. Will return an …","","","","","","","","","","","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as a i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Tries to Casts the current value to a f64 if possible, …","","","","","","Trys to get a value based on a key, returns a TryTypeError …","Tries to get an element of an object as an array, returns …","Tries to get an element of an object as a bool, returns an …","Tries to get an element of an object as a f32, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a i128, returns an …","Tries to get an element of an object as a i16, returns an …","Tries to get an element of an object as a i32, returns an …","Tries to get an element of an object as a i64, returns an …","Tries to get an element of an object as a i8, returns an …","Tries to get a value based on n index, returns a type …","Tries to get an element of an object as an object, returns …","Tries to get an element of an object as a str, returns an …","Tries to get an element of an object as a u128, returns an …","Tries to get an element of an object as a u16, returns an …","Tries to get an element of an object as a u32, returns an …","Tries to get an element of an object as a u64, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a usize, returns …","Tries to insert into this Value as an Object. If the Value …","","","","","","Tries to turn the value into it’s array representation","Tries to turn the value into it’s object representation","Tries to turn the value into it’s string representation","Tries to pop from a Value as an Array. if the Value is any …","Tries to push to a Value if as an Array. This funciton …","Tries to remove from this Value as an Object. If the Value …","","","","","","Gets the type of the current value","","Iterates over the values","Encodes the value into it’s JSON representation into a …","Encodes the value into it’s JSON representation into a …","Base generator trait","Simple dump Generator","Pretty Generator","Pretty Writer Generator","The writer","Writer Generator","","","","","","","","","Returns the data as a String","Returns the data as a String","dedents one step","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","returns teh writer","","","","","indents one step","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a new generator","Creates a new pretty priting generator","Creates a new generator","Creates a new generator","writes new line","","","","","","","","","","","","","","","Write a slice","","","Write a char","","","writes a float value","writes an integer value","write with minimum","","","","","writes a simple string content (usually short and non …","writes a simple string (usually short and non escaped) …","Writes a string with simd-acceleration","writes a string","Writes a string with escape sequences","writes a string","","Functions guaranteed for any array object","","","Elements of the array","The values in the object","","The key in the objects","","A JSON Object","","","","","","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Inserts a value","Returns if the array is empty","Returns if the array is empty","Returns if the array is empty","Returns if the array is empty","Returns if the array is empty","Returns if the array is empty","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","Returns the last element of the array or None","Appends e to the end of the Array","Removes a value from the object","Iterates over the values"],"i":[0,0,22,48,3,22,0,21,22,49,50,22,0,21,3,22,22,21,21,3,22,21,50,48,0,21,20,20,3,22,0,22,48,0,22,51,48,0,22,21,21,3,22,21,21,0,0,0,0,0,52,52,48,3,53,48,3,48,48,48,3,48,48,48,48,3,48,48,3,53,48,3,48,48,48,48,3,48,48,3,20,21,22,23,3,20,21,22,23,48,3,3,20,21,22,23,3,20,21,22,23,48,3,21,22,54,54,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,20,21,22,20,20,21,21,22,22,23,3,3,20,20,21,21,22,22,23,23,3,3,3,3,3,3,3,3,3,3,3,3,3,3,20,21,22,23,0,49,50,48,48,48,48,48,48,48,48,48,48,48,53,49,50,53,48,48,48,48,48,48,48,48,23,3,3,3,3,50,53,3,20,21,22,23,51,51,51,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,3,41,41,41,41,41,41,41,41,41,49,50,50,49,50,52,52,52,49,53,0,20,23,49,53,50,53,3,20,21,22,23,3,20,21,22,23,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,3,20,21,22,23,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,53,3,20,21,22,23,51,51,51,53,53,53,3,20,21,22,23,48,3,50,54,54,0,0,0,0,55,0,42,43,46,44,42,43,46,44,42,43,55,43,44,42,42,43,46,44,55,42,43,46,44,55,43,44,42,43,46,44,42,43,46,44,55,43,44,42,43,46,44,42,43,46,44,42,43,46,44,55,42,43,55,42,43,55,55,55,42,43,46,44,55,55,55,55,55,55,0,0,0,0,49,50,0,50,0,0,0,0,0,0,0,49,50,49,50,50,49,49,49,50,50,50,49,50,50,49,50,49,49,50,50],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[1],[[],2],[3,2],[[],2],[[],[[2,[4]]]],[3,[[2,[4]]]],[[],[[2,[5]]]],[[],[[2,[6]]]],[[],[[2,[7]]]],[3,[[2,[7]]]],[[],[[2,[8]]]],[[],[[2,[9]]]],[[],[[2,[10]]]],[[],[[2,[11]]]],[3,[[2,[11]]]],[[],[[2,[12]]]],[[],2],[3,[[2,[[13,[3]]]]]],[[],2],[[],[[2,[14]]]],[3,[[2,[14]]]],[[],[[2,[15]]]],[[],[[2,[16]]]],[[],[[2,[17]]]],[[],[[2,[18]]]],[3,[[2,[18]]]],[[],[[2,[19]]]],[[],[[2,[1]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[2,[7]]]],[3,[[2,[7]]]],[3,3],[20,20],[21,21],[22,22],[23,23],[[]],[[]],[[]],[[]],[[]],[[[0,[24,25,26,27]]],4],[[],3],[[],21],[[],22],[[],28],[[],28],[[3,10],4],[[3,4],4],[[3,9],4],[[3,12],4],[[3,19],4],[[3,15],4],[3,4],[[3,3],4],[[3,11],4],[[3,14],4],[[3,1],4],[[3,14],4],[[3,16],4],[[3,7],4],[[3,18],4],[[3,6],4],[[3,8],4],[[3,28],4],[[3,17],4],[[20,20],4],[[21,21],4],[[22,22],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[[3,29],30],[[3,29],30],[[20,29],30],[[20,29],30],[[21,29],30],[[21,29],30],[[22,29],30],[[22,29],30],[[23,29],30],[[23,29],30],[6,3],[11,3],[10,3],[[],3],[18,3],[1,3],[17,3],[7,3],[[]],[9,3],[16,3],[19,3],[4,3],[12,3],[[]],[[]],[[]],[[]],0,[[[32,[31]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],[[2,[4]]]],[[[0,[24,25,26,27]]],[[2,[6]]]],[[[0,[24,25,26,27]]],[[2,[7]]]],[[[0,[24,25,26,27]]],[[2,[8]]]],[[[0,[24,25,26,27]]],[[2,[9]]]],[[[0,[24,25,26,27]]],[[2,[10]]]],[[[0,[24,25,26,27]]],[[2,[11]]]],[[[0,[24,25,26,27]]],[[2,[12]]]],[1,2],[1,2],[1,2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],[[2,[14]]]],[[[0,[24,25,26,27]]],[[2,[15]]]],[[[0,[24,25,26,27]]],[[2,[16]]]],[[[0,[24,25,26,27]]],[[2,[17]]]],[[[0,[24,25,26,27]]],[[2,[18]]]],[[[0,[24,25,26,27]]],[[2,[19]]]],[[[0,[24,25,26,27]]],[[2,[1]]]],0,[[3,14]],[[3,1]],[[3,1]],[[3,14]],[[33,33],2],[[33,33],[[34,[2,20]]]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[3,4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],[[36,[35]]]],[[],[[36,[35]]]],[[],[[36,[35]]]],[[],1],[[],1],[[]],[[]],[1],[[],2],[[],[[34,[2,20]]]],0,[37],[37],[[]],[33,[[34,[20]]]],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],[[34,[2,20]]]],[[]],[[]],[[]],[[]],[[]],[[],28],[[],28],[[],28],[[],28],[[],28],[[],[[34,[23]]]],[[],[[34,[4,23]]]],[[],[[34,[5,23]]]],[[],[[34,[6,23]]]],[[],[[34,[7,23]]]],[[],[[34,[8,23]]]],[[],[[34,[9,23]]]],[[],[[34,[10,23]]]],[[],[[34,[11,23]]]],[[],[[34,[12,23]]]],[[],[[34,[23]]]],[[],[[34,[14,23]]]],[[],[[34,[15,23]]]],[[],[[34,[16,23]]]],[[],[[34,[17,23]]]],[[],[[34,[18,23]]]],[[],[[34,[19,23]]]],[[],[[34,[1,23]]]],[[],[[34,[7,23]]]],[[],34],[[],34],[[],34],[[],34],[[],34],[[[0,[24,25,26,27]]],[[34,[2,23]]]],[[[0,[24,25,26,27]]],[[34,[2,23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[4]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[6]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[7]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[8]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[9]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[10]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[11]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[12]],23]]]],[1,[[34,[2,23]]]],[[[0,[24,25,26,27]]],[[34,[2,23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[14]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[15]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[16]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[17]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[18]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[19]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[1]],23]]]],[[33,33],2],[[],34],[[],34],[[],34],[[],34],[[],34],[[],[[34,[23]]]],[[],[[34,[23]]]],[[],[[34,[23]]]],[[],2],[33],[[[0,[24,25,26,27]]],2],[[],38],[[],38],[[],38],[[],38],[[],38],[[],22],[3,22],[[],[[36,[35]]]],[39,40],[39,40],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[42,[41]]],28],[[[43,[41]]],28],[[]],[[[43,[41]]]],[[[44,[39,41]]]],[[],[[42,[41]]]],[[]],[[]],[[]],[[]],[[]],[[[42,[41]]],[[45,[19]]]],[[[43,[41]]],[[45,[19]]]],[[[46,[39,41]]],39],[[[44,[39,41]]],39],[[]],[[[43,[41]]]],[[[44,[39,41]]]],[[]],[[]],[[]],[[]],[[],[[42,[41]]]],[16,[[43,[41]]]],[39,[[46,[39,41]]]],[[39,16],[[44,[39,41]]]],[[],40],[[[43,[41]]],40],[[[44,[39,41]]],40],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],38],[[],38],[[],38],[[],38],[[[31,[19]]],40],[[[42,[41]],[31,[19]]],40],[[[43,[41]],[31,[19]]],40],[19,40],[[[42,[41]],19],40],[[[43,[41]],19],40],[7,40],[47,40],[[[31,[19]],19],40],[[[42,[41]],[31,[19]],19],40],[[[43,[41]],[31,[19]],19],40],[[[46,[39,41]],[31,[19]],19],40],[[[44,[39,41]],[31,[19]],19],40],[14,40],[14,40],[[[31,[19]]],40],[14,40],[[[31,[19]],1],40],[14,40],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[32,[31]]],2],[[[0,[24,25,26,27]]],2],[1,2],[[[0,[24,25,26,27]]],2],[[33,33],2],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],[[36,[35]]]],[[],[[36,[35]]]],[[],[[36,[35]]]],[[],1],[[],1],[[],2],[[]],[[[0,[24,25,26,27]]],2],[[],[[36,[35]]]]],"c":[],"p":[[15,"usize"],[4,"Option"],[4,"StaticNode"],[15,"bool"],[15,"char"],[15,"f32"],[15,"f64"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[3,"HashMap"],[15,"str"],[15,"u128"],[15,"u16"],[15,"u32"],[15,"u64"],[15,"u8"],[4,"AccessError"],[4,"ExtendedValueType"],[4,"ValueType"],[3,"TryTypeError"],[8,"Hash"],[8,"Eq"],[8,"Ord"],[8,"Sized"],[3,"String"],[3,"Formatter"],[6,"Result"],[15,"slice"],[8,"SliceIndex"],[8,"Into"],[4,"Result"],[8,"Iterator"],[3,"Box"],[3,"Demand"],[3,"TypeId"],[8,"Write"],[6,"Result"],[8,"Value"],[3,"DumpGenerator"],[3,"PrettyGenerator"],[3,"PrettyWriterGenerator"],[3,"Vec"],[3,"WriterGenerator"],[8,"Integer"],[8,"ValueAccess"],[8,"Array"],[8,"Object"],[8,"ValueInto"],[8,"Builder"],[8,"Mutable"],[8,"Writable"],[8,"BaseGenerator"]]},\ +"value_trait":{"doc":"A crate providing generalised value traits for working with","t":"EINQNNINNQQNENNNNNNNNNQQINNNNNINQENQQDNNNNNNNIIIEILKKLKKLLLKLLLLKLLKLKKLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLLLLLLLLLLLLLLLLLLLLLLLLLLLLAKKLLLLLLLLLLLLKKLLLLLLLLLMLLLLKLLLLLLKKKLLLLLLLLLLLLLLKLLLLLLLLLLKKKKKKLKKLALLKLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLKKKIDDDQDLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLCICCQQCQCICCCCCKKKKKLLLLLLKKKKKKKKK","n":["AccessError","Array","Array","Array","Bool","Bool","Builder","Char","Custom","Element","Element","Extended","ExtendedValueType","F32","F64","F64","I128","I16","I32","I64","I64","I8","Key","Key","Mutable","None","NotAnArray","NotAnObject","Null","Null","Object","Object","Object","StaticNode","String","String","Target","TryTypeError","U128","U16","U32","U64","U64","U8","Usize","Value","ValueAccess","ValueInto","ValueType","Writable","array","array_with_capacity","as_array","as_array","as_array_mut","as_bool","as_bool","as_char","as_f32","as_f64","as_f64","as_i128","as_i16","as_i32","as_i64","as_i64","as_i8","as_object","as_object","as_object_mut","as_str","as_str","as_u128","as_u16","as_u32","as_u64","as_u64","as_u8","as_usize","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cast_f64","cast_f64","clone","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","clone_into","contains_key","default","default","default","encode","encode_pp","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","eq","equivalent","equivalent","equivalent","equivalent","equivalent","equivalent","expected","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","from","generator","get","get","get","get_array","get_bool","get_f32","get_f64","get_i128","get_i16","get_i32","get_i64","get_i8","get_idx","get_idx_mut","get_mut","get_mut","get_mut","get_object","get_str","get_u128","get_u16","get_u32","get_u64","get_u8","get_usize","got","index","index","index_mut","index_mut","insert","insert","into","into","into","into","into","into_array","into_object","into_string","is_array","is_bool","is_char","is_custom","is_f32","is_f64","is_f64_castable","is_float","is_i128","is_i16","is_i32","is_i64","is_i8","is_integer","is_null","is_null","is_number","is_object","is_str","is_u128","is_u16","is_u32","is_u64","is_u8","is_usize","iter","iter","keys","len","len","null","object","object_with_capacity","pop","pop","prelude","provide","provide","push","push","remove","remove","to_owned","to_owned","to_owned","to_owned","to_owned","to_string","to_string","to_string","to_string","to_string","try_as_array","try_as_bool","try_as_char","try_as_f32","try_as_f64","try_as_i128","try_as_i16","try_as_i32","try_as_i64","try_as_i8","try_as_object","try_as_str","try_as_u128","try_as_u16","try_as_u32","try_as_u64","try_as_u8","try_as_usize","try_cast_f64","try_from","try_from","try_from","try_from","try_from","try_get","try_get_array","try_get_bool","try_get_f32","try_get_f64","try_get_i128","try_get_i16","try_get_i32","try_get_i64","try_get_i8","try_get_idx","try_get_object","try_get_str","try_get_u128","try_get_u16","try_get_u32","try_get_u64","try_get_u8","try_get_usize","try_insert","try_into","try_into","try_into","try_into","try_into","try_into_array","try_into_object","try_into_string","try_pop","try_push","try_remove","type_id","type_id","type_id","type_id","type_id","value_type","value_type","values","write","write_pp","BaseGenerator","DumpGenerator","PrettyGenerator","PrettyWriterGenerator","T","WriterGenerator","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","consume","consume","dedent","dedent","dedent","default","from","from","from","from","get_writer","get_writer","get_writer","get_writer","get_writer","indent","indent","indent","into","into","into","into","new","new","new","new","new_line","new_line","new_line","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","write","write","write","write_char","write_char","write_char","write_float","write_int","write_min","write_min","write_min","write_min","write_min","write_simple_str_content","write_simple_string","write_str_simd","write_string","write_string_complex","write_string_content","AccessError","Array","BaseGenerator","Builder","Element","Element","ExtendedValueType","Key","Mutable","Object","TryTypeError","Value","ValueAccess","ValueType","Writable","get","get","get_mut","get_mut","insert","is_empty","is_empty","is_empty","is_empty","is_empty","is_empty","iter","iter","keys","len","len","pop","push","remove","values"],"q":[[0,"value_trait"],[322,"value_trait::generator"],[396,"value_trait::prelude"]],"d":["An access error for ValueType","Functions guaranteed for any array object","an array","The array structure","A boolean value","a boolean","Support of builder methods for traits.","A single utf-8 character","a custom type","Elements of the array","The values in the object","Extended types that do not have a real representation in …","Extended types that have no native representation in JSON","A 32 bit floating point value","A floating point value","a float type","a 128 bit signed integer","A 16 bit signed integer value","A 32 bit signed integer value","A signed 64 bit integer.","a signed integer type","A 8 bit signed integer value","The key in the objects","The type for Objects","Mutatability for values","Not a value at all","An access attempt to a Value was made under the assumption …","An access attempt to a Value was made under the assumption …","The null value","null","A JSON Object","an object","The object structure","Static tape node","a string type","The type for Strings","The target for nested lookups","A type error thrown by the try_* functions","a 128 bit unsiged integer","A 16 bit unsigned integer value","A 32 bit unsigned integer value","An unsigned 64 bit integer.","a unsigned integer type","A 8 bit unsigned integer value","A useize value","The Value exposes common interface for values, this allows …","Trait to allow accessing data inside a Value","A trait that specifies how to turn the Value into it’s …","Types of JSON values","A Value that can be serialized and written","Returns an empty array","Returns an empty array with a given capacity","Tries to represent the value as an array and returns a …","","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","","Tries to represent the value as an i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","","Tries to represent the value as an u8","Tries to represent the value as an usize","","","","","","","","","","","Casts the current value to a f64 if possible, this will …","","","","","","","","","","","","Checks if a Value contains a given key. This will return …","","","","Encodes the value into it’s JSON representation as a …","Encodes the value into it’s JSON representation as a …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","The expected value type","","","","","","","","","","","","","","","Returns the argument unchanged.","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Traits for serializing JSON","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on a key, returns None if the …","Tries to get an element of an object as a array","Tries to get an element of an object as a bool","Tries to get an element of an object as a f32","Tries to get an element of an object as a f64","Tries to get an element of an object as a i128","Tries to get an element of an object as a i16","Tries to get an element of an object as a i32","Tries to get an element of an object as a i64","Tries to get an element of an object as a i8","Gets a ref to a value based on n index, returns None if the","Same as get_idx but returns a mutable ref instead","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Same as get but returns a mutable ref instead","Tries to get an element of an object as a object","Tries to get an element of an object as a str","Tries to get an element of an object as a u128","Tries to get an element of an object as a u16","Tries to get an element of an object as a u32","Tries to get an element of an object as a u64","Tries to get an element of an object as a u8","Tries to get an element of an object as a usize","The actual value type","","","","","Inserts a value","Insert into this Value as an Object. Will return an …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Tries to turn the value into it’s array representation","Tries to turn the value into it’s object representation","Tries to turn the value into it’s string representation","returns true if the current value can be represented as an …","returns true if the current value a bool","returns true if the current value can be represented as a …","returns if a type is a custom type","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be cast into a f64","returns true if the current value a floatingpoint number","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value a integer number","returns true if the current value is null","","returns true if the current value a number either float or …","returns true if the current value can be represented as an …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","returns true if the current value can be represented as a …","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","Returns anull value","Returns an empty object","Returns an empty object with a given capacity","Returns the last element of the array or None","Pops from this Value as an Array. Will return an …","Prelude for traits","","","Appends e to the end of the Array","Pushes to this Value as an Array. Will return an …","Removes a value from the object","Remove from this Value as an Object. Will return an …","","","","","","","","","","","Tries to represent the value as an array and returns a …","Tries to represent the value as a bool","Tries to represent the value as a Char","Tries to represent the value as a f32","Tries to represent the value as a f64","Tries to represent the value as a i128","Tries to represent the value as an i16","Tries to represent the value as an i32","Tries to represent the value as an i64","Tries to represent the value as an i8","Tries to represent the value as an object and returns a …","Tries to represent the value as a &str","Tries to represent the value as an u128","Tries to represent the value as an u16","Tries to represent the value as an u32","Tries to represent the value as an u64","Tries to represent the value as an u8","Tries to represent the value as an usize","Tries to Casts the current value to a f64 if possible, …","","","","","","Trys to get a value based on a key, returns a TryTypeError …","Tries to get an element of an object as an array, returns …","Tries to get an element of an object as a bool, returns an …","Tries to get an element of an object as a f32, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a i128, returns an …","Tries to get an element of an object as a i16, returns an …","Tries to get an element of an object as a i32, returns an …","Tries to get an element of an object as a i64, returns an …","Tries to get an element of an object as a i8, returns an …","Tries to get a value based on n index, returns a type …","Tries to get an element of an object as an object, returns …","Tries to get an element of an object as a str, returns an …","Tries to get an element of an object as a u128, returns an …","Tries to get an element of an object as a u16, returns an …","Tries to get an element of an object as a u32, returns an …","Tries to get an element of an object as a u64, returns an …","Tries to get an element of an object as a u8, returns an …","Tries to get an element of an object as a usize, returns …","Tries to insert into this Value as an Object. If the Value …","","","","","","Tries to turn the value into it’s array representation","Tries to turn the value into it’s object representation","Tries to turn the value into it’s string representation","Tries to pop from a Value as an Array. if the Value is any …","Tries to push to a Value if as an Array. This funciton …","Tries to remove from this Value as an Object. If the Value …","","","","","","Gets the type of the current value","","Iterates over the values","Encodes the value into it’s JSON representation into a …","Encodes the value into it’s JSON representation into a …","Base generator trait","Simple dump Generator","Pretty Generator","Pretty Writer Generator","The writer","Writer Generator","","","","","","","","","Returns the data as a String","Returns the data as a String","dedents one step","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","returns teh writer","","","","","indents one step","","","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Creates a new generator","Creates a new pretty priting generator","Creates a new generator","Creates a new generator","writes new line","","","","","","","","","","","","","","","Write a slice","","","Write a char","","","writes a float value","writes an integer value","write with minimum","","","","","writes a simple string content (usually short and non …","writes a simple string (usually short and non escaped) …","Writes a string with simd-acceleration","writes a string","Writes a string with escape sequences","writes a string","","Functions guaranteed for any array object","","","Elements of the array","The values in the object","","The key in the objects","","A JSON Object","","","","","","Gets a ref to a value based on n index, returns None if the","Gets a ref to a value based on a key, returns None if the …","Gets a ref to a value based on n index, returns None if the","Gets the value of a key as a mutable reference.","Inserts a value","Returns if the array is empty","Returns if the array is empty","Returns if the array is empty","Returns if the array is empty","Returns if the array is empty","Returns if the array is empty","Iterates over the values paris","Iterates over the key value paris","Iterates over the keys","Number of key/value pairs","Number of key/value pairs","Returns the last element of the array or None","Appends e to the end of the Array","Removes a value from the object","Iterates over the values"],"i":[0,0,22,48,3,22,0,21,22,49,50,22,0,21,3,22,22,21,21,3,22,21,50,48,0,21,20,20,3,22,0,22,48,0,22,51,48,0,22,21,21,3,22,21,21,0,0,0,0,0,52,52,48,3,53,48,3,48,48,48,3,48,48,48,48,3,48,48,3,53,48,3,48,48,48,48,3,48,48,3,20,21,22,23,3,20,21,22,23,48,3,3,20,21,22,23,3,20,21,22,23,48,3,21,22,54,54,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,20,21,22,20,20,21,21,22,22,23,3,3,20,20,21,21,22,22,23,23,3,3,3,3,3,3,3,3,3,3,3,3,3,3,20,21,22,23,0,49,50,48,48,48,48,48,48,48,48,48,48,48,53,49,50,53,48,48,48,48,48,48,48,48,23,3,3,3,3,50,53,3,20,21,22,23,51,51,51,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,3,41,41,41,41,41,41,41,41,41,49,50,50,49,50,52,52,52,49,53,0,20,23,49,53,50,53,3,20,21,22,23,3,20,21,22,23,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,3,20,21,22,23,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,53,3,20,21,22,23,51,51,51,53,53,53,3,20,21,22,23,48,3,50,54,54,0,0,0,0,55,0,42,43,46,44,42,43,46,44,42,43,55,43,44,42,42,43,46,44,55,42,43,46,44,55,43,44,42,43,46,44,42,43,46,44,55,43,44,42,43,46,44,42,43,46,44,42,43,46,44,55,42,43,55,42,43,55,55,55,42,43,46,44,55,55,55,55,55,55,0,0,0,0,49,50,0,50,0,0,0,0,0,0,0,49,50,49,50,50,49,49,49,50,50,50,49,50,50,49,50,49,49,50,50],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[]],[1],[[],2],[3,2],[[],2],[[],[[2,[4]]]],[3,[[2,[4]]]],[[],[[2,[5]]]],[[],[[2,[6]]]],[[],[[2,[7]]]],[3,[[2,[7]]]],[[],[[2,[8]]]],[[],[[2,[9]]]],[[],[[2,[10]]]],[[],[[2,[11]]]],[3,[[2,[11]]]],[[],[[2,[12]]]],[[],2],[3,[[2,[[13,[3]]]]]],[[],2],[[],[[2,[14]]]],[3,[[2,[14]]]],[[],[[2,[15]]]],[[],[[2,[16]]]],[[],[[2,[17]]]],[[],[[2,[18]]]],[3,[[2,[18]]]],[[],[[2,[19]]]],[[],[[2,[1]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[],[[2,[7]]]],[3,[[2,[7]]]],[3,3],[20,20],[21,21],[22,22],[23,23],[[]],[[]],[[]],[[]],[[]],[[[0,[24,25,26,27]]],4],[[],3],[[],21],[[],22],[[],28],[[],28],[[3,14],4],[[3,16],4],[[3,8],4],[[3,3],4],[[3,6],4],[[3,14],4],[[3,10],4],[[3,12],4],[[3,1],4],[[3,9],4],[[3,4],4],[3,4],[[3,19],4],[[3,18],4],[[3,11],4],[[3,15],4],[[3,28],4],[[3,17],4],[[3,7],4],[[20,20],4],[[21,21],4],[[22,22],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],0,[[3,29],30],[[3,29],30],[[20,29],30],[[20,29],30],[[21,29],30],[[21,29],30],[[22,29],30],[[22,29],30],[[23,29],30],[[23,29],30],[9,3],[16,3],[4,3],[11,3],[[]],[1,3],[10,3],[[],3],[6,3],[7,3],[12,3],[18,3],[17,3],[19,3],[[]],[[]],[[]],[[]],0,[[[32,[31]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],[[2,[4]]]],[[[0,[24,25,26,27]]],[[2,[6]]]],[[[0,[24,25,26,27]]],[[2,[7]]]],[[[0,[24,25,26,27]]],[[2,[8]]]],[[[0,[24,25,26,27]]],[[2,[9]]]],[[[0,[24,25,26,27]]],[[2,[10]]]],[[[0,[24,25,26,27]]],[[2,[11]]]],[[[0,[24,25,26,27]]],[[2,[12]]]],[1,2],[1,2],[1,2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],[[2,[14]]]],[[[0,[24,25,26,27]]],[[2,[15]]]],[[[0,[24,25,26,27]]],[[2,[16]]]],[[[0,[24,25,26,27]]],[[2,[17]]]],[[[0,[24,25,26,27]]],[[2,[18]]]],[[[0,[24,25,26,27]]],[[2,[19]]]],[[[0,[24,25,26,27]]],[[2,[1]]]],0,[[3,14]],[[3,1]],[[3,1]],[[3,14]],[[33,33],2],[[33,33],[[34,[2,20]]]],[[]],[[]],[[]],[[]],[[]],[[],2],[[],2],[[],2],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[3,4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],[[36,[35]]]],[[],[[36,[35]]]],[[],[[36,[35]]]],[[],1],[[],1],[[]],[[]],[1],[[],2],[[],[[34,[2,20]]]],0,[37],[37],[[]],[33,[[34,[20]]]],[[[0,[24,25,26,27]]],2],[[[0,[24,25,26,27]]],[[34,[2,20]]]],[[]],[[]],[[]],[[]],[[]],[[],28],[[],28],[[],28],[[],28],[[],28],[[],[[34,[23]]]],[[],[[34,[4,23]]]],[[],[[34,[5,23]]]],[[],[[34,[6,23]]]],[[],[[34,[7,23]]]],[[],[[34,[8,23]]]],[[],[[34,[9,23]]]],[[],[[34,[10,23]]]],[[],[[34,[11,23]]]],[[],[[34,[12,23]]]],[[],[[34,[23]]]],[[],[[34,[14,23]]]],[[],[[34,[15,23]]]],[[],[[34,[16,23]]]],[[],[[34,[17,23]]]],[[],[[34,[18,23]]]],[[],[[34,[19,23]]]],[[],[[34,[1,23]]]],[[],[[34,[7,23]]]],[[],34],[[],34],[[],34],[[],34],[[],34],[[[0,[24,25,26,27]]],[[34,[2,23]]]],[[[0,[24,25,26,27]]],[[34,[2,23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[4]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[6]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[7]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[8]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[9]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[10]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[11]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[12]],23]]]],[1,[[34,[2,23]]]],[[[0,[24,25,26,27]]],[[34,[2,23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[14]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[15]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[16]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[17]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[18]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[19]],23]]]],[[[0,[24,25,26,27]]],[[34,[[2,[1]],23]]]],[[33,33],2],[[],34],[[],34],[[],34],[[],34],[[],34],[[],[[34,[23]]]],[[],[[34,[23]]]],[[],[[34,[23]]]],[[],2],[33],[[[0,[24,25,26,27]]],2],[[],38],[[],38],[[],38],[[],38],[[],38],[[],22],[3,22],[[],[[36,[35]]]],[39,40],[39,40],0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[[42,[41]]],28],[[[43,[41]]],28],[[]],[[[43,[41]]]],[[[44,[39,41]]]],[[],[[42,[41]]]],[[]],[[]],[[]],[[]],[[]],[[[42,[41]]],[[45,[19]]]],[[[43,[41]]],[[45,[19]]]],[[[46,[39,41]]],39],[[[44,[39,41]]],39],[[]],[[[43,[41]]]],[[[44,[39,41]]]],[[]],[[]],[[]],[[]],[[],[[42,[41]]]],[16,[[43,[41]]]],[39,[[46,[39,41]]]],[[39,16],[[44,[39,41]]]],[[],40],[[[43,[41]]],40],[[[44,[39,41]]],40],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],34],[[],38],[[],38],[[],38],[[],38],[[[31,[19]]],40],[[[42,[41]],[31,[19]]],40],[[[43,[41]],[31,[19]]],40],[19,40],[[[42,[41]],19],40],[[[43,[41]],19],40],[7,40],[47,40],[[[31,[19]],19],40],[[[42,[41]],[31,[19]],19],40],[[[43,[41]],[31,[19]],19],40],[[[46,[39,41]],[31,[19]],19],40],[[[44,[39,41]],[31,[19]],19],40],[14,40],[14,40],[[[31,[19]]],40],[14,40],[[[31,[19]],1],40],[14,40],0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[[[32,[31]]],2],[[[0,[24,25,26,27]]],2],[1,2],[[[0,[24,25,26,27]]],2],[[33,33],2],[[],4],[[],4],[[],4],[[],4],[[],4],[[],4],[[],[[36,[35]]]],[[],[[36,[35]]]],[[],[[36,[35]]]],[[],1],[[],1],[[],2],[[]],[[[0,[24,25,26,27]]],2],[[],[[36,[35]]]]],"c":[],"p":[[15,"usize"],[4,"Option"],[4,"StaticNode"],[15,"bool"],[15,"char"],[15,"f32"],[15,"f64"],[15,"i128"],[15,"i16"],[15,"i32"],[15,"i64"],[15,"i8"],[3,"HashMap"],[15,"str"],[15,"u128"],[15,"u16"],[15,"u32"],[15,"u64"],[15,"u8"],[4,"AccessError"],[4,"ExtendedValueType"],[4,"ValueType"],[3,"TryTypeError"],[8,"Hash"],[8,"Eq"],[8,"Ord"],[8,"Sized"],[3,"String"],[3,"Formatter"],[6,"Result"],[15,"slice"],[8,"SliceIndex"],[8,"Into"],[4,"Result"],[8,"Iterator"],[3,"Box"],[3,"Demand"],[3,"TypeId"],[8,"Write"],[6,"Result"],[8,"Value"],[3,"DumpGenerator"],[3,"PrettyGenerator"],[3,"PrettyWriterGenerator"],[3,"Vec"],[3,"WriterGenerator"],[8,"Integer"],[8,"ValueAccess"],[8,"Array"],[8,"Object"],[8,"ValueInto"],[8,"Builder"],[8,"Mutable"],[8,"Writable"],[8,"BaseGenerator"]]},\ "walkdir":{"doc":"Crate walkdir provides an efficient and cross platform …","t":"DIDDDGDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["DirEntry","DirEntryExt","Error","FilterEntry","IntoIter","Result","WalkDir","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cause","clone","clone_into","contents_first","depth","depth","description","file_name","file_type","filter_entry","filter_entry","fmt","fmt","fmt","fmt","fmt","fmt","follow_links","from","from","from","from","from","ino","ino","into","into","into","into","into","into_io_error","into_iter","into_iter","into_iter","into_path","io_error","loop_ancestor","max_depth","max_open","metadata","min_depth","new","next","next","path","path","path_is_symlink","provide","same_file_system","skip_current_dir","skip_current_dir","sort_by","sort_by_file_name","sort_by_key","source","to_owned","to_string","try_from","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id"],"q":[[0,"walkdir"]],"d":["A directory entry.","Unix-specific extension methods for walkdir::DirEntry","An error produced by recursively walking a directory.","A recursive directory iterator that skips entries.","An iterator for recursively descending into a directory.","A result type for walkdir operations.","A builder to create an iterator for recursively walking a …","","","","","","","","","","","","","","Yield a directory’s contents before the directory …","Returns the depth at which this entry was created relative …","Returns the depth at which this error occurred relative to …","","Return the file name of this entry.","Return the file type for the file that this entry points …","Yields only entries which satisfy the given predicate and …","Yields only entries which satisfy the given predicate and …","","","","","","","Follow symbolic links. By default, this is disabled.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the underlying d_ino field in the contained dirent …","Returns the underlying d_ino field in the contained dirent …","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Similar to io_error except consumes self to convert to the …","","","","The full path that this entry represents.","Inspect the original io::Error if there is one.","Returns the path at which a cycle was detected.","Set the maximum depth of entries yield by the iterator.","Set the maximum number of simultaneously open file …","Return the metadata for the file that this entry points to.","Set the minimum depth of entries yielded by the iterator.","Create a builder for a recursive directory iterator …","Advances the iterator and returns the next value.","Advances the iterator and returns the next value.","The full path that this entry represents.","Returns the path associated with this error if one exists.","Returns true if and only if this entry was created from a …","","Do not cross file system boundaries.","Skips the current directory.","Skips the current directory.","Set a function for sorting directory entries with a …","Sort directory entries by file name, to ensure a …","Set a function for sorting directory entries with a key …","","","","","","","","","","","","","","","","","",""],"i":[0,0,0,0,0,0,0,4,1,5,11,13,4,1,5,11,13,1,4,4,5,4,1,1,4,4,11,13,4,1,1,5,11,13,5,4,1,5,11,13,30,4,4,1,5,11,13,1,5,11,13,4,1,1,5,5,4,5,5,11,13,4,1,4,1,5,11,13,5,5,5,1,4,1,4,1,5,11,13,4,1,5,11,13,4,1,5,11,13],"f":[0,0,0,0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1,[[3,[2]]]],[4,4],[[]],[[5,6],5],[4,7],[1,7],[1,8],[4,9],[4,10],[[11,12],[[13,[11,12]]]],[[[13,[11,12]],12],[[13,[[13,[11,12]],12]]]],[[4,14],15],[[1,14],15],[[1,14],15],[[5,14],15],[[11,14],15],[[[13,[16,16]],14],15],[[5,6],5],[[]],[[]],[[]],[[]],[[]],[[],17],[4,17],[[]],[[]],[[]],[[]],[[]],[1,[[3,[18]]]],[5,11],[[]],[[]],[4,19],[1,[[3,[18]]]],[1,[[3,[20]]]],[[5,7],5],[[5,7],5],[4,[[22,[21]]]],[[5,7],5],[[[23,[20]]],5],[11,[[3,[[22,[4]]]]]],[[[13,[11,12]]],[[3,[[22,[4]]]]]],[4,20],[1,[[3,[20]]]],[4,6],[24],[[5,6],5],[11],[[[13,[11,12]]]],[[5,[0,[12,25,26]]],5],[5,5],[[5,[0,[12,25,26]]],5],[1,[[3,[2]]]],[[]],[[],27],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],28],[[],29],[[],29],[[],29],[[],29],[[],29]],"c":[],"p":[[3,"Error"],[8,"Error"],[4,"Option"],[3,"DirEntry"],[3,"WalkDir"],[15,"bool"],[15,"usize"],[15,"str"],[3,"OsStr"],[3,"FileType"],[3,"IntoIter"],[8,"FnMut"],[3,"FilterEntry"],[3,"Formatter"],[6,"Result"],[8,"Debug"],[15,"u64"],[3,"Error"],[3,"PathBuf"],[3,"Path"],[3,"Metadata"],[6,"Result"],[8,"AsRef"],[3,"Demand"],[8,"Send"],[8,"Sync"],[3,"String"],[4,"Result"],[3,"TypeId"],[8,"DirEntryExt"]]},\ "want":{"doc":"A Futures channel-like utility to signal when a value is …","t":"DDDDLLLLLLLLLLLLLLLLLLLLLLLLLLLLLFLLLLLLLLLLLLLLLLL","n":["Closed","Giver","SharedGiver","Taker","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","cancel","clone","clone_into","drop","fmt","fmt","fmt","fmt","from","from","from","from","give","into","into","into","into","is_canceled","is_canceled","is_wanting","is_wanting","new","poll_want","shared","to_owned","try_from","try_from","try_from","try_from","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","want","want"],"q":[[0,"want"]],"d":["The Taker has canceled its interest in a value.","An entity that gives a value when wanted.","A cloneable Giver.","An entity that wants a value.","","","","","","","","","Signal to the Giver that the want is canceled.","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Mark the state as idle, if the Taker currently is wanting.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Check if the Taker has canceled interest without parking a …","Check if the Taker has canceled interest without parking a …","Check if the Taker has called want() without parking a …","Check if the Taker has called want() without parking a …","Create a new want channel.","Poll whether the Taker has registered interest in another …","Converts this into a SharedGiver.","","","","","","","","","","","","","","Returns a Future that fulfills when the Taker has done …","Signal to the Giver that a value is wanted."],"i":[0,0,0,0,3,1,6,2,3,1,6,2,1,2,2,1,3,1,6,2,3,1,6,2,3,3,1,6,2,3,2,3,2,0,3,3,2,3,1,6,2,3,1,6,2,3,1,6,2,3,1],"f":[0,0,0,0,[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[1],[2,2],[[]],[1],[[3,4],5],[[1,4],5],[[6,4],5],[[2,4],5],[[]],[[]],[[]],[[]],[3,7],[[]],[[]],[[]],[[]],[3,7],[2,7],[3,7],[2,7],[[]],[[3,8],[[10,[[9,[6]]]]]],[3,2],[[]],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],9],[[],11],[[],11],[[],11],[[],11],[3,12],[1]],"c":[],"p":[[3,"Taker"],[3,"SharedGiver"],[3,"Giver"],[3,"Formatter"],[6,"Result"],[3,"Closed"],[15,"bool"],[3,"Context"],[4,"Result"],[4,"Poll"],[3,"TypeId"],[8,"Future"]]},\ "webpki":{"doc":"webpki: Web PKI X.509 Certificate Validation.","t":"NNNNNNGDHHHHHDNENNDNNNNNDNGGDDDDNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMLMMLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL","n":["BadDer","BadDerTime","CaUsedAsEndEntity","CertExpired","CertNotValidForName","CertNotValidYet","DNSNameRef","DnsNameRef","ECDSA_P256_SHA256","ECDSA_P256_SHA384","ECDSA_P384_SHA256","ECDSA_P384_SHA384","ED25519","EndEntityCert","EndEntityUsedAsCa","Error","ExtensionValueInvalid","InvalidCertValidity","InvalidDnsNameError","InvalidSignatureForPublicKey","MissingOrMalformedExtensions","NameConstraintViolation","PathLenConstraintViolated","RequiredEkuNotFound","SignatureAlgorithm","SignatureAlgorithmMismatch","TLSClientTrustAnchors","TLSServerTrustAnchors","Time","TlsClientTrustAnchors","TlsServerTrustAnchors","TrustAnchor","UnknownIssuer","UnsupportedCertVersion","UnsupportedCriticalExtension","UnsupportedSignatureAlgorithm","UnsupportedSignatureAlgorithmForPublicKey","as_ref","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","borrow_mut","clone","clone","clone","clone","clone_into","clone_into","clone_into","clone_into","eq","eq","eq","equivalent","fmt","fmt","fmt","fmt","fmt","fmt","fmt","fmt","from","from","from","from","from","from","from","from","from","from_seconds_since_unix_epoch","into","into","into","into","into","into","into","into","into","name_constraints","partial_cmp","spki","subject","to_owned","to_owned","to_owned","to_owned","to_string","to_string","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from","try_from_ascii","try_from_ascii_str","try_from_cert_der","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","try_into","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","type_id","verify_is_valid_for_dns_name","verify_is_valid_tls_client_cert","verify_is_valid_tls_server_cert","verify_signature"],"q":[[0,"webpki"]],"d":["The encoding of some ASN.1 DER-encoded item is invalid.","The encoding of an ASN.1 DER-encoded time is invalid.","A CA certificate is being used as an end-entity …","The certificate is expired; i.e. the time it is being …","The certificate is not valid for the name it is being …","The certificate is not valid yet; i.e. the time it is …","","A reference to a DNS Name suitable for use in the TLS …","ECDSA signatures using the P-256 curve and SHA-256.","ECDSA signatures using the P-256 curve and SHA-384. …","ECDSA signatures using the P-384 curve and SHA-256. …","ECDSA signatures using the P-384 curve and SHA-384.","ED25519 signatures according to RFC 8410","An end-entity certificate.","An end-entity certificate is being used as a CA …","An error that occurs during certificate validation or name …","An X.509 extension is invalid.","The certificate validity period (notBefore, notAfter) is …","An error indicating that a DnsNameRef could not built …","The signature is invalid for the given public key.","The certificate extensions are missing or malformed.","The certificate violates one or more name constraints.","The certificate violates one or more path length …","The certificate is not valid for the Extended Key Usage …","A signature algorithm.","The algorithm in the TBSCertificate “signature” field …","","","The time type.","Trust anchors which may be used for authenticating clients.","Trust anchors which may be used for authenticating servers.","A trust anchor (a.k.a. root CA).","A valid issuer for the certificate could not be found.","The certificate is not a v3 X.509 certificate.","The certificate contains an unsupported critical extension.","The signature algorithm for a signature is not in the set …","The signature’s algorithm does not match the algorithm …","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Returns the argument unchanged.","Create a webpki::Time from a unix timestamp.","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","Calls U::from(self).","The value of a DER-encoded NameConstraints, containing name","","The value of the subjectPublicKeyInfo field of the trust …","The value of the subject field of the trust anchor.","","","","","","","Parse the ASN.1 DER-encoded X.509 encoding of the …","","","","","","","","","","Constructs a DnsNameRef from the given input if the input …","Constructs a DnsNameRef from the given input if the input …","Interprets the given DER-encoded certificate as a …","","","","","","","","","","","","","","","","","","","Verifies that the certificate is valid for the given DNS …","Verifies that the end-entity certificate is valid for use …","Verifies that the end-entity certificate is valid for use …","Verifies the signature signature of message msg using the …"],"i":[4,4,4,4,4,4,0,0,0,0,0,0,0,0,4,0,4,4,0,4,4,4,4,4,0,4,0,0,0,0,0,0,4,4,4,4,4,1,17,21,4,1,5,6,10,11,12,17,21,4,1,5,6,10,11,12,4,1,5,6,4,1,5,6,4,5,6,5,4,4,5,5,6,10,11,12,17,21,4,1,5,6,10,11,12,6,17,21,4,1,5,6,10,11,12,10,6,10,10,4,1,5,6,4,5,17,17,21,4,1,5,6,10,11,12,1,1,10,17,21,4,1,5,6,10,11,12,17,21,4,1,5,6,10,11,12,17,17,17,17],"f":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,[1,[[3,[2]]]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[4,4],[1,1],[5,5],[6,6],[[]],[[]],[[]],[[]],[[4,4],7],[[5,5],7],[[6,6],7],[[],7],[[4,8],9],[[4,8],9],[[5,8],9],[[5,8],9],[[6,8],9],[[10,8],9],[[11,8],9],[[12,8],9],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[13,6],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],[[]],0,[[6,6],[[15,[14]]]],0,0,[[]],[[]],[[]],[[]],[[],16],[[],16],[[[3,[2]]],[[18,[17]]]],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[[3,[2]]],[[18,[1,5]]]],[19,[[18,[1,5]]]],[[[3,[2]]],[[18,[10,4]]]],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],18],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[],20],[[17,1],[[18,[4]]]],[[17,[3,[21]],12,[3,[[3,[2]]]],6],[[18,[4]]]],[[17,[3,[21]],11,[3,[[3,[2]]]],6],[[18,[4]]]],[[17,21,[3,[2]],[3,[2]]],[[18,[4]]]]],"c":[6,26,27],"p":[[3,"DnsNameRef"],[15,"u8"],[15,"slice"],[4,"Error"],[3,"InvalidDnsNameError"],[3,"Time"],[15,"bool"],[3,"Formatter"],[6,"Result"],[3,"TrustAnchor"],[3,"TlsServerTrustAnchors"],[3,"TlsClientTrustAnchors"],[15,"u64"],[4,"Ordering"],[4,"Option"],[3,"String"],[3,"EndEntityCert"],[4,"Result"],[15,"str"],[3,"TypeId"],[3,"SignatureAlgorithm"]]},\ diff --git a/serde/de/trait.Deserialize.html b/serde/de/trait.Deserialize.html index fdfd103b4032..97db37577d7b 100644 --- a/serde/de/trait.Deserialize.html +++ b/serde/de/trait.Deserialize.html @@ -26,192 +26,192 @@

Lifetime

D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer.

See the Implementing Deserialize section of the manual for more information about how to implement this method.

-

Implementations on Foreign Types§

source§

impl<'de, T> Deserialize<'de> for BTreeSet<T>where - T: Deserialize<'de> + Eq + Ord,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BinaryHeap<T>where - T: Deserialize<'de> + Ord,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 27]where +

Implementations on Foreign Types§

source§

impl<'de> Deserialize<'de> for Duration

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 4]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a [u8]

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for IpAddr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicBool

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 13]where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 23]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 0]

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 3]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<CStr>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for VecDeque<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for usize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 32]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a str

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 30]where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BTreeSet<T>where + T: Deserialize<'de> + Eq + Ord,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicBool

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 2]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroIsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Reverse<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for RefCell<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for bool

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 13]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 21]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for CString

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicUsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T, E> Deserialize<'de> for Result<T, E>where - T: Deserialize<'de>, - E: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroUsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 0]

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: ?Sized> Deserialize<'de> for PhantomData<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 19]where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 18]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: ?Sized> Deserialize<'de> for PhantomData<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Wrapping<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 15]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<Path>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<str>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 9]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv4Addr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 17]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV6

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for String

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Vec<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 26]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeTo<Idx>where - Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 6]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 12]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for RwLock<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 4]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 3]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 23]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 10]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Option<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>, T15: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<str>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 15]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>> Deserialize<'de> for (T0,)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>> Deserialize<'de> for (T0, T1)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeInclusive<Idx>where - Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for ()

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<Path>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 11]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Box<[T]>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Wrapping<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for LinkedList<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for RefCell<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicIsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 24]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeFrom<Idx>where + Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 20]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a str

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 21]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SystemTime

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 25]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Cell<T>where + T: Deserialize<'de> + Copy,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for ()

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 22]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Box<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for usize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for IpAddr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Mutex<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 7]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicUsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv6Addr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 12]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV6

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, K, V> Deserialize<'de> for BTreeMap<K, V>where + K: Deserialize<'de> + Ord, + V: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 5]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, 'a, T> Deserialize<'de> for Cow<'a, T>where - T: ToOwned + ?Sized, - T::Owned: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 7]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Vec<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Bound<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 2]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SystemTime

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeFrom<Idx>where - Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 29]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV4

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroIsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 17]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 26]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a Path

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Mutex<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 31]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for char

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a Path

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T, E> Deserialize<'de> for Result<T, E>where + T: Deserialize<'de>, + E: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 30]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 14]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 22]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for OsString

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 9]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<CStr>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a [u8]

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for CString

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV4

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for LinkedList<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>> Deserialize<'de> for (T0,)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BinaryHeap<T>where + T: Deserialize<'de> + Ord,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for OsString

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeInclusive<Idx>where + Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for Range<Idx>where + Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for RwLock<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 6]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for VecDeque<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>, T15: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for isize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 28]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, K, V, S> Deserialize<'de> for HashMap<K, V, S>where - K: Deserialize<'de> + Eq + Hash, - V: Deserialize<'de>, - S: BuildHasher + Default,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv6Addr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Box<[T]>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 31]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 16]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroUsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicIsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 29]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Bound<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 8]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T, S> Deserialize<'de> for HashSet<T, S>where T: Deserialize<'de> + Eq + Hash, - S: BuildHasher + Default,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + S: BuildHasher + Default,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 1]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for PathBuf

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 8]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 20]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Duration

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for String

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 16]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Reverse<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for Range<Idx>where - Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for bool

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for isize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Cell<T>where - T: Deserialize<'de> + Copy,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, K, V> Deserialize<'de> for BTreeMap<K, V>where - K: Deserialize<'de> + Ord, - V: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 18]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for PathBuf

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 24]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 19]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for char

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 10]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 11]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 25]where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 32]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv4Addr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Box<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 28]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeTo<Idx>where + Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>> Deserialize<'de> for (T0, T1)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, K, V, S> Deserialize<'de> for HashMap<K, V, S>where + K: Deserialize<'de> + Eq + Hash, + V: Deserialize<'de>, + S: BuildHasher + Default,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, 'a, T> Deserialize<'de> for Cow<'a, T>where + T: ToOwned + ?Sized, + T::Owned: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 27]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Implementors§

source§

impl<'de> Deserialize<'de> for IgnoredAny

\ No newline at end of file diff --git a/serde/de/trait.IntoDeserializer.html b/serde/de/trait.IntoDeserializer.html index 081f1f6fc5ae..fffaf6ce55d3 100644 --- a/serde/de/trait.IntoDeserializer.html +++ b/serde/de/trait.IntoDeserializer.html @@ -29,39 +29,39 @@

Example

}

Required Associated Types§

source

type Deserializer: Deserializer<'de, Error = E>

The type of the deserializer being converted into.

Required Methods§

source

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.

-

Implementations on Foreign Types§

source§

impl<'de, T, S, E> IntoDeserializer<'de, E> for HashSet<T, S>where - T: IntoDeserializer<'de, E> + Eq + Hash, - S: BuildHasher, - E: Error,

§

type Deserializer = SeqDeserializer<<HashSet<T, S> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

source§

impl<'de, E> IntoDeserializer<'de, E> for i8where - E: Error,

§

type Deserializer = I8Deserializer<E>

source§

fn into_deserializer(self) -> I8Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for i128where - E: Error,

§

type Deserializer = I128Deserializer<E>

source§

fn into_deserializer(self) -> I128Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for u128where - E: Error,

§

type Deserializer = U128Deserializer<E>

source§

fn into_deserializer(self) -> U128Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for f32where - E: Error,

§

type Deserializer = F32Deserializer<E>

source§

fn into_deserializer(self) -> F32Deserializer<E>

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for &'a strwhere - E: Error,

§

type Deserializer = StrDeserializer<'a, E>

source§

fn into_deserializer(self) -> StrDeserializer<'a, E>

source§

impl<'de, E> IntoDeserializer<'de, E> for u16where - E: Error,

§

type Deserializer = U16Deserializer<E>

source§

fn into_deserializer(self) -> U16Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for f64where - E: Error,

§

type Deserializer = F64Deserializer<E>

source§

fn into_deserializer(self) -> F64Deserializer<E>

source§

impl<'de, K, V, S, E> IntoDeserializer<'de, E> for HashMap<K, V, S>where +

Implementations on Foreign Types§

source§

impl<'de, E> IntoDeserializer<'de, E> for boolwhere + E: Error,

§

type Deserializer = BoolDeserializer<E>

source§

fn into_deserializer(self) -> BoolDeserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for u128where + E: Error,

§

type Deserializer = U128Deserializer<E>

source§

fn into_deserializer(self) -> U128Deserializer<E>

source§

impl<'de, T, E> IntoDeserializer<'de, E> for Vec<T>where + T: IntoDeserializer<'de, E>, + E: Error,

§

type Deserializer = SeqDeserializer<<Vec<T, Global> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

source§

impl<'de, E> IntoDeserializer<'de, E> for i16where + E: Error,

§

type Deserializer = I16Deserializer<E>

source§

fn into_deserializer(self) -> I16Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for f64where + E: Error,

§

type Deserializer = F64Deserializer<E>

source§

fn into_deserializer(self) -> F64Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for i64where + E: Error,

§

type Deserializer = I64Deserializer<E>

source§

fn into_deserializer(self) -> I64Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for isizewhere + E: Error,

§

type Deserializer = IsizeDeserializer<E>

source§

fn into_deserializer(self) -> IsizeDeserializer<E>

source§

impl<'de, K, V, S, E> IntoDeserializer<'de, E> for HashMap<K, V, S>where K: IntoDeserializer<'de, E> + Eq + Hash, V: IntoDeserializer<'de, E>, S: BuildHasher, - E: Error,

§

type Deserializer = MapDeserializer<'de, <HashMap<K, V, S> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

source§

impl<'de, K, V, E> IntoDeserializer<'de, E> for BTreeMap<K, V>where + E: Error,

§

type Deserializer = MapDeserializer<'de, <HashMap<K, V, S> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

source§

impl<'de, E> IntoDeserializer<'de, E> for usizewhere + E: Error,

§

type Deserializer = UsizeDeserializer<E>

source§

fn into_deserializer(self) -> UsizeDeserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for u8where + E: Error,

§

type Deserializer = U8Deserializer<E>

source§

fn into_deserializer(self) -> U8Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for ()where + E: Error,

§

type Deserializer = UnitDeserializer<E>

source§

fn into_deserializer(self) -> UnitDeserializer<E>

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for &'a [u8]where + E: Error,

§

type Deserializer = BytesDeserializer<'a, E>

source§

fn into_deserializer(self) -> BytesDeserializer<'a, E>

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for Cow<'a, str>where + E: Error,

§

type Deserializer = CowStrDeserializer<'a, E>

source§

fn into_deserializer(self) -> CowStrDeserializer<'a, E>

source§

impl<'de, E> IntoDeserializer<'de, E> for i8where + E: Error,

§

type Deserializer = I8Deserializer<E>

source§

fn into_deserializer(self) -> I8Deserializer<E>

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for &'a strwhere + E: Error,

§

type Deserializer = StrDeserializer<'a, E>

source§

fn into_deserializer(self) -> StrDeserializer<'a, E>

source§

impl<'de, E> IntoDeserializer<'de, E> for charwhere + E: Error,

§

type Deserializer = CharDeserializer<E>

source§

fn into_deserializer(self) -> CharDeserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for u32where + E: Error,

§

type Deserializer = U32Deserializer<E>

source§

fn into_deserializer(self) -> U32Deserializer<E>

source§

impl<'de, K, V, E> IntoDeserializer<'de, E> for BTreeMap<K, V>where K: IntoDeserializer<'de, E> + Eq + Ord, V: IntoDeserializer<'de, E>, - E: Error,

§

type Deserializer = MapDeserializer<'de, <BTreeMap<K, V, Global> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

source§

impl<'de, E> IntoDeserializer<'de, E> for ()where - E: Error,

§

type Deserializer = UnitDeserializer<E>

source§

fn into_deserializer(self) -> UnitDeserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for i16where - E: Error,

§

type Deserializer = I16Deserializer<E>

source§

fn into_deserializer(self) -> I16Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for charwhere - E: Error,

§

type Deserializer = CharDeserializer<E>

source§

fn into_deserializer(self) -> CharDeserializer<E>

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for Cow<'a, str>where - E: Error,

§

type Deserializer = CowStrDeserializer<'a, E>

source§

fn into_deserializer(self) -> CowStrDeserializer<'a, E>

source§

impl<'de, T, E> IntoDeserializer<'de, E> for Vec<T>where - T: IntoDeserializer<'de, E>, - E: Error,

§

type Deserializer = SeqDeserializer<<Vec<T, Global> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

source§

impl<'de, 'a, E> IntoDeserializer<'de, E> for &'a [u8]where - E: Error,

§

type Deserializer = BytesDeserializer<'a, E>

source§

fn into_deserializer(self) -> BytesDeserializer<'a, E>

source§

impl<'de, E> IntoDeserializer<'de, E> for i64where - E: Error,

§

type Deserializer = I64Deserializer<E>

source§

fn into_deserializer(self) -> I64Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for u32where - E: Error,

§

type Deserializer = U32Deserializer<E>

source§

fn into_deserializer(self) -> U32Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for boolwhere - E: Error,

§

type Deserializer = BoolDeserializer<E>

source§

fn into_deserializer(self) -> BoolDeserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for u64where - E: Error,

§

type Deserializer = U64Deserializer<E>

source§

fn into_deserializer(self) -> U64Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for i32where - E: Error,

§

type Deserializer = I32Deserializer<E>

source§

fn into_deserializer(self) -> I32Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for Stringwhere - E: Error,

§

type Deserializer = StringDeserializer<E>

source§

fn into_deserializer(self) -> StringDeserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for isizewhere - E: Error,

§

type Deserializer = IsizeDeserializer<E>

source§

fn into_deserializer(self) -> IsizeDeserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for u8where - E: Error,

§

type Deserializer = U8Deserializer<E>

source§

fn into_deserializer(self) -> U8Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for usizewhere - E: Error,

§

type Deserializer = UsizeDeserializer<E>

source§

fn into_deserializer(self) -> UsizeDeserializer<E>

source§

impl<'de, T, E> IntoDeserializer<'de, E> for BTreeSet<T>where + E: Error,

§

type Deserializer = MapDeserializer<'de, <BTreeMap<K, V, Global> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

source§

impl<'de, E> IntoDeserializer<'de, E> for f32where + E: Error,

§

type Deserializer = F32Deserializer<E>

source§

fn into_deserializer(self) -> F32Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for u16where + E: Error,

§

type Deserializer = U16Deserializer<E>

source§

fn into_deserializer(self) -> U16Deserializer<E>

source§

impl<'de, T, E> IntoDeserializer<'de, E> for BTreeSet<T>where T: IntoDeserializer<'de, E> + Eq + Ord, - E: Error,

§

type Deserializer = SeqDeserializer<<BTreeSet<T, Global> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

Implementors§

\ No newline at end of file + E: Error,
§

type Deserializer = SeqDeserializer<<BTreeSet<T, Global> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

source§

impl<'de, E> IntoDeserializer<'de, E> for u64where + E: Error,

§

type Deserializer = U64Deserializer<E>

source§

fn into_deserializer(self) -> U64Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for i128where + E: Error,

§

type Deserializer = I128Deserializer<E>

source§

fn into_deserializer(self) -> I128Deserializer<E>

source§

impl<'de, E> IntoDeserializer<'de, E> for Stringwhere + E: Error,

§

type Deserializer = StringDeserializer<E>

source§

fn into_deserializer(self) -> StringDeserializer<E>

source§

impl<'de, T, S, E> IntoDeserializer<'de, E> for HashSet<T, S>where + T: IntoDeserializer<'de, E> + Eq + Hash, + S: BuildHasher, + E: Error,

§

type Deserializer = SeqDeserializer<<HashSet<T, S> as IntoIterator>::IntoIter, E>

source§

fn into_deserializer(self) -> Self::Deserializer

source§

impl<'de, E> IntoDeserializer<'de, E> for i32where + E: Error,

§

type Deserializer = I32Deserializer<E>

source§

fn into_deserializer(self) -> I32Deserializer<E>

Implementors§

\ No newline at end of file diff --git a/serde/de/value/struct.CowStrDeserializer.html b/serde/de/value/struct.CowStrDeserializer.html index 98f1af136366..e9ef8f0ea046 100644 --- a/serde/de/value/struct.CowStrDeserializer.html +++ b/serde/de/value/struct.CowStrDeserializer.html @@ -1,6 +1,6 @@ CowStrDeserializer in serde::de::value - Rust
pub struct CowStrDeserializer<'a, E> { /* private fields */ }
Expand description

A deserializer holding a Cow<str>.

Implementations§

source§

impl<'a, E> CowStrDeserializer<'a, E>

source

pub fn new(value: Cow<'a, str>) -> Self

Trait Implementations§

source§

impl<'a, E> Clone for CowStrDeserializer<'a, E>

source§

fn clone(&self) -> Self

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<'a, E> Debug for CowStrDeserializer<'a, E>

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, 'a, E> Deserializer<'de> for CowStrDeserializer<'a, E>where - E: Error,

§

type Error = E

The error type that can be returned if some error occurs during + E: Error,
§

type Error = E

The error type that can be returned if some error occurs during deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based on what data type is in the input. Read more
source§

fn deserialize_enum<V>( @@ -78,7 +78,7 @@ V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to deserialize their human-readable form. Read more
source§

impl<'de, 'a, E> EnumAccess<'de> for CowStrDeserializer<'a, E>where - E: Error,

§

type Error = E

The error type that can be returned if some error occurs during + E: Error,
§

type Error = E

The error type that can be returned if some error occurs during deserialization.
§

type Variant = UnitOnly<E>

The Visitor that will be used to deserialize the content of the enum variant.
source§

fn variant_seed<T>( self, diff --git a/serde/de/value/struct.Error.html b/serde/de/value/struct.Error.html index 634ccd15ccd6..82b64478766b 100644 --- a/serde/de/value/struct.Error.html +++ b/serde/de/value/struct.Error.html @@ -1,8 +1,8 @@ Error in serde::de::value - Rust

Struct serde::de::value::Error

source ·
pub struct Error { /* private fields */ }
Expand description

A minimal representation of all possible errors that can occur using the IntoDeserializer trait.

-

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T>(msg: T) -> Selfwhere +

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn custom<T>(msg: T) -> Selfwhere T: Display,

Used when a Serialize implementation encounters any error -while serializing a type. Read more
source§

impl Error for Error

source§

fn custom<T>(msg: T) -> Selfwhere +while serializing a type. Read more

source§

impl Error for Error

source§

fn custom<T>(msg: T) -> Selfwhere T: Display,

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, exp: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains @@ -11,7 +11,7 @@ unrecognized name.
source§

fn missing_field(field: &'static str) -> Self

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input.
source§

fn duplicate_field(field: &'static str) -> Self

Raised when a Deserialize struct type received more than one of the -same field.
source§

impl PartialEq<Error> for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used +same field.
source§

impl Error for Error

source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl PartialEq<Error> for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Error

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/serde/de/value/struct.MapAccessDeserializer.html b/serde/de/value/struct.MapAccessDeserializer.html index 28541cf0d538..f40fa943c245 100644 --- a/serde/de/value/struct.MapAccessDeserializer.html +++ b/serde/de/value/struct.MapAccessDeserializer.html @@ -1,7 +1,7 @@ MapAccessDeserializer in serde::de::value - Rust
pub struct MapAccessDeserializer<A> { /* private fields */ }
Expand description

A deserializer holding a MapAccess.

Implementations§

source§

impl<A> MapAccessDeserializer<A>

source

pub fn new(map: A) -> Self

Construct a new MapAccessDeserializer<A>.

Trait Implementations§

source§

impl<A: Clone> Clone for MapAccessDeserializer<A>

source§

fn clone(&self) -> MapAccessDeserializer<A>

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<A: Debug> Debug for MapAccessDeserializer<A>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, A> Deserializer<'de> for MapAccessDeserializer<A>where - A: MapAccess<'de>,

§

type Error = <A as MapAccess<'de>>::Error

The error type that can be returned if some error occurs during + A: MapAccess<'de>,

§

type Error = <A as MapAccess<'de>>::Error

The error type that can be returned if some error occurs during deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based on what data type is in the input. Read more
source§

fn deserialize_enum<V>( @@ -79,7 +79,7 @@ V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to deserialize their human-readable form. Read more
source§

impl<'de, A> EnumAccess<'de> for MapAccessDeserializer<A>where - A: MapAccess<'de>,

§

type Error = <A as MapAccess<'de>>::Error

The error type that can be returned if some error occurs during + A: MapAccess<'de>,
§

type Error = <A as MapAccess<'de>>::Error

The error type that can be returned if some error occurs during deserialization.
§

type Variant = MapAsEnum<A>

The Visitor that will be used to deserialize the content of the enum variant.
source§

fn variant_seed<T>( self, diff --git a/serde/de/value/struct.SeqDeserializer.html b/serde/de/value/struct.SeqDeserializer.html index c7a350a9e02d..fc6f56082a18 100644 --- a/serde/de/value/struct.SeqDeserializer.html +++ b/serde/de/value/struct.SeqDeserializer.html @@ -9,7 +9,7 @@ I: Debug,

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, I, T, E> Deserializer<'de> for SeqDeserializer<I, E>where I: Iterator<Item = T>, T: IntoDeserializer<'de, E>, - E: Error,

§

type Error = E

The error type that can be returned if some error occurs during + E: Error,
§

type Error = E

The error type that can be returned if some error occurs during deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based on what data type is in the input. Read more
source§

fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error>where @@ -89,7 +89,7 @@ deserialize their human-readable form. Read more

source§

impl<'de, I, T, E> SeqAccess<'de> for SeqDeserializer<I, E>where I: Iterator<Item = T>, T: IntoDeserializer<'de, E>, - E: Error,

§

type Error = E

The error type that can be returned if some error occurs during + E: Error,
§

type Error = E

The error type that can be returned if some error occurs during deserialization.
source§

fn next_element_seed<V>( &mut self, seed: V diff --git a/serde/de/value/struct.StrDeserializer.html b/serde/de/value/struct.StrDeserializer.html index 893c14c2e0d3..11c9e3e84f7b 100644 --- a/serde/de/value/struct.StrDeserializer.html +++ b/serde/de/value/struct.StrDeserializer.html @@ -1,6 +1,6 @@ StrDeserializer in serde::de::value - Rust

Struct serde::de::value::StrDeserializer

source ·
pub struct StrDeserializer<'a, E> { /* private fields */ }
Expand description

A deserializer holding a &str.

Implementations§

source§

impl<'a, E> StrDeserializer<'a, E>

source

pub fn new(value: &'a str) -> Self

Trait Implementations§

source§

impl<'de, E> Clone for StrDeserializer<'de, E>

source§

fn clone(&self) -> Self

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<'a, E> Debug for StrDeserializer<'a, E>

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, 'a, E> Deserializer<'de> for StrDeserializer<'a, E>where - E: Error,

§

type Error = E

The error type that can be returned if some error occurs during + E: Error,

§

type Error = E

The error type that can be returned if some error occurs during deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based on what data type is in the input. Read more
source§

fn deserialize_enum<V>( @@ -78,7 +78,7 @@ V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to deserialize their human-readable form. Read more
source§

impl<'de, 'a, E> EnumAccess<'de> for StrDeserializer<'a, E>where - E: Error,

§

type Error = E

The error type that can be returned if some error occurs during + E: Error,
§

type Error = E

The error type that can be returned if some error occurs during deserialization.
§

type Variant = UnitOnly<E>

The Visitor that will be used to deserialize the content of the enum variant.
source§

fn variant_seed<T>( self, diff --git a/serde/de/value/struct.StringDeserializer.html b/serde/de/value/struct.StringDeserializer.html index 45b5764c2c17..a2e64c12b457 100644 --- a/serde/de/value/struct.StringDeserializer.html +++ b/serde/de/value/struct.StringDeserializer.html @@ -1,6 +1,6 @@ StringDeserializer in serde::de::value - Rust
pub struct StringDeserializer<E> { /* private fields */ }
Expand description

A deserializer holding a String.

Implementations§

source§

impl<E> StringDeserializer<E>

source

pub fn new(value: String) -> Self

Trait Implementations§

source§

impl<E> Clone for StringDeserializer<E>

source§

fn clone(&self) -> Self

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<E> Debug for StringDeserializer<E>

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, E> Deserializer<'de> for StringDeserializer<E>where - E: Error,

§

type Error = E

The error type that can be returned if some error occurs during + E: Error,

§

type Error = E

The error type that can be returned if some error occurs during deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based on what data type is in the input. Read more
source§

fn deserialize_enum<V>( @@ -78,7 +78,7 @@ V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to deserialize their human-readable form. Read more
source§

impl<'de, E> EnumAccess<'de> for StringDeserializer<E>where - E: Error,

§

type Error = E

The error type that can be returned if some error occurs during + E: Error,
§

type Error = E

The error type that can be returned if some error occurs during deserialization.
§

type Variant = UnitOnly<E>

The Visitor that will be used to deserialize the content of the enum variant.
source§

fn variant_seed<T>( self, diff --git a/serde/derive.Deserialize.html b/serde/derive.Deserialize.html index ca796f8003b9..633da4241295 100644 --- a/serde/derive.Deserialize.html +++ b/serde/derive.Deserialize.html @@ -1,4 +1,4 @@ -Deserialize in serde - Rust

Derive Macro serde::Deserialize

source ·
#[derive(Deserialize)]
+Deserialize in serde - Rust

Derive Macro serde::Deserialize

source ·
#[derive(Deserialize)]
 {
     // Attributes available to this derive:
     #[serde]
diff --git a/serde/derive.Serialize.html b/serde/derive.Serialize.html
index 3b4ecc218ba4..2477a5934b3d 100644
--- a/serde/derive.Serialize.html
+++ b/serde/derive.Serialize.html
@@ -1,4 +1,4 @@
-Serialize in serde - Rust

Derive Macro serde::Serialize

source ·
#[derive(Serialize)]
+Serialize in serde - Rust

Derive Macro serde::Serialize

source ·
#[derive(Serialize)]
 {
     // Attributes available to this derive:
     #[serde]
diff --git a/serde/index.html b/serde/index.html
index 29fa478c3e57..88289801d3a0 100644
--- a/serde/index.html
+++ b/serde/index.html
@@ -1,4 +1,4 @@
-serde - Rust

Crate serde

source ·
Expand description

Serde

+serde - Rust

Crate serde

source ·
Expand description

Serde

Serde is a framework for serializing and deserializing Rust data structures efficiently and generically.

The Serde ecosystem consists of data structures that know how to serialize diff --git a/serde/ser/struct.Impossible.html b/serde/ser/struct.Impossible.html index 1a88b9cd309c..09b6bba9d593 100644 --- a/serde/ser/struct.Impossible.html +++ b/serde/ser/struct.Impossible.html @@ -24,35 +24,35 @@ /* other Serializer methods */ }

Trait Implementations§

source§

impl<Ok, Error> SerializeMap for Impossible<Ok, Error>where - Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_key<T>(&mut self, key: &T) -> Result<(), Error>where + Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_key<T>(&mut self, key: &T) -> Result<(), Error>where T: Serialize + ?Sized,

Serialize a map key. Read more
source§

fn serialize_value<T>(&mut self, value: &T) -> Result<(), Error>where - T: Serialize + ?Sized,

Serialize a map value. Read more
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a map.
source§

fn serialize_entry<K, V>( + T: Serialize + ?Sized,

Serialize a map value. Read more
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a map.
source§

fn serialize_entry<K, V>( &mut self, key: &K, value: &V ) -> Result<(), Self::Error>where K: Serialize + ?Sized, V: Serialize + ?Sized,

Serialize a map entry consisting of a key and a value. Read more
source§

impl<Ok, Error> SerializeSeq for Impossible<Ok, Error>where - Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_element<T>(&mut self, value: &T) -> Result<(), Error>where - T: Serialize + ?Sized,

Serialize a sequence element.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a sequence.
source§

impl<Ok, Error> SerializeStruct for Impossible<Ok, Error>where - Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_field<T>( + Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_element<T>(&mut self, value: &T) -> Result<(), Error>where + T: Serialize + ?Sized,

Serialize a sequence element.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a sequence.
source§

impl<Ok, Error> SerializeStruct for Impossible<Ok, Error>where + Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_field<T>( &mut self, key: &'static str, value: &T ) -> Result<(), Error>where - T: Serialize + ?Sized,

Serialize a struct field.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a struct.
source§

fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error>

Indicate that a struct field has been skipped.
source§

impl<Ok, Error> SerializeStructVariant for Impossible<Ok, Error>where - Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_field<T>( + T: Serialize + ?Sized,

Serialize a struct field.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a struct.
source§

fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error>

Indicate that a struct field has been skipped.
source§

impl<Ok, Error> SerializeStructVariant for Impossible<Ok, Error>where + Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_field<T>( &mut self, key: &'static str, value: &T ) -> Result<(), Error>where - T: Serialize + ?Sized,

Serialize a struct variant field.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a struct variant.
source§

fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error>

Indicate that a struct variant field has been skipped.
source§

impl<Ok, Error> SerializeTuple for Impossible<Ok, Error>where - Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_element<T>(&mut self, value: &T) -> Result<(), Error>where - T: Serialize + ?Sized,

Serialize a tuple element.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a tuple.
source§

impl<Ok, Error> SerializeTupleStruct for Impossible<Ok, Error>where - Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_field<T>(&mut self, value: &T) -> Result<(), Error>where - T: Serialize + ?Sized,

Serialize a tuple struct field.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a tuple struct.
source§

impl<Ok, Error> SerializeTupleVariant for Impossible<Ok, Error>where - Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_field<T>(&mut self, value: &T) -> Result<(), Error>where - T: Serialize + ?Sized,

Serialize a tuple variant field.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a tuple variant.

Auto Trait Implementations§

§

impl<Ok, Error> RefUnwindSafe for Impossible<Ok, Error>where + T: Serialize + ?Sized,

Serialize a struct variant field.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a struct variant.
source§

fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error>

Indicate that a struct variant field has been skipped.
source§

impl<Ok, Error> SerializeTuple for Impossible<Ok, Error>where + Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_element<T>(&mut self, value: &T) -> Result<(), Error>where + T: Serialize + ?Sized,

Serialize a tuple element.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a tuple.
source§

impl<Ok, Error> SerializeTupleStruct for Impossible<Ok, Error>where + Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_field<T>(&mut self, value: &T) -> Result<(), Error>where + T: Serialize + ?Sized,

Serialize a tuple struct field.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a tuple struct.
source§

impl<Ok, Error> SerializeTupleVariant for Impossible<Ok, Error>where + Error: Error,

§

type Ok = Ok

Must match the Ok type of our Serializer.
§

type Error = Error

Must match the Error type of our Serializer.
source§

fn serialize_field<T>(&mut self, value: &T) -> Result<(), Error>where + T: Serialize + ?Sized,

Serialize a tuple variant field.
source§

fn end(self) -> Result<Ok, Error>

Finish serializing a tuple variant.

Auto Trait Implementations§

§

impl<Ok, Error> RefUnwindSafe for Impossible<Ok, Error>where Error: RefUnwindSafe, Ok: RefUnwindSafe,

§

impl<Ok, Error> Send for Impossible<Ok, Error>where Error: Send, diff --git a/serde/ser/trait.Serialize.html b/serde/ser/trait.Serialize.html index 7e5533183a14..e042f657040f 100644 --- a/serde/ser/trait.Serialize.html +++ b/serde/ser/trait.Serialize.html @@ -43,42 +43,41 @@ s.end() } }

-

Implementations on Foreign Types§

source§

impl Serialize for SocketAddrV4

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Option<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for CString

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 6]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for RefCell<T>where - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 21]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 20]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 32]where +

Implementations on Foreign Types§

source§

impl Serialize for NonZeroI128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicU8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicU32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 0]

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T, E> Serialize for Result<T, E>where + T: Serialize, + E: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 15]where T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for char

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<K, V, H> Serialize for HashMap<K, V, H>where - K: Serialize, - V: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 11]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for Ipv4Addr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 9]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for CStr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for IpAddr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicI8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 14]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for bool

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for SocketAddr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4> Serialize for (T0, T1, T2, T3, T4)where + T0: Serialize, + T1: Serialize, + T2: Serialize, + T3: Serialize, + T4: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for VecDeque<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicU16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<'a, T> Serialize for &'a mut Twhere - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for SystemTime

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 16]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 27]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicI8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for ()

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for CStr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroI64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for Duration

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 5]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 4]where T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -89,14 +88,29 @@ T7: Serialize, T8: Serialize, T9: Serialize, - T10: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for bool

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<K, V> Serialize for BTreeMap<K, V>where - K: Serialize, - V: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicU8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T10: Serialize, + T11: Serialize, + T12: Serialize, + T13: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 24]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 12]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2> Serialize for (T0, T1, T2)where + T0: Serialize, + T1: Serialize, + T2: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for str

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for OsString

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3> Serialize for (T0, T1, T2, T3)where + T0: Serialize, + T1: Serialize, + T2: Serialize, + T3: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for char

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T: ?Sized> Serialize for PhantomData<T>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<Idx> Serialize for RangeInclusive<Idx>where + Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)where T0: Serialize, T1: Serialize, @@ -112,48 +126,61 @@ T11: Serialize, T12: Serialize, T13: Serialize, - T14: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for isize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for BinaryHeap<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0> Serialize for (T0,)where - T0: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<Idx> Serialize for RangeTo<Idx>where - Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicU32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1> Serialize for (T0, T1)where + T14: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicI32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for SocketAddrV6

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5> Serialize for (T0, T1, T2, T3, T4, T5)where T0: Serialize, - T1: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 0]

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 25]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 4]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 3]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T1: Serialize, + T2: Serialize, + T3: Serialize, + T4: Serialize, + T5: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for RwLock<T>where - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 11]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Vec<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 6]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for CString

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for Cell<T>where - T: Serialize + Copy,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Mutex<T>where - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T, E> Serialize for Result<T, E>where - T: Serialize, - E: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 29]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for SocketAddrV6

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for Path

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T: Serialize + Copy,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<Idx> Serialize for Range<Idx>where + Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for [T; 2]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7)where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Bound<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 32]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 7]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for String

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for Ipv6Addr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for LinkedList<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<Idx> Serialize for RangeTo<Idx>where + Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicIsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<'a, T> Serialize for &'a mut Twhere + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0> Serialize for (T0,)where + T0: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 30]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for OsStr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 23]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 20]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -161,11 +188,12 @@ T4: Serialize, T5: Serialize, T6: Serialize, - T7: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 15]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicU64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T7: Serialize, + T8: Serialize, + T9: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for Ipv4Addr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 9]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)where T0: Serialize, T1: Serialize, @@ -179,34 +207,14 @@ T9: Serialize, T10: Serialize, T11: Serialize, - T12: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 19]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for f64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T: ?Sized> Serialize for PhantomData<T>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3> Serialize for (T0, T1, T2, T3)where - T0: Serialize, - T1: Serialize, - T2: Serialize, - T3: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 23]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for f32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicIsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Bound<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T, H> Serialize for HashSet<T, H>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 14]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 22]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for LinkedList<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)where + T12: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<Idx> Serialize for RangeFrom<Idx>where + Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Option<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for isize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -215,61 +223,15 @@ T5: Serialize, T6: Serialize, T7: Serialize, - T8: Serialize, - T9: Serialize, - T10: Serialize, - T11: Serialize, - T12: Serialize, - T13: Serialize, - T14: Serialize, - T15: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Reverse<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicI64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T8: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for [T; 18]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicI16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2> Serialize for (T0, T1, T2)where - T0: Serialize, - T1: Serialize, - T2: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroUsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for ()

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for BTreeSet<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for str

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 26]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4> Serialize for (T0, T1, T2, T3, T4)where - T0: Serialize, - T1: Serialize, - T2: Serialize, - T3: Serialize, - T4: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 30]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<Idx> Serialize for RangeFrom<Idx>where - Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for OsString

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<'a> Serialize for Arguments<'a>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 13]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 8]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicBool

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 7]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<'a, T> Serialize for Cow<'a, T>where - T: Serialize + ToOwned + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Vec<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<'a, T> Serialize for &'a Twhere - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 10]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for IpAddr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Reverse<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 22]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -277,10 +239,43 @@ T4: Serialize, T5: Serialize, T6: Serialize, - T7: Serialize, - T8: Serialize, - T9: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)where + T7: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for usize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroI16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 19]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 16]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 26]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroUsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Mutex<T>where + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroIsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Box<T>where + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for RefCell<T>where + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for f32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for f64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicUsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<'a, T> Serialize for Cow<'a, T>where + T: Serialize + ToOwned + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 25]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicU64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicBool

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Wrapping<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 3]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 13]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroI32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -292,52 +287,65 @@ T8: Serialize, T9: Serialize, T10: Serialize, - T11: Serialize, - T12: Serialize, - T13: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicI32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Wrapping<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 28]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 12]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for PathBuf

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<Idx> Serialize for Range<Idx>where - Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for OsStr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 1]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for SocketAddr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Box<T>where - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 5]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8)where + T11: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicI16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for SocketAddrV4

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6> Serialize for (T0, T1, T2, T3, T4, T5, T6)where T0: Serialize, T1: Serialize, T2: Serialize, T3: Serialize, T4: Serialize, T5: Serialize, - T6: Serialize, - T7: Serialize, - T8: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6> Serialize for (T0, T1, T2, T3, T4, T5, T6)where + T6: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for Path

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<K, V, H> Serialize for HashMap<K, V, H>where + K: Serialize, + V: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for SystemTime

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 10]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for BTreeSet<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicI64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T, H> Serialize for HashSet<T, H>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 31]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 17]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroI8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 8]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 29]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)where T0: Serialize, T1: Serialize, T2: Serialize, T3: Serialize, T4: Serialize, T5: Serialize, - T6: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)where + T6: Serialize, + T7: Serialize, + T8: Serialize, + T9: Serialize, + T10: Serialize, + T11: Serialize, + T12: Serialize, + T13: Serialize, + T14: Serialize, + T15: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for PathBuf

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<K, V> Serialize for BTreeMap<K, V>where + K: Serialize, + V: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -348,29 +356,21 @@ T7: Serialize, T8: Serialize, T9: Serialize, - T10: Serialize, - T11: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 31]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for Ipv6Addr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 17]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 27]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 24]where + T10: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<'a, T> Serialize for &'a Twhere + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 28]where T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroIsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for String

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicUsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5> Serialize for (T0, T1, T2, T3, T4, T5)where + S: Serializer,

source§

impl<T> Serialize for BinaryHeap<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 1]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicU16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1> Serialize for (T0, T1)where T0: Serialize, - T1: Serialize, - T2: Serialize, - T3: Serialize, - T4: Serialize, - T5: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for Duration

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<Idx> Serialize for RangeInclusive<Idx>where - Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for usize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T1: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<'a> Serialize for Arguments<'a>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 21]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

Implementors§

\ No newline at end of file diff --git a/serde/trait.Deserialize.html b/serde/trait.Deserialize.html index 4f8f75890963..18c9e1b9032c 100644 --- a/serde/trait.Deserialize.html +++ b/serde/trait.Deserialize.html @@ -26,192 +26,192 @@

Lifetime

D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer.

See the Implementing Deserialize section of the manual for more information about how to implement this method.

-

Implementations on Foreign Types§

source§

impl<'de, T> Deserialize<'de> for BTreeSet<T>where - T: Deserialize<'de> + Eq + Ord,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BinaryHeap<T>where - T: Deserialize<'de> + Ord,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 27]where +

Implementations on Foreign Types§

source§

impl<'de> Deserialize<'de> for Duration

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 4]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a [u8]

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for IpAddr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicBool

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 13]where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 23]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 0]

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 3]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<CStr>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for VecDeque<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for usize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 32]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a str

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 30]where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BTreeSet<T>where + T: Deserialize<'de> + Eq + Ord,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicBool

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 2]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroIsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Reverse<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for RefCell<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for bool

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 13]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 21]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for CString

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicUsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T, E> Deserialize<'de> for Result<T, E>where - T: Deserialize<'de>, - E: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroUsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 0]

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: ?Sized> Deserialize<'de> for PhantomData<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 19]where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 18]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: ?Sized> Deserialize<'de> for PhantomData<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Wrapping<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 15]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<Path>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<str>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 9]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv4Addr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 17]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV6

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for String

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Vec<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 26]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeTo<Idx>where - Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 6]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 12]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for RwLock<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 4]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 3]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 23]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 10]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Option<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>, T15: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<str>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 15]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>> Deserialize<'de> for (T0,)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>> Deserialize<'de> for (T0, T1)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeInclusive<Idx>where - Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for ()

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<Path>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 11]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Box<[T]>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Wrapping<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for LinkedList<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for RefCell<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicIsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 24]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeFrom<Idx>where + Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 20]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a str

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 21]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SystemTime

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 25]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Cell<T>where + T: Deserialize<'de> + Copy,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for ()

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 22]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Box<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for usize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for IpAddr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Mutex<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 7]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicUsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv6Addr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 12]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV6

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, K, V> Deserialize<'de> for BTreeMap<K, V>where + K: Deserialize<'de> + Ord, + V: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 5]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, 'a, T> Deserialize<'de> for Cow<'a, T>where - T: ToOwned + ?Sized, - T::Owned: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 7]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Vec<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Bound<T>where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 2]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SystemTime

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeFrom<Idx>where - Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 29]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV4

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroIsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 17]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 26]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a Path

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Mutex<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 31]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for char

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a Path

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T, E> Deserialize<'de> for Result<T, E>where + T: Deserialize<'de>, + E: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 30]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 14]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 22]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for OsString

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 9]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Box<CStr>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a [u8]

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for CString

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddrV4

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for LinkedList<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>> Deserialize<'de> for (T0,)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for BinaryHeap<T>where + T: Deserialize<'de> + Ord,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for OsString

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeInclusive<Idx>where + Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for Range<Idx>where + Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for RwLock<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 6]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for VecDeque<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>, T15: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for isize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 28]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU128

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, K, V, S> Deserialize<'de> for HashMap<K, V, S>where - K: Deserialize<'de> + Eq + Hash, - V: Deserialize<'de>, - S: BuildHasher + Default,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv6Addr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Box<[T]>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for u8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for SocketAddr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 31]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 16]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroUsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicIsize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 29]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Bound<T>where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 8]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T, S> Deserialize<'de> for HashSet<T, S>where T: Deserialize<'de> + Eq + Hash, - S: BuildHasher + Default,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + S: BuildHasher + Default,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 1]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for PathBuf

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 8]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 20]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Duration

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for String

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 16]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Reverse<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for Range<Idx>where - Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for bool

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for isize

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroI16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for Cell<T>where - T: Deserialize<'de> + Copy,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, K, V> Deserialize<'de> for BTreeMap<K, V>where - K: Deserialize<'de> + Ord, - V: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 18]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for PathBuf

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 24]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 19]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for char

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicU64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 10]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 11]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 25]where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 32]where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for Ipv4Addr

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>, T10: Deserialize<'de>, T11: Deserialize<'de>, T12: Deserialize<'de>, T13: Deserialize<'de>, T14: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T: Deserialize<'de>> Deserialize<'de> for Box<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 28]where - T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for f64

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where - D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, Idx> Deserialize<'de> for RangeTo<Idx>where + Idx: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>> Deserialize<'de> for (T0, T1)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, K, V, S> Deserialize<'de> for HashMap<K, V, S>where + K: Deserialize<'de> + Eq + Hash, + V: Deserialize<'de>, + S: BuildHasher + Default,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, 'a, T> Deserialize<'de> for Cow<'a, T>where + T: ToOwned + ?Sized, + T::Owned: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T0: Deserialize<'de>, T1: Deserialize<'de>, T2: Deserialize<'de>, T3: Deserialize<'de>, T4: Deserialize<'de>, T5: Deserialize<'de>, T6: Deserialize<'de>, T7: Deserialize<'de>, T8: Deserialize<'de>, T9: Deserialize<'de>> Deserialize<'de> for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for AtomicI16

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for NonZeroU8

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de> Deserialize<'de> for i32

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where + D: Deserializer<'de>,

source§

impl<'de, T> Deserialize<'de> for [T; 27]where + T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Implementors§

source§

impl<'de> Deserialize<'de> for IgnoredAny

\ No newline at end of file diff --git a/serde/trait.Serialize.html b/serde/trait.Serialize.html index b4212997b0ef..fd496652232f 100644 --- a/serde/trait.Serialize.html +++ b/serde/trait.Serialize.html @@ -43,42 +43,41 @@ s.end() } }
-

Implementations on Foreign Types§

source§

impl Serialize for SocketAddrV4

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Option<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for CString

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 6]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for RefCell<T>where - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 21]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 20]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 32]where +

Implementations on Foreign Types§

source§

impl Serialize for NonZeroI128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicU8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicU32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 0]

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T, E> Serialize for Result<T, E>where + T: Serialize, + E: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 15]where T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for char

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<K, V, H> Serialize for HashMap<K, V, H>where - K: Serialize, - V: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 11]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for Ipv4Addr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 9]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for CStr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for IpAddr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicI8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 14]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for bool

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for SocketAddr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4> Serialize for (T0, T1, T2, T3, T4)where + T0: Serialize, + T1: Serialize, + T2: Serialize, + T3: Serialize, + T4: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for VecDeque<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicU16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<'a, T> Serialize for &'a mut Twhere - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for SystemTime

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 16]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 27]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicI8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for ()

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for CStr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroI64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for Duration

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 5]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 4]where T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -89,14 +88,29 @@ T7: Serialize, T8: Serialize, T9: Serialize, - T10: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for bool

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<K, V> Serialize for BTreeMap<K, V>where - K: Serialize, - V: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicU8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T10: Serialize, + T11: Serialize, + T12: Serialize, + T13: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 24]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 12]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2> Serialize for (T0, T1, T2)where + T0: Serialize, + T1: Serialize, + T2: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for str

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for OsString

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3> Serialize for (T0, T1, T2, T3)where + T0: Serialize, + T1: Serialize, + T2: Serialize, + T3: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for char

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T: ?Sized> Serialize for PhantomData<T>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<Idx> Serialize for RangeInclusive<Idx>where + Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)where T0: Serialize, T1: Serialize, @@ -112,48 +126,61 @@ T11: Serialize, T12: Serialize, T13: Serialize, - T14: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for isize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for BinaryHeap<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0> Serialize for (T0,)where - T0: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<Idx> Serialize for RangeTo<Idx>where - Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicU32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1> Serialize for (T0, T1)where + T14: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicI32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for SocketAddrV6

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5> Serialize for (T0, T1, T2, T3, T4, T5)where T0: Serialize, - T1: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 0]

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 25]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 4]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 3]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T1: Serialize, + T2: Serialize, + T3: Serialize, + T4: Serialize, + T5: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for RwLock<T>where - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 11]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Vec<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 6]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for CString

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for Cell<T>where - T: Serialize + Copy,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Mutex<T>where - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T, E> Serialize for Result<T, E>where - T: Serialize, - E: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 29]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for SocketAddrV6

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for Path

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T: Serialize + Copy,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<Idx> Serialize for Range<Idx>where + Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for [T; 2]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7)where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Bound<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 32]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 7]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for String

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for Ipv6Addr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for LinkedList<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<Idx> Serialize for RangeTo<Idx>where + Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicIsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<'a, T> Serialize for &'a mut Twhere + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0> Serialize for (T0,)where + T0: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 30]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for OsStr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 23]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 20]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -161,11 +188,12 @@ T4: Serialize, T5: Serialize, T6: Serialize, - T7: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 15]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicU64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T7: Serialize, + T8: Serialize, + T9: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for Ipv4Addr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 9]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)where T0: Serialize, T1: Serialize, @@ -179,34 +207,14 @@ T9: Serialize, T10: Serialize, T11: Serialize, - T12: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 19]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for f64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T: ?Sized> Serialize for PhantomData<T>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3> Serialize for (T0, T1, T2, T3)where - T0: Serialize, - T1: Serialize, - T2: Serialize, - T3: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 23]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for f32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicIsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Bound<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroU8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T, H> Serialize for HashSet<T, H>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 14]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 22]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for LinkedList<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)where + T12: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<Idx> Serialize for RangeFrom<Idx>where + Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Option<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for isize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -215,61 +223,15 @@ T5: Serialize, T6: Serialize, T7: Serialize, - T8: Serialize, - T9: Serialize, - T10: Serialize, - T11: Serialize, - T12: Serialize, - T13: Serialize, - T14: Serialize, - T15: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Reverse<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicI64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T8: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

source§

impl<T> Serialize for [T; 18]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicI16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2> Serialize for (T0, T1, T2)where - T0: Serialize, - T1: Serialize, - T2: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroUsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for ()

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for BTreeSet<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for str

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 26]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4> Serialize for (T0, T1, T2, T3, T4)where - T0: Serialize, - T1: Serialize, - T2: Serialize, - T3: Serialize, - T4: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 30]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<Idx> Serialize for RangeFrom<Idx>where - Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for OsString

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<'a> Serialize for Arguments<'a>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 13]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 8]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicBool

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 7]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for i16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<'a, T> Serialize for Cow<'a, T>where - T: Serialize + ToOwned + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Vec<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<'a, T> Serialize for &'a Twhere - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 10]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for IpAddr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Reverse<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 22]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -277,10 +239,43 @@ T4: Serialize, T5: Serialize, T6: Serialize, - T7: Serialize, - T8: Serialize, - T9: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)where + T7: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for usize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroI16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 19]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 16]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 26]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroUsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Mutex<T>where + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroIsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Box<T>where + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for RefCell<T>where + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for f32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for f64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicUsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<'a, T> Serialize for Cow<'a, T>where + T: Serialize + ToOwned + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 25]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicU64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicBool

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for Wrapping<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 3]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 13]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroI32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -292,52 +287,65 @@ T8: Serialize, T9: Serialize, T10: Serialize, - T11: Serialize, - T12: Serialize, - T13: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicI32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Wrapping<T>where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 28]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 12]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for PathBuf

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<Idx> Serialize for Range<Idx>where - Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for u128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for OsStr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 1]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroI8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for SocketAddr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for Box<T>where - T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 5]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8)where + T11: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicI16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for SocketAddrV4

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6> Serialize for (T0, T1, T2, T3, T4, T5, T6)where T0: Serialize, T1: Serialize, T2: Serialize, T3: Serialize, T4: Serialize, T5: Serialize, - T6: Serialize, - T7: Serialize, - T8: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6> Serialize for (T0, T1, T2, T3, T4, T5, T6)where + T6: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for Path

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<K, V, H> Serialize for HashMap<K, V, H>where + K: Serialize, + V: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for SystemTime

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 10]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for i128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for BTreeSet<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicI64

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T, H> Serialize for HashSet<T, H>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 31]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 17]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroI8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 8]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU32

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 29]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)where T0: Serialize, T1: Serialize, T2: Serialize, T3: Serialize, T4: Serialize, T5: Serialize, - T6: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)where + T6: Serialize, + T7: Serialize, + T8: Serialize, + T9: Serialize, + T10: Serialize, + T11: Serialize, + T12: Serialize, + T13: Serialize, + T14: Serialize, + T15: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for PathBuf

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<K, V> Serialize for BTreeMap<K, V>where + K: Serialize, + V: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for u8

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Serialize for (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)where T0: Serialize, T1: Serialize, T2: Serialize, @@ -348,29 +356,21 @@ T7: Serialize, T8: Serialize, T9: Serialize, - T10: Serialize, - T11: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 31]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for Ipv6Addr

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 17]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 27]where - T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T> Serialize for [T; 24]where + T10: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<'a, T> Serialize for &'a Twhere + T: Serialize + ?Sized,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 28]where T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for NonZeroIsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for String

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for AtomicUsize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<T0, T1, T2, T3, T4, T5> Serialize for (T0, T1, T2, T3, T4, T5)where + S: Serializer,

source§

impl<T> Serialize for BinaryHeap<T>where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 1]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for AtomicU16

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl Serialize for NonZeroU128

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T0, T1> Serialize for (T0, T1)where T0: Serialize, - T1: Serialize, - T2: Serialize, - T3: Serialize, - T4: Serialize, - T5: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for Duration

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl<Idx> Serialize for RangeInclusive<Idx>where - Idx: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where - S: Serializer,

source§

impl Serialize for usize

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + T1: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<'a> Serialize for Arguments<'a>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where + S: Serializer,

source§

impl<T> Serialize for [T; 21]where + T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

Implementors§

\ No newline at end of file diff --git a/serde_derive/derive.Deserialize.html b/serde_derive/derive.Deserialize.html index c15460ede905..c8a89bafa332 100644 --- a/serde_derive/derive.Deserialize.html +++ b/serde_derive/derive.Deserialize.html @@ -1,4 +1,4 @@ -Deserialize in serde_derive - Rust

Derive Macro serde_derive::Deserialize

source ·
#[derive(Deserialize)]
+Deserialize in serde_derive - Rust

Derive Macro serde_derive::Deserialize

source ·
#[derive(Deserialize)]
 {
     // Attributes available to this derive:
     #[serde]
diff --git a/serde_derive/derive.Serialize.html b/serde_derive/derive.Serialize.html
index f9bd56884029..e9264d480b7c 100644
--- a/serde_derive/derive.Serialize.html
+++ b/serde_derive/derive.Serialize.html
@@ -1,4 +1,4 @@
-Serialize in serde_derive - Rust

Derive Macro serde_derive::Serialize

source ·
#[derive(Serialize)]
+Serialize in serde_derive - Rust

Derive Macro serde_derive::Serialize

source ·
#[derive(Serialize)]
 {
     // Attributes available to this derive:
     #[serde]
diff --git a/serde_derive/index.html b/serde_derive/index.html
index 9f729fb260d7..65f94055d219 100644
--- a/serde_derive/index.html
+++ b/serde_derive/index.html
@@ -1,4 +1,4 @@
-serde_derive - Rust

Crate serde_derive

source ·
Expand description

This crate provides Serde’s two derive macros.

+serde_derive - Rust

Crate serde_derive

source ·
Expand description

This crate provides Serde’s two derive macros.

#[derive(Serialize, Deserialize)]

Please refer to https://serde.rs/derive.html for how to set this up.

diff --git a/serde_json/enum.Value.html b/serde_json/enum.Value.html index 302eabc287d5..d5ec14c62986 100644 --- a/serde_json/enum.Value.html +++ b/serde_json/enum.Value.html @@ -1,4 +1,4 @@ -Value in serde_json - Rust

Enum serde_json::Value

source ·
pub enum Value {
+Value in serde_json - Rust

Enum serde_json::Value

source ·
pub enum Value {
     Null,
     Bool(bool),
     Number(Number),
@@ -322,7 +322,7 @@ 
Example of Use
assert_eq!(v, json!({ "x": null }));

Trait Implementations§

source§

impl Clone for Value

source§

fn clone(&self) -> Value

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 Value

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Value

The default value is Value::Null.

This is useful for handling omitted Value fields when deserializing.

-

Examples

+

Examples

use serde_json::Value;
 
 #[derive(Deserialize)]
@@ -338,81 +338,81 @@ 

Examples

assert_eq!(s.level, 42); assert_eq!(s.extras, Value::Null);
source§

fn default() -> Value

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Value

source§

fn deserialize<D>(deserializer: D) -> Result<Value, D::Error>where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de> Deserializer<'de> for &'de Value

§

type Error = Error

The error type that can be returned if some error occurs during -deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de> Deserializer<'de> for &'de Value

§

type Error = Error

The error type that can be returned if some error occurs during +deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based -on what data type is in the input. Read more
source§

fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i8 value.
source§

fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i16 value.
source§

fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i32 value.
source§

fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i64 value.
source§

fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i128 value. Read more
source§

fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u8 value.
source§

fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u16 value.
source§

fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u32 value.
source§

fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u64 value.
source§

fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an u128 value. Read more
source§

fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a f32 value.
source§

fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a f64 value.
source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an optional value. Read more
source§

fn deserialize_enum<V>( +on what data type is in the input. Read more

source§

fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i8 value.
source§

fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i16 value.
source§

fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i32 value.
source§

fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i64 value.
source§

fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i128 value. Read more
source§

fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u8 value.
source§

fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u16 value.
source§

fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u32 value.
source§

fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u64 value.
source§

fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an u128 value. Read more
source§

fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a f32 value.
source§

fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a f64 value.
source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an optional value. Read more
source§

fn deserialize_enum<V>( self, _name: &str, _variants: &'static [&'static str], visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting an enum value with a -particular name and possible variants.
source§

fn deserialize_newtype_struct<V>( +particular name and possible variants.

source§

fn deserialize_newtype_struct<V>( self, name: &'static str, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a newtype struct with a -particular name.
source§

fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a bool value.
source§

fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a char value.
source§

fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Error>where +particular name.

source§

fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a bool value.
source§

fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a char value.
source§

fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a string value and does not benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Error>where +Deserializer. Read more

source§

fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a string value and would benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Error>where +Deserializer. Read more

source§

fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a byte array and does not benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Error>where +Deserializer. Read more

source§

fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a byte array and would benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit value.
source§

fn deserialize_unit_struct<V>( +Deserializer. Read more

source§

fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit value.
source§

fn deserialize_unit_struct<V>( self, _name: &'static str, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit struct with a -particular name.
source§

fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values.
source§

fn deserialize_tuple<V>( +particular name.

source§

fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values.
source§

fn deserialize_tuple<V>( self, _len: usize, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values and -knows how many values there are without looking at the serialized data.
source§

fn deserialize_tuple_struct<V>( +knows how many values there are without looking at the serialized data.

source§

fn deserialize_tuple_struct<V>( self, _name: &'static str, _len: usize, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a tuple struct with a -particular name and number of fields.
source§

fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a map of key-value pairs.
source§

fn deserialize_struct<V>( +particular name and number of fields.

source§

fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a map of key-value pairs.
source§

fn deserialize_struct<V>( self, _name: &'static str, _fields: &'static [&'static str], visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a struct with a particular -name and fields.
source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Error>where +name and fields.

source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting the name of a struct -field or the discriminant of an enum variant.
source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Error>where +field or the discriminant of an enum variant.

source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to deserialize their human-readable form. Read more
source§

impl<'de> Deserializer<'de> for Value

§

type Error = Error

The error type that can be returned if some error occurs during @@ -512,26 +512,26 @@

Examples

let pretty = format!("{:#}", json); assert_eq!(pretty, "{\n \"city\": \"London\",\n \"street\": \"10 Downing Street\"\n}");
-
source§

impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value

source§

fn from(f: &'a [T]) -> Self

Convert a slice to Value

-
Examples
+
source§

impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value

source§

fn from(f: &'a [T]) -> Self

Convert a slice to Value

+
Examples
use serde_json::Value;
 
 let v: &[&str] = &["lorem", "ipsum", "dolor"];
 let x: Value = v.into();
-
source§

impl<'a> From<&'a str> for Value

source§

fn from(f: &str) -> Self

Convert string slice to Value

-
Examples
+
source§

impl<'a> From<&'a str> for Value

source§

fn from(f: &str) -> Self

Convert string slice to Value

+
Examples
use serde_json::Value;
 
 let s: &str = "lorem";
 let x: Value = s.into();
-
source§

impl From<()> for Value

source§

fn from((): ()) -> Self

Convert () to Value

-
Examples
+
source§

impl From<()> for Value

source§

fn from((): ()) -> Self

Convert () to Value

+
Examples
use serde_json::Value;
 
 let u = ();
 let x: Value = u.into();
-
source§

impl<'a> From<Cow<'a, str>> for Value

source§

fn from(f: Cow<'a, str>) -> Self

Convert copy-on-write string to Value

-
Examples
+
source§

impl<'a> From<Cow<'a, str>> for Value

source§

fn from(f: Cow<'a, str>) -> Self

Convert copy-on-write string to Value

+
Examples
use serde_json::Value;
 use std::borrow::Cow;
 
@@ -543,58 +543,58 @@ 
Examples
let s: Cow<str> = Cow::Owned("lorem".to_string()); let x: Value = s.into();
-
source§

impl From<Map<String, Value>> for Value

source§

fn from(f: Map<String, Value>) -> Self

Convert map (with string keys) to Value

-
Examples
+
source§

impl From<Map<String, Value>> for Value

source§

fn from(f: Map<String, Value>) -> Self

Convert map (with string keys) to Value

+
Examples
use serde_json::{Map, Value};
 
 let mut m = Map::new();
 m.insert("Lorem".to_string(), "ipsum".into());
 let x: Value = m.into();
-
source§

impl From<Number> for Value

source§

fn from(f: Number) -> Self

Convert Number to Value

-
Examples
+
source§

impl From<Number> for Value

source§

fn from(f: Number) -> Self

Convert Number to Value

+
Examples
use serde_json::{Number, Value};
 
 let n = Number::from(7);
 let x: Value = n.into();
source§

impl<T> From<Option<T>> for Valuewhere - T: Into<Value>,

source§

fn from(opt: Option<T>) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(f: String) -> Self

Convert String to Value

-
Examples
+ T: Into<Value>,
source§

fn from(opt: Option<T>) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(f: String) -> Self

Convert String to Value

+
Examples
use serde_json::Value;
 
 let s: String = "lorem".to_string();
 let x: Value = s.into();
-
source§

impl<T: Into<Value>> From<Vec<T, Global>> for Value

source§

fn from(f: Vec<T>) -> Self

Convert a Vec to Value

-
Examples
+
source§

impl<T: Into<Value>> From<Vec<T, Global>> for Value

source§

fn from(f: Vec<T>) -> Self

Convert a Vec to Value

+
Examples
use serde_json::Value;
 
 let v = vec!["lorem", "ipsum", "dolor"];
 let x: Value = v.into();
-
source§

impl From<bool> for Value

source§

fn from(f: bool) -> Self

Convert boolean to Value

-
Examples
+
source§

impl From<bool> for Value

source§

fn from(f: bool) -> Self

Convert boolean to Value

+
Examples
use serde_json::Value;
 
 let b = false;
 let x: Value = b.into();
-
source§

impl From<f32> for Value

source§

fn from(f: f32) -> Self

Convert 32-bit floating point number to Value

-
Examples
+
source§

impl From<f32> for Value

source§

fn from(f: f32) -> Self

Convert 32-bit floating point number to Value

+
Examples
use serde_json::Value;
 
 let f: f32 = 13.37;
 let x: Value = f.into();
-
source§

impl From<f64> for Value

source§

fn from(f: f64) -> Self

Convert 64-bit floating point number to Value

-
Examples
+
source§

impl From<f64> for Value

source§

fn from(f: f64) -> Self

Convert 64-bit floating point number to Value

+
Examples
use serde_json::Value;
 
 let f: f64 = 13.37;
 let x: Value = f.into();
-
source§

impl From<i16> for Value

source§

fn from(n: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(n: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(n: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(n: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Value

source§

fn from(n: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(n: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(n: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(n: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(n: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Value

source§

fn from(n: usize) -> Self

Converts to this type from the input type.
source§

impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value

source§

fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self

Convert an iteratable type to a Value

-
Examples
+
source§

impl From<i16> for Value

source§

fn from(n: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(n: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(n: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(n: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Value

source§

fn from(n: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(n: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(n: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(n: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(n: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Value

source§

fn from(n: usize) -> Self

Converts to this type from the input type.
source§

impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value

source§

fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self

Convert an iteratable type to a Value

+
Examples
use serde_json::Value;
 
 let v: Vec<_> = vec![("lorem", 40), ("ipsum", 2)];
 let x: Value = v.into_iter().collect();
-
source§

impl<T: Into<Value>> FromIterator<T> for Value

source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Convert an iteratable type to a Value

-
Examples
+
source§

impl<T: Into<Value>> FromIterator<T> for Value

source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Convert an iteratable type to a Value

+
Examples
use serde_json::Value;
 
 let v = std::iter::repeat(42).take(5);
@@ -618,7 +618,7 @@ 
Examples
in the map or the given index is not within the bounds of the array.

For retrieving deeply nested values, you should have a look at the Value::pointer method.

-
Examples
+
Examples
let data = json!({
     "x": {
         "y": ["z", "zz"]
@@ -640,7 +640,7 @@ 
Examples
treated like an empty object. If the key is not already present in the object, it will be inserted with a value of null. Indexing into a value that is neither an object nor null will panic.

-
Examples
+
Examples
let mut data = json!({ "x": 0 });
 
 // replace an existing key
@@ -656,124 +656,124 @@ 
Examples
data["a"]["b"]["c"]["d"] = json!(true); println!("{}", data);
-
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'a> PartialEq<&'a str> for Value

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for Value

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<Value> for &'a str

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for String

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for Value

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for bool

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for f32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +
source§

impl<'de> IntoDeserializer<'de, Error> for &'de Value

§

type Deserializer = &'de Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'a> PartialEq<&'a str> for Value

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for Value

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for f64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<Value> for &'a str

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for String

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for Value

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for bool

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i16

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for f32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for f64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i16

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i8

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for isize

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for str

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u16

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i8

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for isize

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for str

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u16

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u8

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for usize

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<bool> for &'a Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<bool> for &'a mut Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u8

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for usize

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<bool> for &'a Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<bool> for &'a mut Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f32> for &'a Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f32> for &'a mut Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f32> for &'a Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f32> for &'a mut Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f64> for &'a Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f64> for &'a mut Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f64> for &'a Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f64> for &'a mut Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i16> for &'a Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i16> for &'a Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i16> for &'a mut Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i32> for &'a Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i32> for &'a mut Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i64> for &'a Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i16> for &'a mut Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i64> for &'a mut Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i8> for &'a Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i8> for &'a mut Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<isize> for &'a Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i32> for &'a Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i32> for &'a mut Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<isize> for &'a mut Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<isize> for Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i64> for &'a Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i64> for &'a mut Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i8> for &'a Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i8> for &'a mut Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<isize> for &'a Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<isize> for &'a mut Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<isize> for Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for Value

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u16> for &'a Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u16> for &'a mut Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for Value

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u16> for &'a Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u16> for &'a mut Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u32> for &'a Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u32> for &'a Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u32> for &'a mut Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u32> for &'a mut Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u64> for &'a Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u64> for &'a mut Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u8> for &'a Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u8> for &'a mut Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<usize> for &'a Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<usize> for &'a mut Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u64> for &'a Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u64> for &'a mut Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u8> for &'a Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u8> for &'a mut Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<usize> for &'a Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<usize> for &'a mut Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Value

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 Value

source§

impl StructuralEq for Value

source§

impl StructuralPartialEq for Value

Auto Trait Implementations§

§

impl RefUnwindSafe for Value

§

impl Send for Value

§

impl Sync for Value

§

impl Unpin for Value

§

impl UnwindSafe for Value

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/serde_json/error/struct.Error.html b/serde_json/error/struct.Error.html index e66a0cebe985..2b7f6e74790f 100644 --- a/serde_json/error/struct.Error.html +++ b/serde_json/error/struct.Error.html @@ -1,4 +1,4 @@ -Error in serde_json::error - Rust

Struct serde_json::error::Error

source ·
pub struct Error { /* private fields */ }
Expand description

This type represents all possible errors that can occur when serializing or +Error in serde_json::error - Rust

Struct serde_json::error::Error

source ·
pub struct Error { /* private fields */ }
Expand description

This type represents all possible errors that can occur when serializing or deserializing JSON data.

Implementations§

source§

impl Error

source

pub fn line(&self) -> usize

One-based line number at which the error was detected.

Characters in the first line of the input (before the first newline @@ -63,8 +63,8 @@

Example
} }; }
-

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Error

Used when a Serialize implementation encounters any error -while serializing a type. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Error

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was +

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Error

Used when a Serialize implementation encounters any error +while serializing a type. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Error

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, exp: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
source§

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize enum type received a variant with an @@ -96,7 +96,7 @@
Example
} } }
-

source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

source§

impl<'de> IntoDeserializer<'de, Error> for &'de Value

§

type Deserializer = &'de Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/serde_json/index.html b/serde_json/index.html index f3daa77ec054..a44368af02c1 100644 --- a/serde_json/index.html +++ b/serde_json/index.html @@ -1,4 +1,4 @@ -serde_json - Rust

Crate serde_json

source ·
Expand description

Serde JSON

+serde_json - Rust

Crate serde_json

source ·
Expand description

Serde JSON

JSON is a ubiquitous open-standard format that uses human-readable text to transmit data objects consisting of key-value pairs.

{
diff --git a/serde_json/map/struct.Map.html b/serde_json/map/struct.Map.html
index 869a35f96d66..99af41fd3aba 100644
--- a/serde_json/map/struct.Map.html
+++ b/serde_json/map/struct.Map.html
@@ -80,7 +80,7 @@ 
Examples
present in the map.

map["key"] = json!("value");
-
source§

fn index_mut(&mut self, index: &Q) -> &mut Value

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'a> IntoIterator for &'a Map<String, Value>

§

type Item = (&'a String, &'a Value)

The type of the elements being iterated over.
§

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a mut Map<String, Value>

§

type Item = (&'a String, &'a mut Value)

The type of the elements being iterated over.
§

type IntoIter = IterMut<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for Map<String, Value>

§

type Item = (String, Value)

The type of the elements being iterated over.
§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<Map<String, Value>> for Map<String, Value>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +
source§

fn index_mut(&mut self, index: &Q) -> &mut Value

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'a> IntoIterator for &'a Map<String, Value>

§

type Item = (&'a String, &'a Value)

The type of the elements being iterated over.
§

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a mut Map<String, Value>

§

type Item = (&'a String, &'a mut Value)

The type of the elements being iterated over.
§

type IntoIter = IterMut<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for Map<String, Value>

§

type Item = (String, Value)

The type of the elements being iterated over.
§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<Map<String, Value>> for Map<String, Value>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Map<String, Value>

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 Map<String, Value>

Auto Trait Implementations§

§

impl<K, V> RefUnwindSafe for Map<K, V>where diff --git a/serde_json/struct.Error.html b/serde_json/struct.Error.html index 6c87ea5e720e..b4f11bddfed9 100644 --- a/serde_json/struct.Error.html +++ b/serde_json/struct.Error.html @@ -1,4 +1,4 @@ -Error in serde_json - Rust

Struct serde_json::Error

source ·
pub struct Error { /* private fields */ }
Expand description

This type represents all possible errors that can occur when serializing or +Error in serde_json - Rust

Struct serde_json::Error

source ·
pub struct Error { /* private fields */ }
Expand description

This type represents all possible errors that can occur when serializing or deserializing JSON data.

Implementations§

source§

impl Error

source

pub fn line(&self) -> usize

One-based line number at which the error was detected.

Characters in the first line of the input (before the first newline @@ -63,8 +63,8 @@

Example
} }; }
-

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Error

Used when a Serialize implementation encounters any error -while serializing a type. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Error

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was +

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Error

Used when a Serialize implementation encounters any error +while serializing a type. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Error

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, exp: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
source§

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize enum type received a variant with an @@ -96,7 +96,7 @@
Example
} } }
-

source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere +

source§

impl<'de> IntoDeserializer<'de, Error> for &'de Value

§

type Deserializer = &'de Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/serde_json/struct.Map.html b/serde_json/struct.Map.html index 258bc98756d9..9c28c2dae4dd 100644 --- a/serde_json/struct.Map.html +++ b/serde_json/struct.Map.html @@ -80,7 +80,7 @@
Examples
present in the map.

map["key"] = json!("value");
-
source§

fn index_mut(&mut self, index: &Q) -> &mut Value

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'a> IntoIterator for &'a Map<String, Value>

§

type Item = (&'a String, &'a Value)

The type of the elements being iterated over.
§

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a mut Map<String, Value>

§

type Item = (&'a String, &'a mut Value)

The type of the elements being iterated over.
§

type IntoIter = IterMut<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for Map<String, Value>

§

type Item = (String, Value)

The type of the elements being iterated over.
§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<Map<String, Value>> for Map<String, Value>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +
source§

fn index_mut(&mut self, index: &Q) -> &mut Value

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'a> IntoIterator for &'a Map<String, Value>

§

type Item = (&'a String, &'a Value)

The type of the elements being iterated over.
§

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoIterator for &'a mut Map<String, Value>

§

type Item = (&'a String, &'a mut Value)

The type of the elements being iterated over.
§

type IntoIter = IterMut<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for Map<String, Value>

§

type Item = (String, Value)

The type of the elements being iterated over.
§

type IntoIter = IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl PartialEq<Map<String, Value>> for Map<String, Value>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Map<String, Value>

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 Map<String, Value>

Auto Trait Implementations§

§

impl<K, V> RefUnwindSafe for Map<K, V>where diff --git a/serde_json/struct.Number.html b/serde_json/struct.Number.html index f7c279ce43a3..d28c0d03e4fb 100644 --- a/serde_json/struct.Number.html +++ b/serde_json/struct.Number.html @@ -225,13 +225,13 @@ field or the discriminant of an enum variant.

source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to -deserialize their human-readable form. Read more
source§

impl Display for Number

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Number> for Value

source§

fn from(f: Number) -> Self

Convert Number to Value

+deserialize their human-readable form. Read more
source§

impl Display for Number

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Number> for Value

source§

fn from(f: Number) -> Self

Convert Number to Value

Examples
use serde_json::{Number, Value};
 
 let n = Number::from(7);
 let x: Value = n.into();
-
source§

impl From<i16> for Number

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Number

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Number

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Number

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Number

source§

fn from(i: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Number

source§

fn from(u: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Number

source§

fn from(u: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Number

source§

fn from(u: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Number

source§

fn from(u: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Number

source§

fn from(u: usize) -> Self

Converts to this type from the input type.
source§

impl FromStr for Number

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for Number

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

source§

impl From<i16> for Number

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Number

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Number

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Number

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Number

source§

fn from(i: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Number

source§

fn from(u: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Number

source§

fn from(u: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Number

source§

fn from(u: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Number

source§

fn from(u: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Number

source§

fn from(u: usize) -> Self

Converts to this type from the input type.
source§

impl FromStr for Number

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for Number

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<Number> for Number

source§

fn eq(&self, other: &Number) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always diff --git a/serde_json/value/enum.Value.html b/serde_json/value/enum.Value.html index 4043f027fd9b..540840ec00bb 100644 --- a/serde_json/value/enum.Value.html +++ b/serde_json/value/enum.Value.html @@ -1,4 +1,4 @@ -Value in serde_json::value - Rust

Enum serde_json::value::Value

source ·
pub enum Value {
+Value in serde_json::value - Rust

Enum serde_json::value::Value

source ·
pub enum Value {
     Null,
     Bool(bool),
     Number(Number),
@@ -322,7 +322,7 @@ 
Example of Use
assert_eq!(v, json!({ "x": null }));

Trait Implementations§

source§

impl Clone for Value

source§

fn clone(&self) -> Value

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 Value

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Value

The default value is Value::Null.

This is useful for handling omitted Value fields when deserializing.

-

Examples

+

Examples

use serde_json::Value;
 
 #[derive(Deserialize)]
@@ -338,81 +338,81 @@ 

Examples

assert_eq!(s.level, 42); assert_eq!(s.extras, Value::Null);
source§

fn default() -> Value

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Value

source§

fn deserialize<D>(deserializer: D) -> Result<Value, D::Error>where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de> Deserializer<'de> for &'de Value

§

type Error = Error

The error type that can be returned if some error occurs during -deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de> Deserializer<'de> for &'de Value

§

type Error = Error

The error type that can be returned if some error occurs during +deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based -on what data type is in the input. Read more
source§

fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i8 value.
source§

fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i16 value.
source§

fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i32 value.
source§

fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i64 value.
source§

fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i128 value. Read more
source§

fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u8 value.
source§

fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u16 value.
source§

fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u32 value.
source§

fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u64 value.
source§

fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an u128 value. Read more
source§

fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a f32 value.
source§

fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a f64 value.
source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an optional value. Read more
source§

fn deserialize_enum<V>( +on what data type is in the input. Read more

source§

fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i8 value.
source§

fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i16 value.
source§

fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i32 value.
source§

fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i64 value.
source§

fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i128 value. Read more
source§

fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u8 value.
source§

fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u16 value.
source§

fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u32 value.
source§

fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u64 value.
source§

fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an u128 value. Read more
source§

fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a f32 value.
source§

fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a f64 value.
source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an optional value. Read more
source§

fn deserialize_enum<V>( self, _name: &str, _variants: &'static [&'static str], visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting an enum value with a -particular name and possible variants.
source§

fn deserialize_newtype_struct<V>( +particular name and possible variants.

source§

fn deserialize_newtype_struct<V>( self, name: &'static str, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a newtype struct with a -particular name.
source§

fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a bool value.
source§

fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a char value.
source§

fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Error>where +particular name.

source§

fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a bool value.
source§

fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a char value.
source§

fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a string value and does not benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Error>where +Deserializer. Read more

source§

fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a string value and would benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Error>where +Deserializer. Read more

source§

fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a byte array and does not benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Error>where +Deserializer. Read more

source§

fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a byte array and would benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit value.
source§

fn deserialize_unit_struct<V>( +Deserializer. Read more

source§

fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit value.
source§

fn deserialize_unit_struct<V>( self, _name: &'static str, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit struct with a -particular name.
source§

fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values.
source§

fn deserialize_tuple<V>( +particular name.

source§

fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values.
source§

fn deserialize_tuple<V>( self, _len: usize, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values and -knows how many values there are without looking at the serialized data.
source§

fn deserialize_tuple_struct<V>( +knows how many values there are without looking at the serialized data.

source§

fn deserialize_tuple_struct<V>( self, _name: &'static str, _len: usize, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a tuple struct with a -particular name and number of fields.
source§

fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a map of key-value pairs.
source§

fn deserialize_struct<V>( +particular name and number of fields.

source§

fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a map of key-value pairs.
source§

fn deserialize_struct<V>( self, _name: &'static str, _fields: &'static [&'static str], visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a struct with a particular -name and fields.
source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Error>where +name and fields.

source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting the name of a struct -field or the discriminant of an enum variant.
source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Error>where +field or the discriminant of an enum variant.

source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to deserialize their human-readable form. Read more
source§

impl<'de> Deserializer<'de> for Value

§

type Error = Error

The error type that can be returned if some error occurs during @@ -512,26 +512,26 @@

Examples

let pretty = format!("{:#}", json); assert_eq!(pretty, "{\n \"city\": \"London\",\n \"street\": \"10 Downing Street\"\n}");
-
source§

impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value

source§

fn from(f: &'a [T]) -> Self

Convert a slice to Value

-
Examples
+
source§

impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value

source§

fn from(f: &'a [T]) -> Self

Convert a slice to Value

+
Examples
use serde_json::Value;
 
 let v: &[&str] = &["lorem", "ipsum", "dolor"];
 let x: Value = v.into();
-
source§

impl<'a> From<&'a str> for Value

source§

fn from(f: &str) -> Self

Convert string slice to Value

-
Examples
+
source§

impl<'a> From<&'a str> for Value

source§

fn from(f: &str) -> Self

Convert string slice to Value

+
Examples
use serde_json::Value;
 
 let s: &str = "lorem";
 let x: Value = s.into();
-
source§

impl From<()> for Value

source§

fn from((): ()) -> Self

Convert () to Value

-
Examples
+
source§

impl From<()> for Value

source§

fn from((): ()) -> Self

Convert () to Value

+
Examples
use serde_json::Value;
 
 let u = ();
 let x: Value = u.into();
-
source§

impl<'a> From<Cow<'a, str>> for Value

source§

fn from(f: Cow<'a, str>) -> Self

Convert copy-on-write string to Value

-
Examples
+
source§

impl<'a> From<Cow<'a, str>> for Value

source§

fn from(f: Cow<'a, str>) -> Self

Convert copy-on-write string to Value

+
Examples
use serde_json::Value;
 use std::borrow::Cow;
 
@@ -543,58 +543,58 @@ 
Examples
let s: Cow<str> = Cow::Owned("lorem".to_string()); let x: Value = s.into();
-
source§

impl From<Map<String, Value>> for Value

source§

fn from(f: Map<String, Value>) -> Self

Convert map (with string keys) to Value

-
Examples
+
source§

impl From<Map<String, Value>> for Value

source§

fn from(f: Map<String, Value>) -> Self

Convert map (with string keys) to Value

+
Examples
use serde_json::{Map, Value};
 
 let mut m = Map::new();
 m.insert("Lorem".to_string(), "ipsum".into());
 let x: Value = m.into();
-
source§

impl From<Number> for Value

source§

fn from(f: Number) -> Self

Convert Number to Value

-
Examples
+
source§

impl From<Number> for Value

source§

fn from(f: Number) -> Self

Convert Number to Value

+
Examples
use serde_json::{Number, Value};
 
 let n = Number::from(7);
 let x: Value = n.into();
source§

impl<T> From<Option<T>> for Valuewhere - T: Into<Value>,

source§

fn from(opt: Option<T>) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(f: String) -> Self

Convert String to Value

-
Examples
+ T: Into<Value>,
source§

fn from(opt: Option<T>) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(f: String) -> Self

Convert String to Value

+
Examples
use serde_json::Value;
 
 let s: String = "lorem".to_string();
 let x: Value = s.into();
-
source§

impl<T: Into<Value>> From<Vec<T, Global>> for Value

source§

fn from(f: Vec<T>) -> Self

Convert a Vec to Value

-
Examples
+
source§

impl<T: Into<Value>> From<Vec<T, Global>> for Value

source§

fn from(f: Vec<T>) -> Self

Convert a Vec to Value

+
Examples
use serde_json::Value;
 
 let v = vec!["lorem", "ipsum", "dolor"];
 let x: Value = v.into();
-
source§

impl From<bool> for Value

source§

fn from(f: bool) -> Self

Convert boolean to Value

-
Examples
+
source§

impl From<bool> for Value

source§

fn from(f: bool) -> Self

Convert boolean to Value

+
Examples
use serde_json::Value;
 
 let b = false;
 let x: Value = b.into();
-
source§

impl From<f32> for Value

source§

fn from(f: f32) -> Self

Convert 32-bit floating point number to Value

-
Examples
+
source§

impl From<f32> for Value

source§

fn from(f: f32) -> Self

Convert 32-bit floating point number to Value

+
Examples
use serde_json::Value;
 
 let f: f32 = 13.37;
 let x: Value = f.into();
-
source§

impl From<f64> for Value

source§

fn from(f: f64) -> Self

Convert 64-bit floating point number to Value

-
Examples
+
source§

impl From<f64> for Value

source§

fn from(f: f64) -> Self

Convert 64-bit floating point number to Value

+
Examples
use serde_json::Value;
 
 let f: f64 = 13.37;
 let x: Value = f.into();
-
source§

impl From<i16> for Value

source§

fn from(n: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(n: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(n: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(n: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Value

source§

fn from(n: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(n: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(n: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(n: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(n: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Value

source§

fn from(n: usize) -> Self

Converts to this type from the input type.
source§

impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value

source§

fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self

Convert an iteratable type to a Value

-
Examples
+
source§

impl From<i16> for Value

source§

fn from(n: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(n: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(n: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(n: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Value

source§

fn from(n: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(n: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(n: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(n: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(n: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Value

source§

fn from(n: usize) -> Self

Converts to this type from the input type.
source§

impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value

source§

fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self

Convert an iteratable type to a Value

+
Examples
use serde_json::Value;
 
 let v: Vec<_> = vec![("lorem", 40), ("ipsum", 2)];
 let x: Value = v.into_iter().collect();
-
source§

impl<T: Into<Value>> FromIterator<T> for Value

source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Convert an iteratable type to a Value

-
Examples
+
source§

impl<T: Into<Value>> FromIterator<T> for Value

source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Convert an iteratable type to a Value

+
Examples
use serde_json::Value;
 
 let v = std::iter::repeat(42).take(5);
@@ -618,7 +618,7 @@ 
Examples
in the map or the given index is not within the bounds of the array.

For retrieving deeply nested values, you should have a look at the Value::pointer method.

-
Examples
+
Examples
let data = json!({
     "x": {
         "y": ["z", "zz"]
@@ -640,7 +640,7 @@ 
Examples
treated like an empty object. If the key is not already present in the object, it will be inserted with a value of null. Indexing into a value that is neither an object nor null will panic.

-
Examples
+
Examples
let mut data = json!({ "x": 0 });
 
 // replace an existing key
@@ -656,124 +656,124 @@ 
Examples
data["a"]["b"]["c"]["d"] = json!(true); println!("{}", data);
-
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'a> PartialEq<&'a str> for Value

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for Value

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<Value> for &'a str

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for String

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for Value

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for bool

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for f32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +
source§

impl<'de> IntoDeserializer<'de, Error> for &'de Value

§

type Deserializer = &'de Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'a> PartialEq<&'a str> for Value

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for Value

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for f64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<Value> for &'a str

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for String

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for Value

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for bool

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i16

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for f32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for f64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i16

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i8

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for isize

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for str

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u16

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for i8

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for isize

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for str

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u16

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u32

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u8

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for usize

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<bool> for &'a Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<bool> for &'a mut Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u64

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for u8

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for usize

source§

fn eq(&self, other: &Value) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<bool> for &'a Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<bool> for &'a mut Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f32> for &'a Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f32> for &'a mut Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f32> for &'a Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f32> for &'a mut Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f64> for &'a Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f64> for &'a mut Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f64> for &'a Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<f64> for &'a mut Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i16> for &'a Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i16> for &'a Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i16> for &'a mut Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i32> for &'a Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i32> for &'a mut Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i64> for &'a Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i16> for &'a mut Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i64> for &'a mut Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i8> for &'a Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i8> for &'a mut Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<isize> for &'a Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i32> for &'a Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i32> for &'a mut Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<isize> for &'a mut Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<isize> for Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i64> for &'a Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i64> for &'a mut Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i8> for &'a Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<i8> for &'a mut Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<isize> for &'a Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<isize> for &'a mut Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<isize> for Value

source§

fn eq(&self, other: &isize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for Value

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u16> for &'a Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u16> for &'a mut Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for Value

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u16> for &'a Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u16> for &'a mut Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u32> for &'a Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u32> for &'a Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u32> for &'a mut Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u32> for &'a mut Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u64> for &'a Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u64> for &'a mut Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u8> for &'a Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u8> for &'a mut Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<usize> for &'a Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<usize> for &'a mut Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u64> for &'a Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u64> for &'a mut Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u8> for &'a Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<u8> for &'a mut Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<usize> for &'a Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialEq<usize> for &'a mut Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Value

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 Value

source§

impl StructuralEq for Value

source§

impl StructuralPartialEq for Value

Auto Trait Implementations§

§

impl RefUnwindSafe for Value

§

impl Send for Value

§

impl Sync for Value

§

impl Unpin for Value

§

impl UnwindSafe for Value

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/serde_json/value/struct.Number.html b/serde_json/value/struct.Number.html index b07363b94dc5..18637cc88ab9 100644 --- a/serde_json/value/struct.Number.html +++ b/serde_json/value/struct.Number.html @@ -225,13 +225,13 @@ field or the discriminant of an enum variant.

source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to -deserialize their human-readable form. Read more
source§

impl Display for Number

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Number> for Value

source§

fn from(f: Number) -> Self

Convert Number to Value

+deserialize their human-readable form. Read more
source§

impl Display for Number

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Number> for Value

source§

fn from(f: Number) -> Self

Convert Number to Value

Examples
use serde_json::{Number, Value};
 
 let n = Number::from(7);
 let x: Value = n.into();
-
source§

impl From<i16> for Number

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Number

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Number

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Number

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Number

source§

fn from(i: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Number

source§

fn from(u: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Number

source§

fn from(u: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Number

source§

fn from(u: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Number

source§

fn from(u: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Number

source§

fn from(u: usize) -> Self

Converts to this type from the input type.
source§

impl FromStr for Number

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for Number

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

source§

impl From<i16> for Number

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Number

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Number

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Number

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for Number

source§

fn from(i: isize) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Number

source§

fn from(u: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Number

source§

fn from(u: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Number

source§

fn from(u: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Number

source§

fn from(u: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Number

source§

fn from(u: usize) -> Self

Converts to this type from the input type.
source§

impl FromStr for Number

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for Number

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<Number> for Number

source§

fn eq(&self, other: &Number) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always diff --git a/serde_json/value/struct.RawValue.html b/serde_json/value/struct.RawValue.html index 712983cf4303..1cd5e5e363e8 100644 --- a/serde_json/value/struct.RawValue.html +++ b/serde_json/value/struct.RawValue.html @@ -106,8 +106,8 @@
Example
process(r#" {"code": 200, "payload": {}} "#)?; Ok(()) }
-

Trait Implementations§

source§

impl Clone for Box<RawValue>

source§

fn clone(&self) -> Self

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 RawValue

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Box<RawValue>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a RawValue

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<'de> Deserialize<'de> for Box<RawValue>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where +

Trait Implementations§

source§

impl Clone for Box<RawValue>

source§

fn clone(&self) -> Self

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 RawValue

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Box<RawValue>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de: 'a, 'a> Deserialize<'de> for &'a RawValue

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<'de> Deserialize<'de> for Box<RawValue>

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 RawValue

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Serialize for RawValue

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 ToOwned for RawValue

§

type Owned = Box<RawValue, Global>

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> Self::Owned

Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · source§

fn clone_into(&self, target: &mut Self::Owned)

Uses borrowed data to replace owned data, usually by cloning. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for RawValue

§

impl Send for RawValue

§

impl !Sized for RawValue

§

impl Sync for RawValue

§

impl Unpin for RawValue

§

impl UnwindSafe for RawValue

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/serde_json/value/trait.Index.html b/serde_json/value/trait.Index.html index 3f0ede740359..c2c48d152b82 100644 --- a/serde_json/value/trait.Index.html +++ b/serde_json/value/trait.Index.html @@ -15,5 +15,5 @@

Examples

let first = &inner[0]; assert_eq!(first, 1);

-

Implementations on Foreign Types§

source§

impl Index for str

source§

impl Index for usize

source§

impl Index for String

source§

impl<'a, T> Index for &'a Twhere - T: ?Sized + Index,

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl Index for str

source§

impl<'a, T> Index for &'a Twhere + T: ?Sized + Index,

source§

impl Index for usize

source§

impl Index for String

Implementors§

\ No newline at end of file diff --git a/simd_json/cow/enum.Cow.html b/simd_json/cow/enum.Cow.html index 597ac1f6d5c0..002c6fda9249 100644 --- a/simd_json/cow/enum.Cow.html +++ b/simd_json/cow/enum.Cow.html @@ -181,7 +181,7 @@
Example
Example
assert_eq!(Cow::from("eggplant"), Cow::Borrowed("eggplant"));
1.28.0 · source§

impl<'a> From<CString> for Cow<'a, CStr>

source§

fn from(s: CString) -> Cow<'a, CStr>

Converts a CString into an owned Cow without copying or allocating.

-
source§

impl<'value> From<Cow<'value, str>> for Value

source§

fn from(c: Cow<'value, str>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Cow<'value, str>> for Value<'value>

source§

fn from(c: Cow<'value, str>) -> Self

Converts to this type from the input type.
1.28.0 · source§

impl<'a> From<OsString> for Cow<'a, OsStr>

source§

fn from(s: OsString) -> Cow<'a, OsStr>

Moves the string into a Cow::Owned.

+
source§

impl<'value> From<Cow<'value, str>> for Value

source§

fn from(c: Cow<'value, str>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Cow<'value, str>> for Value<'value>

source§

fn from(c: Cow<'value, str>) -> Self

Converts to this type from the input type.
1.28.0 · source§

impl<'a> From<OsString> for Cow<'a, OsStr>

source§

fn from(s: OsString) -> Cow<'a, OsStr>

Moves the string into a Cow::Owned.

1.6.0 · source§

impl<'a> From<PathBuf> for Cow<'a, Path>

source§

fn from(s: PathBuf) -> Cow<'a, Path>

Creates a clone-on-write pointer from an owned instance of PathBuf.

This conversion does not clone or allocate.

diff --git a/simd_json/enum.KnownKeyError.html b/simd_json/enum.KnownKeyError.html index 29dcd77c7759..ab29dbe29fb7 100644 --- a/simd_json/enum.KnownKeyError.html +++ b/simd_json/enum.KnownKeyError.html @@ -2,7 +2,7 @@ NotAnObject(ValueType), }
Expand description

Error for known keys

Variants§

§

NotAnObject(ValueType)

The target passed wasn’t an object

-

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl PartialEq<Error> for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

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 Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl PartialEq<Error> for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Error

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/simd_json/enum.StaticNode.html b/simd_json/enum.StaticNode.html index e89660689425..f08060e08014 100644 --- a/simd_json/enum.StaticNode.html +++ b/simd_json/enum.StaticNode.html @@ -10,50 +10,50 @@

§

F64(f64)

A floating point value

§

Bool(bool)

A boolean value

§

Null

The null value

-

Trait Implementations§

source§

impl Clone for StaticNode

source§

fn clone(&self) -> StaticNode

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 StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for StaticNode

source§

fn default() -> StaticNode

Returns the “default value” for a type. Read more
source§

impl Display for StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<()> for StaticNode

source§

fn from(_b: ()) -> StaticNode

Converts to this type from the input type.
source§

impl From<StaticNode> for Value

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl<'value> From<StaticNode> for Value<'value>

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl From<bool> for StaticNode

source§

fn from(b: bool) -> StaticNode

Converts to this type from the input type.
source§

impl From<f32> for StaticNode

source§

fn from(f: f32) -> StaticNode

Converts to this type from the input type.
source§

impl From<f64> for StaticNode

source§

fn from(f: f64) -> StaticNode

Converts to this type from the input type.
source§

impl From<i16> for StaticNode

source§

fn from(i: i16) -> StaticNode

Converts to this type from the input type.
source§

impl From<i32> for StaticNode

source§

fn from(i: i32) -> StaticNode

Converts to this type from the input type.
source§

impl From<i64> for StaticNode

source§

fn from(i: i64) -> StaticNode

Converts to this type from the input type.
source§

impl From<i8> for StaticNode

source§

fn from(i: i8) -> StaticNode

Converts to this type from the input type.
source§

impl From<u16> for StaticNode

source§

fn from(i: u16) -> StaticNode

Converts to this type from the input type.
source§

impl From<u32> for StaticNode

source§

fn from(i: u32) -> StaticNode

Converts to this type from the input type.
source§

impl From<u64> for StaticNode

source§

fn from(i: u64) -> StaticNode

Converts to this type from the input type.
source§

impl From<u8> for StaticNode

source§

fn from(i: u8) -> StaticNode

Converts to this type from the input type.
source§

impl From<usize> for StaticNode

source§

fn from(i: usize) -> StaticNode

Converts to this type from the input type.
source§

impl Index<&str> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: &str) -> &<StaticNode as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: usize) -> &<StaticNode as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<&str> for StaticNode

Trait Implementations§

source§

impl Clone for StaticNode

source§

fn clone(&self) -> StaticNode

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 StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for StaticNode

source§

fn default() -> StaticNode

Returns the “default value” for a type. Read more
source§

impl Display for StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<()> for StaticNode

source§

fn from(_b: ()) -> StaticNode

Converts to this type from the input type.
source§

impl From<StaticNode> for Value

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl<'value> From<StaticNode> for Value<'value>

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl From<bool> for StaticNode

source§

fn from(b: bool) -> StaticNode

Converts to this type from the input type.
source§

impl From<f32> for StaticNode

source§

fn from(f: f32) -> StaticNode

Converts to this type from the input type.
source§

impl From<f64> for StaticNode

source§

fn from(f: f64) -> StaticNode

Converts to this type from the input type.
source§

impl From<i16> for StaticNode

source§

fn from(i: i16) -> StaticNode

Converts to this type from the input type.
source§

impl From<i32> for StaticNode

source§

fn from(i: i32) -> StaticNode

Converts to this type from the input type.
source§

impl From<i64> for StaticNode

source§

fn from(i: i64) -> StaticNode

Converts to this type from the input type.
source§

impl From<i8> for StaticNode

source§

fn from(i: i8) -> StaticNode

Converts to this type from the input type.
source§

impl From<u16> for StaticNode

source§

fn from(i: u16) -> StaticNode

Converts to this type from the input type.
source§

impl From<u32> for StaticNode

source§

fn from(i: u32) -> StaticNode

Converts to this type from the input type.
source§

impl From<u64> for StaticNode

source§

fn from(i: u64) -> StaticNode

Converts to this type from the input type.
source§

impl From<u8> for StaticNode

source§

fn from(i: u8) -> StaticNode

Converts to this type from the input type.
source§

impl From<usize> for StaticNode

source§

fn from(i: usize) -> StaticNode

Converts to this type from the input type.
source§

impl Index<&str> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: &str) -> &<StaticNode as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: usize) -> &<StaticNode as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<&str> for StaticNode

source§

fn index_mut( &mut self, _index: &str ) -> &mut <StaticNode as Index<&str>>::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for StaticNode

source§

fn index_mut( &mut self, _index: usize -) -> &mut <StaticNode as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl PartialEq<&str> for StaticNode

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<()> for StaticNode

source§

fn eq(&self, _other: &()) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StaticNode> for StaticNode

source§

fn eq(&self, other: &StaticNode) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for StaticNode

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for StaticNode

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +) -> &mut <StaticNode as Index<usize>>::Output
Performs the mutable indexing (container[index]) operation. Read more
source§

impl PartialEq<&str> for StaticNode

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for StaticNode

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for StaticNode

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i128> for StaticNode

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for StaticNode

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for StaticNode

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for StaticNode

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for StaticNode

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for StaticNode

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<()> for StaticNode

source§

fn eq(&self, _other: &()) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StaticNode> for StaticNode

source§

fn eq(&self, other: &StaticNode) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u128> for StaticNode

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for StaticNode

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for StaticNode

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for StaticNode

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for StaticNode

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for StaticNode

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for StaticNode

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for StaticNode

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for StaticNode

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for StaticNode

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i128> for StaticNode

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for StaticNode

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for StaticNode

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for StaticNode

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for StaticNode

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for StaticNode

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u128> for StaticNode

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for StaticNode

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for StaticNode

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for StaticNode

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for StaticNode

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for StaticNode

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Value for StaticNode

source§

fn is_null(&self) -> bool

returns true if the current value is null
source§

fn is_float(&self) -> bool

returns true if the current value a floatingpoint number
source§

fn is_integer(&self) -> bool

returns true if the current value a integer number
source§

fn is_number(&self) -> bool

returns true if the current value a number either float or integer
source§

fn is_bool(&self) -> bool

returns true if the current value a bool
source§

fn is_i128(&self) -> bool

returns true if the current value can be represented as a i128
source§

fn is_i64(&self) -> bool

returns true if the current value can be represented as a i64
source§

fn is_i32(&self) -> bool

returns true if the current value can be represented as a i32
source§

fn is_i16(&self) -> bool

returns true if the current value can be represented as a i16
source§

fn is_i8(&self) -> bool

returns true if the current value can be represented as a i8
source§

fn is_u128(&self) -> bool

returns true if the current value can be represented as a u128
source§

fn is_u64(&self) -> bool

returns true if the current value can be represented as a u64
source§

fn is_usize(&self) -> bool

returns true if the current value can be represented as a usize
source§

fn is_u32(&self) -> bool

returns true if the current value can be represented as a u32
source§

fn is_u16(&self) -> bool

returns true if the current value can be represented as a u16
source§

fn is_u8(&self) -> bool

returns true if the current value can be represented as a u8
source§

fn is_f64(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_f64_castable(&self) -> bool

returns true if the current value can be cast into a f64
source§

fn is_f32(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_str(&self) -> bool

returns true if the current value can be represented as a str
source§

fn is_char(&self) -> bool

returns true if the current value can be represented as a char
source§

fn is_array(&self) -> bool

returns true if the current value can be represented as an array
source§

fn is_object(&self) -> bool

returns true if the current value can be represented as an object
source§

fn is_custom(&self) -> bool

returns if a type is a custom type
source§

impl ValueAccess for StaticNode

§

type Target = StaticNode

The target for nested lookups
§

type Key = String

The type for Objects
§

type Array = Vec<StaticNode, Global>

The array structure
§

type Object = HashMap<String, StaticNode, RandomState>

The object structure
source§

fn value_type(&self) -> ValueType

Gets the type of the current value
source§

fn as_array(&self) -> Option<&<StaticNode as ValueAccess>::Array>

Tries to represent the value as an array and returns a refference to it
source§

fn as_object( &self ) -> Option<&HashMap<<StaticNode as ValueAccess>::Key, StaticNode, RandomState>>

Tries to represent the value as an object and returns a refference to it
source§

fn as_bool(&self) -> Option<bool>

Tries to represent the value as a bool
source§

fn as_i64(&self) -> Option<i64>

Tries to represent the value as an i64
source§

fn as_u64(&self) -> Option<u64>

Tries to represent the value as an u64
source§

fn as_f64(&self) -> Option<f64>

Tries to represent the value as a f64
source§

fn cast_f64(&self) -> Option<f64>

Casts the current value to a f64 if possible, this will turn integer diff --git a/simd_json/prelude/trait.Object.html b/simd_json/prelude/trait.Object.html index 4adce4f2413c..da92b2e2b7d9 100644 --- a/simd_json/prelude/trait.Object.html +++ b/simd_json/prelude/trait.Object.html @@ -57,61 +57,61 @@ ) -> Box<dyn Iterator<Item = &'i Self::Element> + 'i, Global>

Iterates over the values

source

fn len(&self) -> usize

Number of key/value pairs

Provided Methods§

source

fn is_empty(&self) -> bool

Returns if the array is empty

-

Implementations on Foreign Types§

source§

impl<MapK, MapE, S> Object for HashMap<MapK, MapE, S>where - S: BuildHasher, - MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&<HashMap<MapK, MapE, S> as Object>::Element>where - <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( - &mut self, - k: &Q -) -> Option<&mut <HashMap<MapK, MapE, S> as Object>::Element>where - <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( - &mut self, - k: K, - v: V -) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where - K: Into<<HashMap<MapK, MapE, S> as Object>::Key>, - V: Into<<HashMap<MapK, MapE, S> as Object>::Element>, - <HashMap<MapK, MapE, S> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( - &mut self, - k: &Q -) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where - <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( - &'i self -) -> Box<dyn Iterator<Item = (&'i <HashMap<MapK, MapE, S> as Object>::Key, &'i <HashMap<MapK, MapE, S> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( - &'i self -) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Key> + 'i, Global>

source§

fn values<'i>( - &'i self -) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Element> + 'i, Global>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S> Object for SizedHashMap<MapK, MapE, S, 32>where +

Implementations on Foreign Types§

source§

impl<MapK, MapE, S> Object for SizedHashMap<MapK, MapE, S, 32>where MapK: Hash + Eq, - S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>( + S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>( &self, k: &Q ) -> Option<&<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( &mut self, k: &Q ) -> Option<&mut <SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( &mut self, k: K, v: V ) -> Option<<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where K: Into<<SizedHashMap<MapK, MapE, S, 32> as Object>::Key>, V: Into<<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>, - <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( + <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( &mut self, k: &Q ) -> Option<<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + &'i self +) -> Box<dyn Iterator<Item = (&'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key, &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( + &'i self +) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key> + 'i, Global>

source§

fn values<'i>( + &'i self +) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element> + 'i, Global>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S> Object for HashMap<MapK, MapE, S>where + S: BuildHasher, + MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&<HashMap<MapK, MapE, S> as Object>::Element>where + <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( + &mut self, + k: &Q +) -> Option<&mut <HashMap<MapK, MapE, S> as Object>::Element>where + <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( + &mut self, + k: K, + v: V +) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where + K: Into<<HashMap<MapK, MapE, S> as Object>::Key>, + V: Into<<HashMap<MapK, MapE, S> as Object>::Element>, + <HashMap<MapK, MapE, S> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( + &mut self, + k: &Q +) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where + <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( &'i self -) -> Box<dyn Iterator<Item = (&'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key, &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( +) -> Box<dyn Iterator<Item = (&'i <HashMap<MapK, MapE, S> as Object>::Key, &'i <HashMap<MapK, MapE, S> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( &'i self -) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key> + 'i, Global>

source§

fn values<'i>( +) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Key> + 'i, Global>

source§

fn values<'i>( &'i self -) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element> + 'i, Global>

source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file +) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Element> + 'i, Global>
source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file diff --git a/simd_json/prelude/trait.ValueAccess.html b/simd_json/prelude/trait.ValueAccess.html index 565c75aa273a..67a406670704 100644 --- a/simd_json/prelude/trait.ValueAccess.html +++ b/simd_json/prelude/trait.ValueAccess.html @@ -441,6 +441,6 @@
Errors
Errors

if the requested type doesn’t match the actual type or the value is not an object

Implementations on Foreign Types§

source§

impl<V, E> ValueAccess for Result<V, E>where - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Result<V, E> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Result<V, E> as ValueAccess>::Object>

source§

impl<V> ValueAccess for &Vwhere - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<&V as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<&V as ValueAccess>::Object>

source§

impl<V> ValueAccess for Option<V>where - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Option<V> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Option<V> as ValueAccess>::Object>

Implementors§

source§

impl ValueAccess for StaticNode

source§

impl ValueAccess for simd_json::value::owned::Value

§

type Target = Value

§

type Key = String

§

type Array = Vec<Value, Global>

§

type Object = SizedHashMap<String, Value, NotSoRandomState, 32>

source§

impl<'value> ValueAccess for simd_json::value::borrowed::Value<'value>

§

type Target = Value<'value>

§

type Key = Cow<'value, str>

§

type Array = Vec<Value<'value>, Global>

§

type Object = SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>

\ No newline at end of file + V: ValueAccess,
§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Result<V, E> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Result<V, E> as ValueAccess>::Object>

source§

impl<V> ValueAccess for Option<V>where + V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Option<V> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Option<V> as ValueAccess>::Object>

source§

impl<V> ValueAccess for &Vwhere + V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<&V as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<&V as ValueAccess>::Object>

Implementors§

source§

impl ValueAccess for StaticNode

source§

impl ValueAccess for simd_json::value::owned::Value

§

type Target = Value

§

type Key = String

§

type Array = Vec<Value, Global>

§

type Object = SizedHashMap<String, Value, NotSoRandomState, 32>

source§

impl<'value> ValueAccess for simd_json::value::borrowed::Value<'value>

§

type Target = Value<'value>

§

type Key = Cow<'value, str>

§

type Array = Vec<Value<'value>, Global>

§

type Object = SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>

\ No newline at end of file diff --git a/simd_json/serde/enum.SerdeConversionError.html b/simd_json/serde/enum.SerdeConversionError.html index 980546543cf0..a0ee89f63d55 100644 --- a/simd_json/serde/enum.SerdeConversionError.html +++ b/simd_json/serde/enum.SerdeConversionError.html @@ -6,7 +6,7 @@

Variants§

§

NanOrInfinity

Serde can not reflect NAN or Infinity

§

NumberOutOfBounds

The number is out of the 64 bit bound

§

Oops

Something horrible went wrong, please open a ticket at https://simd-json.rs

-

Trait Implementations§

source§

impl Debug for SerdeConversionError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for SerdeConversionError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for SerdeConversionError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for SerdeConversionError

§

impl Send for SerdeConversionError

§

impl Sync for SerdeConversionError

§

impl Unpin for SerdeConversionError

§

impl UnwindSafe for SerdeConversionError

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Debug for SerdeConversionError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for SerdeConversionError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for SerdeConversionError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for SerdeConversionError

§

impl Send for SerdeConversionError

§

impl Sync for SerdeConversionError

§

impl Unpin for SerdeConversionError

§

impl UnwindSafe for SerdeConversionError

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/simd_json/struct.Error.html b/simd_json/struct.Error.html index efa40cf965c3..e5081cfcaf32 100644 --- a/simd_json/struct.Error.html +++ b/simd_json/struct.Error.html @@ -1,6 +1,7 @@ Error in simd_json - Rust

Struct simd_json::Error

source ·
pub struct Error { /* private fields */ }
Expand description

Parser error

Implementations§

source§

impl Error

source

pub fn generic(t: ErrorType) -> Self

Create a generic error

-

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was +

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Used when a Serialize implementation encounters any error +while serializing a type. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, exp: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
source§

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize enum type received a variant with an @@ -8,8 +9,7 @@ unrecognized name.
source§

fn missing_field(field: &'static str) -> Self

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input.
source§

fn duplicate_field(field: &'static str) -> Self

Raised when a Deserialize struct type received more than one of the -same field.
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Used when a Serialize implementation encounters any error -while serializing a type. Read more
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'de> IntoDeserializer<'de, Error> for Value<'de>

§

type Deserializer = Value<'de>

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl PartialEq<Error> for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used +same field.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'de> IntoDeserializer<'de, Error> for Value<'de>

§

type Deserializer = Value<'de>

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl PartialEq<Error> for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Error

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/simd_json/value/borrowed/enum.Value.html b/simd_json/value/borrowed/enum.Value.html index 3fd9323f8f89..141d2beff9ea 100644 --- a/simd_json/value/borrowed/enum.Value.html +++ b/simd_json/value/borrowed/enum.Value.html @@ -14,164 +14,164 @@ Object keys.

source

pub fn clone_static(&self) -> Value<'static>

Clones the current value and enforces a static lifetime, it works the same as into_static but includes cloning logic

-

Trait Implementations§

source§

impl<'value> Builder<'value> for Value<'value>

source§

fn null() -> Self

Returns anull value
source§

fn array_with_capacity(capacity: usize) -> Self

Returns an empty array with a given capacity
source§

fn object_with_capacity(capacity: usize) -> Self

Returns an empty object with a given capacity
source§

fn array() -> Self

Returns an empty array
source§

fn object() -> Self

Returns an empty object
source§

impl<'value> Clone for Value<'value>

source§

fn clone(&self) -> Value<'value>

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<'value> Debug for Value<'value>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'value> Default for Value<'value>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Value<'de>

source§

fn deserialize<D>(deserializer: D) -> Result<Value<'de>, D::Error>where - D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de> Deserializer<'de> for &'de Value<'de>

§

type Error = Error

The error type that can be returned if some error occurs during -deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where +

Trait Implementations§

source§

impl<'value> Builder<'value> for Value<'value>

source§

fn null() -> Self

Returns anull value
source§

fn array_with_capacity(capacity: usize) -> Self

Returns an empty array with a given capacity
source§

fn object_with_capacity(capacity: usize) -> Self

Returns an empty object with a given capacity
source§

fn array() -> Self

Returns an empty array
source§

fn object() -> Self

Returns an empty object
source§

impl<'value> Clone for Value<'value>

source§

fn clone(&self) -> Value<'value>

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<'value> Debug for Value<'value>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'value> Default for Value<'value>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Value<'de>

source§

fn deserialize<D>(deserializer: D) -> Result<Value<'de>, D::Error>where + D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de> Deserializer<'de> for &'de Value<'de>

§

type Error = Error

The error type that can be returned if some error occurs during +deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based -on what data type is in the input. Read more
source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an optional value. Read more
source§

fn deserialize_newtype_struct<V>( +on what data type is in the input. Read more

source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an optional value. Read more
source§

fn deserialize_newtype_struct<V>( self, _name: &'static str, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a newtype struct with a -particular name.
source§

fn deserialize_struct<V>( +particular name.

source§

fn deserialize_struct<V>( self, _name: &'static str, _fields: &'static [&'static str], visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a struct with a particular -name and fields.
source§

fn deserialize_enum<V>( +name and fields.

source§

fn deserialize_enum<V>( self, _name: &str, _variants: &'static [&'static str], visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting an enum value with a -particular name and possible variants.
source§

fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a bool value.
source§

fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i8 value.
source§

fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i16 value.
source§

fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i32 value.
source§

fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i64 value.
source§

fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i128 value. Read more
source§

fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u8 value.
source§

fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u16 value.
source§

fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u32 value.
source§

fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u64 value.
source§

fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an u128 value. Read more
source§

fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a f32 value.
source§

fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a f64 value.
source§

fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a char value.
source§

fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +particular name and possible variants.

source§

fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a bool value.
source§

fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i8 value.
source§

fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i16 value.
source§

fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i32 value.
source§

fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i64 value.
source§

fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i128 value. Read more
source§

fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u8 value.
source§

fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u16 value.
source§

fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u32 value.
source§

fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u64 value.
source§

fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an u128 value. Read more
source§

fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a f32 value.
source§

fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a f64 value.
source§

fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a char value.
source§

fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a string value and does not benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +Deserializer. Read more

source§

fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a string value and would benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +Deserializer. Read more

source§

fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a byte array and does not benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +Deserializer. Read more

source§

fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a byte array and would benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit value.
source§

fn deserialize_unit_struct<V>( +Deserializer. Read more

source§

fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit value.
source§

fn deserialize_unit_struct<V>( self, name: &'static str, visitor: V ) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit struct with a -particular name.
source§

fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values.
source§

fn deserialize_tuple<V>( +particular name.

source§

fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values.
source§

fn deserialize_tuple<V>( self, len: usize, visitor: V ) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values and -knows how many values there are without looking at the serialized data.
source§

fn deserialize_tuple_struct<V>( +knows how many values there are without looking at the serialized data.

source§

fn deserialize_tuple_struct<V>( self, name: &'static str, len: usize, visitor: V ) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a tuple struct with a -particular name and number of fields.
source§

fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a map of key-value pairs.
source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +particular name and number of fields.

source§

fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a map of key-value pairs.
source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting the name of a struct -field or the discriminant of an enum variant.
source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +field or the discriminant of an enum variant.

source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type -doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to -deserialize their human-readable form. Read more
source§

impl<'de> Deserializer<'de> for Value<'de>

§

type Error = Error

The error type that can be returned if some error occurs during -deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where +doesn’t matter because it is ignored. Read more

source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to +deserialize their human-readable form. Read more
source§

impl<'de> Deserializer<'de> for Value<'de>

§

type Error = Error

The error type that can be returned if some error occurs during +deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based -on what data type is in the input. Read more
source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an optional value. Read more
source§

fn deserialize_enum<V>( +on what data type is in the input. Read more

source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an optional value. Read more
source§

fn deserialize_enum<V>( self, _name: &str, _variants: &'static [&'static str], visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting an enum value with a -particular name and possible variants.
source§

fn deserialize_newtype_struct<V>( +particular name and possible variants.

source§

fn deserialize_newtype_struct<V>( self, _name: &'static str, visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a newtype struct with a -particular name.
source§

fn deserialize_struct<V>( +particular name.

source§

fn deserialize_struct<V>( self, _name: &'static str, _fields: &'static [&'static str], visitor: V ) -> Result<V::Value, Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a struct with a particular -name and fields.
source§

fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a bool value.
source§

fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i8 value.
source§

fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i16 value.
source§

fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i32 value.
source§

fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i64 value.
source§

fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an i128 value. Read more
source§

fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u8 value.
source§

fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u16 value.
source§

fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u32 value.
source§

fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a u64 value.
source§

fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting an u128 value. Read more
source§

fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a f32 value.
source§

fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a f64 value.
source§

fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a char value.
source§

fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +name and fields.

source§

fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a bool value.
source§

fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i8 value.
source§

fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i16 value.
source§

fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i32 value.
source§

fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i64 value.
source§

fn deserialize_i128<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an i128 value. Read more
source§

fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u8 value.
source§

fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u16 value.
source§

fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u32 value.
source§

fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a u64 value.
source§

fn deserialize_u128<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting an u128 value. Read more
source§

fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a f32 value.
source§

fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a f64 value.
source§

fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a char value.
source§

fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a string value and does not benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +Deserializer. Read more

source§

fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a string value and would benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +Deserializer. Read more

source§

fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a byte array and does not benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +Deserializer. Read more

source§

fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a byte array and would benefit from taking ownership of buffered data owned by the -Deserializer. Read more
source§

fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit value.
source§

fn deserialize_unit_struct<V>( +Deserializer. Read more

source§

fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit value.
source§

fn deserialize_unit_struct<V>( self, name: &'static str, visitor: V ) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a unit struct with a -particular name.
source§

fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values.
source§

fn deserialize_tuple<V>( +particular name.

source§

fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values.
source§

fn deserialize_tuple<V>( self, len: usize, visitor: V ) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a sequence of values and -knows how many values there are without looking at the serialized data.
source§

fn deserialize_tuple_struct<V>( +knows how many values there are without looking at the serialized data.

source§

fn deserialize_tuple_struct<V>( self, name: &'static str, len: usize, visitor: V ) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting a tuple struct with a -particular name and number of fields.
source§

fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Self::Error>where - V: Visitor<'de>,

Hint that the Deserialize type is expecting a map of key-value pairs.
source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +particular name and number of fields.

source§

fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Self::Error>where + V: Visitor<'de>,

Hint that the Deserialize type is expecting a map of key-value pairs.
source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type is expecting the name of a struct -field or the discriminant of an enum variant.
source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where +field or the discriminant of an enum variant.

source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type -doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to -deserialize their human-readable form. Read more
source§

impl<'value> Display for Value<'value>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'value> From<&'value str> for Value<'value>

source§

fn from(s: &'value str) -> Self

Converts to this type from the input type.
source§

impl<'value> From<()> for Value<'value>

source§

fn from(_b: ()) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Cow<'value, str>> for Value<'value>

source§

fn from(c: Cow<'value, str>) -> Self

Converts to this type from the input type.
source§

impl<'value, T> From<Option<T>> for Value<'value>where - Value<'value>: From<T>,

source§

fn from(s: Option<T>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>> for Value<'value>

source§

fn from(v: Object<'value>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<StaticNode> for Value<'value>

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl<'value> From<String> for Value<'value>

source§

fn from(s: String) -> Self

Converts to this type from the input type.
source§

impl From<Value<'_>> for Value

source§

fn from(b: BorrowedValue<'_>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Value> for Value<'value>

source§

fn from(b: OwnedValue) -> Self

Converts to this type from the input type.
source§

impl<'value, S> From<Vec<S, Global>> for Value<'value>where - Value<'value>: From<S>,

source§

fn from(v: Vec<S>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<bool> for Value<'value>

source§

fn from(b: bool) -> Self

Converts to this type from the input type.
source§

impl<'value> From<f32> for Value<'value>

source§

fn from(f: f32) -> Self

Converts to this type from the input type.
source§

impl<'value> From<f64> for Value<'value>

source§

fn from(f: f64) -> Self

Converts to this type from the input type.
source§

impl<'value> From<i16> for Value<'value>

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl<'value> From<i32> for Value<'value>

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl<'value> From<i64> for Value<'value>

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl<'value> From<i8> for Value<'value>

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl<'value> From<u16> for Value<'value>

source§

fn from(i: u16) -> Self

Converts to this type from the input type.
source§

impl<'value> From<u32> for Value<'value>

source§

fn from(i: u32) -> Self

Converts to this type from the input type.
source§

impl<'value> From<u64> for Value<'value>

source§

fn from(i: u64) -> Self

Converts to this type from the input type.
source§

impl<'value> From<u8> for Value<'value>

source§

fn from(i: u8) -> Self

Converts to this type from the input type.
source§

impl<'value> From<usize> for Value<'value>

source§

fn from(i: usize) -> Self

Converts to this type from the input type.
source§

impl<'value, K: Into<Cow<'value, str>>, V: Into<Value<'value>>> FromIterator<(K, V)> for Value<'value>

source§

fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'value, V: Into<Value<'value>>> FromIterator<V> for Value<'value>

source§

fn from_iter<I: IntoIterator<Item = V>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'value> Index<&str> for Value<'value>

§

type Output = Value<'value>

The returned type after indexing.
source§

fn index(&self, index: &str) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<'value> Index<usize> for Value<'value>

§

type Output = Value<'value>

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<'value> IndexMut<&str> for Value<'value>

source§

fn index_mut(&mut self, index: &str) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'value> IndexMut<usize> for Value<'value>

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'de> IntoDeserializer<'de, Error> for Value<'de>

§

type Deserializer = Value<'de>

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'value> Mutable for Value<'value>

source§

fn as_array_mut(&mut self) -> Option<&mut Vec<Value<'value>>>

Tries to represent the value as an array and returns a mutable refference to it
source§

fn as_object_mut(&mut self) -> Option<&mut Object<'value>>

Tries to represent the value as an object and returns a mutable refference to it
source§

fn push<V>(&mut self, v: V) -> Result<(), AccessError>where +doesn’t matter because it is ignored. Read more

source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to +deserialize their human-readable form. Read more
source§

impl<'value> Display for Value<'value>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'value> From<&'value str> for Value<'value>

source§

fn from(s: &'value str) -> Self

Converts to this type from the input type.
source§

impl<'value> From<()> for Value<'value>

source§

fn from(_b: ()) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Cow<'value, str>> for Value<'value>

source§

fn from(c: Cow<'value, str>) -> Self

Converts to this type from the input type.
source§

impl<'value, T> From<Option<T>> for Value<'value>where + Value<'value>: From<T>,

source§

fn from(s: Option<T>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>> for Value<'value>

source§

fn from(v: Object<'value>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<StaticNode> for Value<'value>

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl<'value> From<String> for Value<'value>

source§

fn from(s: String) -> Self

Converts to this type from the input type.
source§

impl From<Value<'_>> for Value

source§

fn from(b: BorrowedValue<'_>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Value> for Value<'value>

source§

fn from(b: OwnedValue) -> Self

Converts to this type from the input type.
source§

impl<'value, S> From<Vec<S, Global>> for Value<'value>where + Value<'value>: From<S>,

source§

fn from(v: Vec<S>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<bool> for Value<'value>

source§

fn from(b: bool) -> Self

Converts to this type from the input type.
source§

impl<'value> From<f32> for Value<'value>

source§

fn from(f: f32) -> Self

Converts to this type from the input type.
source§

impl<'value> From<f64> for Value<'value>

source§

fn from(f: f64) -> Self

Converts to this type from the input type.
source§

impl<'value> From<i16> for Value<'value>

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl<'value> From<i32> for Value<'value>

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl<'value> From<i64> for Value<'value>

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl<'value> From<i8> for Value<'value>

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl<'value> From<u16> for Value<'value>

source§

fn from(i: u16) -> Self

Converts to this type from the input type.
source§

impl<'value> From<u32> for Value<'value>

source§

fn from(i: u32) -> Self

Converts to this type from the input type.
source§

impl<'value> From<u64> for Value<'value>

source§

fn from(i: u64) -> Self

Converts to this type from the input type.
source§

impl<'value> From<u8> for Value<'value>

source§

fn from(i: u8) -> Self

Converts to this type from the input type.
source§

impl<'value> From<usize> for Value<'value>

source§

fn from(i: usize) -> Self

Converts to this type from the input type.
source§

impl<'value, K: Into<Cow<'value, str>>, V: Into<Value<'value>>> FromIterator<(K, V)> for Value<'value>

source§

fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'value, V: Into<Value<'value>>> FromIterator<V> for Value<'value>

source§

fn from_iter<I: IntoIterator<Item = V>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<'value> Index<&str> for Value<'value>

§

type Output = Value<'value>

The returned type after indexing.
source§

fn index(&self, index: &str) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<'value> Index<usize> for Value<'value>

§

type Output = Value<'value>

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<'value> IndexMut<&str> for Value<'value>

source§

fn index_mut(&mut self, index: &str) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'value> IndexMut<usize> for Value<'value>

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'de> IntoDeserializer<'de, Error> for Value<'de>

§

type Deserializer = Value<'de>

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl<'value> Mutable for Value<'value>

source§

fn as_array_mut(&mut self) -> Option<&mut Vec<Value<'value>>>

Tries to represent the value as an array and returns a mutable refference to it
source§

fn as_object_mut(&mut self) -> Option<&mut Object<'value>>

Tries to represent the value as an object and returns a mutable refference to it
source§

fn push<V>(&mut self, v: V) -> Result<(), AccessError>where V: Into<Self::Target>,

Pushes to this Value as an Array. Will return an AccessError::NotAnArray if called on a Value that isn’t an Array - otherwise will @@ -184,60 +184,60 @@ behave the same as Vec::pop Read more
source§

fn try_pop(&mut self) -> Option<Self::Target>

Tries to pop from a Value as an Array. if the Value is any other type None will always be returned
source§

fn get_idx_mut(&mut self, i: usize) -> Option<&mut Self::Target>

Same as get_idx but returns a mutable ref instead
source§

impl<'v, T> PartialEq<&[T]> for Value<'v>where - Value<'v>: PartialEq<T>,

source§

fn eq(&self, other: &&[T]) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always + Value<'v>: PartialEq<T>,
source§

fn eq(&self, other: &&[T]) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'value, T> PartialEq<&T> for Value<'value>where - Value<'value>: PartialEq<T>,

source§

fn eq(&self, other: &&T) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<&str> for Value<'v>

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always + Value<'value>: PartialEq<T>,
source§

fn eq(&self, other: &&T) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<&str> for Value<'v>

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<()> for Value<'v>

source§

fn eq(&self, _other: &()) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'v, K, T, S> PartialEq<HashMap<K, T, S>> for Value<'v>where K: AsRef<str> + Hash + Eq, Value<'v>: PartialEq<T>, - S: BuildHasher,

source§

fn eq(&self, other: &HashMap<K, T, S>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<String> for Value<'v>

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used + S: BuildHasher,
source§

fn eq(&self, other: &HashMap<K, T, S>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value<'_>> for Value

source§

fn eq(&self, other: &BorrowedValue<'_>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'value> PartialEq<Value<'value>> for Value<'value>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'value> PartialEq<Value> for Value<'value>

source§

fn eq(&self, other: &OwnedValue) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<bool> for Value<'v>

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<f32> for Value<'v>

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<f64> for Value<'v>

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<String> for Value<'v>

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i128> for Value<'v>

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i16> for Value<'v>

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i32> for Value<'v>

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value<'_>> for Value

source§

fn eq(&self, other: &BorrowedValue<'_>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i64> for Value<'v>

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i8> for Value<'v>

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<str> for Value<'v>

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'value> PartialEq<Value<'value>> for Value<'value>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<u128> for Value<'v>

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'value> PartialEq<Value> for Value<'value>

source§

fn eq(&self, other: &OwnedValue) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<bool> for Value<'v>

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<f32> for Value<'v>

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<f64> for Value<'v>

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i128> for Value<'v>

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i16> for Value<'v>

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i32> for Value<'v>

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i64> for Value<'v>

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<i8> for Value<'v>

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<u16> for Value<'v>

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<str> for Value<'v>

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<u128> for Value<'v>

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<u16> for Value<'v>

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<u32> for Value<'v>

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<u64> for Value<'v>

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<u32> for Value<'v>

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<u64> for Value<'v>

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<u8> for Value<'v>

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<usize> for Value<'v>

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'v> PartialEq<usize> for Value<'v>

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'value> Serialize for Value<'value>

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<'value> TryFrom<Value> for BorrowedValue<'value>

§

type Error = SerdeConversionError

The type returned in the event of a conversion error.
source§

fn try_from(item: Value) -> Result<Self, SerdeConversionError>

Performs the conversion.
source§

impl<'value> TryInto<Value> for BorrowedValue<'value>

§

type Error = SerdeConversionError

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Value, SerdeConversionError>

Performs the conversion.
source§

impl<'value> Value for Value<'value>

source§

fn is_null(&self) -> bool

returns true if the current value is null
source§

fn is_float(&self) -> bool

returns true if the current value a floatingpoint number
source§

fn is_integer(&self) -> bool

returns true if the current value a integer number
source§

fn is_number(&self) -> bool

returns true if the current value a number either float or integer
source§

fn is_bool(&self) -> bool

returns true if the current value a bool
source§

fn is_i128(&self) -> bool

returns true if the current value can be represented as a i128
source§

fn is_i64(&self) -> bool

returns true if the current value can be represented as a i64
source§

fn is_i32(&self) -> bool

returns true if the current value can be represented as a i32
source§

fn is_i16(&self) -> bool

returns true if the current value can be represented as a i16
source§

fn is_i8(&self) -> bool

returns true if the current value can be represented as a i8
source§

fn is_u128(&self) -> bool

returns true if the current value can be represented as a u128
source§

fn is_u64(&self) -> bool

returns true if the current value can be represented as a u64
source§

fn is_usize(&self) -> bool

returns true if the current value can be represented as a usize
source§

fn is_u32(&self) -> bool

returns true if the current value can be represented as a u32
source§

fn is_u16(&self) -> bool

returns true if the current value can be represented as a u16
source§

fn is_u8(&self) -> bool

returns true if the current value can be represented as a u8
source§

fn is_f64(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_f64_castable(&self) -> bool

returns true if the current value can be cast into a f64
source§

fn is_f32(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_str(&self) -> bool

returns true if the current value can be represented as a str
source§

fn is_char(&self) -> bool

returns true if the current value can be represented as a char
source§

fn is_array(&self) -> bool

returns true if the current value can be represented as an array
source§

fn is_object(&self) -> bool

returns true if the current value can be represented as an object
source§

fn is_custom(&self) -> bool

returns if a type is a custom type
source§

impl<'value> ValueAccess for Value<'value>

§

type Target = Value<'value>

The target for nested lookups
§

type Key = Cow<'value, str>

The type for Objects
§

type Array = Vec<Value<'value>, Global>

The array structure
§

type Object = SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>

The object structure
source§

fn value_type(&self) -> ValueType

Gets the type of the current value
source§

fn as_bool(&self) -> Option<bool>

Tries to represent the value as a bool
source§

fn as_i64(&self) -> Option<i64>

Tries to represent the value as an i64
source§

fn as_i128(&self) -> Option<i128>

Tries to represent the value as an i128
source§

fn as_u64(&self) -> Option<u64>

Tries to represent the value as an u64
source§

fn as_f64(&self) -> Option<f64>

Tries to represent the value as a f64
source§

fn cast_f64(&self) -> Option<f64>

Casts the current value to a f64 if possible, this will turn integer + S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§

impl<'value> TryFrom<Value> for BorrowedValue<'value>

§

type Error = SerdeConversionError

The type returned in the event of a conversion error.
source§

fn try_from(item: Value) -> Result<Self, SerdeConversionError>

Performs the conversion.
source§

impl<'value> TryInto<Value> for BorrowedValue<'value>

§

type Error = SerdeConversionError

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Value, SerdeConversionError>

Performs the conversion.
source§

impl<'value> Value for Value<'value>

source§

fn is_null(&self) -> bool

returns true if the current value is null
source§

fn is_float(&self) -> bool

returns true if the current value a floatingpoint number
source§

fn is_integer(&self) -> bool

returns true if the current value a integer number
source§

fn is_number(&self) -> bool

returns true if the current value a number either float or integer
source§

fn is_bool(&self) -> bool

returns true if the current value a bool
source§

fn is_i128(&self) -> bool

returns true if the current value can be represented as a i128
source§

fn is_i64(&self) -> bool

returns true if the current value can be represented as a i64
source§

fn is_i32(&self) -> bool

returns true if the current value can be represented as a i32
source§

fn is_i16(&self) -> bool

returns true if the current value can be represented as a i16
source§

fn is_i8(&self) -> bool

returns true if the current value can be represented as a i8
source§

fn is_u128(&self) -> bool

returns true if the current value can be represented as a u128
source§

fn is_u64(&self) -> bool

returns true if the current value can be represented as a u64
source§

fn is_usize(&self) -> bool

returns true if the current value can be represented as a usize
source§

fn is_u32(&self) -> bool

returns true if the current value can be represented as a u32
source§

fn is_u16(&self) -> bool

returns true if the current value can be represented as a u16
source§

fn is_u8(&self) -> bool

returns true if the current value can be represented as a u8
source§

fn is_f64(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_f64_castable(&self) -> bool

returns true if the current value can be cast into a f64
source§

fn is_f32(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_str(&self) -> bool

returns true if the current value can be represented as a str
source§

fn is_char(&self) -> bool

returns true if the current value can be represented as a char
source§

fn is_array(&self) -> bool

returns true if the current value can be represented as an array
source§

fn is_object(&self) -> bool

returns true if the current value can be represented as an object
source§

fn is_custom(&self) -> bool

returns if a type is a custom type
source§

impl<'value> ValueAccess for Value<'value>

§

type Target = Value<'value>

The target for nested lookups
§

type Key = Cow<'value, str>

The type for Objects
§

type Array = Vec<Value<'value>, Global>

The array structure
§

type Object = SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>

The object structure
source§

fn value_type(&self) -> ValueType

Gets the type of the current value
source§

fn as_bool(&self) -> Option<bool>

Tries to represent the value as a bool
source§

fn as_i64(&self) -> Option<i64>

Tries to represent the value as an i64
source§

fn as_i128(&self) -> Option<i128>

Tries to represent the value as an i128
source§

fn as_u64(&self) -> Option<u64>

Tries to represent the value as an u64
source§

fn as_f64(&self) -> Option<f64>

Tries to represent the value as a f64
source§

fn cast_f64(&self) -> Option<f64>

Casts the current value to a f64 if possible, this will turn integer values into floats.
source§

fn as_str(&self) -> Option<&str>

Tries to represent the value as a &str
source§

fn as_array(&self) -> Option<&Vec<Value<'value>>>

Tries to represent the value as an array and returns a refference to it
source§

fn as_object(&self) -> Option<&Object<'value>>

Tries to represent the value as an object and returns a refference to it
source§

fn try_as_bool(&self) -> Result<bool, TryTypeError>

Tries to represent the value as a bool Read more
source§

fn try_as_i128(&self) -> Result<i128, TryTypeError>

Tries to represent the value as a i128 Read more
source§

fn try_as_i64(&self) -> Result<i64, TryTypeError>

Tries to represent the value as an i64 Read more
source§

fn as_i32(&self) -> Option<i32>

Tries to represent the value as an i32
source§

fn try_as_i32(&self) -> Result<i32, TryTypeError>

Tries to represent the value as an i32 Read more
source§

fn as_i16(&self) -> Option<i16>

Tries to represent the value as an i16
source§

fn try_as_i16(&self) -> Result<i16, TryTypeError>

Tries to represent the value as an i16 Read more
source§

fn as_i8(&self) -> Option<i8>

Tries to represent the value as an i8
source§

fn try_as_i8(&self) -> Result<i8, TryTypeError>

Tries to represent the value as an i8 Read more
source§

fn as_u128(&self) -> Option<u128>

Tries to represent the value as an u128
source§

fn try_as_u128(&self) -> Result<u128, TryTypeError>

Tries to represent the value as an u128 Read more
source§

fn try_as_u64(&self) -> Result<u64, TryTypeError>

Tries to represent the value as an u64 Read more
source§

fn as_usize(&self) -> Option<usize>

Tries to represent the value as an usize
source§

fn try_as_usize(&self) -> Result<usize, TryTypeError>

Tries to represent the value as an usize Read more
source§

fn as_u32(&self) -> Option<u32>

Tries to represent the value as an u32
source§

fn try_as_u32(&self) -> Result<u32, TryTypeError>

Tries to represent the value as an u32 Read more
source§

fn as_u16(&self) -> Option<u16>

Tries to represent the value as an u16
source§

fn try_as_u16(&self) -> Result<u16, TryTypeError>

Tries to represent the value as an u16 Read more
source§

fn as_u8(&self) -> Option<u8>

Tries to represent the value as an u8
source§

fn try_as_u8(&self) -> Result<u8, TryTypeError>

Tries to represent the value as an u8 Read more
source§

fn try_as_f64(&self) -> Result<f64, TryTypeError>

Tries to represent the value as a f64 Read more
source§

fn try_cast_f64(&self) -> Result<f64, TryTypeError>

Tries to Casts the current value to a f64 if possible, this will turn integer values into floats and error if it isn’t possible Read more
source§

fn as_f32(&self) -> Option<f32>

Tries to represent the value as a f32
source§

fn try_as_f32(&self) -> Result<f32, TryTypeError>

Tries to represent the value as a f32 Read more
source§

fn try_as_str(&self) -> Result<&str, TryTypeError>

Tries to represent the value as a &str Read more
source§

fn as_char(&self) -> Option<char>

Tries to represent the value as a Char
source§

fn try_as_char(&self) -> Result<char, TryTypeError>

Tries to represent the value as a Char Read more
source§

fn try_as_array(&self) -> Result<&Self::Array, TryTypeError>

Tries to represent the value as an array and returns a refference to it Read more
source§

fn try_as_object(&self) -> Result<&Self::Object, TryTypeError>

Tries to represent the value as an object and returns a refference to it Read more
source§

fn get_idx(&self, i: usize) -> Option<&Self::Target>

Gets a ref to a value based on n index, returns None if the current Value isn’t an Array or doesn’t contain the index diff --git a/simd_json/value/enum.StaticNode.html b/simd_json/value/enum.StaticNode.html index f15926c105a7..8c9ecab5bc63 100644 --- a/simd_json/value/enum.StaticNode.html +++ b/simd_json/value/enum.StaticNode.html @@ -10,50 +10,50 @@
§

F64(f64)

A floating point value

§

Bool(bool)

A boolean value

§

Null

The null value

-

Trait Implementations§

source§

impl Clone for StaticNode

source§

fn clone(&self) -> StaticNode

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 StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for StaticNode

source§

fn default() -> StaticNode

Returns the “default value” for a type. Read more
source§

impl Display for StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<()> for StaticNode

source§

fn from(_b: ()) -> StaticNode

Converts to this type from the input type.
source§

impl From<StaticNode> for Value

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl<'value> From<StaticNode> for Value<'value>

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl From<bool> for StaticNode

source§

fn from(b: bool) -> StaticNode

Converts to this type from the input type.
source§

impl From<f32> for StaticNode

source§

fn from(f: f32) -> StaticNode

Converts to this type from the input type.
source§

impl From<f64> for StaticNode

source§

fn from(f: f64) -> StaticNode

Converts to this type from the input type.
source§

impl From<i16> for StaticNode

source§

fn from(i: i16) -> StaticNode

Converts to this type from the input type.
source§

impl From<i32> for StaticNode

source§

fn from(i: i32) -> StaticNode

Converts to this type from the input type.
source§

impl From<i64> for StaticNode

source§

fn from(i: i64) -> StaticNode

Converts to this type from the input type.
source§

impl From<i8> for StaticNode

source§

fn from(i: i8) -> StaticNode

Converts to this type from the input type.
source§

impl From<u16> for StaticNode

source§

fn from(i: u16) -> StaticNode

Converts to this type from the input type.
source§

impl From<u32> for StaticNode

source§

fn from(i: u32) -> StaticNode

Converts to this type from the input type.
source§

impl From<u64> for StaticNode

source§

fn from(i: u64) -> StaticNode

Converts to this type from the input type.
source§

impl From<u8> for StaticNode

source§

fn from(i: u8) -> StaticNode

Converts to this type from the input type.
source§

impl From<usize> for StaticNode

source§

fn from(i: usize) -> StaticNode

Converts to this type from the input type.
source§

impl Index<&str> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: &str) -> &<StaticNode as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: usize) -> &<StaticNode as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<&str> for StaticNode

Trait Implementations§

source§

impl Clone for StaticNode

source§

fn clone(&self) -> StaticNode

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 StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for StaticNode

source§

fn default() -> StaticNode

Returns the “default value” for a type. Read more
source§

impl Display for StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<()> for StaticNode

source§

fn from(_b: ()) -> StaticNode

Converts to this type from the input type.
source§

impl From<StaticNode> for Value

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl<'value> From<StaticNode> for Value<'value>

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl From<bool> for StaticNode

source§

fn from(b: bool) -> StaticNode

Converts to this type from the input type.
source§

impl From<f32> for StaticNode

source§

fn from(f: f32) -> StaticNode

Converts to this type from the input type.
source§

impl From<f64> for StaticNode

source§

fn from(f: f64) -> StaticNode

Converts to this type from the input type.
source§

impl From<i16> for StaticNode

source§

fn from(i: i16) -> StaticNode

Converts to this type from the input type.
source§

impl From<i32> for StaticNode

source§

fn from(i: i32) -> StaticNode

Converts to this type from the input type.
source§

impl From<i64> for StaticNode

source§

fn from(i: i64) -> StaticNode

Converts to this type from the input type.
source§

impl From<i8> for StaticNode

source§

fn from(i: i8) -> StaticNode

Converts to this type from the input type.
source§

impl From<u16> for StaticNode

source§

fn from(i: u16) -> StaticNode

Converts to this type from the input type.
source§

impl From<u32> for StaticNode

source§

fn from(i: u32) -> StaticNode

Converts to this type from the input type.
source§

impl From<u64> for StaticNode

source§

fn from(i: u64) -> StaticNode

Converts to this type from the input type.
source§

impl From<u8> for StaticNode

source§

fn from(i: u8) -> StaticNode

Converts to this type from the input type.
source§

impl From<usize> for StaticNode

source§

fn from(i: usize) -> StaticNode

Converts to this type from the input type.
source§

impl Index<&str> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: &str) -> &<StaticNode as Index<&str>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: usize) -> &<StaticNode as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<&str> for StaticNode

source§

fn index_mut( &mut self, _index: &str ) -> &mut <StaticNode as Index<&str>>::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for StaticNode

source§

fn index_mut( &mut self, _index: usize -) -> &mut <StaticNode as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl PartialEq<&str> for StaticNode

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<()> for StaticNode

source§

fn eq(&self, _other: &()) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StaticNode> for StaticNode

source§

fn eq(&self, other: &StaticNode) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for StaticNode

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for StaticNode

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +) -> &mut <StaticNode as Index<usize>>::Output
Performs the mutable indexing (container[index]) operation. Read more
source§

impl PartialEq<&str> for StaticNode

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for StaticNode

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for StaticNode

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i128> for StaticNode

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for StaticNode

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for StaticNode

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for StaticNode

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for StaticNode

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for StaticNode

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<()> for StaticNode

source§

fn eq(&self, _other: &()) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StaticNode> for StaticNode

source§

fn eq(&self, other: &StaticNode) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u128> for StaticNode

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for StaticNode

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for StaticNode

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for StaticNode

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for StaticNode

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for StaticNode

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for StaticNode

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for StaticNode

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for StaticNode

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for StaticNode

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i128> for StaticNode

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for StaticNode

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for StaticNode

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for StaticNode

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for StaticNode

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for StaticNode

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u128> for StaticNode

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for StaticNode

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for StaticNode

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for StaticNode

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for StaticNode

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for StaticNode

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Value for StaticNode

source§

fn is_null(&self) -> bool

returns true if the current value is null
source§

fn is_float(&self) -> bool

returns true if the current value a floatingpoint number
source§

fn is_integer(&self) -> bool

returns true if the current value a integer number
source§

fn is_number(&self) -> bool

returns true if the current value a number either float or integer
source§

fn is_bool(&self) -> bool

returns true if the current value a bool
source§

fn is_i128(&self) -> bool

returns true if the current value can be represented as a i128
source§

fn is_i64(&self) -> bool

returns true if the current value can be represented as a i64
source§

fn is_i32(&self) -> bool

returns true if the current value can be represented as a i32
source§

fn is_i16(&self) -> bool

returns true if the current value can be represented as a i16
source§

fn is_i8(&self) -> bool

returns true if the current value can be represented as a i8
source§

fn is_u128(&self) -> bool

returns true if the current value can be represented as a u128
source§

fn is_u64(&self) -> bool

returns true if the current value can be represented as a u64
source§

fn is_usize(&self) -> bool

returns true if the current value can be represented as a usize
source§

fn is_u32(&self) -> bool

returns true if the current value can be represented as a u32
source§

fn is_u16(&self) -> bool

returns true if the current value can be represented as a u16
source§

fn is_u8(&self) -> bool

returns true if the current value can be represented as a u8
source§

fn is_f64(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_f64_castable(&self) -> bool

returns true if the current value can be cast into a f64
source§

fn is_f32(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_str(&self) -> bool

returns true if the current value can be represented as a str
source§

fn is_char(&self) -> bool

returns true if the current value can be represented as a char
source§

fn is_array(&self) -> bool

returns true if the current value can be represented as an array
source§

fn is_object(&self) -> bool

returns true if the current value can be represented as an object
source§

fn is_custom(&self) -> bool

returns if a type is a custom type
source§

impl ValueAccess for StaticNode

§

type Target = StaticNode

The target for nested lookups
§

type Key = String

The type for Objects
§

type Array = Vec<StaticNode, Global>

The array structure
§

type Object = HashMap<String, StaticNode, RandomState>

The object structure
source§

fn value_type(&self) -> ValueType

Gets the type of the current value
source§

fn as_array(&self) -> Option<&<StaticNode as ValueAccess>::Array>

Tries to represent the value as an array and returns a refference to it
source§

fn as_object( &self ) -> Option<&HashMap<<StaticNode as ValueAccess>::Key, StaticNode, RandomState>>

Tries to represent the value as an object and returns a refference to it
source§

fn as_bool(&self) -> Option<bool>

Tries to represent the value as a bool
source§

fn as_i64(&self) -> Option<i64>

Tries to represent the value as an i64
source§

fn as_u64(&self) -> Option<u64>

Tries to represent the value as an u64
source§

fn as_f64(&self) -> Option<f64>

Tries to represent the value as a f64
source§

fn cast_f64(&self) -> Option<f64>

Casts the current value to a f64 if possible, this will turn integer diff --git a/simd_json/value/owned/enum.Value.html b/simd_json/value/owned/enum.Value.html index 7fe244a35ab8..e893f728902b 100644 --- a/simd_json/value/owned/enum.Value.html +++ b/simd_json/value/owned/enum.Value.html @@ -12,7 +12,7 @@
§

Array(Vec<Value>)

array type

§

Object(Box<Object>)

object type

Trait Implementations§

source§

impl<'input> Builder<'input> for Value

source§

fn null() -> Self

Returns anull value
source§

fn array_with_capacity(capacity: usize) -> Self

Returns an empty array with a given capacity
source§

fn object_with_capacity(capacity: usize) -> Self

Returns an empty object with a given capacity
source§

fn array() -> Self

Returns an empty array
source§

fn object() -> Self

Returns an empty object
source§

impl Clone for Value

source§

fn clone(&self) -> Value

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 Value

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Value

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Value

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<'de> Deserializer<'de> for &'de Value

§

type Error = Error

The error type that can be returned if some error occurs during + D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de> Deserializer<'de> for &'de Value

§

type Error = Error

The error type that can be returned if some error occurs during deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based on what data type is in the input. Read more
source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where @@ -89,7 +89,7 @@ field or the discriminant of an enum variant.

source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to -deserialize their human-readable form. Read more
source§

impl<'de> Deserializer<'de> for Value

§

type Error = Error

The error type that can be returned if some error occurs during +deserialize their human-readable form. Read more
source§

impl<'de> Deserializer<'de> for Value

§

type Error = Error

The error type that can be returned if some error occurs during deserialization.
source§

fn deserialize_any<V>(self, visitor: V) -> Result<V::Value, Error>where V: Visitor<'de>,

Require the Deserializer to figure out how to drive the visitor based on what data type is in the input. Read more
source§

fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Error>where @@ -166,9 +166,9 @@ field or the discriminant of an enum variant.

source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>where V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Deserialize implementations should expect to -deserialize their human-readable form. Read more
source§

impl Display for Value

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&String> for Value

source§

fn from(s: &String) -> Self

Converts to this type from the input type.
source§

impl From<&str> for Value

source§

fn from(s: &str) -> Self

Converts to this type from the input type.
source§

impl From<()> for Value

source§

fn from(_b: ()) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Cow<'value, str>> for Value

source§

fn from(c: Cow<'value, str>) -> Self

Converts to this type from the input type.
source§

impl From<HashMap<String, Value, RandomState>> for Value

source§

fn from(v: HashMap<String, Self>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Option<T>> for Valuewhere - Value: From<T>,

source§

fn from(s: Option<T>) -> Self

Converts to this type from the input type.
source§

impl From<SizedHashMap<String, Value, NotSoRandomState, 32>> for Value

source§

fn from(v: Object) -> Self

Converts to this type from the input type.
source§

impl From<StaticNode> for Value

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(s: String) -> Self

Converts to this type from the input type.
source§

impl From<Value<'_>> for Value

source§

fn from(b: BorrowedValue<'_>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Value> for Value<'value>

source§

fn from(b: OwnedValue) -> Self

Converts to this type from the input type.
source§

impl<S> From<Vec<S, Global>> for Valuewhere - Value: From<S>,

source§

fn from(v: Vec<S>) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Value

source§

fn from(b: bool) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Value

source§

fn from(f: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Value

source§

fn from(f: f64) -> Self

Converts to this type from the input type.
source§

impl From<i16> for Value

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(i: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(i: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(i: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(i: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Value

source§

fn from(i: usize) -> Self

Converts to this type from the input type.
source§

impl<K: ToString, V: Into<Value>> FromIterator<(K, V)> for Value

source§

fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<V: Into<Value>> FromIterator<V> for Value

source§

fn from_iter<I: IntoIterator<Item = V>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl Index<&str> for Value

§

type Output = Value

The returned type after indexing.
source§

fn index(&self, index: &str) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for Value

§

type Output = Value

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<&str> for Value

source§

fn index_mut(&mut self, index: &str) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for Value

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl Mutable for Value

source§

fn as_array_mut(&mut self) -> Option<&mut Vec<Self>>

Tries to represent the value as an array and returns a mutable refference to it
source§

fn as_object_mut(&mut self) -> Option<&mut Object>

Tries to represent the value as an object and returns a mutable refference to it
source§

fn insert<K, V>( +deserialize their human-readable form. Read more

source§

impl Display for Value

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&String> for Value

source§

fn from(s: &String) -> Self

Converts to this type from the input type.
source§

impl From<&str> for Value

source§

fn from(s: &str) -> Self

Converts to this type from the input type.
source§

impl From<()> for Value

source§

fn from(_b: ()) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Cow<'value, str>> for Value

source§

fn from(c: Cow<'value, str>) -> Self

Converts to this type from the input type.
source§

impl From<HashMap<String, Value, RandomState>> for Value

source§

fn from(v: HashMap<String, Self>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Option<T>> for Valuewhere + Value: From<T>,

source§

fn from(s: Option<T>) -> Self

Converts to this type from the input type.
source§

impl From<SizedHashMap<String, Value, NotSoRandomState, 32>> for Value

source§

fn from(v: Object) -> Self

Converts to this type from the input type.
source§

impl From<StaticNode> for Value

source§

fn from(s: StaticNode) -> Self

Converts to this type from the input type.
source§

impl From<String> for Value

source§

fn from(s: String) -> Self

Converts to this type from the input type.
source§

impl From<Value<'_>> for Value

source§

fn from(b: BorrowedValue<'_>) -> Self

Converts to this type from the input type.
source§

impl<'value> From<Value> for Value<'value>

source§

fn from(b: OwnedValue) -> Self

Converts to this type from the input type.
source§

impl<S> From<Vec<S, Global>> for Valuewhere + Value: From<S>,

source§

fn from(v: Vec<S>) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Value

source§

fn from(b: bool) -> Self

Converts to this type from the input type.
source§

impl From<f32> for Value

source§

fn from(f: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Value

source§

fn from(f: f64) -> Self

Converts to this type from the input type.
source§

impl From<i16> for Value

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for Value

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Value

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for Value

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Value

source§

fn from(i: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(i: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Value

source§

fn from(i: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Value

source§

fn from(i: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Value

source§

fn from(i: usize) -> Self

Converts to this type from the input type.
source§

impl<K: ToString, V: Into<Value>> FromIterator<(K, V)> for Value

source§

fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<V: Into<Value>> FromIterator<V> for Value

source§

fn from_iter<I: IntoIterator<Item = V>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl Index<&str> for Value

§

type Output = Value

The returned type after indexing.
source§

fn index(&self, index: &str) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for Value

§

type Output = Value

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<&str> for Value

source§

fn index_mut(&mut self, index: &str) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for Value

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'de> IntoDeserializer<'de, Error> for Value

§

type Deserializer = Value

The type of the deserializer being converted into.
source§

fn into_deserializer(self) -> Self::Deserializer

Convert this value into a deserializer.
source§

impl Mutable for Value

source§

fn as_array_mut(&mut self) -> Option<&mut Vec<Self>>

Tries to represent the value as an array and returns a mutable refference to it
source§

fn as_object_mut(&mut self) -> Option<&mut Object>

Tries to represent the value as an object and returns a mutable refference to it
source§

fn insert<K, V>( &mut self, k: K, v: V @@ -207,60 +207,60 @@ always be returned

source§

fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self::Target>where Self::Key: Borrow<Q> + Hash + Eq, Q: Hash + Eq + Ord + ?Sized,

Same as get but returns a mutable ref instead
source§

fn get_idx_mut(&mut self, i: usize) -> Option<&mut Self::Target>

Same as get_idx but returns a mutable ref instead
source§

impl<T> PartialEq<&[T]> for Valuewhere - Value: PartialEq<T>,

source§

fn eq(&self, other: &&[T]) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always + Value: PartialEq<T>,
source§

fn eq(&self, other: &&[T]) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialEq<&T> for Valuewhere - Value: PartialEq<T>,

source§

fn eq(&self, other: &&T) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&str> for Value

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<()> for Value

source§

fn eq(&self, _other: &()) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always + Value: PartialEq<T>,
source§

fn eq(&self, other: &&T) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&str> for Value

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<()> for Value

source§

fn eq(&self, _other: &()) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<K, T, S> PartialEq<HashMap<K, T, S>> for Valuewhere K: AsRef<str> + Hash + Eq, Value: PartialEq<T>, - S: BuildHasher,

source§

fn eq(&self, other: &HashMap<K, T, S>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for Value

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value<'_>> for Value

source§

fn eq(&self, other: &BorrowedValue<'_>) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for Value

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used + S: BuildHasher,
source§

fn eq(&self, other: &HashMap<K, T, S>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl<'value> PartialEq<Value> for Value<'value>

source§

fn eq(&self, other: &OwnedValue) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for Value

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value<'_>> for Value

source§

fn eq(&self, other: &BorrowedValue<'_>) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Value> for Value

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl<'value> PartialEq<Value> for Value<'value>

source§

fn eq(&self, other: &OwnedValue) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for Value

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for Value

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for Value

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i128> for Value

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i128> for Value

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for Value

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for Value

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for Value

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for Value

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u128> for Value

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for Value

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for Value

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u128> for Value

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for Value

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for Value

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for Value

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for Value

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for Value

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Value

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 TryFrom<Value> for OwnedValue

§

type Error = SerdeConversionError

The type returned in the event of a conversion error.
source§

fn try_from(item: Value) -> Result<Self, SerdeConversionError>

Performs the conversion.
source§

impl TryInto<Value> for OwnedValue

§

type Error = SerdeConversionError

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Value, SerdeConversionError>

Performs the conversion.
source§

impl Value for Value

source§

fn is_null(&self) -> bool

returns true if the current value is null
source§

fn is_float(&self) -> bool

returns true if the current value a floatingpoint number
source§

fn is_integer(&self) -> bool

returns true if the current value a integer number
source§

fn is_number(&self) -> bool

returns true if the current value a number either float or integer
source§

fn is_bool(&self) -> bool

returns true if the current value a bool
source§

fn is_i128(&self) -> bool

returns true if the current value can be represented as a i128
source§

fn is_i64(&self) -> bool

returns true if the current value can be represented as a i64
source§

fn is_i32(&self) -> bool

returns true if the current value can be represented as a i32
source§

fn is_i16(&self) -> bool

returns true if the current value can be represented as a i16
source§

fn is_i8(&self) -> bool

returns true if the current value can be represented as a i8
source§

fn is_u128(&self) -> bool

returns true if the current value can be represented as a u128
source§

fn is_u64(&self) -> bool

returns true if the current value can be represented as a u64
source§

fn is_usize(&self) -> bool

returns true if the current value can be represented as a usize
source§

fn is_u32(&self) -> bool

returns true if the current value can be represented as a u32
source§

fn is_u16(&self) -> bool

returns true if the current value can be represented as a u16
source§

fn is_u8(&self) -> bool

returns true if the current value can be represented as a u8
source§

fn is_f64(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_f64_castable(&self) -> bool

returns true if the current value can be cast into a f64
source§

fn is_f32(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_str(&self) -> bool

returns true if the current value can be represented as a str
source§

fn is_char(&self) -> bool

returns true if the current value can be represented as a char
source§

fn is_array(&self) -> bool

returns true if the current value can be represented as an array
source§

fn is_object(&self) -> bool

returns true if the current value can be represented as an object
source§

fn is_custom(&self) -> bool

returns if a type is a custom type
source§

impl ValueAccess for Value

§

type Target = Value

The target for nested lookups
§

type Key = String

The type for Objects
§

type Array = Vec<Value, Global>

The array structure
§

type Object = SizedHashMap<String, Value, NotSoRandomState, 32>

The object structure
source§

fn value_type(&self) -> ValueType

Gets the type of the current value
source§

fn as_bool(&self) -> Option<bool>

Tries to represent the value as a bool
source§

fn as_i64(&self) -> Option<i64>

Tries to represent the value as an i64
source§

fn as_i128(&self) -> Option<i128>

Tries to represent the value as an i128
source§

fn as_u64(&self) -> Option<u64>

Tries to represent the value as an u64
source§

fn as_f64(&self) -> Option<f64>

Tries to represent the value as a f64
source§

fn cast_f64(&self) -> Option<f64>

Casts the current value to a f64 if possible, this will turn integer + S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§

impl TryFrom<Value> for OwnedValue

§

type Error = SerdeConversionError

The type returned in the event of a conversion error.
source§

fn try_from(item: Value) -> Result<Self, SerdeConversionError>

Performs the conversion.
source§

impl TryInto<Value> for OwnedValue

§

type Error = SerdeConversionError

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Value, SerdeConversionError>

Performs the conversion.
source§

impl Value for Value

source§

fn is_null(&self) -> bool

returns true if the current value is null
source§

fn is_float(&self) -> bool

returns true if the current value a floatingpoint number
source§

fn is_integer(&self) -> bool

returns true if the current value a integer number
source§

fn is_number(&self) -> bool

returns true if the current value a number either float or integer
source§

fn is_bool(&self) -> bool

returns true if the current value a bool
source§

fn is_i128(&self) -> bool

returns true if the current value can be represented as a i128
source§

fn is_i64(&self) -> bool

returns true if the current value can be represented as a i64
source§

fn is_i32(&self) -> bool

returns true if the current value can be represented as a i32
source§

fn is_i16(&self) -> bool

returns true if the current value can be represented as a i16
source§

fn is_i8(&self) -> bool

returns true if the current value can be represented as a i8
source§

fn is_u128(&self) -> bool

returns true if the current value can be represented as a u128
source§

fn is_u64(&self) -> bool

returns true if the current value can be represented as a u64
source§

fn is_usize(&self) -> bool

returns true if the current value can be represented as a usize
source§

fn is_u32(&self) -> bool

returns true if the current value can be represented as a u32
source§

fn is_u16(&self) -> bool

returns true if the current value can be represented as a u16
source§

fn is_u8(&self) -> bool

returns true if the current value can be represented as a u8
source§

fn is_f64(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_f64_castable(&self) -> bool

returns true if the current value can be cast into a f64
source§

fn is_f32(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_str(&self) -> bool

returns true if the current value can be represented as a str
source§

fn is_char(&self) -> bool

returns true if the current value can be represented as a char
source§

fn is_array(&self) -> bool

returns true if the current value can be represented as an array
source§

fn is_object(&self) -> bool

returns true if the current value can be represented as an object
source§

fn is_custom(&self) -> bool

returns if a type is a custom type
source§

impl ValueAccess for Value

§

type Target = Value

The target for nested lookups
§

type Key = String

The type for Objects
§

type Array = Vec<Value, Global>

The array structure
§

type Object = SizedHashMap<String, Value, NotSoRandomState, 32>

The object structure
source§

fn value_type(&self) -> ValueType

Gets the type of the current value
source§

fn as_bool(&self) -> Option<bool>

Tries to represent the value as a bool
source§

fn as_i64(&self) -> Option<i64>

Tries to represent the value as an i64
source§

fn as_i128(&self) -> Option<i128>

Tries to represent the value as an i128
source§

fn as_u64(&self) -> Option<u64>

Tries to represent the value as an u64
source§

fn as_f64(&self) -> Option<f64>

Tries to represent the value as a f64
source§

fn cast_f64(&self) -> Option<f64>

Casts the current value to a f64 if possible, this will turn integer values into floats.
source§

fn as_str(&self) -> Option<&str>

Tries to represent the value as a &str
source§

fn as_array(&self) -> Option<&Vec<Self>>

Tries to represent the value as an array and returns a refference to it
source§

fn as_object(&self) -> Option<&Object>

Tries to represent the value as an object and returns a refference to it
source§

fn try_as_bool(&self) -> Result<bool, TryTypeError>

Tries to represent the value as a bool Read more
source§

fn try_as_i128(&self) -> Result<i128, TryTypeError>

Tries to represent the value as a i128 Read more
source§

fn try_as_i64(&self) -> Result<i64, TryTypeError>

Tries to represent the value as an i64 Read more
source§

fn as_i32(&self) -> Option<i32>

Tries to represent the value as an i32
source§

fn try_as_i32(&self) -> Result<i32, TryTypeError>

Tries to represent the value as an i32 Read more
source§

fn as_i16(&self) -> Option<i16>

Tries to represent the value as an i16
source§

fn try_as_i16(&self) -> Result<i16, TryTypeError>

Tries to represent the value as an i16 Read more
source§

fn as_i8(&self) -> Option<i8>

Tries to represent the value as an i8
source§

fn try_as_i8(&self) -> Result<i8, TryTypeError>

Tries to represent the value as an i8 Read more
source§

fn as_u128(&self) -> Option<u128>

Tries to represent the value as an u128
source§

fn try_as_u128(&self) -> Result<u128, TryTypeError>

Tries to represent the value as an u128 Read more
source§

fn try_as_u64(&self) -> Result<u64, TryTypeError>

Tries to represent the value as an u64 Read more
source§

fn as_usize(&self) -> Option<usize>

Tries to represent the value as an usize
source§

fn try_as_usize(&self) -> Result<usize, TryTypeError>

Tries to represent the value as an usize Read more
source§

fn as_u32(&self) -> Option<u32>

Tries to represent the value as an u32
source§

fn try_as_u32(&self) -> Result<u32, TryTypeError>

Tries to represent the value as an u32 Read more
source§

fn as_u16(&self) -> Option<u16>

Tries to represent the value as an u16
source§

fn try_as_u16(&self) -> Result<u16, TryTypeError>

Tries to represent the value as an u16 Read more
source§

fn as_u8(&self) -> Option<u8>

Tries to represent the value as an u8
source§

fn try_as_u8(&self) -> Result<u8, TryTypeError>

Tries to represent the value as an u8 Read more
source§

fn try_as_f64(&self) -> Result<f64, TryTypeError>

Tries to represent the value as a f64 Read more
source§

fn try_cast_f64(&self) -> Result<f64, TryTypeError>

Tries to Casts the current value to a f64 if possible, this will turn integer values into floats and error if it isn’t possible Read more
source§

fn as_f32(&self) -> Option<f32>

Tries to represent the value as a f32
source§

fn try_as_f32(&self) -> Result<f32, TryTypeError>

Tries to represent the value as a f32 Read more
source§

fn try_as_str(&self) -> Result<&str, TryTypeError>

Tries to represent the value as a &str Read more
source§

fn as_char(&self) -> Option<char>

Tries to represent the value as a Char
source§

fn try_as_char(&self) -> Result<char, TryTypeError>

Tries to represent the value as a Char Read more
source§

fn try_as_array(&self) -> Result<&Self::Array, TryTypeError>

Tries to represent the value as an array and returns a refference to it Read more
source§

fn try_as_object(&self) -> Result<&Self::Object, TryTypeError>

Tries to represent the value as an object and returns a refference to it Read more
source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Target>where Self::Key: Borrow<Q> + Hash + Eq, diff --git a/simd_json/value/prelude/trait.Object.html b/simd_json/value/prelude/trait.Object.html index ff699fbed212..eff91a3964d2 100644 --- a/simd_json/value/prelude/trait.Object.html +++ b/simd_json/value/prelude/trait.Object.html @@ -56,61 +56,61 @@ ) -> Box<dyn Iterator<Item = &'i Self::Element> + 'i, Global>

Iterates over the values

source

fn len(&self) -> usize

Number of key/value pairs

Provided Methods§

source

fn is_empty(&self) -> bool

Returns if the array is empty

-

Implementations on Foreign Types§

source§

impl<MapK, MapE, S> Object for HashMap<MapK, MapE, S>where - S: BuildHasher, - MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&<HashMap<MapK, MapE, S> as Object>::Element>where - <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( - &mut self, - k: &Q -) -> Option<&mut <HashMap<MapK, MapE, S> as Object>::Element>where - <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( - &mut self, - k: K, - v: V -) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where - K: Into<<HashMap<MapK, MapE, S> as Object>::Key>, - V: Into<<HashMap<MapK, MapE, S> as Object>::Element>, - <HashMap<MapK, MapE, S> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( - &mut self, - k: &Q -) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where - <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( - &'i self -) -> Box<dyn Iterator<Item = (&'i <HashMap<MapK, MapE, S> as Object>::Key, &'i <HashMap<MapK, MapE, S> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( - &'i self -) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Key> + 'i, Global>

source§

fn values<'i>( - &'i self -) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Element> + 'i, Global>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S> Object for SizedHashMap<MapK, MapE, S, 32>where +

Implementations on Foreign Types§

source§

impl<MapK, MapE, S> Object for SizedHashMap<MapK, MapE, S, 32>where MapK: Hash + Eq, - S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>( + S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>( &self, k: &Q ) -> Option<&<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( &mut self, k: &Q ) -> Option<&mut <SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( &mut self, k: K, v: V ) -> Option<<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where K: Into<<SizedHashMap<MapK, MapE, S, 32> as Object>::Key>, V: Into<<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>, - <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( + <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( &mut self, k: &Q ) -> Option<<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + &'i self +) -> Box<dyn Iterator<Item = (&'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key, &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( + &'i self +) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key> + 'i, Global>

source§

fn values<'i>( + &'i self +) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element> + 'i, Global>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S> Object for HashMap<MapK, MapE, S>where + S: BuildHasher, + MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&<HashMap<MapK, MapE, S> as Object>::Element>where + <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( + &mut self, + k: &Q +) -> Option<&mut <HashMap<MapK, MapE, S> as Object>::Element>where + <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( + &mut self, + k: K, + v: V +) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where + K: Into<<HashMap<MapK, MapE, S> as Object>::Key>, + V: Into<<HashMap<MapK, MapE, S> as Object>::Element>, + <HashMap<MapK, MapE, S> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( + &mut self, + k: &Q +) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where + <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( &'i self -) -> Box<dyn Iterator<Item = (&'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key, &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( +) -> Box<dyn Iterator<Item = (&'i <HashMap<MapK, MapE, S> as Object>::Key, &'i <HashMap<MapK, MapE, S> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( &'i self -) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key> + 'i, Global>

source§

fn values<'i>( +) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Key> + 'i, Global>

source§

fn values<'i>( &'i self -) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element> + 'i, Global>

source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file +) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Element> + 'i, Global>
source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file diff --git a/simd_json/value/prelude/trait.ValueAccess.html b/simd_json/value/prelude/trait.ValueAccess.html index 2f34a15ae21b..48be76e79993 100644 --- a/simd_json/value/prelude/trait.ValueAccess.html +++ b/simd_json/value/prelude/trait.ValueAccess.html @@ -440,6 +440,6 @@
Errors
Errors

if the requested type doesn’t match the actual type or the value is not an object

Implementations on Foreign Types§

source§

impl<V, E> ValueAccess for Result<V, E>where - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Result<V, E> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Result<V, E> as ValueAccess>::Object>

source§

impl<V> ValueAccess for &Vwhere - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<&V as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<&V as ValueAccess>::Object>

source§

impl<V> ValueAccess for Option<V>where - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Option<V> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Option<V> as ValueAccess>::Object>

Implementors§

source§

impl ValueAccess for StaticNode

source§

impl ValueAccess for simd_json::value::owned::Value

§

type Target = Value

§

type Key = String

§

type Array = Vec<Value, Global>

§

type Object = SizedHashMap<String, Value, NotSoRandomState, 32>

source§

impl<'value> ValueAccess for simd_json::value::borrowed::Value<'value>

§

type Target = Value<'value>

§

type Key = Cow<'value, str>

§

type Array = Vec<Value<'value>, Global>

§

type Object = SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>

\ No newline at end of file + V: ValueAccess,
§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Result<V, E> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Result<V, E> as ValueAccess>::Object>

source§

impl<V> ValueAccess for Option<V>where + V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Option<V> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Option<V> as ValueAccess>::Object>

source§

impl<V> ValueAccess for &Vwhere + V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<&V as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<&V as ValueAccess>::Object>

Implementors§

source§

impl ValueAccess for StaticNode

source§

impl ValueAccess for simd_json::value::owned::Value

§

type Target = Value

§

type Key = String

§

type Array = Vec<Value, Global>

§

type Object = SizedHashMap<String, Value, NotSoRandomState, 32>

source§

impl<'value> ValueAccess for simd_json::value::borrowed::Value<'value>

§

type Target = Value<'value>

§

type Key = Cow<'value, str>

§

type Array = Vec<Value<'value>, Global>

§

type Object = SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>

\ No newline at end of file diff --git a/simd_json/value/trait.Object.html b/simd_json/value/trait.Object.html index 2f0e4b68dfb8..4a2ad07719f9 100644 --- a/simd_json/value/trait.Object.html +++ b/simd_json/value/trait.Object.html @@ -56,61 +56,61 @@ ) -> Box<dyn Iterator<Item = &'i Self::Element> + 'i, Global>

Iterates over the values

source

fn len(&self) -> usize

Number of key/value pairs

Provided Methods§

source

fn is_empty(&self) -> bool

Returns if the array is empty

-

Implementations on Foreign Types§

source§

impl<MapK, MapE, S> Object for HashMap<MapK, MapE, S>where - S: BuildHasher, - MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&<HashMap<MapK, MapE, S> as Object>::Element>where - <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( - &mut self, - k: &Q -) -> Option<&mut <HashMap<MapK, MapE, S> as Object>::Element>where - <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( - &mut self, - k: K, - v: V -) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where - K: Into<<HashMap<MapK, MapE, S> as Object>::Key>, - V: Into<<HashMap<MapK, MapE, S> as Object>::Element>, - <HashMap<MapK, MapE, S> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( - &mut self, - k: &Q -) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where - <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( - &'i self -) -> Box<dyn Iterator<Item = (&'i <HashMap<MapK, MapE, S> as Object>::Key, &'i <HashMap<MapK, MapE, S> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( - &'i self -) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Key> + 'i, Global>

source§

fn values<'i>( - &'i self -) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Element> + 'i, Global>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S> Object for SizedHashMap<MapK, MapE, S, 32>where +

Implementations on Foreign Types§

source§

impl<MapK, MapE, S> Object for SizedHashMap<MapK, MapE, S, 32>where MapK: Hash + Eq, - S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>( + S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>( &self, k: &Q ) -> Option<&<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( &mut self, k: &Q ) -> Option<&mut <SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( &mut self, k: K, v: V ) -> Option<<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where K: Into<<SizedHashMap<MapK, MapE, S, 32> as Object>::Key>, V: Into<<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>, - <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( + <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( &mut self, k: &Q ) -> Option<<SizedHashMap<MapK, MapE, S, 32> as Object>::Element>where <SizedHashMap<MapK, MapE, S, 32> as Object>::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + &'i self +) -> Box<dyn Iterator<Item = (&'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key, &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( + &'i self +) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key> + 'i, Global>

source§

fn values<'i>( + &'i self +) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element> + 'i, Global>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S> Object for HashMap<MapK, MapE, S>where + S: BuildHasher, + MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&<HashMap<MapK, MapE, S> as Object>::Element>where + <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>( + &mut self, + k: &Q +) -> Option<&mut <HashMap<MapK, MapE, S> as Object>::Element>where + <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>( + &mut self, + k: K, + v: V +) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where + K: Into<<HashMap<MapK, MapE, S> as Object>::Key>, + V: Into<<HashMap<MapK, MapE, S> as Object>::Element>, + <HashMap<MapK, MapE, S> as Object>::Key: Hash + Eq,

source§

fn remove<Q>( + &mut self, + k: &Q +) -> Option<<HashMap<MapK, MapE, S> as Object>::Element>where + <HashMap<MapK, MapE, S> as Object>::Key: Borrow<Q> + Hash + Eq, + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( &'i self -) -> Box<dyn Iterator<Item = (&'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key, &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( +) -> Box<dyn Iterator<Item = (&'i <HashMap<MapK, MapE, S> as Object>::Key, &'i <HashMap<MapK, MapE, S> as Object>::Element)> + 'i, Global>

source§

fn keys<'i>( &'i self -) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Key> + 'i, Global>

source§

fn values<'i>( +) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Key> + 'i, Global>

source§

fn values<'i>( &'i self -) -> Box<dyn Iterator<Item = &'i <SizedHashMap<MapK, MapE, S, 32> as Object>::Element> + 'i, Global>

source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file +) -> Box<dyn Iterator<Item = &'i <HashMap<MapK, MapE, S> as Object>::Element> + 'i, Global>
source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file diff --git a/simd_json/value/trait.ValueAccess.html b/simd_json/value/trait.ValueAccess.html index 3b8d4eb4195d..831b5f335e35 100644 --- a/simd_json/value/trait.ValueAccess.html +++ b/simd_json/value/trait.ValueAccess.html @@ -440,6 +440,6 @@
Errors
Errors

if the requested type doesn’t match the actual type or the value is not an object

Implementations on Foreign Types§

source§

impl<V, E> ValueAccess for Result<V, E>where - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Result<V, E> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Result<V, E> as ValueAccess>::Object>

source§

impl<V> ValueAccess for &Vwhere - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<&V as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<&V as ValueAccess>::Object>

source§

impl<V> ValueAccess for Option<V>where - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Option<V> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Option<V> as ValueAccess>::Object>

Implementors§

source§

impl ValueAccess for StaticNode

source§

impl ValueAccess for simd_json::value::owned::Value

§

type Target = Value

§

type Key = String

§

type Array = Vec<Value, Global>

§

type Object = SizedHashMap<String, Value, NotSoRandomState, 32>

source§

impl<'value> ValueAccess for simd_json::value::borrowed::Value<'value>

§

type Target = Value<'value>

§

type Key = Cow<'value, str>

§

type Array = Vec<Value<'value>, Global>

§

type Object = SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>

\ No newline at end of file + V: ValueAccess,
§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Result<V, E> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Result<V, E> as ValueAccess>::Object>

source§

impl<V> ValueAccess for Option<V>where + V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<Option<V> as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<Option<V> as ValueAccess>::Object>

source§

impl<V> ValueAccess for &Vwhere + V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&<&V as ValueAccess>::Array>

source§

fn as_object(&self) -> Option<&<&V as ValueAccess>::Object>

Implementors§

source§

impl ValueAccess for StaticNode

source§

impl ValueAccess for simd_json::value::owned::Value

§

type Target = Value

§

type Key = String

§

type Array = Vec<Value, Global>

§

type Object = SizedHashMap<String, Value, NotSoRandomState, 32>

source§

impl<'value> ValueAccess for simd_json::value::borrowed::Value<'value>

§

type Target = Value<'value>

§

type Key = Cow<'value, str>

§

type Array = Vec<Value<'value>, Global>

§

type Object = SizedHashMap<Cow<'value, str>, Value<'value>, NotSoRandomState, 32>

\ No newline at end of file diff --git a/simd_json/value/trait.ValueInto.html b/simd_json/value/trait.ValueInto.html index 1f88c1a025ed..a5d015ca8470 100644 --- a/simd_json/value/trait.ValueInto.html +++ b/simd_json/value/trait.ValueInto.html @@ -24,6 +24,6 @@
Errors
source

fn try_into_object(self) -> Result<Self::Object, TryTypeError>

Tries to turn the value into it’s object representation

Errors

if the requested type doesn’t match the actual type

-

Implementations on Foreign Types§

source§

impl<V, E> ValueInto for Result<V, E>where - V: ValueInto,

§

type String = <V as ValueInto>::String

source§

fn into_string(self) -> Option<<Result<V, E> as ValueInto>::String>

source§

fn into_array(self) -> Option<<Result<V, E> as ValueAccess>::Array>

source§

fn into_object(self) -> Option<<Result<V, E> as ValueAccess>::Object>

source§

impl<V> ValueInto for Option<V>where - V: ValueInto,

§

type String = <V as ValueInto>::String

source§

fn into_string(self) -> Option<<Option<V> as ValueInto>::String>

source§

fn into_array(self) -> Option<<Option<V> as ValueAccess>::Array>

source§

fn into_object(self) -> Option<<Option<V> as ValueAccess>::Object>

Implementors§

source§

impl ValueInto for simd_json::value::owned::Value

source§

impl<'value> ValueInto for simd_json::value::borrowed::Value<'value>

§

type String = Cow<'value, str>

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl<V> ValueInto for Option<V>where + V: ValueInto,

§

type String = <V as ValueInto>::String

source§

fn into_string(self) -> Option<<Option<V> as ValueInto>::String>

source§

fn into_array(self) -> Option<<Option<V> as ValueAccess>::Array>

source§

fn into_object(self) -> Option<<Option<V> as ValueAccess>::Object>

source§

impl<V, E> ValueInto for Result<V, E>where + V: ValueInto,

§

type String = <V as ValueInto>::String

source§

fn into_string(self) -> Option<<Result<V, E> as ValueInto>::String>

source§

fn into_array(self) -> Option<<Result<V, E> as ValueAccess>::Array>

source§

fn into_object(self) -> Option<<Result<V, E> as ValueAccess>::Object>

Implementors§

source§

impl ValueInto for simd_json::value::owned::Value

source§

impl<'value> ValueInto for simd_json::value::borrowed::Value<'value>

§

type String = Cow<'value, str>

\ No newline at end of file diff --git a/src/polars_ops/series/ops/various.rs.html b/src/polars_ops/series/ops/various.rs.html index b8931d355028..a46fc196dc4f 100644 --- a/src/polars_ops/series/ops/various.rs.html +++ b/src/polars_ops/series/ops/various.rs.html @@ -78,6 +78,23 @@ 78 79 80 +81 +82 +83 +84 +85 +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97
#[cfg(feature = "hash")]
 use polars_core::export::ahash;
 use polars_core::prelude::*;
@@ -150,9 +167,26 @@
         // Compare adjacent elements with no-copy slices that don't include any nulls
         let offset = !options.nulls_last as i64 * nc as i64;
         let (s1, s2) = (s.slice(offset, slen), s.slice(offset + 1, slen));
-        match options.descending {
-            true => Ok(Series::gt_eq(&s1, &s2)?.all()),
-            false => Ok(Series::lt_eq(&s1, &s2)?.all()),
+        let cmp_op = match options.descending {
+            true => Series::gt_eq,
+            false => Series::lt_eq,
+        };
+        match s.dtype() {
+            // For structs compare per-field. We don't have to check any types or field names though
+            // since we're just comparing two offset slices of the same Series. The loop is to both
+            // short-circuit on false and propagate errors. Maybe there's a way with iterators?
+            #[cfg(feature = "dtype-struct")]
+            DataType::Struct(_) => {
+                let mut struct_cmp = true;
+                for (l, r) in s1.struct_()?.fields().iter().zip(s2.struct_()?.fields()) {
+                    struct_cmp &= cmp_op(l, r)?.all();
+                    if !struct_cmp {
+                        break;
+                    }
+                }
+                Ok(struct_cmp)
+            }
+            _ => Ok(cmp_op(&s1, &s2)?.all()),
         }
     }
 }
diff --git a/src/serde/de/format.rs.html b/src/serde/de/format.rs.html
index 16cf2d19ebf3..aab09b08d8e5 100644
--- a/src/serde/de/format.rs.html
+++ b/src/serde/de/format.rs.html
@@ -1,4 +1,4 @@
-format.rs - source
1
+format.rs - source
1
 2
 3
 4
diff --git a/src/serde/de/ignored_any.rs.html b/src/serde/de/ignored_any.rs.html
index 1f08f56edeec..a98bbb7511c8 100644
--- a/src/serde/de/ignored_any.rs.html
+++ b/src/serde/de/ignored_any.rs.html
@@ -1,4 +1,4 @@
-ignored_any.rs - source
1
+ignored_any.rs - source
1
 2
 3
 4
diff --git a/src/serde/de/impls.rs.html b/src/serde/de/impls.rs.html
index b1bf22bb4357..0880b5cc1553 100644
--- a/src/serde/de/impls.rs.html
+++ b/src/serde/de/impls.rs.html
@@ -1,4 +1,4 @@
-impls.rs - source
1
+impls.rs - source
1
 2
 3
 4
diff --git a/src/serde/de/mod.rs.html b/src/serde/de/mod.rs.html
index 14937617ba9d..a1830cc27ed2 100644
--- a/src/serde/de/mod.rs.html
+++ b/src/serde/de/mod.rs.html
@@ -1,4 +1,4 @@
-mod.rs - source
1
+mod.rs - source
1
 2
 3
 4
diff --git a/src/serde/de/seed.rs.html b/src/serde/de/seed.rs.html
index b3b95df4f450..4b931401583d 100644
--- a/src/serde/de/seed.rs.html
+++ b/src/serde/de/seed.rs.html
@@ -1,4 +1,4 @@
-seed.rs - source
1
+seed.rs - source
1
 2
 3
 4
diff --git a/src/serde/de/utf8.rs.html b/src/serde/de/utf8.rs.html
index 96c50a6bbdc1..f832843e1670 100644
--- a/src/serde/de/utf8.rs.html
+++ b/src/serde/de/utf8.rs.html
@@ -1,4 +1,4 @@
-utf8.rs - source
1
+utf8.rs - source
1
 2
 3
 4
diff --git a/src/serde/de/value.rs.html b/src/serde/de/value.rs.html
index bb7b03b5219d..bbffb17781b5 100644
--- a/src/serde/de/value.rs.html
+++ b/src/serde/de/value.rs.html
@@ -1,4 +1,4 @@
-value.rs - source
1
+value.rs - source
1
 2
 3
 4
diff --git a/src/serde/integer128.rs.html b/src/serde/integer128.rs.html
index 015d0859e274..db4a3126afd1 100644
--- a/src/serde/integer128.rs.html
+++ b/src/serde/integer128.rs.html
@@ -1,4 +1,4 @@
-integer128.rs - source
1
+integer128.rs - source
1
 2
 3
 4
diff --git a/src/serde/lib.rs.html b/src/serde/lib.rs.html
index 05f2eeb142f8..448d7b913330 100644
--- a/src/serde/lib.rs.html
+++ b/src/serde/lib.rs.html
@@ -1,4 +1,4 @@
-lib.rs - source
1
+lib.rs - source
1
 2
 3
 4
@@ -345,8 +345,6 @@
 345
 346
 347
-348
-349
 
//! # Serde
 //!
 //! Serde is a framework for ***ser***ializing and ***de***serializing Rust data
@@ -442,7 +440,7 @@
 ////////////////////////////////////////////////////////////////////////////////
 
 // Serde types in rustdoc of other crates get linked to here.
-#![doc(html_root_url = "https://docs.rs/serde/1.0.175")]
+#![doc(html_root_url = "https://docs.rs/serde/1.0.176")]
 // Support using Serde without the standard library!
 #![cfg_attr(not(feature = "std"), no_std)]
 // Unstable functionality only if the user asks for it. For tracking and
@@ -684,8 +682,6 @@
 // be annoying for crates that provide handwritten impls or data formats. They
 // would need to disable default features and then explicitly re-enable std.
 #[cfg(feature = "serde_derive")]
-#[allow(unused_imports)]
-#[macro_use]
 extern crate serde_derive;
 
 /// Derive macro available if serde is built with `features = ["derive"]`.
diff --git a/src/serde/macros.rs.html b/src/serde/macros.rs.html
index 991450920731..13b0b1dcbdd3 100644
--- a/src/serde/macros.rs.html
+++ b/src/serde/macros.rs.html
@@ -1,4 +1,4 @@
-macros.rs - source
1
+macros.rs - source
1
 2
 3
 4
diff --git a/src/serde/private/de.rs.html b/src/serde/private/de.rs.html
index dc4b3e540330..187364e54518 100644
--- a/src/serde/private/de.rs.html
+++ b/src/serde/private/de.rs.html
@@ -1,4 +1,4 @@
-de.rs - source
1
+de.rs - source
1
 2
 3
 4
diff --git a/src/serde/private/doc.rs.html b/src/serde/private/doc.rs.html
index 30ba2885d0cc..a340f0046b46 100644
--- a/src/serde/private/doc.rs.html
+++ b/src/serde/private/doc.rs.html
@@ -1,4 +1,4 @@
-doc.rs - source
1
+doc.rs - source
1
 2
 3
 4
diff --git a/src/serde/private/mod.rs.html b/src/serde/private/mod.rs.html
index 51b74cfee234..6008f1087de4 100644
--- a/src/serde/private/mod.rs.html
+++ b/src/serde/private/mod.rs.html
@@ -1,4 +1,4 @@
-mod.rs - source
1
+mod.rs - source
1
 2
 3
 4
diff --git a/src/serde/private/ser.rs.html b/src/serde/private/ser.rs.html
index afec95ed6ed6..df56d7a8173d 100644
--- a/src/serde/private/ser.rs.html
+++ b/src/serde/private/ser.rs.html
@@ -1,4 +1,4 @@
-ser.rs - source
1
+ser.rs - source
1
 2
 3
 4
diff --git a/src/serde/private/size_hint.rs.html b/src/serde/private/size_hint.rs.html
index 8c077ff1654b..22bb92c3822a 100644
--- a/src/serde/private/size_hint.rs.html
+++ b/src/serde/private/size_hint.rs.html
@@ -1,4 +1,4 @@
-size_hint.rs - source
1
+size_hint.rs - source
1
 2
 3
 4
diff --git a/src/serde/ser/fmt.rs.html b/src/serde/ser/fmt.rs.html
index 300b2e211cc4..00e58171985b 100644
--- a/src/serde/ser/fmt.rs.html
+++ b/src/serde/ser/fmt.rs.html
@@ -1,4 +1,4 @@
-fmt.rs - source
1
+fmt.rs - source
1
 2
 3
 4
diff --git a/src/serde/ser/impls.rs.html b/src/serde/ser/impls.rs.html
index e4462a9374fb..3ad0bc90f19c 100644
--- a/src/serde/ser/impls.rs.html
+++ b/src/serde/ser/impls.rs.html
@@ -1,4 +1,4 @@
-impls.rs - source
1
+impls.rs - source
1
 2
 3
 4
diff --git a/src/serde/ser/impossible.rs.html b/src/serde/ser/impossible.rs.html
index a6af7307b767..e04cd8f5e706 100644
--- a/src/serde/ser/impossible.rs.html
+++ b/src/serde/ser/impossible.rs.html
@@ -1,4 +1,4 @@
-impossible.rs - source
1
+impossible.rs - source
1
 2
 3
 4
diff --git a/src/serde/ser/mod.rs.html b/src/serde/ser/mod.rs.html
index 30f05a8a2979..dbe8e35ceb38 100644
--- a/src/serde/ser/mod.rs.html
+++ b/src/serde/ser/mod.rs.html
@@ -1,4 +1,4 @@
-mod.rs - source
1
+mod.rs - source
1
 2
 3
 4
diff --git a/src/serde_derive/buffer.rs.html b/src/serde_derive/buffer.rs.html
index d4bc220a6d1b..b84413511e2c 100644
--- a/src/serde_derive/buffer.rs.html
+++ b/src/serde_derive/buffer.rs.html
@@ -1,4 +1,4 @@
-buffer.rs - source
1
+buffer.rs - source
1
 2
 3
 4
diff --git a/src/serde_derive/bytecode.rs.html b/src/serde_derive/bytecode.rs.html
index 46ed00310a70..2f26d2ad4d51 100644
--- a/src/serde_derive/bytecode.rs.html
+++ b/src/serde_derive/bytecode.rs.html
@@ -1,4 +1,4 @@
-bytecode.rs - source
1
+bytecode.rs - source
1
 2
 3
 4
diff --git a/src/serde_derive/lib.rs.html b/src/serde_derive/lib.rs.html
index a4ee917c603b..9dd965c00883 100644
--- a/src/serde_derive/lib.rs.html
+++ b/src/serde_derive/lib.rs.html
@@ -1,4 +1,4 @@
-lib.rs - source
1
+lib.rs - source
1
 2
 3
 4
@@ -21,8 +21,6 @@
 21
 22
 23
-24
-25
 
//! This crate provides Serde's two derive macros.
 //!
 //! ```edition2021
@@ -38,12 +36,10 @@
 //!
 //! [https://serde.rs/derive.html]: https://serde.rs/derive.html
 
-#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.175")]
+#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.176")]
 #![allow(unknown_lints, bare_trait_objects)]
 
-extern crate proc_macro;
-
-#[cfg(not(all(target_arch = "x86_64", target_os = "linux", target_env = "gnu")))]
+#[cfg(not(all(target_arch = "x86_64", target_os = "linux", target_env = "gnu")))]
 include!("lib_from_source.rs");
 
 #[cfg(all(target_arch = "x86_64", target_os = "linux", target_env = "gnu"))]
diff --git a/src/serde_derive/lib_precompiled.rs.html b/src/serde_derive/lib_precompiled.rs.html
index 2b181f7fc3dd..62b150924c4d 100644
--- a/src/serde_derive/lib_precompiled.rs.html
+++ b/src/serde_derive/lib_precompiled.rs.html
@@ -1,4 +1,4 @@
-lib_precompiled.rs - source
1
+lib_precompiled.rs - source
1
 2
 3
 4
@@ -217,14 +217,32 @@
 217
 218
 219
-
mod buffer;
+220
+221
+222
+223
+224
+225
+226
+227
+228
+229
+230
+231
+232
+233
+234
+
extern crate proc_macro;
+
+mod buffer;
 mod bytecode;
 
 use crate::buffer::{InputBuffer, OutputBuffer};
 use crate::bytecode::Bytecode;
 use proc_macro::{Delimiter, Group, Ident, Literal, Punct, Spacing, Span, TokenStream, TokenTree};
-use std::io::{Read, Write};
+use std::io::{ErrorKind, Read, Write};
 use std::iter::FromIterator;
+use std::path::Path;
 use std::process::{Command, ExitStatus, Stdio};
 use std::str::FromStr;
 
@@ -248,15 +266,27 @@
         memory.linearize_token(token, &mut buf);
     }
 
-    let path = concat!(
+    let exe_path = Path::new(concat!(
         env!("CARGO_MANIFEST_DIR"),
         "/serde_derive-x86_64-unknown-linux-gnu",
-    );
-    let mut child = Command::new(path)
+    ));
+    let mut child = match Command::new(exe_path)
         .stdin(Stdio::piped())
         .stdout(Stdio::piped())
         .spawn()
-        .expect("failed to spawn process");
+    {
+        Ok(child) => child,
+        Err(io_error) => {
+            if io_error.kind() == ErrorKind::NotFound {
+                panic!(
+                    "file missing from serde_derive manifest directory during macro expansion: {}",
+                    exe_path.display(),
+                );
+            } else {
+                panic!("failed to spawn process: {}", io_error);
+            }
+        }
+    };
 
     let mut stdin = child.stdin.take().unwrap();
     let mut buf = buf.into_bytes();
diff --git a/src/serde_json/de.rs.html b/src/serde_json/de.rs.html
index 297a680d2eac..c952f5c39fe4 100644
--- a/src/serde_json/de.rs.html
+++ b/src/serde_json/de.rs.html
@@ -1,4 +1,4 @@
-de.rs - source
1
+de.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/error.rs.html b/src/serde_json/error.rs.html
index a0fca4b6b24b..d05129f7ab08 100644
--- a/src/serde_json/error.rs.html
+++ b/src/serde_json/error.rs.html
@@ -1,4 +1,4 @@
-error.rs - source
1
+error.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/features_check/mod.rs.html b/src/serde_json/features_check/mod.rs.html
index a71e8da02809..a559e20ad6d0 100644
--- a/src/serde_json/features_check/mod.rs.html
+++ b/src/serde_json/features_check/mod.rs.html
@@ -1,4 +1,4 @@
-mod.rs - source
1
+mod.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/io/mod.rs.html b/src/serde_json/io/mod.rs.html
index 227086bf2f3d..85af5579b994 100644
--- a/src/serde_json/io/mod.rs.html
+++ b/src/serde_json/io/mod.rs.html
@@ -1,4 +1,4 @@
-mod.rs - source
1
+mod.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/iter.rs.html b/src/serde_json/iter.rs.html
index 241eed9e314a..c4cc2920c1f3 100644
--- a/src/serde_json/iter.rs.html
+++ b/src/serde_json/iter.rs.html
@@ -1,4 +1,4 @@
-iter.rs - source
1
+iter.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/lib.rs.html b/src/serde_json/lib.rs.html
index 26f0499626df..6cf68aac33cf 100644
--- a/src/serde_json/lib.rs.html
+++ b/src/serde_json/lib.rs.html
@@ -1,4 +1,4 @@
-lib.rs - source
1
+lib.rs - source
1
 2
 3
 4
@@ -718,7 +718,7 @@
 //! [macro]: crate::json
 //! [`serde-json-core`]: https://github.com/rust-embedded-community/serde-json-core
 
-#![doc(html_root_url = "https://docs.rs/serde_json/1.0.103")]
+#![doc(html_root_url = "https://docs.rs/serde_json/1.0.104")]
 // Ignored clippy lints
 #![allow(
     clippy::collapsible_else_if,
diff --git a/src/serde_json/macros.rs.html b/src/serde_json/macros.rs.html
index 2c016ef3f890..523ccdf70672 100644
--- a/src/serde_json/macros.rs.html
+++ b/src/serde_json/macros.rs.html
@@ -1,4 +1,4 @@
-macros.rs - source
1
+macros.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/map.rs.html b/src/serde_json/map.rs.html
index 63b8f8f08a6e..429d18fd3123 100644
--- a/src/serde_json/map.rs.html
+++ b/src/serde_json/map.rs.html
@@ -1,4 +1,4 @@
-map.rs - source
1
+map.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/number.rs.html b/src/serde_json/number.rs.html
index fb3b8d6df33b..4740c7138cca 100644
--- a/src/serde_json/number.rs.html
+++ b/src/serde_json/number.rs.html
@@ -1,4 +1,4 @@
-number.rs - source
1
+number.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/raw.rs.html b/src/serde_json/raw.rs.html
index cb5dbaf6ee54..67855acd3626 100644
--- a/src/serde_json/raw.rs.html
+++ b/src/serde_json/raw.rs.html
@@ -1,4 +1,4 @@
-raw.rs - source
1
+raw.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/read.rs.html b/src/serde_json/read.rs.html
index 1d64e5ccdfb8..f727249f0a0c 100644
--- a/src/serde_json/read.rs.html
+++ b/src/serde_json/read.rs.html
@@ -1,4 +1,4 @@
-read.rs - source
1
+read.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/ser.rs.html b/src/serde_json/ser.rs.html
index bd4702c996f3..6c6565fb136d 100644
--- a/src/serde_json/ser.rs.html
+++ b/src/serde_json/ser.rs.html
@@ -1,4 +1,4 @@
-ser.rs - source
1
+ser.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/value/de.rs.html b/src/serde_json/value/de.rs.html
index e1480f66c66d..860e38c67259 100644
--- a/src/serde_json/value/de.rs.html
+++ b/src/serde_json/value/de.rs.html
@@ -1,4 +1,4 @@
-de.rs - source
1
+de.rs - source
1
 2
 3
 4
@@ -1393,6 +1393,14 @@
 1393
 1394
 1395
+1396
+1397
+1398
+1399
+1400
+1401
+1402
+1403
 
use crate::error::{Error, ErrorCode};
 use crate::map::Map;
 use crate::number::Number;
@@ -1877,6 +1885,14 @@
     }
 }
 
+impl<'de> IntoDeserializer<'de, Error> for &'de Value {
+    type Deserializer = Self;
+
+    fn into_deserializer(self) -> Self::Deserializer {
+        self
+    }
+}
+
 struct VariantDeserializer {
     value: Option<Value>,
 }
diff --git a/src/serde_json/value/from.rs.html b/src/serde_json/value/from.rs.html
index 2ed5e473b761..3f036e3b6e3a 100644
--- a/src/serde_json/value/from.rs.html
+++ b/src/serde_json/value/from.rs.html
@@ -1,4 +1,4 @@
-from.rs - source
1
+from.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/value/index.rs.html b/src/serde_json/value/index.rs.html
index 1aa54109215f..e8adc79f99d4 100644
--- a/src/serde_json/value/index.rs.html
+++ b/src/serde_json/value/index.rs.html
@@ -1,4 +1,4 @@
-index.rs - source
1
+index.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/value/mod.rs.html b/src/serde_json/value/mod.rs.html
index 0d4e298eab9c..475cca0d2c2b 100644
--- a/src/serde_json/value/mod.rs.html
+++ b/src/serde_json/value/mod.rs.html
@@ -1,4 +1,4 @@
-mod.rs - source
1
+mod.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/value/partial_eq.rs.html b/src/serde_json/value/partial_eq.rs.html
index c87b24d9bbbd..3b453023ca39 100644
--- a/src/serde_json/value/partial_eq.rs.html
+++ b/src/serde_json/value/partial_eq.rs.html
@@ -1,4 +1,4 @@
-partial_eq.rs - source
1
+partial_eq.rs - source
1
 2
 3
 4
diff --git a/src/serde_json/value/ser.rs.html b/src/serde_json/value/ser.rs.html
index 9cf8adef0de6..f78de248d670 100644
--- a/src/serde_json/value/ser.rs.html
+++ b/src/serde_json/value/ser.rs.html
@@ -1,4 +1,4 @@
-ser.rs - source
1
+ser.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/common.rs.html b/src/sysinfo/common.rs.html
index a30cac9f6fd6..da4875eb6c6f 100644
--- a/src/sysinfo/common.rs.html
+++ b/src/sysinfo/common.rs.html
@@ -1,4 +1,4 @@
-common.rs - source
1
+common.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/debug.rs.html b/src/sysinfo/debug.rs.html
index 8bc9d0062028..8ded41973a7b 100644
--- a/src/sysinfo/debug.rs.html
+++ b/src/sysinfo/debug.rs.html
@@ -1,4 +1,4 @@
-debug.rs - source
1
+debug.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/lib.rs.html b/src/sysinfo/lib.rs.html
index cc2d8d00473c..c4bbfc97c85c 100644
--- a/src/sysinfo/lib.rs.html
+++ b/src/sysinfo/lib.rs.html
@@ -1,4 +1,4 @@
-lib.rs - source
1
+lib.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/linux/component.rs.html b/src/sysinfo/linux/component.rs.html
index afcdabd54bac..3717a5941da6 100644
--- a/src/sysinfo/linux/component.rs.html
+++ b/src/sysinfo/linux/component.rs.html
@@ -1,4 +1,4 @@
-component.rs - source
1
+component.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/linux/cpu.rs.html b/src/sysinfo/linux/cpu.rs.html
index f1d8bd32de0c..0f9d158aa59b 100644
--- a/src/sysinfo/linux/cpu.rs.html
+++ b/src/sysinfo/linux/cpu.rs.html
@@ -1,4 +1,4 @@
-cpu.rs - source
1
+cpu.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/linux/disk.rs.html b/src/sysinfo/linux/disk.rs.html
index e3cc5d81a746..807de9d547d1 100644
--- a/src/sysinfo/linux/disk.rs.html
+++ b/src/sysinfo/linux/disk.rs.html
@@ -1,4 +1,4 @@
-disk.rs - source
1
+disk.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/linux/mod.rs.html b/src/sysinfo/linux/mod.rs.html
index e2210b553d58..afb7083486e0 100644
--- a/src/sysinfo/linux/mod.rs.html
+++ b/src/sysinfo/linux/mod.rs.html
@@ -1,4 +1,4 @@
-mod.rs - source
1
+mod.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/linux/network.rs.html b/src/sysinfo/linux/network.rs.html
index 5bf669b15c2a..b1ca429fb63c 100644
--- a/src/sysinfo/linux/network.rs.html
+++ b/src/sysinfo/linux/network.rs.html
@@ -1,4 +1,4 @@
-network.rs - source
1
+network.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/linux/process.rs.html b/src/sysinfo/linux/process.rs.html
index 13a277f6ba69..b427a8ac6297 100644
--- a/src/sysinfo/linux/process.rs.html
+++ b/src/sysinfo/linux/process.rs.html
@@ -1,4 +1,4 @@
-process.rs - source
1
+process.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/linux/system.rs.html b/src/sysinfo/linux/system.rs.html
index 2a0f57e935ff..1da761ebd7a4 100644
--- a/src/sysinfo/linux/system.rs.html
+++ b/src/sysinfo/linux/system.rs.html
@@ -1,4 +1,4 @@
-system.rs - source
1
+system.rs - source
1
 2
 3
 4
@@ -748,6 +748,56 @@
 748
 749
 750
+751
+752
+753
+754
+755
+756
+757
+758
+759
+760
+761
+762
+763
+764
+765
+766
+767
+768
+769
+770
+771
+772
+773
+774
+775
+776
+777
+778
+779
+780
+781
+782
+783
+784
+785
+786
+787
+788
+789
+790
+791
+792
+793
+794
+795
+796
+797
+798
+799
+800
 
// Take a look at the license at the top of the repository in the LICENSE file.
 
 use crate::sys::component::{self, Component};
@@ -999,33 +1049,25 @@
     }
 
     fn refresh_memory(&mut self) {
-        if let Ok(data) = get_all_data("/proc/meminfo", 16_385) {
+        read_table("/proc/meminfo", ':', |key, value_kib| {
             let mut mem_available_found = false;
-
-            for line in data.split('\n') {
-                let mut iter = line.split(':');
-                let field = match iter.next() {
-                    Some("MemTotal") => &mut self.mem_total,
-                    Some("MemFree") => &mut self.mem_free,
-                    Some("MemAvailable") => {
-                        mem_available_found = true;
-                        &mut self.mem_available
-                    }
-                    Some("Buffers") => &mut self.mem_buffers,
-                    Some("Cached") => &mut self.mem_page_cache,
-                    Some("Shmem") => &mut self.mem_shmem,
-                    Some("SReclaimable") => &mut self.mem_slab_reclaimable,
-                    Some("SwapTotal") => &mut self.swap_total,
-                    Some("SwapFree") => &mut self.swap_free,
-                    _ => continue,
-                };
-                if let Some(val_str) = iter.next().and_then(|s| s.trim_start().split(' ').next()) {
-                    if let Ok(value) = u64::from_str(val_str) {
-                        // /proc/meminfo reports KiB, though it says "kB". Convert it.
-                        *field = value.saturating_mul(1_024);
-                    }
+            let field = match key {
+                "MemTotal" => &mut self.mem_total,
+                "MemFree" => &mut self.mem_free,
+                "MemAvailable" => {
+                    mem_available_found = true;
+                    &mut self.mem_available
                 }
-            }
+                "Buffers" => &mut self.mem_buffers,
+                "Cached" => &mut self.mem_page_cache,
+                "Shmem" => &mut self.mem_shmem,
+                "SReclaimable" => &mut self.mem_slab_reclaimable,
+                "SwapTotal" => &mut self.swap_total,
+                "SwapFree" => &mut self.swap_free,
+                _ => return,
+            };
+            // /proc/meminfo reports KiB, though it says "kB". Convert it.
+            *field = value_kib.saturating_mul(1_024);
 
             // Linux < 3.14 may not have MemAvailable in /proc/meminfo
             // So it should fallback to the old way of estimating available memory
@@ -1037,7 +1079,40 @@
                     + self.mem_slab_reclaimable
                     - self.mem_shmem;
             }
-        }
+
+            if let (Some(mem_cur), Some(mem_max)) = (
+                read_u64("/sys/fs/cgroup/memory.current"),
+                read_u64("/sys/fs/cgroup/memory.max"),
+            ) {
+                // cgroups v2
+                self.mem_total = mem_max;
+                self.mem_free = mem_max.saturating_sub(mem_cur);
+                self.mem_available = self.mem_free;
+
+                if let Some(swap_cur) = read_u64("/sys/fs/cgroup/memory.swap.current") {
+                    self.swap_free = self.swap_total.saturating_sub(swap_cur);
+                }
+
+                read_table("/sys/fs/cgroup/memory.stat", ' ', |key, value| {
+                    let field = match key {
+                        "slab_reclaimable" => &mut self.mem_slab_reclaimable,
+                        "file" => &mut self.mem_page_cache,
+                        "shmem" => &mut self.mem_shmem,
+                        _ => return,
+                    };
+                    *field = value;
+                    self.mem_free -= value;
+                });
+            } else if let (Some(mem_cur), Some(mem_max)) = (
+                // cgroups v1
+                read_u64("/sys/fs/cgroup/memory/memory.usage_in_bytes"),
+                read_u64("/sys/fs/cgroup/memory/memory.limit_in_bytes"),
+            ) {
+                self.mem_total = mem_max;
+                self.mem_free = mem_max.saturating_sub(mem_cur);
+                self.mem_available = self.mem_free;
+            }
+        });
     }
 
     fn refresh_cpu_specifics(&mut self, refresh_kind: CpuRefreshKind) {
@@ -1330,6 +1405,31 @@
     }
 }
 
+fn read_u64(filename: &str) -> Option<u64> {
+    get_all_data(filename, 16_635)
+        .ok()
+        .and_then(|d| u64::from_str(&d).ok())
+}
+
+fn read_table<F>(filename: &str, colsep: char, mut f: F)
+where
+    F: FnMut(&str, u64),
+{
+    if let Ok(content) = get_all_data(filename, 16_635) {
+        content
+            .split('\n')
+            .flat_map(|line| {
+                let mut split = line.split(colsep);
+                let key = split.next()?;
+                let value = split.next()?;
+                let value0 = value.trim_start().split(' ').next()?;
+                let value0_u64 = u64::from_str(value0).ok()?;
+                Some((key, value0_u64))
+            })
+            .for_each(|(k, v)| f(k, v));
+    }
+}
+
 impl Default for System {
     fn default() -> System {
         System::new()
diff --git a/src/sysinfo/linux/utils.rs.html b/src/sysinfo/linux/utils.rs.html
index 2e75332a31cb..ed72f706832e 100644
--- a/src/sysinfo/linux/utils.rs.html
+++ b/src/sysinfo/linux/utils.rs.html
@@ -1,4 +1,4 @@
-utils.rs - source
1
+utils.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/macros.rs.html b/src/sysinfo/macros.rs.html
index 8b0fdb9a6581..eb3433bf6255 100644
--- a/src/sysinfo/macros.rs.html
+++ b/src/sysinfo/macros.rs.html
@@ -1,4 +1,4 @@
-macros.rs - source
1
+macros.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/network.rs.html b/src/sysinfo/network.rs.html
index 800ecd5b560b..d7b9ff32908f 100644
--- a/src/sysinfo/network.rs.html
+++ b/src/sysinfo/network.rs.html
@@ -1,4 +1,4 @@
-network.rs - source
1
+network.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/network_helper_nix.rs.html b/src/sysinfo/network_helper_nix.rs.html
index 63b7b7118d9f..44783bab314e 100644
--- a/src/sysinfo/network_helper_nix.rs.html
+++ b/src/sysinfo/network_helper_nix.rs.html
@@ -1,4 +1,4 @@
-network_helper_nix.rs - source
1
+network_helper_nix.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/system.rs.html b/src/sysinfo/system.rs.html
index a3ae108f2ee2..e3e6b31a1efa 100644
--- a/src/sysinfo/system.rs.html
+++ b/src/sysinfo/system.rs.html
@@ -1,4 +1,4 @@
-system.rs - source
1
+system.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/traits.rs.html b/src/sysinfo/traits.rs.html
index 449666697a6d..2804621488b4 100644
--- a/src/sysinfo/traits.rs.html
+++ b/src/sysinfo/traits.rs.html
@@ -1,4 +1,4 @@
-traits.rs - source
1
+traits.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/users.rs.html b/src/sysinfo/users.rs.html
index f0a40ce3e71a..2523f6444c51 100644
--- a/src/sysinfo/users.rs.html
+++ b/src/sysinfo/users.rs.html
@@ -1,4 +1,4 @@
-users.rs - source
1
+users.rs - source
1
 2
 3
 4
diff --git a/src/sysinfo/utils.rs.html b/src/sysinfo/utils.rs.html
index 9ed37377652c..c3d9def6f2ef 100644
--- a/src/sysinfo/utils.rs.html
+++ b/src/sysinfo/utils.rs.html
@@ -1,4 +1,4 @@
-utils.rs - source
1
+utils.rs - source
1
 2
 3
 4
diff --git a/sysinfo/enum.ProcessStatus.html b/sysinfo/enum.ProcessStatus.html
index ac31856f59f2..659b72ec18e9 100644
--- a/sysinfo/enum.ProcessStatus.html
+++ b/sysinfo/enum.ProcessStatus.html
@@ -69,7 +69,7 @@ 
Other OS
Other OS

Not available.

§

Unknown(u32)

Unknown.

-

Trait Implementations§

source§

impl Clone for ProcessStatus

source§

fn clone(&self) -> ProcessStatus

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 ProcessStatus

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for ProcessStatus

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<ProcessStatus> for ProcessStatus

source§

fn eq(&self, other: &ProcessStatus) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for ProcessStatus

source§

fn clone(&self) -> ProcessStatus

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 ProcessStatus

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for ProcessStatus

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<ProcessStatus> for ProcessStatus

source§

fn eq(&self, other: &ProcessStatus) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ProcessStatus

source§

impl Eq for ProcessStatus

source§

impl StructuralEq for ProcessStatus

source§

impl StructuralPartialEq for ProcessStatus

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/sysinfo/enum.Signal.html b/sysinfo/enum.Signal.html index 57eaaa38ac6a..473ddeef571b 100644 --- a/sysinfo/enum.Signal.html +++ b/sysinfo/enum.Signal.html @@ -69,7 +69,7 @@

§

Power

Power failure (System V).

Doesn’t exist on apple systems so will be ignored.

§

Sys

Bad argument to routine (SVr4).

-

Trait Implementations§

source§

impl Clone for Signal

source§

fn clone(&self) -> Signal

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 Signal

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Signal

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<Signal> for Signal

source§

fn eq(&self, other: &Signal) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for Signal

source§

fn clone(&self) -> Signal

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 Signal

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Signal

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<Signal> for Signal

source§

fn eq(&self, other: &Signal) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Signal> for Signal

source§

fn partial_cmp(&self, other: &Signal) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= diff --git a/sysinfo/index.html b/sysinfo/index.html index 0d2a5391071b..98bc45c83ae0 100644 --- a/sysinfo/index.html +++ b/sysinfo/index.html @@ -1,4 +1,4 @@ -sysinfo - Rust

Crate sysinfo

source ·
Expand description

sysinfo

+sysinfo - Rust

Crate sysinfo

source ·
Expand description

sysinfo

sysinfo is a crate used to get a system’s information.

Supported OSes

It currently supports the following OSes (alphabetically sorted):

diff --git a/sysinfo/struct.Pid.html b/sysinfo/struct.Pid.html index 583dbfe78580..864d0a054b84 100644 --- a/sysinfo/struct.Pid.html +++ b/sysinfo/struct.Pid.html @@ -12,7 +12,7 @@

On glibc systems this is a glibc pid_t.

On Windows systems this is a usize and represents a windows process identifier.

On unsupported systems, this is also a usize.

-

Trait Implementations§

source§

impl Clone for Pid

source§

fn clone(&self) -> Pid

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 Pid

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Pid

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Pid> for usize

source§

fn from(v: Pid) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Pid

source§

fn from(v: usize) -> Self

Converts to this type from the input type.
source§

impl FromStr for Pid

§

type Err = <i32 as FromStr>::Err

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for Pid

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where +

Trait Implementations§

source§

impl Clone for Pid

source§

fn clone(&self) -> Pid

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 Pid

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Pid

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Pid> for usize

source§

fn from(v: Pid) -> Self

Converts to this type from the input type.
source§

impl From<usize> for Pid

source§

fn from(v: usize) -> Self

Converts to this type from the input type.
source§

impl FromStr for Pid

§

type Err = <i32 as FromStr>::Err

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for Pid

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Pid

source§

fn cmp(&self, other: &Pid) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere diff --git a/sysinfo/struct.System.html b/sysinfo/struct.System.html index aba89f7da7f6..31637d7e38f9 100644 --- a/sysinfo/struct.System.html +++ b/sysinfo/struct.System.html @@ -1,15 +1,15 @@ System in sysinfo - Rust

Struct sysinfo::System

source ·
pub struct System { /* private fields */ }
Expand description

Structs containing system’s information.

-

Trait Implementations§

source§

impl Debug for System

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for System

source§

fn default() -> System

Returns the “default value” for a type. Read more
source§

impl SystemExt for System

source§

const IS_SUPPORTED: bool = true

Returns true if this OS is supported. Please refer to the +

Trait Implementations§

source§

impl Debug for System

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for System

source§

fn default() -> System

Returns the “default value” for a type. Read more
source§

impl SystemExt for System

source§

const IS_SUPPORTED: bool = true

Returns true if this OS is supported. Please refer to the crate-level documentation to get the list of supported OSes. Read more
source§

const SUPPORTED_SIGNALS: &'static [Signal] = _

Returns the list of the supported signals on this system (used by ProcessExt::kill_with). Read more
source§

const MINIMUM_CPU_UPDATE_INTERVAL: Duration = _

This is the minimum interval time used internally by sysinfo to refresh the CPU time. Read more
source§

fn new_with_specifics(refreshes: RefreshKind) -> System

Creates a new System instance and refresh the data corresponding to the -given RefreshKind. Read more
source§

fn refresh_components_list(&mut self)

Refreshes components list. Read more
source§

fn refresh_memory(&mut self)

Refreshes RAM and SWAP usage. Read more
source§

fn refresh_cpu_specifics(&mut self, refresh_kind: CpuRefreshKind)

Refreshes CPUs specific information. Read more
source§

fn refresh_processes_specifics(&mut self, refresh_kind: ProcessRefreshKind)

Gets all processes and updates the specified information. Read more
source§

fn refresh_process_specifics( +given RefreshKind. Read more

source§

fn refresh_components_list(&mut self)

Refreshes components list. Read more
source§

fn refresh_memory(&mut self)

Refreshes RAM and SWAP usage. Read more
source§

fn refresh_cpu_specifics(&mut self, refresh_kind: CpuRefreshKind)

Refreshes CPUs specific information. Read more
source§

fn refresh_processes_specifics(&mut self, refresh_kind: ProcessRefreshKind)

Gets all processes and updates the specified information. Read more
source§

fn refresh_process_specifics( &mut self, pid: Pid, refresh_kind: ProcessRefreshKind ) -> bool

Refreshes only the process corresponding to pid. Returns false if the process doesn’t exist (it will NOT be removed from the processes if it doesn’t exist anymore). If it -isn’t listed yet, it’ll be added. Read more
source§

fn refresh_disks_list(&mut self)

The disk list will be emptied then completely recomputed. Read more
source§

fn refresh_users_list(&mut self)

Refreshes users list. Read more
source§

fn processes(&self) -> &HashMap<Pid, Process>

Returns the process list. Read more
source§

fn process(&self, pid: Pid) -> Option<&Process>

Returns the process corresponding to the given pid or None if no such process exists. Read more
source§

fn networks(&self) -> &Networks

Returns the network interfaces object. Read more
source§

fn networks_mut(&mut self) -> &mut Networks

Returns a mutable access to network interfaces. Read more
source§

fn global_cpu_info(&self) -> &Cpu

Returns “global” CPUs information (aka the addition of all the CPUs). Read more
source§

fn cpus(&self) -> &[Cpu]

Returns the list of the CPUs. Read more
source§

fn physical_core_count(&self) -> Option<usize>

Returns the number of physical cores on the CPU or None if it couldn’t get it. Read more
source§

fn total_memory(&self) -> u64

Returns the RAM size in bytes. Read more
source§

fn free_memory(&self) -> u64

Returns the amount of free RAM in bytes. Read more
source§

fn available_memory(&self) -> u64

Returns the amount of available RAM in bytes. Read more
source§

fn used_memory(&self) -> u64

Returns the amount of used RAM in bytes. Read more
source§

fn total_swap(&self) -> u64

Returns the SWAP size in bytes. Read more
source§

fn free_swap(&self) -> u64

Returns the amount of free SWAP in bytes. Read more
source§

fn used_swap(&self) -> u64

Returns the amount of used SWAP in bytes. Read more
source§

fn components(&self) -> &[Component]

Returns the components list. Read more
source§

fn components_mut(&mut self) -> &mut [Component]

Returns a mutable components list. Read more
source§

fn disks(&self) -> &[Disk]

Returns the disks list. Read more
source§

fn disks_mut(&mut self) -> &mut [Disk]

Returns the disks list. Read more
source§

fn sort_disks_by<F>(&mut self, compare: F)where - F: FnMut(&Disk, &Disk) -> Ordering,

Sort the disk list with the provided callback. Read more
source§

fn uptime(&self) -> u64

Returns system uptime (in seconds). Read more
source§

fn boot_time(&self) -> u64

Returns the time (in seconds) when the system booted since UNIX epoch. Read more
source§

fn load_average(&self) -> LoadAvg

Returns the system load average value. Read more
source§

fn users(&self) -> &[User]

Returns the users list. Read more
source§

fn name(&self) -> Option<String>

Returns the system name. Read more
source§

fn long_os_version(&self) -> Option<String>

Returns the system long os version (e.g “MacOS 11.2 BigSur”). Read more
source§

fn host_name(&self) -> Option<String>

Returns the system hostname based off DNS Read more
source§

fn kernel_version(&self) -> Option<String>

Returns the system’s kernel version. Read more
source§

fn os_version(&self) -> Option<String>

Returns the system version (e.g. for MacOS this will return 11.1 rather than the kernel version). Read more
source§

fn distribution_id(&self) -> String

Returns the distribution id as defined by os-release, +isn’t listed yet, it’ll be added. Read more
source§

fn refresh_disks_list(&mut self)

The disk list will be emptied then completely recomputed. Read more
source§

fn refresh_users_list(&mut self)

Refreshes users list. Read more
source§

fn processes(&self) -> &HashMap<Pid, Process>

Returns the process list. Read more
source§

fn process(&self, pid: Pid) -> Option<&Process>

Returns the process corresponding to the given pid or None if no such process exists. Read more
source§

fn networks(&self) -> &Networks

Returns the network interfaces object. Read more
source§

fn networks_mut(&mut self) -> &mut Networks

Returns a mutable access to network interfaces. Read more
source§

fn global_cpu_info(&self) -> &Cpu

Returns “global” CPUs information (aka the addition of all the CPUs). Read more
source§

fn cpus(&self) -> &[Cpu]

Returns the list of the CPUs. Read more
source§

fn physical_core_count(&self) -> Option<usize>

Returns the number of physical cores on the CPU or None if it couldn’t get it. Read more
source§

fn total_memory(&self) -> u64

Returns the RAM size in bytes. Read more
source§

fn free_memory(&self) -> u64

Returns the amount of free RAM in bytes. Read more
source§

fn available_memory(&self) -> u64

Returns the amount of available RAM in bytes. Read more
source§

fn used_memory(&self) -> u64

Returns the amount of used RAM in bytes. Read more
source§

fn total_swap(&self) -> u64

Returns the SWAP size in bytes. Read more
source§

fn free_swap(&self) -> u64

Returns the amount of free SWAP in bytes. Read more
source§

fn used_swap(&self) -> u64

Returns the amount of used SWAP in bytes. Read more
source§

fn components(&self) -> &[Component]

Returns the components list. Read more
source§

fn components_mut(&mut self) -> &mut [Component]

Returns a mutable components list. Read more
source§

fn disks(&self) -> &[Disk]

Returns the disks list. Read more
source§

fn disks_mut(&mut self) -> &mut [Disk]

Returns the disks list. Read more
source§

fn sort_disks_by<F>(&mut self, compare: F)where + F: FnMut(&Disk, &Disk) -> Ordering,

Sort the disk list with the provided callback. Read more
source§

fn uptime(&self) -> u64

Returns system uptime (in seconds). Read more
source§

fn boot_time(&self) -> u64

Returns the time (in seconds) when the system booted since UNIX epoch. Read more
source§

fn load_average(&self) -> LoadAvg

Returns the system load average value. Read more
source§

fn users(&self) -> &[User]

Returns the users list. Read more
source§

fn name(&self) -> Option<String>

Returns the system name. Read more
source§

fn long_os_version(&self) -> Option<String>

Returns the system long os version (e.g “MacOS 11.2 BigSur”). Read more
source§

fn host_name(&self) -> Option<String>

Returns the system hostname based off DNS Read more
source§

fn kernel_version(&self) -> Option<String>

Returns the system’s kernel version. Read more
source§

fn os_version(&self) -> Option<String>

Returns the system version (e.g. for MacOS this will return 11.1 rather than the kernel version). Read more
source§

fn distribution_id(&self) -> String

Returns the distribution id as defined by os-release, or std::env::consts::OS. Read more
source§

fn new() -> Self

Creates a new System instance with nothing loaded. If you want to load components, network interfaces or the disks, you’ll have to use the refresh_*_list methods. SystemExt::refresh_networks_list for diff --git a/sysinfo/trait.SystemExt.html b/sysinfo/trait.SystemExt.html index b117f16da2fc..c5b1c3e8198e 100644 --- a/sysinfo/trait.SystemExt.html +++ b/sysinfo/trait.SystemExt.html @@ -576,4 +576,4 @@
Linux
eprintln!("User for process 1337: {:?}", s.get_user_by_id(user_id)); } }

-

Implementors§

\ No newline at end of file +

Implementors§

\ No newline at end of file diff --git a/value_trait/enum.ExtendedValueType.html b/value_trait/enum.ExtendedValueType.html index c2faaad8735b..096b840061a6 100644 --- a/value_trait/enum.ExtendedValueType.html +++ b/value_trait/enum.ExtendedValueType.html @@ -20,7 +20,7 @@
§

F32

A 32 bit floating point value

§

Char

A single utf-8 character

§

None

Not a value at all

-

Trait Implementations§

source§

impl Clone for ExtendedValueType

source§

fn clone(&self) -> ExtendedValueType

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 ExtendedValueType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ExtendedValueType

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for ExtendedValueType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<ExtendedValueType> for ExtendedValueType

source§

fn eq(&self, other: &ExtendedValueType) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for ExtendedValueType

source§

fn clone(&self) -> ExtendedValueType

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 ExtendedValueType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ExtendedValueType

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for ExtendedValueType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<ExtendedValueType> for ExtendedValueType

source§

fn eq(&self, other: &ExtendedValueType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ExtendedValueType

source§

impl Eq for ExtendedValueType

source§

impl StructuralEq for ExtendedValueType

source§

impl StructuralPartialEq for ExtendedValueType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere diff --git a/value_trait/enum.StaticNode.html b/value_trait/enum.StaticNode.html index 3b4998738d93..e883bc60e00a 100644 --- a/value_trait/enum.StaticNode.html +++ b/value_trait/enum.StaticNode.html @@ -10,44 +10,44 @@

§

F64(f64)

A floating point value

§

Bool(bool)

A boolean value

§

Null

The null value

-

Trait Implementations§

source§

impl Clone for StaticNode

source§

fn clone(&self) -> StaticNode

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 StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for StaticNode

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<()> for StaticNode

source§

fn from(_b: ()) -> Self

Converts to this type from the input type.
source§

impl From<bool> for StaticNode

source§

fn from(b: bool) -> Self

Converts to this type from the input type.
source§

impl From<f32> for StaticNode

source§

fn from(f: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for StaticNode

source§

fn from(f: f64) -> Self

Converts to this type from the input type.
source§

impl From<i16> for StaticNode

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for StaticNode

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for StaticNode

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for StaticNode

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl From<u16> for StaticNode

source§

fn from(i: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for StaticNode

source§

fn from(i: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for StaticNode

source§

fn from(i: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for StaticNode

source§

fn from(i: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for StaticNode

source§

fn from(i: usize) -> Self

Converts to this type from the input type.
source§

impl Index<&str> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: &str) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<&str> for StaticNode

source§

fn index_mut(&mut self, _index: &str) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for StaticNode

source§

fn index_mut(&mut self, _index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl PartialEq<&str> for StaticNode

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<()> for StaticNode

source§

fn eq(&self, _other: &()) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StaticNode> for StaticNode

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for StaticNode

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for StaticNode

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +

Trait Implementations§

source§

impl Clone for StaticNode

source§

fn clone(&self) -> StaticNode

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 StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for StaticNode

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for StaticNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<()> for StaticNode

source§

fn from(_b: ()) -> Self

Converts to this type from the input type.
source§

impl From<bool> for StaticNode

source§

fn from(b: bool) -> Self

Converts to this type from the input type.
source§

impl From<f32> for StaticNode

source§

fn from(f: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for StaticNode

source§

fn from(f: f64) -> Self

Converts to this type from the input type.
source§

impl From<i16> for StaticNode

source§

fn from(i: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for StaticNode

source§

fn from(i: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for StaticNode

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for StaticNode

source§

fn from(i: i8) -> Self

Converts to this type from the input type.
source§

impl From<u16> for StaticNode

source§

fn from(i: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for StaticNode

source§

fn from(i: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for StaticNode

source§

fn from(i: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for StaticNode

source§

fn from(i: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for StaticNode

source§

fn from(i: usize) -> Self

Converts to this type from the input type.
source§

impl Index<&str> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: &str) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl Index<usize> for StaticNode

§

type Output = ()

The returned type after indexing.
source§

fn index(&self, _index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<&str> for StaticNode

source§

fn index_mut(&mut self, _index: &str) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for StaticNode

source§

fn index_mut(&mut self, _index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl PartialEq<&str> for StaticNode

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for StaticNode

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for StaticNode

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i128> for StaticNode

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for StaticNode

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for StaticNode

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for StaticNode

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for StaticNode

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for StaticNode

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<()> for StaticNode

source§

fn eq(&self, _other: &()) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<StaticNode> for StaticNode

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u128> for StaticNode

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for StaticNode

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for StaticNode

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for StaticNode

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for StaticNode

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used -by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for StaticNode

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<bool> for StaticNode

source§

fn eq(&self, other: &bool) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f32> for StaticNode

source§

fn eq(&self, other: &f32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for StaticNode

source§

fn eq(&self, other: &f64) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always -sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for StaticNode

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i128> for StaticNode

source§

fn eq(&self, other: &i128) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i16> for StaticNode

source§

fn eq(&self, other: &i16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i32> for StaticNode

source§

fn eq(&self, other: &i32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i64> for StaticNode

source§

fn eq(&self, other: &i64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<i8> for StaticNode

source§

fn eq(&self, other: &i8) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for StaticNode

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u128> for StaticNode

source§

fn eq(&self, other: &u128) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u16> for StaticNode

source§

fn eq(&self, other: &u16) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u32> for StaticNode

source§

fn eq(&self, other: &u32) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u64> for StaticNode

source§

fn eq(&self, other: &u64) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<u8> for StaticNode

source§

fn eq(&self, other: &u8) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always +sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<usize> for StaticNode

source§

fn eq(&self, other: &usize) -> bool

This method tests for self and other values to be equal, and is used +by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Value for StaticNode

source§

fn is_null(&self) -> bool

returns true if the current value is null
source§

fn is_float(&self) -> bool

returns true if the current value a floatingpoint number
source§

fn is_integer(&self) -> bool

returns true if the current value a integer number
source§

fn is_number(&self) -> bool

returns true if the current value a number either float or integer
source§

fn is_bool(&self) -> bool

returns true if the current value a bool
source§

fn is_i128(&self) -> bool

returns true if the current value can be represented as a i128
source§

fn is_i64(&self) -> bool

returns true if the current value can be represented as a i64
source§

fn is_i32(&self) -> bool

returns true if the current value can be represented as a i32
source§

fn is_i16(&self) -> bool

returns true if the current value can be represented as a i16
source§

fn is_i8(&self) -> bool

returns true if the current value can be represented as a i8
source§

fn is_u128(&self) -> bool

returns true if the current value can be represented as a u128
source§

fn is_u64(&self) -> bool

returns true if the current value can be represented as a u64
source§

fn is_usize(&self) -> bool

returns true if the current value can be represented as a usize
source§

fn is_u32(&self) -> bool

returns true if the current value can be represented as a u32
source§

fn is_u16(&self) -> bool

returns true if the current value can be represented as a u16
source§

fn is_u8(&self) -> bool

returns true if the current value can be represented as a u8
source§

fn is_f64(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_f64_castable(&self) -> bool

returns true if the current value can be cast into a f64
source§

fn is_f32(&self) -> bool

returns true if the current value can be represented as a f64
source§

fn is_str(&self) -> bool

returns true if the current value can be represented as a str
source§

fn is_char(&self) -> bool

returns true if the current value can be represented as a char
source§

fn is_array(&self) -> bool

returns true if the current value can be represented as an array
source§

fn is_object(&self) -> bool

returns true if the current value can be represented as an object
source§

fn is_custom(&self) -> bool

returns if a type is a custom type
source§

impl ValueAccess for StaticNode

§

type Target = StaticNode

The target for nested lookups
§

type Key = String

The type for Objects
§

type Array = Vec<StaticNode, Global>

The array structure
§

type Object = HashMap<String, StaticNode, RandomState>

The object structure
source§

fn value_type(&self) -> ValueType

Gets the type of the current value
source§

fn as_array(&self) -> Option<&Self::Array>

Tries to represent the value as an array and returns a refference to it
source§

fn as_object(&self) -> Option<&HashMap<Self::Key, Self>>

Tries to represent the value as an object and returns a refference to it
source§

fn as_bool(&self) -> Option<bool>

Tries to represent the value as a bool
source§

fn as_i64(&self) -> Option<i64>

Tries to represent the value as an i64
source§

fn as_u64(&self) -> Option<u64>

Tries to represent the value as an u64
source§

fn as_f64(&self) -> Option<f64>

Tries to represent the value as a f64
source§

fn cast_f64(&self) -> Option<f64>

Casts the current value to a f64 if possible, this will turn integer values into floats.
source§

fn as_str(&self) -> Option<&str>

Tries to represent the value as a &str
source§

fn try_as_bool(&self) -> Result<bool, TryTypeError>

Tries to represent the value as a bool Read more
source§

fn as_i128(&self) -> Option<i128>

Tries to represent the value as an i128
source§

fn try_as_i128(&self) -> Result<i128, TryTypeError>

Tries to represent the value as a i128 Read more
source§

fn try_as_i64(&self) -> Result<i64, TryTypeError>

Tries to represent the value as an i64 Read more
source§

fn as_i32(&self) -> Option<i32>

Tries to represent the value as an i32
source§

fn try_as_i32(&self) -> Result<i32, TryTypeError>

Tries to represent the value as an i32 Read more
source§

fn as_i16(&self) -> Option<i16>

Tries to represent the value as an i16
source§

fn try_as_i16(&self) -> Result<i16, TryTypeError>

Tries to represent the value as an i16 Read more
source§

fn as_i8(&self) -> Option<i8>

Tries to represent the value as an i8
source§

fn try_as_i8(&self) -> Result<i8, TryTypeError>

Tries to represent the value as an i8 Read more
source§

fn as_u128(&self) -> Option<u128>

Tries to represent the value as an u128
source§

fn try_as_u128(&self) -> Result<u128, TryTypeError>

Tries to represent the value as an u128 Read more
source§

fn try_as_u64(&self) -> Result<u64, TryTypeError>

Tries to represent the value as an u64 Read more
source§

fn as_usize(&self) -> Option<usize>

Tries to represent the value as an usize
source§

fn try_as_usize(&self) -> Result<usize, TryTypeError>

Tries to represent the value as an usize Read more
source§

fn as_u32(&self) -> Option<u32>

Tries to represent the value as an u32
source§

fn try_as_u32(&self) -> Result<u32, TryTypeError>

Tries to represent the value as an u32 Read more
source§

fn as_u16(&self) -> Option<u16>

Tries to represent the value as an u16
source§

fn try_as_u16(&self) -> Result<u16, TryTypeError>

Tries to represent the value as an u16 Read more
source§

fn as_u8(&self) -> Option<u8>

Tries to represent the value as an u8
source§

fn try_as_u8(&self) -> Result<u8, TryTypeError>

Tries to represent the value as an u8 Read more
source§

fn try_as_f64(&self) -> Result<f64, TryTypeError>

Tries to represent the value as a f64 Read more
source§

fn try_cast_f64(&self) -> Result<f64, TryTypeError>

Tries to Casts the current value to a f64 if possible, this will turn integer values into floats and error if it isn’t possible Read more
source§

fn as_f32(&self) -> Option<f32>

Tries to represent the value as a f32
source§

fn try_as_f32(&self) -> Result<f32, TryTypeError>

Tries to represent the value as a f32 Read more
source§

fn try_as_str(&self) -> Result<&str, TryTypeError>

Tries to represent the value as a &str Read more
source§

fn as_char(&self) -> Option<char>

Tries to represent the value as a Char
source§

fn try_as_char(&self) -> Result<char, TryTypeError>

Tries to represent the value as a Char Read more
source§

fn try_as_array(&self) -> Result<&Self::Array, TryTypeError>

Tries to represent the value as an array and returns a refference to it Read more
source§

fn try_as_object(&self) -> Result<&Self::Object, TryTypeError>

Tries to represent the value as an object and returns a refference to it Read more
source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Target>where diff --git a/value_trait/prelude/trait.Object.html b/value_trait/prelude/trait.Object.html index 91dbc9c7a025..557faaca035e 100644 --- a/value_trait/prelude/trait.Object.html +++ b/value_trait/prelude/trait.Object.html @@ -50,29 +50,29 @@

source

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

Iterates over the values

source

fn len(&self) -> usize

Number of key/value pairs

Provided Methods§

source

fn is_empty(&self) -> bool

Returns if the array is empty

-

Implementations on Foreign Types§

source§

impl<MapK, MapE, S: BuildHasher> Object for HashMap<MapK, MapE, S>where - MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Element>where +

Implementations on Foreign Types§

source§

impl<MapK, MapE, S> Object for Halfbrown<MapK, MapE, S>where + MapK: Hash + Eq, + S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self::Element>where + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>(&mut self, k: K, v: V) -> Option<Self::Element>where + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>(&mut self, k: K, v: V) -> Option<Self::Element>where K: Into<Self::Key>, V: Into<Self::Element>, - Self::Key: Hash + Eq,

source§

fn remove<Q>(&mut self, k: &Q) -> Option<Self::Element>where + Self::Key: Hash + Eq,

source§

fn remove<Q>(&mut self, k: &Q) -> Option<Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( &'i self -) -> Box<dyn Iterator<Item = (&Self::Key, &Self::Element)> + 'i>

source§

fn keys<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Key> + 'i>

source§

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S> Object for Halfbrown<MapK, MapE, S>where - MapK: Hash + Eq, - S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Element>where +) -> Box<dyn Iterator<Item = (&Self::Key, &Self::Element)> + 'i>

source§

fn keys<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Key> + 'i>

source§

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S: BuildHasher> Object for HashMap<MapK, MapE, S>where + MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self::Element>where + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>(&mut self, k: K, v: V) -> Option<Self::Element>where + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>(&mut self, k: K, v: V) -> Option<Self::Element>where K: Into<Self::Key>, V: Into<Self::Element>, - Self::Key: Hash + Eq,

source§

fn remove<Q>(&mut self, k: &Q) -> Option<Self::Element>where + Self::Key: Hash + Eq,

source§

fn remove<Q>(&mut self, k: &Q) -> Option<Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( &'i self -) -> Box<dyn Iterator<Item = (&Self::Key, &Self::Element)> + 'i>

source§

fn keys<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Key> + 'i>

source§

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file +) -> Box<dyn Iterator<Item = (&Self::Key, &Self::Element)> + 'i>
source§

fn keys<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Key> + 'i>

source§

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file diff --git a/value_trait/struct.TryTypeError.html b/value_trait/struct.TryTypeError.html index 1885fb23fb6f..db88925943c2 100644 --- a/value_trait/struct.TryTypeError.html +++ b/value_trait/struct.TryTypeError.html @@ -4,7 +4,7 @@ }
Expand description

A type error thrown by the try_* functions

Fields§

§expected: ValueType

The expected value type

§got: ValueType

The actual value type

-

Trait Implementations§

source§

impl Clone for TryTypeError

source§

fn clone(&self) -> TryTypeError

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 TryTypeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for TryTypeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for TryTypeError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere +

Trait Implementations§

source§

impl Clone for TryTypeError

source§

fn clone(&self) -> TryTypeError

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 TryTypeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for TryTypeError

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for TryTypeError

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

diff --git a/value_trait/trait.Object.html b/value_trait/trait.Object.html index a79e19261f20..8020c8ec519e 100644 --- a/value_trait/trait.Object.html +++ b/value_trait/trait.Object.html @@ -50,29 +50,29 @@
source

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

Iterates over the values

source

fn len(&self) -> usize

Number of key/value pairs

Provided Methods§

source

fn is_empty(&self) -> bool

Returns if the array is empty

-

Implementations on Foreign Types§

source§

impl<MapK, MapE, S: BuildHasher> Object for HashMap<MapK, MapE, S>where - MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Element>where +

Implementations on Foreign Types§

source§

impl<MapK, MapE, S> Object for Halfbrown<MapK, MapE, S>where + MapK: Hash + Eq, + S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self::Element>where + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>(&mut self, k: K, v: V) -> Option<Self::Element>where + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>(&mut self, k: K, v: V) -> Option<Self::Element>where K: Into<Self::Key>, V: Into<Self::Element>, - Self::Key: Hash + Eq,

source§

fn remove<Q>(&mut self, k: &Q) -> Option<Self::Element>where + Self::Key: Hash + Eq,

source§

fn remove<Q>(&mut self, k: &Q) -> Option<Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( &'i self -) -> Box<dyn Iterator<Item = (&Self::Key, &Self::Element)> + 'i>

source§

fn keys<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Key> + 'i>

source§

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S> Object for Halfbrown<MapK, MapE, S>where - MapK: Hash + Eq, - S: BuildHasher + Default,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Element>where +) -> Box<dyn Iterator<Item = (&Self::Key, &Self::Element)> + 'i>

source§

fn keys<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Key> + 'i>

source§

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

source§

fn len(&self) -> usize

source§

impl<MapK, MapE, S: BuildHasher> Object for HashMap<MapK, MapE, S>where + MapK: Hash + Eq,

§

type Key = MapK

§

type Element = MapE

source§

fn get<Q>(&self, k: &Q) -> Option<&Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self::Element>where + Q: Hash + Eq + Ord + ?Sized,

source§

fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>(&mut self, k: K, v: V) -> Option<Self::Element>where + Q: Hash + Eq + Ord + ?Sized,

source§

fn insert<K, V>(&mut self, k: K, v: V) -> Option<Self::Element>where K: Into<Self::Key>, V: Into<Self::Element>, - Self::Key: Hash + Eq,

source§

fn remove<Q>(&mut self, k: &Q) -> Option<Self::Element>where + Self::Key: Hash + Eq,

source§

fn remove<Q>(&mut self, k: &Q) -> Option<Self::Element>where Self::Key: Borrow<Q> + Hash + Eq, - Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( + Q: Hash + Eq + Ord + ?Sized,

source§

fn iter<'i>( &'i self -) -> Box<dyn Iterator<Item = (&Self::Key, &Self::Element)> + 'i>

source§

fn keys<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Key> + 'i>

source§

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file +) -> Box<dyn Iterator<Item = (&Self::Key, &Self::Element)> + 'i>
source§

fn keys<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Key> + 'i>

source§

fn values<'i>(&'i self) -> Box<dyn Iterator<Item = &Self::Element> + 'i>

source§

fn len(&self) -> usize

Implementors§

\ No newline at end of file diff --git a/value_trait/trait.ValueAccess.html b/value_trait/trait.ValueAccess.html index 46ef4b0ee5a5..788375bbb92b 100644 --- a/value_trait/trait.ValueAccess.html +++ b/value_trait/trait.ValueAccess.html @@ -446,6 +446,6 @@
Errors
Errors

if the requested type doesn’t match the actual type or the value is not an object

Implementations on Foreign Types§

source§

impl<V, E> ValueAccess for Result<V, E>where - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&Self::Array>

source§

fn as_object(&self) -> Option<&Self::Object>

source§

impl<V> ValueAccess for &Vwhere - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&Self::Array>

source§

fn as_object(&self) -> Option<&Self::Object>

source§

impl<V> ValueAccess for Option<V>where - V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&Self::Array>

source§

fn as_object(&self) -> Option<&Self::Object>

Implementors§

\ No newline at end of file + V: ValueAccess,
§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&Self::Array>

source§

fn as_object(&self) -> Option<&Self::Object>

source§

impl<V> ValueAccess for Option<V>where + V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&Self::Array>

source§

fn as_object(&self) -> Option<&Self::Object>

source§

impl<V> ValueAccess for &Vwhere + V: ValueAccess,

§

type Target = <V as ValueAccess>::Target

§

type Key = <V as ValueAccess>::Key

§

type Array = <V as ValueAccess>::Array

§

type Object = <V as ValueAccess>::Object

source§

fn value_type(&self) -> ValueType

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_i64(&self) -> Option<i64>

source§

fn as_u64(&self) -> Option<u64>

source§

fn as_f64(&self) -> Option<f64>

source§

fn as_str(&self) -> Option<&str>

source§

fn as_array(&self) -> Option<&Self::Array>

source§

fn as_object(&self) -> Option<&Self::Object>

Implementors§

\ No newline at end of file diff --git a/value_trait/trait.ValueInto.html b/value_trait/trait.ValueInto.html index 922fb75a34dc..d785066dbc66 100644 --- a/value_trait/trait.ValueInto.html +++ b/value_trait/trait.ValueInto.html @@ -24,6 +24,6 @@
Errors
source

fn try_into_object(self) -> Result<Self::Object, TryTypeError>

Tries to turn the value into it’s object representation

Errors

if the requested type doesn’t match the actual type

-

Implementations on Foreign Types§

source§

impl<V, E> ValueInto for Result<V, E>where - V: ValueInto,

§

type String = <V as ValueInto>::String

source§

fn into_string(self) -> Option<Self::String>

source§

fn into_array(self) -> Option<Self::Array>

source§

fn into_object(self) -> Option<Self::Object>

source§

impl<V> ValueInto for Option<V>where - V: ValueInto,

§

type String = <V as ValueInto>::String

source§

fn into_string(self) -> Option<Self::String>

source§

fn into_array(self) -> Option<Self::Array>

source§

fn into_object(self) -> Option<Self::Object>

Implementors§

\ No newline at end of file +

Implementations on Foreign Types§

source§

impl<V> ValueInto for Option<V>where + V: ValueInto,

§

type String = <V as ValueInto>::String

source§

fn into_string(self) -> Option<Self::String>

source§

fn into_array(self) -> Option<Self::Array>

source§

fn into_object(self) -> Option<Self::Object>

source§

impl<V, E> ValueInto for Result<V, E>where + V: ValueInto,

§

type String = <V as ValueInto>::String

source§

fn into_string(self) -> Option<Self::String>

source§

fn into_array(self) -> Option<Self::Array>

source§

fn into_object(self) -> Option<Self::Object>

Implementors§

\ No newline at end of file